Full Code of davila7/youtube-gpt for AI

main e8db47ab3988 cached
8 files
4.8 MB
1.2M tokens
3 symbols
1 requests
Download .txt
Showing preview only (4,995K chars total). Download the full file or copy to clipboard to get everything.
Repository: davila7/youtube-gpt
Branch: main
Commit: e8db47ab3988
Files: 8
Total size: 4.8 MB

Directory structure:
gitextract__75q_8i1/

├── .gitignore
├── LICENSE
├── README.md
├── app.py
├── packages.txt
├── requirements.txt
├── transcription.csv
└── word_embeddings.csv

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Editors
.vscode/
.idea/

# Youtube GPT resources
# transcription.csv
# word_embeddings.csv
youtube_video.mp4

# Vagrant
.vagrant/

# Mac/OSX
.DS_Store

# Windows
Thumbs.db

# Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2023 Daniel Avila

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

================================================
FILE: README.md
================================================
<h1 align="center">
YoutubeGPT 🤖
</h1>

Read the article to know how it works: <a href="https://medium.com/@dan.avila7/youtube-gpt-start-a-chat-with-a-video-efe92a499e60">Medium Article</a>

With Youtube GPT you will be able to extract all the information from a video on YouTube just by pasting the video link.
You will obtain the transcription, the embedding of each segment and also ask questions to the video through a chat.

All code was written with the help of <a href="https://codegpt.co">Code GPT</a>

<a href="https://codegpt.co" target="_blank"><img width="753" alt="Captura de Pantalla 2023-02-08 a la(s) 9 16 43 p  m" src="https://user-images.githubusercontent.com/6216945/217699939-eca3ae47-c488-44da-9cf6-c7caef69e1a7.png"></a>

<hr>
<br>

# Features

- Video transcription with **OpenAI Whisper**
- Embedding Transcript Segments with the OpenAI API (**text-embedding-ada-002**)
- Chat with the video using **streamlit-chat** and OpenAI API (**text-davinci-003**)

# Example
For this example we are going to use this video from The PyCoach
https://youtu.be/lKO3qDLCAnk

Add the video URL and then click Start Analysis
![Youtube](https://user-images.githubusercontent.com/6216945/217701635-7c386ca7-c802-4f56-8148-dcce57555b5a.gif)

## Pytube and OpenAI Whisper
The video will be downloaded with pytube and then OpenAI Whisper will take care of transcribing and segmenting the video.
![Pyyube Whisper](https://user-images.githubusercontent.com/6216945/217704219-886d0afc-4181-4797-8827-82f4fd456f4f.gif)

```python
# Get the video 
youtube_video = YouTube(youtube_link)
streams = youtube_video.streams.filter(only_audio=True)
mp4_video = stream.download(filename='youtube_video.mp4')
audio_file = open(mp4_video, 'rb')

# whisper load base model
model = whisper.load_model('base')

# Whisper transcription
output = model.transcribe("youtube_video.mp4")
```

## Embedding with "text-embedding-ada-002"
We obtain the vectors with **text-embedding-ada-002** of each segment delivered by whisper
![Embedding](https://user-images.githubusercontent.com/6216945/217705008-180285d7-6bce-40c3-8601-576cc2f38171.gif)

```python
# Embeddings
segments = output['segments']
for segment in segments:
    openai.api_key = user_secret
    response = openai.Embedding.create(
        input= segment["text"].strip(),
        model="text-embedding-ada-002"
    )
    embeddings = response['data'][0]['embedding']
    meta = {
        "text": segment["text"].strip(),
        "start": segment['start'],
        "end": segment['end'],
        "embedding": embeddings
    }
    data.append(meta)
pd.DataFrame(data).to_csv('word_embeddings.csv') 
```
## OpenAI GPT-3
We make a question to the vectorized text, we do the search of the context and then we send the prompt with the context to the model "text-davinci-003"

![Question1](https://user-images.githubusercontent.com/6216945/217708086-b89dce2e-e3e2-47a7-b7dd-77e402d818cb.gif)

We can even ask direct questions about what happened in the video. For example, here we ask about how long the exercise with Numpy that Pycoach did in the video took.

![Question2](https://user-images.githubusercontent.com/6216945/217708485-df1edef3-d5f1-4b4a-a5c9-d08f31c80be4.gif)

# Running Locally

1. Clone the repository

```bash
git clone https://github.com/davila7/youtube-gpt
cd youtube-gpt
```
2. Install dependencies

These dependencies are required to install with the requirements.txt file:

* streamlit 
* streamlit_chat 
* matplotlib 
* plotly 
* scipy 
* sklearn 
* pandas 
* numpy 
* git+https://github.com/openai/whisper.git 
* pytube 
* openai-whisper

```bash
pip install -r requirements.txt
```
3. Run the Streamlit server

```bash
streamlit run app.py
```

## Upcoming Features 🚀

- Semantic search with embedding
- Chart with emotional analysis
- Connect with Pinecone


================================================
FILE: app.py
================================================
import pandas as pd
import numpy as np
import streamlit as st
import whisper
import pytube
from pytube import YouTube
from streamlit_chat import message
import openai
from openai.embeddings_utils import get_embedding, distances_from_embeddings
import os
import pinecone
from dotenv import load_dotenv

# whisper
model = whisper.load_model('base')
output = ''
data = []
data_transcription = []
embeddings = []
mp4_video = ''
audio_file = ''

# Pinacone

# Uncomment this section if you want to save the embedding in pinecone
#load_dotenv()
# initialize connection to pinecone (get API key at app.pinecone.io)
# pinecone.init(
#     api_key=os.getenv("PINACONE_API_KEY"),
#     environment=os.getenv("PINACONE_ENVIRONMENT")
# )
array = []

# Uncomment this section if you want to upload your own video
# Sidebar
# with st.sidebar:
#     user_secret = st.text_input(label = ":blue[OpenAI API key]",
#                                 value="",
#                                 placeholder = "Paste your openAI API key, sk-",
#                                 type = "password")
#     youtube_link = st.text_input(label = ":red[Youtube link]",
#                                 value="https://youtu.be/rQeXGvFAJDQ",
#                                 placeholder = "")
#     if youtube_link and user_secret:
#         youtube_video = YouTube(youtube_link)
#         video_id = pytube.extract.video_id(youtube_link)
#         streams = youtube_video.streams.filter(only_audio=True)
#         stream = streams.first()
#         if st.button("Start Analysis"):
#             if os.path.exists("word_embeddings.csv"):
#                 os.remove("word_embeddings.csv")
                
#             with st.spinner('Running process...'):
#                 # Get the video mp4
#                 mp4_video = stream.download(filename='youtube_video.mp4')
#                 audio_file = open(mp4_video, 'rb')
#                 st.write(youtube_video.title)
#                 st.video(youtube_link) 

#                 # Whisper
#                 output = model.transcribe("youtube_video.mp4")
                
#                 # Transcription
#                 transcription = {
#                     "title": youtube_video.title.strip(),
#                     "transcription": output['text']
#                 }
#                 data_transcription.append(transcription)
#                 pd.DataFrame(data_transcription).to_csv('transcription.csv') 
#                 segments = output['segments']

#                 # Pinacone index
#                 # check if index_name index already exists (only create index if not)
#                 # index_name = str(video_id)
#                 # # check if 'index_name' index already exists (only create index if not)
#                 # if 'index1' not in pinecone.list_indexes():
#                 #     pinecone.create_index('index1', dimension=len(segments))
#                 # # connect to index
#                 # index = pinecone.Index('index1')
                
#                 #st.write(segments)
#                 #Embeddings
#                 for segment in segments:
#                     openai.api_key = user_secret
#                     response = openai.Embedding.create(
#                         input= segment["text"].strip(),
#                         model="text-embedding-ada-002"
#                     )
#                     embeddings = response['data'][0]['embedding']
#                     meta = {
#                         "text": segment["text"].strip(),
#                         "start": segment['start'],
#                         "end": segment['end'],
#                         "embedding": embeddings
#                     }
#                     data.append(meta)
#                 # upsert_response = index.upsert(
#                 #         vectors=data,
#                 #         namespace=video_id
#                 #     )
#                 pd.DataFrame(data).to_csv('word_embeddings.csv') 
#                 os.remove("youtube_video.mp4")
#                 st.success('Analysis completed')

st.markdown('<h1>Youtube GPT 🤖<small> by <a href="https://codegpt.co">Code GPT</a></small></h1>', unsafe_allow_html=True)
st.write("Start a chat with this video of Microsoft CEO Satya Nadella's interview. You just need to add your OpenAI API Key and paste it in the 'Chat with the video' tab.")

DEFAULT_WIDTH = 80
VIDEO_DATA = "https://youtu.be/bsFXgfbj8Bc"

width = 40

width = max(width, 0.01)
side = max((100 - width) / 2, 0.01)

_, container, _ = st.columns([side, 47, side])
container.video(data=VIDEO_DATA)
tab1, tab2, tab3, tab4 = st.tabs(["Intro", "Transcription", "Embedding", "Chat with the Video"])
with tab1:
    st.markdown("### How does it work?")
    st.markdown('Read the article to know how it works: [Medium Article]("https://medium.com/@dan.avila7/youtube-gpt-start-a-chat-with-a-video-efe92a499e60")')
    st.write("Youtube GPT was written with the following tools:")
    st.markdown("#### Code GPT")
    st.write("All code was written with the help of Code GPT. Visit [codegpt.co]('https://codegpt.co') to get the extension.")
    st.markdown("#### Streamlit")
    st.write("The design was written with [Streamlit]('https://streamlit.io/').")
    st.markdown("#### Whisper")
    st.write("Video transcription is done by [OpenAI Whisper]('https://openai.com/blog/whisper/').")
    st.markdown("#### Embedding")
    st.write('[Embedding]("https://platform.openai.com/docs/guides/embeddings") is done via the OpenAI API with "text-embedding-ada-002"')
    st.markdown("#### GPT-3")
    st.write('The chat uses the OpenAI API with the [GPT-3]("https://platform.openai.com/docs/models/gpt-3") model "text-davinci-003""')
    st.markdown("""---""")
    st.write('Author: [Daniel Ávila](https://www.linkedin.com/in/daniel-avila-arias/)')
    st.write('Repo: [Github](https://github.com/davila7/youtube-gpt)')
    st.write("This software was developed with Code GPT, for more information visit: https://codegpt.co")
with tab2: 
    st.header("Transcription:")
    if(os.path.exists("youtube_video.mp4")):
        audio_file = open('youtube_video.mp4', 'rb')
        audio_bytes = audio_file.read()
        st.audio(audio_bytes, format='audio/ogg')
    if os.path.exists("transcription.csv"):
        df = pd.read_csv('transcription.csv')
        st.write(df)
with tab3:
    st.header("Embedding:")
    if os.path.exists("word_embeddings.csv"):
        df = pd.read_csv('word_embeddings.csv')
        st.write(df)
with tab4:
    user_secret = st.text_input(label = ":blue[OpenAI API key]",
                                placeholder = "Paste your openAI API key, sk-",
                                type = "password")
    st.write('To obtain an API Key you must create an OpenAI account at the following link: https://openai.com/api/')
    if 'generated' not in st.session_state:
        st.session_state['generated'] = []

    if 'past' not in st.session_state:
        st.session_state['past'] = []

    def get_text():
        if user_secret:
            st.header("Ask me something about the video:")
            input_text = st.text_input("You: ","", key="input")
            return input_text
    user_input = get_text()

    def get_embedding_text(api_key, prompt):
        openai.api_key = user_secret
        response = openai.Embedding.create(
            input= prompt.strip(),
            model="text-embedding-ada-002"
        )
        q_embedding = response['data'][0]['embedding']
        df=pd.read_csv('word_embeddings.csv', index_col=0)
        df['embedding'] = df['embedding'].apply(eval).apply(np.array)

        df['distances'] = distances_from_embeddings(q_embedding, df['embedding'].values, distance_metric='cosine')
        returns = []
        
        # Sort by distance with 2 hints
        for i, row in df.sort_values('distances', ascending=True).head(4).iterrows():
            # Else add it to the text that is being returned
            returns.append(row["text"])

        # Return the context
        return "\n\n###\n\n".join(returns)

    def generate_response(api_key, prompt):
        one_shot_prompt = '''I am YoutubeGPT, a highly intelligent question answering bot. If you ask me a question that is rooted in truth, I will give you the answer.
        Q: What is human life expectancy in the United States?
        A: Human life expectancy in the United States is 78 years.
        Q: '''+prompt+'''
        A: '''
        completions = openai.Completion.create(
            engine = "text-davinci-003",
            prompt = one_shot_prompt,
            max_tokens = 1024,
            n = 1,
            stop=["Q:"],
            temperature=0.2,
        )
        message = completions.choices[0].text
        return message

    if user_input:
        text_embedding = get_embedding_text(user_secret, user_input)
        title = pd.read_csv('transcription.csv')['title']
        string_title = "\n\n###\n\n".join(title)
        user_input_embedding = 'Using this context: "'+string_title+'. '+text_embedding+'", answer the following question. \n'+user_input
        # st.write(user_input_embedding)
        output = generate_response(user_secret, user_input_embedding)
        st.session_state.past.append(user_input)
        st.session_state.generated.append(output)
    if st.session_state['generated']:
        for i in range(len(st.session_state['generated'])-1, -1, -1):
            message(st.session_state["generated"][i], key=str(i))
            message(st.session_state['past'][i], is_user=True, key=str(i) + '_user')


================================================
FILE: packages.txt
================================================
ffmpeg

================================================
FILE: requirements.txt
================================================
#
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
#    pip-compile
#
matplotlib
plotly
scipy
sklearn
scikit-learn
pandas
numpy
git+https://github.com/openai/whisper.git
pytube
streamlit
streamlit_chat
openai
pinecone-client
python-dotenv

================================================
FILE: transcription.csv
================================================
,title,transcription
0,Can Bing and OpenAI Challenge Google? Microsoft's Satya Nadella Weighs In (Exclusive) | WSJ," Thing with AI is going to completely change what people can expect from search. We are grounded in the fact that Google dominates this space. I feel like a new race is starting with a complete new platform technology. I'm excited for the users to have choice finally and a real competitive race out there. Microsoft CEO Sachin Adela finally thinks he has what it takes to make Bing happen. And grab some search engine market share from Google. Is not so secret weapon? This all started with us and OpenAI coming together with really a research agenda on moving the state of the art away I forward. Microsoft is taking OpenAI's newest artificial intelligence model and intertwining it with Bing's search data. So you can chat with the search engine and get up to date information. So the entire point of chat GPG early on was to just sort of show the power of the large model and the conversational intelligence. We now have not only the current information that you usually expect from a search engine but you can then have a full conversation around that current information and all the other information that came before. On top of the new AI chat features in Bing, Microsoft is adding chat GPT-like features to its edge browser. So I came here to Microsoft's headquarters in Redmond, Washington to get a hands-on demo of the new tools and hear Nidale's thoughts on AI. The first big new feature, Bing Chat. Incorporated right into the front page of Bing will be an ask me anything box. Type in your query, say... The biggest winners of the 2023 Grammys because I did not have time to watch it. And up pops your usual search results, which Nidale says has also been improved with AI. But more interesting is this new chat box that will start typing out an answer to the question. As it answers, it also includes citations so you know where the information is coming from. It allows me to then have a full-on conversation around all the search data. So yes, it's annotated, it's about being able to create even the links back to all the publishers. So this is just search, just better. The system took about a minute to return a list of the top Grammy winners. Not exactly fast, but you can tell it to stop responding. Then you can ask follow-up questions like do you know if Beyoncé is touring? If you're a Beyoncé fan, you might want to hurry and get your tickets before they're gone. Like Chatchy BT, you can ask it non-search type things too. Like... Write ten questions for Sasha Nadella about AI. What are the key features and benefits of new Bing chat mode? And how does it leverage AI to enhance the user experience? It really is grounded in search results and helps me have a very contextual chat or to be able to get to the right answers. Sasha Bing said or AI, Sasha said, the new Bing chat mode leverages AI to understand the user's intent, context, you said context, and preferences to provide relevant, visual, logical, and actionable responses. I love the AI software. But while these may seem like fun and games in these demos, there are, of course, real misuses of this technology. We have a lot of practice in thinking about safety. AI is only good if it is being used in the real world, understanding, learning human preferences. And our intent is to do that, which is to put stuff out there with safety, but at the same time realizing that we are going to have to think about safety as an ongoing responsibility, not a one-time responsibility. He also told me there are guardrails in place to prevent harmful content, hate speech, and more. The second big feature, Microsoft Edge Integration. The Microsoft Edge browser will now have a Bing sidebar, where you can ask it to summarize a web page run or ask it to generate text. For instance, I asked it to, I want to write about a letter to Sasha Nadella, thanking him for his time. Then I was able to tell it I wanted it written in an enthusiastic tone, an email form, and short. It knows. That's pretty good. There's a lot of fear that AI is going to take our jobs, replace us. Is that unfounded? And how do you think about tools like Bing now, and how we use it in the job market? Like, I think of this as at the foundational level, going to help us do our jobs better. Reduce some of the drudgery in some of our jobs, whether it's encoding or in writing or in automating workflow, or searching for information. So at the fundamental level, I think we need a productivity boost. I feel it'll create more jobs. The barriers to knowledge work will come down. So, I mean, the unintended consequences around labor market shifts are always something we need to be mindful of. But I don't subscribe to this zero sum or one lump of labor fallacy. And I think that we're going to have new jobs get created, and more job opportunities. And it sounds like more time, right? For sure. We outsource some of this. I outsource some of my question writing to this, freed up a little bit more of my time to do something else. But you're still in the loop and you're in charge, because you get to accept the draft. That's kind of one of the metaphors I have. It's pretty much all computer interaction going forward. You'll start with a draft. That doesn't mean you don't get to inspect the draft, to prove the draft, and redefine or, you know, and edit the draft. The question is, which company will write that draft for us? Will it be Microsoft with tools like this? Or Google, which owns 90% of the search engine market share? And right before my interview with Mr. Nadella announced Bard, its similar AI chat feature that will come to its own search engine. How are you thinking about monetizing this? The last time I checked software, I mean, it's a search was the most profitable category there is on planet Earth. So therefore, all I need is a few more users. And someone else that I'm competing in has to keep all of their users and all of their gross margin. It's a love, I'm looking forward to that. So no plans to charge for new Bing. It's really advertising model all the way through. We'll start there. And if there are other models, there may be other models. But there is enough surplus. Let me put it this way. There is so much surplus that goes to one place, which I think would be nice if it was evenly distributed. What about Microsoft Office? To stay tuned. I fully expect us to introduce these capabilities quite frankly across the length and breadth of Microsoft. What about this guy? Oh, you know, it's sort of like, it was early. And so we get to redefine it for the AI age. And it's going to be very useful. So is he coming back? He'll come back in a variety of different ways. I think I'm most excited about being as the real incarnation of Clippy. Okay, but no actual pop up. I think we have much better design mechanisms to do what Clippy aspired to do back in the day. Does Clippy haunt your dreams? Not really. It's probably the thing that was the most fun character Microsoft introduced, which, you know, think about it, right? We have been on a 30-year journey to perfect it. So I'm excited to be here in 2023 launching Bing with AI."


================================================
FILE: word_embeddings.csv
================================================
,text,start,end,embedding
0,Thing with AI is going to completely change what people can expect from search.,0.0,5.76,"[-0.011651009321212769, 0.003946414217352867, 0.014033137820661068, -0.009411678649485111, -0.0031383081804960966, 0.010469681583344936, -0.028040312230587006, -0.010281447321176529, -0.0316232405602932, -0.021082160994410515, 0.019057026132941246, 0.027936458587646484, -0.008684707805514336, 0.001228386303409934, 0.012352016754448414, 0.008100534789264202, 0.02980581298470497, 0.018135331571102142, 0.02134179323911667, -0.029416363686323166, -0.009866035543382168, 0.007295673713088036, -0.006117591168731451, -0.013384056277573109, -0.02222454361617565, -0.0019683390855789185, 0.01721363514661789, -0.03852946683764458, -0.003991850186139345, -0.012728484347462654, 0.03442727029323578, 0.0010012078564614058, -0.019173862412571907, -0.034167639911174774, -0.017434323206543922, 0.007691613398492336, 0.003719235770404339, -0.002141968347132206, 0.0007557740318588912, -0.012618140317499638, 0.011754862032830715, -0.0021971401292830706, -0.000994717120192945, -0.012384471483528614, -0.03658222034573555, 0.0053614117205142975, -0.008438057266175747, -0.025015592575073242, 0.004644176457077265, 0.0009825468296185136, 0.01310495100915432, 0.022484175860881805, -0.0015707766870036721, -0.01379946805536747, -0.025015592575073242, 0.0010904566152021289, -0.029961593449115753, 0.02892306260764599, 0.03388204425573349, 0.02697581797838211, 0.006539494264870882, -0.020459042862057686, -0.002214989857748151, 0.00518940482288599, -0.005500963889062405, -0.014240843243896961, -0.027469120919704437, 0.04076230525970459, 0.006743954494595528, 0.00039675095467828214, 0.015201483853161335, 0.008775578811764717, 0.010300920344889164, -0.002513567218557, 0.02557380311191082, 0.010158122517168522, -0.013448964804410934, -0.0069776237942278385, 0.002077060053125024, 0.01655157282948494, 0.0042449915781617165, 0.009074156172573566, -0.0038393158465623856, 0.014578365720808506, 0.029883703216910362, 0.01730450801551342, -0.004634440410882235, 0.0062831067480146885, -0.004371562507003546, -0.01932964101433754, 0.023172201588749886, 0.0058060321025550365, 0.0006462415913119912, 0.026638295501470566, -0.023172201588749886, 0.0035245113540440798, 0.0054587735794484615, 0.005020644050091505, -0.0021078914869576693, -0.03240213915705681, -0.004965472035109997, -0.0010174349881708622, -0.01585056446492672, -0.005974793341010809, 0.004248237237334251, 0.02012152038514614, 0.00518940482288599, 0.016058271750807762, -0.007698104251176119, 0.02282169833779335, 0.0018839584663510323, 0.010670896619558334, 0.016811205074191093, -0.010644933208823204, -0.009223445318639278, -0.01866757869720459, -0.008418584242463112, -0.019018081948161125, -0.021043214946985245, -0.013260730542242527, 0.024340549483895302, 0.01795358955860138, 0.02141968347132206, 0.009658330120146275, -0.002270161872729659, 0.024327566847205162, -0.02350972406566143, -0.022367341443896294, 0.017784828320145607, -0.0276508629322052, 0.029312511906027794, -0.0020251336973160505, 0.03159727901220322, 0.011268051341176033, -0.033466633409261703, 0.018317073583602905, -0.031519386917352676, 0.0014734145952388644, -0.020264318212866783, -0.023743392899632454, 0.0007135837222449481, 0.021861057728528976, -0.015422171913087368, -0.01491588819772005, -0.006958151701837778, 0.027962421998381615, 0.0035407384857535362, -0.0037646715063601732, 0.010281447321176529, 0.008262804709374905, -0.003075022716075182, -0.004595495760440826, -0.027910495176911354, 0.02897498942911625, 0.028819208964705467, 0.007626705337315798, 0.010184085927903652, 0.008340694941580296, -0.007029550615698099, 0.008152460679411888, -0.002008906565606594, 0.006143554579466581, -0.0007054702145978808, -0.002240953268483281, 0.039697811007499695, 0.02140670083463192, 0.018940191715955734, 0.0034531124401837587, 0.002883543726056814, -0.022575046867132187, -0.01794060692191124, 0.003365486627444625, -0.030584711581468582, 0.002489226870238781, 0.005108269862830639, 0.009476587176322937, 0.018135331571102142, -0.009353261440992355, -0.01211834792047739, -0.008113516494631767, 0.018823357298970222, -0.013397037982940674, 0.017109783366322517, 0.006172763183712959, 0.002536285202950239, -0.011014909483492374, 0.020861472934484482, -0.0012162161292508245, -0.005062833894044161, -0.011566628701984882, 0.026742149144411087, 0.017473269253969193, -0.016084235161542892, -0.017421342432498932, -0.6563510298728943, -0.009956907480955124, 0.025288207456469536, -0.0052575585432350636, 0.04213835671544075, 0.017797809094190598, 0.006477831397205591, 0.000571597192902118, 0.010593006387352943, 0.019641200080513954, -0.017538176849484444, 0.0100867236033082, -0.006782899610698223, -0.002343183383345604, 0.0003442159213591367, -0.00961289368569851, 0.027495084330439568, -0.017434323206543922, 0.029364438727498055, 0.0248727947473526, -0.005270540248602629, 0.024457383900880814, 0.0022620484232902527, -0.005689197685569525, -0.023224128410220146, -0.018369000405073166, -0.004066494293510914, -0.008639272302389145, -0.03666011244058609, 0.0114433029666543, -0.005530172493308783, 0.010528098791837692, 0.008444547653198242, 0.03159727901220322, 0.048681098967790604, -0.0096907839179039, 0.0035017936024814844, 0.02829994447529316, -0.011599082499742508, 0.014487494714558125, -0.025171373039484024, -0.01934262178838253, -0.007685122545808554, -0.020316245034337044, 0.008042117580771446, 0.007347600068897009, 0.007555306423455477, -0.004699348472058773, -0.0019602254033088684, -0.017577121034264565, 0.00029391213320195675, 0.0018872038926929235, 0.005747614894062281, -0.0008859959780238569, 0.0024064688477665186, 0.0215624812990427, 0.023977063596248627, -0.012014495208859444, 0.007594251073896885, 0.005134233273565769, 0.002023510867729783, -0.01313740573823452, -0.03240213915705681, -0.019783997908234596, -0.02153651788830757, 0.05031678080558777, 0.01590249128639698, 0.010430736467242241, -0.0038263341411948204, -0.023808302357792854, 0.007561797276139259, 0.0075293430127203465, 0.005916376132518053, 0.007380054332315922, -0.011858715675771236, 0.007120421621948481, 0.04372211545705795, -0.004209292121231556, -0.021809130907058716, 0.00688675232231617, 0.017680974677205086, -0.018407946452498436, -0.008756106719374657, -0.012209218926727772, 0.0262618288397789, -0.006461604498326778, -0.025833435356616974, -0.033518556505441666, 9.016144758788869e-05, 0.007003587204962969, 0.009411678649485111, 0.012696030549705029, -0.025431005284190178, -0.027884531766176224, 0.0069516608491539955, -0.00294196093454957, 0.01107332669198513, 0.01078124064952135, 0.01652560941874981, -0.033596448600292206, 0.01100841909646988, -0.02003064937889576, 0.026028160005807877, 0.020485006272792816, 0.019121935591101646, 0.013903321698307991, -0.005741124041378498, -0.006201971787959337, 0.019615236669778824, -0.008898904547095299, 0.0053581660613417625, 0.004472170025110245, -0.017044875770807266, -0.018498817458748817, -0.01803147792816162, -0.02083550952374935, -0.016992948949337006, -0.0011586101027205586, 0.010586516000330448, -0.020485006272792816, 0.03528406098484993, -0.0006859977729618549, 0.0009135819273069501, -0.01931666024029255, -0.013332129456102848, 0.0029500743839889765, -0.00763319618999958, -0.009937434457242489, -0.0035569656174629927, -0.012585686519742012, -0.011086308397352695, -0.06433694064617157, -0.00963885709643364, -0.009028720669448376, 0.017096800729632378, -0.008567873388528824, 0.002760218223556876, -0.019472438842058182, 0.0003314371278975159, -0.010067250579595566, -0.0124688521027565, -0.01644771918654442, -0.00675044534727931, 0.007477416656911373, -0.032843515276908875, -0.009216954000294209, -0.027079671621322632, 0.011865206062793732, -0.0248727947473526, -0.025794491171836853, -0.00894434005022049, 0.008853469043970108, -0.005598326213657856, 0.03107801266014576, -0.00971674732863903, 0.007944755256175995, -0.019031062722206116, -0.012721993029117584, -0.021835094317793846, -0.021964911371469498, 0.023081330582499504, 0.02417178824543953, 0.0053159757517278194, 0.0019845659844577312, -0.004897318314760923, -0.026443572714924812, -0.010580024681985378, 0.044475048780441284, -0.043176889419555664, -0.021147068589925766, 0.02078358270227909, -0.02965003438293934, 0.005530172493308783, 0.032713696360588074, -0.010346355848014355, 0.02822205424308777, -0.024016007781028748, 0.0025833435356616974, 0.008515946567058563, -0.011683463118970394, -0.008444547653198242, -0.0012032344238832593, -0.003595910267904401, -0.019706107676029205, 0.030870307236909866, 0.004608477000147104, 0.024639125913381577, 0.04476064443588257, -0.029286548495292664, -0.0021581952460110188, -0.002466508885845542, 0.03164920583367348, -0.00025638710940256715, -0.007639687042683363, 0.014552402310073376, 0.008308240212500095, -0.015175520442426205, 0.00795773696154356, 0.015681803226470947, 0.01579863950610161, 0.00964534841477871, 0.025742564350366592, 0.0040437765419483185, 0.004514360334724188, 0.008911886252462864, -0.01875844970345497, -0.018446890637278557, -0.022626973688602448, 0.004965472035109997, 0.01862863264977932, 0.012001513503491879, -0.02905287966132164, 0.00655247550457716, -0.00897679477930069, 0.0072242747992277145, 0.03808809071779251, -0.0015277750790119171, -0.0031253264751285315, -0.002513567218557, 0.028196090832352638, 0.005614553112536669, 0.008639272302389145, 0.0025671166367828846, -0.004530587233603001, -0.007730558048933744, 0.023964080959558487, 0.010313902050256729, 0.024574218317866325, 0.013968229293823242, -0.0427355132997036, -0.0028478442691266537, 0.007406017743051052, 0.022341378033161163, 0.0013582026585936546, 0.03723130375146866, -0.0020446060225367546, 0.03255791962146759, 0.003595910267904401, 0.03502442687749863, 0.006172763183712959, -0.006205216981470585, 0.020887436345219612, 0.018979137763381004, -0.00902223028242588, 0.01518850214779377, 0.007347600068897009, 0.046006880700588226, 0.0086976895108819, -0.033570483326911926, 0.012170274741947651, -0.032194431871175766, -0.008528928272426128, -0.007594251073896885, 0.0008851846214383841, 0.014617310836911201, -0.01875844970345497, 0.01940753124654293, -5.268714448902756e-05, 0.009210463613271713, 0.014136990532279015, -0.01939454860985279, 0.0056632342748343945, 0.027209488674998283, 0.014993777498602867, -0.0008941094856709242, -0.0014068837044760585, 0.004926526919007301, 0.005552890710532665, -0.015668822452425957, 0.008139479905366898, -0.00899626687169075, -0.018252165988087654, 0.011618555523455143, -0.02623586542904377, 0.030740490183234215, -0.0010466435924172401, 0.0027878042310476303, -0.00027119426522403955, 0.004105439409613609, 0.010515117086470127, -0.005247822497040033, -0.027858568355441093, -0.0027731999289244413, 0.015629878267645836, -0.00328435143455863, -0.02349674329161644, -0.0041508749127388, 0.006867280229926109, -0.02570362016558647, -0.003732217475771904, -0.00793177355080843, 0.016941022127866745, 0.001846636296249926, 4.956851262249984e-05, -0.008360167033970356, 0.0023058613296598196, 0.025366097688674927, -0.0007050645654089749, 0.0017655011033639312, -0.01317634992301464, 0.001922903349623084, 0.014902906492352486, -0.004936263430863619, -0.01140435878187418, 0.03310314565896988, 0.0026401381473988295, -0.019900832325220108, 0.0021387229207903147, -0.02549591287970543, -0.03785442188382149, -0.021887021139264107, 0.0166034996509552, 0.008412093855440617, -0.00961289368569851, -0.007840901613235474, 0.012008003890514374, -0.005192650482058525, -0.01491588819772005, 0.0022961250506341457, 0.02905287966132164, 0.0016632708720862865, -0.017706938087940216, 0.009872526861727238, 0.020108537748456, 0.0930003672838211, 0.018953174352645874, -0.011384885758161545, 0.007211293093860149, -0.023185184225440025, 0.01377350464463234, -0.03336277976632118, -0.014941851608455181, 0.02561274729669094, 0.004163856618106365, -0.01999170333147049, 0.015227447263896465, 0.0028916571754962206, -0.014591347426176071, 0.028040312230587006, 0.010151631198823452, 0.013487908989191055, -0.014370660297572613, -0.002971169538795948, -0.025911325588822365, -0.01033986546099186, 0.017719918861985207, 0.023003440350294113, -0.005627534817904234, 0.018823357298970222, -0.023379908874630928, 0.01653859205543995, 0.023665504530072212, -0.02008257620036602, -0.016175106167793274, -0.0026157975662499666, 0.019732071086764336, -0.006679046433418989, 0.005614553112536669, -0.006179254036396742, 0.023302018642425537, -0.011651009321212769, 0.009528513066470623, 0.006464849691838026, -0.009995851665735245, 0.014253824949264526, 0.021770186722278595, 0.012377980165183544, -0.013001098297536373, -0.0015220956411212683, -0.02270486392080784, 0.019498402252793312, 0.015733730047941208, -0.0019553573802113533, -0.043774042278528214, 0.004877845756709576, -0.003599155694246292, -0.042605698108673096, 0.008833996020257473, 0.012423415668308735, 0.029416363686323166, 0.0039983405731618404, -0.011183670721948147, -0.038425613194704056, -0.02697581797838211, -0.014033137820661068, -0.005900148767977953, -0.016071252524852753, -0.019887851551175117, -0.004722066223621368, -0.03245406597852707, -0.009969888255000114, 0.004128157161176205, -0.0021922721061855555, 0.011956077069044113, 0.031493425369262695, -0.030013518407940865, -0.036971669644117355, -0.004653912968933582, 0.004193065222352743, 0.009476587176322937, 0.016772260889410973, -0.017109783366322517, -0.005546399857848883, 0.01595441810786724, -0.0017736146692186594, -0.01209887582808733, -0.006802372168749571, -0.008197897113859653, 0.009937434457242489, 0.0005598326097242534, -0.015344281680881977, -0.01995275914669037, 0.0007034418522380292, 0.019511383026838303, -0.003032832406461239, 0.010930528864264488, 0.02284766174852848, 0.02624884806573391, 0.007711085956543684, -0.002117627765983343, -0.009035211987793446, 0.028637466952204704, -0.00047666908358223736, -0.02418476901948452, -0.0036121373996138573, -0.0017703692428767681, -0.004803201649338007, -0.01177433505654335, 0.006841316819190979, 0.009651838801801205, 0.02075761929154396, -0.00936624314635992, 0.02014748379588127, -0.03608892112970352, -0.009463605470955372, 0.0005675404681824148, 0.007204802241176367, -0.021990874782204628, 0.0344013087451458, 3.823494625976309e-05, 0.016162123531103134, 0.017512213438749313, 0.002223103540018201, -0.014980796724557877, -0.026404626667499542, -0.019758034497499466, 0.018394963815808296, -0.007620214484632015, 0.009969888255000114, -0.008269296027719975, 0.008743125014007092, -0.013228276744484901, -0.00861979927867651, 0.005004416685551405, -0.036945708096027374, -0.010197066701948643, 0.007230765651911497, -0.01809638738632202, -0.01040477305650711, -0.016902076080441475, -0.010560552589595318, -0.000937922450248152, -0.01929069682955742, -0.016058271750807762, 0.0016575913177803159, -0.015681803226470947, -0.005130987614393234, -0.014370660297572613, 0.0064161685295403, -0.036348551511764526, -0.006873771082609892, 0.012559723109006882, 0.016175106167793274, 0.020874453708529472, -0.014136990532279015, 0.012897245585918427, -0.012533759698271751, -0.014331715181469917, 0.0019975476898252964, -0.02913076803088188, -0.0011302127968519926, -0.003907469566911459, 0.04772045835852623, 0.028170127421617508, 0.027287377044558525, -0.019771017134189606, 0.01308547891676426, 0.02409389801323414, 0.008386130444705486, -0.01931666024029255, 0.00024867928004823625, 0.0019066763343289495, -0.01853776164352894, 0.016954002901911736, 0.01040477305650711, 0.0005533418152481318, 0.02970195934176445, -0.020485006272792816, 0.028559576719999313, 0.0040405308827757835, -0.006004001945257187, -0.01067738700658083, -0.026612333953380585, -0.02702774479985237, -0.020952343940734863, 0.01139786746352911, 0.01241043396294117, 0.015396208502352238, -0.016720334067940712, -0.017473269253969193, 0.024431420490145683, 0.00825631432235241, 0.020536933094263077, 0.007516361307352781, 0.025223299860954285, -0.009619385004043579, -0.01078124064952135, 0.022977478802204132, -0.02284766174852848, -0.01999170333147049, -0.010502135381102562, -0.004556550644338131, -0.0012551610125228763, 0.029857739806175232, 0.025379078462719917, 0.0256646741181612, 0.005143969319760799, 0.027105635032057762, 0.007873356342315674, 0.011014909483492374, -0.023340962827205658, -0.007814939133822918, 0.004342353902757168, -0.03323296085000038, 0.0017768600955605507, -0.037542860954999924, -0.02757297269999981, -0.01491588819772005, -0.009093629196286201, -0.002786181401461363, -0.005280276294797659, 0.011884678155183792, -0.0124688521027565, -0.03242810070514679, 0.003203216241672635, 0.030922232195734978, 0.04707137495279312, -0.013981210999190807, 0.03442727029323578, 0.029442327097058296, 1.6911610146053135e-05, 0.002494094893336296, 0.0001876250607892871, 0.015396208502352238, 0.005494473036378622, 0.020913399755954742, 0.010560552589595318, -0.003065286437049508, -0.02415880560874939, 0.0029176203534007072, -0.006422659382224083, -0.03253195434808731, -0.03943818062543869, -0.014721163548529148, -0.0008657121798023582, 0.0005143969319760799, -0.00447541568428278, -0.025431005284190178, -0.008373148739337921, 0.04229413717985153, -0.022497158497571945, 0.025041555985808372, -0.005296503193676472, -0.010450208559632301, 0.00019279742264188826, 0.018849320709705353, -0.017070837318897247, 0.01659051701426506, 0.01239096187055111, 0.027806643396615982, -0.002808899385854602, -0.007276201155036688, 0.025405041873455048, 0.004131402354687452, 0.0073281279765069485, 0.011527683585882187, -0.0037127449177205563, 0.0028786754701286554, 0.008678216487169266, 0.00832771323621273, -0.025820454582571983, -0.0034596032928675413, 0.01922578737139702, 0.02687196619808674, -0.037724606692790985, -0.0065589663572609425, -0.011306996457278728, -0.025742564350366592, 0.010145140811800957, -0.02270486392080784, -0.016889095306396484, 0.04016515240073204, -0.020510969683527946, -0.00971674732863903, 0.021263903006911278, 0.010580024681985378, -0.013682633638381958, 0.003414167556911707, -0.00654273945838213, -0.02271784469485283, 0.01809638738632202, 0.00028965252568013966, 0.006666064728051424, -0.005598326213657856, 0.005595080554485321, 0.03118186630308628, 0.009444132447242737, -0.0037873892579227686, 0.018369000405073166, -0.02491174079477787, 2.3579907065141015e-05, 0.022289451211690903, -0.023094313219189644, -0.008937849663197994, 0.02153651788830757, 0.023743392899632454, -0.015551988035440445, 0.01587652787566185, -0.005718406289815903, -0.004378053359687328, 0.00015669228741899133, -0.02967599779367447, -0.005208877380937338, -0.0051147607155144215, 0.0030717772897332907, 0.010787731036543846, -0.0023918645456433296, 0.02291256934404373, 0.008197897113859653, 0.014980796724557877, -0.003991850186139345, -0.01783675327897072, -0.0207706019282341, 0.002666101325303316, -0.0005541531718336046, -0.0025671166367828846, 0.035621579736471176, -0.009067665785551071, 0.0025865889620035887, -0.015409190207719803, 0.001937507651746273, 0.002218235284090042, -0.03315507248044014, -0.019537346437573433, -0.0039691319689154625, 0.011501720175147057, -0.002617420395836234, -0.010638442821800709, -0.02842976152896881, 0.02344481647014618, -0.021121105179190636, 0.0029176203534007072, 0.009301334619522095, -0.001242179307155311, -0.001118853921070695, 0.006120836827903986, 0.007126912474632263, 0.001637307577766478, -0.012001513503491879, -0.0058352407068014145, -0.0003373194485902786, -0.028533613309264183, -0.010320392437279224, -0.0016048535471782088, -0.025028575211763382, 0.02832590788602829, 0.01313740573823452, -0.04135946184396744, -0.04307303577661514, -0.010456699877977371, -0.04143735021352768, 0.0046474221162498, -0.02147160843014717, -0.001109117642045021, 0.02064078487455845, 0.0002789021236822009, -0.0007464435184374452, 0.0234837606549263, 0.014007174409925938, 0.011326468549668789, -0.0002012151962844655, 0.00860032718628645, -0.01177433505654335, -0.0026498744264245033, 0.010248993523418903, 0.022328397259116173, -0.015707766637206078, -0.015110612846910954, 0.008191405795514584, -0.024041971191763878, 0.009522022679448128, 0.028118202462792397, -0.011066836304962635, 0.006325297057628632, -0.0025833435356616974, -0.02004363015294075, -0.009658330120146275, 0.00864576268941164, 0.005896903574466705, -0.006107855122536421, 0.014279788359999657, 0.004952490329742432, 0.006448622792959213, -0.01316336914896965, 0.014954833313822746, 0.01177433505654335, 0.019563309848308563, 0.008094043470919132, 0.01078124064952135, -0.014383641071617603, -0.02083550952374935, -0.01317634992301464, 0.04050267115235329, -0.0009371110936626792, 0.0003383336297702044, 0.023120276629924774, 0.0011204766342416406, 0.0037679169327020645, -0.012624631635844707, 0.006403186824172735, 0.012176765128970146, -0.0018287865677848458, 0.005893658380955458, -0.036218736320734024, 0.014422586187720299, -0.02350972406566143, 0.0166034996509552, -0.006435641087591648, 0.0028445988427847624, -0.012449379079043865, -0.010826676152646542, -0.02977984957396984, 0.0031821210868656635, 0.019602255895733833, -0.014604329131543636, 0.0057346331886947155, -0.008334203623235226, -0.010761767625808716, -0.016460701823234558, -0.007113931234925985, -0.004264464136213064, -0.008924867957830429, -0.006393450777977705, 0.02009555697441101, -0.008197897113859653, -0.04468275606632233, 0.046759817749261856, 0.008593836799263954, -0.01796657033264637, 0.002088419161736965, 0.23844650387763977, -0.017525194212794304, -0.0058644493110477924, 0.027884531766176224, -0.016746297478675842, -0.009002757258713245, 0.024652108550071716, 0.013565799221396446, 0.0003574003931134939, -0.012923208996653557, 0.0012356885708868504, 0.01931666024029255, -0.02975388616323471, -0.003845806699246168, 0.005757350940257311, -0.02405495196580887, -0.04203450307250023, -0.028481686487793922, -0.007172348443418741, -0.005643761716783047, 0.03528406098484993, 0.02000468596816063, -0.004653912968933582, -0.010826676152646542, 0.010495644994080067, -0.024639125913381577, 0.00567621598020196, 0.010593006387352943, 0.003647836856544018, -0.003865279024466872, -0.0014296015724539757, -0.011229106225073338, 0.004076230339705944, 0.015448134392499924, -0.010067250579595566, -0.006860789377242327, 0.005793050397187471, 0.01659051701426506, 0.012124838307499886, 0.021614406257867813, 0.009229935705661774, 0.014188917353749275, 0.019719090312719345, -0.025314170867204666, 0.014461531303822994, -0.001590249128639698, -0.016019325703382492, -0.01211834792047739, 0.012319562956690788, 0.006438886281102896, -0.024937704205513, -0.00554964505136013, 0.0166034996509552, 0.01140435878187418, -0.00861979927867651, 0.012618140317499638, -0.001342786941677332, 0.006101364269852638, 0.01559093315154314, 0.011547156609594822, -0.013448964804410934, 0.006279861554503441, 0.016188086941838264, 0.036997634917497635, -0.014318733476102352, 0.007483907509595156, -0.03040296770632267, 0.0262618288397789, 0.015110612846910954, 0.00379063468426466, 0.007516361307352781, -0.017525194212794304, -0.022445231676101685, 0.0015204729279503226, 0.004095702897757292, -0.02336692623794079, 0.03543983772397041, 0.03723130375146866, 0.010599497705698013, 0.028715357184410095, -0.0011724031064659357, 0.0032924648839980364, 0.01100841909646988, -0.014007174409925938, -0.024665089324116707, -0.02767682634294033, 0.032090578228235245, -0.007737048901617527, -0.0036770454607903957, -0.027183525264263153, -0.020329225808382034, 0.00828227773308754, -0.015681803226470947, -0.005523681640625, 0.017161710187792778, 0.02141968347132206, 0.01144979428499937, 0.0086976895108819, -0.010554062202572823, 0.003070154460147023, -0.010580024681985378, 0.015357263386249542, -8.701746264705434e-05, 0.007178839296102524, -0.014033137820661068, 0.004439716227352619, 0.01074878592044115, 0.005724897142499685, 0.018420927226543427, -0.008840487338602543, 0.0007123667164705694, -0.017421342432498932, 0.012683048844337463, -0.01726556196808815, 0.0018271638546139002, 0.008048607967793941, -0.01556496974080801, -0.01786271668970585, 0.009755691513419151, -0.010229521431028843, -0.0346609428524971, -0.006724482402205467, -0.004397525917738676, 0.01662946306169033, -0.028066275641322136, -0.018278129398822784, -0.01594143733382225, -0.0030166052747517824, -0.0254699494689703, -0.0016527232946828008, 0.014708181843161583, -0.036218736320734024, -0.0031821210868656635, 0.01450047641992569, 0.00023508913000114262, -0.0019780753646045923, 0.008184915408492088, -0.02078358270227909, -0.013397037982940674, -0.0031951027922332287, 0.00861979927867651, 0.008665235713124275, 0.011715917848050594, 0.0019537347834557295, 0.003394695231691003, 0.004183329176157713, 0.025353115051984787, 0.010476171970367432, -0.032168470323085785, 0.0066011566668748856, -0.025911325588822365, 0.010696860030293465, -0.013195822946727276, -6.062951797503047e-06, 0.03801020234823227, 0.0033297869376838207, -0.030792417004704475, -0.004614967852830887, -0.011508211493492126, 0.01385139487683773, -0.053484298288822174, 0.005913130473345518, 0.012475342489778996, -0.004676630720496178, -0.02066674828529358, -0.01352685410529375, -0.16460701823234558, 0.02274380810558796, 0.01668138988316059, -0.02080954611301422, 0.024652108550071716, 0.02140670083463192, 0.012449379079043865, -0.006490813102573156, -0.014954833313822746, -0.019082989543676376, 0.00327623775228858, -0.026157977059483528, -0.014799053780734539, -0.03873717039823532, 0.0025492666754871607, -0.008496474474668503, -0.0031691393814980984, 0.03606295585632324, 0.016045289114117622, -0.007393036037683487, -0.0018596178852021694, -0.01587652787566185, 0.01936858519911766, -0.026002196595072746, 0.010281447321176529, 0.0046474221162498, 0.002304238500073552, -0.00018377114611212164, -0.0042190286330878735, -0.031207827851176262, -0.005406847223639488, -0.0256646741181612, 0.03507635369896889, 0.01651262864470482, 0.010930528864264488, -0.017408359795808792, 0.007360581774264574, -0.026664258912205696, -0.02138073742389679, 0.017732901498675346, 0.028014348819851875, 0.04634440317749977, 0.021731242537498474, 0.008269296027719975, -0.023600595071911812, 0.019005101174116135, 0.021095141768455505, -0.0035569656174629927, -0.004108684603124857, -0.011644518002867699, 0.015707766637206078, -0.03037700429558754, 0.014708181843161583, -0.011462775990366936, 0.01932964101433754, 0.01072931382805109, 0.008366658352315426, -0.006289597600698471, -0.003342768643051386, -0.006484322249889374, -0.008171933703124523, -0.016811205074191093, 0.00867172610014677, -0.010872111655771732, -0.021056197583675385, -0.01280637364834547, 0.00445918831974268, 0.007626705337315798, -0.01594143733382225, 0.008684707805514336, -0.007087967824190855, 0.013319147750735283, -0.0027439910918474197, 0.007386545184999704, -0.002038115169852972, 0.0017070837784558535, -0.010975964367389679, -0.006266879849135876, -0.010255484841763973, 0.01808340474963188, -0.005173177924007177, -0.0019602254033088684, -0.010807203128933907, 0.01387735828757286, 0.007866865023970604, 0.019771017134189606, 0.009976379573345184, 0.009872526861727238, -0.023691467940807343, -0.008379639126360416, 0.03196076303720474, -0.002227971563115716, -0.012183255515992641, -0.006130572874099016, -0.007003587204962969, 0.011216124519705772, 0.004235255531966686, 0.006698518991470337, 0.004861618857830763, -0.02770278975367546, -0.007788975723087788, 0.016369830816984177, -0.004410507623106241, -0.0016194578493013978, 0.010735804215073586, -0.003099363297224045, -0.007970718666911125, 0.004556550644338131, 0.02907884120941162, -0.031545352190732956, -0.016395794227719307, 0.009437642060220242, 0.010248993523418903, 0.00604619225487113, -0.010210048407316208, 0.028715357184410095, -0.007412508595734835, -0.03380415216088295, 0.0214975718408823, -0.0034823210444301367, 0.04081423208117485, -0.0014028269797563553, -0.010878602974116802, 0.004540323745459318, -0.023925136774778366, -0.02079656533896923, -0.10224328935146332, -0.06272721290588379, 0.004433225374668837, 0.02415880560874939, -0.009995851665735245, 0.018109368160367012, -0.014344696886837482, 0.02144564688205719, -0.026690222322940826, 0.02900095283985138, 0.01666840724647045, -0.030169298872351646, -0.0227567907422781, -0.010593006387352943, 0.017525194212794304, -0.012663575820624828, -0.00963885709643364, -0.019082989543676376, -0.02013450115919113, 0.02001766674220562, 0.02423669584095478, 0.0018304092809557915, 0.025093482807278633, -0.0005464453133754432, -0.0062538981437683105, 0.00030912496731616557, -0.02484683133661747, 0.011644518002867699, 0.014279788359999657, -0.0013906566891819239, -0.01786271668970585, -0.025742564350366592, -0.007068495266139507, -0.033544521778821945, 0.006756936199963093, -0.0058806766755878925, -0.01548707950860262, -0.01726556196808815, 0.015279374085366726, -0.020264318212866783, 0.016785241663455963, -0.011943096294999123, -0.004034040030092001, -0.01868055947124958, -0.0018774676136672497, -0.005416583269834518, 0.0030166052747517824, 0.016395794227719307, 0.0007793032564222813, -0.01594143733382225, -0.020433079451322556, -0.02687196619808674, -0.010164612904191017, -0.004501378629356623, 0.021744223311543465, 0.010612479411065578, 0.012825846672058105, -0.0035861742217093706, -0.0075293430127203465, 0.014370660297572613, -0.01868055947124958, -0.01315687783062458, -0.027495084330439568, 0.014370660297572613, 0.0038198435213416815, 0.01377350464463234, -0.021588444709777832, 0.00329408748075366, -0.021861057728528976, -0.015149557031691074, 0.023003440350294113, 0.02619692124426365, -0.009437642060220242, 0.023263074457645416, -0.012592176906764507, -0.004540323745459318, -0.009327298030257225, -0.020420096814632416, 0.023029403761029243, -0.0057638417929410934, -0.012371489778161049, -0.013306166976690292, -0.005750860087573528, -0.01040477305650711, 0.02910480462014675, 0.0038263341411948204, -0.009242917411029339, -0.005419828929007053, -0.006860789377242327, -0.03053278475999832, 0.01992679573595524, 0.005556135904043913, -0.011839242652058601, 0.0010904566152021289, -0.009567458182573318, 0.008840487338602543, -0.007665649987757206, -0.027131598442792892, 0.020952343940734863, -0.0036835363134741783, -0.009158536791801453, -0.012780411168932915, -0.021250922232866287, 0.021237939596176147, -0.0008275786531157792, -0.0033151826355606318, -0.010248993523418903, -0.017018912360072136, 0.012618140317499638, -0.006026719696819782, -0.006487567443400621, 0.02205578237771988, -0.006351260468363762, 0.01276093814522028, -0.020186427980661392, -0.0035212659277021885, -0.014902906492352486, 0.009846563450992107, 0.02900095283985138, -0.01786271668970585, 0.01075527723878622, -0.010833166539669037, 0.010924038477241993, -0.00928835291415453, -0.002690441906452179, 0.004793465603142977, -0.009080647490918636, 0.0067764087580144405, -0.03663414716720581, -0.009463605470955372, -0.003342768643051386, -0.009956907480955124, 0.008269296027719975, -0.0213677566498518, -0.015097631141543388, 0.005744369700551033, -0.005718406289815903, 0.0011391376610845327, 0.005202386528253555, 0.025768527761101723, 0.005802786909043789, 0.04969366267323494, -0.01651262864470482, -0.05062834173440933, 0.0009849808411672711, -0.020433079451322556, -0.02970195934176445, -0.0005253501585684717, -0.018446890637278557, -0.00584822241216898, 0.011436812579631805, -0.009275372140109539, 0.021731242537498474, 0.010988946072757244, -0.03112993948161602, -0.030065445229411125, -0.005423074122518301, -0.014357678592205048, 0.030091408640146255, -0.003417412983253598, 0.02080954611301422, 0.02480788715183735, 0.01934262178838253, 0.02001766674220562, 0.014734145253896713, -0.004881091415882111, 0.019758034497499466, 0.013591762632131577, -0.02554783970117569, -0.00014421774540096521, 0.0173953790217638, -0.00027727941051125526, 0.0050855521112680435, -0.006828335113823414, 0.020433079451322556, 0.009736219421029091, 0.02280871756374836, 0.01592845469713211, 0.01241692528128624, -0.004404016770422459, -0.014734145253896713, 0.00723725650459528, 0.001394713413901627, 0.0037549352273344994, -0.0003115590079687536, 0.006802372168749571, 0.007574778515845537, 0.035569656640291214, -0.014007174409925938, -0.001965093659237027, 0.006448622792959213, -0.0078019569627940655, -0.005406847223639488, 0.0006912715616635978, -0.009139064699411392, 0.012040457688272, -0.0018547498621046543, -0.010248993523418903, -0.006964642088860273, -0.0013646933948621154, 0.019212806597352028, 0.017499232664704323, 4.188602906651795e-05, -0.010346355848014355, -0.00013914679584559053, -0.00931431632488966, -0.02772875316441059, 0.009755691513419151, -0.018485834822058678, -0.011092799715697765, 0.003436885541304946, 0.030896268784999847, 0.018122348934412003, 0.008561382070183754, 0.0019391303649172187, 0.013630706816911697, -0.016395794227719307, 0.012008003890514374, -0.01722661778330803, 0.001404449692927301, -0.04169698432087898, 0.026923893019557, 0.012715502642095089, -0.018901247531175613, 0.03956799581646919, -0.0033216734882444143, 0.03543983772397041, 0.02424967661499977, 0.020108537748456, -0.03185690939426422, 0.02405495196580887, -0.004572777543216944, -0.01041126437485218, -0.0032632562797516584, -0.01871950551867485, -0.0008421829552389681, -0.017486250028014183, -0.008795051835477352, -0.01343598309904337, 0.015136576257646084, -0.002223103540018201, 0.044578902423381805, 0.023302018642425537, 0.004712330177426338, 0.011599082499742508, -0.03678992763161659, 0.0030068689957261086, 0.018472854048013687, 0.008145970292389393, -0.01795358955860138, 0.015175520442426205, 0.00899626687169075, 0.005796296056360006, 0.015396208502352238, -1.0262329851684626e-05, 6.795070021325955e-06, -0.011586100794374943, -0.030844343826174736, 0.009606403298676014, 0.026742149144411087, -0.012747956439852715, 0.026690222322940826, 0.008931358344852924, 0.01657753624022007, -0.0006547607481479645, -0.013280203565955162, -0.018265146762132645, -0.0008575986721552908, -0.01595441810786724, -0.022263487800955772, -0.018135331571102142, 0.0173953790217638, -0.004504624288529158, -0.017642030492424965, -0.02218559943139553, 0.004365071654319763, 0.011294014751911163, -0.0003517209261190146, -0.007763012312352657, -0.016992948949337006, 0.011229106225073338, 0.01524042896926403, 0.03543983772397041, -0.02134179323911667, -0.019835924729704857, -0.0248727947473526, -0.009139064699411392, 0.01033337414264679, -0.017382396385073662, -0.010839657858014107]"
1,We are grounded in the fact that Google dominates this space.,5.76,9.92,"[0.01990622840821743, -0.008473418653011322, -0.003944750875234604, -0.019693896174430847, -0.007385211065411568, 0.003156796097755432, -0.029063094407320023, 0.014505005441606045, 0.01247457042336464, -0.03017784282565117, -0.003135231090709567, 0.026448743417859077, 0.0017782897921279073, -0.013722027651965618, -0.012899236753582954, 0.014186506159603596, 0.037901461124420166, -0.015566671267151833, 0.01569937914609909, -0.0029627103358507156, -0.005935374181717634, 0.00010264149750582874, -0.0015012614894658327, -0.02088826894760132, -0.013894547708332539, 0.003977928310632706, 0.024351954460144043, -0.013018674217164516, -0.00561355659738183, -0.01823410578072071, -0.008075294084846973, -0.006721670273691416, -0.021896852180361748, 0.008095200173556805, -0.017490940168499947, 0.003768912749364972, -0.01569937914609909, -0.0014863318065181375, -0.0001374774001305923, -0.013695485889911652, 0.012846153229475021, 0.005288421642035246, -0.004694552160799503, -0.014544818550348282, -0.02005220763385296, -0.002931192284449935, 0.008280991576611996, -0.0030705358367413282, -0.01376183982938528, 0.005046228878200054, 0.011167394928634167, 0.01753075234591961, -0.03522075340151787, -0.048703908920288086, -0.005056182388216257, 0.004933427087962627, -0.009249760769307613, 0.009256396442651749, 0.007564367260783911, -0.008898084051907063, 0.0008849977748468518, -0.00024094831314869225, -0.00919004250317812, -0.0016961765941232443, -0.017955418676137924, -0.008599490858614445, -0.027231721207499504, -0.005026322789490223, 0.010968332178890705, 0.0075510963797569275, 0.02125985361635685, 0.010769270360469818, 0.007564367260783911, 0.01003937516361475, 0.004047600086778402, -0.004697869997471571, -0.015473775565624237, 0.007126430049538612, 0.012640455737709999, 0.012521018274128437, 0.013894547708332539, -0.01806158572435379, -0.006569055840373039, 0.01494294311851263, 0.028585344552993774, 0.01139299850910902, -0.009037427604198456, 0.029301969334483147, -0.016482356935739517, 0.006263826973736286, 0.014518276788294315, 0.006376628763973713, 0.034477587789297104, 0.03174379840493202, -0.02834646962583065, 0.010610019788146019, -0.002415289171040058, 0.013854735530912876, -0.01104132179170847, -0.030841384083032608, 0.001700323773548007, -0.007697075139731169, -0.03139875829219818, -0.011260290630161762, -0.011519071646034718, -0.010629926808178425, 0.03206229954957962, -0.0178757943212986, 0.01182430051267147, -0.013801652006804943, 0.00266079930588603, -0.0207821037620306, 0.012521018274128437, -0.018764939159154892, -0.024365223944187164, -0.02043706178665161, 0.006847742944955826, 0.001985646318644285, -0.0023041460663080215, -0.01442538108676672, 0.05141115561127663, 0.010218530893325806, 0.04318324476480484, -0.004266568459570408, 0.002027117647230625, 0.008665844798088074, -0.02869151160120964, -0.03498188033699989, 0.016840670257806778, -0.012321955524384975, 0.00640648789703846, 0.015433963388204575, -0.004654739983379841, 0.013894547708332539, 0.009249760769307613, 0.01925595849752426, -0.021870311349630356, 0.03646821156144142, -0.004495489876717329, -0.006167613435536623, -0.006180884316563606, -0.006598914973437786, -0.013436704874038696, -0.01685394160449505, 0.028187220916152, 0.016163857653737068, -0.011485894210636616, 0.0081880958750844, 0.011359821073710918, -0.007650627288967371, 0.03184996545314789, -0.021352749317884445, -0.0010824012570083141, 0.009893395937979221, 0.03123950958251953, -0.00746483588591218, -0.006094623822718859, 0.03946741670370102, -0.0022394508123397827, -0.012793069705367088, -0.01239494513720274, 0.008486689068377018, 0.025360535830259323, 0.003563215024769306, 0.04299745336174965, 0.020529957488179207, 0.026714159175753593, 0.00029817872564308345, -0.021352749317884445, -0.01958772912621498, -0.003108689561486244, 0.006449618376791477, -0.019441749900579453, 0.005377999506890774, 0.004624880384653807, 0.020981166511774063, -0.000986187718808651, 0.003752324264496565, -0.012753257527947426, 0.006157660391181707, 0.00737857585772872, -0.011406268924474716, 0.007272409275174141, -0.014823505654931068, 0.009946479462087154, -0.001597474911250174, 0.012321955524384975, -0.020158374682068825, 0.016084233298897743, -0.02193666435778141, 0.014332485385239124, 0.0237813089042902, -0.003908256534487009, -0.00476090656593442, -0.6616299748420715, -0.003695923136547208, 0.01741131581366062, -0.020184915512800217, 0.03649475425481796, 0.008426970802247524, 0.01605769246816635, -0.0009505224297754467, 0.010683009400963783, 0.020556500181555748, 0.0003442118759267032, 0.0006531731341965497, -0.006778071168810129, 0.010072551667690277, -0.01891091838479042, -0.023874204605817795, 0.009176772087812424, -0.0039016208611428738, 0.018512792885303497, 0.00327291595749557, -0.009156865067780018, 0.00926966778934002, 0.004143813159316778, -0.001148755312897265, 0.02092808298766613, 0.014863317832350731, 0.014783692546188831, -0.007869595661759377, -0.033469006419181824, 0.036547835916280746, -0.04010441526770592, -0.0037589597050100565, 0.014491735026240349, 0.00553061394020915, 0.034530673176050186, -0.0068344720639288425, -0.0374767929315567, 0.015049109235405922, -0.004528667312115431, 0.011930466629564762, -0.02834646962583065, -0.005480848252773285, 0.0067150346003472805, -0.019123250618577003, 0.0006689322181046009, 0.0081880958750844, 0.017159169539809227, -0.03089446760714054, -0.00979386456310749, -0.0006963033229112625, 0.007989033125340939, -0.026873409748077393, -0.013065122067928314, 0.001599133713170886, -0.00012140726175857708, 0.020131833851337433, 0.011359821073710918, -0.026395659893751144, -0.02715209685266018, 0.00011072839697590098, -0.0029146037995815277, 0.014027256518602371, -0.00784305389970541, -0.02988588623702526, -0.027032658457756042, 0.008426970802247524, -0.03171725943684578, 0.017265336588025093, 0.009641250595450401, -0.0007298950804397464, 0.01869858428835869, 0.005255244672298431, 0.005308327730745077, 0.010629926808178425, 0.009667792357504368, 0.02449793368577957, 0.03986554220318794, -0.012680267915129662, -0.029116177931427956, 0.03580467030405998, -0.006472842302173376, -0.01357604842633009, -0.010085823014378548, -0.0065292431972920895, 0.021339477971196175, -0.019999124109745026, -0.03277892246842384, 0.001783266314305365, -0.009236490353941917, -0.02144564501941204, 0.02091481164097786, 0.02617005631327629, -0.020702477544546127, -0.011631873436272144, 0.005616874434053898, -0.0001341596944257617, -0.01652217097580433, 0.007564367260783911, 0.02226843498647213, -0.007531189825385809, -0.008712292648851871, -0.016747774556279182, 0.012972226366400719, 0.018101397901773453, 0.029965510591864586, 0.027550220489501953, -0.0021631435956805944, 0.02364860102534294, 0.001945833908393979, -0.029301969334483147, 0.004167037084698677, -0.011452716775238514, -0.010696280747652054, 0.0163761917501688, -0.016601795330643654, -0.017955418676137924, -0.014146693982183933, 0.0004097365599591285, -0.008864907547831535, 0.015540129505097866, 0.007524554617702961, 0.006429711822420359, -0.008101834915578365, 0.005328233819454908, -0.002475007902830839, -0.006048175971955061, 0.0011039662640541792, -0.013987443409860134, -0.029567385092377663, 0.017955418676137924, -0.008221272379159927, -0.037025585770606995, 0.036707088351249695, -0.0140139851719141, 0.03445104882121086, 0.027072472497820854, -0.008480053395032883, -0.0431567057967186, 0.026116972789168358, -0.01273998711258173, 0.0006598085747100413, 0.01274662185460329, -0.009780594147741795, 0.010238436982035637, -0.03625587746500969, -0.010198624804615974, -0.01722552441060543, 0.006396534852683544, -0.013065122067928314, 0.006678539793938398, 0.008307533338665962, 0.002806778298690915, -0.008221272379159927, 0.027895262464880943, 0.018964001908898354, 0.010762634687125683, -0.012766527943313122, -0.0303901769220829, -0.0020586359314620495, -0.01702646166086197, 0.02429887093603611, 0.016283296048641205, -0.005892243701964617, -0.012713445350527763, -0.013516329228878021, -0.03187650814652443, -0.024696994572877884, 0.024537745863199234, -0.025891369208693504, 0.006293686106801033, 0.013516329228878021, 0.008845001459121704, 0.00648943055421114, 0.024245787411928177, -0.0019358807476237416, 0.01702646166086197, -0.016309836879372597, 0.013921089470386505, 0.005414494313299656, -0.012706809677183628, 0.007391846273094416, 0.010981603525578976, 0.0007083300151862204, -0.016150588169693947, 0.03596391901373863, -0.01942848041653633, 0.009681062772870064, 0.030151301994919777, -0.01839335635304451, 0.002441830700263381, -0.015062379650771618, 0.020317625254392624, -0.009535083547234535, 0.00042549564386717975, 0.010815718211233616, -0.015792274847626686, -0.0003118642489425838, 0.014743880368769169, -0.00995974987745285, -0.0010384416673332453, 0.00783641915768385, 0.020675936713814735, -0.00012410289491526783, -0.006861013825982809, 0.019362125545740128, 0.001601621974259615, -0.010530395433306694, -0.024723537266254425, 0.005978504195809364, 0.016442544758319855, 0.008247814141213894, -0.011996820569038391, 0.002300828229635954, -0.011260290630161762, 0.013463246636092663, 0.03360171616077423, -0.007577638141810894, 0.010278250090777874, 0.004339558072388172, 0.030098218470811844, 0.016787586733698845, 0.006270462181419134, 0.00785632524639368, -0.02919580228626728, -0.019468292593955994, 0.017955418676137924, 0.004226755816489458, 0.03277892246842384, -0.0010558596113696694, -0.017238793894648552, -0.017597107216715813, 0.013529600575566292, -0.01131337322294712, 0.013038580305874348, -0.007073346991091967, 0.015433963388204575, 0.026554910466074944, 0.003506814129650593, 0.03625587746500969, 0.0024501250591129065, -0.0028183902613818645, 0.03269929811358452, 0.03548617288470268, -0.002684023231267929, 0.004575115162879229, 0.015566671267151833, 0.02903655357658863, -0.021047519519925117, -0.02683359757065773, -0.006433029659092426, -0.014796963892877102, -0.010583478957414627, 0.021883580833673477, -0.005079406313598156, 0.023582246154546738, -0.020609581843018532, 0.0004333751858212054, 0.005251926835626364, 0.011552248150110245, 0.031133342534303665, -0.01791560649871826, 0.001992281759157777, 0.01408033911138773, -0.007305586244910955, -0.00834070984274149, -0.016429275274276733, 0.00022498186444863677, 0.01719898171722889, -0.013098298572003841, 0.0111408531665802, -0.020702477544546127, 0.00877201184630394, 0.0316641740500927, -0.024033453315496445, 0.0040840948931872845, 0.0006034075631760061, -0.011864112690091133, -0.010059281252324581, -0.006625456735491753, 0.021153686568140984, -0.003095418680459261, -0.026568179950118065, -0.006993721704930067, 0.014213047921657562, -0.012282143346965313, 0.006426394451409578, -0.02176414430141449, -0.009097146801650524, -0.02313103899359703, 0.005046228878200054, -0.007929314859211445, -0.006555784959346056, 0.009415646083652973, -0.004213485401123762, 0.0037456888239830732, 0.0029776401352137327, 0.006230649538338184, -0.0014183188322931528, -0.0200787503272295, -0.0020586359314620495, 0.007179513107985258, 0.011300102807581425, -0.004505443386733532, 0.018924187868833542, 0.02932851016521454, 0.012209153734147549, -0.010822352953255177, -0.012647091411054134, 0.010198624804615974, -0.004366099834442139, 0.012567466124892235, 0.005032958462834358, 0.0021631435956805944, -0.004226755816489458, -0.0044025941751897335, 0.007882867008447647, 0.0023920652456581593, -0.01461117248982191, 0.006678539793938398, -0.007179513107985258, 0.005942009389400482, -0.009720874950289726, -0.0006233138265088201, 0.018446439877152443, 0.09029465913772583, 0.01617712900042534, -0.01772981509566307, 0.012268872931599617, -0.009203312918543816, 0.013974172994494438, -0.01788906380534172, -0.026196597144007683, 0.004236709326505661, -0.014544818550348282, -0.004906885325908661, 0.005341504700481892, 0.00030377734219655395, -0.004575115162879229, 0.03137221559882164, 0.014889859594404697, -0.0061410716734826565, 0.005839160643517971, -0.01722552441060543, 0.019375396892428398, -0.005115901120007038, 0.02241441421210766, 0.014332485385239124, 0.00455189123749733, 0.02072902023792267, -0.001985646318644285, 0.024232516065239906, 0.0354330874979496, -0.011804393492639065, -0.020994435995817184, -0.015062379650771618, 0.01095506176352501, -0.01755729503929615, 0.021206770092248917, -0.005776124075055122, 0.03269929811358452, -0.024431578814983368, 0.0046713282354176044, 0.025028765201568604, 0.01588517054915428, 0.0008708975510671735, 0.00501305190846324, 0.014531547203660011, -0.011744675226509571, 0.019521376118063927, -0.014704068191349506, 0.012527653947472572, 0.03864462673664093, -0.0075510963797569275, -0.034159090369939804, 0.010298156179487705, -0.019614271819591522, -0.03405292332172394, -0.004936744924634695, -0.005835842806845903, 0.005235338117927313, 0.010769270360469818, 0.0140139851719141, -0.024842973798513412, -0.050349488854408264, -0.021803956478834152, -0.02529418282210827, -0.012620549649000168, -0.02887730300426483, -0.002524773357436061, -0.02498895302414894, -0.012375039048492908, -0.027736011892557144, 0.0036793346516788006, -0.0006627115653827786, 0.03161109238862991, -0.023900745436549187, -0.020198186859488487, -0.0028764500748366117, 0.04904894903302193, 0.009754052385687828, 0.011028051376342773, -0.010835624299943447, -0.009150230325758457, 0.02869151160120964, 0.005855748895555735, -0.02683359757065773, -0.003911573905497789, -0.025400348007678986, -0.003216514829546213, 0.011154123581945896, -0.01131337322294712, 0.011280196718871593, -0.0011122605064883828, 0.0011777852196246386, 0.01376183982938528, -0.005842478480190039, 0.003014134941622615, 0.009249760769307613, -0.0026757288724184036, 0.007484741974622011, 0.015115463174879551, 0.006442982703447342, 0.003241397673264146, -0.01249447651207447, 0.011611967347562313, -0.015460505150258541, -0.00041305425111204386, -0.01786252297461033, 0.007325492333620787, 0.009747416712343693, 0.022679829970002174, -0.01232859119772911, -0.006502701435238123, -0.015420692041516304, 0.012852788902819157, 0.0010143882827833295, 0.009966385550796986, -0.022852351889014244, 0.01993277110159397, 0.005086041521281004, 0.01012563519179821, 0.024325411766767502, -0.008984345011413097, -0.005593650508671999, -0.013191194273531437, -0.023754766210913658, 0.002949439687654376, 0.004160401877015829, 0.00018185170483775437, -0.0012748281005769968, -0.01249447651207447, -0.008241178467869759, -0.032141923904418945, 0.003977928310632706, -0.038538459688425064, 0.012567466124892235, -0.019335584715008736, -0.012487840838730335, -0.013012038543820381, -0.007955856621265411, -0.03731754422187805, -0.00088085065362975, -0.02630276419222355, -0.007239231839776039, -0.019375396892428398, 0.02258693426847458, 0.007391846273094416, -0.020529957488179207, -0.022812537848949432, -0.029938967898488045, 0.012043268419802189, 0.008028846234083176, 0.010470676235854626, 0.011074499227106571, -0.025042036548256874, 0.004807354416698217, 0.015553400851786137, 0.002788530895486474, 0.007146336138248444, -0.01282624714076519, 0.017119357362389565, -0.010298156179487705, 0.007358669303357601, 0.02663453482091427, 0.01272671576589346, -0.011903924867510796, 0.01806158572435379, 0.01668141968548298, 0.010868800804018974, -0.008533136919140816, -0.002159825759008527, 0.013303996063768864, -0.011744675226509571, 0.001147096510976553, 0.007624085992574692, 0.015341067686676979, 0.022241894155740738, 0.0018346908036619425, 0.017623648047447205, 0.0011860794620588422, -0.008208001963794231, 0.023993641138076782, -0.028293387964367867, 0.00031787759508006275, -0.008672480471432209, -0.01442538108676672, -0.00022290828928817064, 0.014650984667241573, -0.015022567473351955, -0.025944452732801437, 0.02209591493010521, -0.004704505670815706, 0.005809301044791937, -0.0029992051422595978, 0.014213047921657562, -0.008075294084846973, 0.004392641130834818, 0.019879687577486038, 0.006821201182901859, -0.04466957971453667, -0.02194993570446968, -0.0049865106120705605, -0.011910560540854931, -0.003709194017574191, -0.02039724960923195, 0.009342656470835209, -0.006565738003700972, 0.02244095504283905, 0.009634614922106266, 0.029779719188809395, -0.009886760264635086, -0.0327523835003376, -0.004545255564153194, -0.04366099461913109, -0.009382469579577446, -0.03206229954957962, -0.04432453587651253, -0.02460409887135029, -0.00253472663462162, 0.008513230830430984, -0.01207644585520029, 0.011273561045527458, -0.018008502200245857, -0.02395382896065712, 0.018950730562210083, 0.043130163103342056, 0.050376031547784805, 7.08641018718481e-05, 0.025440160185098648, 0.010311426594853401, 0.008367251604795456, -0.0039414335042238235, -0.0033575173001736403, -0.010477311909198761, 0.0018745032139122486, 0.016256753355264664, -0.0021714377216994762, -0.012567466124892235, -0.013801652006804943, -0.003984563518315554, 0.009853583760559559, 0.003549944143742323, -0.006482795346528292, 0.015619754791259766, -0.002639234298840165, -0.00894453190267086, -0.004502125550061464, -0.014717338606715202, 0.01070955116301775, 0.03506150469183922, -0.026408931240439415, 0.017690002918243408, -0.012109622359275818, -0.015354338102042675, 0.004585068207234144, 0.018990542739629745, -0.02411307953298092, 0.01774308644235134, -0.007750158663839102, 0.002274286700412631, 0.004877026192843914, -0.006724987644702196, 0.021379290148615837, 0.016615066677331924, -0.021989747881889343, 0.007026899140328169, -0.008652574382722378, 0.010132270865142345, 0.002894697478041053, 0.019839875400066376, -0.03421217203140259, 0.004860437475144863, -0.026223139837384224, 0.020357437431812286, 0.005434400402009487, -0.01957445964217186, -0.0017932194750756025, -0.010424228385090828, 0.020609581843018532, -0.03392021358013153, -0.01519508846104145, -0.0027586715295910835, -0.001680417568422854, -0.018977271392941475, 0.015460505150258541, -5.660833994625136e-05, -0.012700174003839493, -0.009992927312850952, -0.004591703414916992, -0.011359821073710918, 0.0013826534850522876, 0.005414494313299656, 0.007531189825385809, -0.011519071646034718, -0.006685175467282534, 0.024245787411928177, 0.003626251360401511, 0.00092232198221609, -0.010464041493833065, 0.0020254587288945913, 0.009136958979070187, -0.0005669128149747849, -0.01976025104522705, 0.005434400402009487, 0.016216941177845, 0.013708756305277348, -0.013775110244750977, 0.03153146803379059, 0.018486252054572105, -0.02837301231920719, 0.013934360817074776, -0.007869595661759377, -0.02144564501941204, -0.014690796844661236, 0.003135231090709567, -0.007517919410020113, 0.006048175971955061, 0.012341862544417381, -0.010065916925668716, 0.0448819100856781, 0.024829702451825142, -0.025214556604623795, -0.006273780018091202, 0.022852351889014244, -0.022985059767961502, -0.0017650190275162458, 0.02090154029428959, -0.023170851171016693, 0.000491849728859961, 0.014027256518602371, -0.00836061593145132, 0.0012590689584612846, -0.02700611762702465, -0.006101259030401707, -0.02409980818629265, 0.018857834860682487, 0.008831730112433434, -0.031796883791685104, -0.002156508155167103, -0.018844563513994217, -0.00455520860850811, 0.009933208115398884, -0.0038385845255106688, -0.001108113443478942, 0.028797678649425507, -0.011698227375745773, 0.015579941682517529, 0.0011164076859131455, -0.020211458206176758, -0.001475549186579883, -0.0005113412626087666, -0.037370625883340836, -0.03224809095263481, 0.001824737642891705, -0.012773163616657257, 0.012534288689494133, 0.0048504844307899475, -0.025546327233314514, -0.03291163221001625, -0.013363715261220932, -0.043979495763778687, 0.01839335635304451, -0.01908343844115734, 0.011273561045527458, 0.007458200678229332, 0.011134217493236065, 0.004293110221624374, -0.0029411453288048506, -0.002808437217026949, 0.021803956478834152, -0.0029195803217589855, 0.004916838835924864, 0.0081880958750844, -0.019468292593955994, 0.012932413257658482, -0.02618332765996456, 0.0007618279778398573, -0.011366456747055054, 0.022653289139270782, -0.009939843788743019, 0.011704863049089909, 0.028797678649425507, 0.011897290125489235, 0.01755729503929615, -0.013476517051458359, 0.010941790416836739, 0.009322750382125378, 0.012368403375148773, 0.006396534852683544, -0.03622933849692345, 0.018964001908898354, 0.0017683367477729917, 0.02533399499952793, -0.00970760453492403, -0.015579941682517529, -0.012029998004436493, 0.006861013825982809, 0.00397129263728857, 0.00785632524639368, 0.015314525924623013, 0.009176772087812424, 0.015168546698987484, 0.02583828568458557, -0.009209948591887951, 0.0016024514334276319, 0.022719642147421837, 0.029063094407320023, -0.0118110291659832, -0.011167394928634167, 0.0032248091883957386, -0.0027570128440856934, 0.015314525924623013, -0.013065122067928314, -0.059612520039081573, -0.023874204605817795, -0.0078032417222857475, 0.02124658226966858, -0.01139299850910902, 0.00501305190846324, -6.267352000577375e-05, -0.02916926145553589, -0.011585425585508347, 0.03304434195160866, 0.018791479989886284, -0.009535083547234535, 0.009488635696470737, -0.006678539793938398, 0.031319133937358856, -0.00851986650377512, 0.005175619386136532, -0.008387157693505287, -0.013934360817074776, 0.00015188867109827697, 0.01459790114313364, -0.014889859594404697, -0.013449975289404392, 0.017477668821811676, 0.024259058758616447, -0.008480053395032883, 0.019985854625701904, 0.23377875983715057, -0.004200214520096779, 0.009714240208268166, 0.042068496346473694, -0.00467796390876174, -0.0031335721723735332, 0.007537825498729944, 0.014133422635495663, -0.011777852661907673, -0.01938866637647152, -0.009966385550796986, 0.007265773601830006, -0.016960106790065765, -0.001210132846608758, 0.011578789912164211, -0.027895262464880943, -0.03222154825925827, -0.015792274847626686, -0.025440160185098648, 0.009462093934416771, 0.04055562615394592, -0.003039017552509904, 0.014027256518602371, -0.00859285518527031, 0.013085028156638145, -0.010172083042562008, -0.02618332765996456, -0.0035997098311781883, 0.02313103899359703, 0.028585344552993774, 0.005168984178453684, -0.006618821062147617, 0.00484716659411788, 0.007146336138248444, -0.0019508104305714369, 0.0033691292628645897, 0.0327523835003376, -0.008208001963794231, 0.01905689761042595, 0.011611967347562313, -0.001269022119231522, -0.004578432533890009, 0.002601080574095249, 0.0016306519974023104, -0.005334869492799044, 0.007206054870039225, -0.029408136382699013, 0.002834978746250272, 0.014889859594404697, 0.032672759145498276, -0.01685394160449505, 0.0014506664592772722, 0.022042831405997276, 0.033628255128860474, -0.020609581843018532, 0.010437499731779099, -0.006622138898819685, 0.0023505939170718193, 0.011280196718871593, 0.009203312918543816, -0.004183625802397728, 0.02628949284553528, 0.016296565532684326, 0.024909328669309616, 0.002478325506672263, 0.0021001072600483894, -0.026103701442480087, 0.050190240144729614, 0.0081084705889225, -0.0064695244655013084, 0.03150492534041405, 0.0015261442167684436, -0.0009049039799720049, 0.0002890550240408629, -0.01804831437766552, -0.016296565532684326, 0.015433963388204575, 0.02279926836490631, 0.02631603553891182, 0.01650889962911606, -0.008068658411502838, 0.009754052385687828, -0.01568610779941082, -0.022175539284944534, -0.0178757943212986, -0.0395205020904541, 0.012680267915129662, 0.017650190740823746, 0.00540454126894474, 0.0014655961422249675, 0.005125854164361954, -0.013443340547382832, -0.006953909527510405, -0.013337173499166965, 0.007391846273094416, 0.01788906380534172, 0.0042168027721345425, -0.002496572909876704, -0.03052288480103016, 0.008672480471432209, -0.01908343844115734, 0.02716536819934845, 0.04745645076036453, 0.02850572019815445, 0.0014440310187637806, -0.0005561302532441914, 0.011970278806984425, 0.008201366290450096, -0.010430864058434963, -0.020357437431812286, -0.013303996063768864, -0.0060813529416918755, 0.02550651505589485, -0.011452716775238514, 0.0002863593981601298, 0.013237642124295235, -0.0033110694494098425, -0.015407421626150608, 0.022732913494110107, -0.015739191323518753, -0.020330894738435745, -0.013118204660713673, 0.002604398410767317, 0.021631436422467232, 0.0006763970595784485, -0.016402732580900192, -0.027470596134662628, 0.0013909477274864912, -0.01274662185460329, -0.032301176339387894, 0.004064188338816166, 0.006987086497247219, 0.002478325506672263, -0.006691810674965382, -0.011830935254693031, 0.015765734016895294, -0.000522953225299716, -0.0012466276530176401, -0.029965510591864586, 0.013708756305277348, -0.00012783531565219164, 0.005275150761008263, 0.03222154825925827, -0.007783335633575916, -0.0031468430534005165, -0.0032911631278693676, 0.0009190042619593441, -0.0069008260034024715, 0.0017666778294369578, -0.01836681365966797, -0.0266876183450222, -0.006854378152638674, -0.005729676224291325, -0.010503853671252728, 0.03169071674346924, 0.005129171535372734, -0.019309042021632195, -0.03474300354719162, -0.0007311392109841108, 0.015274712815880775, -0.017809439450502396, 0.014252860099077225, 0.026515096426010132, -0.01754402369260788, -0.02140583097934723, -0.01199018582701683, -0.16986648738384247, 0.027258263900876045, 0.018327001482248306, -0.01604442112147808, 9.631711873225868e-05, 0.002657481702044606, 0.03646821156144142, -0.003325999015942216, -0.022679829970002174, -0.0028416141867637634, 0.02565249428153038, 0.010490583255887032, -0.0237813089042902, -0.016986649483442307, 0.022839080542325974, -0.01281297579407692, -0.04368753731250763, 0.002416948089376092, 0.014876588247716427, 0.0007655604276806116, 0.014903130009770393, 0.010530395433306694, -0.015553400851786137, -0.022308247163891792, -0.0042101675644516945, -0.01909670978784561, -0.022666560485959053, 0.0337078832089901, 0.016668148338794708, -0.03174379840493202, -0.025413619354367256, -0.0034205536358058453, 0.017344960942864418, -0.008466782979667187, 0.0002817975473590195, -0.015924982726573944, -0.016840670257806778, -0.01922941766679287, -0.001763360109180212, 0.01617712900042534, 0.005145760253071785, 0.020370708778500557, 0.0009131982806138694, 0.005723041016608477, -0.004867073148488998, 0.013363715261220932, 0.01492967177182436, 0.016787586733698845, 0.027444055303931236, -0.0040675061754882336, 0.025440160185098648, -0.014305943623185158, -0.004714458715170622, 5.453477206174284e-05, -0.010755999013781548, 0.01054366584867239, 0.0038054075557738543, -0.003629569197073579, -0.0020619535353034735, -0.012547560036182404, -0.002871473552659154, -0.037874918431043625, -0.005285103805363178, -0.026209868490695953, -0.030841384083032608, -0.031292591243982315, -0.011592061258852482, 0.008334074169397354, -0.02701938897371292, 0.011067863553762436, 0.002110060304403305, 0.004687916953116655, 0.007763429544866085, -0.004482219461351633, -0.005719723179936409, -0.00759090855717659, -0.00895780324935913, 0.02500222437083721, -0.0015551741234958172, -0.0027337889187037945, 0.0003170481650158763, -0.007239231839776039, -0.011771216988563538, -0.014053798280656338, -0.014544818550348282, 0.0019209510646760464, 0.008891449309885502, 0.005623509641736746, -0.011240384541451931, -0.0023356641177088022, 0.02127312310039997, -0.032832007855176926, 0.006651998031884432, -0.022175539284944534, 0.010052645578980446, 0.006814565975219011, 0.03312396630644798, 0.004492172505706549, 0.011253654956817627, 0.0055007548071444035, 2.065789703920018e-05, 0.005477530881762505, -0.033654797822237015, 0.007305586244910955, 0.04554545134305954, 0.008480053395032883, 0.02613024413585663, 0.010689645074307919, 0.027576763182878494, -0.0025712212081998587, -0.01634964905679226, 0.02429887093603611, 0.010357874445617199, -0.017796168103814125, 0.008971073664724827, 0.009336021728813648, 0.019640812650322914, -0.021671248599886894, 0.015234900638461113, 0.011426175944507122, 0.04878353327512741, -0.010251708328723907, -0.01905689761042595, 0.006695128511637449, -0.008247814141213894, -0.003403965150937438, -0.10022123157978058, -0.024351954460144043, 0.01806158572435379, -0.0011122605064883828, -0.015579941682517529, 0.02364860102534294, -0.0032049028668552637, 0.005517343059182167, -0.015752462670207024, 0.04151112213730812, -0.0007427511736750603, -0.024856245145201683, -0.020556500181555748, -0.00020621609291993082, 0.01770327240228653, 0.00979386456310749, 0.009674427099525928, -0.023383183404803276, -0.023237204179167747, 0.01668141968548298, 0.009734146296977997, -0.020795373246073723, -0.0008024698472581804, -0.00792267918586731, -0.01350969448685646, -0.010742728598415852, -0.03235425800085068, 0.010968332178890705, 0.011552248150110245, -0.026422200724482536, 0.0078032417222857475, -0.022640017792582512, 0.008460147306323051, -0.026939762756228447, 0.011253654956817627, -0.009767322801053524, -0.0327523835003376, 0.00017760088667273521, 0.023383183404803276, 0.0006531731341965497, 0.009349292144179344, 0.009714240208268166, -0.015075650997459888, -0.015433963388204575, -0.0029975464567542076, -0.014796963892877102, -0.011538977734744549, -0.004953333176672459, 0.014067068696022034, -0.009044063277542591, -0.022653289139270782, -0.020821915939450264, -0.0170131903141737, -0.028240304440259933, 3.5995801681565354e-06, 0.0026773877907544374, 0.006180884316563606, -0.023330099880695343, -0.012613913975656033, 0.0076174503192305565, -0.01122711319476366, -0.005497436970472336, -0.03930816799402237, 0.01314474642276764, 0.0011728086974471807, 0.00364947528578341, -0.02533399499952793, -0.016070961952209473, 0.0009621343924663961, -0.027736011892557144, 0.008393793366849422, 0.006731623318046331, -0.016256753355264664, 0.019853146746754646, -0.04167037457227707, 0.0021681201178580523, -0.021166957914829254, -0.009475365281105042, 0.006224014330655336, 0.013284089975059032, -0.0026309399399906397, -0.021180227398872375, 0.022825809195637703, -0.036892879754304886, 0.008420335128903389, -0.0028233667835593224, -0.0081880958750844, -0.0056268274784088135, 0.00034607810084708035, -0.03407946601510048, 0.008048752322793007, -0.0033060929272323847, 0.0007655604276806116, -0.012733351439237595, -0.009813770651817322, 0.014465193264186382, -0.006087988615036011, -0.006645362824201584, 0.02279926836490631, 0.005892243701964617, -0.011107675731182098, 0.009448823519051075, -0.029912427067756653, 0.012348497286438942, -0.01819429360330105, 0.001944175106473267, -0.020954623818397522, -0.03407946601510048, 0.0015651272842660546, -0.020330894738435745, 0.0002884329587686807, 0.002587809693068266, -0.005129171535372734, 0.010271614417433739, -0.013370350934565067, -0.008334074169397354, -0.051862362772226334, -0.02562595158815384, 0.018990542739629745, -0.0020586359314620495, 0.0013486470561474562, 0.020357437431812286, 0.012341862544417381, 0.019030354917049408, 0.009448823519051075, 0.016482356935739517, 0.0067681181244552135, 0.021458914503455162, -0.015579941682517529, 0.0059486450627446175, -0.030655592679977417, -0.026063889265060425, -0.01145935244858265, -0.02749713882803917, -0.0018280553631484509, 0.0031518195755779743, 0.028399553149938583, -0.016827398911118507, 0.003695923136547208, 0.02545343153178692, 0.011784487403929234, 0.03665400296449661, -0.024696994572877884, -0.05600285902619362, -0.004183625802397728, -0.0360700860619545, 0.0008468441665172577, 0.004372735042124987, -0.02242768555879593, -0.009880125522613525, 0.0013892889255657792, 0.00835398118942976, 0.005132489372044802, 0.010683009400963783, -0.0012316979700699449, -0.0140139851719141, -0.00870565790683031, -0.02650182694196701, 0.019269229844212532, 0.02090154029428959, 0.00775679387152195, 0.00463483389467001, 0.00844024121761322, 0.025201287120580673, 0.00902415718883276, 0.004774177446961403, 0.011485894210636616, 0.027112284675240517, -0.027629846706986427, 0.01037114579230547, 0.01601787842810154, -0.0221224557608366, -0.0009090511593967676, -0.007292315363883972, 0.017623648047447205, -0.009389104321599007, 0.01145935244858265, -0.010092457756400108, 0.030284009873867035, -0.015911713242530823, -0.01904362626373768, 0.02768293023109436, 0.0027536950074136257, -0.010915248654782772, -0.002972663613036275, 0.007033534348011017, 0.0009082217002287507, 0.014093610458076, -0.010935155674815178, -0.0029776401352137327, -0.014027256518602371, 0.0013469881378114223, -0.02716536819934845, -0.00041657930705696344, -0.012003456242382526, -0.015818817541003227, 0.01544723380357027, 0.002907968359068036, -0.0027752600144594908, 0.026886681094765663, 0.009462093934416771, 0.025718847289681435, 0.006569055840373039, -0.022985059767961502, -0.005732994060963392, -0.008380522951483727, 0.004757588729262352, 0.04071487486362457, 0.011160759255290031, -0.001026000245474279, -0.005799348000437021, 0.021883580833673477, 0.02125985361635685, 0.006005045957863331, -0.0155135877430439, 0.012156070210039616, 0.008208001963794231, 0.004837213549762964, -0.00540454126894474, -0.006041540764272213, -0.02831992879509926, 0.023515891283750534, 0.021551810204982758, 0.01838008500635624, 0.0019159745424985886, -0.008626032620668411, 0.013065122067928314, -0.005895561538636684, 0.003958021756261587, -0.02988588623702526, 0.020808644592761993, -0.01315801776945591, -0.0010351239470764995, -0.0030224290676414967, -0.002275945618748665, -0.021631436422467232, -0.019003814086318016, 0.012507746927440166, -0.011379728093743324, 0.041219163686037064, 0.0004997292999178171, 0.059134770184755325, 0.0008733858121559024, -0.03206229954957962, 0.00887154322117567, -0.030947551131248474, 0.00425993325188756, 0.016920294612646103, 0.015208358876407146, -0.031478382647037506, -0.013682214543223381, -0.0118906544521451, 0.003951386548578739, 0.0163761917501688, -0.007026899140328169, 0.018327001482248306, -0.000534150458406657, -0.007259138394147158, -0.010530395433306694, 0.0032712570391595364, -0.004525349475443363, 0.04589049518108368, 0.0019226099830120802, 0.01114748790860176, 5.479397077579051e-05, -0.015274712815880775, -0.01840662583708763, 0.010178718715906143, 0.024391766637563705, 0.0045386203564703465, -0.015792274847626686, 0.030602509155869484, -0.007385211065411568, -0.05823235586285591, -0.001103136921301484, -0.0008348174742422998, 0.0028051193803548813, 0.009880125522613525, -0.02717863768339157, 0.020636124536395073, 0.007770064752548933, -0.004578432533890009, 0.020357437431812286, -0.0018993860576301813, -0.016137316823005676, 0.029620468616485596, -0.0011744674993678927, 0.005099312402307987, -0.022308247163891792, 8.23205555207096e-05]"
2,I feel like a new race is starting with a complete new platform technology.,9.92,14.84,"[0.006320164073258638, -0.020897425711154938, 0.0037029595114290714, -0.022318288683891296, -0.002240206580609083, -0.01046211738139391, -0.01072350237518549, -0.02282765507698059, -0.012204686179757118, -0.024328945204615593, -0.0013806509086862206, 0.02529406175017357, -0.014932476915419102, -0.04640595614910126, 0.01296873576939106, 0.007794645614922047, 0.0196240097284317, -0.002974096452817321, -0.005194196477532387, 0.02066955156624317, -0.02178211323916912, 0.009832111187279224, 0.0062397378496825695, 0.0005696860607713461, -0.011836065910756588, -0.004761905409395695, 0.00781475193798542, -0.0050735571421682835, -6.089566886657849e-05, -0.004208974540233612, 0.013585337437689304, 0.007198150735348463, 0.008143159560859203, -0.006055427715182304, -0.02981133572757244, -0.022814251482486725, 0.01016722060739994, -0.0068764458410441875, 0.010850843973457813, -0.020870616659522057, -0.0039475890807807446, 0.020106567069888115, -0.003262290498241782, -0.014785028994083405, -0.03519989550113678, 0.005361751187592745, 0.0027663283981382847, -0.01821655035018921, 0.01027445588260889, 0.008786569349467754, -0.0006706377607770264, 0.014329279772937298, -0.012352134101092815, -0.01809591054916382, -0.019369326531887054, 0.007720921654254198, -0.016165679320693016, 0.0050199395045638084, 0.019275495782494545, 0.03225093334913254, -0.006357026286423206, 0.021514026448130608, -0.006785966455936432, 0.016299722716212273, -0.000534499587956816, 0.004175463691353798, 0.0017593245720490813, 0.01674206741154194, 0.0007799672312103212, -0.009369660168886185, 0.004875842481851578, -0.010006368160247803, 0.0017459202790632844, -0.011125633493065834, 0.012935224920511246, -0.0032606148160994053, -0.008236990310251713, -0.029087500646710396, 0.028229620307683945, -0.00684628589078784, 0.01719781756401062, -0.01498609408736229, -0.008009116165339947, 0.024717673659324646, 0.013752891682088375, 0.0060118637047708035, -0.005197547376155853, 0.009838812984526157, -0.0008009115699678659, -0.015254181809723377, 0.013096077367663383, 0.007003787439316511, 0.006283302325755358, 0.04313528910279274, -0.022867869585752487, 0.020964447408914566, 0.007030596025288105, 0.007151235826313496, -0.0015373146161437035, -0.024637246504426003, 0.0006392212817445397, 0.01676887646317482, -0.014235449023544788, -0.02113870345056057, -0.002902047708630562, -0.010240945033729076, 0.0042491876520216465, 0.0375322587788105, 0.020468484610319138, -0.020267419517040253, 0.007968902587890625, 0.01584397442638874, 0.011011696420609951, -0.0012524715857580304, 0.001260849297977984, -0.013571932911872864, 0.007023894228041172, 0.00637713260948658, -0.0035689156502485275, -0.004195570480078459, 0.03482457250356674, 0.012948629446327686, 0.00436982698738575, 0.0036694484297186136, 0.010696693323552608, 0.008344225585460663, -0.019516773521900177, -0.01612546667456627, 0.009094870649278164, 0.01251968927681446, 0.014396301470696926, -0.018632085993885994, -0.007580175530165434, 0.019918905571103096, -0.031151773408055305, 0.012419155798852444, -0.011943301185965538, 0.008538588881492615, -0.0283636637032032, -0.022023392841219902, 0.0024462989531457424, 0.017774205654859543, -0.011051909998059273, -0.006343621760606766, 0.011400423012673855, 0.0007531584706157446, 0.0075399624183773994, 0.0007908582920208573, 0.014034383930265903, -0.01729164831340313, 0.008779867552220821, -0.010669885203242302, 0.010857545770704746, 0.003508595982566476, 0.02024061046540737, 0.011976812034845352, 0.0013320600846782327, 0.02731812186539173, -0.00413860147818923, 0.009295935742557049, 0.004182165954262018, 0.0038671630900353193, -0.005797393620014191, 0.0005081096896901727, 0.03479776531457901, 0.023524682968854904, 0.029007073491811752, -0.011380316689610481, 0.0012683892855420709, -0.015763549134135246, -0.022814251482486725, 0.014315875247120857, -0.019181665033102036, 0.019208474084734917, -0.0022485842928290367, 0.004765256308019161, 0.0018983950139954686, 0.026285985484719276, -0.0031014380510896444, -0.019918905571103096, 0.0005701049230992794, 0.0054890927858650684, 0.030669216066598892, 0.005210951901972294, -0.019463157281279564, -0.005331591237336397, 0.011521062813699245, -0.02467745915055275, -0.009269127622246742, 0.020575720816850662, 0.00990583561360836, 0.024972356855869293, -0.01407459657639265, 0.003612479893490672, -0.6682886481285095, -0.018658893182873726, 0.010214135982096195, -0.006772561930119991, 0.016835898160934448, 0.005291378125548363, 0.014945881441235542, -0.01367916725575924, -0.0008729601395316422, 0.0022670153994113207, -0.025950875133275986, -0.010757013224065304, -0.008203479461371899, -0.01415502279996872, -0.014744815416634083, -0.021487217396497726, 0.04793405532836914, -0.02729131281375885, -0.009054657071828842, -0.016849303618073463, -0.01836399734020233, -0.0025652628391981125, -0.019101237878203392, -0.010663182474672794, -0.008786569349467754, 0.011903087608516216, -0.0037331192288547754, 0.03482457250356674, -0.03919440135359764, 0.002308904193341732, -0.019061025232076645, 0.016286319121718407, -0.015495460480451584, 0.00922891404479742, 0.053242187947034836, -0.03040112927556038, -0.006085587665438652, 0.030937304720282555, -0.002158104907721281, 0.0019670925103127956, -0.013652359135448933, 0.0014032708713784814, -0.009818706661462784, -0.004828927107155323, -0.0038839185144752264, 0.021420195698738098, 0.0170101560652256, -0.010086794383823872, -0.0005843471153639257, -0.022479141131043434, 0.017479307949543, 0.017988674342632294, -0.0003650598519016057, 0.012693946249783039, 0.005418719723820686, 0.005941490642726421, 0.037827152758836746, 0.0039844512939453125, -0.010066688060760498, 0.015280990861356258, -0.005730371456593275, 0.0045507862232625484, -0.010870950296521187, -0.043617844581604004, -0.0345296785235405, 0.008558695204555988, -0.02581683173775673, -0.0009207131806761026, 0.0039040250703692436, -0.013029055669903755, -0.0003614993183873594, 0.013109481893479824, -0.00684628589078784, 0.01809591054916382, 0.0027445463929325342, 0.015575886704027653, 0.039489299058914185, -0.019342517480254173, 0.008572099730372429, 0.025991089642047882, 0.012680541723966599, -0.015428438782691956, 0.00838443823158741, -0.0032187262549996376, 0.04015951603651047, -0.02040146291255951, -0.03578969091176987, -0.017398882657289505, 0.002084380714222789, 0.001953687984496355, 0.01981167122721672, 0.016380149871110916, -0.009181998670101166, -0.025468317791819572, 0.011983513832092285, 0.012258303351700306, -0.012265006080269814, 0.012687243521213531, -0.012358836829662323, -0.019208474084734917, -0.002489863196387887, -0.009490299969911575, 0.012251601554453373, 0.0016881139017641544, 0.01284809596836567, -0.000706662074662745, -0.00012126773071940988, 0.012586710974574089, 0.024047454819083214, -0.038256093859672546, -8.848983998177573e-05, 0.011407125741243362, -0.01636674627661705, 0.018538255244493484, -0.006849637255072594, -0.020066354423761368, 0.0053382935002446175, 0.0021983180195093155, 0.0049227578565478325, -0.02150062285363674, 0.018913576379418373, -0.001487885951064527, 0.0036560441367328167, -0.004430146887898445, -0.02239871583878994, 0.014758219942450523, 0.021701687946915627, -0.006092289928346872, -0.02384638786315918, -0.009577427990734577, -0.005720318295061588, -0.015884187072515488, 0.003227103967219591, 0.015642909333109856, 0.018471233546733856, 0.00017855050100479275, 0.0087396539747715, -0.023404043167829514, -0.005231058690696955, -0.02957005798816681, -0.026621093973517418, 0.0012784425634890795, -0.014731410890817642, 0.003389632096514106, 0.0022368556819856167, -0.01938273012638092, -0.008665930479764938, 0.006410643924027681, 0.012130961753427982, -0.0050735571421682835, -0.0048088207840919495, -0.00671559339389205, -0.016876112669706345, -0.0028316748794168234, -0.006427399348467588, 0.004882544744759798, -0.004289400763809681, -0.03560202941298485, -0.017921652644872665, -0.025857044383883476, 0.0018414263613522053, -0.008558695204555988, 0.0035186491440981627, -0.012077344581484795, 0.013417782261967659, -0.01971784047782421, -0.03836333006620407, 0.03399350121617317, -0.007023894228041172, -0.020160185173153877, -0.008324118331074715, -0.020133376121520996, 0.012352134101092815, 0.011159144341945648, -0.013652359135448933, -0.002419490134343505, 0.004121846053749323, 0.0005236085271462798, -0.007720921654254198, -0.009698067791759968, 0.0065044742077589035, 0.008310714736580849, -0.008833484724164009, -0.003357796696946025, 0.034047119319438934, -0.009744983166456223, 0.02769344486296177, 0.007667304016649723, -0.00011215694394195452, 0.02719748206436634, -0.006956872064620256, 0.02873898670077324, -0.020991256460547447, 0.01436949335038662, -0.003558862255886197, 0.003860460827127099, -0.011480849236249924, -0.00672899791970849, 0.012533093802630901, 0.014825241640210152, 0.00904795527458191, -0.009389766491949558, -0.002724439837038517, 0.010066688060760498, 0.02011997066438198, -0.03042793832719326, -0.002972420770674944, -0.008793272078037262, 0.000726349710021168, 0.022358503192663193, 0.009731578640639782, -0.0034650317393243313, -0.02018699236214161, -0.021272748708724976, 0.017452500760555267, 0.02448979765176773, -0.020294228568673134, -0.005167387891560793, 0.0012139339232817292, 0.007097618188709021, -0.027090247720479965, 0.006628464907407761, 0.013685869984328747, -0.02420830726623535, -0.019275495782494545, 0.025401296094059944, 0.0032606148160994053, 0.04624510556459427, 0.03731778636574745, -0.048014480620622635, -0.0037197149358689785, 0.01710398681461811, 0.027613017708063126, 0.005448879674077034, 0.023337021470069885, -0.01130659319460392, 0.025307465344667435, 9.503494220552966e-05, 0.028015149757266045, 0.006082236301153898, 0.014248853549361229, 0.015280990861356258, -0.002293824218213558, -0.00869273953139782, 0.019650818780064583, 0.005013237241655588, 0.015535674057900906, -0.0012725781416520476, -0.020160185173153877, 0.027237696573138237, -0.022291479632258415, -0.008913910947740078, -0.012010322883725166, -0.008773165754973888, 0.020347844809293747, -0.026192154735326767, 0.011085420846939087, 0.007734326180070639, 0.018498040735721588, 0.009423277340829372, 0.005418719723820686, 0.026259176433086395, 0.016902919858694077, 0.0007682383875362575, 0.007137831300497055, -0.0013412755215540528, -0.009992963634431362, -0.011849470436573029, 0.007117724511772394, 0.006581549532711506, -0.0027478975243866444, -0.0013069268316030502, 0.02187594398856163, -0.038470566272735596, 0.013015651144087315, 0.0017945111030712724, 0.01688951626420021, -0.022639993578195572, 0.017224624752998352, 0.0017911599716171622, 0.01719781756401062, -0.021152108907699585, -0.01109212264418602, 0.014302471652626991, -0.003971046768128872, -0.026594284921884537, -0.03876546025276184, 0.012653732672333717, 0.02144700475037098, 0.024020645767450333, 0.007003787439316511, 0.02239871583878994, 0.015455247834324837, 0.025495126843452454, -0.01166180893778801, 0.012037131004035473, 0.047371070832014084, -0.0077008153311908245, -0.00270768441259861, -0.01605844497680664, -0.010281157679855824, 0.018444424495100975, -0.0012826314195990562, -0.02439596876502037, 0.0379611998796463, 0.017733991146087646, 0.024757886305451393, -0.00708421366289258, 0.0035823199432343245, -0.03758587688207626, 0.009865622036159039, -0.019945714622735977, 0.007245066110044718, -0.016634833067655563, -0.0165812149643898, -0.010220837779343128, 0.01670185476541519, 0.005730371456593275, 0.046191487461328506, 0.008665930479764938, 0.0008821756346151233, -0.010033177211880684, -0.024811504408717155, 0.003612479893490672, 0.08809357136487961, 0.018565064296126366, -0.006290004123002291, 0.015026307664811611, -0.03498542681336403, -0.003228779649361968, -0.01987869292497635, -0.03340370953083038, 0.004205623641610146, -0.024101071059703827, -0.006162662524729967, 0.002072651870548725, 0.0017065448919311166, 0.00048800313379615545, 0.011065313592553139, 0.00436982698738575, -0.0016772227827459574, -0.006970276590436697, -0.00048632759717293084, -0.029891762882471085, -0.019704435020685196, 0.011494253762066364, 0.026326198130846024, 0.003225428517907858, 0.027961531654000282, -0.0011645053746178746, 0.025240443646907806, 0.010904461145401001, -0.008994337171316147, -0.011112228967249393, -0.01345799583941698, -0.014114810153841972, -0.0020106567535549402, 0.00821688398718834, -0.01428906712681055, -0.010341477580368519, -0.011963407509028912, 0.0176937784999609, 0.018350593745708466, 0.009483597241342068, 0.005804095417261124, 0.008102946914732456, 0.008538588881492615, -0.016755472868680954, 0.0065044742077589035, -0.00801581796258688, -0.02636641077697277, 0.00013205406139604747, 0.0031701354309916496, -0.029891762882471085, 0.02482490800321102, -0.006869743578135967, -0.03150028735399246, -0.0077008153311908245, -0.0082906074821949, 0.023792771622538567, -0.009510406292974949, -0.022626589983701706, -0.01686270721256733, -0.01428906712681055, -0.029007073491811752, -0.027023226022720337, -0.0038906207773834467, -0.02747897431254387, -0.023484470322728157, -0.019369326531887054, 0.003059549257159233, -0.0036325864493846893, -0.025615766644477844, -0.006263195537030697, -0.008451459929347038, -0.04999832808971405, -0.048443421721458435, 0.011004994623363018, 0.008786569349467754, 0.0012549848761409521, 0.005797393620014191, -0.018699107691645622, -0.002089407294988632, 0.01861868053674698, 0.0006522067706100643, 0.002573640551418066, -0.009081466123461723, -0.014195236377418041, 0.0025116452015936375, -0.00672229565680027, -0.020414868369698524, -0.016661642119288445, 0.01612546667456627, 0.014302471652626991, 0.015468652360141277, -0.01753292605280876, 0.01624610647559166, 0.016621429473161697, 0.0018766128923743963, -0.0029456119518727064, 0.005820851307362318, 0.008458162657916546, -0.005361751187592745, -0.008116350509226322, -0.013035757467150688, -0.033001579344272614, 0.013819913379848003, -0.027827488258481026, 0.01416842732578516, 0.01800207979977131, 0.01332395151257515, -0.012941926717758179, -0.016420362517237663, -0.011722128838300705, -0.009517108090221882, -0.004647967871278524, 0.0019185015698894858, -0.0012281761737540364, -0.00030159851303324103, 0.004004558082669973, 0.00437652925029397, 0.007104320451617241, -0.014516941271722317, -0.00016462251369375736, 0.0048255762085318565, -0.023886602371931076, 0.030133042484521866, 0.034905001521110535, -0.007198150735348463, 0.022841060534119606, 0.022908082231879234, 0.00023248218349181116, -0.022639993578195572, 0.02676854282617569, 0.0024345701094716787, 0.02467745915055275, 0.006038672290742397, -0.014557154849171638, -0.012760967947542667, -0.008062733337283134, 0.008699441328644753, -0.026138536632061005, 0.0014828592538833618, -0.017586544156074524, -0.027559401467442513, -0.0003671542799565941, 0.02322978712618351, -0.0024697566404938698, -0.027773870155215263, -0.03318924084305763, -0.015857379883527756, 0.011608190834522247, 0.006682082545012236, 0.007781241554766893, -0.03686203807592392, -0.008612312376499176, -0.002908749971538782, -0.009249020367860794, -0.008143159560859203, -0.029543248936533928, -0.016205893829464912, -0.040615264326334, 0.030133042484521866, 0.04485104978084564, 0.006162662524729967, -0.01935592107474804, 0.030347511172294617, -0.0004917731275781989, 0.006139205303043127, -0.009684663265943527, -0.025052782148122787, -0.007171342149376869, -0.02166147530078888, 0.0035186491440981627, 0.00378003460355103, 0.010026474483311176, -0.004212325904518366, -0.01230521872639656, 0.0017794311279430985, 0.025803428143262863, -0.01099829189479351, 0.015535674057900906, -0.016996750608086586, -0.036165010184049606, -0.008645824156701565, -0.022747229784727097, 0.0035555113572627306, 0.011668510735034943, -0.017184412106871605, -0.015803761780261993, 0.012807883322238922, -0.009858920238912106, 0.004178814589977264, 0.0052042496390640736, 0.029248353093862534, -0.0005763882654719055, 0.039033547043800354, -0.0072316620498895645, 0.009671258740127087, -0.02415468916296959, -0.024503203108906746, -0.01109212264418602, -0.003592373337596655, 0.01005998533219099, 0.028685368597507477, 0.034690529108047485, 0.007258470635861158, 0.0063536749221384525, 0.0010907812975347042, 0.03983781114220619, -0.008518482558429241, -0.03249221295118332, -0.003793438896536827, -0.01643376797437668, -0.0028383771423250437, -0.034288398921489716, -0.019329113885760307, -0.027143865823745728, -0.022077010944485664, 0.009383064694702625, -0.019248686730861664, -0.0004102996317669749, -0.00601521460339427, -0.006521229632198811, 0.02218424528837204, 0.031339436769485474, -0.0002974096278194338, -0.011594787240028381, 0.01864548958837986, 0.03166114166378975, -0.0103682866320014, -0.015348012559115887, -0.0240340493619442, 0.011072016321122646, -0.003206997411325574, 0.03621862828731537, -0.0010271104983985424, -0.007285279221832752, -0.010542543604969978, 0.01062967162579298, -0.003575617913156748, -0.028390472754836082, -0.02916792593896389, -0.004430146887898445, -0.0070909159258008, -0.0033510944340378046, -0.015669718384742737, 0.007459536194801331, -0.012010322883725166, 0.021634666249155998, -0.00260715140029788, 0.009758386760950089, -0.009295935742557049, -0.008129755035042763, -0.0043564229272305965, 0.015468652360141277, -0.011380316689610481, 0.010877653025090694, 0.0021262695081532, 0.010656480677425861, 0.011172548867762089, 0.003322610165923834, 0.0115679781883955, -0.016406958922743797, -0.025897258892655373, 0.0040983883664011955, -0.006269897799938917, -0.007372407708317041, 0.01239904947578907, -0.0038537585642188787, -0.01664823666214943, -0.01621929742395878, -0.015267586335539818, 0.02999899722635746, -0.01600482687354088, -0.013344057835638523, -0.02676854282617569, 0.028256429359316826, 0.0072919814847409725, 0.011547871865332127, -0.018940385431051254, 0.004413391463458538, -0.002959016477689147, -0.0017978622345253825, 0.007506451569497585, 0.0008729601395316422, -0.004835629370063543, -0.011139038018882275, -0.023765962570905685, -0.026942798867821693, -0.010442010127007961, 0.001061459188349545, 0.0006161825149320066, -0.03064240887761116, -0.005998459178954363, -0.004892597906291485, -0.010656480677425861, 0.0067457533441483974, 0.011139038018882275, 0.007613686844706535, -0.003196944249793887, 0.014503536745905876, -0.016112063080072403, -0.00766060221940279, 0.03557521849870682, 0.011856172233819962, -0.02377936616539955, 0.026621093973517418, 0.013739487156271935, -0.024315541610121727, 0.026326198130846024, -0.016085254028439522, -0.020012736320495605, -0.0013228445313870907, 0.009724875912070274, -0.012171175330877304, 0.000994437257759273, 0.019221877679228783, 0.02873898670077324, 0.02467745915055275, 0.01562950387597084, -0.01345799583941698, -0.01522737368941307, -0.0016470629489049315, 0.0018363997805863619, 0.00793539173901081, 0.007861667312681675, -0.00188834173604846, 0.014101405628025532, -0.015334608033299446, -0.025347677990794182, 0.00967796053737402, -0.046566810458898544, -0.012727457098662853, 0.009932643733918667, 0.012794478796422482, -0.012023727409541607, -0.009530512616038322, -0.013652359135448933, -0.013913744129240513, -0.017023559659719467, 0.009128381498157978, 0.010649777948856354, -0.01805569790303707, 0.016071848571300507, 0.022412119433283806, 0.0194095391780138, 0.001806239946745336, -0.009530512616038322, -0.02529406175017357, -0.00330753019079566, -0.02270701713860035, -0.004031366668641567, -0.00544552830979228, -0.008176670409739017, 0.050534505397081375, 0.009758386760950089, 0.0016210919711738825, -0.02159445360302925, 0.006863041315227747, -0.04900640621781349, -0.0015314501943066716, 0.01575014367699623, 0.01509332936257124, 0.03994504734873772, -0.012647030875086784, 0.006976978853344917, 0.017492713406682014, -0.008350927382707596, 0.005485741887241602, -0.007251768372952938, 0.0019821724854409695, 0.010254349559545517, -0.014141618274152279, 0.0020491941832005978, 0.010053283534944057, -0.031205391511321068, 0.02251935563981533, 0.03329647332429886, -0.0032974770292639732, 0.018296975642442703, 0.00391407823190093, 0.0014820215292274952, 0.01121276244521141, 0.0038202477153390646, -0.00876646302640438, 0.016045039519667625, 0.013699274510145187, 0.011735532432794571, -0.04672766104340553, -0.018994003534317017, 0.03755906596779823, 0.002856808016076684, 0.02147381380200386, -0.010348179377615452, 0.011226166971027851, 0.005495795048773289, 0.013102779164910316, 0.008116350509226322, -0.01667504571378231, -0.016326531767845154, -0.022264672443270683, 0.015280990861356258, -0.018136123195290565, 0.002937234239652753, 0.035092663019895554, 0.016232701018452644, -0.012720754370093346, 0.0065413364209234715, 0.027988340705633163, 0.017733991146087646, 0.0020760030020028353, 0.0028819411527365446, -0.025066187605261803, -0.007566771470010281, 0.010200731456279755, 0.007506451569497585, -0.019637413322925568, -0.005713616032153368, -0.004004558082669973, -0.013042459264397621, -0.010730204172432423, 0.017452500760555267, 0.012962033040821552, -5.686388612957671e-05, -0.018806342035531998, 0.0072919814847409725, 3.2961157558020204e-05, 0.012063940055668354, -0.018296975642442703, 0.007741028442978859, -0.014704602770507336, 0.002528400858864188, 0.01098488736897707, -0.01895379088819027, -0.015334608033299446, 0.028390472754836082, 0.016353340819478035, 0.0036727995611727238, -0.010455414652824402, 0.23355787992477417, 0.0012834691442549229, 0.005599678959697485, 0.02491873875260353, 0.004487115424126387, -0.01587078347802162, 0.01916825957596302, -0.005207601003348827, -0.014235449023544788, 0.0064977724105119705, -0.008545290678739548, 0.002979123033583164, -0.02322978712618351, -0.01501290313899517, 0.005023290403187275, 0.009517108090221882, -0.00944338459521532, 0.013169800862669945, -0.005991756916046143, 0.00745283393189311, 0.013665763661265373, -0.024382563307881355, -0.005851010791957378, -0.023430852219462395, -0.002690928755328059, -0.009637747891247272, -0.006695486605167389, -0.004500519949942827, 0.019181665033102036, 0.01916825957596302, -0.012774372473359108, -0.007962200790643692, 0.004788713995367289, -0.0005688482779078186, 0.016527598723769188, -0.008190074935555458, 0.025280656293034554, 0.016138870269060135, -0.005773935932666063, 0.032599445432424545, 0.015026307664811611, 0.00989243108779192, 0.004118495155125856, -0.023551492020487785, 0.012244898825883865, -0.0018447774928063154, -0.017425691708922386, -0.010200731456279755, -0.015776952728629112, -0.007472940720617771, -0.02242552489042282, -0.003957642707973719, 0.022639993578195572, 0.014597367495298386, -0.008357629179954529, 0.011500956490635872, 0.00837103370577097, 0.011400423012673855, 0.015187160111963749, -0.002558560576289892, -0.022532759234309196, 0.017184412106871605, -0.010321371257305145, 0.054260920733213425, -0.013652359135448933, 0.001970443641766906, -0.013263631612062454, 0.01831038109958172, 0.020468484610319138, -0.000927415385376662, -0.019369326531887054, -0.0047183409333229065, 0.0065580918453633785, -0.0066083581186831, -0.018069101497530937, -0.023430852219462395, 0.025468317791819572, 0.009463490918278694, 0.012070642784237862, 0.022009989246726036, 0.010307966731488705, 0.003726416965946555, 0.010133709758520126, -0.014731410890817642, -0.002367548178881407, -0.028873030096292496, 0.034073930233716965, -0.0051439302042126656, -0.016045039519667625, 0.0018196443561464548, 0.0032120239920914173, -0.01192319393157959, -0.005046748090535402, -0.030669216066598892, 0.030079424381256104, -0.005730371456593275, 0.013109481893479824, 0.009738280437886715, -0.001787808956578374, 0.0046580214984714985, -0.015857379883527756, 0.006836232729256153, 0.018685702234506607, 0.008893804624676704, -0.014235449023544788, 0.015978017821907997, -0.007714219391345978, 0.008759761229157448, 0.01655440591275692, -0.027559401467442513, -0.00865922775119543, -0.006105693988502026, 0.012680541723966599, -0.0053550489246845245, -0.00353875569999218, 0.008424651809036732, 0.005381857510656118, -0.01781441830098629, 0.017157603055238724, -0.02731812186539173, -0.020629337057471275, -0.01907443068921566, -0.005344995763152838, -0.0028970211278647184, -0.001988874515518546, -0.00906135980039835, 0.0014493484050035477, 0.01885996013879776, -0.02028082311153412, -0.0061794184148311615, 0.00577728683128953, -0.021487217396497726, 0.014570558443665504, -0.02688918262720108, -0.0023625215981155634, -0.024047454819083214, 0.018967194482684135, -0.0024781343527138233, -0.023189574480056763, 0.0010815657442435622, -0.0011494253994897008, 0.026299389079213142, 0.004761905409395695, -0.004889247007668018, -0.00869273953139782, -0.03292115405201912, 0.016943134367465973, 0.002840052591636777, -0.02550853043794632, 0.014088001102209091, -0.04852384701371193, 0.01987869292497635, 0.0027981637977063656, 0.0015356390504166484, 0.015616100281476974, 0.008712845854461193, -0.019731244072318077, -0.004993130918592215, -0.012010322883725166, 0.020388059318065643, -0.02137998305261135, -0.005713616032153368, 0.01981167122721672, 0.0007183908601291478, -0.027854297310113907, -0.01802888885140419, -0.1723266839981079, -0.004058175254613161, 0.01562950387597084, -0.02325659617781639, 0.042840391397476196, -0.004497168585658073, 0.014865455217659473, -0.01176904421299696, -0.015776952728629112, 0.0015616100281476974, 0.031339436769485474, 0.005448879674077034, -0.012948629446327686, -0.020656146109104156, 0.020441675558686256, -0.008283905684947968, -0.026259176433086395, 0.014114810153841972, 0.029328778386116028, 0.003940887283533812, 0.01166180893778801, -0.020937638357281685, -0.006936765741556883, -0.012352134101092815, 0.009825409390032291, 0.011319996789097786, 0.008840187452733517, 0.007915285415947437, 0.005428772885352373, -0.025160016492009163, -0.016969941556453705, -0.017452500760555267, 0.03396669402718544, 0.007841560989618301, 0.00436982698738575, -0.004168761428445578, 0.0013161423848941922, -0.0006291680037975311, -0.011655106209218502, 0.023457661271095276, 0.002307228511199355, 0.0034516272135078907, 0.019771456718444824, -0.007057405076920986, -8.005974086700007e-05, 0.013659060932695866, -0.0005102041177451611, -0.016313128173351288, -0.0006873932434245944, -0.004859087057411671, 0.02658088132739067, -0.015133542940020561, 0.003461680607870221, 0.002392681548371911, 0.0423310250043869, -0.0033360144589096308, 0.011259677819907665, 0.001003652811050415, -0.00577728683128953, -0.014530345797538757, -0.006162662524729967, 0.0034047120716422796, 0.01407459657639265, -0.005378506612032652, -0.006273248698562384, -0.00745283393189311, 0.012211387977004051, 0.015495460480451584, -0.02935558743774891, 0.01757313869893551, -0.019114643335342407, 0.000807194912340492, 0.016165679320693016, -0.009557321667671204, 0.014436515048146248, -0.016112063080072403, -0.01947656087577343, -0.005003184080123901, -0.0024345701094716787, -0.02144700475037098, 0.00018263465608470142, -0.0007577662472613156, 0.0008536913082934916, 0.003558862255886197, 0.008250394836068153, 0.0194095391780138, 0.01490566786378622, 0.016192488372325897, -0.03857779875397682, -0.01562950387597084, 0.0034315206576138735, -0.018323784694075584, -0.006031970027834177, -0.011588084511458874, -0.010361583903431892, 0.024717673659324646, 0.0040816329419612885, 0.008243692107498646, 0.016045039519667625, -0.011172548867762089, 0.022720420733094215, 0.021004660055041313, -0.016634833067655563, -0.008129755035042763, 0.021648069843649864, -0.0004976375494152308, -0.024007240310311317, 0.020884020254015923, 0.03356456384062767, -0.0017308403039351106, -0.045092325657606125, 0.0097047695890069, 0.014691198244690895, 0.023243190720677376, -0.00079797935904935, 0.031393054872751236, -0.007426025345921516, -0.00708421366289258, 0.0031383000314235687, 0.00457759527489543, 0.048443421721458435, -0.011702021583914757, -0.010911163873970509, 0.024851717054843903, 0.002184913493692875, -0.009175296872854233, -0.11656446754932404, -0.06611039489507675, 0.02981133572757244, -0.0014200262958183885, -0.0008155726245604455, 0.028176002204418182, 0.0032036462798714638, 0.005103717092424631, -0.02584364078938961, 0.0392480194568634, 0.01750611700117588, -0.04809490963816643, -0.010080092586576939, 0.015415034256875515, 0.034502867609262466, -0.010019772686064243, -0.016809089109301567, -0.0016102008521556854, -0.05163366347551346, 0.007620388641953468, -0.02123253419995308, 0.008706143125891685, -0.010971483774483204, 0.0030159850139170885, 0.004812171682715416, 0.00020253176626283675, -0.0194095391780138, 0.011950002983212471, 0.0015708255814388394, -0.017305051907896996, -0.0025166720151901245, -0.007942093536257744, 0.029489630833268166, -0.01426225807517767, 0.013551825657486916, -0.0010178949451074004, -0.032599445432424545, -0.02997218817472458, 0.018015483394265175, -0.01971784047782421, 0.0002944774169009179, -0.0011913140770047903, -0.010502330027520657, -0.016313128173351288, -0.03101773001253605, 0.006467612460255623, 0.0010924567468464375, 0.030749643221497536, 0.0383901372551918, -0.013913744129240513, -0.03160752356052399, -0.024623842909932137, -0.01621929742395878, -0.024811504408717155, -0.0018916928675025702, -0.016406958922743797, -0.0007095942855812609, 0.019329113885760307, -0.008672632277011871, -0.004343018401414156, -0.019302304834127426, 0.017372073605656624, -0.023578301072120667, 0.019114643335342407, -0.009450086392462254, -0.009912537410855293, -0.011273081414401531, 0.018900172784924507, -0.005013237241655588, 0.0007896016468293965, 0.011246273294091225, 0.019758053123950958, -0.012895011343061924, 0.02049529366195202, -0.01286150049418211, 0.018658893182873726, -0.015763549134135246, -0.02211722359061241, 0.01944975182414055, 0.010287860408425331, -0.03809524327516556, -0.004316209815442562, 0.0032639659475535154, -0.01367916725575924, 0.033457327634096146, 0.02550853043794632, -0.013283738866448402, 0.0044536045752465725, 0.005227707326412201, 0.001655440661124885, -0.01168861798942089, -0.0008327469695359468, 0.008866995573043823, -0.015642909333109856, -0.015026307664811611, 0.0063536749221384525, 0.012962033040821552, 0.022867869585752487, 0.01176904421299696, -0.010817333124577999, -0.01729164831340313, 0.0020123322028666735, -0.02458362840116024, 0.02491873875260353, -0.028095576912164688, -0.009791898541152477, 0.004349720664322376, -0.017144199460744858, 0.010937971994280815, -0.02750578336417675, -0.00942998006939888, 0.018390806391835213, -0.013967362232506275, 0.02406085841357708, -0.01035488210618496, -0.012117557227611542, -0.003280721604824066, -0.006035321392118931, 0.030481554567813873, -0.004182165954262018, 0.011286485940217972, -0.006467612460255623, 0.0011251299874857068, -0.018229953944683075, 0.03420797362923622, 0.01643376797437668, -0.004912704695016146, 0.016809089109301567, -0.030133042484521866, 0.019329113885760307, 0.00011624109174590558, -0.006983681116253138, 0.00625314237549901, -0.011172548867762089, 0.019101237878203392, 0.018270166590809822, -0.0010170572204515338, -0.002776381792500615, 7.838419696781784e-05, 0.01407459657639265, -0.009054657071828842, 0.026875777170062065, -0.021460408344864845, -0.029516439884901047, -0.00827720295637846, -0.002840052591636777, -0.01190978940576315, -0.01643376797437668, -0.005840957630425692, -0.005800744518637657, -0.004761905409395695, 0.03249221295118332, 0.009651152417063713, 0.0038235988467931747, -0.02501256950199604, -0.03562883660197258, -0.028792602941393852, -0.00958412978798151, 0.010696693323552608, 0.014798433519899845, 0.026634499430656433, -0.013116183690726757, 0.032224126160144806, 0.022251266986131668, 0.01072350237518549, -0.008779867552220821, 0.016018232330679893, -0.013223418965935707, -0.01959720067679882, 0.02045508101582527, 0.0023943569976836443, -0.017144199460744858, 0.006765859667211771, 0.015079924836754799, 0.01027445588260889, 0.0026289336383342743, -0.006192822474986315, 0.010408499278128147, 0.007942093536257744, -0.01802888885140419, -0.02738514356315136, 0.01168861798942089, -0.00541536882519722, 0.003240508260205388, -0.02211722359061241, 0.0005793204763904214, 0.007037298288196325, -0.000630424648988992, 0.0013496533501893282, -0.0018782884581014514, 0.004031366668641567, 0.003592373337596655, -0.01997252367436886, 0.005797393620014191, 0.006058778613805771, 0.027773870155215263, -0.007734326180070639, 0.0020927584264427423, -0.0008972555515356362, 0.017586544156074524, 0.03021346777677536, 0.02919473499059677, -0.01584397442638874, -0.01814952678978443, 0.012915118597447872, -0.0013261956628412008, -0.0020274121779948473, 0.02061593346297741, -0.005978352390229702, 0.020294228568673134, -0.013994170352816582, 0.007003787439316511, 0.02282765507698059, 0.014503536745905876, 0.006943467538803816, 0.014490132220089436, -0.0074796429835259914, 0.01643376797437668, -0.013270334340631962, -0.011507658287882805, -0.02957005798816681, 0.013478102162480354, 0.026634499430656433, 0.005700211506336927, 0.013236823491752148, -0.021621260792016983, 0.007727623917162418, 0.00330417905934155, 0.006863041315227747, -0.004580946173518896, -0.00354210683144629, 0.006403941661119461, 0.0038235988467931747, -0.004741798620671034, 0.0008021682151593268, -0.010877653025090694, -0.01062967162579298, 0.0006274924380704761, -0.01490566786378622, 0.0033996852580457926, 9.749590390129015e-05, 0.057585205882787704, 0.029328778386116028, -0.013779700733721256, 0.022867869585752487, -0.013002246618270874, -0.006527931895107031, 0.028229620307683945, 0.021192321553826332, -0.0053550489246845245, -0.006802721880376339, -0.005572869908064604, -0.008686036802828312, -0.01436949335038662, -0.0002078725810861215, -0.015146947465837002, 0.025709597393870354, -0.023028722032904625, 0.023685535416007042, -0.02166147530078888, -0.024114476516842842, 0.014650984667241573, 0.01633993722498417, 0.04715660214424133, 0.0034181163646280766, 0.0034114141017198563, -0.016969941556453705, 0.014932476915419102, 0.012941926717758179, -0.010710097849369049, -0.01565631292760372, 0.019181665033102036, -0.006430750247091055, -0.029650483280420303, -0.01717100851237774, -0.0062933554872870445, 0.001219798345118761, 0.012499582022428513, 0.007285279221832752, 0.009765089489519596, -0.0011603165185078979, 0.008907209150493145, 0.01168861798942089, -0.027264505624771118, -0.0165812149643898, 0.03965014964342117, -0.014396301470696926, 0.004088335204869509, -0.02042827196419239, -0.01990550197660923]"
3,I'm excited for the users to have choice finally and a real competitive race out there.,14.84,19.84,"[-0.010478480719029903, -0.015242652036249638, -0.008322137407958508, -0.023746730759739876, -0.011212985031306744, 0.011307325214147568, -0.014083617366850376, 0.0075674173422157764, -0.0366847887635231, -0.01978445053100586, 0.0053167338483035564, 0.029299315065145493, -0.016496026888489723, -0.029595812782645226, 0.00519880885258317, 0.010983874090015888, 0.016455594450235367, -0.016024326905608177, 0.009562035091221333, -0.0038443556986749172, 0.0036624143831431866, 0.016010848805308342, -0.024878811091184616, -0.01111864484846592, -0.01416448038071394, 0.006135470699518919, 0.005239240359514952, -0.021239981055259705, 0.017843740060925484, -0.015795214101672173, 0.026172617450356483, 0.019218409433960915, 0.0011152337538078427, -0.016698183491826057, -0.021657772362232208, -0.009710283018648624, 0.004039774648845196, -0.011893580667674541, 0.017722446471452713, 0.008315399289131165, -0.027048630639910698, 0.008268228732049465, -0.002719014184549451, -0.017708970233798027, -0.021186072379350662, -0.002823462011292577, 0.008793837390840054, -0.023140259087085724, 0.004127375781536102, 0.005026975180953741, -0.003962280694395304, 0.004723739344626665, -0.006495984271168709, 0.001448793220333755, 0.00039231128175742924, -0.0021496047265827656, 0.003446779912337661, 0.01564696617424488, -0.0018295225454494357, 0.02296505682170391, -0.012338327243924141, 0.028868045657873154, -0.0061691636219620705, 0.00853103306144476, 0.004602445289492607, 0.005555953364819288, -0.00297844922170043, 0.006243287585675716, 0.009568773210048676, -0.018935389816761017, 0.011947489343583584, -0.013106524012982845, 0.015471762977540493, 0.004188023041933775, -0.011401665396988392, 0.006506091915071011, -0.02281680703163147, -0.01169816218316555, 0.01540437713265419, -0.00048644072376191616, 0.007115933112800121, -0.010269585065543652, -0.013504100032150745, 0.01022915355861187, 0.021388230845332146, 0.02758771739900112, 0.0016770623624324799, -0.0017503442941233516, -0.013645609840750694, -0.019339704886078835, 0.02392193302512169, 0.01114559918642044, -0.010599775239825249, 0.025889597833156586, -0.03040444105863571, 0.00837604608386755, -0.002171505009755492, 0.009117289446294308, 0.016644274815917015, -0.01898929849267006, 0.019191455096006393, 0.01766853779554367, -0.008301922120153904, -0.021213026717305183, -0.019487952813506126, -0.00215465878136456, 0.0007715665851719677, -0.006280350033193827, 0.02881413698196411, -0.00929249171167612, -0.0075472015887498856, -0.004936004523187876, -0.007917823269963264, -0.002981818513944745, -0.008254751563072205, -0.005646924022585154, -0.01761462911963463, 0.000491073471494019, -0.0031991375144571066, -0.0008886493160389364, 0.014959631487727165, -0.008793837390840054, 0.04646919667720795, 0.00540433544665575, -0.009380093775689602, 0.0018969082739204168, -0.027978554368019104, -0.02128041349351406, 0.027237311005592346, 0.01137471105903387, 0.01812676154077053, -0.01229789573699236, 0.018814096227288246, 0.001018366776406765, -0.02618609368801117, 0.015579580329358578, -0.009824839420616627, -0.01788417249917984, -0.0005938367103226483, 0.0011093375505879521, -0.01321434136480093, 0.014002754352986813, 0.0003849409695249051, 0.004423873033374548, -0.0008776991162449121, 0.02652302198112011, 0.02296505682170391, -0.004558644723147154, 0.021172596141695976, -0.020593078806996346, 0.005498675629496574, -0.01598389446735382, -0.007580894511193037, 0.01586260087788105, 0.020808713510632515, -0.005347057711333036, 0.020593078806996346, 0.014663134701550007, 0.003561335848644376, -0.0260648000985384, -0.004134114366024733, -0.021698204800486565, 0.001528813736513257, 0.0017217053100466728, 0.05601101741194725, 0.027951600030064583, 0.0384637750685215, -0.008180627599358559, 0.006671187002211809, -0.0074326456524431705, 0.018261533230543137, 0.023167213425040245, -0.034744080156087875, 0.017533766105771065, -0.012439405545592308, -0.00671498803421855, -0.014434022828936577, 0.01102430559694767, -0.02303244173526764, -0.001876692520454526, 0.015943463891744614, 0.002363554434850812, 0.03194083645939827, 0.012897628359496593, 0.0030761584639549255, 0.0018160453764721751, 0.022129472345113754, -0.0017200206639245152, 0.005219024606049061, 0.0027762919198721647, 0.02156343311071396, 0.0011034413473680615, -0.0003575655282475054, 0.002671844093129039, -0.656822144985199, -0.01797851175069809, -0.003797185840085149, -0.011792502366006374, 0.014609226025640965, 0.01113212201744318, 0.020040515810251236, -0.0005058140959590673, -0.00029881359660066664, 0.024946196004748344, -0.028302006423473358, -0.0014900668757036328, 0.010943442583084106, -0.010943442583084106, -0.01819414645433426, -0.018719755113124847, 0.04695437476038933, -0.01246635988354683, -0.004915788769721985, -0.001957555301487446, -0.03347722813487053, 0.002159712603315711, -0.022129472345113754, -0.007129410281777382, 0.006192748434841633, 0.005293149035423994, -0.008504078723490238, -0.00025480228941887617, -0.03644220158457756, -0.01339628268033266, -0.007270920090377331, 0.019339704886078835, -0.007702188566327095, -0.011846411041915417, 0.04671178758144379, -0.012217032723128796, -0.007466338574886322, 0.0027914538513869047, 0.0013443452771753073, 0.01607823558151722, -0.043288592249155045, -0.0007694608066231012, -0.005306626204401255, 0.0037399078719317913, -0.01151622086763382, 0.026482591405510902, 0.003915110602974892, -0.0057143098674714565, -0.019002774730324745, -0.002439363393932581, 0.01656341180205345, -0.009966349229216576, -0.0032311456743627787, 0.005417812615633011, 0.014258820563554764, 0.034312814474105835, 0.01644211821258068, -0.015377422794699669, -0.01168468501418829, 0.01168468501418829, -0.013894937001168728, 0.01321434136480093, -0.02508096769452095, -0.04140179231762886, -0.027021676301956177, 0.00838952325284481, -0.00724396575242281, -0.015943463891744614, -0.006196117959916592, -0.008645588532090187, 0.008315399289131165, -0.013436714187264442, -0.0002798613568302244, 0.002031679730862379, -0.009070118889212608, 0.004063359461724758, 0.025970458984375, -0.030916571617126465, 0.008692759089171886, 0.03576834499835968, 0.012857196852564812, -0.0032311456743627787, 0.01057955902069807, -0.005215655546635389, 0.020903052762150764, -0.03264164552092552, -0.004524951800704002, -0.025471804663538933, 0.009346400387585163, 0.024784471839666367, 0.011233201250433922, 0.030431395396590233, 0.022762898355722427, -0.0039353263564407825, 0.007897607050836086, 0.011078213341534138, 0.015431331470608711, 0.004481150768697262, 0.0026078277733176947, -0.036064840853214264, -0.004986544139683247, -0.014649657532572746, 0.008908392861485481, -0.00725744292140007, 0.008254751563072205, 0.02762814797461033, -0.01529656071215868, 0.007230488583445549, 0.02397584170103073, -0.03773600980639458, -0.0057513718493282795, -0.005518891382962465, -0.03212951496243477, 0.00946095585823059, -0.00499328225851059, -0.025000104680657387, 0.01356474682688713, 0.002825146773830056, 4.1352726839249954e-05, -0.030080989003181458, 0.024326248094439507, 0.002690375316888094, 0.024555359035730362, -0.0014597433619201183, -0.013712995685636997, -0.007230488583445549, 0.03684651479125023, -0.00023563946888316423, -0.017102498561143875, -0.011287109926342964, 0.0015069133369252086, -0.009898963384330273, 0.015485240146517754, -0.0020670571830123663, 0.006371320690959692, 0.019002774730324745, 0.006566739175468683, -0.022156426683068275, 0.0019659786485135555, -0.020970439538359642, -0.015000062994658947, 0.010862579569220543, -0.01531003788113594, -0.017587674781680107, -0.01359844021499157, -0.022466402500867844, -0.03126697987318039, 0.01004721224308014, -0.005360534880310297, -0.008800576440989971, 0.005026975180953741, -0.0043059480376541615, -0.018167192116379738, 0.008463647216558456, -0.013025660999119282, 0.012425928376615047, -0.014690089039504528, -0.023005487397313118, -0.012917844578623772, -0.015094403177499771, -0.0010175245115533471, -0.0020771650597453117, 0.009400309063494205, -0.0014260504394769669, 0.0073787374421954155, -0.03956890106201172, -0.025822211056947708, 0.010343709029257298, 0.012062045745551586, -0.015323515050113201, 0.0011944120051339269, 0.009656375274062157, 0.013578223995864391, 0.029137589037418365, -0.01663079857826233, -0.006081562023609877, -0.018167192116379738, 0.01858498342335224, -0.0011068106396123767, -0.004413765389472246, 0.020781759172677994, 0.020660463720560074, -0.02140170708298683, -0.006536415778100491, 0.03911067545413971, 0.0024696870241314173, 0.0019693479407578707, 0.032048653811216354, -0.0035040578804910183, -0.0010293170344084501, 0.015134834684431553, 0.032291240990161896, 0.007506770081818104, 0.01619952917098999, 0.00805259495973587, -0.005569430533796549, -0.0017419210635125637, 0.001101756701245904, 0.026415206491947174, 0.01289089024066925, 0.0267656110227108, -0.008167150430381298, 0.014285774901509285, -0.001696435734629631, 0.02731817401945591, -0.03169824555516243, -0.007560678757727146, -0.008106502704322338, 0.00709571735933423, 0.015336992219090462, -0.010801931843161583, -0.033638954162597656, -0.010539127513766289, 0.0010284746531397104, 0.0013140217633917928, 0.040161892771720886, -0.027735965326428413, 0.004454196430742741, -0.03506753221154213, 0.007958254776895046, -0.008746667765080929, 0.0019777710549533367, -0.001169142429716885, -0.013221079483628273, -0.009804623201489449, 0.016940772533416748, -0.001880061812698841, 0.0017503442941233516, 0.028032463043928146, -0.030054034665226936, -0.014986585825681686, -0.005124684423208237, 0.007661757525056601, 0.010774978436529636, 0.02397584170103073, -0.01064020674675703, 0.03425890579819679, -0.0021428661420941353, 0.025822211056947708, -0.0035276429262012243, 0.027021676301956177, 0.003030673135071993, 0.01564696617424488, 0.006202856544405222, 0.022587696090340614, 0.009238583035767078, 0.011805979534983635, -0.004400288220494986, -0.013591701164841652, 0.006927252747118473, -0.015727829188108444, -0.003709584241732955, -0.0016492657596245408, 0.0023888240102678537, 0.02428581565618515, -0.03221037983894348, 0.009878748096525669, -0.005700832698494196, 0.023409802466630936, 0.020404398441314697, -0.014299251139163971, 0.01672513782978058, 0.0190432071685791, 0.005458244122564793, 0.009636159054934978, 0.005272933281958103, -0.02483837865293026, -0.019703587517142296, -0.002459579147398472, -0.021657772362232208, 0.012722425162792206, -0.011320802383124828, 0.007715665735304356, -0.011044520884752274, -0.02327503077685833, 0.006024284288287163, 0.0003426143084652722, -0.012931321747601032, -0.008241274394094944, 0.020229196175932884, 0.007958254776895046, -0.03169824555516243, -0.005657032132148743, 0.031347841024398804, -0.008032378740608692, -0.006246657110750675, -0.025822211056947708, 0.011253416538238525, 0.016954248771071434, 0.006297196261584759, 0.023719776421785355, -0.0051954397931694984, -0.008403000421822071, -0.010606513358652592, -0.003372655715793371, 0.03124002367258072, 0.029865354299545288, -0.009777668863534927, -0.010357186198234558, -0.01345693040639162, 0.010929965414106846, 0.02113216370344162, -0.010903011076152325, -0.02363891340792179, 0.04495975747704506, 0.024029750376939774, -0.0026398359332233667, -0.01908363774418831, 0.006098408252000809, -0.03258773684501648, 0.013841028325259686, -0.018032420426607132, -0.027210356667637825, -0.030269669368863106, 0.0021024346351623535, -0.0022018286399543285, -0.0069137755781412125, -0.018665846437215805, 0.0466039702296257, -0.005636816378682852, -0.004006081726402044, -0.0059501598589122295, -0.004130745306611061, -0.02048526145517826, 0.10140204429626465, 0.007466338574886322, 0.011893580667674541, 0.031105251982808113, -0.018086329102516174, -0.0015734568005427718, -0.003237884258851409, -0.018382826820015907, -0.0030407810118049383, 0.010518912225961685, 0.00854451023042202, 0.02695429138839245, -0.014973108656704426, 0.006458922289311886, 0.042884279042482376, 0.022331630811095238, -0.013126740232110023, -0.013753427192568779, -0.018517598509788513, -0.016118666157126427, 0.013450191356241703, 0.024420587345957756, 0.012702209874987602, 0.001544817816466093, 0.032506875693798065, 0.027399037033319473, -0.0005007602158002555, 0.016765568405389786, -0.013679303228855133, -0.006354473996907473, -0.011954228393733501, -0.00927901454269886, 0.0026533131022006273, 0.004407026804983616, -0.006020914763212204, -0.002838623709976673, -0.02171168103814125, 0.008268228732049465, 0.008847746066749096, 0.007904346100986004, -0.002211936516687274, 0.0035748127847909927, 0.00519880885258317, -0.01656341180205345, -0.0010571136372163892, -0.021442139521241188, -0.02462274581193924, 0.0096631133928895, -0.017129452899098396, -0.01920493319630623, 0.011212985031306744, -0.0051651159301400185, -0.05218350887298584, 0.014919199980795383, -0.008975778706371784, 0.02762814797461033, -0.027210356667637825, -0.008483863435685635, -0.015539148822426796, -0.03336941450834274, -0.026132185012102127, 0.004615922458469868, -0.018665846437215805, -0.024757517501711845, -0.007365260273218155, -0.022587696090340614, -0.028733273968100548, -0.010539127513766289, -0.011159076355397701, -0.005387489218264818, -0.003136805724352598, -0.03393545374274254, -0.014555317349731922, 0.002063687890768051, 0.012500052340328693, 0.02428581565618515, -0.0013232872588559985, -0.003672522259876132, 0.004164438229054213, 0.00981810037046671, 0.003057627473026514, 0.005266194697469473, -0.0026802674401551485, -0.034501492977142334, -0.01246635988354683, -0.005859189201146364, -0.020808713510632515, -0.007008115760982037, 0.010235892608761787, 0.01923188753426075, 0.01684643141925335, -0.02274942211806774, 0.008032378740608692, -0.0078032673336565495, -0.006856497842818499, -0.0076887113973498344, 0.0005774114397354424, 0.0065734777599573135, 0.0022742683067917824, -0.007270920090377331, 0.009346400387585163, -0.0001239265693584457, -0.003310323925688863, 0.0027527071069926023, 0.028490686789155006, 0.0275607630610466, 0.02067394182085991, -0.019555337727069855, -0.0030913203954696655, -0.012560700066387653, -0.019191455096006393, -0.019339704886078835, -0.014097094535827637, -0.01320086419582367, 0.008827530778944492, 0.003397925291210413, 0.0233963243663311, 0.006212964188307524, 0.00042979459976777434, -0.0059029897674918175, -0.02787073701620102, 0.004124006722122431, 0.023868024349212646, 0.0022725837770849466, 0.0007892553694546223, 0.012520268559455872, 0.020080946385860443, -0.019124070182442665, -0.02245292440056801, 0.007769574411213398, -0.0006999692413955927, 0.009973088279366493, 0.001900277566164732, -0.020161809399724007, 0.0052796718664467335, 0.003450149204581976, -0.004113898612558842, -0.0022540525533258915, -0.018261533230543137, 0.000614894786849618, -0.028059417381882668, 0.010094381868839264, 0.008483863435685635, -0.01865237019956112, -0.013099785894155502, -0.030269669368863106, 0.001565033569931984, 0.014824860729277134, -0.008800576440989971, 0.018207624554634094, -0.011004089377820492, 0.002911063376814127, -0.020876098424196243, 0.009164459072053432, -0.005960267502814531, -0.014258820563554764, -0.0033355935011059046, -0.03514839708805084, 0.019312750548124313, 0.04121311008930206, 0.02556614577770233, 0.009312707930803299, 0.015350469388067722, -0.003861202159896493, 0.01706206612288952, -0.0167520921677351, -0.0014353160513564944, -0.009191413410007954, -0.007513508666306734, 0.003621982876211405, 0.0076887113973498344, 0.030000125989317894, -0.0027206987142562866, -0.028652410954236984, -0.003692738013342023, 0.025795256718993187, -0.011994659900665283, 0.014272297732532024, -0.01668470725417137, -0.023018965497612953, -0.008975778706371784, -0.01419143471866846, 0.00013698254770133644, 0.015512194484472275, -0.020862622186541557, -0.01305935438722372, -0.013921891339123249, -0.0016079919878393412, 0.007944777607917786, 0.016010848805308342, 0.017008157446980476, 0.0007138675427995622, 0.01175880990922451, 0.0033052698709070683, -0.013268250040709972, -0.02026962675154209, -0.011408403515815735, -0.027601193636655807, -0.014043185859918594, 0.005070776212960482, 0.03940717503428459, 0.02440711110830307, -0.005838973447680473, -0.007863914594054222, 0.0042385621927678585, 0.025310080498456955, -0.04908376559615135, -0.0167520921677351, -0.018369348719716072, -0.030080989003181458, 0.011502743698656559, -0.02921845205128193, -0.0031115359161049128, -0.020956961438059807, -0.013315419666469097, 0.008234536275267601, -0.01687338575720787, -0.0075674173422157764, -0.010512174107134342, -0.0160512812435627, 0.003190714167430997, 0.014555317349731922, 0.005535737611353397, 0.004009450785815716, 0.003925218712538481, 0.02045830711722374, 0.004649615380913019, -0.003942064940929413, -0.044663261622190475, 0.012385496869683266, -0.011415142565965652, 0.029973171651363373, 0.0033962407615035772, 0.004585598595440388, -0.01157686859369278, 0.020983915776014328, 0.010370663367211819, -0.03908372297883034, -0.016374731436371803, -0.0024023011792451143, 0.019164500758051872, 0.02902977168560028, -0.008672542870044708, 0.00430931756272912, -0.023126782849431038, 0.031159160658717155, -0.014151003211736679, 0.011839672923088074, 0.0034669956658035517, 0.002520226174965501, -0.0066779255867004395, 0.03927240148186684, -0.002247313968837261, 0.017102498561143875, -0.006947468500584364, -0.02113216370344162, -0.01711597479879856, 0.010303277522325516, -0.009575512260198593, 0.0016560042276978493, -0.012102477252483368, 0.013719734735786915, -0.017560720443725586, 0.008153673261404037, 0.004696785472333431, 0.009541818872094154, -0.01586260087788105, -0.006425229366868734, -0.016738614067435265, 0.02493271976709366, 0.006600432097911835, -0.0013797228457406163, -0.010256107896566391, 0.009750714525580406, 0.008820791728794575, -0.004743955098092556, -0.02731817401945591, 0.004346379544585943, 0.002614566357806325, -0.0033238010946661234, 0.006694772280752659, -3.4008735383395106e-05, -0.026199571788311005, -0.018962344154715538, -0.00781000591814518, 0.008288444951176643, -0.0198383592069149, -0.007520247250795364, 0.022102519869804382, -0.010094381868839264, 0.014285774901509285, 0.005107838194817305, 0.0065566315315663815, 0.008396261371672153, 0.04619965702295303, -0.011886842548847198, 0.013645609840750694, 0.030027080327272415, -0.028275052085518837, 0.0023500772658735514, 0.009629420936107635, 0.02021571807563305, -0.02505401335656643, 0.03374677151441574, -0.00984505470842123, -0.01684643141925335, -0.003030673135071993, -0.0037399078719317913, 0.0017174937529489398, 0.0009922548197209835, 0.008409738540649414, 0.0026297280564904213, 0.0032917929347604513, 0.015431331470608711, 0.010310016572475433, 0.040350575000047684, 0.028733273968100548, -0.018328918144106865, -0.025134876370429993, -0.011320802383124828, -0.004605814348906279, 0.004380072467029095, 0.018301963806152344, 0.023261552676558495, 0.003736538579687476, -0.024946196004748344, -0.002730806590989232, 0.0071496255695819855, -0.036091797053813934, -0.010195461101830006, 0.012533745728433132, -0.0025320188142359257, 0.005249348469078541, -0.019744018092751503, -0.00344172609038651, -0.02088957652449608, -0.00998656451702118, 0.006822804920375347, -0.01632082276046276, -0.01529656071215868, 0.016024326905608177, 0.00326483859680593, -0.0059400517493486404, 0.024447541683912277, -0.0035748127847909927, -0.014231866225600243, 0.01528308354318142, -0.02811332605779171, -0.010114598087966442, -0.007122671697288752, -0.0026768981479108334, 0.036576975136995316, 0.022978533059358597, -0.027789874002337456, -0.03994625806808472, -0.01168468501418829, -0.0350944884121418, 0.009548557922244072, -0.010343709029257298, 0.02517530880868435, 0.026940815150737762, -0.014258820563554764, 0.00500002084299922, 0.01791112683713436, -0.009043164551258087, 0.0064420755952596664, -0.014824860729277134, -0.01735856384038925, 0.00765501894056797, -0.02024267241358757, 0.017318131402134895, 0.006805958691984415, -0.023531096056103706, -0.004609183873981237, 0.026967769488692284, 0.012917844578623772, 0.016374731436371803, 0.006007437594234943, -0.0045721218921244144, 0.015161789022386074, 0.010990612208843231, -0.0008444273844361305, -0.0037028458900749683, 0.018180670216679573, 0.019851835444569588, -0.03353113681077957, -0.007223749998956919, 0.040377527475357056, -0.0012289471924304962, 0.02477099373936653, -0.011812718585133553, -0.003236199729144573, -0.0009391885832883418, 0.003372655715793371, 0.007911084219813347, -0.022466402500867844, -0.018477166071534157, -0.010336970910429955, 0.0010722754523158073, -0.017897648736834526, 0.011057998053729534, 0.02924540638923645, 0.019622724503278732, -0.009811362251639366, 0.015700874850153923, 0.016118666157126427, 0.015188743360340595, 0.015916509553790092, -0.002678582677617669, -0.011428619734942913, 0.015471762977540493, -0.0025572883896529675, -0.006775634828954935, -0.026105230674147606, -0.005636816378682852, -0.01416448038071394, -0.03245296701788902, -0.01822110079228878, 0.01718336157500744, 0.006243287585675716, -0.010633467696607113, 0.014919199980795383, -0.008841007947921753, 0.0003843092417810112, -0.00018857474788092077, -0.018935389816761017, 0.00946095585823059, 0.005822126753628254, 0.012473098002374172, -0.0026297280564904213, -0.0011792503064498305, 0.016644274815917015, 0.032911188900470734, -0.01078171655535698, -0.005313364788889885, 0.014056663028895855, 0.24517624080181122, -0.007385476026684046, 0.005535737611353397, 0.03442063182592392, 0.026253480464220047, -0.005805280525237322, 0.013133478350937366, 0.003217668505385518, -0.004966328386217356, 0.006826174445450306, -2.7164871426066384e-05, 0.005593015346676111, -0.015121357515454292, -0.01289089024066925, 0.00944747868925333, 0.021307367831468582, -0.018059374764561653, -0.012836981564760208, -0.005313364788889885, -0.00023648179194424301, 0.00969006773084402, -0.0015903031453490257, -0.0054784598760306835, -0.0020165180321782827, 0.0036152442917227745, -0.017412472516298294, 0.009454217739403248, 0.0027998769655823708, 0.00872645154595375, 0.010714330710470676, -0.00989222526550293, -0.010593036189675331, 0.003827509470283985, -0.0006325835129246116, -0.006570108700543642, -0.008315399289131165, 0.008443431928753853, 0.007129410281777382, 0.004410395864397287, 0.03078179992735386, -0.009959611110389233, 0.02327503077685833, 0.026846474036574364, -0.0159569401293993, -0.007055285852402449, 0.0008979148115031421, -0.002360185142606497, -0.0038140323013067245, -0.0017503442941233516, -0.01843673549592495, -0.025310080498456955, 0.0036590450908988714, 0.03425890579819679, 0.005010128952562809, -0.0005007602158002555, 0.008820791728794575, -0.007708927150815725, 0.0010874371509999037, -0.0060714539140462875, 0.022978533059358597, -0.015431331470608711, 0.02673865668475628, 0.006226441357284784, 0.0453910268843174, -0.027709010988473892, 0.017506811767816544, -0.03433976694941521, 0.04784386605024338, 0.048895083367824554, 0.0028689473401755095, -0.007796528749167919, -0.0020417876075953245, 0.004979805555194616, 0.0027324913535267115, -0.0003489317314233631, -0.026657793670892715, 0.014460977166891098, 0.042156510055065155, 0.025431374087929726, 0.019029729068279266, -0.0064420755952596664, -0.003042465541511774, 0.018598461523652077, -0.025148354470729828, -0.007628064602613449, -0.03929935768246651, 0.015094403177499771, -0.007594371680170298, -0.020080946385860443, -0.005374012049287558, -0.0062230718322098255, -0.008173888549208641, -0.01396232284605503, -0.042614735662937164, 0.023692822083830833, -0.005542476195842028, 0.012425928376615047, 0.01742594875395298, 0.0045047360472381115, 0.023113304749131203, -0.011462312191724777, 0.03800554946064949, 0.004454196430742741, 0.007756097242236137, -0.004700154531747103, 0.002911063376814127, 0.0038915257900953293, 0.021792544052004814, 0.008888177573680878, 0.0015911455266177654, 0.019299272447824478, -0.020471785217523575, 0.012190078385174274, -0.012641563080251217, 0.0029750799294561148, 0.014865291304886341, -0.002809984842315316, -0.01024263072758913, 0.017102498561143875, -0.009555296041071415, -0.011165815405547619, -0.029353223741054535, -0.02128041349351406, -9.870956318991375e-08, -0.0016896971501410007, -0.01506744883954525, -0.026630839332938194, -0.006799220107495785, -0.011165815405547619, -0.01586260087788105, -0.014380114153027534, -0.017655061557888985, 0.005778326187282801, -0.025377465412020683, -0.0011531382333487272, -0.0321025624871254, 0.007479815743863583, -0.012560700066387653, -0.0008612738456577063, 0.007439384236931801, -0.004262147471308708, 0.018948866054415703, 0.010606513358652592, -0.0003984181093983352, 0.000822527043055743, -0.01711597479879856, 0.011583606712520123, -0.002491587307304144, -0.03447454050183296, -0.00023395482276100665, -0.024110613390803337, 0.0057513718493282795, -0.018328918144106865, -0.012870674021542072, 0.03830204904079437, -0.004319425206631422, -0.022655082866549492, -0.00854451023042202, 0.007924561388790607, 0.022992011159658432, -0.031105251982808113, -0.006711618509143591, 0.02057960070669651, -0.0023366000968962908, -0.029191497713327408, -0.0030171959660947323, -0.17272309958934784, 0.01668470725417137, 0.012991968542337418, -0.011987920850515366, 0.02000008337199688, 0.004319425206631422, 0.009184674359858036, -0.011138861067593098, -0.04029666632413864, -0.0025657115038484335, 0.0380864143371582, 0.027709010988473892, -0.015579580329358578, -0.00837604608386755, 0.017749400809407234, 0.009946133941411972, -0.042156510055065155, 0.020808713510632515, 0.02462274581193924, 0.0008052594494074583, 0.024016274139285088, -0.010438049212098122, -0.00466309254989028, -0.017479857429862022, 0.013066092506051064, -0.01057955902069807, -0.006704879924654961, 0.03512144088745117, 0.00633088918402791, -0.014312728308141232, -0.010545866563916206, 0.00016983308887574822, 0.03819423168897629, 0.0319138802587986, 0.01102430559694767, -0.0010175245115533471, -0.005532368086278439, -0.0003249255532864481, -0.011920535005629063, 0.0319138802587986, 0.014258820563554764, 0.01344345323741436, 0.018962344154715538, 0.023652391508221626, -0.01247983705252409, 0.008005424402654171, 0.008510817773640156, -0.0028167234268039465, -0.02725078910589218, -0.010181983932852745, 0.019919222220778465, 0.01641516387462616, -0.0013342374004423618, -0.005748002789914608, 0.02483837865293026, 0.02103782445192337, 0.0009973087580874562, 0.01938013546168804, -0.0057143098674714565, -0.01266177836805582, -0.006027653347700834, -0.021293889731168747, 0.012938059866428375, -0.012102477252483368, -0.0035983978305011988, -0.034070223569869995, 0.023504141718149185, -0.0019777710549533367, -0.019622724503278732, 0.017372040078043938, -0.010842363350093365, 0.012291156686842442, 0.016886863857507706, 0.013989277184009552, 0.02274942211806774, -0.009696806780993938, -0.006981161423027515, 0.024218430742621422, -0.001912070089019835, -0.01966315507888794, -0.009272276423871517, 0.013841028325259686, -0.0023972473572939634, 0.016954248771071434, -0.005694094114005566, 0.008382784202694893, -0.009851793758571148, 0.018018944188952446, -0.02039092220366001, -0.005488567519932985, 0.014353159815073013, -0.023099828511476517, -0.015256129205226898, -0.01935318112373352, -0.029595812782645226, 0.03396240621805191, 0.01619952917098999, 0.007217011414468288, 0.01061325240880251, -0.02471708506345749, 0.018234578892588615, 0.005178593099117279, -0.004733847454190254, 0.008463647216558456, 0.03439367562532425, 0.0027156448923051357, -0.007601110264658928, 0.01699468120932579, 0.037682101130485535, -0.0006523780757561326, -0.041698288172483444, 0.02409713715314865, 0.017843740060925484, 0.007473077159374952, 0.004875357262790203, 0.020512215793132782, 0.005047190934419632, -0.01721031591296196, 0.013867982663214207, -0.01355126965790987, 0.05525629594922066, -0.031347841024398804, 0.005549214780330658, 0.011415142565965652, 0.00765501894056797, -0.014258820563554764, -0.12204903364181519, -0.06846389919519424, 0.03142870217561722, 0.022318152710795403, -0.021549956873059273, 0.024905765429139137, -0.00040894714766182005, 0.036738697439432144, -0.022466402500867844, 0.025768302381038666, 0.005414443090558052, -0.014407068490982056, 0.004952851217240095, 0.02667127177119255, 0.04525625705718994, 9.386621240992099e-05, -0.010882794857025146, -0.004481150768697262, -0.024973150342702866, 0.004386811051517725, -0.009609204716980457, -0.01355126965790987, -0.0031047973316162825, -0.005532368086278439, 0.010734546929597855, -0.017493335530161858, -0.034771036356687546, 0.010956919752061367, -0.0026448897551745176, -0.005262825172394514, -0.0033962407615035772, -0.02140170708298683, 0.023692822083830833, -0.026806043460965157, -0.018032420426607132, -0.010202199220657349, -0.035417940467596054, -0.004484520293772221, 0.01508092600852251, -0.021657772362232208, 0.003861202159896493, -0.0031081666238605976, -0.004326163791120052, -0.015000062994658947, -0.017250746488571167, -0.005239240359514952, -0.011219724081456661, 0.013483884744346142, 0.036334384232759476, -0.00927901454269886, -0.025040537118911743, -0.0129852294921875, -0.003293477464467287, -0.033180732280015945, -0.01044478826224804, -0.000431268650572747, 0.017628107219934464, 0.0054481360130012035, -0.031617384403944016, 0.013349113054573536, -0.02094348520040512, 0.021738635376095772, -0.0017132821958512068, -0.011031043715775013, 0.0001379301684210077, -0.0017756139859557152, -0.003958911634981632, 0.0016517926706001163, -0.001553241047076881, 0.005377381108701229, -0.01800546608865261, 0.007911084219813347, -0.02211599610745907, 0.02250683307647705, -0.015242652036249638, -0.0002413251349935308, -0.0175472442060709, -0.034528445452451706, 0.031617384403944016, 0.00708224019035697, -0.026994721964001656, -0.012621346861124039, -0.009373354725539684, 0.0014782744692638516, 0.02994621731340885, 0.005374012049287558, -0.0030239345505833626, 0.009137504734098911, 0.003322116332128644, -0.023315461352467537, 0.0034872114192694426, -0.00213949684984982, 0.0027762919198721647, 0.0021024346351623535, -0.020350489765405655, 0.01730465516448021, 0.020512215793132782, -0.006920514162629843, 0.030269669368863106, -0.012513529509305954, -0.009454217739403248, -0.005896251183003187, -0.028841091319918633, 0.04008103162050247, 0.003952173050493002, -0.0006873344536870718, 0.002075480530038476, -0.004063359461724758, 0.005741264205425978, -0.021994702517986298, -0.013389544561505318, -0.013497360982000828, 0.0009130766266025603, 0.017493335530161858, 0.013301942497491837, -0.0021748743019998074, -0.01641516387462616, -0.012789811007678509, 0.016482548788189888, 0.004157699644565582, 0.0023450234439224005, 0.007857175543904305, 0.008288444951176643, -0.00030807912116870284, 0.028005508705973625, 0.0008852800237946212, -0.01944752037525177, 0.0017267592484131455, -0.008382784202694893, -0.0037196921184659004, -0.015175266191363335, -0.03442063182592392, 0.0008760144701227546, -0.015121357515454292, -0.01505397167056799, -0.0112062469124794, -0.0005997329717501998, -0.007001377176493406, 0.0038544635754078627, 0.007223749998956919, 0.01171163935214281, -0.006907036993652582, -0.00989222526550293, -0.0317252017557621, 0.010619990527629852, 0.008672542870044708, -0.021388230845332146, -0.01393536850810051, -0.026873428374528885, -0.010761501267552376, -0.001784037216566503, 0.02185993082821369, 0.01102430559694767, -0.0005020236712880433, 0.014622703194618225, -0.043234683573246, -0.01304587721824646, -0.01892191171646118, 0.007985209114849567, 0.01171163935214281, -0.0003849409695249051, -0.013328896835446358, 0.02994621731340885, -0.0023163843434304, 0.00990570243448019, -0.016159098595380783, 0.018571507185697556, 0.005896251183003187, -0.030862662941217422, -0.0021378123201429844, 0.01663079857826233, -0.0051752240397036076, -0.014029708690941334, -0.001417627208866179, 0.00816041138023138, 0.0034198258072137833, 0.017897648736834526, 0.011617299169301987, 0.01908363774418831, -0.021334322169423103, -0.018611937761306763, 0.00631741201505065, -0.0010251053608953953, -0.013510838150978088, -0.004016189370304346, 0.010451526381075382, -0.00614894786849618, 0.014447499997913837, -0.013841028325259686, 0.0022860609460622072, -0.02296505682170391, 0.0100606894120574, -0.02508096769452095, 0.0025640269741415977, 0.007412430364638567, 0.03442063182592392, -0.005262825172394514, 0.016037803143262863, 0.003086266340687871, 0.005451505538076162, 0.0017553982324898243, 0.034501492977142334, -0.013975800015032291, 0.006805958691984415, -0.008200842887163162, -0.0060175457037985325, 0.00539085827767849, 0.02991926297545433, -0.02260117419064045, 0.010370663367211819, -0.010572820901870728, 0.01394884567707777, 0.022897670045495033, -0.017506811767816544, 0.017129452899098396, 0.02452840469777584, -0.015633489936590195, 0.020593078806996346, -0.01177228707820177, 0.011212985031306744, -0.017277700826525688, 0.02712949365377426, 0.01874670945107937, -0.00371295353397727, 0.013274988159537315, 0.006425229366868734, 0.011934012174606323, 0.0018817464588209987, 0.015471762977540493, -0.04029666632413864, 0.0004005239170510322, 0.0038140323013067245, -0.0016838009469211102, -0.011455574072897434, -0.019919222220778465, -0.017843740060925484, 0.010849102400243282, -0.03326159715652466, -0.024487974122166634, 0.019326226785779, -0.03501362353563309, 0.05328863486647606, 0.03234514966607094, -0.017587674781680107, 0.004659723024815321, -0.015822168439626694, -0.0006730149616487324, -0.0004679096455220133, 0.022102519869804382, -0.03531012311577797, 0.005134792532771826, 0.006260134279727936, -0.010876056738197803, -0.01171163935214281, -0.030296623706817627, -0.014407068490982056, 0.00344846467487514, -0.00949464924633503, -0.0017941449768841267, -0.014622703194618225, -0.014946154318749905, 0.021657772362232208, -0.02067394182085991, 0.0073787374421954155, -0.020323535427451134, -0.0020384183153510094, -0.013800596818327904, 0.02045830711722374, 0.009016210213303566, -0.010545866563916206, -0.03603788837790489, -0.003209245391190052, -0.01022915355861187, -0.018517598509788513, 0.00855798739939928, -0.024663176387548447, 0.019919222220778465, 0.0071496255695819855, 0.014299251139163971, 0.005946790333837271, 0.004336271435022354, -0.0001980508677661419, 0.011442096903920174, -0.01911059208214283, -0.0233963243663311, 0.03423194959759712, -0.02207556553184986, -0.010208938270807266, -0.005124684423208237, -0.014811383560299873]"
4,Microsoft CEO Sachin Adela finally thinks he has what it takes to make Bing happen.,19.84,25.64,"[0.0017989958869293332, -0.014137833379209042, 1.721564694889821e-05, 0.001815715106204152, -0.0023440448567271233, 0.011442683637142181, -0.030362235382199287, -0.012820353731513023, -0.024490419775247574, -0.0015900046564638615, 0.02518594264984131, 0.016425032168626785, 0.013428935781121254, 0.005289983935654163, 0.01055990532040596, -0.010365961119532585, 0.020130028948187828, 0.006156043615192175, 0.0034374864771962166, -0.03239529952406883, -0.016532035544514656, -0.007731000892817974, 0.020103277638554573, 0.0064135207794606686, -0.028382670134305954, 0.004149728454649448, 0.027660397812724113, -0.0003456713748164475, -0.001246423227712512, -0.003373953280970454, 0.030148228630423546, -0.01348243746906519, -0.0057915630750358105, 0.005400331225246191, -0.026710741221904755, -0.014940359629690647, -0.003407391719520092, -0.010071701370179653, -0.0017856204649433494, -0.012425778433680534, 0.023112749680876732, 0.009857694618403912, -0.00047775378334335983, -0.0012681583175435662, -0.04036705940961838, 0.0031749936752021313, -0.011195237748324871, -0.022243347018957138, 0.009804192930459976, 0.009610249660909176, 0.009877758100628853, 0.02140069380402565, -0.025934966281056404, 0.002626600908115506, -0.027098629623651505, -0.02594834193587303, -0.014953735284507275, -0.004343672189861536, 0.0017371345311403275, 0.01861860416829586, 0.012265272438526154, 0.012024515308439732, 0.011797132901847363, 0.004968973807990551, -0.019809016957879066, 0.008653906174004078, -0.002626600908115506, -0.011415933258831501, 0.04063456878066063, 0.013301868923008442, 0.0386817567050457, 0.0016318028792738914, 0.010666908696293831, -0.007423365954309702, 0.04729553312063217, 0.007122418377548456, -0.024356665089726448, -0.009764066897332668, 0.026550237089395523, -0.00309975678101182, 0.013963952660560608, -0.02416940964758396, 0.0011812179582193494, 0.013883700594305992, 0.018912862986326218, 0.04068807139992714, 0.003256918163970113, 0.02057141810655594, -0.020945928990840912, 0.025319695472717285, 0.027138754725456238, 0.02840942144393921, 0.011021357960999012, 0.01181719545274973, -0.023928651586174965, 0.02873043157160282, 0.013435623608529568, 0.0030328796710819006, 0.006219576578587294, -0.004336984362453222, 0.010472964495420456, -0.007704250048846006, -0.036595188081264496, -0.009275863878428936, -0.03386659920215607, -0.0050024124793708324, 0.011890760622918606, -0.026336228474974632, 0.034214358776807785, -0.011215301230549812, 0.0030613024719059467, -0.00845327414572239, 0.0020865676924586296, -0.018966365605592728, -0.013495813123881817, -0.013134676031768322, -0.017428189516067505, 0.009570122696459293, -0.02128031477332115, -0.011950950138270855, 0.010887603275477886, 0.019488006830215454, 0.003128179581835866, 0.00011254174023633823, -0.007851379923522472, 0.02768714725971222, -0.011790445074439049, -0.038494497537612915, 0.03769197314977646, -0.006737874820828438, 0.03151252120733261, -0.00729629909619689, 0.0009973058477044106, 0.009683813899755478, -0.02729926072061062, 0.018244091421365738, -0.01856510154902935, 0.016826296225190163, -0.02307262271642685, -0.04480770230293274, 0.01618427410721779, 0.009509933181107044, -0.008312832564115524, -0.0076373727060854435, -0.0021133185364305973, 0.02228347212076187, 0.025654083117842674, 0.007329737767577171, 0.002762027084827423, 0.009924571961164474, -0.004450675565749407, -0.020705170929431915, -0.011402557604014874, 0.019996274262666702, 0.041544098407030106, -0.00989113375544548, -0.014726352877914906, 0.027660397812724113, 0.015435250476002693, -0.022484105080366135, 0.005534085910767317, 0.006236296147108078, 0.0014236477436497808, -0.00595875596627593, 0.014017454348504543, 0.026001842692494392, 0.008814411237835884, -0.007577183190733194, -0.01629127934575081, -0.014458844438195229, -0.006908411625772715, -0.0008079598192125559, -0.02985396794974804, 0.01239902712404728, -0.0011544671142473817, 0.004795093089342117, 0.0006612479919567704, 0.015502127818763256, 0.004821843933314085, -0.007717625238001347, 0.012445840984582901, 0.018364470452070236, 0.0222968477755785, 0.0026617113035172224, -0.015074114315211773, -0.017254309728741646, 0.009122045710682869, -0.037263959646224976, -0.004153072368353605, -0.030602993443608284, 0.03236854821443558, 0.005276608746498823, -0.013830198906362057, -0.02251085452735424, -0.641592800617218, -0.016411656513810158, -0.01206464134156704, -0.0013041048077866435, 0.001396896899677813, 0.012191708199679852, 0.014632725156843662, -0.016465159133076668, -0.0016067239921540022, 0.008627154864370823, -0.00930930208414793, -0.002220321912318468, -0.012452528811991215, -0.002339028986170888, -0.011797132901847363, -0.005610994528979063, 0.030709996819496155, -0.022149719297885895, 0.019688637927174568, 0.01116848737001419, -0.00903510581701994, -0.012539469636976719, -0.01701355166733265, -0.02673749253153801, 0.009008354507386684, -0.004550991579890251, 0.002579786814749241, -0.006363362539559603, -0.024436917155981064, 0.023193001747131348, -0.02184208296239376, 0.01979564130306244, 0.0035712409298866987, 0.040206555277109146, 0.0541437566280365, 0.009670439176261425, -0.03964478522539139, 0.007423365954309702, -0.009616936556994915, 0.016104022040963173, -0.027874404564499855, -0.00936949159950018, -0.0174014400690794, -0.00989782065153122, 0.00305795855820179, 0.0006416028481908143, 0.017762575298547745, 0.000780372996814549, -0.006229608319699764, 0.005483927670866251, 0.004928847309201956, -0.03662193939089775, 0.005380268208682537, -0.010553217492997646, 0.006406832952052355, -0.0030880533158779144, 0.000797928252723068, -0.017214182764291763, 0.0019511413993313909, -0.0025914902798831463, -0.016933299601078033, -0.012867167592048645, -0.04338990896940231, -0.04044731333851814, -0.030388986691832542, 0.039885543286800385, -0.015796387568116188, -0.0015732854371890426, 0.026523485779762268, -0.02168157882988453, -0.01645178347826004, -0.007563808001577854, -0.013636254705488682, 0.008426523767411709, -0.01590339094400406, 0.012372276745736599, 0.023594265803694725, -0.01629127934575081, -0.012405714951455593, 0.008921414613723755, 0.0017505099531263113, -0.041330091655254364, 0.018190590664744377, -0.024717802181839943, 0.025306321680545807, -0.018257467076182365, -0.036488182842731476, -0.0394575297832489, -0.00394575297832489, -0.01544862613081932, 0.003211776027455926, 0.0027703866362571716, -0.006142667960375547, -0.0032702935859560966, 0.017053678631782532, 0.00772431306540966, -0.00301616033539176, -0.009523308835923672, 0.03646143153309822, -0.01590339094400406, -0.010091764852404594, 0.00487534562125802, 0.02340700849890709, -8.683582564117387e-05, 0.0278476532548666, 0.020691797137260437, -0.024584047496318817, 0.002220321912318468, 0.026443233713507652, -0.011609876528382301, 0.022109592333436012, -0.03311757370829582, -0.004925503395497799, -0.003470925148576498, -0.02584133855998516, -0.03129851445555687, -0.00745011679828167, -0.0032134479843080044, -0.019207123667001724, -0.017468316480517387, 0.010065014474093914, 0.005691247060894966, -0.0016986801056191325, -0.006838190369307995, -0.027553394436836243, 0.005758124403655529, -0.004848594777286053, -0.013268430717289448, -0.007323049940168858, 0.01206464134156704, -0.018203966319561005, -0.026148973032832146, 0.012472592294216156, -0.0029542988631874323, 0.031031006947159767, 0.02628272771835327, 0.0035277707502245903, -0.0246241744607687, -0.008627154864370823, -0.009991449303925037, -0.007650748360902071, 0.012024515308439732, -0.0019494694424793124, 0.012124830856919289, -0.015796387568116188, -0.03095075488090515, -0.02335350774228573, -0.0017638853751122952, -0.04162434861063957, -0.006132636219263077, 0.009516621008515358, -0.008961540646851063, 0.005480584222823381, 0.022831866517663002, 0.0064135207794606686, -0.00486531388014555, 0.005457176826894283, -0.014151209034025669, -0.016371531412005424, -0.033331580460071564, -0.01761544682085514, 0.02228347212076187, -0.006483741570264101, -0.02495856024324894, 0.0017304467037320137, -0.023982152342796326, -0.012305399402976036, 0.030041225254535675, -0.00238918699324131, -0.008145639672875404, 0.03881550952792168, -0.015916766598820686, 0.009315989911556244, 0.011489497497677803, -0.01845809817314148, -0.0011377478949725628, -0.02078542485833168, -0.019193748012185097, 0.01267322339117527, -0.0002863178960978985, 0.008553589694201946, 0.013709819875657558, 0.0065807136707007885, -0.020049775019288063, 0.046225499361753464, -0.002887421753257513, 0.004494145978242159, 0.04480770230293274, -0.007082292344421148, -0.005848408676683903, 0.0062831100076437, 0.018030084669589996, -0.008794347755610943, -0.01317480206489563, 0.015060738660395145, 0.015582380816340446, -0.027419639751315117, -0.009851006790995598, -0.0061226049438118935, -0.0010207127779722214, -0.002402562415227294, 0.010707034729421139, 0.010399400256574154, 0.009208986535668373, 0.011342368088662624, 0.0027068534400314093, -0.01055990532040596, -0.011435995809733868, 0.006574025843292475, 0.012138206511735916, 0.0072227343916893005, -0.03236854821443558, -0.017428189516067505, 0.01511424034833908, 0.014539096504449844, 0.03608692064881325, 0.021200062707066536, -0.00553074199706316, -0.0005588423227891326, 0.01750844344496727, 0.01334199495613575, -0.020049775019288063, -0.003852125024423003, -0.022992370650172234, -0.0043938299641013145, 0.022497480735182762, 0.0014077643863856792, 0.010332522913813591, 0.01750844344496727, -0.032047539949417114, 0.002078208141028881, 0.022377101704478264, 0.0012865494936704636, 0.026978250592947006, -0.011710192076861858, -0.003394016297534108, 0.022885367274284363, 0.003089725272729993, 0.020303908735513687, -0.0019561571534723043, -0.0010223847348242998, 0.01511424034833908, 0.012372276745736599, -0.017200807109475136, 0.0011603188468143344, -0.0031348674092441797, 0.04352366179227829, 0.021828707307577133, -0.007409990299493074, 0.024089155718684196, -0.026376355439424515, -0.01590339094400406, -0.011456059291958809, -0.005768155679106712, 0.01729443669319153, -0.028382670134305954, -0.0032870129216462374, 0.0007256172830238938, 0.017040302976965904, 0.017481692135334015, -0.013910450972616673, 0.019100120291113853, 0.006079134531319141, 0.010044950991868973, -0.0001790009264368564, -0.007597246672958136, 0.019367627799510956, -0.004443987738341093, -0.0041664475575089455, -0.026483358815312386, 0.00850008800625801, -0.013776697218418121, 0.008446586318314075, -0.01868548057973385, 0.004480770323425531, 0.00031515865703113377, -0.014846731908619404, 0.005149541888386011, -0.00272357277572155, 0.00045727266115136445, 0.002618241123855114, -0.020825549960136414, 0.0025296290405094624, 0.0008359646308235824, 0.001309120561927557, 0.009155484847724438, 0.00763068487867713, -0.01690654829144478, 0.0009563435451127589, 0.004751622676849365, -0.013428935781121254, 0.022096216678619385, -0.009148797020316124, 0.011094922199845314, -0.003166633890941739, -0.003908970393240452, 0.024490419775247574, -0.009115357883274555, -0.003541146172210574, 0.005343485623598099, 0.012245209887623787, 0.012071329168975353, -0.007088980171829462, -0.02862342819571495, 0.041490595787763596, -0.002762027084827423, 0.0004085777036380023, -0.01634478010237217, 0.0019477976020425558, -0.02717888168990612, -0.01500723697245121, -0.000813393562566489, -0.034374866634607315, 0.01662566512823105, -0.012666535563766956, 0.005326766520738602, -0.008466649800539017, 0.007182607892900705, 0.01683967188000679, 0.009744003415107727, -0.0037484653294086456, 0.00486197043210268, -0.008680656552314758, 0.024329913780093193, 0.12701311707496643, 0.01905999332666397, -0.006874972954392433, 0.005156229715794325, -0.014819980598986149, 0.0058918786235153675, -0.03458887338638306, -0.04317590221762657, 0.003263605758547783, -0.016545411199331284, -0.009416305460035801, 0.009362803772091866, -0.015702759847044945, -0.0022253377828747034, 0.03667543828487396, -0.010793975554406643, 0.0262961033731699, -0.022109592333436012, -0.003644805634394288, -0.01617090031504631, -0.024637550115585327, 0.03696969896554947, 0.011034732684493065, 0.017923081293702126, 0.017816077917814255, -0.003544490085914731, 0.0012372275814414024, 0.035765908658504486, -0.019688637927174568, -0.020437663421034813, -0.005303359590470791, 0.0077644395641982555, -0.002004643203690648, 0.01733456179499626, -0.005380268208682537, 0.009904508478939533, -0.033706095069646835, 0.019969522953033447, -0.006380082108080387, 0.009663751348853111, -0.0008000181405805051, 0.011777069419622421, 0.018872737884521484, -0.008386396802961826, -0.007737688720226288, -0.023447135463356972, -0.016639038920402527, 0.011710192076861858, -0.022189844399690628, -0.029613209888339043, 0.026483358815312386, 0.0038186863530427217, -0.013408872298896313, 0.006289797835052013, -0.008754221722483635, 0.010359273292124271, -0.032823313027620316, -0.002979377983137965, -0.0015657617477700114, -0.00936949159950018, -0.032101042568683624, -0.010158642195165157, -0.0005659480229951441, -0.022390475496649742, -0.004026005510240793, -0.01158981304615736, -0.022270098328590393, -0.022912118583917618, -0.026429858058691025, -0.0015147678786888719, 0.020945928990840912, -0.03656843677163124, -0.03239529952406883, 0.01657216250896454, 0.01690654829144478, 0.012198396027088165, 0.028275666758418083, -0.01872560754418373, -0.0052030435763299465, 0.0015900046564638615, 0.015930142253637314, -0.028195414692163467, 0.0008359646308235824, -0.002079879865050316, -0.020986055955290794, 0.008988291956484318, -0.015502127818763256, 0.0031231637112796307, 0.00811888836324215, -0.022176468744874, 0.024249661713838577, 0.010238894261419773, 0.022189844399690628, -0.0172810610383749, 0.0021735080517828465, -0.0041029141284525394, 0.0017112195491790771, 0.005146197974681854, -0.010406087152659893, 0.006196169648319483, 0.0016986801056191325, -0.006988664157688618, -0.012439153157174587, -0.001417796011082828, -0.010493027977645397, 0.006697748322039843, 0.02279173955321312, -0.003494332078844309, -0.012245209887623787, -0.012412402778863907, 0.020130028948187828, -0.005714653991162777, 0.0032602620776742697, -0.02078542485833168, 0.011282178573310375, 0.025975093245506287, 0.019916020333766937, 0.028248917311429977, -0.014980485662817955, -0.008961540646851063, -0.012633097358047962, -0.0202370323240757, 0.003708339063450694, -0.014111083000898361, 0.00393237778916955, -0.0017471660394221544, 0.025774460285902023, -0.013749945908784866, -0.04384467378258705, 0.012686599045991898, -0.02661711350083351, 0.0007410826510749757, -0.004564366769045591, -0.03951103240251541, -0.03539139777421951, -0.025199318304657936, -0.003868844360113144, 0.01175700593739748, -0.0176689475774765, -0.019661888480186462, -0.0020648327190428972, -0.005858439952135086, 0.0016292950604110956, 0.006981976330280304, -0.005547461099922657, -0.03381309658288956, 0.0059754750691354275, -0.00460114935413003, -0.01423146203160286, 0.02584133855998516, 0.005988850723952055, 0.0026416482869535685, 0.004621212370693684, -0.005550805013626814, 0.0017137274844571948, -0.02122681401669979, 0.030656494200229645, -0.02251085452735424, 0.011522936634719372, 0.029532957822084427, 0.032716311514377594, -0.01250603049993515, 0.035712409764528275, -0.0222968477755785, 0.02434328943490982, -0.003490988165140152, -0.005758124403655529, -0.02106630802154541, -0.009195610880851746, 0.01241909060627222, -0.002869030460715294, -0.003365593496710062, 0.025306321680545807, 0.014378591440618038, -0.015823138877749443, 0.004273450933396816, -0.00562771363183856, -0.01503398735076189, -0.024664299562573433, -0.019661888480186462, -0.04336315765976906, 0.01075384858995676, -0.015649257227778435, -0.008011884987354279, -0.010914353653788567, -0.008332895115017891, 0.024878306314349174, 0.024329913780093193, 0.0157295111566782, 0.016598913818597794, 0.02423628605902195, -0.013462373986840248, 0.007603934034705162, 0.007109043188393116, 0.005062601529061794, -0.039270274341106415, -0.000834292673971504, -0.0002844369737431407, 0.004674714058637619, 0.024891681969165802, 0.0032134479843080044, -0.01712055504322052, 0.0060189454816281796, 0.007476867642253637, -0.0032702935859560966, 0.04892733693122864, -0.021534448489546776, -0.018484849482774734, -0.001060839043930173, -0.022243347018957138, 0.003704995149746537, -0.0373709611594677, -0.024303164333105087, -0.01773582585155964, 0.011857322417199612, 0.0018207309767603874, 0.0013107925187796354, 0.016251152381300926, -0.0033388426527380943, -0.02878393419086933, 0.014659475535154343, 0.0024711114820092916, 0.042052365839481354, -0.007516993675380945, 0.0262961033731699, 0.025707583874464035, -0.0026516797952353954, -0.01972876489162445, 0.012024515308439732, -0.015796387568116188, -0.0006775493384338915, 0.016812920570373535, 0.01724093407392502, 0.016130773350596428, 0.0005839212681166828, 0.00646033463999629, -0.0036213987041264772, -0.01712055504322052, 0.003002784913405776, -0.01175700593739748, -0.026443233713507652, 0.005945380311459303, 0.0022537605836987495, -0.03680919483304024, 0.0047716861590743065, 0.03405385464429855, -0.0026516797952353954, -0.0013208241434767842, -0.0035913039464503527, -0.030870500952005386, -0.009028417989611626, 0.02483818121254444, -0.005233138334006071, -0.0074902428314089775, 0.022604484111070633, 0.0030278638005256653, -0.003942409064620733, -0.011195237748324871, -0.024757927283644676, -0.013455686159431934, -0.012031203135848045, 0.00637673819437623, -0.04186510667204857, 0.029506206512451172, -0.004928847309201956, 0.030335484072566032, -0.02145419642329216, -0.0088946633040905, 0.017789326608181, 0.018805859610438347, -0.007002039812505245, 0.012967483140528202, -0.026697365567088127, 0.005751436576247215, 0.010967855341732502, -0.0035478337667882442, -0.004989036824554205, -0.0035077075008302927, -0.02601521834731102, -0.006196169648319483, 0.032823313027620316, -0.005109415855258703, -0.0266839899122715, -0.0029375797603279352, -0.014940359629690647, 0.005236482247710228, 0.02317962609231472, 0.039270274341106415, 5.77338068978861e-05, -0.02157457545399666, -0.004902096465229988, 0.000998141709715128, -0.017321186140179634, 0.0016510301502421498, 0.0332513302564621, 0.0027419638354331255, -0.0027219008188694715, 0.0010850820690393448, -0.015475377440452576, 0.006467022467404604, 0.005667840130627155, 0.0047248718328773975, -0.009777442552149296, 0.016812920570373535, -0.007169232703745365, -0.01784282922744751, 0.005691247060894966, -0.014271588064730167, 0.0006733695045113564, -0.00044640511623583734, 0.02228347212076187, 0.005079321097582579, 0.006503804586827755, 0.007577183190733194, -0.0034542058128863573, 0.009021730162203312, 0.015247995033860207, -0.008098824881017208, -0.021146560087800026, 0.0029760340694338083, 0.01366969384253025, -0.01595689356327057, 0.03167302906513214, 0.02312612533569336, 0.00309975678101182, 0.00866728089749813, 0.01990264654159546, 0.010613407008349895, -0.03552515059709549, -0.014351840130984783, -0.005687903147190809, 0.008908038958907127, 0.001539846882224083, 0.0012806977611035109, -0.03381309658288956, 0.00260486570186913, -0.0021250220015645027, -0.0013734898529946804, -0.011369118466973305, 0.00828608125448227, 0.01223183423280716, 0.009135421365499496, 0.013455686159431934, 0.022323599085211754, -0.013977328315377235, -0.007583871018141508, -0.014967110939323902, -0.026697365567088127, -0.013382121920585632, -0.01156306266784668, 0.0015214555896818638, 0.023701269179582596, 0.021694954484701157, -0.00385546893812716, -0.01789632998406887, 0.012285335920751095, -0.02240385115146637, -0.002014674711972475, -0.005122791044414043, 0.014057581312954426, 0.032154541462659836, -0.007155857048928738, 0.004052756354212761, 0.012057953514158726, 0.004818500019609928, 0.013549314811825752, -0.01655878685414791, -0.0076173096895217896, 0.009509933181107044, -0.025988468900322914, -0.007403302472084761, 0.0003519410965964198, -0.0005337634356692433, -0.008252643048763275, 0.02339363470673561, 0.010747160762548447, 0.004116289783269167, 0.028864186257123947, 0.028329169377684593, -0.02268473617732525, 0.006654278375208378, -0.01467285118997097, 0.011389181949198246, 0.008787659928202629, 0.02779415249824524, -0.007824628613889217, 0.0005228958907537162, 0.01536837313324213, -8.678357698954642e-05, 0.0030646463856101036, 0.009128733538091183, 0.010098452679812908, 0.003268621629104018, 0.005099384114146233, 0.0043771108612418175, -0.00045727266115136445, -0.02029053308069706, -0.004347016103565693, 0.028489673510193825, -0.02162807621061802, 0.012659847736358643, 0.035204142332077026, 0.0035277707502245903, -0.009924571961164474, -0.010158642195165157, 0.016799544915556908, -0.0069953519850969315, -0.0051863244734704494, -0.00128153373952955, -0.03442836552858353, 0.015328247100114822, 0.008486712351441383, 0.005236482247710228, -0.013067798689007759, -0.0034876444842666388, -0.027152130380272865, -0.005604306701570749, -0.0028506394010037184, 0.018324345350265503, 0.01536837313324213, -0.007543744519352913, 0.009937947615981102, -0.002710197353735566, 0.010539841838181019, -0.030870500952005386, -0.006075791083276272, -0.008359646424651146, -0.001106817158870399, -0.015689384192228317, 0.01901986636221409, 0.01534162275493145, -0.03178003057837486, 0.03124501369893551, 0.010218831710517406, 0.008941477164626122, -0.003420767141506076, 0.25445425510406494, 0.002310606185346842, 0.01469960156828165, 0.015515503473579884, -0.014097707346081734, -0.005915285553783178, 0.0021935710683465004, 0.04451344534754753, 0.014940359629690647, -0.0069953519850969315, 0.005908597726374865, 0.003096412867307663, 0.007583871018141508, 0.0002292632998432964, 0.011603188700973988, -0.021266939118504524, -0.01583651453256607, -0.004581086337566376, -0.03135201707482338, -0.031646277755498886, 0.01889948733150959, -0.0337863452732563, 0.001557402079924941, -0.024878306314349174, 0.00803194846957922, 0.004554335027933121, 0.005594275426119566, 0.018484849482774734, 0.03646143153309822, -0.0013676381204277277, -3.1642566682421602e-06, 0.0006311532924883068, -0.01934087835252285, 0.02095930464565754, 0.00839308463037014, -0.00485193869099021, 0.000896990008186549, 0.016197649762034416, 0.0102522699162364, 0.025105688720941544, 0.031994037330150604, 0.004845250863581896, -0.01756194420158863, -0.009623624384403229, 0.004925503395497799, 0.033438585698604584, -0.012512718327343464, 0.005918629467487335, 0.036327678710222244, 0.007684186566621065, -0.015354998409748077, -0.026884622871875763, 0.03496338427066803, 0.00612594885751605, -0.01696005091071129, 0.011449371464550495, 0.0007598918164148927, 0.0077644395641982555, 0.006246327422559261, 0.009670439176261425, -0.0029877375345677137, 0.018110336735844612, 0.024022279307246208, 0.007269548252224922, 0.0024460323620587587, 0.01622440107166767, -0.025199318304657936, 0.022363726049661636, 0.010212143883109093, -0.010004824958741665, 0.010606719180941582, -0.029372453689575195, -0.00836633425205946, 0.004136352799832821, -0.03975179046392441, -0.014391967095434666, 0.024998685345053673, -0.005216419231146574, 0.031378768384456635, 0.03172652795910835, 0.007570495363324881, 0.03236854821443558, 0.011596500873565674, -0.013870324939489365, 0.008386396802961826, -0.025426700711250305, 0.02418278530240059, -0.006400145124644041, 0.01923387311398983, -0.05203043669462204, -0.0049355351366102695, -0.02811516262590885, -0.00121549260802567, -0.01794983260333538, 0.02228347212076187, 0.00013030598347540945, 0.007008727174252272, 0.01950138248503208, 0.005213075317442417, 0.005821657832711935, -0.0020965992007404566, 0.014833356253802776, 0.02339363470673561, 0.007737688720226288, -0.004316921345889568, -0.023152876645326614, 0.0005350173451006413, 0.010633469559252262, 0.018712231889367104, -0.015194493345916271, -0.004634588025510311, 0.0011118329130113125, 0.01678616926074028, 0.001274010050110519, 0.004059444181621075, 0.010198768228292465, -0.005778187420219183, -0.01722755841910839, 0.005400331225246191, 0.005972131155431271, 0.002594834193587303, -0.013034360483288765, 0.005453833378851414, 0.028944438323378563, -0.0030044568702578545, 0.0010240566916763783, -0.024998685345053673, 0.009188923053443432, -0.005600962787866592, -0.05063939094543457, 0.024998685345053673, 0.017040302976965904, -0.021882209926843643, -0.017040302976965904, -0.012138206511735916, -0.006714467890560627, 0.01690654829144478, -0.0033722813241183758, -0.00819914136081934, -0.009877758100628853, -0.0005835032789036632, 0.0056611523032188416, 0.005443801637738943, 0.008145639672875404, -0.0029977690428495407, -0.01191751193255186, 0.0047716861590743065, 0.003149914788082242, -0.017802702262997627, -0.005577555857598782, -0.015234619379043579, -0.01125542726367712, 0.008232579566538334, -0.0038922512903809547, 0.023206377401947975, 0.009282550774514675, -0.019086744636297226, -0.01706705428659916, -0.0052297948859632015, 0.028436172753572464, -0.027446391060948372, 0.002422625431790948, 0.009135421365499496, -0.03386659920215607, -0.018712231889367104, -0.03079024888575077, -0.17045652866363525, 0.0059554120525717735, 0.011161799542605877, -0.014445468783378601, 0.03191378712654114, 0.010051638819277287, 0.009262488223612309, -0.011268802918493748, -0.019100120291113853, 0.006092510186135769, 0.022323599085211754, -0.0053334543481469154, -0.030362235382199287, -0.012044577859342098, 0.002074864227324724, 0.0017739168833941221, -0.009770754724740982, 0.010305771604180336, 0.014378591440618038, -0.015314871445298195, 0.0023942026309669018, -0.021146560087800026, 0.00830614473670721, -0.008406460285186768, 0.01011851616203785, -0.011576438322663307, -0.0007966742850840092, 0.013776697218418121, 0.01333530806005001, -0.03678244352340698, 0.008373022079467773, -0.054063502699136734, 0.03317107632756233, 0.014833356253802776, -0.0016033801948651671, -0.007684186566621065, -0.0032067603897303343, -0.01911349594593048, -0.01950138248503208, 0.021039556711912155, 0.006761281751096249, 0.02584133855998516, 0.02384839951992035, 0.024142658337950706, 0.007109043188393116, 0.031646277755498886, 0.015435250476002693, 0.0014361871872097254, -0.013041048310697079, 0.006380082108080387, 0.03512388840317726, -0.0425606295466423, -0.0065807136707007885, 0.00972394086420536, 0.025613956153392792, 0.004036037251353264, 0.009055168367922306, 0.014044205658137798, -0.005634401459246874, -0.01500723697245121, 0.007028790656477213, -0.0005492287455126643, 0.010105140507221222, -0.029479457065463066, -0.013556002639234066, -0.019969522953033447, -0.004199886228889227, 0.012071329168975353, -0.0062697348184883595, 0.012358901090919971, -0.002534644678235054, 0.007871442474424839, 0.014351840130984783, -0.022470729425549507, 0.002121678087860346, 0.011128361336886883, -0.028275666758418083, 0.016411656513810158, -0.004189854487776756, 0.009463119320571423, -0.01738806441426277, 0.021908961236476898, -0.015328247100114822, 0.0010223847348242998, -0.007597246672958136, 0.015502127818763256, 0.016331404447555542, 0.00981088075786829, 0.008593716658651829, -0.014485594816505909, 0.02356751449406147, -0.011094922199845314, -0.013689756393432617, -0.014552472159266472, -0.004965629894286394, 0.004143040627241135, 0.01972876489162445, 0.025547077879309654, 0.0035846163518726826, -0.003151586512103677, 0.004668026231229305, -0.01536837313324213, -0.02996097132563591, 0.018939614295959473, 0.009422993287444115, 0.021427445113658905, -3.68346918548923e-05, 0.003136539366096258, 0.015916766598820686, -0.005584243685007095, -0.02485155686736107, 0.022805115208029747, 0.028997940942645073, 0.021641451865434647, -0.00864053051918745, 0.01606389693915844, -0.01789632998406887, -0.004427268635481596, -0.008025260642170906, -0.020437663421034813, 0.05687234550714493, -0.012305399402976036, -0.009302614256739616, -0.00020940913236699998, -0.01662566512823105, -0.020303908735513687, -0.11331667751073837, -0.03902951627969742, 0.015247995033860207, 0.0021969149820506573, 0.0011469434248283505, 0.011997763998806477, 0.013194865547120571, 0.011349055916070938, -0.023768145591020584, 0.028543176129460335, 0.01214489433914423, -0.024771302938461304, -0.014204710721969604, 0.02145419642329216, 0.006634215358644724, 0.0006123440689407289, 0.003631430212408304, 0.002038081642240286, -0.025560453534126282, 0.00920229870826006, -0.003083037445321679, -0.0041029141284525394, 0.010941104963421822, -0.020410912111401558, -0.008513463661074638, 0.0032803250942379236, -0.021721703931689262, 0.004494145978242159, 0.014218086376786232, 0.0027402921114116907, -0.004092882853001356, -0.021307066082954407, -0.006109229288995266, -0.014351840130984783, 0.013883700594305992, 3.887235652655363e-05, -0.030308732762932777, -0.008045323193073273, -0.013047736138105392, -0.015074114315211773, 0.014860106632113457, -0.02534644678235054, -0.0035210829228162766, -0.02573433518409729, -0.027312636375427246, 0.0037451214157044888, -0.015555629506707191, 0.0033338270150125027, 0.03389335051178932, -0.005590931512415409, -0.014779854565858841, 0.0139238266274333, 0.015662632882595062, -0.028997940942645073, -0.0025597235653549433, -0.0006491265376098454, -0.0020731922704726458, 0.006062415428459644, -0.028489673510193825, -0.02055804245173931, 0.005035850685089827, -0.009081919677555561, -0.009737315587699413, 0.017882954329252243, -0.0019812360405921936, -0.005386956036090851, -0.017869580537080765, -0.025038812309503555, -0.004534272011369467, -0.0205045398324728, 0.00018161331536248326, 0.03836074471473694, -0.017909705638885498, 0.021467572078108788, -0.010212143883109093, 0.024878306314349174, -0.002007987117394805, -0.02800815925002098, 0.015542253851890564, -0.012071329168975353, -0.00042341608786955476, -0.022818490862846375, 0.014070956036448479, -0.0034976759925484657, 0.025587204843759537, -0.026429858058691025, -0.023888524621725082, 0.02124018967151642, 0.014070956036448479, -0.04456694424152374, 0.016812920570373535, 0.004296858329325914, 0.028997940942645073, 0.019033242017030716, 0.006112573202699423, 0.015328247100114822, -0.020384160801768303, -0.029532957822084427, 0.02089242823421955, 0.01459259819239378, 0.007523681502789259, -0.008714094758033752, -0.041223086416721344, 0.010653533041477203, -0.012385651469230652, -0.0007197655504569411, 0.003026191843673587, -0.0032769814133644104, 0.0059119416400790215, -0.02434328943490982, -0.0402333065867424, 0.021480947732925415, 0.001267322339117527, 0.006239640060812235, -0.013910450972616673, 0.002200258895754814, -0.023500638082623482, -0.017254309728741646, 0.03394684940576553, -0.021801957860589027, 0.0014219757867977023, 0.006008913740515709, 0.012766852043569088, -0.0047081527300179005, 0.012285335920751095, 0.019942771643400192, 0.004430612549185753, 0.014177960343658924, -0.025025436654686928, 0.01167006604373455, -0.028034908697009087, -0.03255580738186836, -0.0016326388576999307, -0.006854909937828779, 0.0009329364984296262, -0.0011736942688003182, 0.0026199130807071924, -0.019140245392918587, 0.0022219938691705465, -0.008292769081890583, 0.0014503985876217484, 0.025814587250351906, 0.008439898490905762, -0.03507038950920105, 0.01745494082570076, -0.03450861945748329, -0.0021467572078108788, 0.005554148927330971, -0.017374688759446144, -0.013883700594305992, 0.015742884948849678, 0.008373022079467773, 0.0012706662528216839, 0.00012884305033367127, -0.007236109580844641, -0.032261546701192856, 0.013602816499769688, -0.0069284746423363686, 0.026991626247763634, 0.007082292344421148, 0.009041793644428253, -0.011656690388917923, 0.007383239455521107, 0.017588695511221886, 0.01490023359656334, 0.005172949284315109, 0.011402557604014874, 0.0205045398324728, -0.012472592294216156, 0.014753103256225586, -0.0007109878933988512, -0.0035244268365204334, 0.007216046564280987, -0.002835592022165656, 0.02129369042813778, -0.00022362053277902305, 0.01031245943158865, -0.0014445468550547957, 0.010131890885531902, -0.039484281092882156, -0.022390475496649742, 0.02162807621061802, -0.012853791937232018, -0.004594461526721716, -0.007496930658817291, 0.016719292849302292, 0.01583651453256607, 0.023982152342796326, -0.007697562221437693, 0.008439898490905762, 0.0008384725078940392, -0.005995538085699081, -0.0019260625122115016, -0.01683967188000679, -0.002101615071296692, -0.005487271584570408, 0.011476121842861176, 0.012860479764640331, -0.0016226073494181037, 0.008747533895075321, 0.020638294517993927, 0.017133930698037148, 0.02055804245173931, 0.0016744370805099607, 0.0020481133833527565, -0.0013500828063115478, -0.030870500952005386, 0.03870850428938866, -0.008687344379723072, -0.0006161059136502445, -0.003083037445321679, 0.012512718327343464, 0.003715026658028364, 0.01923387311398983, 0.019969522953033447, 0.02367451786994934, -0.026416482403874397, 0.00850008800625801, -0.0004698121047113091, -0.011910824105143547, -0.01784282922744751, 0.03252905607223511, -0.0031816812697798014, -0.0010340881999582052, 0.038440998643636703, 0.011743631213903427, 0.02580121159553528, 0.005825001280754805, 0.023995527997612953, -0.02328663133084774, 0.006737874820828438, -0.031940534710884094, -0.007670811377465725, 0.0002080506965285167, -0.014218086376786232, -0.018859362229704857, -0.017642198130488396, -0.007269548252224922, -0.013181489892303944, 0.030495990067720413, 0.01807021163403988, 0.06275753676891327, 0.0049555981531739235, -0.0054772403091192245, 0.007068916689604521, -0.015328247100114822, 0.0015933485701680183, -0.003006128827109933, 0.0072227343916893005, -0.03084375150501728, -0.015462001785635948, 0.033438585698604584, -0.009616936556994915, 0.02923869900405407, -0.026189099997282028, 0.0013141364324837923, 0.00015016015095170587, -0.004647963214665651, 0.022443978115916252, -0.00803194846957922, -0.00411294586956501, 0.02194908633828163, 0.023313380777835846, 0.010011511854827404, -0.018832610920071602, -0.02029053308069706, -0.022497480735182762, -0.00272357277572155, 0.016812920570373535, -0.018658731132745743, -0.03346533700823784, 0.025881465524435043, -0.001294909161515534, -0.022377101704478264, -0.013977328315377235, 0.01734793744981289, -0.011201925575733185, 0.014124458655714989, 0.0020347379613667727, 0.010820725932717323, 0.015074114315211773, -0.0062229204922914505, -0.006005569826811552, -0.02055804245173931, -0.017107179388403893, -0.007563808001577854, -0.004046068526804447, -0.014472219161689281, 0.005677871871739626, 0.006844878196716309]"
5,And grab some search engine market share from Google.,25.64,28.64,"[-0.0032237558625638485, -0.00394839933142066, 0.015753980726003647, -0.012155523523688316, -0.007837374694645405, 0.0057311211712658405, -0.01834222860634327, -0.005727820098400116, -0.00032765770447440445, -0.026886090636253357, 0.006008433643728495, 0.03515264019370079, 0.021471897140145302, 0.0004914865712635219, -0.0025998030323535204, 0.004704405553638935, 0.03293414041399956, -0.01707451604306698, 0.01791965775191784, -0.014882427640259266, -0.005955612286925316, -0.004394080024212599, 0.013852410949766636, -0.009956832975149155, -0.014988071285188198, 0.017985684797167778, 0.020547522231936455, 0.008101481013000011, -0.001545851118862629, 0.01621616818010807, 0.019345836713910103, 0.0024264827370643616, -0.016533097252249718, 0.00461196806281805, -0.009243744425475597, 0.014829606749117374, 0.002883718116208911, 0.0039913165383040905, 0.016651945188641548, -0.01473716925829649, 0.010630305856466293, 0.016916051506996155, 0.0020814931485801935, -0.01149525586515665, -0.022132163867354393, -0.00556935602799058, -0.00790340080857277, -0.00712428567931056, -0.007810963783413172, 0.011898019351065159, -0.012630916200578213, 0.014169339090585709, -0.02143228054046631, -0.0012520321179181337, -0.00907867681235075, -0.00790340080857277, -0.012604505755007267, 0.00425212224945426, 0.011515064164996147, 0.0021607251837849617, 0.017338622361421585, 0.013126116245985031, -0.005301947705447674, -0.007962825708091259, -0.009283360093832016, -0.008543861098587513, -0.014169339090585709, 0.0017232979880645871, -0.005886284168809652, -0.012386617250740528, 0.024654386565089226, 0.0326700322329998, 0.0020385757088661194, -0.00515668885782361, 0.023690395057201385, 0.00011472146434243768, -0.0175499077886343, -0.018896853551268578, 0.025341063737869263, 0.0136147141456604, 0.01893647015094757, -0.007282749749720097, -0.010570881888270378, 0.003344254568219185, 0.011118903756141663, 0.015318204648792744, 0.00600513257086277, 0.024548742920160294, -0.02474682405591011, -0.00020880957890767604, 0.026727626100182533, -0.007388392463326454, -0.0005133579252287745, 0.018196970224380493, -0.016136936843395233, 0.01604449935257435, -0.021617155522108078, 0.010610497556626797, -4.216942215862218e-06, -0.034096211194992065, 0.027203017845749855, 0.013958053663372993, -0.02928946353495121, -0.0057212174870073795, -0.008279753848910332, 0.007843976840376854, 0.006404594052582979, -0.011726349592208862, 0.022356655448675156, -0.022409476339817047, -0.008339177817106247, 0.0020055624190717936, 0.02680685743689537, -0.02366398461163044, -0.01584641821682453, -0.035363923758268356, -0.0017926261061802506, 0.019028907641768456, 0.003671086858958006, -0.02069278061389923, 0.027942517772316933, 0.0076128835789859295, 0.025856072083115578, -0.004588858690112829, -0.016651945188641548, 0.004717610776424408, -0.0133
Download .txt
gitextract__75q_8i1/

├── .gitignore
├── LICENSE
├── README.md
├── app.py
├── packages.txt
├── requirements.txt
├── transcription.csv
└── word_embeddings.csv
Download .txt
SYMBOL INDEX (3 symbols across 1 files)

FILE: app.py
  function get_text (line 162) | def get_text():
  function get_embedding_text (line 169) | def get_embedding_text(api_key, prompt):
  function generate_response (line 190) | def generate_response(api_key, prompt):
Condensed preview — 8 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,995K chars).
[
  {
    "path": ".gitignore",
    "chars": 1561,
    "preview": "# Editors\n.vscode/\n.idea/\n\n# Youtube GPT resources\n# transcription.csv\n# word_embeddings.csv\nyoutube_video.mp4\n\n# Vagran"
  },
  {
    "path": "LICENSE",
    "chars": 1068,
    "preview": "MIT License\n\nCopyright (c) 2023 Daniel Avila\n\nPermission is hereby granted, free of charge, to any person obtaining a co"
  },
  {
    "path": "README.md",
    "chars": 3819,
    "preview": "<h1 align=\"center\">\nYoutubeGPT 🤖\n</h1>\n\nRead the article to know how it works: <a href=\"https://medium.com/@dan.avila7/y"
  },
  {
    "path": "app.py",
    "chars": 9561,
    "preview": "import pandas as pd\nimport numpy as np\nimport streamlit as st\nimport whisper\nimport pytube\nfrom pytube import YouTube\nfr"
  },
  {
    "path": "packages.txt",
    "chars": 6,
    "preview": "ffmpeg"
  },
  {
    "path": "requirements.txt",
    "chars": 270,
    "preview": "#\n# This file is autogenerated by pip-compile with python 3.10\n# To update, run:\n#\n#    pip-compile\n#\nmatplotlib\nplotly\n"
  },
  {
    "path": "transcription.csv",
    "chars": 7239,
    "preview": ",title,transcription\n0,Can Bing and OpenAI Challenge Google? Microsoft's Satya Nadella Weighs In (Exclusive) | WSJ,\" Thi"
  },
  {
    "path": "word_embeddings.csv",
    "chars": 4969688,
    "preview": ",text,start,end,embedding\n0,Thing with AI is going to completely change what people can expect from search.,0.0,5.76,\"[-"
  }
]

About this extraction

This page contains the full source code of the davila7/youtube-gpt GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 8 files (4.8 MB), approximately 1.2M tokens, and a symbol index with 3 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!