FalkorDB Vector Index
FalkorDB is an open-source graph database with integrated support for vector similarity searchit supports:
- approximate nearest neighbor search
- Euclidean similarity
- Hybrid search combining vector and keyword searches
This notebook shows how to use the FalkorDB vector index (FalkorDB
)
See the installation instruction
# Pip install necessary package
%pip install --quiet git+https://github.com/openai/whisper.git
%pip install --quiet langchain-openai langchain-community
%pip install --quiet falkordb
Note: you may need to restart the kernel to use updated packages.
``````output
[notice] A new release of pip available: 22.3.1 -> 24.2
[notice] To update, run: python.exe -m pip install --upgrade pip
``````output
Note: you may need to restart the kernel to use updated packages.
``````output
[notice] A new release of pip available: 22.3.1 -> 24.2
[notice] To update, run: python.exe -m pip install --upgrade pip
``````output
Note: you may need to restart the kernel to use updated packages.
``````output
[notice] A new release of pip available: 22.3.1 -> 24.2
[notice] To update, run: python.exe -m pip install --upgrade pip
We want to use OpenAIEmbeddings
so we have to get the OpenAI API Key
import getpass
import os
os.environ["OPENAI_API_KEY"] = getpass.getpass("OpenAI API Key:")
from langchain_community.document_loaders import TextLoader
from langchain_community.vectorstores.falkordb_vector import FalkorDBVector
from langchain_core.documents import Document
from langchain_openai import OpenAIEmbeddings
from langchain_text_splitters import CharacterTextSplitter
loader = TextLoader("../../how_to/state_of_the_union.txt", encoding='utf-8')
documents = loader.load()
text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)
docs = text_splitter.split_documents(documents)
embeddings = OpenAIEmbeddings()
You can use FalkorDBVector locally with docker. See installation instruction
host = 'localhost'
port = 6379
Or you can use FalkorDBVector with FalkorDB Cloud
# E.g
# host = "r-6jissuruar.instance-zwb082gpf.hc-v8noonp0c.europe-west1.gcp.f2e0a955bb84.cloud"
# port = 62471
# username = "falkordb" # SET ON FALKORDB CLOUD
# password = "password" # SET ON FALKORDB CLOUD
Similarity Search with Euclidean Distance (Default)
At the moment FalkorDB only supports Euclidean distance. See docs
# The FalkorDBVector Module will connect to FalkorDB and create a vector index if needed.
db = FalkorDBVector.from_documents(
docs, OpenAIEmbeddings(), host=host, port=port,
)
Database name: ZeCf
Metadatas: [{'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}]
Let's check if all the indexes where created properly. process_data
is function that specifically processess the CALL db.indexes()
query result
from langchain_community.vectorstores.falkordb_vector import process_data
result = db.query(
query = """
CALL db.indexes()
"""
)
process_data(result)
[{'entity_label': 'Chunk',
'entity_property': 'embedding',
'entity_type': 'NODE',
'index_type': 'VECTOR',
'index_status': 'OPERATIONAL',
'index_dimension': 1536,
'index_similarityFunction': 'euclidean'}]
You should see something similiar too;
[{'entity_label': 'Chunk', ...'index_similarityFunction': 'euclidean'}]
and if you do. Yay! we successfully created a vectorstore with our docs
variable. But let's still check if our document is represented properly in the vectorestore. That is as nodes.
result2 = db.query(
query="MATCH (n) RETURN n"
)
for node in result2:
print(node[0])
(:Chunk{embedding:[-0.00357032613828778, -0.0104853445664048, -0.0186745300889015, -0.0178781747817993, 0.00581007543951273, 0.0200283341109753, 0.0149316610768437, -0.00952971819788218, -0.00311076268553734, -0.00655665853992105, 0.0153298387303948, 0.00899881403893232, -0.0209175981581211, 0.000946501386351883, 0.00198259274475276, 0.00631443364545703, 0.0182365346699953, -0.0147325722500682, 0.029704051092267, -0.0223377645015717, 0.00977526046335697, -0.0132062248885632, 0.0153563842177391, 0.0124563239514828, -0.000565744063351303, 0.0110494289547205, 0.0369774289429188, -0.0340574607253075, 0.0191788896918297, -0.0244746524840593, -0.012409869581461, -0.0296775065362453, -0.0239702928811312, -0.00475490465760231, -0.0248462837189436, -0.0209441427141428, -0.0133854048326612, -0.0122041441500187, 0.00355373532511294, -0.0184887144714594, 0.00743928551673889, -0.00229781679809093, -0.0111157922074199, 0.00570057658478618, -0.0247401036322117, 0.00558775942772627, -0.019656702876091, -0.0240233838558197, 0.00750564830377698, 0.0384108684957027, 0.0491351187229156, 0.00278060720302165, -0.0016905958764255, -0.0164712816476822, -0.0151572953909636, -0.0108901578933001, -0.0188603475689888, 0.00704110786318779, -0.015887288376689, -0.0304473154246807, -0.0127549571916461, 0.00542517006397247, -0.00377273303456604, -0.0131398616358638, -0.00739946775138378, -0.0193912498652935, -0.0322523899376392, 0.0138698546215892, -0.0104256179183722, 0.00762510159984231, 0.0477547720074654, 0.0292262379080057, 0.00253506423905492, 0.000283908942947164, 0.0272088050842285, -0.00364664336666465, -0.030925128608942, -0.00228620320558548, -0.0103592546656728, -0.025934636592865, 0.000918297155294567, -0.0245277415961027, 0.00518958177417517, -0.0225235819816589, 0.00830863974988461, 0.00738619500771165, 0.00357032613828778, 0.00877318065613508, -0.0328629277646542, -0.0297571420669556, -0.00343760033138096, 0.030633132904768, 0.00340773700736463, 0.0288280602544546, -0.0213423203676939, 0.0036665522493422, -0.0139229446649551, 0.016896003857255, 0.0202274229377508, -0.0297305956482887, 0.0384108684957027, -0.00916472170501947, -0.012177599593997, -0.0125757772475481, -0.0142016690224409, -0.00974871590733528, -0.0123899606987834, -0.0171747282147408, 0.0108702490106225, 0.0139760347083211, -0.0148785710334778, -0.00463545136153698, 0.00774455489590764, -0.0377472378313541, 0.000220864152652211, -0.00936381053179502, -0.0187143478542566, -0.00359023502096534, -0.00788391754031181, 0.001495654694736, 0.00791709870100021, 0.0189532544463873, 0.00549153331667185, -0.00153796107042581, 0.0101933469995856, -0.0334469228982925, -0.0209839604794979, -0.00269101723097265, 0.0110427932813764, -0.0103924358263612, 0.0364730693399906, 0.00598925538361073, 0.0110892467200756, -0.0336592830717564, -0.00432354537770152, 0.0119785107672215, -0.0238110218197107, -0.00599589152261615, -0.00887272506952286, -0.00785073544830084, 0.0119121475145221, -0.00452927034348249, -0.018939983099699, -0.00769810099154711, 0.0187143478542566, 0.0260009989142418, 0.0204928759485483, -0.0173738170415163, 0.00999425817281008, -0.0017088457243517, -0.00142763275653124, 0.00640402361750603, 0.00119868060573936, 0.00238740677013993, 0.0228553954511881, 0.0186745300889015, -0.0150378420948982, 0.0159005597233772, 0.0138167636469007, -4.89167432533577e-05, -0.0159271061420441, -0.00201743328943849, -0.0121576907113194, -0.016391646116972, -0.0201212428510189, 0.0218599513173103, 0.0278193447738886, 0.0239304751157761, -0.00969562493264675, 0.0139096723869443, 0.000595607387367636, 0.0282971579581499, -0.0203999672085047, 0.0281113404780626, -0.0050236745737493, 0.0197894275188446, -0.00972880702465773, 0.000652015849482268, -0.036048348993063, 0.00884617958217859, -0.0257753655314445, 0.0192585252225399, 0.0285626091063023, 0.0213025026023388, -0.00885945186018944, 0.0101668024435639, 0.0447020754218102, 0.00686192791908979, 0.0036665522493422, -0.0145467557013035, 0.00450936146080494, 0.015104204416275, 0.00796355307102203, -0.019948698580265, -0.640057265758514, -0.0390214063227177, 0.00750564830377698, -0.00446622585877776, 0.00741274002939463, 0.00783082656562328, -0.00640734191983938, 0.0156483817845583, -0.00830200407654047, 0.025217916816473, -0.0149183887988329, -0.00608548149466515, -0.0206388738006353, -0.024355199187994, -0.0252577345818281, -0.0147856622934341, 0.00722028780728579, -0.0196832474321127, 0.0117595130577683, -0.00498717464506626, 0.000685612089000642, 0.0370305180549622, -0.0130071360617876, -0.00584325660020113, -0.0111091556027532, -0.027368076145649, -0.012051509693265, -0.0192452520132065, -0.0103327091783285, 0.0308454930782318, -0.0294651445001364, 0.0106645245105028, -0.0176392681896687, -0.0165243726223707, 0.047462772578001, 0.00472835917025805, -0.0170154571533203, 0.0093173561617732, 0.0264522675424814, 0.0125226862728596, -0.0199088808149099, -0.00263460865244269, -0.00982171483337879, 0.0121178729459643, -0.000929081114009023, -0.00438990816473961, -0.0122837796807289, -0.0075122844427824, 0.0268902629613876, 0.00771137326955795, -0.0119917830452323, 0.00569393998011947, 0.00875990744680166, 0.00927090272307396, 0.0120846908539534, 0.00492081185802817, 0.00287849246524274, -0.0101867113262415, 0.0138963991776109, -0.00543180666863918, 0.00670265685766935, 0.0116666043177247, -0.00439654476940632, 0.0126155950129032, -0.0269831717014313, -0.00694819958880544, -0.00382250524125993, 0.0123103251680732, 0.0141618512570858, -0.0144273033365607, 0.00625802529975772, 0.0135645847767591, 0.000206762037123553, -0.0315887592732906, 0.0184356234967709, 0.0175198148936033, 0.0131796794012189, -0.0136574925854802, 0.00519621791318059, 0.00958280824124813, 0.00594611931592226, -0.00907844956964254, -0.00283203832805157, 0.0126089584082365, 0.0106379790231586, -0.00586316548287868, -0.0423130095005035, 0.0113613354042172, 0.0193912498652935, 0.00914481282234192, 0.0153962019830942, 0.0195505209267139, 0.00245376955717802, -0.0341370962560177, -0.00127997517120093, 0.0215281378477812, -0.00225799903273582, -0.00153630203567445, 0.0382250510156155, 0.00371300638653338, 0.00727337785065174, -0.0201345160603523, 0.00846127513796091, -0.00112899951636791, -0.00201079715043306, 0.0192054342478514, -0.0280051603913307, 0.0149051155894995, 0.0372694246470928, -0.0105716157704592, 0.00551476003602147, -0.0104189813137054, 0.0015163931529969, 0.0139096723869443, 0.00968235265463591, -0.0315356701612473, -0.00211200048215687, 0.0514976419508457, 0.00137951958458871, -0.0197097919881344, 0.00952971819788218, 0.0138565814122558, 0.000805480172857642, -0.000615101482253522, 0.0170950926840305, 0.0108569767326117, 0.000732480955775827, -0.00685529178008437, -0.0238110218197107, 0.0224174000322819, 0.0257355477660894, 0.0118789663538337, 0.0348538160324097, -0.0117993308231235, -0.0038457321934402, 0.0212494134902954, -0.00406141206622124, -0.00574371218681335, 0.0190594363957644, 0.00457240641117096, -0.0192319788038731, 0.0135314036160707, -0.0173339992761612, 0.0158474706113338, -0.0237313862890005, -0.0228421241044998, -0.0196036119014025, -0.00970889814198017, -0.029093511402607, 0.000787230383139104, 0.0209839604794979, -0.0093173561617732, 0.00376277859322727, 0.00331482873298228, 0.00264124502427876, -0.00722028780728579, -0.0029066966380924, 0.014294576831162, 0.00455581583082676, -0.00781755428761244, 0.00439986260607839, 0.0244082883000374, -0.0197363384068012, 0.0252046436071396, 0.010976430028677, 0.00452595250681043, -0.00348073616623878, 0.00446954369544983, 0.0183161702007055, -0.0187807120382786, 0.00655002193525434, -0.00547494227066636, 0.00996771361678839, -0.00125343003310263, 0.034322913736105, -0.00385236856527627, -0.0145865734666586, 0.00825554970651865, 0.00230113486759365, 0.0100871669128537, 0.0224837642163038, -0.0187807120382786, -0.0310313105583191, -0.00155538134276867, 0.0135513124987483, 0.0216874089092016, -0.00792373530566692, -0.00550480559468269, 0.0224439464509487, 0.0165110994130373, -0.0104521624743938, 0.00303610437549651, 0.0265584476292133, 0.000177624548086897, -0.000742850126698613, 0.00367318862117827, -0.00371964275836945, 0.000299877516226843, 0.00197595660574734, 0.00457240641117096, 0.0147192999720573, -0.00318210292607546, 0.042578462511301, -0.0209441427141428, -0.000573209894355386, -0.0125625040382147, 0.00797018874436617, -0.0157014708966017, 0.0221784934401512, 0.0303411353379488, -0.00422068312764168, -0.0405344814062119, -0.0165243726223707, -0.0182763524353504, -0.0190594363957644, 0.0244481060653925, 0.00139942846726626, 0.00577689381316304, -0.0285626091063023, 0.021090142428875, 0.00801000650972128, -0.00304439989849925, -0.00317546655423939, -0.0185152590274811, -0.0193647053092718, 0.0120448730885983, -0.00333805591799319, 0.00694156344980001, 0.0162721928209066, -0.0122705074027181, -0.0112219732254744, 0.0295978710055351, 0.0150511143729091, 0.028482973575592, -0.00132228154689074, -0.0050402651540935, 0.00755210220813751, -0.00686192791908979, 0.0159005597233772, -0.0106379790231586, 0.000873502169270068, 0.00932399276643991, -0.00828209519386292, 0.000958944438025355, 0.00699465395882726, -0.00658652186393738, 0.0379596017301083, -0.000680220138747245, -0.00500376569107175, -0.0115869687870145, 0.00451931590214372, 0.00560435000807047, -0.00398177653551102, 0.00445958925411105, -0.0056342133320868, -0.0289873313158751, -0.0148785710334778, 0.014148578979075, 0.033075287938118, 0.0448613464832306, 0.00339778256602585, 0.00483454018831253, 0.0224174000322819, 0.0157014708966017, 0.00340773700736463, -0.00207881908863783, -0.00251515535637736, -0.00499049294739962, 0.00193447968922555, -0.0170420035719872, -0.0159536506980658, 0.00606225430965424, 0.029199693351984, 0.0227624885737896, 0.00770473713055253, 0.0136044025421143, -0.0237977504730225, 0.00703447172418237, -0.00349732697941363, 0.00147906399797648, -0.00517630903050303, -0.0391541346907616, 0.00052717060316354, 0.0161660127341747, -0.00927753839641809, -0.0170287303626537, -0.0263062696903944, -0.00463213305920362, -0.0311640352010727, 0.0237712040543556, -0.0176259968429804, 0.00629452476277947, -0.0228686686605215, 0.00645711412653327, -0.00423395540565252, -0.00528912618756294, 0.0371367000043392, -0.0105450712144375, 0.0165641903877258, -0.00567734939977527, 0.00646043196320534, -0.0203203316777945, -0.000587311980780214, -0.0207583270967007, 0.0155554730445147, -0.00119038519915193, 0.00475158635526896, -0.0112352455034852, 0.0157280173152685, 0.00404150318354368, -0.00496394792571664, -0.00501703796908259, -0.0378534197807312, -0.00436336314305663, 0.00994780473411083, 0.00112319272011518, -0.0360748916864395, 0.00829536747187376, 0.0287749711424112, -0.0238242950290442, -0.0123036885634065, -0.0243419259786606, -0.0232270285487175, -0.0137769458815455, 0.146104648709297, 0.0211697779595852, -0.00327335204929113, 0.00115388561971486, 0.00432354537770152, 0.0130934081971645, -0.0155156552791595, -0.0287218801677227, -0.00211863685399294, -0.00584989320486784, -0.00536544341593981, 0.00770473713055253, -0.0175330881029367, 0.0194177962839603, -0.0082688219845295, 0.0107906134799123, 0.0236650239676237, -0.00576693937182426, -0.0175596326589584, 0.00136209931224585, 0.000100788711279165, 0.00469849584624171, 0.0189930722117424, 0.0109897023066878, -0.00327832926996052, 0.0153298387303948, 0.000720452633686364, 0.0174401793628931, 0.00588307436555624, -0.0181436277925968, -0.0348272696137428, 0.0167632792145014, -0.000300292304018512, 0.00806973315775394, -0.017864903435111, -0.0278193447738886, 0.00631775194779038, 0.0127947749570012, 0.0183958057314157, -0.0117727853357792, 0.0107242511585355, 0.00712737953290343, 0.00129905447829515, -0.00853427406400442, 0.00759191997349262, -0.00295315077528358, -0.000417256989749148, -0.00130486127454787, 0.011640059761703, -0.0308720394968987, 0.0364199802279472, -0.00191125262062997, -0.00434345426037908, -0.00670929299667478, -0.0154758375138044, 0.00742601277306676, -0.00850772857666016, -0.01268195733428, -0.0372959710657597, 0.00542848836630583, -0.0082688219845295, -0.0265186298638582, -0.0188205298036337, -0.0163120105862617, -0.0155554730445147, -0.0125558683648705, -0.0200946982949972, 0.0118856020271778, 0.000988807762041688, -0.017758721485734, 0.00788391754031181, -0.0375614240765572, -0.0134517680853605, 0.00955626275390387, 0.0216874089092016, 0.020373422652483, -0.000114372378448024, -0.0303411353379488, 0.000433018169132993, -0.0218732245266438, 0.00991462264209986, -0.0252710077911615, -0.00825554970651865, -0.0186479855328798, -0.0273946207016706, -0.00704110786318779, 0.00875990744680166, 0.0223908554762602, -0.0032517840154469, 0.00559107773005962, -0.00274742557667196, 0.0181303545832634, 0.0136044025421143, -0.00738619500771165, -0.00613857200369239, 0.0212626848369837, -0.0294916890561581, 0.0145733011886477, -0.0263991765677929, 0.00293987826444209, 0.0179843567311764, -0.0438791736960411, -0.00613857200369239, -0.0051464457064867, -0.000344050349667668, -0.0170154571533203, 0.0123103251680732, 0.0214219558984041, -0.0115073332563043, -0.00680220127105713, 0.0232137553393841, -0.0374817885458469, -0.0193514320999384, 0.000799258647020906, 0.000540857960004359, -0.0147591177374125, 0.0183825343847275, 0.0220457687973976, -0.0137504013255239, -0.02051942050457, -0.00062049349071458, -0.0196434296667576, 0.0188603475689888, 0.00991462264209986, -0.00789718981832266, 0.0208512358367443, -0.0022314537782222, -0.0151572953909636, -0.00909172277897596, -0.00655997637659311, 0.00849445629864931, 0.0145202111452818, 0.0144405756145716, -0.00659647630527616, -0.00299960491247475, 0.0103393457829952, -0.00563753163442016, 0.0321992971003056, -0.00230777123942971, -0.00951644498854876, -0.0223510377109051, -0.023280119523406, -0.0133190415799618, -0.0341370962560177, -0.0219661332666874, -0.0407733879983425, 0.0193248875439167, 0.00678561069071293, -0.00760519271716475, 0.0185948945581913, 0.00812282413244247, -0.0183825343847275, -0.0205725114792585, 0.00334801035933197, -0.000759026093874127, -0.00924435723572969, -0.000696396105922759, 0.00274244835600257, 0.00814273301512003, 0.00611866312101483, 0.0358625315129757, 0.0103924358263612, -0.00444299867376685, 0.0152900209650397, 0.0145334834232926, 0.00204397854395211, 0.0103990724310279, 0.011998419649899, -0.00141933734994382, 0.0210503246635199, 0.00783746317028999, 0.0232270285487175, -0.0134252225980163, -0.0019593657925725, -0.0115736965090036, -0.0102198924869299, -0.0148918433114886, -0.00540194334462285, -0.0318011194467545, -0.00434013642370701, 0.0101800747215748, -0.00644052308052778, -0.0124165061861277, 0.0196832474321127, -0.0155156552791595, -0.032066572457552, 0.0295447800308466, -0.0107906134799123, 0.00869354512542486, -0.006788928527385, 0.0184223521500826, 0.0109167033806443, 0.0161261949688196, 0.0301818642765284, 0.0098615325987339, -0.0311905816197395, 0.0192054342478514, -0.0135446758940816, 0.0114011531695724, 0.019444340839982, 0.0100672580301762, 0.0196036119014025, 0.00355705362744629, 0.007479103282094, 0.0119055109098554, 0.0453657060861588, -0.00248031481169164, 0.00360350753180683, 0.0183958057314157, -0.0400035791099072, 0.00753219332545996, -0.00746583053842187, 0.0147060267627239, -0.0209839604794979, -0.0094965361058712, -0.00661306688562036, 0.00348073616623878, 0.010491980239749, -0.00852100178599358, -0.0252444613724947, -0.00290835578925908, -0.00723356055095792, 0.0174667257815599, 0.0059029832482338, 0.0131199527531862, 0.010923339985311, -0.0160598307847977, -0.0285626091063023, 0.0130469538271427, 0.00356700806878507, -0.00299960491247475, 0.00893245171755552, 0.0123368706554174, -0.0386232286691666, 0.00331980595365167, -0.00941026490181684, 0.0271158963441849, 0.0123634152114391, -0.019298342987895, 0.028695335611701, 0.00667942967265844, 0.0041211387142539, -0.00498385680839419, -0.0305269509553909, -0.00377605110406876, 0.0145467557013035, -0.0260540898889303, -0.00837500300258398, -0.0144803933799267, -0.026797354221344, -0.0453126132488251, 0.00451267976313829, 0.00344423647038639, 0.00467858696356416, 0.000478642701637, -0.0271158963441849, 0.0349865406751633, -0.00382582331076264, -0.00572712160646915, 0.0063011609017849, -0.0312171261757612, 0.0342698208987713, -0.0102198924869299, 0.00331980595365167, -0.00895236060023308, 0.0096425348892808, -0.0114874243736267, -0.00840818416327238, -0.0246073771268129, 0.0222846753895283, -0.0447020754218102, 0.0155156552791595, 0.0084546385332942, 0.021952860057354, 0.0183958057314157, 0.00438659032806754, -0.022563399747014, -0.00457240641117096, -0.0195239763706923, 0.000398177624447271, 0.0176525413990021, -0.0193647053092718, -0.0100008947774768, -0.0115604242309928, 0.00409127539023757, -0.017971083521843, -0.0246073771268129, -0.0105782523751259, 0.0244613792747259, -0.00240067928098142, -0.00542848836630583, -0.0152502031996846, 0.00273913028649986, 0.0148652978241444, 0.0193116143345833, -0.00556121440604329, -0.00792373530566692, 0.0288811512291431, -0.033075287938118, 0.011427697725594, -0.0112949721515179, 0.0232004839926958, -0.0461355149745941, -0.00425718259066343, -0.00608216319233179, -0.00739946775138378, 0.00972217041999102, 0.0149183887988329, -0.0180772636085749, -0.02292175963521, 0.00977526046335697, 0.00415763817727566, 0.0164580084383488, -0.0098615325987339, 0.0104587990790606, -0.00143509858753532, 0.0114476066082716, -0.0136442203074694, -0.0277662537992001, 0.0530903525650501, 0.00988144148141146, 0.0049274479970336, -0.0133190415799618, -0.0136574925854802, 0.00849445629864931, 0.0183028988540173, 0.0210370514541864, 0.0208246894180775, -0.0204265117645264, 0.000741605821531266, 0.000336377153871581, -0.00308587658219039, -0.000464125798316672, -0.0074061038903892, 0.00165160768665373, -0.00455581583082676, -0.00318542099557817, 0.000323311949614435, 0.0144007578492165, -0.021448502317071, 0.0180507190525532, 0.0144803933799267, 0.0158474706113338, 0.00388554995879531, -0.00895899627357721, -0.0103260735049844, -0.0170818213373423, 0.0105848889797926, -0.0236650239676237, -0.0267044473439455, 0.00625138869509101, 0.0401097610592842, 0.00432354537770152, -0.00295480992645025, -0.00696147233247757, 0.0109963389113545, -0.026651356369257, 0.00341437314637005, -0.0270760785788298, 0.0194576140493155, 0.0268504451960325, 0.0171747282147408, -0.00274908472783864, 0.0260142721235752, -0.00851436518132687, 0.00976862479001284, -0.00298467325046659, -0.00832191295921803, 0.0211432315409184, -0.0312702171504498, 0.0166570972651243, 0.0333672873675823, -0.0117595130577683, -0.00129739544354379, 0.0369774289429188, -0.00145583692938089, -0.00846127513796091, 0.0277397092431784, -0.0144803933799267, -0.0209839604794979, -0.00917799398303032, -0.00860727299004793, 0.00347741809673607, 0.00449608918279409, 0.0113679710775614, -0.0178118124604225, -0.00619166204705834, 0.0104787079617381, -0.00319703458808362, -0.00694819958880544, -0.00247036037035286, 0.00639406917616725, -0.00818918645381927, 0.00839491188526154, -0.00220822682604194, -0.0251780990511179, 0.00405477546155453, -0.0248993746936321, 0.0219130422919989, 0.0110958833247423, 0.0107640689238906, 0.030925128608942, 0.00177852681372315, -0.00550812389701605, -0.0157545618712902, 0.000892581534571946, 0.00779764540493488, -0.00251515535637736, 7.70432234276086e-05, 2.71381645688962e-06, 0.018939983099699, -0.000544590875506401, 0.00766491936519742, -0.0126023218035698, -0.0108105223625898, -0.0113945165649056, -0.00568066770210862, -0.0117727853357792, 0.0229350309818983, 0.0153298387303948, -0.0116267865523696, 0.00997434929013252, -0.0445162579417229, -0.01872762106359, -0.0153032932430506, -0.0180374458432198, -0.00125591864343733, -0.026438994333148, -0.0284298826009035, 0.0174401793628931, -0.0127549571916461, 0.00846791081130505, -0.0110361566767097, 0.0187674388289452, -0.00581007543951273, 0.00837500300258398, 0.245065063238144, -0.0153298387303948, 0.0179578103125095, 0.0204132404178381, -0.0184887144714594, 0.0269035361707211, 0.0067557473666966, 0.0143874855712056, -0.00326671567745507, 0.00544176110997796, -0.0145334834232926, -0.0075122844427824, -0.0029066966380924, -0.00274078943766654, -0.00137537193950266, 0.00209209159947932, -0.0297571420669556, -0.0240233838558197, -0.0212095957249403, -0.00443636253476143, -0.00429368205368519, -0.0160465594381094, 0.0256426390260458, -0.000485278986161575, 0.00207052379846573, 0.0164845548570156, 0.000557448656763881, 0.01178605761379, 0.00647702300921082, -0.0119453286752105, -0.0269566252827644, -0.014745844528079, 0.0178914479911327, 0.0031538987532258, 0.00692829070612788, -0.0103924358263612, 0.0222050398588181, 0.000944012776017189, 0.0253373701125383, 0.00699465395882726, 0.00807636976242065, 0.00907181389629841, -0.0172676369547844, -0.0207450538873672, 0.00420409208163619, 0.0398443080484867, -0.00355373532511294, -0.0179312657564878, 0.0166172794997692, 0.0184621699154377, -0.0255099143832922, -0.0143211223185062, -0.00349069060757756, 0.0328098386526108, 0.00898554176092148, -0.0080896420404315, 0.0232535731047392, 0.029093511402607, 0.00763837434351444, -0.0100340759381652, -0.00714728841558099, 0.00977526046335697, -0.0149316610768437, 0.0174534525722265, -0.0186479855328798, 0.0554263256490231, 0.00948990043252707, 0.0188603475689888, -0.0078772809356451, -0.0198292452841997, 0.00118623755406588, -0.00265451753512025, -0.0319603905081749, -0.0135446758940816, -0.0320134833455086, -0.0219926778227091, 0.0280317049473524, 0.013790219090879, 0.0307658575475216, -0.00667611183598638, -0.0236119329929352, -0.00369641557335854, 0.0134584037587047, 0.00854754634201527, -0.00292992382310331, 0.00357696251012385, 0.0315622128546238, -0.00695483619347215, -0.0234659351408482, 0.0116466954350471, 0.00468190526589751, -0.0147591177374125, 0.00753882993012667, 0.0196301564574242, 0.0319869369268417, 0.014599846675992, 0.00817591417580843, -0.00468854140490294, 0.0148520255461335, -0.0122705074027181, -0.0015429382910952, 0.0161527395248413, 0.0431359112262726, -0.00112816994078457, -0.0177056323736906, -0.0110162477940321, -0.00860727299004793, 0.0102331647649407, 0.0188072565943003, -0.0318276658654213, -0.0109897023066878, -0.0117528764531016, 0.0054152156226337, -0.0117727853357792, 0.012144417501986, -0.0101999836042523, -0.0126288672909141, -0.000978023861534894, 0.0323851145803928, 0.00379595998674631, -0.00580343883484602, -0.047462772578001, -0.0211034137755632, 0.00177852681372315, -0.00512321898713708, -0.0152634754776955, -0.0333938300609589, 0.00893245171755552, -0.00275074387900531, -0.0365792512893677, 0.0303145907819271, -0.00273249391466379, 0.023173937574029, -0.00177852681372315, -0.0058133932761848, -0.00713401613757014, 0.0402424857020378, 0.00190295721404254, -0.00932399276643991, -0.00147989357355982, -0.0106379790231586, -0.0196168851107359, 0.02051942050457, 0.00801664311438799, 0.00651352247223258, -0.00616511702537537, 0.031641848385334, -0.0191523432731628, -0.0123435063287616, 0.0101800747215748, -0.02471355907619, 0.0101933469995856, -0.00497058406472206, -0.0114542432129383, 0.0106446156278253, -0.0131000438705087, -0.0242755636572838, 0.0014508597087115, -0.022669579833746, 0.0293058734387159, -0.00487767579033971, -0.00331980595365167, 0.025430278852582, -0.0357828959822655, -0.0156881995499134, -0.00626134313642979, -0.168190225958824, 0.0225235819816589, -0.00353050837293267, -0.0198425184935331, 0.0145467557013035, 0.000609709473792464, 0.0194974318146706, -0.00488431239500642, -0.0106114335358143, 0.0191257987171412, 0.0286687891930342, 0.0159403774887323, -0.0116267865523696, -0.010312800295651, -0.00605229986831546, 0.00228786235675216, -0.029704051092267, 0.00336460093967617, 0.016896003857255, 0.013790219090879, 0.0321462079882622, -0.0166969150304794, 0.00359355309046805, -0.015104204416275, 0.00408463878557086, -0.00654006749391556, -0.0145733011886477, 0.00599589152261615, -0.0227890331298113, -0.0133389504626393, -0.00982171483337879, -0.0113215176388621, 0.0227624885737896, 0.0162191018462181, 0.00203070603311062, 0.0170154571533203, 0.00537871615961194, -0.014241486787796, -0.0359156206250191, 0.0487634874880314, 0.0296775065362453, 0.017758721485734, 0.0242888350039721, -0.0198425184935331, -0.00677565624937415, -0.00476485909894109, -0.0201477874070406, 0.00702783511951566, 0.0080232797190547, 0.00475822249427438, 0.00690838182345033, -0.0136309480294585, 0.00515971845015883, 0.00077976455213502, 0.040932659059763, 0.0332080163061619, -0.010080530308187, -0.00450936146080494, 0.0202539693564177, -0.0117993308231235, 0.00521612679585814, -0.00950317271053791, 0.0177454501390457, -0.0114476066082716, 0.00832854863256216, 0.00678561069071293, -0.00639406917616725, 0.0297836866229773, -0.0196434296667576, 0.0132460426539183, -0.0102928914129734, -0.00151141593232751, -0.00486108520999551, -0.0390479527413845, 0.0164712816476822, 0.0162987373769283, -0.0214883200824261, 0.00745255779474974, -0.00437663588672876, -0.00877318065613508, -0.0276069827377796, 0.00140606472268701, -0.00324846594594419, -0.0140556702390313, -0.00487435795366764, 0.0137769458815455, -0.00243220175616443, 0.0220855865627527, -0.00732646835967898, -0.0151174776256084, -0.00233929348178208, -0.0265451762825251, -0.0121975084766746, -0.0206521470099688, -0.00307426322251558, 0.0228952132165432, 0.0244879238307476, 0.0143874855712056, 0.0164049193263054, -0.0114409709349275, -0.00546830613166094, 0.0023741340264678, -0.00931072048842907, 0.014148578979075, -0.011872329749167, 0.0082688219845295, 0.00634097866714001, 0.0226297620683908, 0.00938371941447258, -0.00422068312764168, -0.0263062696903944, 0.0238110218197107, 0.0134783126413822, 0.0245941057801247, 0.0202008783817291, 0.0113679710775614, 0.0109498845413327, 0.0144273033365607, 0.0173738170415163, -0.00838827528059483, 0.0586117468774319, 0.00971553381532431, -0.0228686686605215, -0.0164712816476822, -0.0119586018845439, -0.0177321769297123, -0.124549962580204, -0.0484980344772339, -0.00269433530047536, 0.00718047004193068, 0.0129407728090882, 0.0483387634158134, -0.0065035680308938, 0.00802991539239883, -0.000213813094887882, 0.0213688667863607, 0.00775782763957977, -0.00657324912026525, 0.00224970350973308, -0.00264622224494815, 0.0299960486590862, 0.00181668542791158, -0.0237446594983339, -0.0202805139124393, -0.037349060177803, -0.0130270449444652, -0.00985489599406719, -0.0177719946950674, 0.000215264779399149, -0.00663297576829791, 0.0118988752365112, -0.00348737253807485, -0.0326505675911903, 0.0379596017301083, 0.00935053825378418, -0.000866036338265985, -0.0342963673174381, 0.00429368205368519, 0.00755873881280422, -0.00772464601323009, -0.00257654115557671, 0.0136574925854802, -0.0530107170343399, -0.00637084199115634, 0.00898554176092148, -0.0318011194467545, 0.0130934081971645, -0.0145600289106369, -0.00200084270909429, -0.0392603129148483, -0.00552139664068818, 0.00801664311438799, -0.0214883200824261, 0.000406473001930863, 0.0311109460890293, -0.00988144148141146, -0.00716056115925312, 0.00110245426185429, -0.0100473491474986, -0.00895236060023308, -0.00923108495771885, 0.00964917149394751, 0.00215679546818137, 0.00891254283487797, -0.0224837642163038, -0.0263859052211046, 0.0115006975829601, -0.0182896256446838, -0.0152767486870289, 0.0156483817845583, -0.00980844255536795, 0.0128146838396788, -0.0198956094682217, -0.0023741340264678, 0.0208114180713892, -0.0106844333931804, 0.0010734205134213, 0.00206886464729905, -0.0113082444295287, 0.0276069827377796, -0.0234659351408482, -0.00279885693453252, -0.0357563495635986, -0.0184488967061043, 0.0382515974342823, -0.0059029832482338, -0.0167101882398129, -0.0076914643868804, 0.0014873594045639, 0.000755293178372085, 0.0303676798939705, 0.0285095181316137, 0.00163916463498026, 0.0140423979610205, -0.014652936719358, 0.000322067644447088, 0.000564914487767965, 0.0148254800587893, -0.00100871664471924, -0.00559771386906505, -0.00212361407466233, 0.0290404222905636, -0.00413441099226475, -0.013073499314487, -0.00130071362946182, 0.03134985268116, -0.0198159739375114, -0.00568398553878069, -0.0696545392274857, 0.0292793288826942, -0.0139627624303102, -0.000486523291328922, -0.0145865734666586, -0.0146131189540029, 0.00365327973850071, -0.0191390719264746, -0.00682211015373468, 0.00720037892460823, -0.0197230651974678, 0.0129805905744433, 0.00536876171827316, -0.00899881403893232, -0.0298102311789989, 0.00150146149098873, 0.0290404222905636, -0.00394527660682797, 0.00994116812944412, 0.0241030193865299, -0.00227458961308002, 0.00764501048251987, 0.00963589828461409, 0.0282175224274397, -0.00980844255536795, 0.00493408460170031, -0.0142016690224409, 0.0272353496402502, -0.0218201335519552, -0.0193116143345833, 0.0110295200720429, -0.0225766710937023, -0.0103260735049844, 0.0187408942729235, 0.00634097866714001, -0.00473831361159682, -0.0153563842177391, 0.021448502317071, -0.0108503401279449, 0.0176790859550238, -0.027368076145649, -0.0450737066566944, -0.0117595130577683, -0.0143742123618722, -0.00681547401472926, 0.00926426611840725, -0.00251349620521069, 0.00902535952627659, -0.00488431239500642, -0.000411450222600251, -0.025217916816473, 0.0179843567311764, -0.0252710077911615, -0.0157811064273119, 0.00659979414194822, -0.0123899606987834, 0.0160731039941311, -0.00303610437549651, 0.00555125996470451, -0.0258815456181765, 0.0171216391026974, 0.00553798722103238, 0.0205990560352802, 0.0137238558381796, 0.0151440221816301, -0.0117661487311125, -0.0111755188554525, -0.00460890587419271, -0.00209209159947932, -0.0190063454210758, -0.00822236854583025, -0.0166438259184361, -0.00679556513205171, 0.00962262600660324, 0.0156881995499134, -0.00929744727909565, -0.0185550767928362, 0.0231473930180073, -0.00494072074070573, 0.0230013951659203, 0.00593616487458348, -0.00489094853401184, -0.0385435931384563, 0.0283237025141716, -0.00458567915484309, 0.0227890331298113, 0.00217172713018954, 0.00577025767415762, -0.0105716157704592, 0.0218201335519552, -0.00717383390292525, 0.00761846546083689, -0.000544590875506401, 0.0196832474321127, 0.00940362829715014, 0.000322689797030762, 0.00788391754031181, -0.00209209159947932, 0.0303411353379488, -0.000610124261584133, 0.0165243726223707, -0.016896003857255, -0.00586648378521204, -0.0334469228982925, -0.00527585344389081, 0.0063973874785006, -0.0302880443632603, -0.0101468935608864, -0.0201079696416855, 0.0215679556131363, 0.0162854660302401, 0.0396319478750229, 0.025005554780364, 0.0280582513660192, -0.00958944484591484, 0.00816927757114172, 0.02051942050457, -0.00576030323281884, -0.0201743338257074, 0.0515772774815559, -0.00334469205699861, -0.00228288513608277, 0.00722028780728579, -0.0104853445664048, 0.0125956861302257, -0.00505021959543228, -0.00282872025854886, 0.00767155550420284, 0.00599257322028279, 0.0116865132004023, 0.00303942267782986, -0.00826218631118536, -0.0382515974342823, -0.0113945165649056, -0.00291996938176453, -0.0114077888429165, -0.0140689434483647, 0.0199354272335768, -0.00143426901195198, 0.0291731469333172, 0.00575366662815213, -0.00470513245090842, 0.0211299601942301, 0.000560352054890245, 0.0139494901522994, 0.0128213195130229, -0.00815600529313087, -0.0126089584082365, -0.0256957300007343, 0.0178250856697559, -0.0128545016050339, -0.0100208036601543, -0.0172012746334076, -0.00514976400882006, 0.0100274402648211, 0.0102464379742742, -0.0112684266641736, -0.0361545272171497, 0.0182099901139736, 0.00881299842149019, 0.00676901964470744, 0.028482973575592, -0.00498385680839419, -0.00950317271053791, -0.0291200578212738, 0.0320931188762188, -0.0228288508951664, 0.0022314537782222, -0.0232933908700943, 0.0112949721515179, 0.0260009989142418, -0.0349599942564964, -0.00490753911435604, 0.00641729636117816, -0.00714728841558099, 0.00745255779474974, -0.00660643074661493, 0.0058863926678896, 0.0020489557646215, -0.0159403774887323, 0.0117794219404459, -0.0264124497771263, -0.0338185541331768, 0.0170552749186754, 0.0325709320604801, -0.0257090032100677, 0.0215546824038029, -0.0141751235350966],id:"c5e8565f98251fc4fe19cc0a4f5e93da",source:"state_of_union.txt",text:"Madam Speaker, Madam Vice President, our First Lady and Second Gentleman. Members of Congress and the Cabinet. Justices of the Supreme Court. My fellow Americans.
Last year COVID-19 kept us apart. This year we are finally together again.
Tonight, we meet as Democrats Republicans and Independents. But most importantly as Americans.
With a duty to one another to the American people to the Constitution.
And with an unwavering resolve that freedom will always triumph over tyranny.
Six days ago, Russia’s Vladimir Putin sought to shake the foundations of the free world thinking he could make it bend to his menacing ways. But he badly miscalculated.
He thought he could roll into Ukraine and the world would roll over. Instead he met a wall of strength he never imagined.
He met the Ukrainian people.
From President Zelenskyy to every Ukrainian, their fearlessness, their courage, their determination, inspires the world."})
(:Chunk{embedding:[-0.00518261501565576, -0.023559745401144, 0.00281110592186451, -0.0140670975670218, 0.0102396309375763, 0.00572797935456038, 0.00323087116703391, -0.00229218346066773, -0.0158387068659067, -0.00595604116097093, 0.0175442099571228, 0.00165179325267673, 0.00291191576980054, -0.0022078996989876, -0.00736407283693552, -0.00500082690268755, 0.0172401275485754, -0.00866633746773005, 0.0230573490262032, -0.0227400455623865, -0.0056750955991447, -0.011416295543313, 0.0198314357548952, 0.0159973576664925, -0.0124541409313679, 0.00408197054639459, 0.0344273708760738, -0.0211006458848715, 0.0282664056867361, -0.0361725389957428, -0.02690464630723, -0.0314394347369671, -0.0132143460214138, -0.0165394172072411, -0.0214179493486881, -0.0189852938055992, 0.00505040539428592, -0.0228590331971645, 0.018125930801034, -0.0123880365863442, 0.0166055206209421, -0.0103453984484076, 0.0102131888270378, -0.0169492661952972, -0.0327879711985588, 0.00663692038506269, -0.0170418135821819, -0.00627995422109962, 0.00319286109879613, 0.05018674954772, 0.0254106782376766, 0.0151115534827113, -0.007390514947474, -0.0423335023224354, -0.0152702052146196, -0.0203338321298361, -0.0190117359161377, 0.00508345803245902, -0.00368203641846776, -0.031545203179121, -0.0360667705535889, 0.0112576447427273, -0.024128245189786, -0.00313171418383718, -0.00727152591571212, -0.0149132385849953, -0.0288745686411858, 0.0151115534827113, 0.00460419803857803, 0.00778053281828761, 0.0464319996535778, 0.024802515283227, 0.0170153714716434, -0.00696083344519138, 0.0400859415531158, 0.00836225505918264, -0.00643860595300794, -0.00441579939797521, -0.00518922554329038, -0.022541731595993, 0.00278301141224802, -0.0342422761023045, -0.0108874579891562, 0.00791935343295336, 0.00980333890765905, 0.00300611509010196, -0.00739712500944734, 0.0193819217383862, -0.0327615290880203, -0.0176631975919008, -0.0144108422100544, 0.0129300951957703, -0.00321930297650397, 0.0170285925269127, 0.0105833755806088, 0.00355643732473254, -0.0165129750967026, 0.0262171570211649, 0.00776731176301837, -0.0336605571210384, 0.0225946139544249, -0.000774665444623679, -0.0274995900690556, -0.0112708657979965, -0.0260981675237417, -0.00869277864694595, -0.0351148620247841, 0.00171872437931597, 0.0168699398636818, 0.000119608339446131, -0.0190381780266762, 0.0067261615768075, 0.012150059454143, -0.0426772460341454, 0.0114427376538515, 0.000212361614103429, -0.0125136356800795, -0.00707982247695327, 0.0040555284358561, -0.0130028109997511, 0.0226474981755018, 0.0195670165121555, 0.0235200822353363, 0.0110725509002805, 0.0252916906028986, -0.00196992256678641, 0.0144901685416698, -0.00786646921187639, -0.00385390873998404, -0.00482564931735396, 0.0234804190695286, 0.0159841366112232, -0.00101718737278134, -0.0232688840478659, -0.0118724191561341, 0.016883160918951, -0.0200297497212887, 0.0220261141657829, -0.0218278001993895, 0.00111882342025638, 0.024974387139082, -0.00854734797030687, -0.0276053566485643, -0.010761858895421, -0.00409519113600254, 0.0244323275983334, 0.00345066958107054, 0.00384068791754544, -0.00897041894495487, 0.00551644433289766, 0.00661708880215883, 0.00777392229065299, 0.0111783184111118, -0.0210345424711704, 0.0103586195036769, 0.00962485652416945, -0.0157593805342913, 0.023850604891777, -0.0136043643578887, 0.00910262856632471, -0.00152784679085016, 0.004772765096277, -0.00457445112988353, -0.017107916995883, -0.00391670828685164, 0.0282399635761976, 0.0204924829304218, 0.0127582233399153, 0.00479590194299817, 0.00773425959050655, -0.00240951939485967, 0.0282135214656591, -0.0048653120175004, 0.0260188430547714, -0.0158254858106375, 0.0215898212045431, 0.00550652854144573, -0.0045645353384316, -0.026957530528307, -0.00258800224401057, -0.0168038364499807, 0.00686828698962927, 0.0268782041966915, 0.0252916906028986, -0.00554619124159217, 0.0126722864806652, 0.0428358986973763, 0.011522063985467, -0.00394645566120744, -0.0062469020485878, 0.0227400455623865, 0.0143447378650308, -0.00531812990084291, -0.012804496102035, -0.648567259311676, -0.0210213214159012, 0.0364633984863758, 0.0211535301059484, -0.02690464630723, 0.00795240513980389, 0.00766154425218701, -0.0139481090009212, -0.0304610840976238, 0.00545033952221274, -0.0281606372445822, -0.00689472863450646, -0.0231366734951735, -0.0164600908756256, -0.0299851298332214, -0.0179937221109867, -0.0109205096960068, -0.0217352528125048, 0.0101735256612301, 0.00100727158132941, 0.0155742866918445, 0.00990910734981298, -0.00811105687171221, -0.00210047955624759, 0.0210345424711704, 0.0126061821356416, -0.00891753565520048, -0.023110231384635, -0.00958519335836172, 0.0117666516453028, -0.00912246014922857, -0.00269542261958122, -0.0223830789327621, -0.00312510365620255, 0.0510064512491226, 0.0161295663565397, -0.0204528197646141, 0.0103255668655038, 0.0218939036130905, 0.00388035085052252, 0.00166501419153064, -0.0165129750967026, 0.0163014400750399, -0.0117600411176682, -0.00498099531978369, 0.00992232747375965, -0.000411295710364357, -0.0181920360773802, 0.022541731595993, 0.00646174233406782, 0.00480912299826741, 0.0101536950096488, 0.00112212868407369, -0.00570153770968318, -0.00197488046251237, -0.00464716646820307, 0.0171211380511522, -0.0176631975919008, 0.00195504887960851, -0.00731779960915446, -0.0141728650778532, 0.00601553544402122, -0.0113700227811933, 0.011416295543313, -0.0348239988088608, -0.00338125973939896, -0.0219996720552444, 0.0183374676853418, -0.00873244181275368, -0.00678896112367511, -0.0036027105525136, 0.0197785515338182, -0.00539084523916245, -0.0169096030294895, 0.0232556629925966, 0.0311485733836889, 0.0166451837867498, -0.011046108789742, -0.00357296341098845, 0.0173987783491611, -0.0212857406586409, -0.0198975391685963, -0.00355974258854985, 0.0104776080697775, 0.0264419130980968, 0.00552966492250562, -0.0283192899078131, 0.0139745511114597, 0.0183771289885044, 0.0185622237622738, 0.01897207275033, 0.0205718092620373, 0.004234011285007, -0.0296942684799433, -0.000650305824819952, 0.0316509716212749, -0.00805817265063524, -0.0148603552952409, 0.0237580593675375, 0.00567840086296201, -0.000725086836609989, 0.00922161713242531, -0.00226574135012925, -0.00648157391697168, -0.0232159998267889, 0.0117071568965912, -0.0430738776922226, 0.0120773436501622, 0.0384729839861393, -0.0333168096840382, 0.00568831665441394, 0.00129317480605096, -0.0190778411924839, -0.00628987001255155, 0.0254371203482151, -0.0212064143270254, 0.0128111066296697, 0.0435762740671635, 0.0157726015895605, -0.0277111250907183, 0.00641877437010407, 0.00550983380526304, 0.0100347064435482, -0.0194612480700016, 0.0120112393051386, 0.00513303652405739, 0.0151776578277349, 0.00190216512419283, -0.0177028607577085, 0.0070864325389266, 0.0208230074495077, 0.0133333345875144, 0.0258734114468098, -0.0030325569678098, 0.00498099531978369, 0.0260452851653099, 0.00162121979519725, -0.0222112070769072, 0.0471194908022881, 0.00584696792066097, 0.00339117529802024, 0.00609155558049679, -0.00100314011797309, -0.0103718405589461, -0.0131614627316594, -0.0221054386347532, -0.0154024148359895, -0.0122690480202436, -0.0358816757798195, 0.0198049936443567, 0.0243794433772564, 0.0191042814403772, -0.0197917725890875, -0.00890431459993124, -0.001447694725357, 0.0024475296959281, -0.00355974258854985, 0.00951908901333809, -0.00484548043459654, -0.0163543224334717, -0.00842835940420628, 0.000445794139523059, -0.0190646201372147, 0.0207436811178923, 0.0094265416264534, -0.00470666075125337, 0.0118459770455956, -0.005946125369519, 0.000546190771274269, -0.0186812113970518, 0.00595604116097093, -0.00401586573570967, 0.0130094215273857, 0.00305569358170033, 0.0221054386347532, 0.00525202509015799, 0.00745661929249763, 0.00696083344519138, 0.010021485388279, 0.0124475304037333, 0.0277375672012568, -0.0182316992431879, -0.038182120770216, -0.00120723864529282, 0.00589324161410332, 0.0205718092620373, 0.0224756263196468, 0.000751528772525489, 0.00837547611445189, 0.0205189250409603, 0.00497769005596638, -0.00266402284614742, 0.00274995900690556, 0.00769459689036012, -0.0101735256612301, -0.0115088429301977, -0.00934721622616053, -0.0100677581503987, 0.0137894572690129, 0.0127317812293768, 0.0024921502918005, -0.00616096565499902, 0.0360667705535889, 0.00335481762886047, 0.000613948155660182, -0.0148735763505101, -0.000498677953146398, -0.0182449202984571, 0.0403239168226719, 0.0273673795163631, 0.0100082643330097, -0.0286894757300615, -0.0152040999382734, -0.0332903675734997, -0.00324739748612046, 0.0264947973191738, 0.0074764508754015, 0.000127664869069122, -0.0159973576664925, 0.0060353665612638, 0.00669310940429568, -0.0191703867167234, 0.0165261961519718, 0.00920839607715607, -0.0351941846311092, 0.00319120846688747, 0.0107089746743441, 0.00810444634407759, 0.0120178498327732, -0.00593620957806706, 0.00945298373699188, 0.01716080121696, -0.00580730522051454, 0.0262568201869726, -0.0015319783706218, -0.00560899078845978, 0.0117203779518604, 0.00142786325886846, -0.003695257473737, -0.0217881370335817, 0.00880515668541193, -0.00118327559903264, 0.0205057039856911, 0.0162749979645014, 0.0131284100934863, -0.00151297322008759, 0.0294562913477421, 0.00891092512756586, -0.0187737587839365, 0.00246570841409266, 0.00761527102440596, 0.00989588629454374, -0.00328706041909754, -0.0310692470520735, -0.0041745170019567, -0.0208362266421318, 0.00400264468044043, 0.0216823685914278, 0.0392397977411747, 0.0272616129368544, 0.0176367554813623, 0.0070269382558763, 0.0012378121027723, 0.0139084467664361, -0.0133267240598798, -0.00162783032283187, 0.012262437492609, -0.00840191822499037, -0.00416790647432208, -0.0121897216886282, -0.0366749353706837, -0.00822343491017818, 0.0286101493984461, 0.000715997419320047, 0.013987772166729, 0.0155875077471137, -0.0133862188085914, -0.000425136386184022, 0.00599239859730005, 0.0147545877844095, -0.0270236358046532, -0.0371773317456245, 0.000954387825913727, 0.0323120169341564, -0.0158122647553682, -0.0147149246186018, -0.0126326242461801, 0.00799206830561161, -0.0499752163887024, 0.0155742866918445, -0.0205850303173065, 0.00963807757943869, -0.0288216844201088, 0.00741034606471658, 0.0132672302424908, -0.0164865329861641, 0.0236655119806528, -0.011046108789742, 0.0188134219497442, -0.0195273533463478, 0.00858040060847998, -0.0252784695476294, -0.0159444734454155, -0.00153115205466747, 0.0122293848544359, 0.0044124941341579, 0.0014410843141377, -0.0162485558539629, 0.0248553976416588, -0.00767476530745625, 0.00552635965868831, -0.0125136356800795, -0.025939516723156, 0.0140406554564834, 0.000582548382226378, 0.000735002569854259, -0.0320211574435234, -0.004772765096277, 0.0387638434767723, -0.00094695104053244, -0.00606180867180228, -0.036198977380991, -0.0303288735449314, -0.0276846829801798, 0.130834579467773, 0.0279491022229195, 0.0098496126011014, 0.00425384286791086, -0.005195836070925, 0.00500082690268755, 0.00354652153328061, -0.0174516625702381, 0.00466699758544564, -0.00284581095911562, -0.0285837072879076, 0.00460089277476072, 0.00279457960277796, 0.00897041894495487, 0.0156403910368681, 0.0246570836752653, 0.00261279148980975, -0.0141860861331224, -0.0157593805342913, -0.0171872433274984, 0.00966451968997717, -0.00194348057266325, 0.0017418609932065, 0.0163411032408476, 0.00230705691501498, -0.00203933264128864, -0.00239629833959043, 0.0083159813657403, 0.00514625757932663, -0.0201619584113359, -0.031941831111908, 0.00147165777161717, -0.00410180166363716, -0.0150190070271492, -0.0275789145380259, -0.0258469693362713, -0.00660386774688959, 0.0287159178406, 0.00959841441363096, -0.0237977225333452, 0.00794579461216927, -0.00588332582265139, -0.0130358636379242, -0.0284779407083988, 0.0229119174182415, -0.00487192254513502, 0.0051660886965692, 0.0206114705651999, 0.00421087443828583, -0.00213518459349871, 0.0214047282934189, -0.0194480270147324, -0.0213386230170727, -0.024974387139082, -0.0303553156554699, -0.00914890225976706, 0.00399933941662312, 0.00802512094378471, -0.0139216668903828, 0.0134391020983458, -0.0157858226448298, -0.009968601167202, 0.00133449025452137, -0.0320740416646004, -0.00925466977059841, -0.0270368568599224, -0.00790613237768412, 0.00145347893703729, -0.00684184487909079, -0.00866633746773005, 0.015323088504374, -0.0613452382385731, -0.0277640093117952, -0.000942819460760802, 0.0208891108632088, 0.0152173209935427, 0.00932077411562204, -0.00833581294864416, -0.000523467257153243, -0.0163278821855783, 0.010986614972353, -0.0191836077719927, -0.00490166945382953, -0.034215833991766, -0.0234671980142593, -0.00746322982013226, -0.00035324742202647, -0.00393984513357282, -0.00503387907519937, 0.0153495306149125, -0.00371508882381022, -0.00625020731240511, -0.00066889775916934, -0.00350024830549955, -0.00869277864694595, -0.00357626867480576, -0.0218145791441202, 0.00357626867480576, 0.0164600908756256, 0.0162749979645014, 0.00430011609569192, -0.0254106782376766, -0.00959180388599634, -0.00932738464325666, -0.000709386949893087, -0.0134126599878073, 0.0227797087281942, 0.0225813947618008, 0.0106032071635127, -0.00258800224401057, 0.00860023219138384, -0.0333961360156536, -0.00551644433289766, -0.00740373553708196, -0.00470996554940939, -0.00737729389220476, 0.00990910734981298, 0.0129036540165544, -0.00609816610813141, -0.00786646921187639, -0.00127747491933405, -0.0307783875614405, 0.0181920360773802, 0.0118261454626918, -0.0125400768592954, 0.0109469518065453, -0.00163939862977713, -0.00392331881448627, -0.000816394051071256, -0.00570814777165651, -0.00884481985121965, 0.0233482085168362, 0.00628987001255155, 0.00257478118874133, 0.00182614463847131, 0.00459758751094341, 0.000420798256527632, 0.0247231889516115, -0.00472979713231325, -0.0117864832282066, -0.00226078368723392, 0.000523467257153243, -0.00734424125403166, -0.00967773981392384, -0.0105833755806088, -0.0352470688521862, -0.00401917099952698, -0.00194843846838921, -0.00342753296718001, 0.0296678263694048, -0.0147413667291403, -0.0110791614279151, -0.00719881104305387, -0.00547017063945532, -0.00317798741161823, -0.0208626687526703, -0.000428441620897502, -0.0140538765117526, 0.0172004643827677, 0.00305404094979167, 0.0209419950842857, 0.0123549839481711, 0.00143777905032039, 0.0157726015895605, 0.001822839374654, 0.0151379955932498, 0.022766487672925, 0.0323649011552334, -0.0049248063005507, 0.0174516625702381, 0.0243530012667179, 0.0210874248296022, -0.0406676642596722, -5.64537413083599e-06, 0.0166187416762114, -0.00727152591571212, -0.0168699398636818, -0.00357626867480576, -0.0175838731229305, -0.0169492661952972, 0.00736407283693552, 0.00717236893251538, -0.0212857406586409, 0.00520575186237693, -0.0289803370833397, -0.0352206267416477, 0.0161956716328859, -0.00737068336457014, 0.0240753628313541, -0.0136043643578887, 0.000738307775463909, -0.00142125284764916, 0.0115947788581252, 0.0100280959159136, 0.00228392030112445, -0.0105899861082435, -0.0124673619866371, -0.00581391574814916, 0.000816394051071256, 0.00809783581644297, 0.0243001189082861, 0.00201619579456747, 0.00259130750782788, -0.00746322982013226, 0.000975871866103262, 0.0249876081943512, -0.0072979680262506, -0.0192232709378004, -0.0179937221109867, -0.0287952441722155, 0.0118525875732303, 0.0109205096960068, 0.00190877565182745, -0.0174781046807766, 0.0127978855744004, -0.0130556942895055, 0.00579077890142798, -0.00343083823099732, 0.0103520089760423, -0.029509175568819, 0.00670632999390364, -0.00822343491017818, 0.0199636444449425, 0.0130689153447747, 0.0241679083555937, 0.0117005463689566, -0.00875888392329216, -0.0337134376168251, 0.00410180166363716, -0.00893075577914715, -0.000245827162871137, 0.0208230074495077, -0.00172037701122463, -0.0107816904783249, 0.0140803186222911, -0.0180730484426022, 0.0122756585478783, 0.0271294023841619, -0.0259527377784252, 0.0177689660340548, -0.003589489730075, 0.0103321773931384, -0.0213782861828804, -0.0350090935826302, -0.0151908788830042, -0.00217980518937111, -0.0216823685914278, 0.00985622312873602, 0.00905635487288237, -0.0107023641467094, -0.0324971117079258, 0.0112510342150927, -0.0141993071883917, 0.0168699398636818, -0.015918031334877, -0.0248289555311203, 0.0164997540414333, -0.0196860041469336, -0.00812427792698145, 0.0111981499940157, -0.0196463409811258, 0.0282664056867361, -0.0178879536688328, 0.0140803186222911, 0.00682862428948283, 0.0177954081445932, -0.0244323275983334, -0.0136440275236964, 0.000617666577454656, 0.019884318113327, -0.0313336662948132, 0.00455131428316236, 0.0199239812791348, 0.0259130746126175, 0.0258734114468098, -0.013227567076683, -0.0233085472136736, -0.00586679950356483, -0.0229251384735107, -0.0104842185974121, 0.00656751031056046, -0.0260849464684725, -0.0152305420488119, -0.0144769474864006, -0.00629648054018617, 0.00195835414342582, -0.0261510517448187, -0.00440257834270597, 0.0261510517448187, 0.00413815956562757, -0.0178747326135635, 0.0120575120672584, -0.00637250114232302, 0.00699388608336449, -0.00606511393561959, 0.00651462655514479, -0.00881176721304655, 0.0140803186222911, -0.0140406554564834, 0.00838208664208651, -0.00990249682217836, 0.022885475307703, -0.0009271195740439, 0.00332507048733532, -0.0057676425203681, -0.0135382590815425, 0.019990086555481, -0.00972401350736618, -0.0232159998267889, -0.0102594625204802, -0.00914890225976706, 0.00313832447864115, 0.0205321460962296, -0.00499421637505293, 0.00488183833658695, 0.0156668331474066, 0.0185093395411968, -0.00250867661088705, -0.00604528235271573, 0.0311221312731504, 0.0107354167848825, 0.0174781046807766, -0.00172698742244393, -0.0257279817014933, -0.0148603552952409, -0.0013353165704757, 0.0113303596153855, 0.01897207275033, -0.0197917725890875, -0.00728474697098136, -7.52458363422193e-05, 0.0234275348484516, -3.33364368998446e-05, -0.0216823685914278, 0.00130639574490488, -0.00445215729996562, -0.0124144777655602, 0.0193554796278477, 0.0274731479585171, -0.00595273589715362, 0.0130292531102896, 0.0207569021731615, 0.0326028801500797, 0.0141860861331224, -0.0177425239235163, -0.02656090259552, -0.0146488202735782, -0.00373822543770075, -0.0180994886904955, -0.0283192899078131, -0.0119253024458885, 0.0448719263076782, -0.000941166828852147, -0.0105172712355852, 0.0104908291250467, 0.0264419130980968, -0.025820529088378, 0.00840191822499037, -0.0192364919930696, 0.0174384415149689, 0.0159048102796078, 0.0486002378165722, -0.000746570876799524, 0.034215833991766, -0.00147331040352583, 0.0137233529239893, -0.00776070170104504, -0.0321269258856773, -0.00535118207335472, -0.04191043227911, 0.0195009112358093, 0.0251462589949369, -0.0215501599013805, 0.00494133261963725, 0.0251859221607447, -0.00437944196164608, -0.013934887945652, 0.0180862694978714, -0.00313006155192852, -0.0160105787217617, 0.00839530769735575, 0.00890431459993124, -0.00883820932358503, 0.0155214034020901, 0.013564701192081, -0.0302231069654226, 0.00187076535075903, -0.000825070310384035, 0.00491819577291608, -0.0171740222722292, 0.0122690480202436, 0.0287423599511385, -0.0106693115085363, 0.00603867182508111, -0.0271029602736235, -0.020558588206768, -0.00213022669777274, -0.02474963106215, 0.0245116539299488, 0.0269707515835762, -0.0324971117079258, 0.0317567363381386, 0.0133135030046105, 0.00412493851035833, 0.0088580409064889, -0.00596265122294426, 0.0173326749354601, 0.0116079999133945, -0.0135118179023266, -0.0121368383988738, 0.021748473867774, -0.00300280982628465, 0.0132407881319523, -0.0207965653389692, -0.00146256829611957, 0.00540737109258771, 0.00732441013678908, -0.0160370208323002, 0.0179805010557175, 0.00953231006860733, -0.0237712804228067, 0.0182713624089956, -0.0347711145877838, -0.0261774938553572, -0.026785658672452, -0.0249876081943512, -0.00082341767847538, -0.0217352528125048, -0.0194480270147324, 0.0119319129735231, -0.0130028109997511, -0.0066997199319303, 0.00327218673191965, -0.00732441013678908, -0.000567261653486639, -0.00100727158132941, 0.228458136320114, -0.0169624872505665, 0.020955216139555, 0.0101074213162065, -0.0060684191994369, 0.0178482905030251, -0.00119401759002358, -0.0161031242460012, -0.0113171385601163, -0.0256486553698778, -0.0421219691634178, 0.0280548706650734, -0.00882498826831579, -0.00251198164187372, 0.00439927307888865, -0.0062138494104147, -0.0549462959170341, -0.026851762086153, -0.00425384286791086, 0.0366484932601452, -0.0252784695476294, -0.00239299307577312, 0.000721781572792679, -0.00104528188239783, 0.00522227771580219, 0.0199636444449425, -0.0136308064684272, 0.0222508702427149, 0.0139613300561905, 0.00196826993487775, -0.0289538949728012, 0.0057676425203681, 0.0204395987093449, 0.0127251707017422, 0.00771442800760269, -0.0029135684017092, 0.0100942002609372, -0.00963807757943869, 0.0164072066545486, 0.0170285925269127, 0.00174681888893247, 0.00344405928626657, -0.00761527102440596, 0.000909767055418342, 0.00746322982013226, 0.0252388063818216, -0.00871922075748444, -0.0204924829304218, -0.00645513227209449, -0.00193687016144395, -0.0123682050034404, -0.0164733119308949, 0.00519914133474231, 0.0214576125144958, 0.0094595942646265, 0.00288547365926206, 0.029905803501606, 0.016883160918951, -0.00200132234022021, 0.0110328886657953, 0.00404561264440417, 0.023559745401144, -0.0106362598016858, 0.0195141322910786, -0.00878532603383064, 0.0481507256627083, 0.00800528936088085, 0.0455065332353115, 0.00168154039420187, -0.0120971752330661, -0.0224756263196468, 0.011581557802856, -0.0253577940165997, -0.00352669018320739, -0.0223301965743303, -0.00996199063956738, 0.00877871550619602, 0.0250008292496204, 0.0175177678465843, -0.0166319627314806, -0.0200561918318272, 0.00272186449728906, 0.00813088845461607, 0.0116146104410291, -0.00680218217894435, 0.0184432342648506, 0.00487192254513502, 0.00754255568608642, -0.0162882190197706, 0.00511981546878815, -0.00480251247063279, -0.0343480445444584, 0.00317964004352689, 0.0188134219497442, 0.0219467878341675, -0.00239299307577312, 0.0329730659723282, 0.00498099531978369, -0.00365228927694261, -0.0220393352210522, -0.000255742867011577, 0.0273673795163631, 0.0185490027070045, -0.00198314338922501, -0.0131680723279715, -0.0154156349599361, -0.00620393408462405, 0.0117600411176682, 0.00449843052774668, -0.0401652678847313, 0.00820360332727432, -0.0262435991317034, 0.00700710713863373, -0.00396959204226732, 0.00344405928626657, 0.0115286745131016, -0.00222773128189147, 0.00680218217894435, 0.0474103502929211, -0.0191307235509157, -0.0129895899444818, -0.0442637614905834, -0.00979011878371239, -0.0128441592678428, 0.00430342135950923, -0.00700710713863373, -0.0244984328746796, 0.0152305420488119, 0.00198644865304232, -0.0421219691634178, 0.0272616129368544, -0.0163014400750399, 0.0126788970082998, -0.0132672302424908, -0.0202016215771437, 0.00405222317203879, 0.00372500461526215, 0.00943976268172264, -0.00826970860362053, 0.00879854615777731, -0.0154552981257439, -0.0275789145380259, 0.0189324095845222, 0.00680879270657897, 0.00399272888898849, 0.00963807757943869, 0.0128970434889197, -0.00986944418400526, -0.0157593805342913, -0.0298793613910675, -0.00968435034155846, 0.0257279817014933, 0.00647826865315437, -0.0209684371948242, 0.0133531661704183, -0.0149000184610486, -0.035908117890358, -0.00649810023605824, -0.0167509522289038, 0.043602716177702, -0.0223698578774929, 0.00380433024838567, 0.0333961360156536, -0.0437084808945656, -0.00325896590948105, -0.00459758751094341, -0.16764172911644, 0.0320740416646004, 0.00172202964313328, -0.0098496126011014, 0.0105304922908545, -0.0137365739792585, -0.00801851041615009, -0.0075095035135746, -0.0129499267786741, -0.00187241798266768, 0.0110130570828915, -0.000713931629434228, -0.0296678263694048, -0.0222905334085226, -0.00502726854756474, -0.0022227733861655, -0.0213650651276112, 0.0232292208820581, 0.0128375487402081, 0.0255032256245613, 0.0366484932601452, -0.0109667833894491, 0.0138026783242822, 0.000233019352890551, 0.0114757902920246, -0.00479259667918086, 0.0075689977966249, 0.0194480270147324, -0.00189555459655821, -0.0056156013160944, -0.0224756263196468, -0.0252388063818216, 0.0211799722164869, 0.0246306415647268, -0.00780036440119147, 0.0198314357548952, -0.00208891113288701, -0.0210081003606319, -0.0222773123532534, 0.0422277338802814, 0.0288745686411858, 0.0143844010308385, -0.00434969458729029, -0.00360601581633091, 0.00895719788968563, 0.00858040060847998, 0.00537101365625858, -0.00137167423963547, 0.0245380960404873, -0.0100942002609372, 0.00809783581644297, -0.00982317049056292, 0.00952569954097271, 0.0145166106522083, 0.0011411338346079, 0.0180201642215252, 0.000578003702685237, 0.000120331365906168, 0.00598248280584812, -0.0149396806955338, 0.00541067635640502, 0.00929433293640614, 0.0108411842957139, -0.00165427220053971, -0.013452323153615, -0.00817716121673584, -0.00795901566743851, 0.0364633984863758, -0.0221186596900225, -0.0013824162306264, -0.0070269382558763, -0.0230309069156647, -0.00272021186538041, -0.0425450392067432, 0.0116344420239329, -0.00535118207335472, -0.00935382675379515, 0.0141728650778532, -0.0159973576664925, 0.0127383917570114, 0.000387539301300421, 0.0217616949230433, 0.00147083145566285, 0.00076929439092055, -0.00712609570473433, 0.0108874579891562, -0.00583044206723571, 0.0219600088894367, -0.0122756585478783, -0.00926789082586765, -0.0123880365863442, -0.0224359631538391, -0.0222640912979841, -0.0148339131847024, 0.0119186919182539, 0.00947281531989574, 0.00805817265063524, 0.0218145791441202, -0.0112047605216503, 0.00457114586606622, -0.00339117529802024, -0.00101388210896403, -0.0276053566485643, 0.00346389063633978, -0.00642869016155601, 9.63683778536506e-05, 0.0238373838365078, 0.00387043505907059, 0.00404891790822148, 0.00231697270646691, -0.0277640093117952, 0.0104974396526814, 0.0200958531349897, 0.0317038521170616, 0.0139216668903828, 0.000401586556108668, 0.0304346419870853, -0.00160882517229766, -0.00934060569852591, 0.000347050110576674, 0.0554222501814365, 0.00922822766005993, -0.0080780042335391, -0.0162353347986937, 0.00895719788968563, -0.0261642728000879, -0.115604043006897, -0.015375972725451, 0.013934887945652, 0.0132341776043177, 0.00897702947258949, 0.0365691669285297, 0.000610642950050533, 0.0281341951340437, -0.00355974258854985, 0.0264947973191738, -0.0135184284299612, -0.010986614972353, -0.00746322982013226, -0.0122426059097052, 0.0163807645440102, 0.00578747363761067, -0.0204924829304218, -0.00640224805101752, -0.0337398797273636, 0.0102065782994032, -0.00579077890142798, -0.00428689504042268, -0.00276813772507012, -0.00855395849794149, 0.00271194870583713, -0.00702032772824168, -0.0153495306149125, 0.0235465243458748, 0.0167773943394423, 0.0126392347738147, -0.00990910734981298, -0.00296645215712488, 0.0093075530603528, -0.0107816904783249, -0.00106346071697772, -0.00014904563431628, -0.0393191240727901, 0.00145926303230226, 0.0100942002609372, -0.00964468810707331, 0.000874235760420561, 0.00939348991960287, 0.013763016089797, -0.0526722893118858, 0.00372169935144484, -0.0134457126259804, -0.00121963326819241, 0.00752933463081717, 0.0178086291998625, -0.00596265122294426, 0.00684845540672541, -0.0185225605964661, -0.0320740416646004, 0.00346389063633978, -0.0151247745379806, 0.0328672975301743, -0.0038869611453265, 0.017835071310401, -0.0319682732224464, -0.00943315215408802, 0.00787307973951101, 0.00547347590327263, -0.00851429626345634, -0.0018856389215216, 0.0140935396775603, 0.0108544053509831, -0.043787807226181, -0.0176896397024393, -0.00295653636567295, 0.00609155558049679, -0.0286894757300615, 0.00917534343898296, -0.00422079022973776, 0.0176631975919008, -0.0372037701308727, -0.0038737403228879, -0.0391604751348495, -0.00318625057116151, 0.0205453671514988, 0.00468352390453219, -0.019712446257472, -0.0110527193173766, 0.0103982826694846, 0.000993224326521158, 0.0277111250907183, 0.017782187089324, 0.0175706520676613, 0.012916874140501, 0.0156007288023829, -0.0110527193173766, 0.00163030915427953, 0.0378648191690445, 0.00521897245198488, -0.00699388608336449, -0.013987772166729, 0.0337927639484406, 0.0171211380511522, -0.0138291204348207, 0.00118575454689562, 0.00967773981392384, -0.0314923189580441, 0.00160469359252602, -0.0594414211809635, 0.0210477635264397, -0.029112545773387, 0.0115617262199521, -0.026851762086153, -0.00215501594357193, -0.021867461502552, -0.00854073837399483, 0.00912907067686319, 0.0232688840478659, 0.00362254213541746, 0.0215633809566498, 0.00838208664208651, 0.00707982247695327, -0.0220261141657829, -0.00442571518942714, 0.0420162007212639, 8.96029669092968e-05, 0.0141067607328296, 0.00648157391697168, -0.009968601167202, 0.00617418671026826, 0.0170814767479897, 0.0333961360156536, -0.00238968781195581, 0.00285242148675025, -0.0192629341036081, 0.0282928477972746, 0.00320277665741742, 0.0002169063227484, 0.0144901685416698, -0.0335019044578075, -0.0221054386347532, 0.0109667833894491, -0.00576103199273348, -0.0266931112855673, -0.0302495490759611, 0.0133729977533221, 0.00964468810707331, 0.0148603552952409, -0.0185093395411968, -0.0269310884177685, -0.00384068791754544, -0.0312278997153044, -0.00313832447864115, -0.0111188245937228, -0.00490166945382953, 0.00895719788968563, -0.00313171418383718, -0.0199768655002117, 0.000985787599347532, 0.0179937221109867, -0.0181127097457647, -0.0320211574435234, 0.00417121173813939, -0.00995538011193275, 0.0241943504661322, 0.0083490340039134, -0.00627334369346499, -0.0188398621976376, 0.0256618764251471, 0.012150059454143, 0.0143315168097615, 0.00923483818769455, 0.00643860595300794, 0.0131217995658517, 0.00188729155343026, 0.0036027105525136, -0.00956536177545786, -0.0296678263694048, 0.00440257834270597, 0.00301272538490593, 0.00851429626345634, 0.0105238817632198, 0.0108610158786178, -0.00863989535719156, 0.00458106165751815, 0.014952901750803, -0.0180862694978714, 0.0240753628313541, -0.00520575186237693, 0.00598248280584812, -0.0391604751348495, 0.0307255033403635, -0.00804495252668858, 0.00504710013046861, -0.0199768655002117, 0.0334754623472691, -0.0159444734454155, 0.00721203163266182, -0.0229515805840492, 0.00670302519574761, -0.00670302519574761, 0.00644852174445987, 5.84097724640742e-05, 0.0166451837867498, 0.0072054211050272, 0.0169492661952972, -0.00122459104750305, 0.0181920360773802, 0.00744339870288968, -0.012599571608007, -0.0030044624581933, -0.0252255853265524, -0.006967443972826, 0.022766487672925, -0.0347182303667068, -0.0060353665612638, -0.0234143137931824, 0.00992232747375965, 0.0200297497212887, 0.0155610656365752, 0.0313865505158901, 0.01681705750525, -0.00805156212300062, 0.0203470513224602, 0.0402710326015949, -0.0174252204596996, -0.01897207275033, 0.0273938216269016, 0.011892250739038, 0.0116013893857598, -5.58275532966945e-05, -0.0178086291998625, 0.0399537310004234, -0.00586018897593021, -0.00298132561147213, 0.00352007965557277, 0.0116476630792022, 0.012599571608007, 0.0137894572690129, -0.00546686537563801, -0.0312014576047659, -0.00761527102440596, -0.00279457960277796, -0.0125070251524448, -0.014305074699223, -0.000110725508420728, -0.0165658593177795, 0.039583545178175, 0.0168302785605192, 0.00847463309764862, 0.00421417970210314, 0.00495124841108918, 0.0352206267416477, 0.0114361271262169, 0.00624029152095318, -0.0111650982871652, -0.014781029894948, 0.00214179488830268, -0.00260618096217513, -0.00653776293620467, -0.0170021504163742, 0.01897207275033, 0.0076284920796752, 0.0121963322162628, 0.00572136882692575, -0.020902331918478, 0.0126061821356416, 0.0400330573320389, -0.00317137688398361, 0.0247628521174192, 0.0198578760027885, 0.0074169565923512, -0.0359345600008965, 0.0211667511612177, -0.0236258488148451, 0.000765576027333736, -0.00889770407229662, -0.016142787411809, 0.00559246446937323, -0.0424128286540508, -0.0142389703541994, -0.0144240632653236, -0.00895058736205101, -0.00773425959050655, -0.00522227771580219, 0.0017418609932065, -0.0102991247549653, -0.00555941229686141, 0.0333961360156536, -0.0104247238487005, -0.0393455661833286, 0.0226607192307711, 0.0324177853763103, -0.0109932254999876, 0.00525863561779261, -0.0276053566485643],id:"62b6466d6495237aededda041d8b0746",source:"state_of_union.txt",text:"Groups of citizens blocking tanks with their bodies. Everyone from students to retirees teachers turned soldiers defending their homeland.
In this struggle as President Zelenskyy said in his speech to the European Parliament “Light will win over darkness.” The Ukrainian Ambassador to the United States is here tonight.
Let each of us here tonight in this Chamber send an unmistakable signal to Ukraine and to the world.
Please rise if you are able and show that, Yes, we the United States of America stand with the Ukrainian people.
Throughout our history we’ve learned this lesson when dictators do not pay a price for their aggression they cause more chaos.
They keep moving.
And the costs and the threats to America and the world keep rising.
That’s why the NATO Alliance was created to secure peace and stability in Europe after World War 2.
The United States is a member along with 29 other nations.
It matters. American diplomacy matters. American resolve matters."})
(:Chunk{embedding:[0.00764395901933312, -0.00645226519554853, 0.00361458538100123, -0.0173026062548161, -0.00890807621181011, 0.0175791308283806, -0.00871714204549789, -0.020910607650876, -0.00536920642480254, -0.0116009097546339, 0.0182111896574497, 0.0164993647485971, -0.0220693815499544, -0.0174606200307608, 0.00270106317475438, 0.0110741937533021, 0.0203048847615719, 0.000888009497430176, 0.0283899679780006, -0.0366857387125492, -0.0162228383123875, -0.00893441215157509, 0.0188695844262838, 0.000371787085896358, -0.00390757108107209, -0.00429931562393904, 0.0232808273285627, -0.0231228116899729, -0.00268131121993065, -0.0115284863859415, -0.0292590484023094, -0.0080060763284564, -0.00282944994978607, -0.00612965226173401, -0.023807542398572, -0.00895416457206011, -0.00516510428860784, -0.0282056163996458, 0.00612636003643274, -0.0221747234463692, 0.00287059973925352, 0.0182243566960096, 0.0179741680622101, -0.00204596063122153, -0.0259802434593439, 0.00281792809255421, -0.0271521862596273, -0.00474702380597591, 0.00121967564336956, 0.0387135930359364, 0.0329197198152542, 0.02524284273386, -0.0213978178799152, -0.00826943386346102, 0.00252000475302339, -0.00623828731477261, -0.0125885009765625, 0.00483590690419078, 0.0123778153210878, -0.0293643902987242, -0.0281792804598808, 0.0174211170524359, -0.0101063540205359, -0.00575107522308826, -0.0185008831322193, -0.0121934646740556, -0.0153669258579612, 0.0117325885221362, -0.0131547208875418, -0.00528361508622766, 0.0579913817346096, 0.033183079212904, 0.00599138904362917, -0.0130691295489669, 0.046166617423296, 0.00880931690335274, -0.0212134681642056, -0.0192909557372332, -0.0287323333323002, -0.0148270428180695, 0.0169734079390764, -0.0243737623095512, -0.0063831340521574, 0.0142081519588828, 0.0123712308704853, -0.0126609243452549, 0.00792706850916147, 0.0319452956318855, -0.0197518318891525, -0.00583995832130313, -0.0321559831500053, 0.00986274797469378, -0.00163117214106023, 0.025927571579814, -0.00720283482223749, 0.000776082451920956, -0.0192382857203484, 0.0320506393909454, -0.0167100504040718, -0.0301808007061481, 0.0249268133193254, -0.00861838273704052, -0.0225697606801987, -0.0115350699052215, -0.0277842450886965, -0.00298581877723336, -0.0235968567430973, -0.0301017928868532, 0.00499062985181808, -0.00416763685643673, -0.00485565885901451, -0.0157751310616732, -0.00385489943437278, -0.0357639864087105, 0.00628437474370003, -0.0149718895554543, -0.00378576782532036, -0.0207130890339613, 0.00152912107296288, -0.0146426921710372, 0.00035697323619388, 0.0205287374556065, 0.0244132652878761, 0.0095203835517168, 0.0393193140625954, -0.0303388144820929, 0.0156829543411732, -0.00950063113123178, 0.00221385131590068, 0.000600784900598228, 0.0164071898907423, 0.0130362091585994, -0.00688022188842297, -0.0168548971414566, -0.00944137573242188, 0.0327353700995445, -0.0268888287246227, -0.00797315686941147, -0.0067682946100831, -0.0233993381261826, 0.029548741877079, 0.00375943211838603, -0.020910607650876, 0.00784806162118912, 0.00686046993359923, 0.0325510203838348, 0.00880273338407278, 0.00701190065592527, 0.0194621384143829, -0.00984958093613386, 0.00871055852621794, -0.00489516230300069, 0.00163281813729554, -0.0319189615547657, 0.0114099755883217, 0.0148928817361593, -0.0171840935945511, 0.0196464899927378, 0.00730817811563611, -0.0100339306518435, 0.0222405642271042, -0.00168055179528892, 0.00319485901854932, -0.0189617592841387, -0.0183955393731594, 0.0191987808793783, 0.0385819114744663, 0.0138921225443482, 0.0110610267147422, -0.0246766228228807, 0.000916814256925136, 0.027336535975337, -0.0215426646173, 0.0257563889026642, 0.0183560363948345, 0.0230964757502079, 0.017960999161005, 0.00240478571504354, -0.0202653799206018, 0.00112173950765282, 0.00335781159810722, 4.82994037156459e-05, 0.0157882981002331, 0.0239655561745167, -0.0032820962369442, 0.00528690731152892, 0.0283636320382357, -0.0128847789019346, 0.00661027990281582, -0.00587946223095059, -0.00603747693821788, 0.0287059973925352, -0.00630412669852376, -0.00274221273139119, -0.631637275218964, -0.0290483627468348, 0.0233598332852125, 0.0411628186702728, 0.000190625753020868, 0.0413998402655125, 0.0283636320382357, -0.0149455536156893, -0.0350792557001114, 0.023083308711648, -0.0229516290128231, 0.000784723844844848, -0.00624816305935383, -0.00314877135679126, -0.0262567698955536, -0.0146821951493621, -0.0182375255972147, -0.0304968301206827, 0.0105540622025728, -0.00900025200098753, 0.000289282063022256, 0.0393193140625954, -0.01793466322124, -0.0171050876379013, 0.0139316255226731, -0.0286006536334753, -0.00659382017329335, -0.0150113925337791, -0.0184745471924543, 0.0325773544609547, -0.0210686214268208, 0.0271785221993923, -0.000408821797464043, 0.00862496718764305, 0.0508807227015495, -0.0143003268167377, -0.0162623412907124, 0.0315239243209362, 0.0348422341048717, 0.00173816131427884, -0.0185930579900742, 0.00115712825208902, 0.00741352140903473, -0.00436844676733017, -0.00948087964206934, -0.00667941151186824, 0.0210027825087309, -0.0239655561745167, 0.0177371464669704, 0.00993517227470875, 0.0109227634966373, -0.00977715756744146, 0.00120650778990239, -0.000893770426046103, -0.00690655736252666, 0.0157619621604681, -0.000582679058425128, -0.01077133230865, -0.0289430189877748, -0.00383843947201967, -0.00630741845816374, 0.000134044996229932, 0.00423347624018788, 0.0236100237816572, -0.0420582368969917, -0.0077427183277905, -0.0451921932399273, 0.0151562392711639, -0.0052901990711689, -0.0138921225443482, -0.00280146836303174, 0.0198440086096525, -0.00772296637296677, -0.0270468425005674, 0.032393004745245, 0.0135102532804012, 0.0115877417847514, -0.0156434513628483, -0.0191592779010534, -0.0120749538764358, -0.0166837144643068, -0.0197518318891525, -0.0238602142781019, 0.0227014403790236, 0.0271521862596273, 0.00557989254593849, -0.0118708517402411, 0.0253218486905098, 0.0243342574685812, -0.0086447186768055, 0.00262699369341135, 0.0212661400437355, -0.00904633942991495, -0.00580374663695693, -0.00971131771802902, 0.0343155190348625, 0.00485236709937453, 0.000233730024774559, 0.0363170355558395, -0.00344011094421148, 0.000553874298930168, -0.013655100017786, 0.0208315998315811, -0.00795340444892645, -0.00135876145213842, 0.000400591845391318, -0.0335517786443233, 0.00602101720869541, 0.0204628985375166, -0.0209501106292009, 0.0278105810284615, 0.00496429391205311, -0.0166310425847769, 0.022319570183754, 0.00832868926227093, -0.0149323856458068, -0.0215426646173, 0.0197781678289175, 0.0149455536156893, -0.019475307315588, -0.0188432484865189, 0.00112420844379812, 0.0160384885966778, -0.0255720391869545, 0.00172663934063166, 0.0225829277187586, 0.0149718895554543, -0.0227936152368784, -0.0214109867811203, 0.0210291184484959, 0.0113902231678367, 0.0106001505628228, 0.0398460291326046, 0.00376272411085665, 0.00250025279819965, 0.0240445639938116, 0.00709090800955892, 0.00605722889304161, -0.012259304523468, 0.00724233873188496, -0.0152089111506939, 0.00327222025953233, -0.00655431626364589, 0.00418738834559917, -0.0128781944513321, -0.0103433765470982, 0.0115943253040314, 0.00141966296359897, -0.029601413756609, 0.0327617079019547, 0.0419265553355217, 0.00919118616729975, -0.00459230085834861, -0.0279949307441711, 0.011205873452127, 0.0125029096379876, -0.0119103547185659, -0.022332739084959, -0.00675512664020061, -0.0189749263226986, 0.0214109867811203, 0.0220825485885143, -0.0217270161956549, 0.0195938181132078, 0.0123975668102503, 0.0196728259325027, -0.00342035898938775, -0.00497416965663433, 0.0286269895732403, -0.031734611839056, 0.0198440086096525, -0.00489845452830195, -0.00558647653087974, -0.00157685461454093, 0.00763079151511192, 0.000562515750061721, -0.0114955669268966, -0.0158541370183229, -0.0140106333419681, 0.0167890582233667, 0.0356586426496506, -0.00757811963558197, -0.0420582368969917, -0.00898049958050251, 0.00812458712607622, 0.0104750553146005, -0.00963889434933662, 0.0206735841929913, 0.00834185723215342, 0.00686046993359923, -0.00561610423028469, -0.00586300250142813, 0.0113112162798643, 0.000798303226474673, -0.0223064031451941, 0.00986274797469378, 0.0117984283715487, 0.000608191825449467, 0.000557989289518446, 0.0159463137388229, -0.00579057913273573, 0.00291010341607034, 0.0211871322244406, 0.00551405316218734, 0.0126740923151374, -0.0205550733953714, -0.0107581652700901, -0.0141423121094704, 0.0221352204680443, 0.0106791574507952, 0.028100274503231, -0.0261909309774637, -0.0284953098744154, -0.029601413756609, -0.0195806492120028, 0.0370807722210884, 0.00604076869785786, -0.00894099660217762, -0.0248741414397955, 0.0123712308704853, 0.00162458827253431, -0.0328933857381344, 0.00167149887420237, -0.00132831069640815, -0.0397143512964249, 0.0135497571900487, -0.01798733510077, -0.00674854265525937, 0.0285216458141804, -0.00161224335897714, -0.00900683552026749, 0.00556343281641603, -0.00155298784375191, 0.0311552248895168, 0.0183823723345995, -0.00141061004251242, 0.0232018195092678, -0.00838794466108084, -0.00824309792369604, -0.00701848464086652, -0.00309116183780134, -0.000345451320754364, -0.000689256645273417, 0.00182539853267372, 0.0167495533823967, -0.00771638238802552, 0.0535406358540058, 0.00686705391854048, -0.0322086550295353, 0.0352109335362911, -0.0064193457365036, 0.0103367920964956, 0.00560622848570347, -0.00235211406834424, -0.0196333210915327, -0.024426432326436, 0.00709749199450016, 0.00358166568912566, 0.0355006270110607, 0.0302598066627979, 0.0308655295521021, 0.00614940375089645, -0.00538237439468503, 0.0156171154230833, -0.00266155949793756, -0.00575107522308826, 0.00770321488380432, 0.0127860195934772, 0.0121342092752457, -0.00627779075875878, 0.00915826670825481, -0.00513876834884286, 0.00758470362052321, -0.011851099319756, -0.00476677576079965, 0.0133127355948091, -0.0143925016745925, 0.00587946223095059, 0.0126411728560925, -0.00293314713053405, -0.0120486179366708, -0.0358429923653603, 0.00688680587336421, 0.0332094132900238, -0.000134662230266258, -0.015129903331399, -0.0107054933905602, 0.0038944031111896, -0.0356059707701206, -0.0101129384711385, -0.0122066326439381, 0.0113573037087917, -0.0426376238465309, -0.00889490824192762, -0.0191329419612885, -0.0150508964434266, 0.0438490696251392, -0.015511772595346, 0.0109688509255648, -0.0239523891359568, 0.00438161473721266, -0.0271785221993923, -0.0213978178799152, -0.00670245522633195, 0.0204102266579866, -0.00852620787918568, -0.00556014105677605, -0.00686705391854048, 0.00413471693173051, -0.00109458074439317, -0.00434540305286646, 0.0183165334165096, -0.0139711294323206, 0.0207789279520512, -0.00209863227792084, 0.0167495533823967, -0.035368949174881, -0.00817725900560617, 0.0202785488218069, 0.0127201806753874, -0.00357178971171379, -0.0225039217621088, -0.0221615564078093, -0.0221483875066042, 0.131046831607819, 0.0225565936416388, -0.00605722889304161, 0.00989566836506128, 0.00914509873837233, -0.00368042476475239, -0.0180663429200649, -0.0274418797343969, 0.022319570183754, -0.00509597267955542, -0.00769004691392183, 0.0105079747736454, -0.00541200209408998, 0.0140106333419681, 0.0180663429200649, 0.0124436542391777, 0.0108042526990175, -0.0215821694582701, -0.0326826982200146, -0.0228857900947332, 0.0232413224875927, -0.00543175404891372, 0.00309280771762133, 0.0423742644488811, 0.000564161746297032, 0.0130691295489669, 0.0188827514648438, 0.0177108105272055, 0.00603747693821788, -0.0183165334165096, -0.0294697340577841, -0.00172828533686697, -0.00747277680784464, 0.000252247351454571, -0.0221220534294844, -0.00876322947442532, -0.00368042476475239, 0.0199888553470373, 0.0262962728738785, -0.012983538210392, 0.00276690255850554, -0.00730817811563611, -0.00912534631788731, -0.0161306634545326, -0.000977715710178018, -0.00777563825249672, 0.00991541985422373, 0.0103433765470982, -0.0124699901789427, -0.0347368903458118, 0.0163940209895372, -0.0158014670014381, -0.0422425866127014, -0.0222273953258991, -0.0143134947866201, -0.00287059973925352, -0.0193436276167631, 0.00505317701026797, -0.0262040980160236, 0.00111021753400564, -0.013655100017786, -0.00785464514046907, -0.0159989837557077, -0.0299964491277933, -0.0257300548255444, -0.0289166830480099, -0.0199361834675074, 0.0150904003530741, -0.00738718546926975, -0.00980349257588387, 0.0100602665916085, -0.0360800139605999, -0.024426432326436, 0.0258090607821941, 0.0224249139428139, -0.00502354931086302, 0.0102116977795959, -0.0165520366281271, -0.00829576980322599, 0.015511772595346, -0.00422689225524664, -0.0211607962846756, 0.0100866025313735, -0.0229647979140282, -0.0133983260020614, -5.29287390236277e-05, -0.00218422338366508, 0.0192251168191433, -0.0137999467551708, 0.00321461074054241, 0.0035224100574851, -0.0035520379897207, -0.00123037456069142, -0.0125094940885901, -0.00889490824192762, 0.0105277271941304, -0.0118445158004761, 0.0132995676249266, -0.00229779654182494, -0.00657077645882964, 0.0164598599076271, -0.0095203835517168, -0.00262370170094073, -0.00112996937241405, -0.00141966296359897, -0.00662015611305833, 0.0186457298696041, -0.00631729466840625, -0.00145422865170985, 0.00985616445541382, 0.0262436009943485, -0.0293907262384892, -0.0261777620762587, 0.00410838099196553, 0.00588275399059057, -0.00257761427201331, 0.0126345893368125, 0.0360010080039501, 0.0172104295343161, -0.00586300250142813, 0.00657736044377089, -0.0282582882791758, -0.00242124544456601, 0.00627120677381754, -0.00669257948175073, 0.0176054667681456, 0.0035586217418313, -0.0218455269932747, 0.00256444630213082, -0.00774930231273174, 0.0117655079811811, 0.0240445639938116, 0.0129242828115821, 0.0141949839890003, -0.000721353397239, 0.0262172650545835, -0.00308622373268008, 0.0279159229248762, -0.00535274669528008, -0.0178029853850603, -0.0151694072410464, -0.0162228383123875, -0.0171840935945511, 0.00570169556885958, 0.00976398959755898, -0.0189617592841387, 0.00446391431614757, 0.00961914286017418, -0.0176054667681456, 0.00182539853267372, 0.000872372591402382, -0.0221220534294844, -0.0123053919523954, -0.0106199020519853, -0.0267308130860329, -0.0252823457121849, -0.0059025059454143, -0.0068407179787755, 0.0158541370183229, 0.00745302485302091, 0.00774930231273174, 0.0128452749922872, -0.00575436744838953, 0.0198835115879774, -0.000169639431987889, 0.0115548223257065, -0.00444416236132383, 0.0176318027079105, -0.0117062525823712, -0.00142542389221489, 0.00992200430482626, -0.00751228025183082, -0.0256642140448093, 0.00761103956028819, -0.0167100504040718, 0.00910559482872486, -0.0193304605782032, 0.00516510428860784, -0.0213846508413553, -0.00688022188842297, -0.00534287095069885, 0.00614611199125648, 0.00963231083005667, -0.00876981392502785, -0.016565203666687, -0.0124699901789427, 0.020225876942277, 0.0135497571900487, 0.0241104029119015, -0.00394378276541829, -0.0164730288088322, -0.011521901935339, -0.00276196468621492, 0.00392403081059456, -0.00187477807048708, -0.0237943734973669, -0.00388123514130712, -0.0237680394202471, 0.0327880419790745, 0.0112322084605694, 0.0141554800793529, 0.00241136946715415, -0.00498733762651682, 0.0284953098744154, -0.0164335239678621, 0.0246107839047909, 0.00480627920478582, 0.0019504934316501, -0.0035882496740669, -0.0424796082079411, -0.0154064297676086, 0.0137999467551708, 0.0134180784225464, -0.00325082242488861, 0.00915826670825481, -0.0110215228050947, 0.00833527371287346, -0.0042795636691153, 0.000201221788302064, -0.0344998687505722, 0.000869080657139421, 0.000808179145678878, 0.0242815855890512, -0.0016616228967905, 0.0168680641800165, 0.00598151329904795, -0.012232968583703, -0.0191592779010534, 0.0196464899927378, -0.0236100237816572, 0.0102907046675682, 0.00805874727666378, 0.0106067340821028, -0.0193962994962931, -0.00414459267631173, -0.0231228116899729, 0.0273102000355721, 0.0210422854870558, -0.0310762170702219, 0.0481681376695633, -0.00689997337758541, -0.00377918407320976, -0.00174639117904007, -0.046956691890955, -0.0233598332852125, 0.0330250635743141, -0.0407151095569134, -0.00572803150862455, 0.0126872602850199, -0.0246239509433508, -0.038107868283987, 0.0141028081998229, -0.0030829319730401, 0.0298647712916136, -0.0174606200307608, -0.0150245605036616, 0.0206077452749014, -0.0155512765049934, 0.0144188376143575, -0.00439149094745517, -0.0169075690209866, 0.0193567965179682, -0.0149587215855718, 0.0168812330812216, 0.0103170406073332, 0.00253975647501647, -0.0144715094938874, -0.00595846958458424, -0.0182243566960096, 0.0243737623095512, -0.0236626956611872, 0.0130691295489669, 0.00746619282290339, -0.00904633942991495, 0.00930969696491957, 0.00232413224875927, -0.0292327124625444, -0.000440301257185638, -0.0196069851517677, -0.00576424319297075, 0.013707771897316, -0.0301544647663832, -0.0220693815499544, -0.0126543408259749, 0.00901341997087002, 0.0062744989991188, -0.0350529178977013, 0.00836160872131586, 0.0137999467551708, 0.00996809173375368, -0.026638638228178, -0.00425651995465159, -0.0106594059616327, 0.000719295931048691, 0.00836160872131586, -0.0066366158425808, -0.014063305221498, 0.025993412360549, -0.0224512498825788, -0.00647530891001225, -0.00642922148108482, 0.0270995143800974, -0.025216506794095, 0.00740035343915224, -0.0146558601409197, 0.00403266586363316, 0.0436120480298996, -0.0168417301028967, -0.0233730021864176, -0.00753203220665455, -0.0113177997991443, -0.00672220718115568, 0.0127926040440798, -0.00614940375089645, 0.0137604437768459, 0.00336933345533907, 0.00523423543199897, -0.030918201431632, 0.00468118442222476, 0.0279422588646412, 0.0151957431808114, 0.0196728259325027, 0.00371663644909859, -0.0221352204680443, -0.014063305221498, 0.0196991618722677, 0.0139842974022031, 0.0228594541549683, -0.00905950739979744, -0.0160648245364428, 0.00488199479877949, 0.0022533549927175, 0.0116074932739139, -0.0157224591821432, -0.0288640111684799, -0.00425322772935033, -0.00472068786621094, 0.00811800360679626, 0.02520333789289, -0.0069855647161603, 0.0261382590979338, 0.0325510203838348, 0.0185535550117493, -3.45914259014535e-06, -0.0151694072410464, -0.0218455269932747, -0.0167100504040718, -0.0118445158004761, -0.0107384128496051, -0.0198176726698875, -0.0249004773795605, 0.0554104745388031, 0.0120552014559507, 0.00743985688313842, -0.0011028106091544, 0.00172828533686697, -0.0108700916171074, 0.00846695248037577, -0.01077133230865, 0.0272575281560421, 0.0435067042708397, 0.0318399555981159, 0.0196596570312977, 0.02520333789289, -0.00838136114180088, 0.0224644169211388, 0.0311552248895168, -0.0249136444181204, -0.00134888559114188, -0.0405570976436138, 0.00322119472548366, 0.0119432751089334, 0.00550417741760612, -0.0101853618398309, 0.00161306629888713, -0.00583008257672191, 0.00181881454773247, 0.0140764722600579, 0.0062744989991188, -0.0243474263697863, 0.00585971027612686, 0.0232413224875927, -0.00804558023810387, 0.0092438580468297, 0.0228857900947332, -0.044770821928978, 0.00504000950604677, 0.00730817811563611, 0.00876322947442532, -0.0269941706210375, 0.000748512160498649, 0.00236363592557609, -0.0151430713012815, 0.00847353599965572, -0.0284163039177656, -0.0158014670014381, 0.00828918535262346, -0.0272048581391573, 0.0186720658093691, 0.00371334445662796, -0.00284590991213918, 0.012595085427165, -0.00297758867964149, 0.00263357767835259, -0.0214768256992102, 0.000560046755708754, 0.0110676102340221, 0.0192646216601133, 0.00869080610573292, -0.0172762703150511, 0.0195674821734428, 0.00825626589357853, 0.0297330915927887, -0.00933603290468454, -0.00442770263180137, -0.0181190147995949, 0.0103170406073332, 0.00984299648553133, 0.0321559831500053, 0.017960999161005, 0.00199822708964348, 0.0128189390525222, -0.0328143797814846, 0.0114758145064116, -0.00446720607578754, -0.013734107837081, 0.0113573037087917, -0.022411746904254, -0.0205945782363415, -0.00015410543710459, -0.00869739055633545, -0.018777409568429, 0.0123975668102503, -0.00878298189491034, 0.00210850802250206, 0.00107482890598476, 0.241446405649185, -0.0282319523394108, 0.023056972771883, 0.0195411462336779, -0.00901341997087002, 0.0157751310616732, 0.011930107139051, -0.00884223729372025, -0.00171840947587043, -0.00432894332334399, -0.00360141741111875, 0.0146031882613897, -0.0155512765049934, 0.00624487129971385, 0.0110149383544922, -0.00706457206979394, -0.0330250635743141, -0.0346052125096321, -0.0112387929111719, 0.0212003011256456, -0.0088488208130002, 0.0088488208130002, -0.00704482011497021, 0.00370676070451736, 0.00896733161062002, 0.00663332361727953, -0.0186325628310442, 0.00847353599965572, 0.010409215465188, 0.00482932291924953, -0.0121671287342906, 0.0182901974767447, 0.0165257006883621, 0.0206209141761065, 0.0128781944513321, 0.00821017846465111, 0.0281792804598808, 0.00887515675276518, 0.0267439819872379, 0.00618890766054392, 0.0209896136075258, 0.0263489447534084, -0.000359442201443017, -0.0243737623095512, 0.00369030074216425, 0.0400040447711945, -0.00170688750222325, -0.022385410964489, -0.00729501014575362, 0.0222273953258991, -0.00730159413069487, -0.0210159495472908, -0.0118445158004761, 0.0135365892201662, -0.00520131597295403, 0.00552063714712858, 0.0239523891359568, 0.00451000174507499, 0.00337097933515906, -0.0116404136642814, -0.000792542297858745, 0.00200810306705534, -0.0189222563058138, 0.0176581386476755, -0.0196069851517677, 0.0587814524769783, -0.0127267641946673, 0.00191757373977453, -0.00176943500991911, -0.0146295242011547, -0.0123053919523954, -0.00324259256012738, -0.0171314235776663, 0.0262567698955536, -0.0234125051647425, -0.01443200558424, 0.00884223729372025, 0.0122066326439381, 0.0243737623095512, 0.0113573037087917, -0.00393390655517578, 0.00307305599562824, -0.0142344869673252, 0.0103697124868631, -0.0142081519588828, -0.00271752290427685, 0.0110939461737871, 0.00237680389545858, -0.0270468425005674, -0.000550582306459546, 0.00167890579905361, -0.0209896136075258, -0.0190275982022285, 0.0245844479650259, 0.022293234243989, -7.43265554774553e-05, -0.00312737352214754, -0.000505317701026797, -0.00725550670176744, -0.0198176726698875, 0.00205419049598277, 0.0326036922633648, 0.025993412360549, -0.00118757889140397, -0.0126082533970475, -0.00409192126244307, -0.00997467525303364, -0.0107515808194876, -0.0143661666661501, -0.0255720391869545, -0.00712382746860385, -0.0276789013296366, 0.00761762354522943, -0.00460217706859112, 0.00511572463437915, 0.0161833353340626, -0.0379761904478073, 0.00133900961373001, 0.0263094417750835, -0.015867305919528, 0.011179537512362, -0.0444284565746784, 0.00242124544456601, -0.00325246853753924, 0.0119103547185659, -0.00189288391266018, -0.0377655029296875, 0.0170129109174013, -0.0139711294323206, -0.0242815855890512, 0.0281529445201159, 0.000669916335027665, 0.023056972771883, 0.00827601831406355, 0.0035224100574851, 0.0071764993481338, 0.00364092108793557, 0.0088488208130002, 0.0119630265980959, 0.00138180528301746, 0.00456267315894365, -0.0261514261364937, 0.0270468425005674, 0.0257168859243393, 0.00640288554131985, 0.0142344869673252, 0.0268229879438877, 0.00598151329904795, -0.00729501014575362, 0.00614611199125648, -0.0245317760854959, 0.0147480349987745, 0.00232742424122989, 0.00678804656490684, 0.0249531492590904, -0.00263851555064321, -0.00778222223743796, -0.0137867787852883, -0.0207130890339613, 0.0219772066920996, -0.0182375255972147, -0.00401949789375067, 0.0385819114744663, -0.0202127080410719, -0.00366396503522992, -0.00765054300427437, -0.16517798602581, 0.0171182546764612, 0.00911876279860735, -0.0147480349987745, 0.0270995143800974, -0.00726209068670869, 0.0224512498825788, -0.0109293470159173, -0.0167232174426317, -0.0126345893368125, 0.0328143797814846, 0.0115548223257065, -0.0203048847615719, -0.0292327124625444, 0.00230273441411555, 0.000176634872332215, -0.0282319523394108, 0.0247556306421757, -0.00285907788202167, 0.0217928551137447, 0.0506963692605495, -0.00465484848245978, -0.00765712698921561, 0.0121276248246431, 0.00905292294919491, -0.00453962944447994, -0.0245712790638208, -0.00374955614097416, -0.0211344603449106, -0.037370465695858, -0.00074480869807303, -0.0418738834559917, 0.0376601591706276, 0.0181453507393599, -0.0151825752109289, -0.00206571258604527, 0.00573790725320578, -0.0176449697464705, -0.0226092636585236, 0.0204102266579866, 0.04332235455513, 0.00948087964206934, 0.020844766870141, -0.0226751044392586, 0.00601772498339415, 0.00664319982752204, 0.0239523891359568, 0.000656748423352838, 0.00312737352214754, -0.00765054300427437, 0.00663990760222077, -0.00142789294477552, 0.00312901940196753, -0.00252658850513399, 0.0264937914907932, 0.00546467350795865, 0.0196991618722677, -0.00481286318972707, 0.0262567698955536, 0.00744644086807966, -0.0101590259000659, -0.000761268544010818, 0.020923774689436, 0.00226487684994936, -0.00795998889952898, 0.00623499508947134, -0.0121868811547756, 0.0344208590686321, -0.0136024290695786, 0.0171972624957561, 0.00695264525711536, -0.00338085531257093, -0.00441453466191888, -0.0326826982200146, 0.00779538974165916, -0.00983641296625137, -0.0228331182152033, 0.0164203569293022, -0.0243605934083462, 0.00965864583849907, -0.030997209250927, 0.00755836814641953, -0.000282080873148516, -0.017315773293376, -0.00344669469632208, 0.0161174945533276, -0.00711065996438265, 0.0355532988905907, 0.00196695327758789, -0.00372980441898108, -0.00795998889952898, -0.0326036922633648, -0.0244922731071711, -0.0227936152368784, 0.0105803981423378, 0.00530665880069137, 0.0218191910535097, 0.0288376752287149, -0.00505976099520922, -0.0105079747736454, 0.00743985688313842, -0.00591238168999553, -0.029522405937314, 0.0158541370183229, -0.0123909832909703, 0.0110017703846097, 0.0131942238658667, 0.000263152032857761, 0.010461887344718, -0.00529678305611014, -0.0225434247404337, 0.0176844745874405, 0.0106001505628228, 0.0316292680799961, -0.00430589960888028, 0.00501038134098053, 0.0267439819872379, -0.0006131298141554, 0.00525727961212397, -0.0121868811547756, 0.0385555773973465, 0.0153142539784312, 0.0141686480492353, -0.0069855647161603, -0.00568194407969713, -0.00255621643736959, -0.127043783664703, -0.0385029055178165, 0.0351319275796413, -0.0151167362928391, -0.000671562331262976, 0.0377918407320976, 0.011159785091877, 0.0113902231678367, -0.00597822153940797, 0.0135892610996962, -0.00898049958050251, -0.00387135916389525, 0.00949404761195183, -0.0145900202915072, 0.00867105461657047, 0.00106083799619228, -0.0117720924317837, -0.0173816122114658, -0.0344735309481621, 0.00642263749614358, -0.00226652272976935, -0.0116272456943989, -0.0025430484674871, 0.0017496831715107, 0.00523094367235899, 0.0133851589635015, -0.0227672792971134, 0.0260065793991089, -0.00168878166005015, 9.16094140848145e-05, -0.0231754835695028, 0.00183198251761496, 0.0114428950473666, -0.0204628985375166, 0.00390427885577083, 0.0143661666661501, -0.0557265020906925, 0.00769004691392183, 0.0219377018511295, -0.00905950739979744, 0.0035882496740669, 0.00158590753562748, -0.0197913367301226, -0.0487475246191025, 0.0103762960061431, -0.0131020490080118, -0.00917801819741726, 0.0164993647485971, 0.0174737870693207, -0.00667611928656697, -0.0093426164239645, 0.011877435259521, -0.0103697124868631, 0.00886857323348522, -0.0121539607644081, 0.0119169391691685, -0.00437173899263144, 0.0287323333323002, -0.0104816388338804, -0.00936236884444952, 0.0139974653720856, -0.000556343293283135, -0.020173205062747, 0.0180926788598299, -0.00306811789050698, 0.0167627222836018, -0.0174606200307608, -0.018711568787694, 0.011186121031642, -0.00846036802977324, 0.00371663644909859, -0.00929652899503708, 0.00464826449751854, 0.0142081519588828, -0.0221747234463692, -0.00596834532916546, -0.0312078949064016, 0.002343884203583, 0.0372387878596783, -0.0136946039274335, -0.0160648245364428, -0.022385410964489, -0.00799949187785387, 0.00194061757065356, 0.0159726478159428, 0.0226355995982885, 0.0109030120074749, 0.0021825775038451, -0.00464826449751854, -0.0102512007579207, -0.0090660909190774, 0.0221747234463692, 0.00716333137825131, -0.00727525819092989, 0.00197847513481975, 0.0385819114744663, -0.00980349257588387, -0.0012986829970032, 0.00797315686941147, 0.0315765962004662, -0.0171050876379013, 0.00881590135395527, -0.0606776289641857, 0.0249004773795605, -0.0160384885966778, 0.00893441215157509, -0.0213056430220604, -0.00485565885901451, -0.00395365850999951, -0.0310498811304569, -0.0110807782039046, 0.0118576837703586, -0.0143003268167377, 0.0104157999157906, 0.00378576782532036, -0.00181881454773247, -0.0164598599076271, -0.00836160872131586, 0.0242157466709614, -0.0125358300283551, -0.01793466322124, 0.00858546327799559, -0.00205254461616278, -0.00188794604036957, 0.000851797754876316, 0.0142608229070902, -0.0118050118908286, -0.0198835115879774, -0.00898049958050251, 0.0373968034982681, -0.00377260008826852, -0.00374626414850354, -0.00208381842821836, -0.0193304605782032, -0.0303651504218578, 0.0177371464669704, 0.00366396503522992, -0.0181058458983898, -0.0283899679780006, 0.0131152169778943, -0.00327715813182294, 0.0401357226073742, -0.0266518052667379, -0.0454028807580471, 0.000393184920540079, -0.0255983751267195, -0.00175132916774601, -0.00632058642804623, 0.00542846182361245, 0.0015175990993157, -0.00595846958458424, 0.00405241781845689, -0.00619878340512514, 0.00689997337758541, -0.0181190147995949, -0.0340784937143326, -0.013628764078021, -0.0114363115280867, 0.00255621643736959, 0.0207657609134912, 0.00108717381954193, 0.00432565156370401, 0.0157751310616732, 0.00657077645882964, 0.0130822975188494, -0.00560622848570347, 0.0146163562312722, 0.000200295922695659, -0.0116074932739139, -0.00118428701534867, 0.0016953656449914, -0.0178424883633852, -0.00114560627844185, -0.00109540368430316, 0.00176449702121317, -0.00600126525387168, 0.0137999467551708, -0.00547784147784114, 0.00233400822617114, 0.0200941972434521, -0.00316029321402311, 0.00617573969066143, -0.005589768756181, -0.0123251434415579, -0.0364487133920193, 0.038107868283987, -0.00288705946877599, 0.0026681434828788, -0.00273727485910058, 0.0232808273285627, -0.00813775509595871, 0.0270468425005674, 0.00154064293019474, -0.00185502623207867, -0.010455303825438, 0.00592884188517928, 0.00366725702770054, 0.0150640644133091, 0.00174309918656945, 0.010073434561491, 0.0132271442562342, -0.0021463658194989, 0.0242552496492863, -0.000835749437101185, 0.00930969696491957, -0.0352636054158211, 0.00513547658920288, -0.000135896727442741, -0.0136419320479035, -0.0111466171219945, -0.0237943734973669, 0.0109886033460498, 0.0237680394202471, 0.00640288554131985, 0.0159068088978529, 0.0231228116899729, -0.000500791240483522, 0.0180400069802999, 0.012963785789907, -0.00914509873837233, -0.0240050610154867, 0.00952696707099676, 0.0270468425005674, 0.0218850299715996, 0.00657406821846962, -0.0143398307263851, 0.0108569236472249, -0.0221747234463692, 0.0080060763284564, -0.00794682092964649, 0.025967076420784, -0.0177503135055304, 0.00756495166569948, -0.0132534792646766, -0.018013671040535, -0.00819701049476862, -0.0266781412065029, -0.011877435259521, -0.00863813515752554, 0.0106659894809127, -0.00957963895052671, 0.0198835115879774, 0.00681438203901052, -0.00448695803061128, -0.00874347798526287, 0.00579057913273573, 0.00546467350795865, 0.0021282599773258, -0.0174737870693207, -0.0140106333419681, -0.0191987808793783, 0.0184218753129244, 0.00448366580531001, 0.00821017846465111, -0.0240840688347816, 0.0167495533823967, 0.0256905499845743, 0.0163545180112123, 0.00592884188517928, -0.0371861159801483, 0.0271785221993923, 0.0354742929339409, -0.000384543498512357, 0.0164598599076271, 0.0119761945679784, -0.000186510791536421, -0.0392139703035355, 0.0304178223013878, -0.0202785488218069, 0.000103542806755286, -0.0385555773973465, -0.00015410543710459, -0.00447708228603005, -0.0447444841265678, -0.0189090874046087, 0.00114396028220654, -0.00513218436390162, -0.000578564126044512, 0.00281957420520484, 0.00894099660217762, 0.00218422338366508, -0.018053175881505, 0.0359483361244202, -0.00880273338407278, -0.0292590484023094, 0.00392732257023454, 0.0120881218463182, -0.00109787273686379, 0.0183692034333944, -0.0119235226884484],id:"5f377f27557e16a6b3c004bb54597b3d",source:"state_of_union.txt",text:"Putin’s latest attack on Ukraine was premeditated and unprovoked.
He rejected repeated efforts at diplomacy.
He thought the West and NATO wouldn’t respond. And he thought he could divide us at home. Putin was wrong. We were ready. Here is what we did.
We prepared extensively and carefully.
We spent months building a coalition of other freedom-loving nations from Europe and the Americas to Asia and Africa to confront Putin.
I spent countless hours unifying our European allies. We shared with the world in advance what we knew Putin was planning and precisely how he would try to falsely justify his aggression.
We countered Russia’s lies with truth.
And now that he has acted the free world is holding him accountable.
Along with twenty-seven members of the European Union including France, Germany, Italy, as well as countries like the United Kingdom, Canada, Japan, Korea, Australia, New Zealand, and many others, even Switzerland."})
(:Chunk{embedding:[-0.0116885788738728, -0.00407206267118454, 0.00993664469569921, -0.0228630751371384, -0.0092466939240694, 0.0126355700194836, -0.0034074776340276, -0.00441027386114001, -0.00541476113721728, -0.0311154294759035, 0.0211179070174694, 0.0140831135213375, 0.00641924841329455, 0.00813736114650965, -0.00765710137784481, 0.0135352117940784, 0.0326576717197895, -0.0232554003596306, 0.0468625426292419, -0.0315212830901146, -0.0250817406922579, 0.00867849867790937, -0.00957137625664473, -0.033334095031023, -0.0101801566779613, -0.00673378445208073, 0.0145836658775806, -0.0308989733457565, 0.00458276132121682, -0.0254470091313124, -0.0204955972731113, -0.00947667751461267, 0.00715654855594039, 0.00807648338377476, -0.0324412174522877, -0.0219160839915276, -0.0019683891441673, -0.0158823970705271, 0.00316903879866004, -0.0234177429229021, 0.0294649582356215, 0.00562445214018226, 0.00938197784125805, -0.00584428943693638, -0.024256506934762, 0.00472819246351719, -0.0249599851667881, -0.00976753886789083, -0.00256025861017406, 0.0214831735938787, 0.0346869379281998, 0.0223354659974575, -0.025582293048501, -0.0305742919445038, -0.0122094238176942, 0.00102224329020828, -0.0119591476395726, 0.0123379435390234, -0.0164776481688023, 0.00183310464490205, -0.00788708496838808, 0.0139072434976697, -0.0132849356159568, -0.0066661424934864, -0.00959166884422302, 0.00647336198017001, -0.0198868177831173, 0.00125476345419884, -0.00689950818195939, 0.00420396495610476, 0.0668846443295479, 0.0372032299637794, -0.00144162517972291, -0.0016437063459307, 0.0278956592082977, -0.00687583349645138, -0.0115668224170804, -0.00161157629918307, -0.0162341371178627, -0.00579355750232935, 0.0379067100584507, -0.0151789179071784, -0.0190751105546951, -0.00180435669608414, 0.0202656146138906, -0.00836734473705292, -0.00459629017859697, 0.0214967019855976, -0.00405853427946568, 0.0114180091768503, -0.00758269475772977, 0.0251087974756956, 0.00191258429549634, 0.044670931994915, -0.011140676215291, 0.0169240869581699, -0.0320894755423069, 0.0265833996236324, 0.00702802836894989, -0.028896763920784, 0.0318730212748051, -0.0179251935333014, -0.0262046027928591, -0.0119591476395726, -0.026109904050827, -0.00986900273710489, 0.0074609387665987, -0.0123447086662054, 0.00170796643942595, 0.00327557534910738, -0.0319541916251183, -0.012852025218308, 0.0143536822870374, -0.0238235965371132, 0.044075682759285, -0.0175599250942469, 0.00635498808696866, -0.0137854879721999, -0.00865144189447165, -0.0158553402870893, 0.0305201765149832, 0.0256769936531782, 0.0196433048695326, 0.0220919549465179, 0.00686568720266223, -0.0362021252512932, 0.0257852207869291, -0.00438321707770228, -0.012737032957375, -0.0157606415450573, 0.024973513558507, 0.00910464487969875, 0.00124546268489212, -0.0191968660801649, -0.00872584898024797, 0.0169105585664511, -0.0260287318378687, 0.0013274789089337, -0.0140154715627432, -0.017844021320343, 0.0125070493668318, -0.000973202695604414, -0.0208879224956036, -0.0053978506475687, 0.0300060957670212, 0.00757593056187034, 0.00847557187080383, 0.00536741130053997, 0.0125341061502695, -0.0113774240016937, 0.00628058146685362, 0.00965254753828049, 0.00078295887215063, -0.0103019122034311, 0.0134540405124426, 0.00264819362200797, -0.0118712121620774, 0.023011889308691, 0.0118576837703586, -0.00679804477840662, -0.027652146294713, -0.0196703616529703, -0.00615544337779284, 0.0121011957526207, 0.00277164066210389, 0.0163964778184891, 0.00563459843397141, 0.0077179791405797, -0.0143266255035996, 0.0116479927673936, 0.0343893133103848, 0.00701449997723103, -0.0193456802517176, 0.0226601492613554, -7.68373502069153e-05, 0.0338211171329021, 0.0133525775745511, 0.00917905196547508, -0.0164370629936457, -0.00571576878428459, -0.00459629017859697, -0.00974724628031254, 0.0256093516945839, 0.0268810242414474, 0.00280884397216141, -0.0148948207497597, 0.032711785286665, -0.00477892393246293, 0.0139884147793055, -0.00768415816128254, -0.00665937829762697, 0.0243647340685129, 0.00356474588625133, 0.0121417818590999, -0.631183266639709, -0.0172217134386301, 0.00731889018788934, 0.00469775311648846, 0.00466731423512101, 0.009801359847188, 0.0167752746492624, 0.00387590005993843, -0.000256829109275714, 0.0125611629337072, -0.00665261410176754, -0.000693332927767187, -0.00958490464836359, -0.0241076927632093, -0.0113436030223966, -0.0232689287513494, -0.0285179670900106, -0.024459432810545, 0.0116277001798153, -0.00580032169818878, -0.0026667951606214, 0.0439403988420963, 0.00302529893815517, -0.00792767014354467, 0.0233230441808701, -0.0256634652614594, 0.00792767014354467, -0.0153818447142839, -0.0262587163597345, 0.0249870419502258, -0.00473833875730634, 9.69714892562479e-05, -0.0191427525132895, 0.00171303970273584, 0.0604451037943363, -0.00777885736897588, -0.000687414256390184, 0.00760298734530807, 0.0124867567792535, 0.00656806118786335, 0.00016730884090066, 0.00433248514309525, 0.00892877485603094, -0.00641924841329455, 0.0153818447142839, -0.0143130971118808, 0.0207255817949772, -0.0258663911372423, 0.000918243371415883, -0.00268539669923484, -0.0009030238725245, -0.0018432509386912, -0.0203873701393604, -0.00534373661503196, -0.00770445074886084, -0.00809001177549362, -0.00528285885229707, -0.0184528026729822, -0.0241618063300848, 0.000498861481901258, 0.00907758809626102, 0.0198056474328041, 0.00621970370411873, -0.00685554090887308, -0.0356339290738106, 0.011188025586307, -0.0331176407635212, 0.0213208328932524, -0.000484064745251089, 0.00560415955260396, 0.00987576693296432, 0.0114180091768503, -0.0047924523241818, -0.0126355700194836, 0.0169511437416077, 0.0193592086434364, 0.0258258059620857, -0.0211179070174694, -0.0170052591711283, -0.0181687045842409, -0.0296814143657684, -0.0129805449396372, -0.0331988111138344, 0.021456116810441, 0.0200762152671814, 0.00142133247572929, -0.0122838299721479, 0.0196703616529703, 0.0122364806011319, -0.00982165243476629, 0.0208879224956036, 0.0258528627455235, -0.00660526426509023, -0.0255417078733444, -0.00153209664858878, 0.00243342947214842, 0.00144669832661748, 6.80649973219261e-05, 0.00740682473406196, 0.00963225495070219, -0.0017206494230777, 0.00800207629799843, -0.00802236888557673, -0.0102545628324151, -0.00700773578137159, 0.0266916267573833, -0.0266510415822268, 0.0107280584052205, 0.0138057805597782, -0.0265157576650381, -0.0125205777585506, -0.017546396702528, -0.0328200124204159, 0.0317106805741787, 0.0120606105774641, -0.0218213852494955, 0.00563459843397141, 0.00794796273112297, 0.000262959190877154, -0.0357150994241238, -0.00472819246351719, 0.0260422620922327, 0.019305095076561, -0.0221190117299557, 0.00139512110035866, -0.0084485150873661, 0.00446438742801547, -0.0228360183537006, -0.0320353619754314, 0.0130143659189343, 0.0292485039681196, 0.00391986779868603, 0.0272327642887831, -0.0127167403697968, 0.00516786705702543, 0.0273004062473774, -0.000664162216708064, -0.0219025555998087, 0.00942932814359665, 0.00433248514309525, -0.0250411555171013, 0.00552975293248892, -0.00660526426509023, 0.000925853091757745, -0.00925345811992884, -0.0124055864289403, 0.00726477615535259, -0.0122905941680074, -0.0153277311474085, -0.00953079108148813, 0.0290320478379726, 0.00402471330016851, -0.0180063638836145, -0.0111609688028693, 0.0117426924407482, -0.00351739628240466, -0.0147730642929673, -0.0124394074082375, -0.0119929686188698, -0.0199409313499928, 0.0103086773306131, 0.00358842057175934, -0.0171405430883169, 0.0147189507260919, -0.00492435460910201, -0.00428851787000895, 0.0128452610224485, 0.00115414569154382, -0.00943609233945608, 0.0037947294767946, 0.0156659428030252, 0.00881378352642059, 0.00919258035719395, -0.00310477870516479, 0.0150977475568652, 0.0222137104719877, 0.000839186483062804, 0.0130346594378352, -0.0219160839915276, 0.0288697071373463, 0.0205497108399868, -0.0180198922753334, -0.0336587764322758, 0.00460305437445641, 0.0140425283461809, 0.0135081550106406, 0.00478230603039265, 0.0202115010470152, 0.00558724859729409, 0.014705422334373, -0.0199274029582739, -0.000323837215546519, -0.00683862995356321, -0.00300500635057688, -0.0114991804584861, -0.00631102081388235, -0.0030540470033884, 0.0129602523520589, 0.0199950449168682, 0.0156524144113064, 0.0274221636354923, -0.0109174568206072, 0.0346057675778866, 0.00742711778730154, 0.00958490464836359, -0.0153953731060028, 0.00643615890294313, -0.0297625847160816, 0.0263534151017666, 0.0195080209523439, 0.014962462708354, -0.0229848325252533, -0.0298437550663948, -0.0129196671769023, 0.00533697241917253, 0.0322518199682236, -0.000531414349097759, 0.00874614156782627, -0.00932786427438259, 0.00487024104222655, 0.0103357341140509, -0.0252170264720917, 0.0104507254436612, -0.0247164741158485, -0.0226872060447931, -0.00667290668934584, -0.00789384916424751, 0.000150715364725329, 0.0161800235509872, -0.00561768794432282, -0.0250411555171013, 0.00318933138623834, 0.00454217614606023, 0.0163423642516136, -0.00353092467412353, 0.0139072434976697, 0.012432643212378, 0.000201552727958187, 0.0225113369524479, -0.00679804477840662, 0.00329248583875597, 0.00239791721105576, 0.0211043786257505, 0.0112556684762239, 0.0232283435761929, 0.0143401538953185, 0.0435886569321156, 0.0012420805869624, -0.0120200254023075, 0.0152871459722519, -0.00282237236388028, 0.0184528026729822, -0.00320624210871756, -0.0101801566779613, 0.00280377082526684, -0.047457791864872, 0.0142454551532865, 0.00521183433011174, 0.0210232064127922, 0.0224031079560518, 0.0154630150645971, -0.0188315995037556, 0.00295089255087078, 0.0200356300920248, 0.0102207418531179, 0.00456585083156824, 0.0189939402043819, 0.00842145830392838, 0.0184392742812634, 0.00998399406671524, -0.00963225495070219, -0.0084485150873661, 0.0148542355746031, 0.0053741754963994, 0.0170052591711283, 0.0215237606316805, -0.00182803149800748, 0.00972018949687481, 0.00463687535375357, 0.00449144467711449, -0.00802236888557673, -0.0386913605034351, 0.00527271255850792, -0.0023962261620909, 0.00172234047204256, -0.0159365106374025, -0.0149218775331974, 0.00214256788603961, -0.0331988111138344, 0.0235530268400908, 0.00140695855952799, -0.00633469549939036, -0.0163153074681759, 0.0108971642330289, -0.00398750975728035, -0.00396383507177234, 0.0282744541764259, -0.0105116032063961, 0.0042344038374722, -0.021361418068409, 0.0181822329759598, -0.0217131581157446, -0.00972018949687481, -0.0105116032063961, 0.0281391702592373, 0.00540123274549842, -0.0095240268856287, 0.00206985254772007, 0.00106451974716038, -0.0166670475155115, -0.0158147551119328, 0.0159229822456837, -0.0149895194917917, 0.0161394383758307, -0.00955108366906643, 0.0240941643714905, -0.0196703616529703, -0.00601339479908347, 0.0261640176177025, 0.0065782074816525, 0.0109445136040449, -0.0252305548638105, -0.016721161082387, -0.0286532510071993, 0.131171822547913, 0.0203061997890472, 0.00542152533307672, 0.0128317326307297, 0.00548240309581161, -0.0145024955272675, -0.00629072822630405, -0.0380961075425148, -0.00958490464836359, -0.00893553905189037, 0.015219503082335, 0.0197921190410852, 0.00955784786492586, 0.0355798155069351, 0.0059558991342783, 0.0174922831356525, 0.0279497727751732, -0.0198732893913984, -0.00938197784125805, -0.0146783655509353, -0.0049886149354279, -0.0041058836504817, -0.0111474404111505, 0.0507587343454361, 0.0164776481688023, 0.0317647941410542, 0.0266645699739456, 0.0270704235881567, 0.0116682862862945, -0.0243782624602318, -0.0233771577477455, 0.00761651573702693, -0.00165300711523741, -0.00124292611144483, -0.0254199523478746, -0.0213208328932524, 0.00374737987294793, 0.00857703574001789, 0.0219160839915276, 0.0115668224170804, 0.00668981717899442, -0.000951218942645937, 0.0043426314368844, -0.0276386179029942, -0.00651056552305818, -0.00342607940547168, -0.0223219376057386, -0.00842822249978781, -0.00889495387673378, -0.023728895932436, 0.0198056474328041, -0.0102004492655396, -0.0165858771651983, -0.0268133822828531, -0.00733918277546763, 0.0183581039309502, -0.020333256572485, 0.0101936850696802, -0.0260152034461498, -0.0072038983926177, -0.0183310452848673, -0.000266129936790094, -0.0016555436886847, -0.022389579564333, -0.0228360183537006, -0.0284909103065729, -0.0270839519798756, 0.00802913308143616, 0.00665599619969726, -0.0182363465428352, 0.0300331525504589, -0.0176546238362789, -0.0339564010500908, 0.0186016149818897, 0.0146377803757787, 0.0156524144113064, 0.00512728141620755, -0.015787698328495, 0.0188586562871933, 0.00826588179916143, 0.00652747601270676, -0.0267051551491022, -0.00237931567244232, -0.0221054833382368, -0.0216319877654314, 0.00819147471338511, -0.00842822249978781, -0.0121079599484801, -0.0346328243613243, 0.0071159633807838, 0.00276656751520932, 0.00153632427100092, 0.0110595058649778, 0.0015523893525824, -0.00944285653531551, 0.00659511797130108, -0.00631778500974178, 0.000221528331167065, 0.00664584990590811, -0.00671349186450243, 0.0174516979604959, -0.0066661424934864, -0.00310308765619993, -0.00200221012346447, 0.000881040119566023, -0.00504272896796465, 0.000709820713382214, 0.0123785296455026, 0.0165317635983229, 0.0104439612478018, 0.0100178150460124, -0.0285720806568861, -0.0293296743184328, -0.00465378584340215, -0.0106536522507668, -0.00959843304008245, 0.0137854879721999, 0.0220648981630802, 0.00626705307513475, 0.00412617623806, -0.00206139707006514, -0.0223760511726141, 0.00645306939259171, 0.023945352062583, 0.00622308580204844, -0.0057191513478756, -0.0130076017230749, -0.0424793250858784, -0.00902347452938557, 0.00151603168342263, -0.0136840241029859, 0.0370950028300285, -0.00415661558508873, -0.0191156957298517, -0.00776532897725701, 0.00700097158551216, -0.0292755607515574, 0.00781944300979376, -0.0140425283461809, -0.0165317635983229, -0.00108734890818596, -0.00859732832759619, -0.0108768716454506, -0.00909788068383932, 0.0109106926247478, -0.028166227042675, -0.00833352375775576, 0.0101801566779613, 0.00297964061610401, 0.00423778593540192, -0.0165182333439589, -0.0208608657121658, -0.00538770435377955, -0.00942932814359665, -0.00110003189183772, -0.0210367348045111, -0.0215237606316805, -4.72438732685987e-05, 0.0082117673009634, 0.0195756629109383, 0.025379367172718, 0.00703479256480932, -0.015692999586463, 0.00535050081089139, 0.00409911945462227, 0.00422763964161277, 0.0133525775745511, 0.0183175168931484, 0.00790061336010695, 0.0249329283833504, 0.0179928354918957, 0.000552552519366145, -0.0337940603494644, -0.0195215493440628, -0.0108295222744346, 0.0106604164466262, -0.0192103944718838, 0.0179522503167391, -0.0223760511726141, 0.0204550120979548, -0.00430204626172781, 3.2394291338278e-05, -0.0139072434976697, -0.00176546233706176, -0.0239047668874264, -0.0244188476353884, 0.04808010160923, -0.0115938792005181, 0.0357962734997272, -0.0160988532006741, -0.014705422334373, 0.000741527997888625, 0.0168564449995756, 0.00865144189447165, -0.00731889018788934, -0.000582145992666483, -0.00869879126548767, -0.00163863319903612, 0.0162747222930193, 0.00165300711523741, 0.00861762091517448, 0.0135013908147812, -0.00920610874891281, -2.54979531746358e-05, -0.00283590075559914, 0.0245270747691393, -0.0064699798822403, 0.00385898957028985, 0.0084688076749444, -0.0207932237535715, -0.00834705214947462, -0.0079547269269824, -0.00502581801265478, -0.0254064239561558, 0.00779914995655417, 0.00375076197087765, 0.0155847715213895, -0.00653085811063647, -0.014543080702424, -0.0209690928459167, -0.00973371788859367, -0.00947667751461267, 0.0168835017830133, -0.00132916995789856, 0.019602719694376, 0.0311965998262167, 0.0116479927673936, -0.0425875522196293, 0.0199274029582739, -0.00212565739639103, 0.0103289699181914, 0.0100313434377313, 0.00880701933056116, -0.0472954511642456, -0.00279193324968219, 0.00150334869977087, 0.0140154715627432, 0.0170458443462849, -0.0248923432081938, 0.0452661849558353, -0.0307095758616924, 0.00434601353481412, -0.0135622685775161, -0.0498929135501385, -0.0341187454760075, 0.00943609233945608, -0.0366620905697346, 0.012737032957375, -0.0126693909987807, -0.0221325401216745, -0.00907758809626102, 0.034768108278513, -0.0188721846789122, 0.0332799814641476, -0.00922640133649111, -0.0183851607143879, 0.004900679923594, 0.00237086042761803, -0.00517801335081458, -0.00487700523808599, -0.0351198501884937, 0.0284909103065729, -0.0068149552680552, 0.00540123274549842, -0.0203873701393604, 0.0210232064127922, -0.025068212300539, -0.00464702164754272, 0.000252178724622354, 0.0193321518599987, -0.0313048288226128, -0.00606750883162022, 0.00484656635671854, -0.0147324791178107, -0.00241144583560526, -0.00812383275479078, -0.0176005102694035, -0.0188315995037556, -0.0205902960151434, -0.0101801566779613, -0.00286803091876209, -0.00834705214947462, -0.0284367967396975, 7.85812517278828e-05, -0.00236240518279374, -0.0232959855347872, -0.0201844442635775, -0.0162747222930193, 0.0356609858572483, 0.00404838798567653, -0.010788937099278, -0.00742035359144211, -0.0143266255035996, 0.00229138066060841, 0.0115262372419238, -0.0106942374259233, 0.0175869818776846, 0.00211043772287667, -0.0256905220448971, 0.00781267881393433, 0.00168006401509047, 0.0317377373576164, -0.0231336448341608, 0.00640572002157569, 0.000229138080612756, -0.00702126417309046, 0.0147460075095296, -0.0220648981630802, -0.0308989733457565, -0.00152617797721177, -0.00823882408440113, -0.0258528627455235, 0.0196162480860949, -0.0162611939013004, 0.0191968660801649, 0.0152600882574916, 0.0236747823655605, -0.0214155316352844, -0.0050292001105845, 0.0338481739163399, -0.00869202706962824, 0.012432643212378, 0.0109986281022429, -0.0311965998262167, -0.0167617462575436, 0.00581723218783736, 0.0321165323257446, 0.00627381727099419, -0.00345144513994455, -0.00139004795346409, -0.0139207718893886, 0.0147460075095296, 0.0113368388265371, -0.0164370629936457, -0.00783973559737206, -0.00162510469090194, -0.0107145300135016, 0.00588825671002269, 0.0307636894285679, 0.00942932814359665, 0.0218890272080898, 0.0291673317551613, 0.0380961075425148, -0.0107754087075591, -0.0127573255449533, -0.0163829494267702, -0.00712949177250266, -0.0111000910401344, -0.0265969280153513, -0.0211449638009071, -0.0108092296868563, 0.0350386798381805, 0.00911140907555819, -0.00915875844657421, -0.0120470821857452, 0.00972018949687481, -0.0359315574169159, 0.00932110007852316, -0.0223084092140198, 0.0357150994241238, 0.0452120713889599, 0.0261910744011402, 0.0082794101908803, 0.0485941842198372, 0.0102342702448368, 0.0311154294759035, 0.0269351378083229, -0.0230660028755665, -0.00188552739564329, -0.0271786507219076, -0.0158012267202139, 0.0244188476353884, -0.0107754087075591, 0.0084891002625227, 0.015219503082335, -0.00765033718198538, -0.00375076197087765, 0.0466190278530121, 0.0221731252968311, -0.0289779342710972, -0.00537755805999041, 0.0161664951592684, 0.00880701933056116, 0.00450159097090364, 0.011397716589272, -0.0340105183422565, 0.00185508839786053, 0.0115059446543455, 0.0213208328932524, -0.014962462708354, 0.0264886990189552, -0.0242429785430431, -0.0129805449396372, -0.00062653620261699, -0.0279768295586109, -0.00564136262983084, 0.014191341586411, -0.00559739489108324, 0.0250276271253824, 0.0118712121620774, 0.0155847715213895, 0.00113216193858534, 0.00468422472476959, -0.00628734612837434, 0.00393677828833461, -0.00173840543720871, -0.0224031079560518, 0.0284638535231352, -0.00332630705088377, -0.0153953731060028, 0.0199815165251493, 0.00450835516676307, 0.0170999579131603, -0.00360194919630885, 0.00209352723322809, 0.0214696452021599, 0.0142454551532865, 0.0028172992169857, 0.00723095517605543, 0.0135757969692349, -0.00158621044829488, 0.000293398188659921, -0.034659881144762, -0.00953079108148813, -0.0167076326906681, -0.009544319473207, -0.00543167162686586, -0.0365809202194214, -0.0196297764778137, -0.00913170166313648, -0.0155982999131083, -0.0420193560421467, -0.00558386649936438, -0.0125746922567487, 0.0135893253609538, 0.0292214471846819, 0.21851147711277, -0.0283015109598637, 0.0258528627455235, 0.01088363584131, 0.000268455129116774, 0.00898965355008841, 0.0148136494681239, -0.00336351012811065, -0.00569209409877658, -0.000289381947368383, -0.00898965355008841, 0.000784649921115488, -0.0152871459722519, 0.00594237027689815, -0.0012192513095215, -0.0165588203817606, -0.0406935699284077, -0.0213208328932524, -0.00869202706962824, 0.025068212300539, -0.000188658421393484, 0.0114112449809909, 0.00303713651373982, -0.00496832234784961, 0.0111068552359939, 0.00438998127356172, -0.0138396015390754, 0.00850262958556414, -0.00207830779254436, -0.00222881161607802, -0.0160582661628723, 0.0128452610224485, 0.0148677639663219, -0.00771121494472027, 0.0125476345419884, -0.0299519822001457, 0.0147865926846862, 0.005161102861166, 0.0145024955272675, 0.00970666110515594, 0.0258799195289612, 0.0235124416649342, 0.00356136378832161, -0.0244459044188261, 0.0146783655509353, 0.0184663310647011, -0.014448381960392, -0.00193625898100436, -0.010788937099278, 0.0296272989362478, -0.0369056053459644, -0.0224842801690102, 0.0225789789110422, 0.0378255397081375, 0.0153818447142839, -0.00264312047511339, 0.0282473973929882, 0.0406394563615322, 0.00434601353481412, -0.00652409391477704, -0.0129331955686212, 0.0356609858572483, -0.00125476345419884, 0.0107348226010799, -0.00557710230350494, 0.0554666332900524, -0.00836058054119349, 0.00595251703634858, 0.0134337479248643, -0.00221190112642944, -0.0073527111671865, -0.00401794863864779, -0.00741358892992139, -0.000509853358380497, -0.034659881144762, -0.011188025586307, 0.0183581039309502, 0.035092793405056, 0.0385560765862465, 0.00445762323215604, 0.00940227136015892, 0.00160227552987635, 0.00404162378981709, 0.0154900718480349, -0.0147865926846862, -0.0108227580785751, 0.034064631909132, 0.000116260096547194, -0.01088363584131, -0.00112117012031376, 0.0129602523520589, -0.0310883726924658, -0.0172758270055056, -0.00737976795062423, 0.0159500390291214, 0.0246894173324108, -0.00743388198316097, -0.00404500588774681, -0.00855674315243959, -0.00409911945462227, -0.0141778131946921, 0.0568735934793949, 0.0302225518971682, 0.0100786937400699, -0.00500552542507648, -0.0118509195744991, -0.0121688386425376, -0.00562107004225254, -0.00919934455305338, -0.0390972122550011, 0.00586119992658496, -0.02218665368855, 0.0157200563699007, -0.00619602901861072, 0.00830646697431803, -0.00891524646431208, 0.0111474404111505, -0.00410250155255198, 0.0213884748518467, -0.00573606183752418, -0.00388266448862851, -0.0429934039711952, -0.00620955741032958, -0.0165452919900417, 0.00598972011357546, -0.00177729979623109, -0.0363915227353573, 0.00101632461883128, -0.0022474133875221, -0.0302225518971682, 0.014962462708354, 0.000962210819125175, 0.0183851607143879, -0.0307636894285679, -0.0167346894741058, 0.0184798594564199, 0.00270738056860864, 0.0112759610638022, -0.000795219035353512, 0.012594984844327, -0.0191968660801649, -0.0162341371178627, -0.00868526287376881, 0.00230829138308764, 0.0232959855347872, 0.0218349136412144, 0.0274492204189301, -0.0178034361451864, -0.0159500390291214, 0.00407206267118454, -0.0538161620497704, -0.00301346159540117, 0.000282829103525728, -0.00967284012585878, -0.00408220896497369, -0.0140966419130564, -0.020333256572485, -0.0287073645740747, -0.00581723218783736, 0.0277874302119017, -0.0372573435306549, 0.0156794711947441, 0.029194388538599, -0.0179793071001768, -0.0128790820017457, 0.000675154093187302, -0.171432480216026, 0.0242835637181997, -0.00776532897725701, -0.0262451879680157, 0.0266510415822268, 0.00609794771298766, 0.0231607016175985, -0.0117629850283265, -0.0128858461976051, -0.012852025218308, 0.0162206087261438, 0.0142860403284431, -0.0280850566923618, -0.0304931197315454, 0.00330432318150997, 0.00887466128915548, -0.0299790389835835, 0.0203738417476416, 0.0208338089287281, 0.0305201765149832, 0.0395571812987328, -0.00022068279213272, 0.000129154403111897, -0.0170593727380037, 0.0109918639063835, -0.0116141717880964, -0.00974724628031254, -0.0114788878709078, -0.0195621345192194, -0.0297896414995193, -0.0152736166492105, -0.0187504272907972, 0.0252034980803728, 0.0186286717653275, -0.00407544476911426, 0.0126626268029213, 0.0235530268400908, -0.00800884049385786, -0.0205497108399868, 0.00905729550868273, 0.0297896414995193, 0.0293296743184328, 0.00185170618351549, -0.00249430746771395, 0.0109174568206072, 0.0202520862221718, 0.016815859824419, -0.0197244770824909, -0.0015811373014003, -0.00878672674298286, 0.00323668099008501, -0.0137381386011839, -0.00880025513470173, 0.00261099031195045, 0.0167346894741058, 0.0238777101039886, 0.0158418118953705, -0.0127099761739373, 0.0027090716175735, 0.0112962536513805, -0.00636175228282809, -0.000227869779337198, 0.00208676303736866, 0.00256533175706863, -0.00104338151868433, -0.0073527111671865, 0.0169511437416077, 0.0335776060819626, -0.0338481739163399, 0.01393430121243, -0.0171270146965981, 0.00932110007852316, 0.0142454551532865, -0.0293026175349951, -0.00963901914656162, -0.011560058221221, -0.0104777822270989, 0.00503258220851421, -0.00452864775434136, 0.00788708496838808, -0.00961872562766075, 0.0105927744880319, 0.00430542835965753, -0.0137110818177462, -0.00161918601952493, 0.0145295523107052, -0.00635837018489838, -0.00494802976027131, 0.0146783655509353, -0.00211043772287667, 0.00536741130053997, -0.0195891913026571, -0.000904714921489358, -0.00256533175706863, -0.0145160239189863, 0.0281121134757996, 0.0161123815923929, 0.0516786687076092, -0.00699420738965273, -0.00384207908064127, 0.00314536411315203, 0.02176727168262, -0.0146513087674975, 0.0151112759485841, -0.00745417457073927, 0.00813059695065022, 0.0126490984112024, 0.00201404769904912, 0.014137227088213, 0.0156118283048272, -0.0191698092967272, 0.018669256940484, 0.0166399907320738, 0.00579017540439963, 0.00247063278220594, 0.00804942660033703, 0.0129399597644806, -0.00226263282820582, -0.0032789574470371, 0.00527947675436735, 0.0536808781325817, 0.0070956707932055, -0.0112421400845051, 0.0157200563699007, -0.00714302016422153, -0.010788937099278, -0.133444607257843, -0.0513810440897942, 0.00400780234485865, -0.0150165762752295, 0.0143266255035996, 0.0413699932396412, 0.0268674958497286, 0.0267863254994154, -0.0150977475568652, 0.0159229822456837, -0.00175869814120233, -0.0137990163639188, -0.00147798284888268, -0.0186422001570463, 0.00940227136015892, 0.0131767075508833, -0.0250276271253824, -0.0247300025075674, -0.00676084170117974, 0.0309260301291943, 0.00640233792364597, -0.0117697492241859, -0.00431895675137639, 0.0017519339453429, -0.000957137672230601, 0.0106739448383451, -0.0183039885014296, 0.0292485039681196, 0.00418029027059674, -0.00717007694765925, -0.0186016149818897, -0.0033533638343215, 0.0238506533205509, -0.00706861354410648, -0.0121620744466782, -0.0101598640903831, -0.0247570592910051, -0.0129873091354966, 0.0454555824398994, -0.0229848325252533, 0.0143536822870374, 3.22621744999196e-05, -0.0151653895154595, -0.0331717543303967, 0.00794119853526354, 0.00800207629799843, -0.0153953731060028, 0.0146377803757787, 0.0123717654496431, 0.00664584990590811, -0.0124529357999563, -0.0251899696886539, -0.00127421063371003, 0.00633807759732008, 0.000535641971509904, 0.0195756629109383, 0.0150706907734275, 0.00519830593839288, -0.0230254177004099, -0.0084485150873661, 0.00546549260616302, 0.0101463356986642, -0.0252034980803728, 0.00484994845464826, -0.018574558198452, -0.00153294217307121, -0.0259069763123989, -0.0140560567378998, 0.00990282371640205, -0.023011889308691, -0.00993664469569921, 0.00420396495610476, 0.00079691008431837, 0.0223760511726141, -0.0378525964915752, -0.00835381634533405, -0.0114856520667672, -0.00685554090887308, 0.0247029457241297, 0.00325190043076873, -0.0333611518144608, -0.0232283435761929, 0.0041058836504817, 0.021456116810441, 0.0154224298894405, 0.0139613579958677, -0.00704832095652819, 0.0169646721333265, -0.0236206687986851, -0.00904376711696386, 0.00155154382809997, 0.0328741259872913, -0.000766048324294388, -0.00728506874293089, -0.0125273419544101, 0.0256634652614594, -0.0116885788738728, -0.017329940572381, 0.00718360533937812, 0.0082794101908803, -0.0230660028755665, 0.00115245464257896, -0.0525174327194691, 0.0226195640861988, -0.0176681522279978, -0.00949697010219097, -0.0244053192436695, -0.0228360183537006, -0.000945300271268934, -0.0212396625429392, 0.0147595359012485, 0.0230389460921288, -0.0146107235923409, 0.0173434689640999, 0.0120606105774641, -0.0047721597366035, -0.0343893133103848, -0.0191968660801649, 0.0292214471846819, -0.00143401545938104, 0.0133322849869728, 0.0135081550106406, -0.00917228776961565, -0.0220243129879236, 0.0143672106787562, 0.00917905196547508, 0.0185880865901709, 0.00488715153187513, -0.00923316553235054, 0.0468084290623665, -0.018263403326273, -0.00824558828026056, -0.0133052282035351, -0.0323329903185368, -0.0253928955644369, 0.00641248421743512, -0.00907758809626102, -0.0367432646453381, -0.0124123506247997, 0.0127911465242505, 0.0169105585664511, 0.0342810861766338, -0.0429392904043198, -0.0419381856918335, -0.0150301046669483, -0.0160582661628723, 0.000900487299077213, 0.0122161880135536, 0.0104980748146772, 0.0109918639063835, -0.0170593727380037, -0.00921963714063168, 0.00850939378142357, 0.00563121633604169, -0.022795433178544, -0.0114721236750484, -0.00559063069522381, -0.0228766053915024, 0.00281222607009113, 0.0160582661628723, -0.0133863985538483, 0.00770445074886084, 0.0277333166450262, -0.000779576774220914, 0.0238641817122698, -0.0198732893913984, -0.000700519944075495, 0.0207255817949772, -0.0126693909987807, -0.0237559527158737, 0.0275168623775244, -0.014705422334373, -0.0170999579131603, -0.000833690573927015, -0.00976753886789083, 0.00149404793046415, 0.0202115010470152, -0.00494802976027131, -0.0184528026729822, 0.00666276039555669, -0.0137787237763405, 0.02786860242486, 0.0056548910215497, -0.0132240569218993, -0.0350657366216183, -0.000162658441695385, -0.0161529667675495, -0.0036865018773824, -0.00261775450780988, 0.0214290600270033, -0.021158492192626, 0.026109904050827, -0.0209285076707602, 0.00911140907555819, 0.00110679608769715, 0.000220260029891506, -0.00611824030056596, 0.00534035451710224, -0.0016555436886847, 0.00345313618890941, 0.00280038849450648, -0.0039570708759129, 0.0291132181882858, -0.0051813954487443, -0.00405853427946568, -0.0186963137239218, 0.00239284406416118, -0.0034294615034014, -0.0218078568577766, -0.0134405121207237, -0.0363644659519196, 0.0199003461748362, 0.0241618063300848, 0.0117562208324671, 0.00735947536304593, 0.022281352430582, -0.0142995687201619, 0.0172081850469112, 0.0123108867555857, -0.0152736166492105, -0.0105521893128753, 0.014448381960392, 0.00827264599502087, 0.0200221017003059, 0.00761651573702693, 0.00369664817117155, 0.0234583280980587, 0.00275303912349045, 0.00373723357915878, -0.010058400221169, 0.0019396411953494, -0.004900679923594, 0.000301219348330051, -0.00491759041324258, -0.0247976444661617, -0.0212802477180958, -0.0337670035660267, -0.0219025555998087, -0.0128317326307297, -0.0016665356233716, 0.00619941111654043, 0.0105995386838913, 0.0128317326307297, -0.00909111648797989, 0.00287817721255124, -0.0018804541323334, 0.00609794771298766, 0.00725124776363373, 0.000734763802029192, -0.0227142628282309, -0.0122973583638668, 0.0381502211093903, 0.0142048699781299, 0.0115532940253615, -0.0126626268029213, -0.000623999629169703, 0.008773198351264, -0.00250952690839767, 0.0238641817122698, -0.0359315574169159, 0.0265563428401947, 0.00187030783854425, 0.0282203406095505, 0.0175734534859657, -0.00478907022625208, -0.00102477986365557, -0.0322788767516613, 0.0300060957670212, -0.00781944300979376, 0.017235241830349, -0.0369597189128399, 0.0203603133559227, 0.00313014443963766, -0.0303848925977945, -0.0174111109226942, -0.00209521828219295, -0.0182228181511164, 0.00712949177250266, 0.00213749473914504, -0.00128182035405189, 0.0396654084324837, -0.0124529357999563, 0.0333070382475853, -0.00923316553235054, -0.0431828051805496, -0.00467407843098044, 0.0224301666021347, 0.00284435600042343, 0.01294672396034, -0.00277840485796332],id:"55c137d331da5350fd87e0b09c58ab2a",source:"state_of_union.txt",text:"We are inflicting pain on Russia and supporting the people of Ukraine. Putin is now isolated from the world more than ever.
Together with our allies –we are right now enforcing powerful economic sanctions.
We are cutting off Russia’s largest banks from the international financial system.
Preventing Russia’s central bank from defending the Russian Ruble making Putin’s $630 Billion “war fund” worthless.
We are choking off Russia’s access to technology that will sap its economic strength and weaken its military for years to come.
Tonight I say to the Russian oligarchs and corrupt leaders who have bilked billions of dollars off this violent regime no more.
The U.S. Department of Justice is assembling a dedicated task force to go after the crimes of Russian oligarchs.
We are joining with our European allies to find and seize your yachts your luxury apartments your private jets. We are coming for your ill-begotten gains."})
(:Chunk{embedding:[-0.0197475515305996, -0.0317660681903362, 0.0147409429773688, -0.00962809287011623, -0.00376823637634516, 9.503591718385e-05, -0.00785519555211067, -0.00716462917625904, -0.00630142074078321, -0.0114673906937242, 0.000138922594487667, 0.0112615488469601, -0.000607150897849351, -0.00387115753255785, -0.00969449337571859, -0.0119255557656288, 0.0101460181176662, -0.018990583717823, 0.0336518436670303, -0.0393091812729836, -0.0162283163517714, -0.0219387728720903, -0.0169852841645479, -0.0337049663066864, -0.0145019004121423, -0.00524897081777453, 0.0279679503291845, -0.020079554989934, 0.0253384858369827, -0.0218856520950794, -0.0121380370110273, -0.00501988874748349, -0.0101725785061717, 0.00411351956427097, -0.0216997303068638, -0.0326159968972206, 0.00535521190613508, -0.0134992506355047, 0.0118657946586609, -0.0228152610361576, 0.0129879657179117, 0.0153783885762095, 0.0101725785061717, -0.0102323386818171, -0.0334128029644489, 0.00875160470604897, -0.0157236717641354, -0.00594617752358317, 0.0108830649405718, 0.0283132344484329, 0.0225894991308451, 0.0312879830598831, -0.0465866923332214, -0.0273570641875267, -0.00783527549356222, 0.00746343238279223, -0.00748999230563641, 0.00513940956443548, -0.00954841263592243, -0.0108897052705288, -0.00622506020590663, 0.00212980061769485, -0.0183132980018854, 0.0158697534352541, -0.00635786168277264, -0.0108498651534319, 0.000603000808041543, -0.0156174311414361, 0.0024883639998734, 0.0111221075057983, 0.0457898825407028, 0.0350329801440239, 0.0117396339774132, 0.00982065498828888, 0.0317395068705082, 0.0108565045520663, 0.0158033519983292, -0.00855904258787632, -0.0129414852708578, 0.00169155630283058, 0.0289772395044565, -0.0162283163517714, -0.0241963937878609, 0.000818802916910499, 0.028260113671422, -0.0204646773636341, -0.0185656193643808, 0.0324035137891769, -0.0301458910107613, 0.014887023717165, 0.0132137276232243, 0.0140503756701946, 0.00306272972375154, 0.0405043922364712, -0.00407699961215258, 0.0115470718592405, -0.0295084454119205, 0.0307833384722471, -0.00650726305320859, -0.0363078713417053, 0.0240370333194733, -0.0180609747767448, -0.0288975592702627, -0.00224600173532963, -0.026693057268858, 0.0186054594814777, 0.00926288962364197, -0.00820047967135906, 0.0130809266120195, -0.00998001638799906, -0.0107768243178725, -0.022629339247942, 0.0218590907752514, -0.025165842846036, 0.0261220131069422, 0.00147326430305839, 0.00186419801320881, 0.0152987083420157, -0.0222973357886076, -0.00174799689557403, 0.0433728992938995, 0.00818719901144505, 0.0193757079541683, 0.0279148295521736, 0.0124899605289102, -0.0259095299988985, 0.0125563610345125, -0.011321309953928, -0.00518257031217217, -0.00626822048798203, 0.0213146060705185, 0.0120517164468765, 0.00251160422340035, -0.0184992197901011, -0.00713142892345786, 0.0209162030369043, -0.0281273126602173, 0.00953513197600842, -0.0120450761169195, -0.00416664034128189, 0.0212349258363247, -0.00272076623514295, -0.0307567771524191, -0.00315071037039161, 0.0151260662823915, 0.0263610556721687, 0.027224263176322, -0.015936154872179, 0.00829344056546688, -0.0106108225882053, 0.0021912211086601, -0.00754311308264732, -0.00560089433565736, -0.0261087324470282, 0.0219653323292732, 0.0167462415993214, -0.018034415319562, 0.023651909083128, 0.00936913024634123, -0.00811415817588568, -0.0169720035046339, -0.0184328183531761, 0.00234726280905306, 0.012084917165339, -0.000985219492577016, 0.0124899605289102, 0.0178484935313463, 0.00395415816456079, -0.0162947177886963, 0.010796744376421, 0.0322441533207893, 0.00803447794169188, -0.0069787073880434, 0.0266797784715891, -0.000405458908062428, 0.0478615835309029, 0.00464804517105222, -0.00381139689125121, 0.000995179638266563, -0.00992689561098814, -0.018034415319562, 0.00116450130008161, 0.0364672318100929, 0.0175297688692808, 0.0091500086709857, -0.00833328068256378, 0.0297209266573191, 0.00535521190613508, 0.00320217106491327, -0.015139346010983, -0.00220948131754994, 0.0199733134359121, 0.00751655269414186, 0.00603249855339527, -0.628521919250488, -0.0134660499170423, 0.0151791870594025, 0.00998665671795607, -0.00891096610575914, -0.00388775765895844, 0.0112217087298632, -0.00445216288790107, -0.0278617087751627, 0.0220848526805639, -0.0142230177298188, 0.00156124506611377, -0.0388576574623585, -0.0121048372238874, 0.00261452537961304, -0.0192296262830496, -0.0107037834823132, -0.0285522770136595, 0.0230144634842873, -0.0190702639520168, -0.006171939894557, 0.0424167290329933, 0.0207568407058716, -0.00082793302135542, 0.0198139511048794, -0.0125696416944265, 0.0086785638704896, -0.00328351184725761, -0.032828476279974, 0.0214075669646263, 0.00168076623231173, 0.0138378934934735, -0.0221379734575748, 0.00179281737655401, 0.0442759469151497, -0.00210822047665715, -0.00800791755318642, 0.0110822673887014, 0.0115537121891975, 0.00196711905300617, -0.00243192352354527, -0.0048505668528378, -0.00884456560015678, -0.0190835446119308, 0.00609557889401913, -0.00790831632912159, 0.00342295318841934, -0.0130809266120195, 0.00819383934140205, -0.0164540782570839, -0.00291332812048495, 0.00804111734032631, -0.0223504565656185, 0.00412015989422798, 0.0035723545588553, -0.00377155654132366, -6.75937772030011e-05, -0.02517912350595, -0.0103518599644303, -0.00370515580289066, 3.64166007784661e-05, 0.00626822048798203, -0.00891096610575914, 0.00363211520016193, -0.0360422693192959, -0.00346943363547325, -0.0298537295311689, 0.0180742554366589, 0.00559425400570035, -4.73039744974812e-06, -0.00300794909708202, 0.0172641668468714, -0.00760951358824968, -0.0022360417060554, 0.0161087960004807, 0.0151127865538001, 0.0188843421638012, -0.0156439915299416, -0.0170384049415588, -0.00301458919420838, -0.0228418204933405, -0.0218856520950794, -0.0225894991308451, 0.00288676796481013, 0.0229746215045452, 0.0056174942292273, -0.0155775910243392, 0.0258298497647047, 0.00623834040015936, 0.000360430974978954, 0.00754311308264732, 0.0447805933654308, -0.0142230177298188, -0.0153518281877041, -0.00198869919404387, 0.0230011828243732, -0.0016251556808129, -0.00661682384088635, 0.0260556116700172, 0.00592625746503472, -0.00125497218687087, -0.00500660855323076, -0.00284028751775622, -0.0037649164441973, -0.0239175111055374, 0.0260423310101032, -0.046746052801609, 0.0185789000242949, 0.0170251242816448, -0.0305974166840315, 0.0104846609756351, -0.00762279378250241, -0.010544422082603, -0.00340635282918811, 0.0245018377900124, -0.0269586611539125, 0.0240237526595592, 0.00936913024634123, -0.00686582643538713, -0.0391498170793056, -0.00208166008815169, 0.0111951483413577, 0.024090152233839, -0.0196413099765778, 0.00205675978213549, 0.00796807743608952, 0.000461484451079741, -0.0097011337056756, -0.0313145443797112, -0.0035723545588553, 0.0197608303278685, -0.0126559622585773, 0.0468257330358028, -0.0133797293528914, 0.00246512377634645, -1.12180771338899e-06, 0.0109029849991202, -0.0247674398124218, 0.00438576238229871, -0.000711731903720647, -0.0275164265185595, 0.0150995058938861, -0.0017214366234839, -0.000270375108812004, -0.00675626518204808, -0.0225230976939201, -0.0096612935885787, 0.00859888270497322, -0.0293225236237049, 0.00647074263542891, 0.0261485725641251, -0.00347275356762111, 0.00514272972941399, -0.0178484935313463, 0.0187249816954136, 0.00580341601744294, -0.0192827470600605, -0.0149534242227674, -0.0129414852708578, -0.0155908707529306, 0.0285257156938314, 0.0156838316470385, -0.00906368810683489, 0.0268258601427078, -0.00477752601727843, -0.00228418200276792, -0.00424964120611548, -0.00888440571725368, 0.00524233048781753, 0.00236386293545365, 0.00242694350890815, -0.00133216287940741, 0.0114474706351757, -0.00260954513214529, 0.0176360104233027, 0.0151127865538001, -0.00287680793553591, 0.0165868811309338, -0.0159627143293619, 0.013107487000525, 0.0294818859547377, -0.0048472466878593, -0.0409824773669243, 0.00547805288806558, 0.0120251560583711, 0.00935585051774979, 0.00113794102799147, 0.0197342708706856, 0.00511948950588703, 0.00345947337336838, -0.00228584208525717, 0.021035723388195, 2.06334807444364e-05, -0.00198205909691751, -0.0170118436217308, -0.0160955153405666, -0.00247342395596206, 0.00270582619123161, 0.0081672789528966, -0.00193059863522649, 0.0259228106588125, -0.0165736004710197, 0.0397872664034367, 0.00876488443464041, 0.00494352774694562, -0.00359559478238225, 0.0112150683999062, -0.0152987083420157, 0.0202654767781496, 0.0133266085758805, 0.0123040387406945, -0.0271711423993111, -0.0226691793650389, -0.0157900732010603, -0.00138611334841698, 0.0296943672001362, -0.00567393470555544, -0.00623502023518085, -0.0108897052705288, 0.0114939510822296, 0.00777551531791687, -0.0219122115522623, 0.0176360104233027, -0.00486052688211203, -0.0250728819519281, -0.0169852841645479, -0.00802119728177786, 0.0128950048238039, 0.0147409429773688, 0.000618355988990515, -0.0130078857764602, -0.00340967299416661, 0.00130394264124334, 0.0108697852119803, 0.0162947177886963, 0.00136702321469784, 0.000521245063282549, 0.000120973672892433, 0.0438775457441807, -0.00913672801107168, -0.00111221079714596, 0.00379811669699848, 0.0198936332017183, 0.00864536315202713, 0.0100464168936014, 0.00131722271908075, 0.0348470583558083, -0.000111324829049408, -0.0164939202368259, 0.00689902668818831, 0.0136254113167524, 0.0032552913762629, 0.0075696730054915, -0.0112748295068741, -0.0070650284178555, -0.035909466445446, 0.00219620135612786, -0.013612131588161, 0.0522971451282501, 0.0307567771524191, 0.0183398574590683, -0.00921640917658806, 0.00289672799408436, 0.02517912350595, 0.0039574783295393, 0.00942889135330915, 0.00421976065263152, -0.00592293730005622, 0.00773567473515868, 0.00873168464750051, -0.0234659872949123, -0.015139346010983, 0.00149650452658534, 0.00853248219937086, 0.0190702639520168, 0.0175032094120979, -0.0116001926362514, -0.00574033567681909, 0.0103120198473334, 0.0121114775538445, -0.0178219322115183, -0.0409293547272682, 0.0206505991518497, 0.0186984203755856, -0.0133266085758805, 0.00313909025862813, -0.00815399922430515, 0.015139346010983, -0.0380874089896679, 0.0288709998130798, -0.00505640869960189, -0.00578017579391599, -0.0431869775056839, 0.0210091639310122, -0.000556935381609946, -0.0187913812696934, 0.0321379117667675, -0.00250496412627399, 0.0133398892357945, -0.0140105355530977, 0.00711150886490941, -0.011560351587832, -0.0074036717414856, -0.00626822048798203, 0.0099136158823967, 0.00688574649393559, 0.000379521166905761, -0.011560351587832, 0.022058293223381, 0.00682598585262895, 0.000904708751477301, -0.0141034964472055, -0.0158033519983292, 0.0313676632940769, 0.0149667048826814, 0.00665002409368753, -0.0360953882336617, -0.0202920362353325, 0.00828680023550987, 0.023665189743042, -0.00424632104113698, -0.00958161242306232, -0.0411152765154839, -0.0315004661679268, 0.125151932239532, 0.0133266085758805, 0.00125082209706306, 0.00185589795000851, 0.0177555326372385, -0.00362879503518343, 0.00469452561810613, -0.0381405279040337, -0.0113744297996163, -0.00473104557022452, -0.00450860382989049, 0.00982729531824589, 0.00206339987926185, 0.0165204796940088, 0.0315270237624645, 0.0109561057761312, 0.0114474706351757, -0.0141433365643024, -0.00789503660053015, -0.00832000002264977, 0.0365469120442867, 0.0027224263176322, -0.0157369524240494, 0.043665062636137, 0.0231871046125889, 0.0337580852210522, 0.0237050298601389, 0.00724430987611413, 0.0153119880706072, -0.0275164265185595, -0.0295084454119205, 0.000635786156635731, -0.0194686688482761, 0.0317129455506802, -0.0175430495291948, -0.0301458910107613, -0.0103850606828928, 0.00153966492507607, 0.015922874212265, -0.00919648911803961, -0.00265602557919919, 0.00234726280905306, -0.000734972127247602, -0.0142761385068297, -0.00394751830026507, -0.00367859564721584, -0.00513608986511827, 0.0165470391511917, -0.015936154872179, -0.0244354363530874, 0.0245815180242062, -0.00267096585594118, -0.0250861626118422, -0.00238544307649136, -0.0241299942135811, 0.0134527701884508, -0.0114541109651327, -0.00326525163836777, -0.0289772395044565, -0.020079554989934, -0.00964801292866468, -0.00440568244084716, 0.00245018373243511, -0.0135523714125156, -0.0284194741398096, -0.0231871046125889, -0.0112947495654225, 0.000715881935320795, -0.0162548776715994, -0.0313676632940769, 0.0368390753865242, -0.0291897226125002, -0.0204912386834621, 0.0213677268475294, 0.0113412300124764, 0.00280044716782868, -0.00512944953516126, -0.00794815644621849, -0.00534857157617807, 0.00976089481264353, 0.0114607512950897, -0.0177820920944214, 0.00423636101186275, -0.0299068484455347, -0.0265602562576532, -0.00766263389959931, -0.00322375120595098, 0.0013736633118242, -0.0410355962812901, -0.00583661627024412, -0.0071048685349524, -0.00665334425866604, -0.00107486033812165, -0.00923632923513651, 0.0229347813874483, 0.00109810067806393, -0.0171977654099464, 0.0198537912219763, 0.00549797294661403, 0.00905704777687788, 0.00201027933508158, -0.00615201937034726, -0.00686582643538713, -0.0206904392689466, -0.00359891471453011, -0.0137316528707743, 0.0194421075284481, 0.0199069119989872, 0.00653382297605276, 0.0167993623763323, 0.00511284964159131, -0.0349798575043678, -0.0264274552464485, 0.00849264208227396, -0.0242495145648718, -0.0045982445590198, 0.0246611982584, 0.0197475515305996, -0.00325363152660429, 0.00460156472399831, -0.00908360816538334, -0.0273570641875267, -0.00345947337336838, 0.0240503121167421, 0.000275355152552947, 0.00708494847640395, -0.0158166326582432, -0.0418058447539806, -0.023651909083128, 0.0135324504226446, -0.0172376073896885, 0.0239440724253654, 0.00930937007069588, -0.0233199056237936, -0.0152057474479079, -0.00749663263559341, -0.0127688432112336, 0.0180078539997339, -0.0103319399058819, -0.0252853650599718, 0.000457749440101907, 0.00741031160578132, -0.00859888270497322, -0.00585321662947536, 0.00657698372378945, -0.0259892120957375, 0.00202189944684505, 0.000903878768440336, 0.00173637678381056, 0.00327023165300488, -0.0304114948958158, -0.0115337911993265, -0.010278819128871, -0.00766263389959931, 0.000684756611008197, -0.0326159968972206, 0.00550129311159253, -0.00107569037936628, 0.0119122751057148, 0.0136519717052579, 0.0312083009630442, 0.0115470718592405, 0.0081672789528966, -0.00827351957559586, -0.000450694351457059, -0.000761532341130078, 0.0231738239526749, 0.0160955153405666, -0.00158863537944853, 0.0151924667879939, 0.0201326739042997, 0.0153119880706072, -0.0300662107765675, -0.00652054324746132, -0.00591297727078199, 0.00556437391787767, -0.0124501204118133, -0.00614869967103004, -0.0355641841888428, 0.00511284964159131, 0.00487048691138625, -0.00175297691021115, -0.00949529185891151, 0.0111154671758413, -0.0183398574590683, -0.0308630187064409, 0.0310754999518394, -0.0235456675291061, 0.0304114948958158, -0.0282069928944111, -0.00653050327673554, 0.011832594871521, 0.0272508226335049, 0.00261120521463454, -0.012323958799243, 0.0013404629426077, -0.00553449336439371, -0.0160822346806526, -0.00098272948525846, 0.00237548304721713, 0.011308029294014, 0.0191101040691137, -0.0167196821421385, 0.00201359950006008, -0.00365535542368889, 0.0365469120442867, -0.00417328020557761, 0.00101758982054889, -0.00316897057928145, -0.0243026353418827, -0.00175795704126358, -0.00747671211138368, 0.00513940956443548, -0.012841884046793, -0.00257468479685485, 0.0137050924822688, 0.0218059699982405, -0.00303616933524609, -0.00784855615347624, -0.0137050924822688, 0.00400727894157171, -0.0134726902469993, 0.0223504565656185, 0.00764935417100787, 0.025192404165864, 0.0198139511048794, 0.000573120545595884, -0.0479678250849247, 0.0171844866126776, 0.00144587398972362, 0.0119056347757578, 0.0145417405292392, 0.00593953765928745, -0.042655773460865, 0.00737711135298014, 0.0103385802358389, 0.0176758505403996, 0.0309692602604628, -0.0116865132004023, 0.0256173685193062, -0.0129348449409008, 0.00945545174181461, -0.0298537295311689, -0.0457898825407028, -0.0252189636230469, 0.0110889067873359, -0.0380077287554741, -0.000939569086767733, -0.00168989633675665, -0.0280741918832064, -0.0153119880706072, 0.0268391389399767, -0.00782863609492779, 0.0266664978116751, 0.00589969707652926, -0.0133996494114399, 0.0167196821421385, -0.00471776584163308, -0.0136785320937634, -0.000532450154423714, -0.0179281737655401, 0.0228019803762436, -0.0149799846112728, 0.0187382604926825, -0.0235589481890202, 0.00957497302442789, -0.0265336968004704, -0.0184460990130901, -0.013107487000525, 0.0162548776715994, -0.0422573685646057, -0.000786432588938624, 0.0101592978462577, -0.0124434800818563, 0.000520415022037923, -0.00973433442413807, -0.0116798728704453, -0.00803447794169188, -0.020504517480731, -0.0105112213641405, 0.0125032411888242, -0.0144089395180345, -0.0379014872014523, 9.64884311542846e-05, -0.0018094175029546, -0.0159759949892759, -0.0102389790117741, -0.0216598901897669, 0.020517798140645, 0.00449864333495498, -0.00804775767028332, -0.00282534724101424, -0.00903712771832943, -0.0113345896825194, 0.00965465325862169, 0.00161602557636797, 0.0204513985663652, 0.000206049488042481, -0.0197873916476965, 0.0222043748944998, 0.0041267997585237, 0.0316598266363144, -0.0271445829421282, 0.00515600992366672, -0.0211685243993998, -0.0282866731286049, 0.00215138075873256, -0.0233730264008045, -0.0263477750122547, -0.00926288962364197, -0.00292162830010056, -0.0166267212480307, 0.0153385484591126, -0.017436807975173, 0.0328019186854362, 0.0089773666113615, 0.0212747659534216, -0.0144089395180345, -0.0169720035046339, 0.0378218069672585, -0.0058266562409699, 0.00760287372395396, 0.0184328183531761, -0.0154315093532205, -0.00360555481165648, 0.0020434798207134, 0.021035723388195, 0.0116333924233913, 0.00258464505895972, 0.00581337604671717, -0.00556105375289917, 0.00447540311142802, 0.0107701839879155, -0.0279413908720016, -0.0168392024934292, 0.00369851570576429, -0.0196147505193949, 0.00679942592978477, 0.0307302176952362, 0.0250463224947453, 0.0221379734575748, 0.00864536315202713, 0.0344220921397209, 0.00984057504683733, -0.0038279970176518, -0.03080989792943, 0.00771575467661023, -0.00330841192044318, -0.0140503756701946, -0.00649066269397736, 0.00431604171171784, 0.0405309535562992, 0.0142761385068297, -0.0106041822582483, -0.0166798420250416, 0.0251392833888531, -0.0180875342339277, 0.0196280293166637, -0.0379280485212803, 0.0238909516483545, 0.026135291904211, 0.0308630187064409, -0.00039674382423982, 0.0478084608912468, 0.00719782942906022, 0.0183796975761652, 0.0350064188241959, -0.0225762184709311, -0.00339473271742463, -0.0353782624006271, -0.00746343238279223, 0.0218325313180685, -0.0129946060478687, 0.00562413455918431, 0.0186452995985746, -0.00309759005904198, 0.00976089481264353, 0.0264141745865345, -0.0136785320937634, -0.0199733134359121, 0.00118027138523757, 0.0268657002598047, 0.00170317641459405, 0.0234659872949123, 0.000903878768440336, -0.0318988673388958, -0.00413675978779793, 0.0237581506371498, 0.0247674398124218, -0.026201693341136, 0.0127422828227282, -0.0170384049415588, -0.0101393777877092, -0.00136868318077177, -0.0416996031999588, 0.0051062093116343, 0.00700526777654886, -0.0270516220480204, 0.0194022674113512, 0.0237714294344187, 0.0108100241050124, 0.00616197939962149, 0.000246719893766567, -0.0159494336694479, 0.00112134090159088, -0.00917656905949116, -0.00632798112928867, 0.0197741109877825, 0.00405375938862562, 0.00164507585577667, 0.0168126430362463, 0.0199069119989872, 0.0266797784715891, -0.000587230664677918, -0.00106324022635818, 0.00895080622285604, 0.0171579252928495, -0.0109029849991202, 0.0156439915299416, -0.00529877142980695, 0.00494352774694562, 0.0126360422000289, -0.0465866923332214, -0.00123920198529959, -0.0210755635052919, -0.0118392342701554, 0.013353168964386, -0.0384326912462711, -0.0360688306391239, 0.00596941774711013, -0.0185523387044668, -0.0355641841888428, -0.00403715902939439, 0.000286975264316425, 0.0128153236582875, 0.0172774475067854, 0.246266707777977, -0.0269453804939985, 0.0293225236237049, 0.0174766480922699, -0.00331505201756954, 0.0196944307535887, 0.0109029849991202, -0.00179447734262794, 0.00149650452658534, -0.00389771768823266, -0.020531078800559, 0.00504644867032766, -0.0258165691047907, 0.006298101041466, -0.00853912252932787, -0.0013944135280326, -0.0449133925139904, -0.0271047428250313, -0.0228152610361576, 0.0439306646585464, -0.00379811669699848, 0.00437580235302448, -0.000477254623547196, 0.00355575443245471, 0.0175828896462917, 0.0129282046109438, 0.00100347970146686, 0.0167595222592354, 0.00102090986911207, -0.00423968117684126, -0.0420980080962181, 0.00543821277096868, 0.00937577057629824, -0.00377155654132366, 0.00358563475310802, -0.022616058588028, 0.0223770160228014, 0.00484060682356358, 0.0173438470810652, 0.0160689558833838, 0.018977303057909, 0.00674630515277386, 0.0136918127536774, -0.00142014375887811, 0.0211154036223888, 0.0273836255073547, -0.00656370352953672, -0.0172774475067854, 0.000926288950722665, 0.00634458148851991, -0.0243291947990656, -0.0235589481890202, 0.0141034964472055, 0.0343158505856991, 0.0130742862820625, 0.00650394288823009, 0.0274898651987314, 0.0153119880706072, -0.00237880297936499, 0.00457832450047135, -0.00845944136381149, 0.0283663552254438, -0.00509292911738157, 0.0217262897640467, -0.0166400000452995, 0.0522705838084221, 0.00268424605019391, 0.0314473435282707, 0.00291332812048495, 0.00550461327657104, -0.00505308900028467, 0.000300047890050337, -0.0179414544254541, -0.00186585809569806, -0.0213278867304325, -0.0195217896252871, 0.0231207031756639, 0.0393091812729836, 0.0326425544917583, -0.00974761415272951, -0.00450860382989049, 0.00375827634707093, 0.00462812464684248, -0.00376159627921879, -0.00648734252899885, -0.00719782942906022, 0.0292162820696831, 0.00476424628868699, -0.0137316528707743, -0.0062084598466754, 0.0117993941530585, -0.027224263176322, -0.0118060344830155, 0.00764271384105086, 0.0282069928944111, 0.0241831131279469, 0.0105178616940975, 0.00388111756183207, -0.0214075669646263, -0.000457749440101907, 0.00144172389991581, 0.0308895781636238, 0.02110212482512, 0.00266266567632556, -0.00264606554992497, -0.0156572721898556, -0.0115537121891975, 0.00607233867049217, -0.00726423040032387, -0.0377155654132366, 0.0183664169162512, -0.0269852206110954, 0.0198139511048794, -0.0139308543875813, 0.00169985648244619, -0.0218458119779825, 0.00811415817588568, -0.00980737525969744, 0.0183000173419714, -0.013864453881979, 0.00845944136381149, -0.0325894355773926, -0.00402387883514166, -0.014130056835711, -0.015909593552351, -0.00219288119114935, -0.0307036563754082, -0.0165868811309338, -0.00630474090576172, -0.0225230976939201, 0.027224263176322, -0.000238834807532839, 0.0112681891769171, -0.0300396513193846, -0.00975425448268652, 0.00205509993247688, 0.010039777494967, 0.00542825227603316, 0.00345615344122052, 0.0139574147760868, -0.015936154872179, -0.00285854772664607, 0.0074036717414856, 0.00480076624080539, 0.00915664900094271, -1.77025158336619e-05, 0.0234394259750843, -0.00345283350907266, -0.0204248372465372, 0.0108697852119803, -0.0327222347259521, 0.00527553120627999, -0.00878480542451143, -0.0153916692361236, -0.00499332835897803, 0.00657034339383245, -0.00569385522976518, -0.0144089395180345, 0.00200031930580735, 0.0417261645197868, -0.0372109189629555, 0.00669982470571995, 0.0329081565141678, -0.0364141128957272, -0.0229879021644592, -0.0153252677991986, -0.167542099952698, 0.0254978463053703, -0.018472658470273, -0.00877816509455442, 0.00844616163522005, 0.00103501998819411, 0.00694550713524222, -0.00391431804746389, -0.0162150375545025, -0.0279679503291845, 0.0130344461649656, 0.0223106164485216, -0.00567061500623822, -0.0221512541174889, 0.00895744655281305, 0.00338477268815041, -0.0355907455086708, 0.00189241825137287, 0.00532865151762962, 0.0334128029644489, 0.0469054132699966, -0.01055106241256, 0.00419984059408307, -0.0149932652711868, 0.00131307274568826, 0.00864536315202713, -0.0226558987051249, -0.00920312944799662, -0.0162283163517714, -0.0299599692225456, -0.0250728819519281, -0.0104381805285811, 0.02621497400105, 0.0267594587057829, -0.00546477269381285, 0.0144753400236368, 0.00355575443245471, 0.00301790912635624, -0.0181672163307667, 0.0247674398124218, 0.0310489404946566, 0.0192694664001465, -0.00965465325862169, -0.00704510835930705, -0.00577353592962027, 0.0187117010354996, 0.00770911434665322, -0.00091051880735904, 0.0091101685538888, -0.00127074227202684, 0.00386451743543148, -0.0025514445733279, 0.00332999229431152, -0.00745015218853951, 0.00486716721206903, 0.0310223791748285, 0.00479744654148817, -0.015922874212265, 0.0120384367182851, -0.0107303438708186, -0.0199201926589012, -0.00173637678381056, -0.00772239454090595, -0.00542493257671595, 0.00301126902922988, -0.00891096610575914, 3.16699952236377e-05, 0.0407168753445148, -0.0187249816954136, 0.0135457310825586, 0.0117263533174992, 0.00129066244699061, 0.0174766480922699, -0.0147807830944657, -0.0175430495291948, -0.00839304085820913, -0.0108897052705288, 0.0169056039303541, -0.0017131365602836, 0.00328683177940547, -0.00935585051774979, 0.0275429859757423, 0.00067023147130385, -0.0223371759057045, -0.00525893084704876, 0.0118857147172093, 0.0101858582347631, 0.00102339987643063, 0.00381471682339907, 0.0177555326372385, -0.00174301688093692, -0.0225496590137482, -0.0131738875061274, -0.0125231612473726, 0.00130394264124334, 0.0153783885762095, 0.0192561857402325, 0.0274633057415485, 0.0134527701884508, -0.0184195376932621, -0.00887776631861925, 0.000316648074658588, -0.0160689558833838, -0.00928280968219042, 0.0165868811309338, 0.0089375264942646, 0.0124102802947164, 0.0116931535303593, 0.000801372749265283, -0.0116599528118968, -0.0154580697417259, 0.0190702639520168, 0.0154182286933064, 0.0191101040691137, 0.00615865970030427, 0.0108498651534319, 0.0134195694699883, 0.0012433520751074, 0.0130676459521055, 0.00841296091675758, 0.0389107763767242, 0.00508296908810735, -0.00921640917658806, -0.0100862579420209, -0.0218590907752514, -0.00338311260566115, -0.115377753973007, -0.040610633790493, 0.0179148931056261, -0.00220616138540208, 0.00549133308231831, 0.0295350048691034, 0.0118989953771234, 0.042044885456562, -0.0157103911042213, 0.0162415970116854, -0.0355376228690147, 0.00666994461789727, -0.00602917838841677, -0.00534857157617807, 0.0086785638704896, 0.00555109372362494, -0.00980073492974043, -0.0222309343516827, -0.0035723545588553, -0.00241366331465542, 0.0125165209174156, -0.0240104719996452, 0.016945444047451, -0.0044687632471323, 0.0142230177298188, 0.0101128173992038, -0.0161353554576635, 0.0141831776127219, -0.00206007994711399, -0.0168259218335152, -0.0208365209400654, -0.00492360768839717, 0.0205576382577419, -0.0209560431540012, -0.0139839751645923, -0.0129481256008148, -0.042629212141037, -0.0107635436579585, 0.0286850780248642, -0.0138511741533875, 0.0160025544464588, 0.0143558187410235, -0.0142495781183243, -0.0332800000905991, 0.0114873107522726, -0.0193358678370714, -0.0128219639882445, -0.00419652042910457, -0.00963473320007324, 0.00932929012924433, -0.00930937007069588, -0.020517798140645, -0.0142628578469157, 0.00244520371779799, -0.00528217107057571, 0.0291897226125002, 0.0136519717052579, 0.0124833211302757, -0.0189374629408121, -0.0360157079994678, 0.0114607512950897, 0.00306604965589941, -0.0565733462572098, 0.00943553168326616, -0.0159759949892759, 0.000342585815815255, -0.00784191582351923, -0.0178883336484432, 0.00806103833019733, 0.0110955471172929, -0.0171180851757526, 0.0269719399511814, 0.00237548304721713, 0.0204381179064512, -0.0343424119055271, 0.00552453333511949, -0.0267328992486, -0.0119189154356718, 0.0328815989196301, -0.00158116524107754, -0.0144620602950454, -0.0263876151293516, 0.00752983288839459, -0.0075763133354485, 0.0249002408236265, 0.0352454595267773, 0.00938241090625525, 0.0134461298584938, -0.0116001926362514, 0.0153119880706072, -0.00496344780549407, 0.0267461780458689, 0.0146878222003579, -0.00394419813528657, -0.00892424676567316, 0.0293756444007158, -0.000832083052955568, -0.0170516856014729, 0.0051028891466558, 0.0137847736477852, -0.0194022674113512, 0.00946209114044905, -0.0506504103541374, 0.0147542227059603, -0.00666330428794026, 0.00198869919404387, -0.0198670718818903, -0.00954841263592243, 0.0267594587057829, -0.0208896417170763, 0.00286352774128318, 0.0107369842007756, -0.0142761385068297, 0.0311286207288504, 0.0041699605062604, 0.0120981968939304, -0.0203318763524294, -0.0147276623174548, 0.0223902966827154, -0.0122708389535546, 0.00352255417965353, 0.0123505191877484, -0.00975425448268652, -0.0161751955747604, 0.0159892737865448, 0.0254048854112625, 0.0142894182354212, -0.00441564293578267, 0.0101725785061717, 0.0300662107765675, -0.00105992029421031, -0.0024468635674566, 0.00496344780549407, -0.0236917492002249, -0.0309426989406347, 0.00415336014702916, -0.0266532171517611, -0.0265868175774813, -0.0237581506371498, 0.0227754209190607, -0.00237880297936499, 0.0268657002598047, -0.0433463379740715, -0.0423370487987995, -0.00653382297605276, -0.0271844230592251, -0.00403383886441588, 0.00708494847640395, 0.00978081487119198, -0.00717126950621605, 0.00206007994711399, -0.0158033519983292, -0.00575693557038903, -0.0114076305180788, -0.0210490040481091, -0.0150198256596923, -5.96049503656104e-05, -0.00812079850584269, 0.0225762184709311, -0.00400727894157171, -0.0181140955537558, -0.00133133283816278, 0.0394951030611992, 0.0139175746589899, 0.0187781024724245, -0.0284991562366486, 0.00218292116187513, 0.0137847736477852, -0.00521909026429057, -0.0072775105945766, 0.0162283163517714, -0.0144753400236368, -0.0133398892357945, 0.0155908707529306, 0.00954841263592243, -0.00870512425899506, 0.0135125303640962, 9.4205912319012e-05, -0.00666662445291877, -0.00258796499110758, -0.00661350414156914, 0.010790104046464, 0.00511948950588703, -0.0178086515516043, -0.0458430051803589, -0.0037018358707428, -0.0199733134359121, 0.00494020758196712, -0.00802119728177786, 0.0147675024345517, -0.00923632923513651, 0.0279945116490126, -0.0242760740220547, 0.0127024427056313, -0.0081739192828536, 0.01055106241256, 0.00182269758079201, 0.000649896275717765, 0.00824696011841297, 0.0153518281877041, 0.00609889905899763, -0.00119770155288279, 0.011049066670239, -0.0103850606828928, -0.010039777494967, -0.0247541591525078, 0.00682598585262895, 0.0121712377294898, -0.01284852437675, -0.0181008148938417, -0.0451524369418621, 0.0168392024934292, 0.0198936332017183, 0.0324566327035427, 0.0216466095298529, 0.0227090194821358, -0.000142450124258175, 0.00106988032348454, -0.000539505213964731, -0.00778215518221259, -0.00491696735844016, 0.00932264979928732, 0.0142362974584103, 0.0248205605894327, 0.0024468635674566, -0.00297308876179159, 0.0165736004710197, 0.000939569086767733, 0.00798799749463797, -0.0197077114135027, 0.00346943363547325, -0.00104913010727614, 0.0190968252718449, 0.00577021576464176, -0.0390170179307461, -0.0198537912219763, -0.0356704257428646, -0.026188412681222, -0.00398403871804476, 0.00245848367922008, -0.00375827634707093, 0.0290038008242846, 0.00244354363530874, -0.00251658423803747, -0.00577685609459877, 0.0173438470810652, 0.0177555326372385, 0.0122376382350922, -0.0119255557656288, -0.0219918917864561, -0.00932264979928732, 0.00768255442380905, 0.00952849257737398, 0.000536600186023861, -0.00973433442413807, 0.0122973993420601, 0.000446129328338429, 0.010803384706378, 0.0287381988018751, -0.0453117974102497, 0.048791192471981, 0.00856568291783333, -0.00259460508823395, 0.0212482046335936, 0.0241034328937531, -0.00782199576497078, -0.0215802080929279, 0.0228152610361576, 0.00202853954397142, 0.00447540311142802, -0.0394154228270054, 0.00772903487086296, -0.00018747805734165, -0.044700913131237, -0.0149932652711868, -0.0128883644938469, -0.0232800655066967, 0.00751655269414186, -0.00402055867016315, 0.00723767001181841, 0.0206240396946669, 0.00819383934140205, 0.00836648046970367, -0.00288676796481013, -0.0326691158115864, -0.00153551483526826, 0.0123106790706515, 0.0132934087887406, 0.0172243267297745, -0.0115470718592405],id:"b44ce7401cccafa32f703e272340a8a8",source:"state_of_union.txt",text:"And tonight I am announcing that we will join our allies in closing off American air space to all Russian flights – further isolating Russia – and adding an additional squeeze –on their economy. The Ruble has lost 30% of its value.
The Russian stock market has lost 40% of its value and trading remains suspended. Russia’s economy is reeling and Putin alone is to blame.
Together with our allies we are providing support to the Ukrainians in their fight for freedom. Military assistance. Economic assistance. Humanitarian assistance.
We are giving more than $1 Billion in direct assistance to Ukraine.
And we will continue to aid the Ukrainian people as they defend their country and to help ease their suffering.
Let me be clear, our forces are not engaged and will not engage in conflict with Russian forces in Ukraine.
Our forces are not going to Europe to fight in Ukraine, but to defend our NATO Allies – in the event that Putin decides to keep moving west."})
(:Chunk{embedding:[-0.00363643863238394, -0.0378031209111214, 0.00834862980991602, -0.00762926135212183, 0.011417493224144, 0.0205118898302317, -0.0137405898422003, -0.0124800466001034, -0.0173044316470623, 0.0100051555782557, 0.011991667561233, 0.019482335075736, -0.00929238740354776, -0.0143741620704532, -0.00518077006563544, -0.00929898768663406, 0.0117474785074592, -0.00457689678296447, 0.0219902247190475, -0.020234702154994, -0.0218186322599649, -0.013212613761425, 0.0108037209138274, 0.00360673991963267, -0.0106123294681311, -0.00450100004673004, 0.0323649644851685, -0.0265176240354776, 0.0251316856592894, -0.0312826111912727, -0.0191259514540434, -0.0190071556717157, -0.00644131423905492, -0.00717388186603785, -0.0306226406246424, -0.018360385671258, 0.00355724222026765, -0.0259104501456022, 0.00869181472808123, -0.0241153296083212, 0.0127638336271048, -0.000741642084904015, 0.0272963885217905, -0.0183735843747854, -0.0251448843628168, 0.00661620637401938, -0.0256200637668371, -0.00506857503205538, 0.00422711251303554, 0.0324969589710236, 0.0428452976047993, 0.0353216342628002, -0.0243793185800314, -0.0375127345323563, -0.0208946727216244, -0.0109687130898237, -0.0203930959105492, 0.00123414525296539, -0.000804751762188971, -0.0233365651220083, -0.0178456082940102, 0.0248544979840517, -0.0121962586417794, 0.00667890347540379, -0.0134766018018126, -0.00731247570365667, -0.0299890693277121, 0.011523088440299, -0.00860601849853992, -0.00641161529347301, 0.0477290824055672, 0.0319689810276031, 0.0176344178617001, 0.00399612262845039, 0.0347936563193798, 0.00377173256129026, 0.00173077324870974, -0.00535236252471805, -0.0236665494740009, 0.00167632556986064, 0.00548105686903, -0.0367207713425159, -0.0244057178497314, 0.0206306837499142, 0.0186903700232506, 0.0151529274880886, 0.0017472724430263, 0.0173044316470623, -0.0196671281009912, 0.000340916129061952, -0.0170668419450521, 0.00819023698568344, 0.00465609319508076, 0.0404958017170429, -0.00883040856570005, 0.00913399457931519, -0.0314938016235828, 0.0284579377621412, -0.00904819834977388, -0.0391494631767273, 0.0206570830196142, 0.00781405344605446, -0.0224390048533678, -0.0060915295034647, -0.0352424345910549, -0.00811104010790586, -0.00583414128050208, -0.0163144767284393, 0.0131796151399612, -0.00596943497657776, -0.0166444610804319, -0.0151925254613161, 0.0351104438304901, -0.025646461173892, 0.0314146056771278, 0.00209045712836087, -0.0053721615113318, -0.006177325733006, -0.00866541545838118, -0.011912471614778, 0.019323943182826, 0.0108169196173549, 0.018439581617713, 0.0306754391640425, 0.0134106045588851, -0.0157205015420914, 0.00845422502607107, -0.00667890347540379, -0.00184296816587448, -0.0218714289367199, 0.00811763945966959, 0.00507517484948039, -0.0171460397541523, -0.0297514796257019, -0.0317049920558929, 0.0116022853180766, -0.0358760096132755, 0.0175156220793724, -0.00303916516713798, 0.00100068061146885, 0.0145325548946857, 0.00450430018827319, -0.00967517029494047, 0.00506527535617352, 0.036958359181881, 0.0351632386445999, 0.0147173469886184, 0.00184956798329949, -0.00443830294534564, 0.00185286777559668, 0.020208302885294, 0.00595623580738902, 0.0119190709665418, -0.0229537822306156, 0.0027091798838228, 0.00191226520109922, -0.0258708521723747, 0.0149417370557785, 0.00516427075490355, -0.00486728409305215, 0.00898220110684633, -0.00460989540442824, -0.00738507229834795, -0.0101833483204246, -0.00222245138138533, 0.0161032862961292, 0.0235873535275459, 0.00721347983926535, -0.00363973854109645, 0.0108697172254324, 0.0307546351104975, 0.0189939569681883, -0.0219110269099474, 0.0369847603142262, 0.00870501343160868, 0.0339752919971943, -0.00548765668645501, -0.00278342654928565, -0.00770845776423812, 0.00199641147628427, 0.00526326661929488, 0.00115494872443378, 0.0310978200286627, 0.012717635370791, -0.00747086852788925, 0.00671190209686756, 0.0322593674063683, 0.00725307827815413, -0.0117144798859954, -0.0142817664891481, -0.00788005068898201, 0.0158656965941191, -0.000471879058750346, -0.00302761560305953, -0.637373328208923, -0.0176344178617001, 0.0303586535155773, 0.00496627949178219, -0.0181095972657204, 0.0142817664891481, 0.00258378544822335, -0.00527976593002677, -0.0450627990067005, 0.0181491952389479, -0.0265704207122326, 0.00145523541141301, -0.0136217959225178, -0.0103945387527347, -0.0330249331891537, -0.0232969652861357, -0.00907459761947393, -0.0162484794855118, 0.0254748687148094, -0.000282756198430434, 0.00186441722325981, 0.0207362789660692, -0.00186771713197231, 0.000952832691837102, 0.022755790501833, -0.00161775317974389, -0.000219852750888094, -0.0184131823480129, -0.0352424345910549, 0.0378559194505215, -0.0223334096372128, 0.00951677747070789, -0.0281411521136761, 0.00245839101262391, 0.0499993823468685, -0.00128034316003323, -0.0286955274641514, 0.0183999836444855, 0.0243661180138588, -0.00456039747223258, 0.00812423974275589, -0.00799884460866451, 0.00384762929752469, 0.00512797245755792, -0.00289892125874758, 0.000773403153289109, 0.0168688520789146, -0.0231253746896982, 0.00312991114333272, 0.000706993625499308, 0.00234124599955976, -0.000261307141045108, -0.00662610586732626, 0.00467259250581264, 0.00221585156396031, -0.0063258190639317, -0.00392352603375912, -0.0266760159283876, -0.0103351417928934, 0.00203765952028334, -0.0212114583700895, -0.00115247385110706, -0.0140969743952155, 0.0135953966528177, -0.0372751466929913, 0.00904159899801016, -0.0421589277684689, 0.0189675576984882, 0.00362653913907707, -0.014902139082551, -0.00457359710708261, 0.0297250803560019, -0.00664920499548316, -0.0190467555075884, 0.0230989754199982, 0.0248280987143517, 0.0173440296202898, -0.0346352644264698, -0.0199047159403563, 0.0109951123595238, -0.014994534663856, -0.0277715679258108, -0.0312298145145178, 0.0198651179671288, 0.0339488945901394, 0.00902180001139641, -0.0135293994098902, 0.0138065870851278, 0.00954317674040794, 0.015997689217329, 0.00803184323012829, 0.0363775864243507, -0.00193371414206922, -0.0323121659457684, 0.00295666884630919, 0.0132192131131887, -0.00225874967873096, -0.0210398659110069, 0.0212246589362621, -0.0038509292062372, 0.00527976593002677, 0.000108379565062933, 0.00928578805178404, -0.000680182303767651, -0.0155357103794813, 0.00939138326793909, -0.0365359783172607, 0.0191523507237434, 0.019403139129281, -0.0232441686093807, 0.0178852062672377, -0.00467259250581264, -0.0210794638842344, -0.000307505106320605, 0.0111139072105289, -0.0235873535275459, 0.0035968404263258, 0.0241285301744938, 0.00170107453595847, -0.0252240803092718, 0.00326520507223904, 0.0143345640972257, 0.028114752843976, -0.024550911039114, 0.00454389816150069, 0.00584404077380896, 0.0124668469652534, -0.0120906634256244, 0.00285602337680757, 0.0181227959692478, 0.017528822645545, 0.00179677025880665, 0.040548600256443, -0.0127044366672635, -0.00380143127404153, 0.0167236570268869, 0.0189543589949608, -0.022940581664443, 0.0260952413082123, -0.00504217622801661, -0.00312991114333272, 0.00968177057802677, 0.000302761560305953, 0.00130179221741855, -0.0210266672074795, -0.0247885007411242, -0.0116352839395404, -0.0204194933176041, -0.036852765828371, 0.02210901863873, 0.0285635329782963, -0.0121896592900157, -0.0138725843280554, -0.0221486166119576, 0.00333780189976096, 0.0188751630485058, -0.00731247570365667, -0.00338564976118505, -0.00788005068898201, -0.0108103202655911, 0.0230461768805981, 0.023613752797246, -0.0120444651693106, 0.0230593774467707, 0.0221618171781301, -0.00760286254808307, -0.00765566015616059, 0.00943098124116659, 0.00310351233929396, -0.0256596617400646, 0.00287582236342132, -0.0200895089656115, 0.00708148581907153, -0.000112916866783053, 0.0270323995500803, 0.0123150534927845, -0.00624992279335856, 0.00833543017506599, 0.00111865031067282, 0.0153509192168713, 0.0336057096719742, -0.0162880774587393, -0.029777878895402, -0.00925938878208399, 0.000206962693482637, 0.0161560829728842, -0.00397632364183664, 0.0147305466234684, 0.0148097425699234, 0.0100711528211832, -0.00497947912663221, -0.0111799035221338, -0.000303792767226696, 0.00157650501932949, -0.00381793058477342, -0.0051213726401329, -0.00428650993853807, 0.0206042863428593, 0.0118926726281643, 0.019323943182826, 0.00586713943630457, -0.0142025696113706, 0.0366151742637157, -0.00459669623523951, 0.00799884460866451, -0.0232045706361532, -0.00197826232761145, -0.001100501162, 0.0359288044273853, 0.0160768870264292, 0.0086720148101449, -0.0234685577452183, -0.00585064059123397, -0.0222806110978127, -0.00534246303141117, 0.0286427289247513, 0.00046197950723581, -0.00952337775379419, -0.00883700791746378, 0.0253032762557268, 0.0103483404964209, -0.00724647846072912, 0.0133314086124301, -0.00424031168222427, -0.0371167548000813, -0.00456699728965759, -0.000685957085806876, 0.00788665004074574, 0.011806876398623, -0.0025408873334527, -0.000802689406555146, 0.00637531699612737, -0.000309361261315644, 0.0389910712838173, 0.0208550747483969, -0.00954977609217167, 0.00246004085056484, -0.0065997070632875, -0.00218780292198062, -0.0196935255080462, 0.00747086852788925, 0.0100183552131057, 0.0125196445733309, 0.00525996647775173, 0.00879080966114998, 0.00404562056064606, 0.0412613674998283, 0.00786025077104568, -0.0336849056184292, -0.000956957519520074, -0.000205518997972831, 0.0194955356419086, -0.00117144803516567, -0.0198519192636013, -0.00452079949900508, -0.0308338310569525, 0.0059661353006959, 0.0151793267577887, 0.0452211946249008, 0.0303850509226322, 0.011325097642839, 0.0134964007884264, 0.0120906634256244, 0.0304378494620323, -0.00910759624093771, 0.00367273692972958, 0.00989296101033688, 0.0113448966294527, 0.00120444654021412, 0.000174067274201661, -0.0117342788726091, -0.009648771956563, 0.0098599623888731, -0.00306721380911767, 0.0178060103207827, 0.0189411602914333, -0.00620372453704476, -0.0265176240354776, 0.00706828618422151, 0.00363973854109645, -0.0132786110043526, -0.0450364015996456, 0.0112591003999114, 0.0231913700699806, -0.0213698521256447, -0.0103417411446571, -0.0111733041703701, -0.000573762052226812, -0.0391758605837822, 0.0103285415098071, -0.0116022853180766, 0.0096025737002492, -0.0142685668542981, 0.00404562056064606, -0.0111205065622926, -0.0129354260861874, 0.0367207713425159, -0.0116220843046904, 0.0223202090710402, -0.020208302885294, 0.0103417411446571, -0.00789324939250946, -0.0154697131365538, -0.00311341183260083, 0.0177004151046276, 0.00597603479400277, -0.00507517484948039, -0.00582094164565206, 0.0148229422047734, -0.000839400279801339, 0.0144665576517582, -0.00195351336151361, -0.031678594648838, 0.0308866295963526, 0.0175948198884726, 0.009727967903018, -0.0401262193918228, -0.0180436000227928, 0.0350312441587448, 0.00900860037654638, -0.00114339927677065, -0.0204194933176041, -0.0293290987610817, -0.0206042863428593, 0.119745083153248, 0.010104151442647, 0.0201687049120665, 0.00213170540519059, 0.000436405622167513, -0.00453069899231195, 0.0138065870851278, -0.0135557986795902, 0.0284051392227411, 0.00559655157849193, -0.00233464641496539, 0.00914059393107891, -0.00611132895573974, -0.00726627744734287, 0.0138197867199779, 0.0270851980894804, 0.0132456123828888, -0.0137405898422003, -0.0248940959572792, -0.0176608171314001, 0.0165520664304495, -0.0099061606451869, 0.0111601045355201, 0.0226237960159779, 0.00849382299929857, 0.00985336303710938, 0.0257124584168196, 0.00656010909006, 0.0130410213023424, -0.0144665576517582, -0.0453003905713558, -0.00379153178073466, 0.00531606422737241, -0.00223070103675127, -0.0320745781064034, -0.0160636864602566, 0.00197496241889894, 0.0195219330489635, 0.00722007965669036, -0.020287498831749, 0.0145061565563083, -0.0203534960746765, 0.0038311299867928, -0.0164068713784218, 0.0234157610684633, -0.00996555760502815, -0.0104407370090485, 0.0322857685387135, -0.00487388391047716, -0.0145589541643858, 0.0298306755721569, -0.0180831979960203, -0.0172648336738348, -0.0184527803212404, -0.0284315384924412, 0.0120510654523969, -0.000691319350153208, 0.00430960860103369, -0.0196539275348186, -0.00301441620104015, -0.00395322451367974, 0.00889640487730503, -0.00655350927263498, -0.0237457454204559, -0.0148361418396235, -0.0214754473417997, -0.0199707131832838, 0.0143345640972257, -0.00924619007855654, -0.022940581664443, -0.00115907355211675, -0.0521640852093697, -0.0216998364776373, 0.0107971206307411, 0.0180172007530928, 0.0158656965941191, 0.00540186045691371, -0.008804009296, 0.00608822982758284, 0.000113948066427838, 0.0232705678790808, -0.0193635411560535, 0.00294511928223073, -0.0266496166586876, -0.0162880774587393, 0.000920659163966775, 0.00244189170189202, 0.00354734249413013, -0.00526656629517674, 0.00276197749190032, 0.00743127008900046, -0.00159300433006138, 0.00063975912053138, -0.00997875723987818, 0.00275207776576281, 0.00843442603945732, -0.0106519274413586, 0.00268443091772497, 0.00228514848276973, 0.00692309299483895, 0.00693629216402769, -0.0154565144330263, -0.0097345681861043, -0.0112393014132977, 0.0165520664304495, -0.0099457586184144, 0.019218347966671, 0.00700888875871897, -0.00251943827606738, -0.00833543017506599, 0.00660300720483065, -0.0285371337085962, -0.0209474712610245, 0.00716068223118782, -0.00589023856446147, 0.00681749731302261, 0.00150060839951038, 0.0284579377621412, -0.00933858565986156, -0.00749726733192801, 0.00123992003500462, -0.0161164849996567, 0.0101635493338108, 0.0182943884283304, -0.0112393014132977, 0.0175948198884726, -0.00388722750358284, -0.0215546432882547, -0.0245641097426414, 0.00328170438297093, -0.000152618231368251, 0.0290123131126165, 0.00957617536187172, 0.0010848268866539, 0.0120048671960831, 0.00614102743566036, -0.0203006993979216, 0.0190731529146433, -0.024630106985569, -0.0151529274880886, 0.000431455846410245, -0.002740528434515, -0.0116682825610042, -0.00624992279335856, 0.0120048671960831, -0.0294346939772367, -0.00422051269561052, 0.00663930550217628, -0.0048870830796659, 0.0145589541643858, -0.0209342706948519, -0.0160108897835016, -0.0051213726401329, 0.00747746834531426, -0.0168292541056871, -0.0111931031569839, -0.000227896132855676, 0.00527976593002677, 0.00780085381120443, 0.00119784683920443, 0.0345296673476696, 0.008804009296, -0.0112854996696115, 0.0120114665478468, -9.99752519419417e-05, 0.00392352603375912, 0.018465980887413, 0.00937158428132534, -0.0123480521142483, 0.00115824863314629, 0.0206834822893143, 0.0203798953443766, -0.0337377041578293, 0.00154680630657822, -0.000286674767266959, 0.00373543426394463, -0.0138857839629054, 0.00217295368202031, -0.0247753001749516, 0.00176212179940194, -0.00354074290953577, 0.0102493455633521, 0.00137356400955468, 0.00451749935746193, 0.00162352796178311, -0.0319953784346581, 0.0194295383989811, -0.0310978200286627, 0.0398358330130577, -0.020234702154994, 0.00841462705284357, 0.0126450387760997, 0.0156149072572589, 0.0295402891933918, 0.0066624041646719, -0.00283952406607568, -0.0188355650752783, -0.00809784047305584, 0.0127506339922547, -0.00860601849853992, 0.0168160535395145, -0.00375193357467651, -0.0144137600436807, 0.0190863534808159, -0.00336585054174066, 0.0240097343921661, -0.0012176459422335, -0.014149772003293, -0.0173572301864624, -0.0340544879436493, 0.0117210801690817, 0.00504547590389848, -0.000760616268962622, -0.00799884460866451, 0.00204920908436179, 0.00393672520294785, 0.0125724421814084, -0.00582094164565206, 0.00539196096360683, -0.0271907933056355, 0.00311506167054176, 0.00375193357467651, 0.0187299679964781, -0.00439210515469313, 0.0118530737236142, 0.0282995440065861, 0.00519066955894232, -0.038753479719162, 0.00642811460420489, 0.00286262296140194, 0.00957617536187172, 0.0184131823480129, -0.00106172787491232, -0.0257916562259197, 0.00401592161506414, -0.0162352789193392, 0.0147833442315459, 0.0157073028385639, -0.0287747234106064, 0.0179776027798653, -0.00255408673547208, 0.000801451911684126, -0.014888939447701, -0.0302794557064772, -0.0214094500988722, 0.000161177216796204, -0.0275075789541006, 0.0145721537992358, -0.00398292345926166, -0.004167715087533, -0.0360607989132404, 0.0256332624703646, -0.0128892278298736, 0.029936270788312, -0.015892094001174, -0.010090951807797, 0.010090951807797, -0.00422381237149239, -0.000822075991891325, -0.00877761095762253, -0.0154037168249488, 0.0099919568747282, 0.00280652544461191, 0.0172120369970798, -0.0135953966528177, 0.0165124665945768, -0.024630106985569, -0.0174364261329174, -0.00873141270130873, 0.0260424446314573, -0.0304114501923323, 0.00615422707051039, 0.00623672315850854, 0.0127770332619548, 0.00431290874257684, -0.0126318391412497, -0.0211058631539345, 0.0020327097736299, -0.0333681181073189, -0.0131334168836474, 0.00189576589036733, -0.0295138899236917, -0.0260028466582298, -0.0086786150932312, -0.00739827193319798, 0.00391362654045224, -0.0260688439011574, -0.0023692948743701, 0.00582424132153392, 0.0170404445379972, -0.0221222192049026, 0.0116286836564541, -0.0121170626953244, -0.00865221582353115, 0.00533586321398616, -0.00596943497657776, 0.0184131823480129, 0.0195219330489635, -0.029936270788312, 0.0135293994098902, -0.000833213038276881, 0.0212642569094896, -0.02192422747612, 0.00672840140759945, -0.00727287726476789, -0.0147041473537683, 0.0179644022136927, -0.0120378658175468, -0.00919999182224274, -0.009648771956563, -0.0216602385044098, -0.0206966809928417, 0.0156281068921089, -0.00281642493791878, 0.0135821970179677, 0.0136481942608953, 0.0229801796376705, -0.0179908014833927, -0.00651391083374619, 0.0336585082113743, 0.00830243155360222, 0.0121962586417794, -0.00904819834977388, -0.0133380079641938, -0.01097531337291, -0.00373213435523212, 0.00218780292198062, 0.00641161529347301, 0.000427743507316336, 0.00151050800923258, 0.0019700126722455, 0.0107707222923636, 0.000907459703739733, -0.0284051392227411, -0.0144137600436807, 0.00530616473406553, -0.00841462705284357, 0.008804009296, 0.0321537740528584, 0.00434920703992248, 0.00945078022778034, 0.0376183316111565, 0.0374599359929562, 0.00315466010943055, -0.020049910992384, -0.00579454284161329, 0.00924619007855654, -0.00101965479552746, -0.0140045788139105, -0.020313898101449, -0.0146117517724633, 0.0558071248233318, 0.00158640462905169, -0.0109687130898237, -0.00588033907115459, 0.0121896592900157, -0.0230461768805981, 0.00716728204861283, -0.0167632568627596, 0.0104671353474259, 0.0310186240822077, 0.0303322542458773, 0.00788005068898201, 0.0347672589123249, -0.011443892493844, 0.0122556565329432, 0.0307018384337425, -0.0208022762089968, -0.0165784638375044, -0.0349520482122898, 0.00150060839951038, 0.021145461127162, -0.0170800425112247, -0.0121764596551657, 0.0257520563900471, -0.00362653913907707, 0.00917359255254269, 0.0231649726629257, -0.0242473240941763, -0.0310978200286627, -0.0154961124062538, 0.0165784638375044, -0.00273227877914906, 0.015839297324419, 0.0116352839395404, -0.0367471687495708, 0.00786685105413198, 0.00237094471231103, 0.000826200819574296, -0.0200235117226839, 0.0102823441848159, 0.00859941821545362, -0.0122424568980932, 0.00970156956464052, -0.0183735843747854, -0.0144401593133807, 0.000344009720720351, -0.0249864906072617, 0.0263328310102224, 0.0162748768925667, -0.00737847248092294, 0.0263856295496225, 0.00436900602653623, -0.0019155649933964, -0.00614432757720351, -0.00668880296871066, 0.00243694195523858, 0.0192843433469534, -0.0127836326137185, -0.00528966542333364, 0.0254220720380545, 0.00628292141482234, 0.0253032762557268, -0.0145721537992358, -0.0022834986448288, 0.00224060053005815, 0.0204062946140766, -0.00279827578924596, 0.0117342788726091, -0.00333780189976096, -0.0205910857766867, 0.0269796028733253, -0.0361663959920406, 0.000213253035326488, -0.0233101658523083, -0.0152321243658662, 0.00766885979101062, -0.0134634021669626, -0.0161296837031841, 0.00655020913109183, 0.00375193357467651, -0.0215018466114998, 0.0106123294681311, 0.000496215478051454, -0.00453069899231195, 0.00482768565416336, 0.235899925231934, -0.0166048631072044, 0.0245905090123415, 0.00906799733638763, -0.0151793267577887, 0.0211850591003895, 0.01330500934273, -0.00300946645438671, -0.00670200260356069, -0.01094891410321, -0.0125262439250946, 0.0248412974178791, -0.0205118898302317, 0.00487388391047716, 0.00298141781240702, -0.015760101377964, -0.0470163151621819, -0.0218714289367199, -0.0132324127480388, 0.0235477555543184, -0.0131928147748113, -0.00100728031247854, 0.00113432470243424, 0.00513787195086479, 0.0234025623649359, 0.0160636864602566, -0.0145985521376133, 0.0146645493805408, 0.00778105482459068, -7.84746443969198e-05, -0.0306490398943424, -0.00859941821545362, 0.0187035705894232, -0.00604203203693032, 0.0225709993392229, 0.00186276738531888, 0.0242605227977037, 0.00338234985247254, 0.0202611014246941, -0.0113118980079889, 0.0235345549881458, 0.00533586321398616, -0.0158524960279465, -0.0133578069508076, -0.00449110055342317, 0.0454059839248657, -0.00887660589069128, -0.0189939569681883, -0.0106519274413586, 0.0183471851050854, -0.0189015604555607, -0.0220430213958025, 0.00162187800742686, 0.0232309699058533, 0.0155225107446313, 0.00439540483057499, 0.0277187693864107, 0.00496297981590033, 0.000450842489954084, 0.009648771956563, -0.00919339247047901, 0.0132984099909663, -0.00693629216402769, 0.0220166221261024, -0.0173836294561625, 0.0469899140298367, 0.0127242356538773, 0.0472539030015469, 0.00186771713197231, -0.0236269515007734, -0.00522036850452423, -0.00218285317532718, -0.00893600378185511, 0.00849382299929857, -0.0154565144330263, -0.00690989335998893, -0.00294511928223073, 0.0374863371253014, 0.0222674123942852, -0.0015888795023784, -0.0197859220206738, -0.0148361418396235, 0.00444160308688879, 0.00255573657341301, 0.00287747220136225, 0.00562295038253069, 0.0123480521142483, 0.0107179246842861, -0.0242869220674038, 0.00652711046859622, -0.010572730563581, -0.0124470479786396, 0.00267618126235902, 0.0251052863895893, 0.0084674246609211, 0.00197661225683987, 0.0347672589123249, 0.00387732801027596, -0.00777445500716567, -0.0211058631539345, 0.00438880547881126, 0.0248280987143517, 0.0337904989719391, 0.00214160489849746, -0.0146381501108408, -0.00966197159141302, -0.00525336666032672, 0.0105067333206534, -0.00947058014571667, -0.0315466001629829, 0.00844102539122105, -0.022940581664443, 0.0159448925405741, -0.0113514959812164, 0.0029203703161329, 0.00105182838160545, -0.0189279597252607, -0.00832223054021597, 0.0339752919971943, -0.00678449915722013, 0.00454389816150069, -0.0428980961441994, 0.00799884460866451, -0.00680429814383388, 0.00507187470793724, -0.017528822645545, -0.0518209002912045, -0.00502567691728473, -0.0215942412614822, -0.0277715679258108, 0.0346352644264698, -0.0253428760915995, 0.025540865957737, -0.0237853452563286, -0.0283523425459862, 0.00247818999923766, -0.00155175616964698, -0.000235527055338025, -0.0108499182388186, 0.00819023698568344, -0.00737847248092294, -0.00743786990642548, 0.0277979671955109, 0.0197595227509737, 0.0163540747016668, 0.0119322706013918, 0.00519726937636733, 0.00115082389675081, -0.0166576616466045, -0.00759626273065805, -0.0213830508291721, 0.0192051474004984, 0.0140969743952155, 0.00928578805178404, -0.0102229462936521, 0.00539856031537056, -0.0284051392227411, -0.0074510695412755, -0.0386214852333069, 0.0393606536090374, -0.0371959507465363, -0.000859611842315644, 0.0409181825816631, -0.0262932330369949, -0.0168688520789146, 0.00261183409020305, -0.166418209671974, 0.035136841237545, -0.00827603321522474, -0.00358034111559391, 0.012354651466012, -0.00552395498380065, 0.0102625442668796, -0.000293480727123097, -0.0211058631539345, -0.0154169155284762, 0.0266760159283876, 0.0143345640972257, -0.041894942522049, -0.038753479719162, -0.00536556169390678, 0.00579124316573143, -0.0506065525114536, 0.0301210638135672, -0.00418751407414675, 0.0208946727216244, 0.0393342562019825, 0.00285107339732349, 0.0037651329766959, -0.0163540747016668, 0.00412481697276235, 0.00647761253640056, -0.00986656174063683, -0.00162105308845639, -0.0308074336498976, -0.0164992678910494, -0.00707488600164652, -0.0238381419330835, 0.0201159082353115, 0.014902139082551, -0.00979396514594555, 0.0118794729933143, -0.00356714171357453, 0.00761606218293309, -0.0156413055956364, 0.0228481870144606, 0.0308866295963526, 0.0254220720380545, 0.00754346512258053, -0.00938478391617537, 0.00339554925449193, 0.0260688439011574, 0.00577144371345639, -0.00873141270130873, 0.00751706631854177, -0.0186903700232506, 0.00354074290953577, -0.0096949702128768, -0.00646771304309368, 0.0147041473537683, 0.0155093120411038, 0.0355328246951103, 0.00564934918656945, -0.0103153418749571, 0.0126252397894859, -0.0140969743952155, -0.00947058014571667, -0.000527151627466083, 0.0026580321136862, -0.00469569163396955, 0.00330150360241532, -0.014796543866396, -0.00480788666754961, 0.0408917851746082, -0.0197331234812737, 0.0151001298800111, 0.0173176322132349, -0.0103087425231934, 0.0115362880751491, -0.0275867767632008, -0.000948707922361791, -0.0194163378328085, -0.00180336995981634, 0.0104671353474259, -0.0222278144210577, 0.00550415553152561, -0.0144797572866082, 0.0246433056890965, -0.00697589060291648, -0.0229273829609156, -0.0156281068921089, 0.00389712699688971, -0.0148229422047734, 0.0320217795670033, -0.00434920703992248, -0.00642151525244117, -0.0122952545061707, -0.0270851980894804, -0.0107839219272137, -0.0250656884163618, 0.00320910755544901, 0.0137405898422003, 0.0150473322719336, 0.021092664450407, -0.0119256712496281, -0.042132530361414, -8.82195236044936e-05, -0.0103681394830346, -0.0208418760448694, -0.00852022226899862, -0.00366613734513521, 0.0147041473537683, 0.0281411521136761, 0.00593313667923212, -0.000321941974107176, -0.00778105482459068, -0.0377239249646664, 0.0247357022017241, 0.0341072864830494, 0.0233497638255358, 0.0122226579114795, -0.00605523120611906, 0.0171724371612072, 0.00608822982758284, -0.00177697115577757, 0.00436240620911121, 0.0530880428850651, 0.0122094582766294, -0.0112195024266839, -0.0109819127246737, 0.0054348586127162, -0.0266100186854601, -0.124285683035851, -0.0337377041578293, 0.0147173469886184, 0.00096685707103461, -0.0154829127714038, 0.0272435918450356, 0.0119322706013918, 0.00809784047305584, -0.00383442989550531, 0.0148097425699234, -0.0290123131126165, -0.00629942025989294, 0.0140837747603655, 0.00222245138138533, 0.00653041014447808, 0.00822323467582464, -0.0148229422047734, -0.0147569449618459, -0.0274547822773457, -0.00652711046859622, 0.00599583378061652, -0.00986656174063683, -0.0149417370557785, -0.0130674205720425, 0.0128298308700323, 0.00484418496489525, -0.0250392891466618, 0.0286691281944513, 0.00814403872936964, 0.00784705206751823, -0.0174628254026175, 0.00822323467582464, -0.00113762449473143, -0.024630106985569, -0.0116352839395404, -0.00490688206627965, -0.0413933619856834, 0.0128628294914961, 0.0176740158349276, -0.0125658428296447, -0.00114834902342409, 0.000876936072017998, -0.00838822778314352, -0.0398622304201126, 0.00530286459252238, -0.0107443230226636, 0.00555365346372128, 0.008804009296, 0.00803844351321459, -7.06374921719544e-05, -0.0086786150932312, -0.0282467473298311, -0.00579784251749516, -0.00317940884269774, -0.0260160453617573, 0.0128496298566461, -0.0134568028151989, 0.0291443075984716, -0.0128826284781098, -0.0211058631539345, -0.0191787481307983, 0.00649741152301431, -0.0267420131713152, -0.00936498399823904, 0.0128760281950235, 0.00235114572569728, -0.0275867767632008, -0.0337377041578293, -0.000214284242247231, -0.0134766018018126, -0.0199047159403563, 0.0228217877447605, -0.00913399457931519, 0.0188091658055782, -0.0345032699406147, -0.00140821246895939, -0.0223334096372128, -0.0146909477189183, 0.0277187693864107, 0.00395652465522289, -0.0285899322479963, -0.0247753001749516, 0.0122160576283932, -0.0157996993511915, 0.0295402891933918, 0.0156017076224089, 0.00433600740507245, 0.00210035685449839, 0.00515107158571482, -0.00127869320567697, -0.00696269096806645, 0.0210794638842344, 0.0120048671960831, -0.0155093120411038, -0.0121698603034019, 0.0167632568627596, -0.00606843084096909, -0.00798564590513706, 0.00364963803440332, 0.0209606699645519, -0.0201159082353115, 0.0107113244011998, -0.0465411357581615, 0.0215414445847273, -0.0157073028385639, -0.000367314962204546, -0.0263724289834499, -0.00170932419132441, 0.00118217256385833, -0.0256860610097647, 0.015733702108264, 0.016750056296587, -0.00893600378185511, 0.00896240212023258, 0.00696929078549147, 0.0223070103675127, -0.0269004069268703, -0.00237424462102354, 0.0195483323186636, -0.0176740158349276, 0.00917359255254269, 0.00947717949748039, -0.00568894762545824, 0.00305566447786987, 0.0104539357125759, 0.0293290987610817, 0.0114966901019216, -0.0112723000347614, 0.00481448648497462, 0.0211586616933346, -0.00156908039934933, 0.00502897705882788, 0.00386082869954407, -0.0232837665826082, -0.0152321243658662, 0.0173440296202898, -0.0167104583233595, -0.0261348411440849, -0.0296194851398468, 0.00472209043800831, -0.00807804148644209, 0.0309922248125076, -0.0258048549294472, -0.0373015441000462, 0.0104143377393484, -0.038595087826252, -0.0171856377273798, -0.00305236456915736, 0.00670200260356069, -0.0187563672661781, -0.00148163421545178, 0.000879411003552377, 0.00488048326224089, 0.0183339864015579, -0.00597273511812091, -0.0313354097306728, 0.0153641179203987, -0.020987069234252, 0.0283523425459862, 0.0285371337085962, -0.00485408445820212, -0.0118464743718505, 0.0222410131245852, 0.0239701364189386, 0.0177928097546101, -0.0110083110630512, 0.0279299598187208, 0.0203930959105492, 0.00580114265903831, 0.0170404445379972, 0.00952997710555792, -0.028114752843976, 0.000765153556130826, 0.0135293994098902, 0.00611132895573974, 0.00228514848276973, 0.0137273911386728, -0.00348794530145824, 0.00292861997149885, 0.00609812932088971, -0.00316290953196585, 0.00646111322566867, 0.00632251938804984, -0.0147173469886184, -0.0299098733812571, 0.0207626782357693, -0.0113316969946027, 0.0049497801810503, -0.00366283743642271, 0.0337113030254841, -0.00962897296994925, 0.0164992678910494, -0.0139253819361329, 0.00146760989446193, -0.0123612517490983, 0.0204062946140766, 0.0119718685746193, -0.0033741001971066, 0.00380803109146655, 0.00413471646606922, 0.0112459007650614, -0.00297646783292294, 0.0116880815476179, -0.0161032862961292, 0.00440530432388186, -0.0500257797539234, 0.0040819188579917, 0.0108103202655911, -0.0404958017170429, -0.000423206220148131, -0.025408873334527, 0.0241417288780212, 0.0213434528559446, 0.0205514878034592, 0.033104132860899, 0.0255804657936096, -0.0129750240594149, 0.0102691445499659, 0.0222410131245852, -0.00526326661929488, -0.00145193561911583, 0.0285635329782963, 0.0142025696113706, 0.0155885079875588, 0.00439210515469313, -0.0152453230693936, 0.0191259514540434, -0.00639181630685925, 0.0160108897835016, 0.00101223005913198, 0.00815063808113337, 0.0224654022604227, 0.0293026994913816, -0.0084608243778348, -0.0457755699753761, -0.00741147110238671, -0.0312298145145178, -0.0110875079408288, -0.00019231959595345, -0.000268319330643862, -0.0104737356305122, 0.0249864906072617, 0.0137801887467504, -0.00556355295702815, -0.0173572301864624, 0.00399282295256853, 0.0307282358407974, 0.00173242308665067, -0.0141101740300655, -0.0100975520908833, -0.00637531699612737, -0.003940025344491, -0.0103879394009709, 0.00672180159017444, -0.0237853452563286, 0.00399282295256853, 0.0170272439718246, 0.0111931031569839, -0.00440860446542501, -0.0489962249994278, 0.0160372890532017, 0.0208154767751694, 0.00763586116954684, 0.0162220802158117, 0.00961577333509922, 0.0134964007884264, -0.0376447290182114, 0.021092664450407, -0.012717635370791, 0.00409841816872358, -0.0338960960507393, 0.00708808563649654, -0.00458019692450762, -0.0430564880371094, 0.000644708867184818, -0.00388062768615782, -0.0133446082472801, 0.00473198993131518, -0.00953657645732164, 0.0190995521843433, 0.0115560870617628, -0.011991667561233, 0.0245245117694139, -0.00338234985247254, -0.0239173378795385, 0.00940458290278912, 0.022003423422575, -0.00517747038975358, 0.0160900857299566, -0.0152453230693936],id:"e1b1d31bd15c28e96ae90b2631c16f1f",source:"state_of_union.txt",text:"For that purpose we’ve mobilized American ground forces, air squadrons, and ship deployments to protect NATO countries including Poland, Romania, Latvia, Lithuania, and Estonia.
As I have made crystal clear the United States and our Allies will defend every inch of territory of NATO countries with the full force of our collective power.
And we remain clear-eyed. The Ukrainians are fighting back with pure courage. But the next few days weeks, months, will be hard on them.
Putin has unleashed violence and chaos. But while he may make gains on the battlefield – he will pay a continuing high price over the long run.
And a proud Ukrainian people, who have known 30 years of independence, have repeatedly shown that they will not tolerate anyone who tries to take their country backwards.
To all Americans, I will be honest with you, as I’ve always promised. A Russian dictator, invading a foreign country, has costs around the world."})
(:Chunk{embedding:[-0.00314070098102093, -0.0316268242895603, 0.015160626731813, -0.0220481883734465, 0.00201664306223392, -0.00909237936139107, -0.013801765628159, -0.014441229403019, -0.00291422428563237, -0.0262180268764496, 0.0186377130448818, 0.0145611297339201, -0.0182114038616419, -0.0018134800484404, -0.00149624596815556, 0.00589505909010768, 0.0284827947616577, -0.0165994204580784, 0.0455085262656212, -0.0203029830008745, -0.00762694096192718, -0.00748039735481143, 0.0124095994979143, -0.0125827873125672, 0.00833301618695259, -0.0218350328505039, 0.0296817887574434, -0.0239932239055634, 0.0141881089657545, -0.0396467708051205, -0.00582511769607663, -0.0229407735168934, -0.00309573882259429, -0.00506908493116498, -0.0313870273530483, -0.0228741616010666, 0.00132971885614097, -0.0241397675126791, 0.00330722820945084, -0.0307209193706512, 0.000560779997613281, 0.00396667560562491, 0.0136552220210433, -0.00848622061312199, -0.0130490632727742, 0.00408990541473031, -0.0203962381929159, -0.0311472285538912, 0.00919229537248611, 0.0221414435654879, 0.0259915497153997, 0.028962392359972, -0.0366892516613007, -0.0102913742884994, -0.0148009285330772, 0.000281847111182287, -0.0234470143914223, 0.0140415644273162, 0.011949984356761, -0.0012514510890469, -0.0192505326122046, 0.0159599576145411, -0.0130157582461834, -0.00085761456284672, 0.000353037437889725, -0.00573852378875017, -0.0265777241438627, 0.00409989710897207, 0.0147742843255401, 0.00320897717028856, 0.0644792914390564, 0.0259782262146473, 0.0130490632727742, 0.016386266797781, 0.0397267043590546, 0.00871935859322548, -0.017478683963418, -0.0139216650277376, 0.0174920056015253, -0.00886590220034122, 0.0301613882184029, -0.0248858090490103, -0.000151747823110782, 0.0055087162181735, 0.0267775561660528, -0.00823309924453497, 0.0132022686302662, 0.0309607181698084, -0.0369556918740273, -0.00230306969024241, 0.00473270006477833, 0.0428440906107426, -0.00472603878006339, 0.0220748316496611, -0.0191039890050888, 0.0200498625636101, -0.00983176007866859, 0.0191839206963778, 0.000339715275913477, -0.0405793227255344, 0.0339715294539928, -0.0122097665444016, -0.00839962717145681, -0.0129957748576999, -0.0276568196713924, -0.00745375268161297, -0.018571101129055, -0.00827306602150202, -0.0110707217827439, -0.0124961929395795, -0.0218616779893637, -0.0291489027440548, 0.00209158030338585, -0.0280564855784178, 0.0198367070406675, 0.00573186250403523, -0.000805991119705141, -0.0198233854025602, -0.00176851777359843, -0.0105111906304955, 0.013974953442812, -0.00117651396431029, 0.0239532571285963, 0.028456149622798, -0.00477266637608409, -0.0356767661869526, -0.00657782051712275, 0.0033788348082453, -0.00332554616034031, -0.0174253955483437, 0.00760695757344365, 0.0211689248681068, 0.00767356855794787, -0.0279499068856239, -0.00857281498610973, 0.0251655746251345, -0.0308274962007999, 0.00631803786382079, -0.0124029377475381, -0.0105711398646235, 0.00803992804139853, 0.00504244025796652, -0.0161065012216568, -0.00666108401492238, 0.00296917813830078, 0.0135020166635513, 0.025378730148077, -0.000471271690912545, 0.0015528651420027, -0.000213050603633747, 0.00931885652244091, -0.00431638211011887, -0.00505243195220828, -0.000517066626343876, 0.013801765628159, -0.00993833690881729, -0.00675100833177567, 0.0214886572211981, -0.00226643378846347, -0.00606491696089506, -0.00827306602150202, -0.0314403139054775, -0.00992501527070999, 0.000641961931250989, -0.0172122400254011, 0.0166393872350454, 0.02047617174685, -0.00218650070019066, -0.000858447165228426, -0.00333553762175143, 0.0165594536811113, 0.0278433300554752, -0.021568588912487, 0.0263379253447056, 0.00181514536961913, 0.059203714132309, 0.00682761101052165, -0.00286593125201762, -0.00357034103944898, -0.0179049931466579, 0.0013855054276064, -0.013761798851192, 0.021914966404438, 0.0236868150532246, 0.0144145851954818, 0.00837298203259706, 0.0402862355113029, -0.00603161146864295, 0.017944959923625, -0.024059833958745, 0.0137484772130847, 0.0111639769747853, -0.00183512864168733, -0.00283595640212297, -0.633922040462494, -0.0106777176260948, -0.00102913740556687, 0.0128558920696378, -0.00218483549542725, 0.00711403740569949, 0.016852542757988, 0.00490588834509254, -0.0360764302313328, 0.0157601237297058, -0.0132622178643942, 0.011736829765141, -0.0229540951550007, -0.0347175672650337, -0.0139349875971675, -0.0183712691068649, -0.0123296659439802, -0.0255519170314074, 0.0317334048449993, -0.0132688786834478, -0.00676766131073236, 0.0279499068856239, -0.00722727598622441, 0.00744043057784438, 0.0231139604002237, -0.0206493604928255, -0.0063047157600522, -0.0159732792526484, -0.0139483092352748, 0.0169857647269964, -0.00619813846424222, 0.0165194887667894, -0.0110707217827439, -0.00668439781293273, 0.0557932369410992, 0.00298416544683278, -0.00721395388245583, 0.0214220453053713, 0.0378882437944412, 0.0136685436591506, -0.0210623480379581, -0.00839296542108059, -0.00983176007866859, -0.0138417324051261, 0.00596500048413873, 0.00269940425641835, 0.00639131013303995, -0.0156002584844828, 0.00191006576642394, -0.000507907650899142, 0.00663777021691203, 0.00676766131073236, -8.92481184564531e-05, 0.00901244673877954, -0.00264278496615589, -0.00154370616655797, -0.00911236274987459, -0.0183446258306503, -0.0169591195881367, -0.000837631290778518, 0.00746041396632791, 0.0144012635573745, 0.00865940935909748, 0.00804658886045218, -0.0377816669642925, 0.007959995418787, -0.0362895838916302, 0.0113571481779218, 0.00225977273657918, 0.00621479144319892, -0.000945041247177869, 0.00835966039448977, -0.00219316175207496, -0.00679763592779636, 0.0187975782901049, 0.00520896771922708, 0.016426233574748, -0.0179183147847652, -0.0208625141531229, -0.00833301618695259, -0.00999162532389164, -0.0127359926700592, -0.0123962769284844, 0.0112971980124712, 0.0213554352521896, 0.0109441606327891, -0.0261780600994825, -0.0129358246922493, 0.030907429754734, 0.00556533550843596, 0.00811986159533262, 0.0220748316496611, 0.00120732141658664, -0.0197434518486261, 0.00506908493116498, 0.0208491925150156, -0.00422978820279241, 0.00446625659242272, 0.0142014306038618, 0.0150140831246972, -0.00966523308306932, 0.0117301689460874, 0.0130157582461834, -0.000711487024091184, 9.62734775384888e-05, 0.0278433300554752, -0.0438032858073711, 0.010451240465045, 0.0073804808780551, -0.0149741163477302, 0.00479264976456761, -0.00680762762203813, -0.0343445464968681, 0.0124429045245051, 0.0222080536186695, -0.0232605040073395, 0.0181314703077078, 0.0166127439588308, 0.00152705342043191, -0.0250589977949858, -0.00373686803504825, 0.0287225935608149, 0.00227142963558435, -0.00562528520822525, 0.0017868357244879, -0.0141481421887875, 0.024526109918952, -6.27078625257127e-05, -0.00934550072997808, 0.00766024645417929, 0.0408191233873367, -0.00164029188454151, 0.0243129562586546, -0.00740046426653862, -0.00335219036787748, 0.0317600481212139, 0.0176252275705338, -0.0109441606327891, -0.00269440840929747, -0.00655783712863922, -0.00217484380118549, 0.00600163638591766, -0.0181714370846748, 0.00983842089772224, -0.00492920214310288, -0.0118833733722568, -0.0105111906304955, -0.00819979421794415, -0.0191705990582705, 0.00938546750694513, 0.0268574897199869, 0.00144712044857442, -0.00413986342027783, -0.015160626731813, 0.00317067583091557, 0.00706074899062514, -0.0106510734185576, -0.0175852607935667, -0.00526225613430142, -0.00776682374998927, 0.00611820537596941, 0.0223146304488182, -0.017478683963418, 0.0165194887667894, -0.0142014306038618, -0.00250456761568785, 0.00370023213326931, 0.0057884817942977, 0.00295918644405901, -0.00913234613835812, -0.0101514915004373, 0.00217817444354296, 0.0133421504870057, -0.00152955134399235, 0.0193970762193203, 0.00912568531930447, -0.0148408943787217, 0.0127826202660799, -0.00843959301710129, 0.014441229403019, 0.0136685436591506, -0.00677432212978601, -0.0420980490744114, -0.0022547768894583, 0.0321330688893795, 0.014228074811399, -0.00120981934014708, 0.0154936807230115, -0.000929221219848841, 0.00158283999189734, -0.00662777852267027, 0.0136818662285805, 0.0132022686302662, 0.0189574453979731, -0.0143213300034404, -0.00602161977440119, -0.00941211171448231, 0.00823309924453497, 0.0178916715085506, 0.00210490240715444, 0.0204628501087427, -0.0142946857959032, 0.0242063794285059, -0.00788672361522913, 0.0041198804974556, -0.0250589977949858, 0.0193970762193203, -0.0200631842017174, 0.018917478621006, 0.0168125759810209, 0.0187442898750305, -0.0306942742317915, -0.0242197010666132, -0.00650454824790359, -0.00732053117826581, 0.0331721976399422, 0.000239799017435871, 0.00869937520474195, -0.022034864872694, -0.000190569451660849, 0.00637798756361008, -0.0141614638268948, 0.0130290798842907, -0.0243395995348692, -0.0439897961914539, 0.00428307708352804, 0.0169457979500294, 0.00511238165199757, 0.00856615416705608, 0.016892509534955, -0.00280265114270151, 0.0016461203340441, -7.21790856914595e-05, 0.0329057537019253, 0.0180115699768066, 0.00171855965163559, 0.0129757914692163, -0.00741378637030721, 0.00836632121354342, -0.00739380298182368, -0.0193171426653862, 0.00402995571494102, 0.0200365409255028, 0.0114570641890168, 0.0232205390930176, 0.0126560591161251, 0.0379948206245899, -0.0134287448599935, -0.0224744975566864, 0.0121431555598974, -0.00132805353496224, 0.011270553804934, -0.008019944652915, -0.0128958579152822, 0.00109491567127407, -0.0350639447569847, 0.0105578182265162, 0.0169591195881367, 0.0344511270523071, 0.0330389775335789, 0.0196901634335518, 0.0132422344759107, 0.0113105205819011, 0.00151289871428162, -0.00265610706992447, 0.00732719246298075, 0.000283512374153361, -0.0103446636348963, 0.0080998782068491, 0.0072872256860137, -0.0105711398646235, 0.006880899425596, -0.00943209510296583, -0.00502245733514428, 0.014521162956953, 0.0109374998137355, -0.00695417169481516, -0.0105911232531071, -0.00177850935142487, 0.00161614548414946, 0.000461696385173127, -0.0418049618601799, 0.00930553395301104, 0.00325893517583609, -0.0160265676677227, -0.0176785159856081, 0.000696915900334716, -0.00322729512117803, -0.0318133346736431, 0.00214486895129085, -0.00353037449531257, 0.00473270006477833, -0.0301080998033285, 0.0236202031373978, -0.0106244282796979, 0.00298083503730595, 0.0374086461961269, -0.0187309682369232, -0.000322646257700399, -0.00368357938714325, 0.00729388697072864, -0.0209690928459167, 0.0133954398334026, -0.00673102540895343, 0.0266976244747639, 0.00374019867740571, -0.0142147531732917, -0.0113105205819011, 0.00943875592201948, -0.0014596099499613, 0.0195169765502214, 0.0123829552903771, -0.0221680868417025, 0.0342912599444389, 0.00852618739008904, 0.0132422344759107, -0.0400730818510056, -0.00243629142642021, 0.0273903775960207, 0.00991169270128012, 0.00583177898079157, -0.0223013088107109, -0.0217684227973223, -0.0294153466820717, 0.128852009773254, 0.0115902861580253, 0.0103046968579292, -0.0110041107982397, 0.0190906655043364, 0.000449206854682416, 0.0011981624411419, -0.0338915959000587, 0.00517566222697496, 0.00663777021691203, 0.00625142734497786, 0.0155336474999785, -0.00422978820279241, 0.0204628501087427, 0.00974516570568085, 0.000313070951960981, 0.0144279077649117, -0.0128758754581213, 0.000706907536368817, -0.0186377130448818, 0.0177984163165092, -0.00435301847755909, -0.00399665022268891, 0.0309607181698084, 0.0133887780830264, 0.0192505326122046, 0.0298150107264519, 0.0203695949167013, 0.00420647440478206, -0.0136818662285805, -0.0317067578434944, 0.00597832258790731, -0.00169191532768309, 0.00169774377718568, -0.0464943647384644, -0.0136552220210433, 0.00661112554371357, 0.00618481636047363, 0.0235402695834637, -0.00453619798645377, 0.00937214493751526, 0.00155786098912358, 0.0129025196656585, -0.00519897602498531, 0.0164661984890699, -0.00843293219804764, -0.00823976099491119, 0.0128758754581213, -0.00960528291761875, -0.00483927736058831, 0.0240864790976048, -0.00363695179112256, -0.0443095304071903, -0.0103513244539499, -0.00660779513418674, 0.0172655284404755, -0.0148941837251186, 0.0168125759810209, -0.0315202474594116, -0.00150124181527644, -0.0187442898750305, -0.0025278814136982, -0.00423644948750734, -0.0300015211105347, -0.0193437878042459, -0.0151073383167386, -0.0310406498610973, 0.0157468020915985, 0.00423977989703417, -0.0133754564449191, 0.00163945928215981, -0.0221547652035952, -0.0236335247755051, 0.0218616779893637, 0.0158933456987143, 0.0217684227973223, -0.00534885050728917, 0.00172855122946203, -0.00772685743868351, 0.0040266253054142, 0.00993167608976364, -0.0326393097639084, 0.00772019615396857, -0.0290689691901207, -0.00226809899322689, 0.00935216154903173, -0.012203105725348, 0.00496583804488182, -0.0384744219481945, 0.00801328383386135, -0.00490588834509254, -0.00447957869619131, 0.0080665722489357, -0.0111040268093348, 0.00271439156495035, -0.00374019867740571, 0.00338716106489301, -0.00272604846395552, -0.00758697465062141, -0.00925890635699034, 0.0132688786834478, 0.00183845916762948, -0.00455285096541047, -0.0208491925150156, 0.00881261378526688, -0.00639131013303995, 0.00679097510874271, 0.0138683766126633, 0.00343378866091371, 0.0072872256860137, 0.0162530448287725, -0.0214620120823383, -0.023313794285059, -0.0123163443058729, -0.0226077176630497, 0.00220981449820101, 0.0249390974640846, 0.0191572774201632, -0.00723393727093935, 0.00935216154903173, -0.00732053117826581, -0.035543542355299, 0.0166127439588308, 0.0334386415779591, 0.00835299957543612, 0.00240631657652557, -0.00825308263301849, -0.0348774343729019, -0.0163995884358883, 0.00373020698316395, -0.0132622178643942, 0.0354636088013649, 0.0103846294805408, 0.00713402079418302, -0.0117701347917318, -0.00779346795752645, -0.0238466802984476, 0.0236468482762575, -0.0108109386637807, -0.0187309682369232, -0.0151073383167386, -0.0192771758884192, -0.0246326886117458, -0.0134220840409398, 0.0161331444978714, -0.029308769851923, -0.0135752884671092, 0.00293753808364272, -0.00859279837459326, 0.0229940619319677, -0.0210889913141727, -0.0149607947096229, -0.0150673715397716, -0.00696749379858375, -0.00696749379858375, -0.0203829165548086, 0.00558198848739266, -0.00383345386944711, 0.00449290126562119, 0.00672436412423849, 0.0297350790351629, -0.00164029188454151, -0.0114970309659839, 0.0182646922767162, 0.000158304814249277, -0.00158866844139993, 0.0314403139054775, 0.013235573656857, -0.00471604755148292, 0.0205294601619244, 0.0215952340513468, -0.00104329222813249, -0.0351705215871334, -0.00850620400160551, -0.0161198228597641, 0.0128558920696378, -0.0186910014599562, 0.000682344776578248, -0.0170656964182854, 0.00456284265965223, -0.00292088533751667, 0.00714068207889795, 0.000152788605191745, 0.000174020809936337, -0.0214353669434786, -0.0345044136047363, 0.0333054177463055, -0.0191972441971302, 0.0325593762099743, -0.0133554730564356, 0.00558864930644631, 0.00114237586967647, 0.017438717186451, 0.0104112736880779, -0.0171989183872938, -0.00818647164851427, -0.0186910014599562, -0.0147209949791431, 0.0102047808468342, -0.0168125759810209, 0.0109041938558221, 0.00333553762175143, -0.00553869130089879, 0.0181714370846748, -0.00160032534040511, 0.014521162956953, 0.00807989481836557, -0.00476933596655726, 0.00212655100040138, -0.0224478524178267, 0.00969853810966015, -0.00511238165199757, 0.00662777852267027, -0.0128625528886914, 0.0288291703909636, -0.00462945317849517, 0.000769355159718543, 0.00501579605042934, -0.0129757914692163, -0.0331988409161568, -0.00299915298819542, 0.00760029675439, 0.0143879409879446, 0.0191306322813034, 0.0276301763951778, 0.0234869811683893, 0.00693418830633163, -0.034024816006422, 0.0108842113986611, 0.00236135418526828, -0.00132888625375926, 0.00751370238140225, 0.00741378637030721, -0.0163196548819542, -0.0112505704164505, -0.00794001203030348, 0.0242063794285059, 0.0113038588315248, -0.0370622687041759, 0.022461174055934, -0.0105045288801193, 0.000746041361708194, -0.0175452940165997, -0.0296285003423691, -0.0236335247755051, 0.00610488327220082, -0.0209957361221313, 0.00742044718936086, 0.00207992340438068, -0.0239799022674561, -0.0288558155298233, 0.0424444265663624, -0.00209491094574332, 0.0281364172697067, -0.0164528768509626, -0.0299215894192457, -0.00968521554023027, 0.00390339503064752, -0.00313570513390005, -0.0195969082415104, -0.0356234759092331, 0.0245127882808447, -0.00901244673877954, 0.0056652519851923, -0.0151206599548459, 0.0213954020291567, -0.0301880314946175, -0.0104112736880779, -0.0189840886741877, 0.0131156742572784, -0.0378882437944412, -0.013235573656857, 0.0103579852730036, -0.00326892687007785, 0.00505576282739639, -0.0178650263696909, -0.0291222594678402, -0.0104579012840986, -0.0290423259139061, 0.0204095616936684, 0.0156269036233425, -0.0096918772906065, -0.0429240241646767, -0.00095003709429875, 0.00760695757344365, -0.0242596678435802, -0.0243662446737289, -0.014268041588366, 0.0192372109740973, 0.00264611560851336, 0.00429306831210852, 0.00667773652821779, 0.00854617077857256, 0.00549872452393174, -0.0040732529014349, -0.0256851390004158, 0.016386266797781, 0.00808655563741922, -0.0131223350763321, 0.0149741163477302, 0.0104312570765615, 0.0229407735168934, -0.0267908796668053, -0.00428640749305487, -0.017478683963418, -0.0212222132831812, -0.00939212832599878, -0.00722727598622441, -0.0117634739726782, 0.00576183758676052, -0.00369357108138502, -0.000169337246916257, 0.014481196179986, 0.00994499772787094, 0.013488695025444, 0.0151473050937057, 0.0140415644273162, -0.0205427818000317, 0.00895915739238262, 0.0226610079407692, 0.00675433920696378, 0.00449290126562119, -0.000686091661918908, -0.0241930559277534, -0.0236335247755051, -0.0111040268093348, 0.0225544292479753, -0.00563860731199384, 0.0204495266079903, -0.00494252424687147, 0.0112905371934175, 0.0212755016982555, 0.0100582363083959, -0.007959995418787, -0.00412987219169736, 0.0114504033699632, -0.0181447919458151, 0.0264977924525738, 0.0221680868417025, -0.00346043310128152, 0.00817981082946062, 0.0227276179939508, 0.0297617223113775, 0.00155702838674188, -0.00940544996410608, -0.0129091804847121, -0.00894583575427532, 0.00617482466623187, -0.0130357407033443, -0.015880024060607, -0.00773351825773716, 0.0219682548195124, 0.00634801294654608, -0.00301080988720059, -0.0312271602451801, 0.0183845907449722, -0.0174653623253107, 0.00807989481836557, -0.0231805723160505, 0.0266310125589371, 0.0450555719435215, 0.0221414435654879, -0.00858613662421703, 0.0527557842433453, -0.00451621506363153, 0.00189507834147662, 0.0248325206339359, -0.0262047033756971, -0.0039333701133728, -0.0206493604928255, 0.00853284820914268, 0.0242063794285059, -0.00120066036470234, 0.00121564778964967, 0.00765358516946435, 0.007959995418787, 0.00299082673154771, 0.0401263684034348, 0.00847289897501469, 0.0125294988974929, -0.0145744513720274, 0.0135353226214647, 0.0200898293405771, 0.0115769635885954, -0.0125028546899557, -0.046281211078167, -0.0135553060099483, 0.0255385953933001, 0.0278966184705496, -0.0143479742109776, 0.0116302520036697, -0.00345044140703976, -0.00251622451469302, -0.00258949631825089, -0.0253520850092173, -0.0061781550757587, 0.00705408770591021, -0.0063679963350296, 0.0230606719851494, -0.00115902861580253, -0.0137484772130847, 0.00758031336590648, 0.00866607017815113, -0.0211422797292471, 0.00749371945858002, 5.82844841119368e-05, -0.00661778682842851, 0.0329590439796448, -0.0117834573611617, -0.00291255884803832, 0.0305610522627831, 0.00476600555703044, -0.0071473428979516, 0.000694834336172789, 0.0102847134694457, 0.00559864100068808, 0.00292921159416437, 0.00211988994851708, 0.022501140832901, 0.0180515367537737, -0.0046827420592308, 0.00261614075861871, -0.0457483232021332, -0.0182114038616419, -0.0145344845950603, -0.0246859770268202, -0.000199416201212443, -0.0297883674502373, -0.027523597702384, 0.00394669221714139, -0.0197301302105188, -0.034610990434885, -0.0038867425173521, -0.00390672590583563, 0.0172921735793352, 0.0236868150532246, 0.24235688149929, -0.0205427818000317, 0.0138816991820931, 0.0240331906825304, 0.00331555446609855, 0.00292588118463755, 0.0192105658352375, -0.0039333701133728, -0.0103646460920572, 0.00174520397558808, -0.021994898095727, 0.00943209510296583, -0.022541107609868, 0.00406659161671996, -0.00307742063887417, 0.0118633899837732, -0.0408724099397659, -0.0166926756501198, -0.0272171888500452, 0.022541107609868, 0.00987838767468929, 0.00120648881420493, -0.00621146056801081, -0.00189174781553447, 0.0133021846413612, 0.020316306501627, -0.00575517630204558, 0.0267109461128712, 0.00661112554371357, 0.00278433295898139, -0.021874999627471, 0.00712735950946808, -0.003050776431337, 0.00222313683480024, 0.0125961098819971, -0.025378730148077, 0.0239132903516293, 0.0199166405946016, 0.0219815764576197, 0.00269274320453405, 0.0281097739934921, 0.0233670827001333, 0.00278599839657545, -0.0297350790351629, 0.00429306831210852, 0.0300814546644688, -0.0244861450046301, -0.0082064550369978, 0.00871269777417183, 0.024566076695919, -0.0262047033756971, -0.00772685743868351, 0.0222746636718512, 0.0212488565593958, -0.00189674366265535, -0.00385676743462682, 0.0308274962007999, 0.035543542355299, -0.000392379472032189, 0.00169857637956738, -0.0187576115131378, 0.027523597702384, -0.0171722732484341, 0.0209158025681973, -0.0224478524178267, 0.0270972885191441, -0.0115369968116283, 0.0213154684752226, 0.0191972441971302, -0.0109708048403263, -0.0101514915004373, 2.20648398681078e-05, -0.0100782196968794, -0.00323562137782574, -0.0285627283155918, -0.00146543839946389, -0.000420897238655016, 0.0216884892433882, 0.039353683590889, -0.018411235883832, 0.00896581914275885, -0.00229973928071558, 0.00895249657332897, -0.0133687956258655, -0.0108575662598014, 0.00650121783837676, -0.0113638089969754, 0.0114104365929961, 0.000959196069743484, -0.00377017352730036, 0.0175319723784924, -0.0233670827001333, -0.00157784426119179, 0.00693418830633163, 0.00929887313395739, 0.0259249377995729, -0.00874600280076265, -0.0113305039703846, -0.0169324744492769, -0.0191705990582705, 0.00223479373380542, 0.0385010652244091, 0.0190640222281218, 0.0238866470754147, -0.00929887313395739, -0.0179582815617323, -0.013761798851192, -0.0106977010145783, 0.000709821761120111, -0.0221680868417025, 0.018997410312295, -0.0205294601619244, 0.0207026489078999, -0.00496583804488182, -0.00534218922257423, -0.0124429045245051, -0.00220481865108013, -0.00375685119070113, 0.00650121783837676, 0.0048992270603776, 0.00148625439032912, -0.0475068502128124, 0.0139349875971675, -0.0158933456987143, 0.000285177666228265, 0.0113371647894382, -0.0422046259045601, -0.000119066877232399, -0.0136685436591506, -0.0386342853307724, 0.0315202474594116, 0.0148808611556888, 0.0110507383942604, -0.0133621338754892, -0.0120032727718353, -0.00380347878672183, -0.00723393727093935, 0.0174653623253107, -0.00289091048762202, 0.00941211171448231, -0.0143479742109776, 0.00549872452393174, 0.01013816986233, 0.0161065012216568, 0.0250723194330931, 0.001552032539621, 0.0210889913141727, 0.00278100254945457, -0.0166926756501198, 0.00262113660573959, -0.0321330688893795, 0.0269907116889954, -0.0217550992965698, -0.0175586175173521, -0.00748705817386508, -0.00263445870950818, -0.0520630329847336, -0.0080998782068491, -0.00477932766079903, 0.0187709350138903, -0.0437499992549419, 0.0130690466612577, 0.0466009415686131, -0.00396001432090998, -0.0121098505333066, 0.00546541949734092, -0.168605357408524, 0.0252588298171759, 0.0123496493324637, -0.0141214979812503, 0.0122830383479595, 0.00101498269941658, -0.000517482927534729, -0.00470272498205304, -0.00665442273020744, -0.0172522068023682, 0.00880595296621323, 0.0248191989958286, -0.024872487410903, -0.0332521311938763, 0.00298916129395366, -0.00957197789102793, -0.0286160167306662, 0.0165328104048967, 0.0109108556061983, 0.0285893715918064, 0.031253807246685, -0.005711879581213, 0.0102114416658878, -0.0166260655969381, -0.00318899378180504, 0.0151339825242758, -0.0266709793359041, 0.0080066230148077, -0.0229807384312153, -0.0217151325196028, -0.0236601699143648, -0.0095653161406517, 0.00519564561545849, 0.010917516425252, -0.00555867468938231, 0.00476600555703044, -0.0126227540895343, -0.0124695487320423, -0.0258583277463913, 0.0414585843682289, 0.0239799022674561, 0.0121498173102736, 0.00274270121008158, -0.00830637197941542, -0.00120149296708405, 0.0063047157600522, 0.0229540951550007, -0.00585509277880192, -0.00748039735481143, -0.0167592875659466, 0.00721395388245583, -0.0213021468371153, -0.0115369968116283, 0.00240798178128898, -0.00560530228540301, 0.0313603840768337, 0.0109974490478635, 0.00548873329535127, 0.00605825567618012, -0.0142147531732917, -0.0126027707010508, -0.0027310443110764, 0.00761361885815859, -0.00579847348853946, 0.00347708584740758, -0.0120632229372859, 0.0121431555598974, 0.0300015211105347, -0.0255119502544403, 0.0183446258306503, 0.00412654131650925, -0.00980511587113142, 0.00997164286673069, -0.0521163195371628, -0.0145611297339201, -0.00752036366611719, -0.00351705215871334, 0.0129025196656585, -0.0185577794909477, -0.00226809899322689, -0.0204095616936684, 0.0290156807750463, -0.0134287448599935, -0.0117101855576038, 0.0104179354384542, 0.0339182391762733, 0.0136219160631299, 0.016386266797781, 0.0140682086348534, 0.00744709186255932, 0.0148675395175815, -0.00842627137899399, -0.0139216650277376, -0.00749371945858002, -0.000959196069743484, 0.0123296659439802, 0.0196768417954445, 0.0445226840674877, -0.007959995418787, -0.0176518727093935, -0.0133421504870057, 0.0307742077857256, -0.0114970309659839, 0.0108575662598014, -0.0016652710037306, 0.0183845907449722, 0.0117101855576038, -0.00796665623784065, 0.00722061470150948, -0.0140282427892089, -0.0218217112123966, 0.0123829552903771, 0.00949870515614748, 0.0224744975566864, 0.0177318044006824, -0.00403661699965596, 0.0254719853401184, 0.00905241258442402, -0.00191339629236609, 0.019383754581213, 0.0236202031373978, 0.00437633227556944, -0.0204228833317757, -0.00320398132316768, -0.00136968540027738, -0.027869975194335, -0.121711321175098, -0.0632003620266914, 0.0055553438141942, 0.000283928704448044, 0.00227476004511118, 0.0433503352105618, 0.0207292921841145, 0.0231006387621164, -0.0033471945207566, 0.0226476844400167, -0.0207026489078999, 0.00449956208467484, 0.00510572083294392, 0.00110157672315836, 0.0302413199096918, -0.0110773826017976, -0.0393803268671036, -0.0251256078481674, -0.0323195792734623, 0.0096452496945858, -0.00196002400480211, -0.0153204929083586, -0.00361696863546968, -0.000548706797417253, 0.00718730967491865, -0.0134953558444977, -0.00941211171448231, 0.0228608399629593, 0.0097518265247345, -0.0179183147847652, -0.0181181486696005, 0.00557532720267773, 0.0174520388245583, -0.0269507449120283, -0.0148808611556888, -0.00941877253353596, -0.0447091944515705, -0.0119433235377073, 0.0177717711776495, -0.00851286482065916, 0.0108176004141569, 0.00447624828666449, -0.0193038210272789, -0.0321330688893795, -0.00195003231056035, -0.0168125759810209, -0.00998496450483799, 0.0207292921841145, -0.00308075128123164, 0.0120965279638767, -0.0240731574594975, 0.00349373836070299, -0.0196102317422628, 0.00424977159127593, -0.0101714748889208, 0.025498628616333, 0.00395002262666821, 0.01942372135818, -0.0313070937991142, -0.011989951133728, 0.00818647164851427, 0.00577182928100228, -0.0267242677509785, 0.0105778006836772, -0.00953867193311453, 0.013448728248477, -0.0123762935400009, -0.0132022686302662, -0.00242130388505757, -0.00603494187816978, -0.0229008067399263, 0.0197034869343042, -0.00428973790258169, 0.0327991768717766, -0.0205561053007841, -0.00120066036470234, -0.0258716493844986, -0.0243395995348692, 0.0315468944609165, -0.00233137933537364, -0.021914966404438, -0.0205294601619244, -0.0056186243891716, -0.0172388851642609, 0.0135952718555927, 0.0251655746251345, -0.00159283168613911, 0.0271639004349709, -0.0131156742572784, -0.00910570193082094, 0.00215486064553261, 0.0190640222281218, -0.00930553395301104, -0.00294086849316955, -0.0066943890415132, 0.0321597121655941, -0.00993833690881729, -0.00862610340118408, -0.00353703554719687, 0.02659104578197, -0.0181447919458151, -0.00384011492133141, -0.0365293845534325, 0.0266709793359041, -0.00540213892236352, 0.00132805353496224, -0.0260581597685814, -0.0129424855113029, 0.0168658643960953, -0.024992385879159, -0.00673435581848025, 0.00728056486696005, -0.0271905437111855, 0.0187309682369232, 0.021568588912487, 0.00189507834147662, -0.0267375912517309, -0.00737381959334016, 0.027869975194335, -0.00571520999073982, 0.0103713078424335, -0.0112971980124712, -0.0207559373229742, -0.0132488962262869, 0.0181181486696005, -0.00266110291704535, 0.00998496450483799, 0.00202496955171227, -0.0237667467445135, 0.0413786545395851, -0.00825308263301849, -0.0108109386637807, 0.0150140831246972, -0.0294419899582863, -0.0122364107519388, 0.0221680868417025, -0.015880024060607, -0.0141081754118204, -0.0248325206339359, 0.00518232304602861, 0.011736829765141, 0.0200765058398247, -0.0294952783733606, -0.0254053734242916, -0.0050724153406918, -0.00730054778978229, -0.00278599839657545, 0.00327558792196214, 0.00753368576988578, 0.0145344845950603, 0.00404327781870961, -0.0137218330055475, -0.00158617063425481, 0.00784009601920843, -0.0227276179939508, -0.0205694269388914, -0.0204495266079903, -0.0179982483386993, -0.014014920219779, 0.0313337370753288, -0.0334919281303883, -0.0117301689460874, 0.0103846294805408, 0.00307742063887417, 0.0190906655043364, -0.0323728658258915, 0.00318233272992074, 0.0193437878042459, 0.00085761456284672, -0.0140015985816717, 0.0133155062794685, -0.0306676309555769, 0.00163030030671507, 8.27951880637556e-05, 0.00497249886393547, 0.00772019615396857, 0.0239665787667036, -0.0264178588986397, -0.0133421504870057, 0.00542878312990069, 0.00192505319137126, 0.0236734915524721, 0.011170637793839, 0.000535384635441005, -0.0384744219481945, 0.0230340287089348, -0.0121498173102736, 0.00532220583409071, -0.00750038027763367, 0.0332254879176617, -0.013801765628159, 0.0150140831246972, -0.00858613662421703, 0.0159333124756813, -0.0100515754893422, 0.00752036366611719, 0.0155469700694084, 0.00987838767468929, 0.00871269777417183, -0.00165194878354669, 0.0270040333271027, -0.0169990863651037, 0.014947472140193, -0.000366151449270546, 0.000296626385534182, -0.0180515367537737, -0.00368024874478579, 0.00877264700829983, -0.0264178588986397, -0.000746041361708194, -0.0203296281397343, 0.00857281498610973, 0.0246326886117458, 0.0116302520036697, 0.0212621800601482, 0.0218883212655783, 0.00461613107472658, 0.00659780343994498, 0.00103912909980863, -0.00714068207889795, -0.00744043057784438, 0.0325860232114792, 0.0156668685376644, 0.0110773826017976, 0.0156002584844828, -0.0123363276943564, 0.0277633983641863, 0.0113305039703846, 0.0229540951550007, -0.0031057302840054, 0.0322396457195282, -0.00135969370603561, -0.00726724229753017, -0.0199566073715687, -0.0395401939749718, -0.0137351546436548, -0.0197700969874859, -0.0251655746251345, -0.0262313485145569, 0.000855949299875647, 0.00148708699271083, 0.0355968326330185, 0.02596490457654, -0.00739380298182368, -0.0124961929395795, 0.0104379188269377, 0.0272305104881525, 0.000420272757764906, -0.01520059350878, -0.0100782196968794, -0.0132622178643942, 0.0342379696667194, 0.00243629142642021, 0.011230587027967, -0.0329057537019253, 0.020009895786643, 0.00320564652793109, 0.014441229403019, -0.00333553762175143, -0.0343978367745876, 0.0276834648102522, 0.0240998007357121, 0.0117301689460874, 0.0132422344759107, 0.00990503188222647, -0.0115036917850375, -0.0413520075380802, 0.0197567753493786, -0.0103979520499706, 0.00752702495083213, -0.0341047495603561, 0.00252122012898326, 0.0120299169793725, -0.0403395220637321, -0.0211955681443214, 0.0101914582774043, -0.0140815312042832, -0.00952535029500723, 0.00817981082946062, 0.0056652519851923, 0.029308769851923, -0.0150140831246972, 0.020982414484024, -0.00931219477206469, -0.0499581284821033, -0.00305244163610041, 0.0263379253447056, 0.00030495275859721, 0.0156801920384169, -0.00708073191344738],id:"473046699cfca5c576d063d88a553653",source:"state_of_union.txt",text:"And I’m taking robust action to make sure the pain of our sanctions is targeted at Russia’s economy. And I will use every tool at our disposal to protect American businesses and consumers.
Tonight, I can announce that the United States has worked with 30 other countries to release 60 Million barrels of oil from reserves around the world.
America will lead that effort, releasing 30 Million barrels from our own Strategic Petroleum Reserve. And we stand ready to do more if necessary, unified with our allies.
These steps will help blunt gas prices here at home. And I know the news about what’s happening can seem alarming.
But I want you to know that we are going to be okay.
When the history of this era is written Putin’s war on Ukraine will have left Russia weaker and the rest of the world stronger.
While it shouldn’t have taken something so terrible for people around the world to see what’s at stake now everyone sees it clearly."})
(:Chunk{embedding:[-0.000754114764276892, -0.0207826253026724, 0.0105236861854792, -0.021960748359561, -0.00683708628639579, 0.00922642648220062, -0.0133498581126332, -0.0115694357082248, -0.0222652070224285, -0.0136079862713814, 0.00613219803199172, 0.00942498631775379, -0.017790986225009, -5.46040282642934e-05, -0.0098485816270113, 0.0151832299306989, 0.0186381749808788, -0.00724082533270121, 0.0346553586423397, -0.0204914025962353, -0.00691651040688157, -0.00732024945318699, 0.0157656725496054, 0.00525522418320179, -0.0146140241995454, 0.0266600046306849, 0.0365085862576962, -0.0221460703760386, 0.0269247498363256, -0.0266070552170277, -0.00679075578227639, -0.0229403115808964, -0.0102589391171932, -0.019683925434947, -0.00521882157772779, -0.0211929827928543, 0.000146024409332313, -0.0211532693356276, 0.0206899624317884, -0.0121518783271313, -0.0120393615216017, 0.00786959938704967, 0.00900800991803408, -0.012290870770812, -0.0315048694610596, -0.00032803785870783, -0.0151435174047947, -0.015527400188148, 0.0125489989295602, 0.0310018509626389, 0.0431537292897701, 0.0134822316467762, -0.037382248789072, -0.021987222135067, -0.0265276301652193, -0.0132174845784903, -0.0197368748486042, 0.0102126086130738, -0.00452717067673802, -0.0235492289066315, -0.0168908461928368, 0.00465954374521971, -0.0185058023780584, -0.00396789284422994, -0.014362514950335, -0.0237477887421846, -0.0350260026752949, 0.0209282357245684, 0.0185058023780584, -0.00929923169314861, 0.0454570278525352, 0.029307471588254, 0.00290725100785494, -0.00149168283678591, 0.0252038966864347, 0.00583766726776958, -0.0103780748322606, -0.0184793267399073, -0.00396127393469214, -0.0237477887421846, -0.0062811179086566, -0.0415917225182056, -0.00766442017629743, -0.00485810404643416, -0.00481508253142238, 0.0135087063536048, -0.000807891425210983, 0.0260378494858742, -0.00565565377473831, -0.0176321379840374, -0.0072871558368206, 0.0216430518776178, 0.00716802012175322, 0.0294927954673767, -0.0173541530966759, 0.000955570547375828, 0.00646975031122565, 0.0244890805333853, 0.0108678564429283, -0.0375940464437008, 0.0180027838796377, -0.00794902257621288, -0.0185719896107912, -0.0114635368809104, -0.0319549404084682, 0.0031405589543283, -0.0183337163180113, -0.00540414405986667, 0.0144816506654024, 0.0173276793211699, -0.0146669736132026, -0.00859103444963694, 0.000667244719807059, -0.0481044948101044, 0.000710679742041975, -0.0109936110675335, -0.0154479760676622, -0.0142566161230206, 0.00509306695312262, 0.00127243937458843, 0.0171820688992739, 0.0119930300861597, 0.0153553150594234, 0.00540414405986667, 0.00463637849316001, -0.0125225242227316, -0.0123239643871784, 0.00421278364956379, 0.0051956563256681, -0.010205989703536, 0.0289633013308048, 0.0121518783271313, 0.00366012472659349, -0.0378323197364807, -0.00293372571468353, 0.0152494162321091, -0.0325638577342033, 0.00433522881940007, -0.00695622246712446, 0.00676759053021669, -0.000804582086857408, -0.0164010655134916, -0.0205178782343864, -0.00953088514506817, 0.0151038058102131, 0.0249126758426428, 0.00608586752787232, -0.0114569179713726, 0.00134855404030532, -0.0174732897430658, 0.012555617839098, -0.000109828557469882, 0.0158186219632626, -0.0067973742261529, 0.0242110956460238, 0.00459666643291712, -0.0111061288043857, 0.00806154031306505, -0.00959707144647837, 0.0191809069365263, -0.00692974776029587, -0.0132704339921474, -0.0253627449274063, -0.015514163300395, -0.00779017480090261, 0.0178306978195906, 0.0259319506585598, 0.0180689692497253, -0.00284933764487505, 0.00212790258228779, 0.00162074691615999, 0.0371175035834312, -0.0171820688992739, 0.0369851291179657, -0.0099147679284215, 0.0410092808306217, -0.00135682744439691, -0.00351120461709797, -0.0357937701046467, 0.00464961584657431, -0.00403407961130142, 0.0181086827069521, 0.0343641377985477, 0.0231918208301067, -0.000164122335263528, 0.00939189270138741, 0.042783085256815, 0.00250682141631842, 0.0137006472796202, -0.00345494598150253, 0.00816082023084164, 0.0139256818220019, 0.010470736771822, -0.0207296758890152, -0.645135045051575, -0.0144419381394982, 0.019710399210453, 0.00307271769270301, -0.0203590299934149, -0.00105898722540587, 0.0229667853564024, -0.00341854314319789, -0.00469263736158609, 0.000987009261734784, -0.0132439592853189, -0.00544054713100195, -0.0290692001581192, -0.0297840163111687, -0.017645375803113, -0.0147993471473455, 0.000317903002724051, -0.0412740260362625, 0.0132373403757811, -0.00162571086548269, 0.00784312468022108, 0.0294663198292255, 0.000490608916152269, -0.0125291431322694, -0.00449738651514053, -0.0175924263894558, -0.00302142300643027, -0.0210870839655399, 0.00675766216591001, 0.00325473118573427, -0.0247803013771772, 0.000531148281879723, -0.0233374312520027, -0.0149846691638231, 0.0490046329796314, 0.00955074094235897, -0.0331727750599384, -0.00225365720689297, 0.0183337163180113, 0.0148258218541741, -0.00670802220702171, 0.0114370621740818, 0.00771075068041682, 0.00666831014677882, 0.0167319979518652, 0.0062447153031826, 0.00429551722481847, -0.0124298632144928, 0.0200678091496229, -0.00821376964449883, 0.00132290669716895, -0.000341068342095241, 0.00652600871399045, 0.0154479760676622, 0.019948672503233, 0.00919333286583424, 0.00485479459166527, -0.0276395678520203, -0.00643334770575166, -0.000770247774198651, -0.00481508253142238, 0.00822038855403662, -0.00524860573932528, 0.00362372188828886, -0.0428095608949661, 0.00936541799455881, -0.00602960865944624, 0.0193662289530039, 0.00605939282104373, -0.00957721564918756, 0.0073136305436492, 0.012304107658565, 0.00453378912061453, -0.0313460230827332, 0.0348936282098293, 0.0117746144533157, 0.0219077989459038, -0.0257863402366638, -0.0149714322760701, 0.0117282839491963, -0.0161760300397873, -0.0153156034648418, -0.00429551722481847, 0.0149052450433373, 0.0198957230895758, 0.0108744753524661, -0.0269379876554012, 0.0181351564824581, 0.0123702948912978, 0.0182807669043541, 0.0100272856652737, 0.016652574762702, -0.000841812114231288, -0.0289103519171476, 0.0126218041405082, 0.0497194528579712, -0.0134094264358282, 0.000699924363289028, 0.0213783048093319, 0.00345163652673364, 0.000628360023256391, -0.014640498906374, -0.00100521056447178, 0.00691651040688157, -0.00297343754209578, 0.0255215931683779, -0.032219685614109, 0.0117282839491963, 0.0315048694610596, -0.0187308359891176, 0.0131843909621239, -0.010616347193718, -0.00439148768782616, -0.0100471414625645, 0.0334110483527184, -0.030445883050561, 0.00172250892501324, 0.0335963703691959, 0.00634068623185158, -0.0230991598218679, 0.0158186219632626, 0.00864398293197155, 0.0111789340153337, -0.00298005621880293, 0.00280962558463216, 0.00964340288192034, 0.0057648615911603, -0.0111987898126245, -0.014362514950335, 0.00401422334834933, 0.00431206356734037, 0.000483990268548951, 0.0388648323714733, -0.00136179139371961, -0.00698269717395306, 0.0145610747858882, 0.00240919599309564, -0.0166128631681204, 0.0150111438706517, 0.00481177307665348, 0.00473234942182899, 0.0143492771312594, -0.00745262252166867, -0.0010416132863611, -0.0150111438706517, -0.0191014818847179, -0.0285926554352045, 0.00355753535404801, -0.0375146232545376, 0.00845866091549397, 0.0133167644962668, -0.0072871558368206, -0.00694298511371017, 0.00647636875510216, -0.0134822316467762, 0.0105104483664036, -0.0119268437847495, 0.00955735985189676, -0.0115892915055156, -0.0155538748949766, 0.0170496944338083, 0.0299958139657974, -0.0172614920884371, 0.0147596346214414, 0.00448745861649513, 0.00562586961314082, 0.0031074658036232, -0.00847851671278477, 0.00603291811421514, -0.00363695924170315, -0.0101464213803411, -0.0108016701415181, 0.0284867566078901, 0.00955735985189676, 0.0392354764044285, 0.012568854726851, -0.0154082644730806, 0.00968311447650194, -0.00291386968456209, 0.0109340436756611, 0.0247405897825956, -0.0272159725427628, -0.0397649705410004, 0.000431040913099423, 0.0126879913732409, 0.00380904483608902, -0.00314552313648164, -0.00146438076626509, 0.00878959428519011, 0.0119136068969965, -0.0112782139331102, -0.000917513156309724, -0.00418961839750409, -0.00242077861912549, -0.00561263225972652, -0.0121849719434977, -0.0225299540907145, -0.00220070779323578, 0.0184396151453257, -0.00784312468022108, 0.0218680873513222, -0.0212591681629419, 0.0358731932938099, 0.000957225216552615, 0.0102324644103646, -0.0108149070292711, -0.004672781098634, -0.0171423554420471, 0.0203193183988333, 0.0243037566542625, 0.0165863875299692, -0.0366144850850105, -0.0242772828787565, -0.0110465604811907, -0.0178836472332478, 0.039367850869894, -0.0141374794766307, 0.00177711294963956, -0.0234565678983927, 0.0264482069760561, 0.00785636156797409, -0.0113113075494766, 0.00402084225788713, -0.0128336017951369, -0.0129461186006665, -0.00679075578227639, -0.0011814326280728, 0.0314254462718964, 0.0195515528321266, -0.00863074604421854, -0.0230462104082108, 0.0228741243481636, 0.0102854138240218, 0.0309224277734756, 0.0078232679516077, -0.00765780173242092, 0.0126615166664124, -0.00630759261548519, 0.0277984142303467, -0.0153553150594234, 0.0190617702901363, -0.00383551931008697, 0.0057185310870409, 0.00618183799088001, 0.0257333908230066, -0.0129461186006665, 0.023999297991395, -0.00898815412074327, -0.0223181564360857, -0.017790986225009, -0.00127078464720398, 0.00650284346193075, 9.02310930541717e-05, -0.00677751842886209, 0.0123835317790508, -0.0277454666793346, -0.0116157662123442, 0.00124679203145206, 0.0464895404875278, 0.0449804849922657, 0.0117812333628535, -0.00142715079709888, 0.0110333235934377, 0.019803062081337, -0.00814758334308863, -0.00933894421905279, 0.0046562347561121, 0.00269379885867238, -0.0164275392889977, -0.0125423800200224, -0.0199883840978146, -0.0102126086130738, 0.0365615338087082, -0.0144816506654024, 0.00286753894761205, 7.14092457201332e-05, -0.0203987415879965, -0.00470587471500039, -0.0154082644730806, 0.0273483451455832, -0.0187705494463444, -0.0396855473518372, -0.000121307813969906, 0.0172217804938555, -0.00371307414025068, -0.0238801632076502, -0.032457958906889, 0.0101861339062452, -0.0262099336832762, 0.00896167941391468, -0.0118408007547259, -0.00229502399452031, -0.0112186465412378, 0.00385206611827016, 0.000220277623157017, -0.0062248595058918, 0.0254818797111511, -0.00192768767010421, 0.0182278174906969, -0.015381789766252, 0.000729294726625085, -0.0208752863109112, -0.00835938099771738, -0.00380904483608902, 0.016506964340806, -0.00693636666983366, 0.00539090717211366, -0.0118672754615545, 0.00735334260389209, -0.017645375803113, 0.00187970232218504, -0.00597996870055795, -0.0322726368904114, 0.0148125840350986, 0.00630097417160869, -0.0117349028587341, -0.0311077497899532, 0.000245924980845302, 0.0397120229899883, 0.00487134139984846, -6.44803294562735e-05, 0.0011855693301186, -0.0274807196110487, -0.000738395377993584, 0.136185765266418, 0.0249523874372244, 0.0213253553956747, 0.0062281689606607, -0.000819474109448493, 0.0112120276317, -0.0153288403525949, -0.0246744025498629, -0.00520889367908239, 0.0209017600864172, -0.0316107682883739, -0.020557589828968, 0.00835938099771738, 0.0173938646912575, 0.0106692966073751, 0.0235889405012131, 0.00765118282288313, -0.00225200247950852, -0.0279307886958122, 0.00390501553192735, 0.000106105559098069, -0.0125953294336796, -0.00509637594223022, -0.0020799171179533, -0.000785553420428187, 0.0303135104477406, 0.00849175360053778, 0.0167187619954348, -0.00105402327608317, -0.0147596346214414, -0.0245155543088913, 0.0191676691174507, 0.0157127231359482, 0.00781664997339249, -0.0183601919561625, -0.0234565678983927, 0.0138727333396673, 0.0213783048093319, 0.0107354829087853, 0.00374285806901753, -0.00594356609508395, -0.00642341934144497, 0.0087962131947279, -0.0147728724405169, 0.008253482170403, 0.00116240396164358, -0.00960369035601616, 0.0101464213803411, 0.00518572796136141, -0.0267791394144297, 0.0172482542693615, -0.0107288649305701, -0.0318490415811539, -0.0262628830969334, -0.00455033592879772, -0.000884419830981642, -0.0147993471473455, -0.0150773311033845, -0.0214577298611403, 0.00315048708580434, -0.00139984872657806, -0.0101265655830503, -0.0154876885935664, -0.0180424954742193, -0.0185322761535645, -0.0239331126213074, -0.016533438116312, 0.000878628459759057, -0.0160833690315485, -0.000500536931212991, 0.0108347628265619, -0.0369586534798145, 0.00452717067673802, 0.00497393077239394, 0.0119930300861597, 0.019803062081337, -0.00164391228463501, -0.0138859702274203, -0.0073003931902349, -0.0165466759353876, 0.0110465604811907, -0.0171555932611227, 0.00275833089835942, -0.0183072425425053, -0.0280366875231266, 0.00871678907424212, 0.00670140376314521, -0.00203358638100326, -0.0083659989759326, 0.0111855529248714, 0.00112517399247736, 0.00328451511450112, 0.0190352965146303, -0.00631421152502298, -0.00730701209977269, 0.0103979306295514, -0.013356477022171, 0.00106974260415882, 0.00093985116109252, -0.000872009783051908, 0.0187043622136116, -0.0297575406730175, -0.0141374794766307, -0.011503248475492, 0.0208885241299868, -0.0203193183988333, 0.00706873973831534, 0.0177380368113518, -0.0108744753524661, -0.0190088208764791, 0.00125010136980563, -0.0328021310269833, -0.0249788612127304, 0.00629766471683979, -0.00281624426133931, -0.0189823471009731, 0.00868369545787573, 0.00281293480657041, 0.00190121307969093, -0.0200413335114717, -0.0250847600400448, -0.0323255844414234, 0.0125026684254408, 0.00775708165019751, -0.00108711654320359, 0.0210738461464643, -0.0162686910480261, -0.0182675290852785, 0.00506990123540163, -0.0056953658349812, 0.00869031436741352, 0.0243567060679197, 0.0124761937186122, 0.0107487207278609, 0.00749233458191156, 0.00405724486336112, -0.00812110863626003, 0.0236418899148703, -0.00617852853611112, -0.00444443710148335, -0.00404731696471572, -0.00583104835823178, 0.00185984629206359, -0.0359526164829731, 0.00105485052336007, -0.0414328761398792, -0.000144266334245913, 0.0129990680143237, 0.00934556219726801, 0.018691124394536, -0.000805823132395744, -0.0374087244272232, 0.00245552673004568, -0.00732024945318699, -0.0120062679052353, 0.000403945712605491, -0.0127740334719419, -0.0176056623458862, 0.0028791215736419, 0.00908081606030464, 0.0419888459146023, 0.0234433300793171, -0.00685694254934788, 0.0130917299538851, 0.000285636982880533, 0.00354098854586482, 0.0271894969046116, 0.0189426336437464, -0.00158186221960932, 0.0205840654671192, 0.00726068112999201, 0.0151038058102131, -0.0377528965473175, 0.0083196684718132, 0.00693636666983366, 0.00544385612010956, -0.018519040197134, -0.0100339045748115, -0.023125633597374, -0.024118434637785, -0.00708859600126743, -0.00672125956043601, -0.012509286403656, 0.0174203403294086, -0.00853146612644196, -0.00753866555169225, 0.0230991598218679, -0.0107156271114945, 0.0118143260478973, -0.00628442736342549, 0.0062579526565969, 0.00275833089835942, 0.0256274919956923, 0.0193662289530039, -0.00437494087964296, -0.0151302805170417, 0.000489781610667706, -0.0142036667093635, -0.00216430518776178, 0.0338875912129879, 0.0246214531362057, 0.0200545713305473, 0.00505997333675623, 0.009418367408216, 0.0147199230268598, 0.0357408188283443, -0.020531116053462, -0.0145478369668126, -0.0180160198360682, -0.0331727750599384, 0.0110399415716529, 0.0101728960871696, -0.00849175360053778, -0.0321137867867947, -0.00781664997339249, 0.00186481035780162, -0.00059319834690541, 0.00643334770575166, 0.00167204160243273, -0.0242772828787565, -0.00193927041254938, 0.00284106424078345, 0.0222916807979345, 0.0160833690315485, 0.0228211749345064, 0.0119797931984067, -0.0011814326280728, -0.0229138359427452, 0.00342847127467394, -0.0129130259156227, 0.000454206252470613, 0.021113557741046, -0.00202862243168056, -0.0182278174906969, -0.00132787076290697, -0.0154479760676622, 0.0157391987740993, 0.0187837854027748, -0.0175659507513046, 0.033305149525404, 0.00784312468022108, -0.00533133884891868, -0.0130387805402279, -0.0359261408448219, -0.0144948875531554, 0.00894182361662388, -0.0302870348095894, 0.0117282839491963, -0.0125423800200224, -0.0127475587651134, -0.032457958906889, 0.0293604210019112, -0.0125357611104846, 0.0195912644267082, -0.00425249570980668, -0.0316637195646763, 0.0247935391962528, -0.015778910368681, -0.00743938516825438, -0.00281789875589311, -0.0228741243481636, 0.0129725933074951, -0.0062248595058918, -0.000426076905569062, 0.00446760235354304, 0.00112434662878513, -0.0125953294336796, 0.00194257975090295, -0.00554313650354743, 0.0163613520562649, -0.0380970649421215, -0.000254198297625408, 0.00713492650538683, 0.0147993471473455, 0.0188499726355076, -0.00749895349144936, -0.0279307886958122, -0.0101000908762217, -0.0220401715487242, -0.00393810868263245, 0.0117282839491963, -0.0221460703760386, -0.00646644085645676, -0.000545626622624695, 0.00810125283896923, -0.00729377474635839, -0.0159245207905769, -0.00379249802790582, 0.0187705494463444, -0.00609248597174883, -0.00839909259229898, -0.000403738900786266, -0.0101464213803411, 0.00511623220518231, -0.00515594426542521, 0.0113708758726716, -0.00644989404827356, 0.0143360402435064, -0.0215239152312279, 0.0209811851382256, 0.00563910696655512, 0.0258525256067514, -0.0193265173584223, 0.000870355113875121, -0.0023446639534086, -0.00716802012175322, 0.0208355747163296, 0.00990814901888371, -0.0147596346214414, 0.00690989196300507, 0.00350127648562193, 0.00880945008248091, 0.00917347706854343, 0.0025928639806807, 0.00648298766463995, 0.0280366875231266, 0.0170761700719595, -0.00258624530397356, -0.0249788612127304, 0.0527640394866467, 0.00811448972672224, 0.00931908749043941, 0.0062480247579515, -0.011476774699986, -0.00423594890162349, 0.00916685815900564, 0.0138197839260101, 0.00917347706854343, -0.0229270737618208, -0.0171026438474655, -0.0173276793211699, 0.00857779663056135, -0.0041730715893209, -0.0192073807120323, -0.00563248852267861, 0.0021163197234273, -0.0102258455008268, 0.022953549399972, 0.029042724519968, -0.00279638823121786, 0.0129792122170329, 0.0140183437615633, 0.0258260518312454, -0.00583766726776958, -0.00121535337530077, -0.0111458403989673, -0.00239595863968134, -0.00476875202730298, -0.00656572077423334, -0.0277984142303467, 0.0015768981538713, 0.0502754189074039, 0.0112318834289908, -0.000436004891525954, -0.0062248595058918, 0.0196309760212898, -0.0332257263362408, 0.00484155723825097, -0.0093720369040966, 0.0194853655993938, 0.0266864784061909, 0.0183734279125929, -0.00243567069992423, 0.0262364093214273, -0.00237610260955989, 0.0121717350557446, 0.00806815922260284, -0.0166658125817776, 0.0041631436906755, -0.0395266972482204, 0.0178439356386662, 0.0227947011590004, -0.00681061157956719, 0.0101530402898788, 0.0192073807120323, 0.0020617158152163, -0.00924628227949142, 0.0332257263362408, -0.0104905925691128, -0.0148655334487557, 0.00976253859698772, -0.00830643158406019, 0.00220567197538912, 0.0181616321206093, 0.0187573116272688, -0.030181135982275, -0.00867707654833794, 0.0073003931902349, -0.0026325760409236, 0.00345494598150253, 0.00533795775845647, -0.00906095933169127, -0.00720111327245831, 0.0129659753292799, -0.0227549877017736, -0.0111987898126245, 0.00436832243576646, -0.022715276107192, 0.0239595863968134, 0.0272159725427628, 0.00492429081350565, 0.0252700839191675, 0.0129262628033757, 0.000558863976038992, -0.00918009597808123, -0.00503680808469653, 0.0132770529016852, -0.00245883595198393, 0.00810125283896923, -0.0207693874835968, 0.0273483451455832, -0.00392818078398705, 0.0253362692892551, -0.00564572587609291, 0.00677751842886209, -0.00406386377289891, -0.00855132192373276, -0.0150111438706517, 0.0103846937417984, 0.0271100737154484, -0.0111061288043857, 0.00826671905815601, -0.0280896369367838, -0.0223446302115917, -0.0228741243481636, -0.0178836472332478, 0.0202266555279493, -0.000938196491915733, -0.016506964340806, 0.00163563888054341, -0.00882930587977171, -0.00483162933960557, -0.00567881902679801, 0.00247703725472093, -0.0033556658308953, 0.00304293376393616, 0.237001344561577, -0.0261172726750374, 0.000490608916152269, 0.0116554787382483, -0.0051923468708992, 0.0297575406730175, 0.01169519033283, 0.0041730715893209, 0.00442789029330015, -0.0105303041636944, -0.0018284076359123, -0.00760485231876373, -0.0263423081487417, 0.000456274574389681, -0.0136874103918672, -0.0146007863804698, -0.0379911661148071, -0.0244758427143097, -0.0213121175765991, 0.00249854801222682, -0.0189691092818975, -0.0217754244804382, 0.0132307214662433, -0.00283775478601456, 0.00224207458086312, -0.00199056509882212, -0.00743938516825438, 0.0101861339062452, 0.00972944498062134, -0.00310250162146986, -0.0316107682883739, 0.00488457875326276, 0.013780071400106, 0.0117746144533157, -0.0110399415716529, -0.0138330208137631, 0.0203855037689209, -0.0177247989922762, 0.0172482542693615, 0.0141771920025349, 0.00901462882757187, 0.0135550368577242, -0.00734672416001558, -0.000989491236396134, 0.00538759771734476, 0.0306841544806957, -0.0118143260478973, -0.0158450957387686, -0.00382559141144156, 0.00520889367908239, -0.0146934483200312, -0.0121915908530354, 0.017963070422411, 0.01854551397264, 0.0131843909621239, -0.00687679834663868, 0.0249259117990732, 0.0152626540511847, 0.00428558886051178, -0.00334408320486546, -0.022834412753582, 0.00820053275674582, -0.0167584735900164, 0.0261172726750374, -0.0135947484523058, 0.0525257661938667, -0.00188135704956949, 0.0358731932938099, 0.00357408192940056, -0.0191544312983751, 0.00719449436292052, -0.0122643960639834, -0.0281955357640982, -0.00546040292829275, -0.0214709658175707, -0.0194588899612427, 0.0182807669043541, 0.0255480669438839, 0.0165731497108936, -0.00670802220702171, -0.0136609356850386, 0.0159642323851585, -0.00495407450944185, -0.000266401475528255, -0.000494745618198067, 6.76862473483197e-05, 0.0182542931288481, -0.0123967695981264, -0.0252965576946735, 0.0033689031843096, -0.00841232948005199, -0.0223049186170101, -0.000191838014870882, 0.00071192072937265, 0.0309489015489817, 0.0015628335531801, 0.0234433300793171, 0.00079093110980466, 0.0202663689851761, -0.0272689219564199, 0.012568854726851, 0.0309489015489817, 0.0335434228181839, 0.0106229661032557, -0.0143228024244308, -0.0109274247661233, -0.0273748207837343, -0.0135815115645528, 0.0233109574764967, -0.0379911661148071, -0.00689003570005298, -0.035290751606226, 0.00262595736421645, 0.00393479969352484, -0.000313766329782084, 0.00316537916660309, -0.00542400032281876, -0.00816743914037943, 0.00871678907424212, 0.00814096443355083, -0.00755852134898305, -0.0445039384067059, -0.00588068831712008, -0.00235624657943845, 0.00779017480090261, -0.00795564148575068, -0.0278248898684978, 0.0177512727677822, -0.00452717067673802, -0.0131711540743709, 0.0307371038943529, -0.0250715222209692, 0.0197368748486042, 0.00643665669485927, -0.00832628738135099, 0.00160089088603854, 0.0284867566078901, -0.0062116221524775, 0.00792916677892208, 0.00889549311250448, -0.019829535856843, -0.0313989706337452, 0.0038950874004513, -0.00948455464094877, 0.00922642648220062, -0.0161627922207117, 0.0245817415416241, -0.00590385403484106, -0.0288044530898333, 0.00959045346826315, -0.00636054202914238, 0.0155935874208808, 0.0041499063372612, -0.00223545590415597, 0.00591378193348646, 0.00172581826336682, -0.0272159725427628, 0.0140712931752205, -0.0287779774516821, 0.0417505726218224, -0.0112782139331102, -0.00126747530885041, 0.0366409569978714, -0.0346818305552006, -0.00357077270746231, -0.0142963277176023, -0.167531788349152, 0.0215901024639606, -0.00202034902758896, -0.0182145796716213, -0.00528500834479928, 0.0147596346214414, 0.0111789340153337, -0.0110597983002663, -0.00602629920467734, -0.0092859948053956, 0.0343641377985477, 0.0209944229573011, -0.0292280483990908, -0.0148787703365088, -0.00187970232218504, -0.0106031093746424, -0.0308959521353245, 0.0249523874372244, 0.0149317197501659, 0.0254024565219879, 0.0370116047561169, -0.024872962385416, 0.0170629322528839, -0.00602960865944624, 0.00641349144279957, -0.00202696770429611, -0.00355091667734087, 0.00503018964082003, -0.0227020382881165, -0.0109340436756611, -0.0223049186170101, -0.0180027838796377, 0.0418829470872879, 0.0379911661148071, -0.00822038855403662, 0.0220136977732182, 0.00978901330381632, -0.00150161085184664, -0.0284867566078901, 0.0424389131367207, 0.0146140241995454, 0.0245420299470425, 0.00385537534020841, -0.0015404955483973, 0.00617191009223461, 0.0142963277176023, -0.016533438116312, -0.0172482542693615, 0.000321212341077626, 0.0105104483664036, 0.00775708165019751, 0.0118672754615545, -0.0137403598055243, 0.00820053275674582, 0.0088557805866003, 0.00749233458191156, 0.00826671905815601, -0.000197939603822306, 0.029042724519968, -0.015659773722291, 0.00241085072048008, 0.00504342652857304, 0.0172085426747799, -4.11857108701952e-05, 0.00396127393469214, -0.00442127184942365, -0.00835276208817959, 0.0285397060215473, -0.0161892678588629, 7.22365803085268e-05, -0.00841894838958979, 0.00423263944685459, 0.0101199466735125, -0.0478662252426147, -0.00301149487495422, -0.0101265655830503, -0.0171953048557043, 0.0140448184683919, -0.019829535856843, 0.00436170352622867, 0.0010507139377296, 0.0114436810836196, 0.0161495562642813, 0.00943160522729158, -0.017380628734827, 0.0212326943874359, -0.00788283627480268, 0.0295457448810339, -0.0289633013308048, -0.0113973505795002, -0.00761147076264024, -0.0202001817524433, -0.0303664598613977, -0.00652269972488284, -0.0018102063331753, 0.0162819288671017, 0.0135484179481864, 0.0240787230432034, 0.00616198219358921, -0.0178571715950966, -0.0108612375333905, 0.00625133421272039, -0.0158450957387686, 0.0111524593085051, 0.000529079930856824, 0.0182675290852785, 0.0206370130181313, 0.00530486414209008, 0.00506328279152513, -0.000563827983569354, -0.0341258645057678, 0.00824024435132742, 0.0172879658639431, 0.0208620484918356, 0.0110333235934377, 0.014640498906374, 0.0326962321996689, 0.0172085426747799, 0.00965002086013556, 0.00317365233786404, 0.0542730949819088, 0.00953750405460596, -0.023708077147603, -0.0111061288043857, -0.000254818791290745, -0.0348936282098293, -0.120618648827076, -0.0410622321069241, 0.0128534575924277, 0.0270968358963728, 0.0052155121229589, 0.0376999452710152, 0.00381566351279616, 0.00450731441378593, -0.00457019172608852, 0.0176056623458862, -0.0103449812158942, -0.0133763328194618, -0.000226482618018053, -0.0111326035112143, 0.0340993888676167, 0.00327955116517842, -0.0151170426979661, -0.0262099336832762, -0.0160966068506241, -0.0057450057938695, 0.00219243462197483, 0.00362372188828886, 0.00450069596990943, 0.0041631436906755, 0.00513608800247312, -0.00485810404643416, -0.0223181564360857, 0.0165996253490448, 0.0174203403294086, 0.000752460095100105, -0.0191544312983751, 0.00657895812764764, 0.0136079862713814, -0.0288044530898333, -0.0033920684363693, 0.0102721760049462, -0.0531876347959042, 0.00493421871215105, 0.0144154634326696, -0.0305517818778753, -0.00102258450351655, 0.000967153173405677, -0.00164639425929636, -0.0463836416602135, 0.014375751838088, -0.0120261237025261, -0.0139786312356591, -0.0122776329517365, 0.0151567552238703, -0.00905434135347605, -0.019948672503233, 0.00273682014085352, -0.0144684128463268, 0.000479853595606983, -0.0186514127999544, 0.00650284346193075, 0.00405393540859222, -0.0138065461069345, -0.0348936282098293, -0.014388988725841, -0.00279804295860231, -0.00741952937096357, -0.031054800376296, 0.00597334979102015, 0.00067924102768302, 0.016533438116312, -0.0295192692428827, 0.000457929243566468, -0.000360924372216687, -0.00210804655216634, 0.00730701209977269, -0.00407048221677542, -0.0128402207046747, 0.0199619103223085, -0.0267923772335052, -0.00446760235354304, -0.0183734279125929, -0.0242905206978321, 0.0209547095000744, 0.0150773311033845, -0.0285661816596985, -0.0146669736132026, 0.00462314113974571, -0.0132439592853189, 0.0269909370690584, 0.0115760546177626, 0.00663852645084262, -0.00280466163530946, -0.00116240396164358, -0.0149846691638231, -0.0051460163667798, 0.0187440738081932, 0.0247538276016712, -0.00851822830736637, -0.0188234988600016, 0.048898734152317, 0.0237742643803358, -0.0291486233472824, 6.03953667450696e-05, 0.0165599137544632, -0.0427301339805126, 5.65689479117282e-05, -0.0395531728863716, 0.0227285139262676, 0.00173078232910484, 0.00463637849316001, -0.0259981360286474, -0.0210606083273888, -0.00865060184150934, -0.0333316251635551, 0.00884254369884729, 0.00359724718146026, 0.0196045022457838, 0.0141374794766307, 0.0229005999863148, -0.00392818078398705, -0.0396325960755348, 0.00496400287374854, 0.0322726368904114, -0.00332091771997511, -0.0102986507117748, 0.0225961394608021, 2.98357244901126e-05, 0.0257333908230066, 0.0132638150826097, 0.023708077147603, -0.0158583335578442, -0.00268221623264253, -0.0215636286884546, 0.0110134677961469, -0.0107950512319803, -0.00652600871399045, 0.026130510494113, -0.0226358529180288, -0.0192073807120323, 0.0207958612591028, 0.00537436036393046, -0.017817460000515, -0.038467712700367, 0.0234698057174683, -0.00614212593063712, 0.0441862419247627, -0.0417240969836712, -0.0497459247708321, -0.00811448972672224, -0.0268320888280869, -0.015527400188148, 0.0150773311033845, -0.00739305466413498, -0.00175891164690256, 0.00328120589256287, -0.00380904483608902, 0.0102589391171932, 0.0135815115645528, -0.0367468558251858, -0.0195780266076326, 0.0176321379840374, -0.0101067097857594, 0.000706956721842289, 0.0152891287580132, 0.00615205382928252, -0.0121849719434977, 0.0190485324710608, 0.00624140584841371, 0.000675518007483333, 0.00724744377657771, 0.0200016219168901, 0.0191809069365263, -0.0123835317790508, -0.0092859948053956, 0.00187639298383147, -0.0124761937186122, -0.013780071400106, 0.00482831988483667, 0.00714154541492462, 0.0150905679911375, 0.00663521699607372, -0.00421278364956379, -0.000399602227844298, 0.0099346237257123, 0.00809463392943144, 0.0104442620649934, -0.0237742643803358, 0.00797549728304148, -0.0415387749671936, 0.0334375239908695, -0.00917347706854343, 0.0148390587419271, -0.00919995177537203, 0.0212326943874359, -0.0120724542066455, 0.0206370130181313, 0.0121121667325497, 0.0112517392262816, -0.00178042228799313, 0.0305253081023693, -0.0166128631681204, 0.00463968794792891, 0.00191279570572078, 0.00680399313569069, 0.000549763324670494, 0.0204252172261477, 0.00935880001634359, -0.0146802105009556, 0.00876311957836151, -0.0353701747953892, -0.0175659507513046, 0.00783650577068329, -0.0369851291179657, 0.00628442736342549, -0.0288838762789965, 0.0178704094141722, 0.0154082644730806, 0.0253362692892551, 0.0162951666861773, 0.0150640932843089, 0.00111690058838576, -0.000749564380384982, 0.0169570334255695, 0.0131248235702515, -0.0126151852309704, 0.0512020327150822, -0.00184826366603374, 0.000666417356114835, -0.0026011373847723, -0.00201869453303516, 0.0235492289066315, 0.0019359610741958, 0.00387854082509875, -0.00167948752641678, 0.0108413817360997, 0.00826671905815601, 0.0281161107122898, -0.00311573897488415, -0.0257466267794371, -0.0118408007547259, -0.0082998126745224, -0.0357672944664955, -0.0141639541834593, 0.0106825334951282, -0.0133167644962668, 0.0315048694610596, 0.0200280956923962, 0.00107056996785104, 0.00792916677892208, 0.000449655897682533, 0.0281955357640982, 0.0106097282841802, -0.00940513052046299, 0.00190452241804451, -0.0270438864827156, 0.0151038058102131, -0.0111789340153337, -0.00200214772485197, -0.034443560987711, 0.0002918420068454, 0.01351532433182, 0.0136609356850386, 0.00269876280799508, -0.0306312069296837, 0.02703064866364, 0.0179101210087538, 0.00260279211215675, 0.027877839282155, 0.0121783530339599, 0.00939189270138741, -0.0150243816897273, 0.0243434701114893, -0.0203060805797577, 0.00381566351279616, -0.0194456540048122, 0.00487465085461736, 0.0196177382022142, -0.0417505726218224, -0.000699510739650577, 0.00685694254934788, -0.0161892678588629, 0.0183072425425053, -0.025892237201333, 0.00179035030305386, -0.00272523751482368, -0.0139521565288305, 0.0302340853959322, -0.00850499141961336, -0.0276395678520203, 0.0241713840514421, 0.00379249802790582, -0.0246346909552813, 0.00380904483608902, -0.00381897273473442],id:"5e1a62383e7c362336d2aa9182a73475",source:"state_of_union.txt",text:"We see the unity among leaders of nations and a more unified Europe a more unified West. And we see unity among the people who are gathering in cities in large crowds around the world even in Russia to demonstrate their support for Ukraine.
In the battle between democracy and autocracy, democracies are rising to the moment, and the world is clearly choosing the side of peace and security.
This is a real test. It’s going to take time. So let us continue to draw inspiration from the iron will of the Ukrainian people.
To our fellow Ukrainian Americans who forge a deep bond that connects our two nations we stand with you.
Putin may circle Kyiv with tanks, but he will never gain the hearts and souls of the Ukrainian people.
He will never extinguish their love of freedom. He will never weaken the resolve of the free world.
We meet tonight in an America that has lived through two of the hardest years this nation has ever faced.
The pandemic has been punishing."})
(:Chunk{embedding:[-0.00638027489185333, -0.017837742343545, -0.00678246049210429, -0.0118918288499117, 0.0182238407433033, -0.00248711672611535, 0.00958810839802027, -0.00792145077139139, -0.0274644605815411, -0.0040765549056232, 0.0201800726354122, -0.00136501842644066, -0.0170011967420578, -0.000638268771581352, -0.00958167389035225, 0.00170848506968468, 0.0290860738605261, -0.0160488206893206, -0.00302604562602937, -0.0162933487445116, -0.0162032600492239, -0.0141826784238219, 0.0276188999414444, 0.022934241220355, 0.00710420915856957, -0.0121942721307278, 0.0365506410598755, -0.00840407330542803, 0.0352379083633423, -0.0282881371676922, -0.0155983725562692, -0.0219175145030022, -0.0127862896770239, -0.00743882777169347, -0.02988401055336, -0.0307076871395111, -0.014311377890408, -0.00282334396615624, 0.0158171616494656, -0.0256884079426527, 0.032792616635561, -0.0107077937573195, 0.00435969373211265, 0.00335262040607631, -0.0211710575968027, -0.0047650970518589, -0.00976185314357281, -0.0366793423891068, -0.000963637081440538, 0.0158429015427828, 0.0153152337297797, 0.0145945167168975, -0.0176575630903244, -0.0207077395170927, -0.00550511851906776, -0.00615183357149363, -0.0024967691861093, 0.0234876479953527, 0.00190153426956385, -0.0166150983422995, -0.00162804790306836, 0.0131788225844502, -0.0170784164220095, 0.01181460916996, -0.0174773838371038, -0.0094143645837903, -0.0117953037843108, 0.025842847302556, 0.00215088948607445, 0.00569816771894693, 0.05258659273386, 0.0181466210633516, 0.00422455929219723, 0.00892530661076307, 0.0338736921548843, -0.000757315778173506, -0.00100626877974719, -1.83245883818017e-05, 2.22836042667041e-05, 0.000929853471461684, 0.0103603051975369, 0.00494849355891347, 0.0116151245310903, -6.77180287311785e-05, 0.00675672059878707, -0.00706559931859374, -0.0248389933258295, 0.0273615010082722, -0.0416471399366856, -0.015649851411581, 0.00171813752967864, 0.0162933487445116, -0.000175151901203208, 0.0258685871958733, 0.0188544690608978, 0.0184812396764755, 0.00143017258960754, 0.0128763793036342, 0.0108493631705642, -0.0458942204713821, 0.0122264474630356, 0.005212327465415, -0.038326695561409, -0.00570460269227624, -0.0131659526377916, -0.0204503405839205, -0.0201028529554605, -0.014311377890408, -0.00504501815885305, -0.0128248995169997, -0.00807589013129473, 0.00400255247950554, 0.0160230807960033, -0.019909804686904, 0.0167437978088856, 0.00295204343274236, -0.00603600405156612, -7.46557343518361e-05, 0.00304695940576494, 0.000799947476480156, 0.0122972317039967, 0.0162804797291756, 0.0160488206893206, 0.0174773838371038, -0.0041923844255507, -0.0196137949824333, -0.0609520561993122, -0.00433395383879542, 0.0177991334348917, -0.00594913167878985, 0.0125546306371689, 0.0197167545557022, 0.0308878663927317, -0.0272585414350033, -0.0128506394103169, 0.0160745605826378, -0.0189188178628683, 0.0124581065028906, -0.0109909325838089, -0.0152637539431453, 0.0322520807385445, 0.0148133058100939, -0.00293756485916674, -0.0103088254109025, -0.00989055261015892, 0.00900252629071474, 0.0271555818617344, 0.0111067621037364, 0.0251736119389534, 0.00821102410554886, 0.0144529473036528, -9.78819589363411e-05, 0.0169883258640766, 0.0144915571436286, 0.00342984008602798, 0.00942723453044891, -0.0258943270891905, -0.0170398056507111, -0.00965245813131332, -0.00404759729281068, 0.0199484135955572, 0.0167437978088856, 0.0174259040504694, -0.00568208051845431, -0.025122132152319, 0.0121363578364253, -0.0151350544765592, -0.00622261827811599, -0.00856494810432196, 0.0117888692766428, 0.00725864851847291, 0.0330500155687332, -0.0155211528763175, 0.0189831685274839, -0.00782492570579052, 0.0259329378604889, -0.0118339136242867, 0.0121041825041175, -0.0316343232989311, 0.000471763894893229, 0.00732299825176597, 0.00816597975790501, 0.0344657115638256, 0.0277218595147133, 0.00553729338571429, 0.00216375943273306, 0.0309908259660006, 0.00455596018582582, -0.00945297442376614, -0.0273615010082722, 0.0137708401307464, 0.0225996226072311, -0.0071299490518868, -0.0338994339108467, -0.641232132911682, 0.00336549035273492, -0.00818528421223164, -0.000802360591478646, -0.0090604405850172, 0.00793432071805, -0.00454952521249652, 0.0238351374864578, -0.00729725835844874, -0.00629983795806766, -0.00166504899971187, 0.00137064908631146, -0.00464283255860209, -0.0265120845288038, -0.0193692669272423, -0.0277475994080305, 0.0134233515709639, -0.0164863988757133, 0.00406368495896459, 0.00493562361225486, -0.0215571559965611, 0.0239252261817455, -0.0162547398358583, -0.0125160207971931, -0.00371941388584673, 0.00400255247950554, 0.00762544199824333, -0.00917627010494471, -0.00105131359305233, -0.00173583370633423, 0.00671167578548193, 0.0280049983412027, -0.00963315367698669, 0.0138223199173808, 0.0581206679344177, 0.00332688051275909, -0.00770909665152431, 0.01818523183465, 0.0190217774361372, 0.0328955762088299, -0.0332301966845989, -0.0136936204507947, -0.0161260403692722, 0.0171041563153267, 0.0066795009188354, 0.00550833623856306, 0.00741952285170555, 0.00960741378366947, 0.0149806151166558, 0.014247028157115, -0.00553729338571429, 0.0324579998850822, -0.0330500155687332, 0.00578182237222791, 0.0230758097022772, 0.0100514264777303, -0.00890600122511387, -0.03266391903162, 0.00133203924633563, 0.00563060073181987, 0.01853271946311, -0.00293595599941909, 0.000627007626462728, -0.00972324330359697, -0.0247360337525606, 0.0381722562015057, -0.00649932166561484, 0.00354566960595548, 0.00832041911780834, -0.00931783951818943, -0.0055533810518682, 0.0264863446354866, 0.00813380442559719, -0.019678145647049, 0.00649932166561484, -0.0126189803704619, 0.0150320949032903, -0.00154439336620271, -0.0137965800240636, 0.0139896292239428, -0.0144143374636769, -0.00527024222537875, -0.0122071420773864, -0.00788284093141556, 0.02351338788867, 0.00282495282590389, -0.0249033421278, 0.00716212391853333, 0.00828824378550053, 0.00399933522567153, -0.0162418689578772, 0.0285970158874989, -0.00219754292629659, -0.0435776300728321, -0.0030630468390882, -0.00303408945910633, -0.0203216411173344, -0.00106016162317246, 0.0271041020750999, 0.00720716873183846, -0.00326413963921368, -0.00958167389035225, 0.0152637539431453, 0.0041891667060554, 0.0155983725562692, 0.0184040199965239, 0.00445943558588624, 0.0345686711370945, 0.0158300306648016, -0.0280564781278372, -0.00889313127845526, -0.00671811075881124, -0.011589384637773, -0.0234747789800167, 0.0019288829062134, -0.0200127642601728, 0.00250159553252161, 0.00922774989157915, 7.26448051864281e-05, -0.00163206981960684, 0.0124645410105586, -0.00654436647891998, 0.00326735712587833, -0.0194078758358955, 0.0260873772203922, 0.0048744915984571, 0.0203345119953156, 0.00437256367877126, 0.00288447621278465, -0.0107399681583047, 0.0116601698100567, -0.00776057643815875, 0.0219689942896366, 0.00447552325204015, 0.0103731751441956, 0.0198068451136351, 0.00763831194490194, -0.00325448717921972, 0.0151093145832419, -0.0396394282579422, 0.00344592751935124, 0.00476831430569291, 0.00240989704616368, -0.0162418689578772, -0.0188930779695511, -0.000265844777459279, 0.0208106990903616, -0.0120848780497909, -0.0142856379970908, 0.00414733961224556, -0.0249548219144344, -0.00994203239679337, -0.00537320179864764, 0.0242984555661678, -9.34076451812871e-05, -0.00809519458562136, 0.0134748313575983, -0.0024292019661516, -0.0228956304490566, -0.00171492004301399, 0.0135649209842086, 0.0190089084208012, -0.00330114061944187, -0.00267533957958221, -0.0193692669272423, 0.00595556665211916, -0.00239541847258806, 0.0156627222895622, -0.0112161561846733, -0.023745046928525, -0.000270067743258551, -0.0170655455440283, -0.00318048498593271, 0.0185713302344084, 0.035109207034111, 0.0196009259670973, -0.0154439331963658, 0.00800510495901108, -0.00423742923885584, 0.0160488206893206, 0.0114992950111628, 0.000303046981571242, -0.0050932802259922, 0.00877086725085974, 0.0170526765286922, 0.00907331053167582, -0.0240796655416489, 0.0239638369530439, -0.00311130913905799, 0.0333331562578678, 0.0110681522637606, 0.0111067621037364, 0.00118886108975857, 0.0200256332755089, 0.00853277277201414, -0.00886739138513803, -0.0188415981829166, 0.0019771452061832, 0.0158943813294172, -0.00776701141148806, 0.0092985350638628, -0.0139767592772841, 0.0113899009302258, 0.000547776988241822, 0.0137451002374291, -0.0401542261242867, -0.0017519211396575, -0.0291118137538433, -0.00465891975909472, 0.0185841992497444, -0.00810806453227997, -0.0432430133223534, -0.00303730694577098, -0.0242727156728506, 0.0120784426108003, 0.0111003266647458, -0.00977472309023142, 0.014079718850553, -0.0136807505041361, 0.00309200421907008, 0.00705272937193513, 0.0220462139695883, 0.00402829237282276, -0.00990342255681753, -0.0345171913504601, 0.0102830855175853, -0.00299387075938284, 0.0113770309835672, -0.00143660756293684, -0.0215314161032438, -0.00632557738572359, 0.0262804254889488, 0.00211871461942792, 0.0434231907129288, -0.00784423109143972, -0.0191890876740217, 0.00800510495901108, -0.00915696565061808, 0.0101286461576819, -0.00159667746629566, -0.00405403226613998, 0.00993559695780277, 0.00962028373032808, 0.0117759993299842, -0.00512867281213403, 0.00474579213187099, 0.0319432020187378, 0.0197296254336834, -0.0102573456242681, 0.0185841992497444, 0.0207334794104099, 0.00833328906446695, 0.0065668891184032, 0.00896391645073891, 0.0174259040504694, -0.0157399419695139, -0.00106740102637559, 0.0203602518886328, 0.0361388027667999, 0.0259844176471233, 0.0188158582895994, 0.0153409736230969, 0.00302765448577702, -0.00696263974532485, 0.00274934177286923, 0.00603278633207083, -0.0219303853809834, -0.000980528886429965, -0.0329470559954643, 0.00267373095266521, -0.00687255011871457, 0.0127541143447161, 0.00241311453282833, -0.0242598447948694, 0.0137965800240636, 0.0224323123693466, -0.0164091791957617, -0.00258524995297194, -0.0062322705052793, -0.0101608205586672, -0.00391568057239056, -0.0388929732143879, 0.00880304165184498, 0.0217888150364161, -0.0109265828505158, -0.0130758630111814, 0.00286999763920903, 0.0122907971963286, -0.0166537072509527, 0.00125562399625778, -0.0281079579144716, 0.00804371479898691, -0.0108171878382564, 0.0132045624777675, 0.00814023986458778, 0.00966532807797194, 0.0379405952990055, -0.00733586819842458, 0.0269754026085138, -0.00451091537252069, -0.0145172970369458, 0.0133718717843294, -0.00674385065212846, 0.00119770923629403, 0.0289058946073055, 0.0117052141577005, 0.00302604562602937, -0.0179149620234966, -0.000671248009894043, -0.03081064671278, 0.0354695655405521, -0.00416664453223348, 0.00965889357030392, 0.0201672036200762, 0.000656367163173854, -0.0148776555433869, -0.0241826251149178, -0.00149130483623594, 0.0298582706600428, 0.0155468927696347, -0.0227798018604517, -0.0433717109262943, -0.0274387206882238, 0.00293273851275444, 0.139098361134529, 0.0214928071945906, -0.00372263137251139, 0.00084619881818071, 0.0215056762099266, -0.000569495023228228, 0.0028925200458616, -0.0303730685263872, -0.00503858318552375, -0.0311710052192211, -0.00306465546600521, -0.00917627010494471, 0.0157399419695139, -0.0264863446354866, -0.0009893769165501, 0.00506110535934567, -0.00629983795806766, -0.0229857210069895, -0.00886095687747002, -0.0026608610060066, -0.00606496119871736, 0.0248132534325123, 0.0307849068194628, 0.0266407839953899, -0.00450769811868668, 0.00963315367698669, 0.0234232991933823, 0.00752891739830375, 0.0272842813283205, -0.011750259436667, -0.0186871588230133, -0.000105674305814318, -0.000462915806565434, 0.0190217774361372, -0.0268724430352449, -0.00168274517636746, -0.00287643261253834, -0.00501927826553583, 0.0101415161043406, -0.00817241426557302, 0.0026624696329236, 0.0194464866071939, 0.000739619601517916, -0.0324837379157543, 0.00944653898477554, -0.00862929783761501, 0.0113770309835672, 0.0170140657573938, -0.00138995400629938, -0.0159844700247049, 0.0291118137538433, -0.01308873295784, -0.0138609297573566, 0.0137064903974533, 0.0184554997831583, 0.0129857733845711, 0.00586547702550888, 0.0173358153551817, -0.0267437435686588, -0.00438221590593457, -0.0152637539431453, -0.0171685051172972, -0.00704629439860582, -0.0166794471442699, -0.00720716873183846, -0.0276961196213961, -0.00536998407915235, 0.0028860850725323, -0.0215828958898783, 0.00889313127845526, 0.00207527843303978, -0.028262397274375, -0.0272070616483688, 0.0113899009302258, 0.0338479541242123, -0.000860677508171648, 0.0127090699970722, 0.00466857245191932, 0.0114606851711869, -0.0144014675170183, 0.0170140657573938, -0.0535389669239521, 0.0259458068758249, -0.0311967451125383, 0.00580434501171112, 0.00504823587834835, -0.00249998667277396, -0.00570138543844223, -0.00347488489933312, 0.0258042383939028, -0.0152766238898039, 0.0106177041307092, 0.0275416802614927, -0.0119497431442142, -0.0179149620234966, 0.00926635973155499, -0.00111968512646854, 0.00338479527272284, -0.00749674253165722, 0.0047554443590343, 0.0140925887972116, -0.00538285402581096, -0.0441181696951389, 0.00505788810551167, 0.0079150153324008, -0.0271041020750999, 0.0071299490518868, 0.00371297891251743, 0.00155726331286132, -0.0243241954594851, 0.0357784442603588, -0.00401542242616415, -0.0187515094876289, 0.0109716271981597, 0.0199998933821917, 0.0118081737309694, 0.00837189890444279, 0.00203023361973464, -0.0164349190890789, -0.00926635973155499, -0.0178248733282089, -0.0260487664490938, 0.0247617736458778, 0.0220204740762711, -0.0244786348193884, -0.0136421406641603, 0.0152251441031694, -0.0183139313012362, 0.00483588175848126, -0.00521554471924901, -0.0286742355674505, 0.0291632935404778, 0.00837833341211081, -0.0034555799793452, -0.0136936204507947, 0.00113818573299795, -0.0185841992497444, 0.0236034784466028, -0.0081531098112464, -0.0155082829296589, -0.0159716010093689, -0.0252765696495771, 0.00444656563922763, -0.0389959327876568, 0.0315571017563343, -0.0386870540678501, 0.00732299825176597, -0.00106579228304327, -0.0135777909308672, 0.0354180857539177, -0.0043017789721489, -0.0236420873552561, -0.0166665781289339, 0.0117824338376522, -0.00840407330542803, -0.0100063821300864, 0.0284425765275955, -0.00893817655742168, -0.0017583561129868, 0.0073616080917418, 0.0555466786026955, -0.0105276145040989, -0.0195880550891161, -0.0145559068769217, 0.0125481961295009, 9.76808660198003e-05, -0.00145430373959243, 0.0062419231981039, -9.78316893451847e-05, 0.0301414094865322, 0.0202572923153639, 0.00772196659818292, -0.0250577814877033, -0.0350062474608421, 0.0128828138113022, -0.00903470069169998, -0.00529919937252998, -0.00680820038542151, -0.0154954129830003, -0.0141955483704805, 0.0155983725562692, 0.0187515094876289, -0.0145559068769217, 0.0309136062860489, -0.00770909665152431, -0.0320204198360443, 0.0320718996226788, -0.00884808693081141, 0.0298582706600428, 0.00885452143847942, 0.0193692669272423, -0.0135391810908914, 0.0300384499132633, 0.00439508585259318, -0.00636418722569942, -0.0338994339108467, -0.0452764630317688, -0.0220204740762711, 0.00361645431257784, 0.00723934359848499, 0.0183654110878706, 0.0167309269309044, -0.023397559300065, -0.0127927241846919, -0.00144143379293382, 0.0327153988182545, -0.0149934850633144, -0.00291825993917882, 0.0155855026096106, -0.0192019566893578, 0.010192995890975, -0.0324579998850822, -0.0135005712509155, -0.0291118137538433, 0.010199430398643, -0.00847485847771168, 0.0103474352508783, 0.0106691839173436, -7.48568272683769e-05, -0.0109072774648666, -0.0243370644748211, 0.00187740311957896, -0.0310165658593178, -0.0131916925311089, 0.00425351643934846, -0.0218145549297333, -0.0105340490117669, -0.0343627519905567, 0.00133847421966493, 0.0186742898076773, 0.00297778332605958, 0.0122586218640208, 0.00579791003838181, -0.0150192249566317, -0.0219947341829538, 0.00360358436591923, 0.0344657115638256, -0.00222167419269681, -0.0363189838826656, 0.0191762167960405, 0.0071363840252161, -0.0132689122110605, -0.000358950783265755, -0.0336677730083466, 0.0265635643154383, 0.00646071182563901, 0.00804371479898691, 0.00250803050585091, 0.0165764875710011, -0.0253409203141928, -0.01945935562253, 0.0140411090105772, -0.00358749693259597, 0.0155468927696347, -0.011518600396812, -0.0268209632486105, -0.0158686414361, -0.0231272894889116, -0.00867434218525887, -0.00643175467848778, -0.00259811989963055, 0.0121234878897667, -0.016100300475955, 0.0309650860726833, -0.0316343232989311, 0.0115572102367878, -0.0103281298652291, -0.0346716307103634, -0.00522841466590762, 0.01540532335639, -0.0129922088235617, -0.0166408382356167, -0.00105855287984014, 0.0123744513839483, 0.0193435270339251, -0.0113834654912353, -0.0322520807385445, -0.00325287831947207, -0.0112805059179664, 0.0121749676764011, 0.0168724972754717, -0.00615826854482293, -0.039716649800539, -0.0107785779982805, -0.00222650030627847, -0.00761900702491403, -0.01355205103755, -0.0103538697585464, 0.0425480343401432, 0.0106112686917186, -0.00682107033208013, -0.00428890902549028, 0.0132817821577191, -0.00957523845136166, 0.00388350570574403, -0.0102316057309508, -0.00842981319874525, 0.0105726588517427, -0.0157270710915327, 0.0334361158311367, -0.00960097834467888, -0.00311130913905799, -0.0240153167396784, -0.00314026651903987, -0.0265893042087555, 0.00182592333294451, 0.0160230807960033, -0.00661515118554235, -0.0441696494817734, -0.0233589485287666, 0.00366149912588298, 0.0231530293822289, -0.00276060309261084, -0.00273325433954597, 0.00579147506505251, 0.00186453317292035, -0.00270429695956409, -0.00945940893143415, -0.0155211528763175, 0.0380178168416023, -0.00217662937939167, -0.0113384211435914, 0.00901539623737335, -0.00312257022596896, -0.0144143374636769, -0.0130050787702203, 0.0264348648488522, 0.0117695638909936, -0.0203602518886328, -0.00567564554512501, -0.00378054613247514, 0.0304760280996561, 0.00448517547920346, -0.0204503405839205, -0.0224065724760294, -0.00436291098594666, -0.000138552990392782, 0.0266922637820244, 0.0258557181805372, -0.0144014675170183, 0.0106820538640022, 0.00161598238628358, 0.0238351374864578, -0.013783710077405, -0.00445943558588624, -0.0124516710639, -0.0226511023938656, 0.00622261827811599, -0.0165250077843666, -0.0449161045253277, -0.0161903891712427, 0.0242469757795334, 0.00541181163862348, 0.0129986433312297, -0.0131016029044986, 0.00459135277196765, -0.0359328836202621, 0.00954949855804443, -0.00831398367881775, 0.0148647855967283, 0.0330757573246956, 0.00714281899854541, -0.0205919109284878, 0.0358556658029556, -0.0179921817034483, 0.0228570215404034, 0.00750961247831583, 0.00467500742524862, 6.31431612418965e-05, -0.0200642440468073, -0.00424064649268985, 0.0154696730896831, -0.000452458974905312, -0.0210294891148806, 0.00222167419269681, 0.00900896079838276, 0.03127396479249, 0.0250706523656845, -0.0176575630903244, 0.0211195778101683, -0.0151994042098522, 0.0270011425018311, 0.00987768266350031, 0.0018436195096001, 0.0174387749284506, -0.0231015495955944, -0.0188158582895994, 0.0351864285767078, 0.00219110795296729, -0.0131080383434892, -0.0111518064513803, 0.00764474691823125, -0.0142212882637978, 0.0161389093846083, -0.0193177871406078, -0.0161903891712427, -0.0015564588829875, -0.023745046928525, 0.00448517547920346, 0.00845555309206247, -0.0308363866060972, 0.0132689122110605, 0.0274902004748583, -0.0242984555661678, -0.00331722805276513, -0.00546329142525792, 0.0241568852216005, 0.00830754917114973, -0.0109072774648666, -0.00521876243874431, 0.0194464866071939, 0.0108815375715494, 0.0159072503447533, -0.000191641520359553, 0.0197811052203178, 0.00181787961628288, -0.00472970446571708, 0.00223132665269077, 0.00749674253165722, -0.0136936204507947, 0.0209007896482944, -0.00879660714417696, 0.000875156198162585, -0.0287771951407194, -0.0208750497549772, -0.0335133336484432, 0.000198679757886566, 0.00855207815766335, -0.0040829898789525, 0.0180050525814295, -0.0211453177034855, -0.0230629406869411, -0.0134490914642811, -0.0137064903974533, 0.00645105959847569, 0.0105597889050841, 0.223422229290009, 0.0233460795134306, 0.00579147506505251, 0.0110038025304675, 0.0121878376230597, 0.00558555591851473, 0.0138094499707222, 0.0125739360228181, -0.0305532477796078, 0.0259972866624594, -0.0309650860726833, 0.00849416293203831, -0.0225352719426155, 0.00174387742299587, -0.0205146912485361, -0.00604887399822474, -0.033255934715271, 0.00463317986577749, -0.0268724430352449, 0.0142727680504322, 0.00851346831768751, 0.00480048917233944, -0.00751604745164514, -0.0132174324244261, 0.0325094796717167, 0.0164091791957617, -0.017837742343545, -0.00947871431708336, 0.0244142841547728, 0.00676959054544568, -0.0146459965035319, 0.00526380725204945, -0.00160874298308045, 0.00742595782503486, -0.00281208287924528, -0.00399933522567153, 0.0172457247972488, 0.00451735034584999, 0.0127090699970722, 0.0118982633575797, -0.00200288509950042, 0.0180307924747467, -0.00705916434526443, -0.0145945167168975, 0.00070302071981132, 0.0294721722602844, -0.0139252794906497, -0.0084812929853797, -0.000535309256520122, 0.0236678272485733, -0.0287514552474022, -0.0179664418101311, -0.00675028562545776, 0.0303215887397528, -0.00886095687747002, -0.00339766521938145, 0.0299869701266289, 0.0166665781289339, -0.0155340228229761, 0.0318402424454689, 0.0224323123693466, 0.0346716307103634, -0.027799079194665, 0.0161903891712427, -0.0233332086354494, 0.0218016859143972, 0.00230854633264244, 0.023745046928525, 0.0259071979671717, -0.0229728501290083, -0.0134233515709639, -0.0069111599586904, -0.0146202566102147, -0.0287771951407194, -0.0149548752233386, 0.000300633866572753, 0.00595234939828515, 0.0189316887408495, 0.0190861281007528, 0.00843624863773584, -0.0138351898640394, 0.00730369333177805, -0.00477474927902222, -0.00306465546600521, 0.0122650573030114, -0.0242598447948694, 0.0141955483704805, 0.00963958818465471, -0.0501927845180035, -0.0123680168762803, 0.0035649745259434, -0.0240925364196301, -0.0206948705017567, -0.00175513862632215, 0.00955593399703503, -0.00492597138509154, 0.0105469189584255, -0.00389315816573799, -0.0234747789800167, 0.00258846743963659, 0.0014703911729157, 0.0293434727936983, 0.00896391645073891, 0.0145559068769217, 0.012509586289525, -0.023745046928525, -0.00309843919239938, 0.0246974229812622, 0.0167309269309044, -0.0284425765275955, 0.0150449648499489, -0.00489057879894972, 0.000731173728127033, 0.00506110535934567, -0.00976828765124083, 0.0105919642373919, -0.0148390457034111, -0.0282366573810577, 0.00119207857642323, 0.00999994669109583, -0.0200385041534901, -0.0156884621828794, 0.0164091791957617, 0.0178506132215261, -0.00722003867849708, -0.0182367116212845, -0.0330500155687332, 0.00904757063835859, 0.00423099426552653, -0.0485969111323357, 0.011589384637773, -0.00473613943904638, -0.00106981408316642, -0.0129085537046194, -0.0259715467691422, -0.000677280826494098, 0.00229728501290083, 0.00402829237282276, -0.0104182194918394, -0.0127026345580816, -0.00835259351879358, 0.0145559068769217, 0.0189316887408495, -0.00455596018582582, -0.00154921959619969, -0.0251993518322706, 0.0282366573810577, 0.000460904877400026, -0.0185069795697927, -0.00370010896585882, -0.00541502889245749, 0.0248518623411655, 0.00616792077198625, -0.0125675005838275, 0.0165893584489822, -0.00887382682412863, -0.0397938676178455, 0.0108557976782322, 0.0113384211435914, 0.0131916925311089, -0.0507590584456921, 0.00837189890444279, 0.0228698905557394, -0.00730369333177805, 0.000923418498132378, -0.01760608330369, -0.160822823643684, 0.0296780914068222, 0.0080308448523283, -0.0141826784238219, 0.00323518225923181, -0.00673098070546985, 0.0106949238106608, -0.00863573234528303, -0.0115057304501534, 0.0291118137538433, 0.000940310303121805, -0.0146459965035319, -0.0171556361019611, 0.0184554997831583, 0.011293375864625, -0.0127026345580816, -0.0348003283143044, 0.00910548586398363, 0.0154439331963658, 0.0103281298652291, 0.0267180036753416, -0.0138866696506739, 0.0215828958898783, -0.0318917222321033, 0.0124259311705828, 0.0166279673576355, -0.00992272701114416, 0.0232559889554977, -0.00257077137939632, -0.0364219434559345, -0.0273100212216377, -0.000504340918269008, 0.0259071979671717, 0.00658619403839111, 0.00806945469230413, 0.00127412448637187, 0.00101189932320267, 0.00201897253282368, -0.00960741378366947, 0.0420074984431267, 0.0376574583351612, 0.00305500300601125, 0.00444013066589832, 0.00386420078575611, -0.019691014662385, 0.0229728501290083, 0.00620009563863277, -0.027799079194665, -0.00990342255681753, 0.000729967141523957, 0.0115572102367878, -0.029189033433795, -0.0138609297573566, 0.0243241954594851, 0.00843624863773584, -0.000500319059938192, 0.0106498785316944, 0.00197553634643555, -0.00120253546629101, -0.0159458611160517, 0.00149452232290059, -0.0063320123590529, 0.0164992678910494, 0.0110038025304675, -0.0032303559128195, -0.0124709764495492, -0.022355092689395, 0.00435004103928804, -0.0189316887408495, 0.0180565323680639, 0.00270912330597639, -0.0256626680493355, 0.0067953304387629, -0.0238480065017939, -0.0122521873563528, -0.00337514281272888, -0.0189702976495028, 0.011286941356957, -0.0208106990903616, 0.0245043747127056, 0.0129471635445952, 0.0293434727936983, -0.0144143374636769, -0.00581077998504043, 0.000266649149125442, 0.00382237345911562, -0.000373027287423611, 0.0284168366342783, 0.00163206981960684, -0.0202701613306999, 0.0140411090105772, -0.0146588664501905, -0.0181981008499861, -0.00673741567879915, -0.00844911858439445, 0.0110295424237847, 0.016113169491291, 0.0209265295416117, 0.0122264474630356, -0.00246298569254577, -0.00435004103928804, -0.0103023899719119, -0.0312482248991728, 0.017837742343545, 0.0133718717843294, 0.0158943813294172, 0.00814023986458778, 0.0157785508781672, 0.0144529473036528, -0.02629329636693, -0.0108815375715494, 0.024208365008235, 0.0130694285035133, 0.0333588942885399, 0.00122666661627591, 0.0317115411162376, 0.0253151804208755, -0.0100385565310717, 0.00240185344591737, -0.000631029484793544, 0.0240024458616972, -0.0110488468781114, -0.0165507476776838, 0.00314509263262153, -0.0164992678910494, -0.0269754026085138, -0.122624829411507, -0.0363189838826656, 0.000763348594773561, 0.00344271003268659, -0.00163609161973, 0.0198068451136351, -0.00772840157151222, 0.0128442039713264, -0.0173872951418161, 0.0126511547714472, 0.000350303802406415, -0.00532493926584721, -0.0158429015427828, -0.00753535237163305, 0.0298067908734083, 0.00897678639739752, 0.0116601698100567, -0.0101157762110233, -0.0377604179084301, 0.02305006980896, -0.0209265295416117, -0.0121685322374105, 0.00506754033267498, -0.0103474352508783, -0.00946584437042475, -0.00578182237222791, -0.0105533543974161, 0.0271298419684172, -0.00196105777285993, 0.00628053303807974, -0.0111775463446975, 0.00674385065212846, 0.042290635406971, -0.0302958488464355, 0.0138351898640394, -0.00338801275938749, -0.0386355742812157, -0.0249934326857328, 0.0158042907714844, -0.0109716271981597, -0.00100546434987336, -0.0105211790651083, 0.00139960646629333, -0.0516856946051121, 0.00256916251964867, -0.0125675005838275, 0.00517371762543917, 0.0137451002374291, 0.0188029892742634, -0.0184683706611395, -0.0153152337297797, 0.0133718717843294, -0.0262160766869783, -0.0116794742643833, -0.0198197141289711, 0.00779918627813458, 0.00512223783880472, 0.0144529473036528, -0.00586869474500418, -0.0168210174888372, 0.0126189803704619, -0.00336227286607027, -0.0279020387679338, -0.00121781846974045, -0.00129745120648295, -0.00122184038627893, -0.00661515118554235, -0.0109330173581839, -0.00128860317636281, -0.033719252794981, -0.0304502882063389, 0.0178506132215261, -0.0251092612743378, 0.0241568852216005, -0.00848772842437029, 0.00666663097217679, -0.0530241690576077, -0.0226124916225672, 0.02803073823452, 0.00011623168393271, -0.0288286749273539, -0.021080968901515, 0.00379985105246305, -0.0219432543963194, 0.018764378502965, 0.00676315557211637, -0.00630305521190166, 0.0157914217561483, -0.00765761686488986, -0.0153795834630728, -0.00385776581242681, 0.0113448556512594, -0.000862286251503974, 0.00610035378485918, -0.00769622670486569, 0.00547616137191653, -0.00462996261194348, -0.0056627755984664, 0.00851346831768751, -0.0099806422367692, -0.0297810509800911, 0.00102476926986128, -0.0366278626024723, 0.0134490914642811, -0.0112740714102983, 0.0024340283125639, -0.00732299825176597, 0.00193370913621038, 0.00239702709950507, -0.0249548219144344, -0.00740021793171763, 0.00318531109951437, -0.0324322581291199, 0.04447852820158, 0.0200513731688261, 0.00194014410953969, -0.0196137949824333, -0.0259329378604889, 0.023860877379775, -0.00127090699970722, 0.00825606938451529, 0.0199355445802212, 0.000785468786489218, 0.00821102410554886, 0.00740665290504694, 0.00766405183821917, -0.00616470351815224, 0.0180179215967655, -0.0160488206893206, 0.0448903664946556, 0.00234554731287062, -0.0211453177034855, -0.0204374715685844, -0.0139510193839669, 0.0120591381564736, 0.0173100754618645, 0.00545685645192862, 0.00465570250526071, -0.0125160207971931, -0.00828824378550053, 0.0157914217561483, 0.00635775225237012, -0.00785710103809834, -0.0107077937573195, -0.0105855287984014, -0.0456883013248444, -0.00115829496644437, -0.0197296254336834, 0.015006355009973, 0.0240024458616972, 0.0176704339683056, -0.0011044021230191, 0.00882234703749418, 0.0297553110867739, -0.018764378502965, -0.00590730458498001, -0.00291665107943118, -0.0119304386898875, 0.020617650821805, 0.0149033954367042, -0.0132174324244261, -0.03799207508564, 0.0219818651676178, -0.0241954959928989, 0.0132689122110605, -0.0320461615920067, 0.0316085815429688, -0.0218660347163677, 0.0164091791957617, -0.000598050246480852, 0.00833972357213497, -0.0170655455440283, 0.00841694325208664, -0.0199870243668556, 0.00775414146482944, 0.00491310143843293, 0.0154954129830003, 0.0127991596236825, -0.0246845539659262, 0.0106241386383772, 0.0167180579155684, 0.0320976413786411, 0.00773483654484153, -0.0101672559976578, -0.0393562912940979, 0.0293692126870155, 0.0179793126881123, 0.0411066003143787, 0.000294601079076529, 0.00807589013129473, 0.00534424418583512, 0.00283621391281486, -0.0357527062296867, -0.000679693941492587, -0.0163190886378288, 0.00629983795806766, 0.0277475994080305, 0.00538928899914026, 0.0151865342631936, 0.0200899839401245, 0.011119632050395, -0.0053185042925179, 0.0336162932217121, -0.0110488468781114, -0.0107013583183289, 0.00372263137251139, -0.00468465965241194, 0.0116601698100567, -0.00593304447829723, 0.0136421406641603, 0.00140041077975184, 0.0126511547714472, 0.0184297598898411, -0.00411838199943304, 0.0320718996226788, 0.0166022274643183, -0.00278151663951576, 0.0236806981265545, -0.00891243666410446, -0.0078184911981225, -0.00538285402581096, 0.0335133336484432, 0.00803728029131889, -0.00980046298354864, 0.00866790767759085, -0.019227696582675, 0.0133718717843294, 0.00942079909145832, 0.00465570250526071, 0.00362288928590715, -0.00460743997246027, 0.0246202033013105, -0.00282173533923924, -0.00200127623975277, -0.0424708165228367, -0.00996133685112, 0.0035102772526443, -0.0173615552484989, -0.00420203665271401, 0.0145172970369458, -0.02803073823452, 0.030115669593215, 0.000908135436475277, -0.00148808734957129, -0.00764474691823125, 0.0389701910316944, 0.0208106990903616, -0.0129922088235617, -0.0113770309835672, -0.00139719329308718, 0.0242727156728506, 0.0317887626588345, -0.0205790400505066, 0.0254181399941444, -0.0170655455440283, -0.00367436907254159, -0.0043082139454782, -0.00126527633983642, 0.00127332005649805, -0.0239509660750628, 0.0170140657573938, 0.0112998113036156, 0.0103409998118877, 0.0257398877292871, 0.00671167578548193, -0.0295493919402361, -0.0198840647935867, 0.00768335675820708, -0.0249162130057812, 0.000475785753224045, -0.0305532477796078, 0.00221202173270285, 0.00375480623915792, -0.03266391903162, -0.0129342935979366, 0.0301928892731667, -0.00426960410550237, -0.00181144464295357, 0.031042305752635, 0.00506432307884097, -0.0050932802259922, -0.0132045624777675, 0.0308878663927317, -0.0155468927696347, -0.0330242775380611, 0.0177991334348917, 0.01725859567523, -0.0153281036764383, 0.00455596018582582, -0.0320204198360443],id:"c39c8c07bdc8509d6dfef69370cd5913",source:"state_of_union.txt",text:"And so many families are living paycheck to paycheck, struggling to keep up with the rising cost of food, gas, housing, and so much more.
I understand.
I remember when my Dad had to leave our home in Scranton, Pennsylvania to find work. I grew up in a family where if the price of food went up, you felt it.
That’s why one of the first things I did as President was fight to pass the American Rescue Plan.
Because people were hurting. We needed to act, and we did.
Few pieces of legislation have done more in a critical moment in our history to lift us out of crisis.
It fueled our efforts to vaccinate the nation and combat COVID-19. It delivered immediate economic relief for tens of millions of Americans.
Helped put food on their table, keep a roof over their heads, and cut the cost of health insurance.
And as my Dad used to say, it gave people a little breathing room."})
(:Chunk{embedding:[-0.0375413969159126, -0.0173413939774036, -0.0143057005479932, -0.0275995042175055, 0.0187580492347479, -0.0174931772053242, -0.00753231206908822, -0.0189604293555021, -0.0147231090813875, 0.00611565541476011, 0.0487228631973267, 0.0142677547410131, -0.0134708853438497, 0.0157350059598684, -0.0182647500187159, 0.0247788392007351, 0.0246144067496061, -0.0280295610427856, -0.00841139815747738, -0.0149634340777993, -0.00587216764688492, 0.00483497278764844, -0.00486027030274272, 0.00607138499617577, 0.0152037600055337, 0.00808885600417852, 0.0354670062661171, -0.00215660664252937, 0.0450800321996212, -0.00343096489086747, -0.0207818448543549, -0.0186695083975792, -0.0302051398903131, -0.014052726328373, -0.0475591830909252, -0.0235266163945198, -0.00892999581992626, 0.00318431505002081, 0.0208324398845434, -0.00386418355628848, 0.0361500382423401, -0.0184418316930532, -0.0141412671655416, 0.00263409572653472, 0.00215502548962831, 0.00932843051850796, -0.0298762731254101, -0.0474326945841312, -0.0162915494292974, 0.0214269291609526, 0.00114629010204226, 0.00865804776549339, -0.0376678854227066, -0.0186695083975792, -0.0107450867071748, -0.0100683802738786, -0.0271188523620367, 0.012648718431592, -0.0167469028383493, -0.00716549903154373, 0.0121048241853714, -5.89450064580888e-05, -0.0246397033333778, -0.000227479307795875, -0.0108778979629278, -0.016405388712883, -0.0160891711711884, 0.00738685159012675, 0.0180623698979616, 0.0333167240023613, 0.0534281879663467, 0.0157982502132654, 0.0127878542989492, -0.00500256847590208, 0.0165445245802402, -0.00432586204260588, -0.00915767252445221, -0.00567927490919828, -0.0199090838432312, 0.000504367635585368, 0.0239440239965916, -0.000630854861810803, -0.00266097416169941, -0.0279283709824085, -0.00244594598188996, -0.00908810459077358, -0.0258792787790298, -0.00189888896420598, -0.0345815978944302, -0.0131926136091352, -0.00969524309039116, 0.0110296830534935, -0.00803193636238575, 0.0234507247805595, 0.0177967473864555, 0.011421793140471, -0.0208703856915236, 0.0104731395840645, 0.0180244240909815, -0.0564132854342461, 0.00747539289295673, -0.00191786198411137, -0.0282825343310833, -0.00480018882080913, 0.00658365804702044, -0.00585951888933778, -0.012421041727066, -0.00507213640958071, 0.017746152356267, -0.00490454072132707, -0.0116621190682054, -0.000119372285553254, 0.0156591143459082, -0.0149887315928936, 0.00594173558056355, 0.0341768376529217, -0.00315269315615296, 0.0088794007897377, 0.0238807816058397, 0.00614095292985439, 0.0217937417328358, 0.0130281802266836, 0.0299774631857872, 0.0170378237962723, 0.0150772724300623, 0.00896794162690639, -0.0586900562047958, -0.00758923124521971, 0.00514486618340015, 0.00400015711784363, 0.0310399550944567, 0.00929048378020525, 0.0360994450747967, -0.0158108975738287, 0.00109253311529756, 0.0153049500659108, 0.00102849898394197, 0.00480651296675205, -0.0120415799319744, -0.0145333781838417, 0.015115219168365, -0.0176323130726814, 0.00877188611775637, 0.00358907389454544, -0.00274160970002413, -0.00369975017383695, 0.020819790661335, -0.000544685462955385, 0.0201114621013403, -0.000845092523377389, 0.00979643315076828, -0.0288643762469292, 0.0317482836544514, 0.00738685159012675, -0.00530929956585169, 0.0120036341249943, -0.00674176728352904, -0.0181003157049417, -0.0262081455439329, -0.0244626216590405, 0.00488240551203489, 0.00396537315100431, 0.0165318753570318, 0.00419937446713448, -0.014672514051199, 0.0189477801322937, 0.0182268042117357, 0.00698209274560213, -0.00330131570808589, 0.010637572966516, 0.00391161628067493, 0.0155326267704368, 0.00759555585682392, 0.0279030743986368, -0.0172907989472151, 0.0194031354039907, -0.0205541681498289, -0.0102328136563301, -0.0251709502190351, 0.0123894196003675, 0.0132558569312096, -0.00182299665175378, 0.0275742076337337, 0.00558124715462327, 0.0159373860806227, 0.0103529766201973, 0.0365800932049751, 0.0155832218006253, 0.000461678224382922, -0.0125728268176317, 0.00777263753116131, 0.0281560476869345, -0.0167848505079746, -0.0153808416798711, -0.641543030738831, -0.00307680084370077, -0.0219202302396297, 0.0101948669180274, -0.00355112785473466, -0.00129886530339718, -0.0161144677549601, 0.0156717617064714, -0.0108399521559477, -0.00197478127665818, -0.0101252989843488, -0.00170125265140086, 0.0111624943092465, -0.0344298109412193, -0.00531878648325801, -0.0138124013319612, -0.0083544785156846, -0.00829755980521441, -0.0231218580156565, -0.000703189696650952, -0.0328613705933094, 0.0157097093760967, -0.0257401429116726, -0.00782955717295408, -0.0135973729193211, 0.0123704466968775, 0.0173413939774036, -0.0109031954780221, 0.0110613042488694, -0.00755128497257829, 0.0104225445538759, 0.00705166067928076, -0.0137618063017726, 0.0219834726303816, 0.0510502308607101, 0.0016680498374626, 0.0165824703872204, 0.0116051994264126, 0.0355681963264942, 0.0389327555894852, -0.0133570469915867, 0.00231945887207985, 0.0126107726246119, -0.00053006038069725, 0.0156591143459082, 0.0149128390476108, -0.0161144677549601, 0.0123767713084817, 0.00409818487241864, -0.00397169776260853, 0.00665955059230328, 0.0107830325141549, -0.0221732035279274, 0.0113775227218866, 0.0213004425168037, 0.00764615042135119, -0.021376334130764, -0.0347333811223507, -0.00243013515137136, -0.00380726438015699, 0.0133191011846066, -0.000486185133922845, -0.0101442728191614, -0.0249053277075291, -0.0347586795687675, 0.0290667563676834, -0.000799240893684328, 0.00686825439333916, 0.0157476551830769, -0.00582473492249846, -0.0141286188736558, 0.0193651877343655, 0.0201114621013403, -0.00828491058200598, -0.00111229671165347, -0.0105237336829305, 0.0109474658966064, -0.00530613772571087, -0.0164306852966547, 0.0342527292668819, -0.00291394861415029, -0.0165824703872204, -0.00236847251653671, -7.89062687545083e-05, 0.0152417058125138, 0.013154667802155, -0.0205668173730373, 0.00351634388789535, 0.015001380816102, 0.00117554026655853, 0.00669749639928341, 0.01572235673666, -0.00221036351285875, -0.0235772114247084, 0.0204150322824717, 0.00156686000991613, -0.0028728402685374, 0.00290762423537672, 0.00445867329835892, 0.0199343804270029, -0.0162156578153372, 0.0110929263755679, 0.0154314367100596, 0.0214142818003893, 0.0199343804270029, 0.0300027616322041, -0.00178505049552768, 0.00575516698881984, 0.0378702655434608, -0.0449788458645344, -0.0103845978155732, -0.0159753318876028, -0.00141507538501173, 0.00441124057397246, -0.0096446480602026, -0.0119150932878256, 0.00657733390107751, 0.00332028861157596, -0.00232578325085342, -0.0352646261453629, -0.000193979954929091, 0.000615439203102142, 0.0195296220481396, -0.0265623088926077, -0.00572986947372556, 0.00528084021061659, 0.010998060926795, -0.00262777134776115, -0.00441124057397246, -0.0021360523533076, -0.00992924440652132, 0.00768409669399261, 0.028990862891078, 0.00853788480162621, -0.00272579886950552, -8.16237661638297e-05, 0.00461994437500834, -0.000638760277070105, -0.00299774645827711, -0.0397422760725021, -0.0131420185789466, 0.00713387737050653, -0.00222301227040589, 0.000554567261133343, -0.0090944292023778, -0.0197825953364372, 0.0123830959200859, 0.00351950596086681, -0.00795604381710291, -0.0163168478757143, -0.0229447763413191, -0.0107830325141549, -0.00335507257841527, 0.00860112905502319, 0.0218822844326496, -0.00981540605425835, 0.00211075483821332, -0.00784220546483994, -0.0122755812481046, -0.0250444635748863, 0.00142456195317209, 0.0378955602645874, -0.00191628094762564, 0.00102533679455519, -0.0196055136620998, -0.00339301885105669, -0.02199612185359, 0.00693782232701778, 0.0175564214587212, -0.0186695083975792, 0.0152164082974195, -0.010884222574532, 0.00437961891293526, 0.00558124715462327, 0.0277006942778826, 0.0370607450604439, -0.00818372145295143, -0.00489189196377993, 0.000683426100295037, 0.00407288735732436, -0.00345310033299029, 0.0154187884181738, -0.0115799019113183, -0.00930313300341368, 0.0248673819005489, 0.0222364477813244, 0.0109031954780221, 0.000996877206489444, -0.0112763326615095, 0.0280042625963688, 0.00451875478029251, 0.0252341944724321, -0.00268310937099159, 0.00291394861415029, 0.00535040814429522, 0.00212182267569005, 0.00159927236381918, -0.0202379506081343, 0.0331649407744408, 0.0104921124875546, 0.00371556123718619, 0.0180244240909815, 0.0110486559569836, -0.00263251457363367, 0.0167469028383493, -0.0166963096708059, 0.0133191011846066, -0.032001256942749, -0.00174710433930159, -0.00375350727699697, -0.0110107101500034, -0.0425755865871906, 0.00635914318263531, -0.0259045753628016, -0.00655203638598323, 0.0349357612431049, 0.00520494766533375, 0.0295221097767353, -0.000698446412570775, -0.0133317494764924, -0.00157239381223917, 0.0101505964994431, -0.0171137172728777, -0.0185556709766388, 0.00595754664391279, 0.00296138133853674, 0.00189888896420598, 0.0203644372522831, -0.0156211676076055, -0.00901853665709496, 0.00825328938663006, 0.0332661308348179, 0.00430372636765242, 0.019542271271348, 0.00323807192035019, 0.00166963087394834, 0.00745641952380538, -0.0166583620011806, 0.0319253653287888, 0.00693149771541357, -0.00608719605952501, -0.000136665446916595, -0.0246776510030031, -0.000318787235300988, 0.0188212934881449, 0.00100399204529822, 0.0287884846329689, 0.0116621190682054, 0.00864539947360754, 0.00660263141617179, 0.0173919890075922, 0.0323807187378407, 0.00939799845218658, 0.0180623698979616, -0.00292343506589532, -0.025980468839407, 0.0194663777947426, 0.0236278064548969, 0.028990862891078, 0.0305087100714445, 0.0113332523033023, 0.0129016935825348, 0.0232230480760336, -0.0183785893023014, 0.00483813509345055, 0.0135214803740382, 0.0120858503505588, -0.00693782232701778, -0.0129333147779107, -0.000745088618714362, -0.002455432433635, 0.00880983285605907, -0.000543104368261993, -0.0309134684503078, 0.0160765219479799, 0.0220087710767984, -0.0200482197105885, -0.00262460904195905, 0.000100349796412047, -0.000455749162938446, -0.00472113443538547, -0.0389833524823189, 0.0204782765358686, 0.0172907989472151, -0.000109688109660055, 0.00106565456371754, -0.0044238893315196, -0.0212624967098236, -0.0226665046066046, 0.01964345946908, -0.0224894229322672, 0.0123957442119718, -0.0293197296559811, 0.0178599916398525, 0.00841772276908159, -0.0204656273126602, 0.0300280582159758, -0.018694806843996, 0.0400205478072166, -0.0358717665076256, -0.0138882929459214, -0.00337720802053809, -0.0156970601528883, 0.0192892961204052, 0.0155832218006253, -0.0194284319877625, -0.00846831686794758, -0.0106502212584019, -0.0225020702928305, -0.0277512893080711, 0.0336202941834927, -0.00849993899464607, 0.00203011929988861, 0.0117886057123542, -0.0191375110298395, -0.0139009421691298, -0.0293197296559811, -0.00880983285605907, 0.0470279380679131, 0.0155452750623226, -0.0382244288921356, -0.0250191651284695, -0.0112573597580194, 0.00415194174274802, 0.121326513588428, 0.0250318143516779, -0.021275145933032, 0.00786117836833, 0.0102960569784045, -0.0160638727247715, 0.00344361364841461, -0.0171010680496693, -0.0216546058654785, -0.0299774631857872, 0.0122249871492386, -0.00763350166380405, 0.0209209807217121, -0.016177712008357, -0.00714652612805367, 0.0180117748677731, -0.00949286390095949, -0.0164433345198631, -0.0205541681498289, -0.00744377123191953, 0.000452586973551661, 0.0226791519671679, 0.0319759622216225, 0.0339997559785843, 0.00839874893426895, 0.0145333781838417, 0.00594173558056355, 0.0126929888501763, 0.00354796554893255, 0.00323332869447768, 0.0278524793684483, -0.00273054209537804, -0.00347523554228246, 0.0210601165890694, -0.0236025098711252, 0.00925253797322512, -0.00600181706249714, -0.00852523650974035, 0.0169366337358952, 0.00949286390095949, 0.00539467856287956, -0.0114534152671695, 0.00177556392736733, -0.0193904861807823, 0.00455353874713182, -0.00187517260201275, -0.0061725745908916, 0.00355745223350823, 0.0209589265286922, -0.0171769596636295, 0.0114976856857538, -0.00138977798633277, -0.0368077717721462, 0.0183912366628647, 0.0048223240301013, 0.0231851022690535, -0.00224830978550017, -0.00790544878691435, -0.0128005035221577, -0.0303569249808788, -0.0311917401850224, -0.0119277415797114, -0.000408711726777256, -0.012092174962163, -0.00227676937356591, -0.020263247191906, 0.00707695819437504, 0.0102581111714244, -0.014558675698936, -0.00934740342199802, 0.01393888797611, -0.0274730175733566, -0.034809272736311, 0.0101252989843488, 0.0293703246861696, -0.0115672536194324, 0.00892367120832205, 0.0058057620190084, 0.00472745858132839, 0.00133523042313755, 0.0116241723299026, -0.0638001412153244, 0.00636863010004163, -0.0402482226490974, 0.0176955573260784, 0.00928415916860104, -0.00273370440118015, -0.014609269797802, -0.00475275609642267, 0.0232609938830137, -0.00310367927886546, -0.00630222400650382, 0.0268405806273222, -0.0190995652228594, 0.00246650027111173, 0.00296928663738072, 0.00867702066898346, 0.00942329503595829, 0.00711490446701646, 0.0141033213585615, 0.00954345799982548, -0.00695047108456492, -0.0172402039170265, -0.000650223228149116, 0.000462073512608185, -0.00243171630427241, 0.0225906111299992, 0.00438278121873736, -0.00564132863655686, -0.022843586280942, 0.0187706984579563, -0.0224261786788702, -0.00232736417092383, 0.0190236736088991, 0.00138029141817242, -0.000317206140607595, 0.0129143418744206, -0.00143879174720496, -0.00660895556211472, -0.0151658141985536, -0.0190616194158792, -0.0384268090128899, 0.00956875551491976, 0.0096446480602026, -0.0117000648751855, 0.0069757685996592, 0.0040570767596364, -0.0218822844326496, 0.000662081351038069, -0.0127499084919691, -0.0129649369046092, 0.0281560476869345, 0.0155326267704368, 0.000473931693704799, -0.00599865475669503, -0.0223123393952847, -0.0156970601528883, 0.0154440859332681, -0.0188339427113533, -0.0041487799026072, -0.0193525403738022, -0.00874026492238045, -0.00130202749278396, -0.0344551093876362, 0.0130281802266836, -0.0256768986582756, 0.00582789722830057, 0.00862010195851326, -0.0189604293555021, 0.0182268042117357, 0.00819004513323307, -0.0315459035336971, -0.0440428406000137, -0.00926518626511097, 0.0107703842222691, -0.0113269276916981, 0.0174172855913639, -0.0261322539299726, 0.0200229212641716, 0.0112573597580194, 0.0335444025695324, -0.0126107726246119, -0.0229700729250908, -0.0068809031508863, 0.0101126506924629, -0.0135214803740382, -0.00380726438015699, 0.00440491642802954, -0.0173919890075922, 0.0243487842381001, -0.00451243063434958, 0.00617573689669371, -0.017189608886838, -0.00338037009350955, -0.0143057005479932, 0.0065710092894733, -0.00791177339851856, -0.00796869304031134, -0.0289655663073063, -0.0163294952362776, 0.00409502256661654, -0.00735522992908955, -0.00609984481707215, 0.0249306242913008, -0.0148622449487448, -0.0170504730194807, 0.0421708300709724, 0.00609984481707215, 0.021439578384161, 0.0166457146406174, 0.0350369513034821, -0.00191469979472458, 0.00829123519361019, 0.00284912390634418, -0.0099545419216156, -0.0298509765416384, -0.0250571127980947, -0.0253353845328093, 0.015557924285531, 0.0168607421219349, 0.03023043833673, 0.0201114621013403, -0.0303063299506903, -0.0149507857859135, 0.00315743638202548, 0.0247788392007351, -0.00297086779028177, 0.00956875551491976, 0.0128005035221577, -0.0286366995424032, 0.00913869962096214, -0.0193651877343655, 0.0125475293025374, 0.00581208616495132, 0.0184165351092815, 0.00315269315615296, -0.0151278674602509, 0.00891102198511362, -0.0119720119982958, -0.00569508550688624, -0.0149001907557249, -0.0168860387057066, 0.00382939958944917, -0.0166204161942005, 0.0135594261810184, 0.0172149054706097, 0.0026103793643415, -0.00508794700726867, 0.00751333916559815, -0.000538361084181815, -0.0070010656490922, 0.0198964346200228, -0.0108778979629278, -0.0297750849276781, -0.00901853665709496, -0.00152575166430324, 0.0229953713715076, -0.00878453534096479, -0.034606896340847, 0.0227423962205648, -0.0102011915296316, -0.0069757685996592, 0.0024585947394371, -0.0240325648337603, 0.0124716367572546, 0.0101442728191614, -0.00877188611775637, -0.0060808714479208, 0.0202000048011541, -0.0175311248749495, -0.0367824733257294, 0.0234127789735794, 0.0118771465495229, 0.0252721402794123, -0.0262587405741215, -0.0239060781896114, 0.00235898606479168, -0.0240325648337603, 0.00384837272576988, -0.00258982507511973, -0.0199217312037945, 0.0218696352094412, -0.0119530390948057, 0.0348598696291447, 0.00379145354963839, -0.00745641952380538, -0.0323807187378407, -0.0196687579154968, -0.00452824123203754, 0.0184418316930532, -0.0375413969159126, -0.0135847236961126, -0.0193525403738022, 0.016569821164012, 0.0130534777417779, -0.00383572396822274, -0.035492304712534, -0.0167469028383493, -0.00596703309565783, 0.0132811544463038, 0.0382497273385525, 0.00806355848908424, -0.0211233608424664, -0.00683030812069774, 0.00932843051850796, -0.0221858527511358, -0.0122123379260302, -0.00652041472494602, 0.0544906817376614, 0.00160796835552901, 0.0141539163887501, 0.00665322598069906, -0.00134946021717042, 0.0312423352152109, 0.00260721705853939, -0.00437013246119022, -0.00644452217966318, 0.00327918026596308, -0.0173034481704235, 0.0305340066552162, -0.00821534264832735, -0.0041772392578423, -0.0159879811108112, -0.000332819414325058, 0.00758290709927678, 0.0142298089340329, 0.00746906828135252, -0.0204909238964319, -0.0422720164060593, -0.0246144067496061, -0.00701371440663934, -0.00152179901488125, -0.0147863524034619, -0.00870864279568195, -0.00341831636615098, -0.000526898191310465, 0.00806988216936588, -0.00441440287977457, -0.0108526004478335, 0.0324313156306744, 0.0202126521617174, 0.002226174576208, 5.54369617020711e-05, 0.00743112247437239, -0.00288390787318349, -0.0109411422163248, 0.0197193529456854, 0.0141412671655416, -0.0259298738092184, 0.00602078996598721, -0.00380094000138342, 0.017809396609664, -0.0316470935940742, 0.000858531799167395, -0.000888572481926531, 0.00276058283634484, -0.0118012549355626, 0.0242475941777229, 0.017809396609664, -0.0315459035336971, 0.00448080850765109, -0.00216134986840189, 0.0240831598639488, -0.0155832218006253, 0.00298509770072997, -0.0255504120141268, -0.0104225445538759, 0.0293197296559811, -0.0322289355099201, -0.0358970649540424, -0.00402861693874002, 0.0243993792682886, 0.0144701339304447, 0.00223091780208051, -0.025196248665452, -0.00206174119375646, -0.0375919938087463, -0.0123008787631989, -0.00263725779950619, 0.0208071433007717, 0.0426008850336075, 0.0194916762411594, -0.00990394689142704, 0.0226285587996244, 0.0155832218006253, 0.0137365087866783, 0.00469267461448908, -0.0240578632801771, 0.00343096489086747, 6.56646370771341e-05, 0.00989762227982283, 0.0162409543991089, -0.0306099001318216, -0.0054958681575954, 0.00661527970805764, -0.00380094000138342, 0.0113269276916981, 0.022780342027545, -0.00763350166380405, 0.0147484056651592, -0.00505316304042935, 0.0171137172728777, 0.0101569211110473, 0.00295189465396106, 0.0128510985523462, -0.0335697010159492, -0.00480018882080913, 0.0239693224430084, 0.00688722729682922, -0.0350875444710255, -0.0237036999315023, -0.00779161090031266, -0.0142045114189386, -0.00131151406094432, -0.0100367581471801, -0.00815209932625294, -0.0220973119139671, -0.0179864782840014, 0.0103909224271774, 0.0186821576207876, -0.0269670691341162, 0.0217304993420839, 0.0162283070385456, -0.0211992524564266, -0.00254397350363433, 0.0233621839433908, 0.00713387737050653, -0.000948653905652463, 0.00640657590702176, 0.00300881406292319, 0.0250191651284695, -0.0102770840749145, -0.00167753628920764, 0.00965097267180681, 0.0201241113245487, 0.00220087706111372, 0.00611565541476011, 0.0227170996367931, 0.021502822637558, -0.00118739844765514, -0.00263883895240724, -0.000365034124115482, 0.0120479045435786, -0.0203011929988861, 0.0102264890447259, -0.0100747048854828, -0.00317799067124724, -0.00523340748623013, -0.00182141549885273, 0.0148495957255363, -0.0278271809220314, -0.0416142866015434, 0.00665955059230328, -0.0123577984049916, -0.0107640596106648, 0.0370101518929005, 0.208248510956764, 0.0151658141985536, 0.0152543550357223, 0.0401217378675938, 0.0120162824168801, 0.0131799653172493, 0.01768290810287, 0.0188845377415419, -0.0311158485710621, 0.00199375441297889, -0.0366812832653522, 0.0232736431062222, -0.0198458395898342, -0.00364283099770546, -0.0138629954308271, -0.00996719021350145, -0.0189477801322937, -0.00309577398002148, -0.0262081455439329, 0.0324060171842575, 0.019479027017951, 0.0233748331665993, -0.0150393266230822, -0.0233115889132023, 0.00559705821797252, 0.00177082058507949, -0.0317735821008682, -0.0005415232735686, 0.00677971309050918, 0.0139262396842241, -0.0246270559728146, -0.00484762154519558, 0.0127435838803649, 0.00521127227693796, -0.0120352562516928, 0.0018656860338524, 0.00364599330350757, -0.0107134645804763, 0.00112573592923582, 0.00823431555181742, 0.00958140473812819, 0.00386418355628848, 0.00676074018701911, -0.0188339427113533, 0.0201747063547373, 0.0267140939831734, -0.0125538529828191, -0.00526186684146523, 0.0120984995737672, 0.0243108384311199, -0.0219708252698183, -0.0205415189266205, 0.0141033213585615, 0.0323301255702972, 0.0126423947513103, 0.0217304993420839, 0.0391098372638226, -0.0045788362622261, -0.00770306959748268, 0.0263599306344986, 0.00986600108444691, 0.0506201721727848, -0.0211107116192579, 0.0158361960202456, -0.0319759622216225, 0.00699474150314927, 0.0155452750623226, 0.0140021312981844, 0.0291426479816437, -0.0204909238964319, -0.00862010195851326, 0.020946279168129, -0.0353911146521568, -0.00665955059230328, -0.0124463392421603, -0.0289655663073063, 0.0142551064491272, 0.0342527292668819, 0.0258919280022383, 0.0273212324827909, 0.00462310668081045, -0.029547406360507, -0.00812047719955444, -0.0261322539299726, 0.0186062660068274, -0.011668442748487, -0.0022720261476934, 0.0225400160998106, -0.0206047631800175, 0.00751333916559815, -0.000585398520343006, -0.0102075161412358, -0.0195928663015366, -0.0286619961261749, 0.0119277415797114, 0.0273212324827909, -0.00252341944724321, -0.00627376465126872, -0.0121870404109359, 0.000188940233783796, -0.00769674545153975, 0.038401510566473, 0.0163800902664661, 0.0054674088023603, 0.0172402039170265, -0.0175437722355127, -0.0108526004478335, 0.0174172855913639, 0.0236025098711252, -0.00750701455399394, 0.0209589265286922, -0.00588481640443206, 0.0237416457384825, -0.000124313184642233, 0.00582473492249846, 0.00332661299034953, -0.0196687579154968, -0.0227676946669817, 0.00866437237709761, 0.0150899216532707, -0.0193651877343655, -0.0322289355099201, -0.00218980945646763, 0.00337404571473598, 0.00873394031077623, -0.00380726438015699, -0.019479027017951, -0.0100936777889729, 0.00454088998958468, -0.0363777168095112, -0.0149507857859135, -0.00960670225322247, -0.00826593767851591, -0.021502822637558, -0.0287884846329689, -0.00449978187680244, 0.0072477157227695, 0.0120036341249943, 0.000182418240001425, 0.00383572396822274, -0.00609035789966583, 0.0162156578153372, 0.00761452876031399, -0.0108715733513236, -0.00584054598584771, -0.011554604396224, 0.0358717665076256, -0.00248547317460179, -0.0216419585049152, -0.0125854751095176, -0.0152543550357223, 0.0179611798375845, -0.0154820317402482, -0.0104541657492518, 0.0138756446540356, -0.000812680169474334, -0.0206427089869976, 0.00203011929988861, 0.016177712008357, 0.0150646241381764, -0.0556543618440628, 0.000916241551749408, 0.0397422760725021, -0.0187959969043732, -0.0108526004478335, -0.00898058991879225, -0.156034588813782, 0.0146219190210104, 0.0127499084919691, -0.0230839122086763, 0.0173793397843838, -0.00144274451304227, 0.0263852272182703, -0.00956243183463812, -0.0227676946669817, 0.0281560476869345, 0.0112320622429252, -0.00186252384446561, -0.031571201980114, 0.0191375110298395, -0.0119593637064099, 0.00693782232701778, -0.0113838473334908, 0.0184418316930532, 0.0236151572316885, 0.00699474150314927, 0.0192260518670082, -0.0249306242913008, 0.0049772709608078, -0.0174805298447609, 0.014381593093276, 0.0155073292553425, -0.0142551064491272, 0.0182015057653189, 0.0188465900719166, -0.0172149054706097, -0.00904383417218924, 0.0204909238964319, 0.02630933560431, -0.0094296196475625, 0.000403770827688277, 0.00740582495927811, 0.00655836053192616, -0.0220846626907587, -0.0189604293555021, 0.0301545448601246, 0.0419431515038013, -0.00270682573318481, 0.0103972470387816, -0.0128763960674405, -0.0142804039642215, 0.028990862891078, 0.0131420185789466, -0.0129206664860249, -0.0206427089869976, -0.00498043280094862, 0.0106944916769862, -0.0204656273126602, -0.00882880575954914, -0.00402861693874002, 0.0127752060070634, 0.00485394569113851, 0.00418988801538944, 0.000269575830316171, -0.0120479045435786, -0.03023043833673, -0.00467053940519691, -0.0279030743986368, 0.0125728268176317, 0.0117949303239584, -0.0081141535192728, -0.0314953103661537, -0.00453140353783965, -0.0266382023692131, -0.0251835994422436, 0.00942329503595829, -0.0170884188264608, -0.00573619408532977, -0.0070643094368279, -0.0153428958728909, -0.00559705821797252, 0.00126803410239518, -0.0104984361678362, -0.00496145989745855, 0.00059607089497149, -0.0157097093760967, 0.0045472146011889, 0.0472556129097939, -0.00595438433811069, -0.00544843543320894, 0.00919561833143234, -0.00128226389642805, 0.00503735244274139, 0.0108778979629278, 0.00777896214276552, -0.0184797775000334, -0.00292975944466889, -0.0306604951620102, -0.0282825343310833, -0.00860745273530483, 0.000587374903261662, 0.0019494837615639, 0.0182141549885273, 0.0204403288662434, -0.00298193539492786, -0.0034878842998296, 0.00732360826805234, 0.00788015220314264, -0.0168860387057066, 0.0179611798375845, 0.0206680074334145, 0.0147990006953478, -0.00146013649646193, 0.0245638117194176, 0.0260816588997841, -0.00401280587539077, -0.0120795266702771, 0.00892999581992626, -0.0027937856502831, 0.0306099001318216, -0.00738052744418383, 0.0276753958314657, -2.63844376604538e-05, -0.0104857878759503, 0.0134455878287554, -0.0111435214057565, 0.0426514782011509, -0.00219771498814225, -0.0460413359105587, -0.000843511428683996, -0.00226570176891983, -0.0371872335672379, -0.123046733438969, -0.0422973148524761, -0.00341831636615098, 0.023172453045845, 0.0199596788734198, 0.0201747063547373, -0.011440766043961, 0.0123451491817832, -0.0179105866700411, 0.0251709502190351, -0.006299062166363, -0.00516383955255151, 0.00727301323786378, 0.00130123691633344, 0.0250318143516779, -0.0101000024005771, 0.00151073129381984, -0.00596387078985572, -0.0185809675604105, 0.038401510566473, -0.00627376465126872, -0.0175564214587212, 0.0297244898974895, -0.0270176641643047, -0.00260247383266687, 0.00396537315100431, -0.0246397033333778, 0.0258033871650696, -0.00608403375372291, -0.00623898068442941, 0.0105933016166091, -0.000746274425182492, 0.0248673819005489, -0.00487608090043068, 0.0109474658966064, 0.00153602880891412, -0.0319759622216225, -0.0187327526509762, 0.0248673819005489, -0.0244626216590405, 0.00354164117015898, -0.00770306959748268, 0.00588797871023417, -0.0501901172101498, -0.00464524189010262, -0.0170884188264608, -0.00069528428139165, -0.00309577398002148, -0.00558440946042538, -0.0191501602530479, -0.0399193577468395, 0.0203770864754915, -0.0462184175848961, 0.00233526970259845, -0.00298667862080038, 0.011225737631321, 0.00320170703344047, -0.000403573183575645, 0.0104288682341576, -0.000947863387409598, 0.00322700431570411, -0.000330052513163537, -0.00665955059230328, -0.0041487799026072, -0.00215186318382621, -0.00834815483540297, -0.00241748639382422, -0.00244120275601745, 0.00984070356935263, -0.0351887345314026, -0.0376425869762897, 0.0211360082030296, -0.028990862891078, 0.0180876683443785, -0.014558675698936, 0.0130787752568722, -0.0320771522819996, -0.0184924267232418, 0.0303063299506903, 0.0101632457226515, -0.0234760213643312, -0.019542271271348, -0.0113332523033023, 0.0053757056593895, 0.0167974978685379, 0.00970789138227701, -0.0280548576265574, -0.00617889920249581, 0.00287600234150887, -0.00568559905514121, -0.0160891711711884, 0.0195043236017227, -0.0109790880233049, -0.00802561175078154, 0.00388631876558065, 0.0101758940145373, -0.0060808714479208, -0.00132337224204093, 0.0135214803740382, -0.0147484056651592, -0.0335697010159492, -0.0142677547410131, -0.0380473472177982, 0.0335697010159492, 8.99738952284679e-05, 0.000602790503762662, -0.000598442507907748, 0.00481283757835627, 0.0235772114247084, -0.00776631338521838, -0.0303316283971071, 0.0054357866756618, -0.0368836633861065, 0.0143057005479932, 0.0171769596636295, -0.00367761496454477, -0.0315206088125706, -0.0195043236017227, 0.0178220439702272, -0.00518913706764579, 0.00437961891293526, 0.00386102148331702, 0.023336885496974, 0.00192576739937067, 0.0128763960674405, -0.000130341097246855, -0.00396853545680642, 0.00973318889737129, -0.028560807928443, 0.01768290810287, -0.00287758349440992, -0.0374149084091187, -0.0272959358990192, -0.0068492810241878, 0.0137365087866783, 0.0160891711711884, -0.000913079362362623, 0.000968417560216039, 0.0226791519671679, -0.00819636974483728, 0.00970156770199537, 0.00474326964467764, -0.0135973729193211, -0.0393122173845768, 0.00398118421435356, -0.0299521666020155, -0.0156844109296799, -0.0213510375469923, 0.023792240768671, -0.00286019151099026, 0.0084430193528533, 0.00767144793644547, 0.00619470980018377, 0.0174172855913639, -0.0124653121456504, -0.00877188611775637, -0.0194537304341793, -0.0227297469973564, 0.00461994437500834, 0.0108273029327393, -0.0186695083975792, -0.0317988805472851, 0.0460666343569756, -0.0174046363681555, 0.0106059508398175, -0.0125475293025374, 0.00972686521708965, -0.0112826572731137, -0.00881615653634071, 0.00296296249143779, 0.00684295687824488, -0.00254081143066287, -0.00751966331154108, -0.00750701455399394, 0.0176702607423067, 0.0239566732198, 0.00336772133596241, 0.00975848641246557, -0.039843462407589, -0.000186469784239307, 0.00403494108468294, 0.0283837243914604, -0.00230839126743376, -0.0155073292553425, -0.046117227524519, 0.0152164082974195, -0.00782955717295408, 0.0214016325771809, -0.00106644514016807, 0.00202695722691715, -0.0173793397843838, 0.00985335186123848, -0.0133317494764924, 0.00426261825487018, -0.0173919890075922, 0.0117380106821656, -0.00887307617813349, 0.018239451572299, 0.0124779613688588, 0.0040855361148715, 0.0149254882708192, 0.0218063909560442, 0.0299015715718269, -0.0202758964151144, -0.0155452750623226, -0.00987864937633276, -0.0272200424224138, -0.00989129766821861, -0.032001256942749, -0.00531878648325801, 0.000798845663666725, 0.023728996515274, 0.0250824093818665, 0.00109727634117007, 0.0132938036695123, 0.0161271169781685, -0.00695047108456492, 0.0215660650283098, 0.00845566857606173, -0.00904383417218924, -0.000940748432185501, 0.017189608886838, 0.0163800902664661, 0.00810150429606438, 0.0123514737933874, -0.00185461842920631, 0.0390339456498623, 0.00299300299957395, 0.00377880479209125, 0.00834815483540297, 0.0040823738090694, 0.0180876683443785, -0.032127745449543, 0.0186315625905991, -0.0224388279020786, -0.0124336909502745, -0.00335507257841527, -0.0205162223428488, 0.016278900206089, -0.0024127431679517, 0.00633068382740021, 0.0274730175733566, 0.00738685159012675, 0.0168227963149548, 0.0113775227218866, 0.0287378896027803, 0.0141665646806359, 0.0135973729193211, 0.000889363058377057, 0.00823431555181742, 0.00450294371694326, 0.0356946848332882, -0.00338669447228312, 0.0186315625905991, 0.00689987605437636, -0.00889837369322777, -0.00169650942552835, 0.0151658141985536, 0.0150899216532707, -0.00983437895774841, 0.0167974978685379, 0.00086169398855418, 0.00834815483540297, 0.0292944330722094, 0.00247124349698424, -0.0108778979629278, -0.00364915537647903, 7.31254040147178e-05, -0.0202126521617174, -0.0082026943564415, -0.0179485324770212, 0.0102897323668003, 0.00575516698881984, -0.0277512893080711, 0.0068176593631506, 0.0108778979629278, -0.0262081455439329, -0.0029787733219564, 0.00440807826817036, 0.0312423352152109, -0.0221985019743443, -0.00251393276266754, 0.036731880158186, -0.0112194139510393, -0.0533775947988033, -0.000620182487182319, 0.0243234857916832, -0.0104921124875546, -0.00956243183463812, -0.024019917473197],id:"2b5a87883ce0c7e9ca1322b82592fa26",source:"state_of_union.txt",text:"And unlike the $2 Trillion tax cut passed in the previous administration that benefitted the top 1% of Americans, the American Rescue Plan helped working people—and left no one behind.
And it worked. It created jobs. Lots of jobs.
In fact—our economy created over 6.5 Million new jobs just last year, more jobs created in one year
than ever before in the history of America.
Our economy grew at a rate of 5.7% last year, the strongest growth in nearly 40 years, the first step in bringing fundamental change to an economy that hasn’t worked for the working people of this nation for too long.
For the past 40 years we were told that if we gave tax breaks to those at the very top, the benefits would trickle down to everyone else.
But that trickle-down theory led to weaker economic growth, lower wages, bigger deficits, and the widest gap between those at the top and everyone else in nearly a century."})
(:Chunk{embedding:[-0.015825929120183, 0.00161343556828797, -2.60001706919866e-05, -0.0186117179691792, 0.00389678706414998, -0.00170132063794881, 0.00328822480514646, -0.0129937119781971, 0.00843032542616129, -0.0255098603665829, 0.0245282016694546, 0.011925826780498, -0.00340927415527403, -0.00612873397767544, 0.00641394546255469, -0.0118594979867339, 0.0241700280457735, -0.00898748356848955, -0.00313401175662875, -0.0106257917359471, -0.00921299960464239, -0.0158789921551943, 0.0351009294390678, -0.00405929144471884, -0.00992271210998297, -0.00428480748087168, 0.0526381283998489, -0.0132457595318556, 0.011998787522316, -0.0180943571031094, -0.00313566974364221, -0.0173382144421339, -0.0185055918991566, 0.000887969974428415, -0.0218618046492338, -0.00979668833315372, -0.010168126784265, -0.00368785276077688, 0.0234404169023037, -0.0127018671482801, 0.0296089481562376, -0.0111829498782754, -0.00912677217274904, 0.0232944954186678, -0.0406990386545658, 0.00335786957293749, -0.0196862369775772, -0.0200974717736244, -0.00981658697128296, 0.0192352030426264, 0.0115013252943754, 0.0108314091339707, -0.0337478332221508, -0.024567998945713, -0.00721651781350374, -0.00477895326912403, -0.0106523232534528, 0.0143799725919962, -0.014578958041966, -0.0104135414585471, 0.0111895827576518, -0.00112592265941203, -0.0191821418702602, 0.000754069711547345, -0.0242230910807848, -0.00590985035523772, -0.0104997679591179, 0.0152953034266829, 0.0246608573943377, 0.00741550279781222, 0.0423174500465393, 0.0185719206929207, 0.00795276183634996, 0.00281563587486744, 0.0328723005950451, 0.00862930994480848, -0.0189698897302151, -0.0220475234091282, -0.0147248804569244, -0.00170463707763702, 0.0196464397013187, -0.00226511107757688, -0.0156004130840302, -0.0116737792268395, 0.00468277698382735, -0.0163698215037584, -0.000443984987214208, 0.00289854616858065, -0.0312538892030716, -0.0195270478725433, 0.00139206496533006, 0.0203760508447886, 0.00479221902787685, 0.0141013944521546, 0.00361489178612828, 0.0230424478650093, -0.0109176365658641, 0.0154279600828886, 0.0292375087738037, -0.0198454242199659, 0.0187178421765566, -0.0146320201456547, -0.0132324937731028, -0.00925279594957829, -0.0172320902347565, -0.021198520436883, -0.0108911050483584, -0.00157032220158726, 0.0426358245313168, -0.0135972993448377, 0.0061088353395462, -0.0226975400000811, -0.00577056128531694, -0.0228434633463621, -0.00733590871095657, -0.00639404682442546, -0.0189698897302151, -0.00115991593338549, 0.024926170706749, 0.00389347062446177, 0.0233077611774206, 0.0116538805887103, 0.0168075878173113, 0.0213046465069056, 0.00248399446718395, -0.00512717664241791, -0.0434317626059055, 0.000324386783177033, 0.0189035627990961, 0.00223028869368136, 0.0142738474532962, 0.0064703244715929, -0.000482123752590269, -0.03581727668643, -0.00749509641900659, -0.018837234005332, -0.000642969855107367, 0.0136370966210961, -0.0142207853496075, -0.0274864435195923, 0.00118478911463171, -0.00252876593731344, -0.0151493810117245, -0.00561468955129385, 0.0041919476352632, 0.0128676882013679, 0.013756487518549, 0.00930585898458958, 0.0133784161880612, 0.000434450281318277, 0.0220873206853867, -0.0111962147057056, 0.0157463364303112, 0.00963086728006601, -0.000552183017134666, 0.0118661308661103, 0.00642721122130752, 0.00645042629912496, 0.0178157780319452, 0.020694425329566, 0.000873046112246811, -0.0211056619882584, 0.00431133899837732, 0.0158657263964415, 0.00929922610521317, 0.0239047147333622, 0.00176433252636343, 0.0126886013895273, 0.00905381143093109, 0.00550856441259384, 0.00716345524415374, -0.00362484087236226, -0.0319967679679394, 0.00973035953938961, -0.0132921887561679, 0.0104069085791707, 0.0158657263964415, -0.00610220246016979, -0.0409112870693207, -0.00136802101042122, 0.0315987952053547, 0.0219811946153641, 0.0154544916003942, 0.0310681704431772, -0.00483201583847404, 0.00602924125269055, 0.0279905386269093, -0.00588000286370516, 0.0115344896912575, -0.0122707337141037, 0.0198188927024603, 0.0302722305059433, 0.00627797236666083, 0.0125559447333217, -0.619347035884857, -0.0317579843103886, -0.0015280379448086, 0.00103886681608856, 0.00209265761077404, -0.00693130632862449, -0.00224355445243418, 0.034013144671917, -0.00845685694366693, 0.00691804056987166, -0.0107252839952707, 0.0126952342689037, -0.0176300592720509, -0.0303518250584602, -0.0106788547709584, -0.00820480939000845, 0.0129207503050566, -0.0153616312891245, -0.00264649861492217, -0.0218087416142225, -0.0245547331869602, 0.022273039445281, 0.00696447025984526, -0.000781430164352059, -0.0107584483921528, 0.0194872505962849, 0.0438032001256943, -0.0247404519468546, -0.00407255673781037, 0.000735000357963145, -0.00953137502074242, 0.0347560234367847, -0.00566111924126744, -0.0144463013857603, 0.0499584674835205, 0.00772724580019712, -0.00746193248778582, -0.00119225098751485, 0.0162902269512415, 0.0296089481562376, -0.0193943921476603, -0.014472832903266, -0.00518355565145612, 0.00317380856722593, 0.000992437009699643, 0.0238516535609961, 0.0347560234367847, -0.00359167694114149, 0.012536047026515, -2.60908545897109e-05, -0.00620169518515468, 0.00195834273472428, -0.0123967574909329, 0.00114084652159363, 0.000762360752560198, 0.0109508000314236, 0.00887472461909056, -0.0251649525016546, 0.0119390916079283, -0.0180810913443565, 0.00274930754676461, 0.0138228153809905, -0.020057674497366, -0.0318906418979168, -0.0339070223271847, -0.00498788710683584, -0.0120186861604452, -0.00156037299893796, 0.0122972643002868, -0.0278313495218754, -0.0245016701519489, 0.00850328616797924, 0.00687824375927448, -0.0200709402561188, 0.0206413641571999, -0.0106257917359471, 0.0278313495218754, 0.0163565557450056, -0.0154942879453301, 0.0138228153809905, -0.00863594282418489, -0.011998787522316, 0.00778030836954713, -0.00760122202336788, 0.0148442713543773, -0.00589658506214619, -0.0441481098532677, 0.00598612800240517, 0.000732927583158016, 0.0263986587524414, 0.00996914226561785, 0.000372267531929538, 0.0123569602146745, -0.0305640753358603, 0.0145922238007188, 0.0116339819505811, 0.015613678842783, 0.00500446930527687, 0.0102609861642122, 0.00516034103929996, 0.00748846400529146, -0.00624480843544006, 0.0227506030350924, 0.0155871482565999, 0.0191954076290131, 0.0220740549266338, 0.0071435566060245, 0.0345968343317509, -0.00387025554664433, -0.0157993976026773, -0.0157330706715584, -0.0192484688013792, -0.0179617013782263, -0.0050741140730679, -0.0364009663462639, -0.0272741932421923, -0.0083374660462141, -0.0140217998996377, -0.00377407972700894, -0.00681854831054807, 0.00833083316683769, 0.0111630512401462, -0.00112343544606119, -0.0233740881085396, -0.00498457113280892, -0.00445394450798631, 0.0149636622518301, 0.00482206651940942, -0.00640731258317828, 5.68454161111731e-05, -0.00728284614160657, 0.00118478911463171, 0.0342253968119621, 0.00171790271997452, 0.0149901928380132, 0.0293171033263206, -0.00277252239175141, -0.0233210269361734, -0.010566096752882, -0.0429011359810829, 0.00892115477472544, 0.0116936769336462, -9.4725088274572e-05, -0.0147248804569244, -0.0130003448575735, -0.0322355479001999, -0.0271945986896753, 0.0064205783419311, -0.0154279600828886, -0.00998903997242451, 0.0129008525982499, -0.00376413040794432, -0.0271282698959112, 0.0139156747609377, -0.0116538805887103, -0.00218385900370777, 0.0204423777759075, 0.00776040973141789, -0.0108911050483584, -0.0104599706828594, -0.00167230202350765, 0.0166484005749226, -0.011176316998899, 0.00297150737605989, -0.00110685336403549, 0.0234802141785622, -0.0138228153809905, 0.010241087526083, 0.0216760840266943, -0.00568765075877309, 0.0137962838634849, -0.00815174635499716, -0.00406260788440704, 0.00112840998917818, 0.0257751736789942, -0.0049713053740561, 0.0163830872625113, 0.00441414769738913, -0.0146718174219131, 0.00969056319445372, -0.00373428268358111, 0.0048088007606566, -0.032951895147562, 0.012821258045733, 0.0377009995281696, 0.00102808850351721, 0.0123635930940509, 0.00409908825531602, -0.00552514661103487, 0.0144330356270075, -0.00127350317779928, 0.0247935149818659, -0.00498125469312072, 0.0183862019330263, 0.0011532831704244, 0.0247271861881018, -0.00841042678803205, -0.00866247434169054, 0.018624983727932, -0.00770071428269148, 0.0250588282942772, -0.0105329323559999, -0.00126521207857877, 0.00707059539854527, 0.00997577421367168, -0.0243822783231735, -0.0037276498042047, -0.0437236092984676, 0.00955127365887165, 0.00294829253107309, 0.0020959738176316, -0.0220740549266338, -0.0245149359107018, -0.0368785299360752, -0.00819154363125563, 0.0355519615113735, -0.016038179397583, 0.0242628883570433, -0.0344641804695129, -0.00624149199575186, 0.00236957822926342, 0.00341922324150801, 0.00499120354652405, -0.011706942692399, 0.00107037276029587, -0.000509069592226297, 0.00483533227816224, 0.00758795626461506, -0.00741550279781222, -0.00211421423591673, 0.0124962497502565, 0.0299803856760263, 0.022273039445281, 0.015003458596766, -0.00369780207984149, -0.012104912661016, 0.00325174443423748, -0.0148310055956244, 0.0434848256409168, 0.00967729743570089, 0.0231618378311396, 0.0410174131393433, -0.00153135438449681, -0.000291637203190476, 0.0328723005950451, 0.00417536590248346, 0.0359499342739582, -0.00263157486915588, -0.00495140673592687, 0.0171392299234867, 0.018624983727932, 0.00219049165025353, 0.015971852466464, -0.0123503273352981, -0.00741550279781222, -0.0245547331869602, 0.00845685694366693, 0.0220475234091282, 0.0363213717937469, 0.0351539924740791, 0.00832420028746128, 0.0219413973391056, 0.0174443405121565, -0.0238649174571037, -0.0103405797854066, -0.00849002134054899, -0.0128278909251094, 0.0143003789708018, -0.0260935481637716, -0.0082313409075141, -0.00186216668225825, 0.0020462276879698, 0.0163034927099943, -0.026717035099864, 0.0161708369851112, 0.0098829148337245, -0.0108579406514764, -0.00304778479039669, -0.00728284614160657, 0.00391005259007215, 0.0102875176817179, -0.0235332772135735, 0.0148310055956244, -0.00287201488390565, -0.0152820376679301, -0.0106191588565707, -0.00186879956163466, -0.00804562121629715, -0.0242230910807848, 0.0113421371206641, -0.0279109440743923, -0.00614863215014338, -0.0227506030350924, 0.0126488050445914, 0.00650017242878675, -0.00679201679304242, 0.0422113239765167, 0.00635425001382828, 0.0100553687661886, -0.0218220073729753, -0.00796602759510279, 0.0112492777407169, -0.00736244022846222, 0.00614863215014338, 0.0311742965131998, -0.00540575571358204, -0.022564884275198, 0.000379936740500852, 0.00455012079328299, -0.00685171224176884, 0.0166218690574169, -6.74164839438163e-05, -0.0102875176817179, 0.0266109090298414, -0.00881502963602543, -0.00800582487136126, -0.0169137138873339, -0.0300599802285433, 0.00340595771558583, 0.022485289722681, 0.00776704261079431, -0.0312008261680603, -0.0295558851212263, -0.000653333670925349, 0.153032630681992, 0.0109574329108, -0.0158657263964415, 0.00784000381827354, -0.0104599706828594, -0.00157115131150931, -0.0232281666249037, -0.0238914489746094, 0.0102278217673302, -0.0378336571156979, 0.0243424810469151, 0.0105064008384943, 0.00728947902098298, -0.00253042415715754, -0.00124448456335813, 0.0172055587172508, -0.00451363995671272, -0.0285211633890867, 0.0105395652353764, -0.0319702364504337, -0.0398500375449657, -0.00927269458770752, 0.0135442363098264, 0.032951895147562, 0.00118396000470966, 0.0113952001556754, 0.0249659679830074, 0.0057440297678113, 0.0225383527576923, 0.0098829148337245, 0.0101283295080066, 0.0225781500339508, 0.0306702014058828, 0.00738233840093017, -0.0162371657788754, -0.00312074599787593, 0.00245414674282074, -0.00675553642213345, 0.0212515834718943, 0.00623485911637545, 0.011925826780498, 0.011680412106216, 0.0104069085791707, -0.000462639814941213, 0.0150167243555188, -0.00849002134054899, 0.00175106676761061, 0.0156402103602886, 0.007501729298383, -0.00728947902098298, 0.0378867201507092, 0.00422511203214526, -0.0256690476089716, -0.00761448731645942, -0.0115941846743226, 0.020694425329566, -0.00220375740900636, -0.0263190641999245, -0.0273803174495697, -0.000719661940820515, -0.00632440252229571, -0.0204291120171547, -0.0215434283018112, -0.00932575762271881, 0.00266308081336319, -0.0327661745250225, -0.00161758111789823, -0.00826450437307358, -0.0171657614409924, -0.0107518155127764, -0.0125426789745688, -0.0284681022167206, -0.0044506280682981, 0.00681854831054807, 0.0216495543718338, 0.00805225409567356, 0.022352633997798, 0.018120888620615, -0.000887140864506364, -0.0152157098054886, 0.0040360763669014, -0.0533279441297054, 0.029078321531415, -0.0109375352039933, -0.00841042678803205, 0.00483533227816224, -0.0134580098092556, -0.00486517976969481, -0.00902064703404903, 0.00115991593338549, 0.00161592289805412, 9.48935030464781e-06, 0.0171524956822395, -0.013783018104732, -0.00224521267227829, -0.000203130388399586, 0.027221130207181, 0.00144678575452417, -0.00759458914399147, -0.00150979764293879, 0.0129207503050566, -0.0248598419129848, -0.0113355042412877, -0.00609225314110518, 0.0203760508447886, -0.0083374660462141, 0.00603587413206697, 0.0257221106439829, -0.0166616663336754, -0.00565117038786411, 0.0261864084750414, -0.0243026856333017, -0.00908034294843674, 0.0139554720371962, -0.00868900585919619, 0.0322620794177055, 0.0107717141509056, -0.000469272636109963, -0.0185586549341679, -0.00833083316683769, -0.0121712405234575, -0.0145126292482018, 0.0273537859320641, -0.00189035618677735, -0.0150830531492829, 0.0154544916003942, 0.0023049081210047, -0.0179749671369791, -0.00614531617611647, 0.00695120450109243, -0.00844359118491411, 0.0210260674357414, 0.00541570456698537, -0.0099824070930481, 0.00308758183382452, -0.0186913125216961, 0.00607235496863723, -0.00425164308398962, -0.0165290087461472, -0.018624983727932, 0.00388683774508536, -0.012960547581315, -0.0159187894314528, -0.0503829680383205, -0.0121977720409632, -0.0247669834643602, -0.000514873361680657, 0.0219281315803528, -0.0164892133325338, 0.0263190641999245, -0.00344907096587121, -0.00284050893969834, -0.00862267799675465, 0.000980000477284193, -0.00939871836453676, -0.0374887473881245, 0.0104865022003651, -0.022989384829998, 0.00844359118491411, 0.0310416389256716, 0.0278313495218754, -0.0188107024878263, -0.0131396343931556, 0.0213311780244112, 0.0380724370479584, -0.0158391948789358, 0.0195270478725433, -0.00181407865602523, -0.0210658647119999, 0.0226444769650698, 0.011282442137599, 0.0105859944596887, -0.0138095496222377, -0.00631113676354289, -0.011282442137599, 0.00768081564456224, -0.00581367453560233, -0.00728947902098298, -0.0344907119870186, -0.0058468384668231, -0.0260935481637716, -0.00796602759510279, -0.00628792168572545, 0.0323151424527168, -0.0258945636451244, -0.0166086032986641, 0.0277782864868641, -0.0107451826334, 0.0326069854199886, -0.00550193153321743, 0.0540442913770676, -0.000970051216427237, 0.0263057984411716, 0.000958443793933839, -0.0120584825053811, -0.0186382494866848, -0.0271150041371584, -0.0327661745250225, 0.0175769962370396, 0.0133319860324264, 0.0177096538245678, 0.00590985035523772, -0.0375683419406414, -0.0142075195908546, 0.00918646808713675, 0.0284150391817093, -0.00876196660101414, 0.00192517857067287, 0.0102145560085773, -0.0178290437906981, 0.00711702555418015, -0.0401418805122375, -0.0308293886482716, -0.0213577095419168, 0.0267435666173697, -0.00220541562885046, -0.0184923261404037, 0.00731601007282734, -0.0144860986620188, -0.00426490884274244, -0.0197790954262018, -0.0102808848023415, -0.0245547331869602, -0.0148840676993132, 0.0247404519468546, 0.00246409582905471, -0.00763438595458865, -0.0224587582051754, 0.003105822019279, -0.0130401412025094, 0.00844359118491411, 0.0138228153809905, 0.015003458596766, -0.0033379711676389, -0.0120982797816396, 0.0067290049046278, 0.0225118212401867, 0.00388020486570895, -0.0499319359660149, 0.00712365843355656, 0.00083200546214357, -0.00821144226938486, 0.0184923261404037, -0.02549659460783, -0.0253374055027962, 0.0226312112063169, -0.00573408044874668, -0.0320498272776604, -0.00248233624733984, -0.0173249486833811, 0.000837809173390269, 0.00906707718968391, -0.001486582797952, 0.0323682054877281, 0.0079129645600915, -0.0328988321125507, 0.00805888697504997, -0.0276190992444754, 0.00115494127385318, 0.00378402881324291, -0.0290252584964037, 0.0137034244835377, -0.0146585516631603, 0.0252047497779131, -0.0182402785867453, 0.00637083221226931, -0.0289191342890263, -0.00441083125770092, 0.0130865713581443, 0.0195801109075546, -0.0225781500339508, -0.0111431526020169, -0.031572263687849, 0.012211037799716, 0.00296819093637168, -0.00786653533577919, -0.0231485720723867, -0.0154412258416414, -0.00511059444397688, 0.000821227149572223, 0.0111099882051349, 0.000657479162327945, -0.0174974016845226, -0.0246608573943377, -0.00143932388164103, -0.00534606026485562, -0.023281229659915, 0.00878849811851978, 0.0393459424376488, -0.000621827726718038, -0.0103074163198471, -0.0111166210845113, -0.011176316998899, 0.0118395993486047, -0.000907039328012615, 0.00519018853083253, -0.00768081564456224, 0.0197127666324377, -0.0290517900139093, 0.0281762573868036, -0.012138077057898, 0.0204556435346603, -0.0216230228543282, 0.00717672100290656, -0.0220077261328697, 0.0122707337141037, 0.0144065041095018, 0.00351208285428584, -0.0287068840116262, -0.0107650812715292, 0.0234271511435509, 0.0103273149579763, -0.00856961496174335, 0.000752411549910903, -0.00935228914022446, -0.00560805667191744, 0.0100354701280594, -0.0187576394528151, -0.0119656231254339, 0.0410970076918602, 0.0114482622593641, -0.00980332121253014, 0.00335455313324928, 0.000449788698460907, -0.00628128880634904, -0.00664277793839574, 0.00531289586797357, 0.015971852466464, -0.0285476949065924, 0.00522998534142971, 0.0127880936488509, 0.00505753187462687, -0.0212913807481527, -0.0001683080336079, -0.00395648228004575, -0.00809868425130844, -0.00347560225054622, 0.0121977720409632, 0.00463303085416555, -0.0249129049479961, 0.0118197007104754, 0.0108446748927236, 0.021636288613081, -0.00224852887913585, -0.0189168285578489, -0.0146718174219131, -0.017404543235898, 0.0116273490712047, -0.0314926728606224, -0.0245414674282074, -0.00744866672903299, 0.0260404869914055, 0.0085364505648613, -0.00173614290542901, -0.00939208548516035, -0.00791959743946791, -0.0324212685227394, -0.0121646085754037, -0.00027878608671017, 0.0180147625505924, 0.0261731427162886, 0.0116074504330754, 0.0115079581737518, 0.0169535111635923, 0.00182071153540164, 0.00483201583847404, -0.0161177739500999, -0.0141146602109075, 0.0175371989607811, -0.0440685153007507, 0.00244585564360023, 0.0200311429798603, -0.00837726332247257, -0.00818491075187922, -0.0080721527338028, 0.0208403486758471, 0.0163432899862528, 0.0200046114623547, 0.026717035099864, -0.00864257570356131, 0.0033645024523139, 0.0118263335898519, 0.0187576394528151, 0.00516697391867638, 0.0163830872625113, -0.0384173430502415, -0.015613678842783, 0.0102875176817179, -0.00110187870450318, -0.00355851277709007, -0.0103803770616651, -0.00567106856033206, 0.00265147327445447, 0.00228500948287547, 0.00529963010922074, 0.00205783522687852, 0.017404543235898, -0.0411766022443771, 0.0167014636099339, -0.00441746413707733, -0.0181474201381207, 0.0274864435195923, 0.0369581207633018, -0.0101880254223943, -0.0116207161918283, 0.0212913807481527, 0.00793949607759714, 0.0084369583055377, 0.00883492827415466, -0.0136370966210961, 0.0239047147333622, -0.0067820674739778, -0.00334792048670352, -0.0153616312891245, 0.00776704261079431, -0.00373096624389291, 0.00316054304130375, 0.0153881628066301, 0.0185586549341679, 0.0141013944521546, -0.0148840676993132, -0.0140881286934018, -0.0090007483959198, 0.00715682236477733, -0.012821258045733, -0.024846576154232, 0.00591979967430234, -0.0123768588528037, -0.0192352030426264, -0.00500446930527687, -0.0185321234166622, -0.0179617013782263, -0.0126355392858386, 0.0174178089946508, -0.00120966217946261, 0.0203495193272829, 0.256610870361328, 0.0171524956822395, 0.0198586899787188, 0.0244884043931961, 0.0019915068987757, 0.0106257917359471, 0.0109242694452405, 0.0234006196260452, 0.00796602759510279, 0.00557157630100846, -0.0228965245187283, 0.00931249186396599, -0.0146054895594716, -0.000278371531749144, 0.0127681959420443, -0.016980042681098, -0.0408582240343094, -0.0181739516556263, -0.0112492777407169, 0.0281762573868036, 0.0120783811435103, -0.012927383184433, -0.0102543532848358, -0.0100686345249414, -0.000534357270225883, -0.00276588974520564, -0.0163034927099943, 0.0231883693486452, 0.0144330356270075, 0.0200444087386131, -0.0208403486758471, 0.00498125469312072, -0.00521008716896176, -0.00493150809779763, 0.00872880313545465, -0.0100023057311773, 0.00744866672903299, -0.0237720590084791, -0.00599939376115799, 0.0195933766663074, 0.0211719889193773, 0.0291579160839319, -0.0173780117183924, -0.0124962497502565, -0.00210094847716391, 0.0396112538874149, -0.0117467399686575, -0.0144197698682547, 0.016263697296381, 0.0207076910883188, -0.0200178772211075, -0.00435445224866271, 0.011096722446382, 0.0444134213030338, -0.00793286319822073, 0.0178821068257093, 0.0102477204054594, 0.0264251902699471, 0.0033164145424962, 0.0186647810041904, 0.000673646689392626, 0.049348246306181, -0.00748846400529146, 0.00556494342163205, 0.00489834416657686, 0.00990944635123014, 0.0065167541615665, 0.00936555396765471, 0.0238118562847376, -0.032527394592762, 0.00449705775827169, 0.00878849811851978, -0.0283354446291924, -0.00597617868334055, -0.0285211633890867, -0.0228567291051149, 0.0393724739551544, 0.0178423095494509, 0.032527394592762, 0.0330314859747887, -0.00210094847716391, -0.0137166902422905, 0.0104997679591179, -0.0123237958177924, -0.0118594979867339, -0.0187311079353094, 0.0221934448927641, 0.00812521576881409, -0.0117467399686575, -0.015109583735466, 0.00843032542616129, -0.0191423445940018, -0.0133983138948679, -0.0167147293686867, 0.0037276498042047, 0.0150565216317773, -0.00186382490210235, 0.0159187894314528, -0.0150697873905301, 0.0406194441020489, -0.0135508691892028, 0.0258945636451244, 0.0221138522028923, -0.00338605907745659, 0.0106456903740764, -0.02549659460783, 0.00211918889544904, 0.0163034927099943, 0.00798592623323202, -0.0300865117460489, 0.0156667418777943, -0.00850328616797924, 0.0127018671482801, -7.06810824340209e-05, 0.013862612657249, 0.0226842742413282, -0.00923953019082546, -0.0240241065621376, 0.0228036660701036, 0.0176300592720509, -0.0197525639086962, -0.0346233658492565, -0.0050210515037179, -0.0172320902347565, 0.00878186523914337, -0.0136503614485264, -0.0273803174495697, 0.00426159240305424, -0.0107717141509056, -0.0290517900139093, 0.0153881628066301, 0.0152422403916717, 0.0142473168671131, -0.0251118894666433, -0.0242230910807848, -0.00973699241876602, 0.0161310397088528, 0.00160099903587252, -0.0241700280457735, 0.0231353063136339, -0.0147514110431075, -0.0189433600753546, -0.00715682236477733, -0.0104666035622358, 0.0116273490712047, -0.0231751035898924, 0.0306171383708715, -0.0228965245187283, -0.00149653200060129, -0.0100354701280594, -0.0229097902774811, 0.00419526407495141, 0.0122176706790924, 0.000267385912593454, 0.0196597054600716, -0.00689814193174243, -0.0367989353835583, -0.00162504310719669, 0.00222033937461674, 0.0311742965131998, -0.0179749671369791, -0.00322852935642004, 0.024846576154232, 0.0143534420058131, -0.00857624784111977, 0.00438761617988348, -0.167147293686867, 0.0302456989884377, 0.0258680321276188, -0.00215401127934456, 0.00268795387819409, -0.0160116497427225, -0.00509401271119714, -0.0123370615765452, -0.0151626467704773, 0.0187576394528151, 0.00873543601483107, 0.0169402454048395, -0.0182668101042509, 0.0084369583055377, -0.0124033903703094, 0.0202433932572603, -0.0228434633463621, -0.00635425001382828, 0.00231319898739457, -0.00556494342163205, -0.00759458914399147, -0.0221934448927641, 0.00227506039664149, -0.0288395397365093, 0.00801245681941509, 0.0155208194628358, -0.0284946337342262, 0.0463767386972904, -0.00629787100479007, -0.0354458391666412, -0.0301395747810602, -0.00161841022782028, 0.0366397462785244, 0.011786537244916, 0.0119921546429396, -0.0069910017773509, 0.00675553642213345, -0.0092594288289547, -0.022060789167881, 0.0221005864441395, 0.032527394592762, 0.0137432217597961, 0.0202964562922716, -0.0122574679553509, -0.0207872856408358, 0.00476900395005941, 0.00828440301120281, -0.0102808848023415, 0.00237123621627688, 0.00102974672336131, -0.0113620357587934, -0.0260935481637716, -0.00725631462410092, 0.00493482453748584, 0.0117799043655396, 0.00366463791579008, -0.00558815849944949, 0.0310151074081659, 0.011282442137599, 0.00036584195913747, 0.000474661821499467, 0.000168204394867644, 0.0123105300590396, -0.00971709471195936, -0.00487181264907122, -0.0231883693486452, -0.00855634920299053, 0.0134447440505028, -0.0284415706992149, 0.012031951919198, -0.0182535443454981, -0.0423705093562603, -0.00624812487512827, -0.0130268763750792, 0.00543891964480281, -0.00544223608449101, -0.00996250938624144, 0.0196597054600716, 0.00930585898458958, -0.0128411566838622, -0.0270486753433943, 0.0484461821615696, 0.0117467399686575, -0.00112343544606119, 0.0030544176697731, -0.0127416644245386, -0.0260404869914055, 0.0212781149893999, 0.0107916127890348, -0.0351805239915848, 0.00580704165622592, -0.0465889908373356, -0.021132193505764, -0.012609007768333, -0.00824460666626692, 0.0157463364303112, 0.0227638687938452, 0.0173912774771452, 0.0109508000314236, -0.0185984522104263, -0.00136387546081096, 0.0099824070930481, -0.0213709753006697, 0.0309620443731546, -0.0105461981147528, 0.0259874239563942, 0.00778694124892354, 0.0344111174345016, 0.0183464046567678, -0.0123635930940509, -0.0172320902347565, -0.00102725939359516, 0.000753240601625293, 0.0258945636451244, 0.00784663669764996, 0.0110502932220697, -0.0222332421690226, -0.000306768342852592, -0.00056047405814752, -0.00614531617611647, 0.0436705462634563, -0.0041388850659132, -0.0282293204218149, -0.0170994326472282, 0.0215434283018112, -0.00808541849255562, -0.117268413305283, -0.0393990017473698, 0.00604250701144338, 0.000522749847732484, 0.0111033553257585, 0.0175371989607811, -0.00670910626649857, 0.00687161087989807, -0.0327661745250225, 0.0283089131116867, -0.00224521267227829, -0.0270221456885338, 0.00217225146479905, 0.00342917256057262, 0.0451032370328903, -0.00888135749846697, -0.0208668801933527, -0.0119589902460575, -0.0413623191416264, 0.023997575044632, -0.00989618059247732, -0.0056942836381495, 0.0123967574909329, -0.0190627500414848, 0.00624149199575186, -0.0188107024878263, -0.0113753015175462, 0.0250190310180187, 0.0158789921551943, -0.0251782182604074, -0.0157993976026773, -0.023917980492115, 0.012138077057898, 0.00961760152131319, 0.00689150905236602, 0.00515702459961176, -0.0208801459521055, -0.00244917208328843, 0.0148708019405603, -0.0104798693209887, 0.0050210515037179, -0.0172718856483698, 0.0163300242275, -0.0323416739702225, -0.00728284614160657, -0.0178290437906981, -0.0164228845387697, 0.012821258045733, 0.0092196324840188, -0.00697110313922167, -0.0425562299787998, 0.0156004130840302, -0.0152024440467358, -0.00608230428770185, -0.0128477895632386, 0.000792623031884432, -0.00141113437712193, 0.000383253151085228, -0.000599856488406658, -0.0076609174720943, -0.0113620357587934, -0.0080190896987915, -0.0264119245111942, 0.0189964212477207, 0.00233309762552381, -0.0382846891880035, -0.0212515834718943, 0.00109110039193183, 0.00248896912671626, -0.0444664843380451, -0.0359499342739582, 0.0386561267077923, -0.00836399756371975, 0.0323947370052338, -0.0283089131116867, -0.0127549301832914, -0.0217689443379641, -0.0120120532810688, 0.0324478000402451, 0.0213577095419168, -0.0217822100967169, -0.0224720239639282, 0.0228301975876093, -0.0084369583055377, 0.0215036310255527, 0.0221005864441395, -0.0129141174256802, 0.0151228494942188, 0.0208403486758471, 0.00373428268358111, 0.023068979382515, 0.0082777701318264, 0.0168075878173113, -0.0205352380871773, 0.0164626818150282, 0.0027194598224014, 0.0321824848651886, -0.0235332772135735, -0.000590736337471753, 0.0156004130840302, -0.0114084659144282, -0.00149736111052334, -0.056723952293396, 0.0219413973391056, 0.000852318538818508, -0.0085364505648613, -0.0104533387348056, 0.00192186213098466, 0.00523330178111792, -0.037674468010664, -0.0200709402561188, 0.0180678255856037, -0.0221138522028923, 0.0209730044007301, 0.0279109440743923, 0.0113487700000405, -0.0288926027715206, -0.0123105300590396, 0.0220475234091282, -0.014287113212049, 0.0286272894591093, 0.0209995359182358, 0.0114349974319339, -0.00107700563967228, 0.0209332071244717, 0.0116074504330754, -0.0101880254223943, -0.00748183112591505, -0.0219944603741169, 0.0202301274985075, 0.00141527981031686, -0.0153351007029414, -0.000863096851389855, -0.0152820376679301, 0.00871553737670183, 0.0153616312891245, 0.00179749657399952, -0.0152555061504245, -0.000811277888715267, 0.00928596034646034, 0.0239843092858791, 0.0402745380997658, -0.0370907783508301, -0.0462440811097622, -0.0227373372763395, -0.00933239050209522, -0.00916656944900751, -0.00645042629912496, 0.0130202434957027, -0.00264981505461037, 0.000471345410915092, 0.0113156056031585, -0.00261665089055896, 0.0257751736789942, -0.0347029604017735, -0.0106191588565707, 0.000388642307370901, -0.0261333454400301, 0.00550856441259384, 0.0468012392520905, -0.0103074163198471, -0.0235996060073376, 0.0346498973667622, -0.0130932042375207, 0.00348223512992263, -0.000297026359476149, 0.0248067807406187, -0.0210658647119999, -0.00387688842602074, 0.00558815849944949, 0.00478226970881224, -0.0212515834718943, 0.00809205137193203, -0.0117334742099047, -0.00293502677232027, 0.0253639370203018, -0.00381719297729433, 0.012317162938416, 0.0136370966210961, 0.00589990150183439, -0.0042450106702745, 0.0203495193272829, -0.00392000190913677, -0.0131131028756499, -0.0371969044208527, 0.039531659334898, -0.0081318486481905, -0.00304612657055259, 0.00713029084727168, 0.00523993466049433, -0.0196862369775772, -0.00050782598555088, -0.00702416570857167, -0.00704406434670091, -0.0141544565558434, 0.0119855217635632, 0.0105395652353764, -0.00404602568596601, -0.00104881601873785, 0.015825929120183, -0.00596291339024901, -0.0100089386105537, 0.0193147975951433, -0.0162371657788754, 0.00202301284298301, -0.00582362385466695, -0.0179351698607206, 0.00981658697128296, -0.0134845413267612, 0.00447052670642734, -0.0149901928380132, 0.00033516512485221, 0.0123635930940509, 0.030006917193532, 0.0274068489670753, 0.00957117229700089, -0.012031951919198, 0.0134513769298792, 0.00958443805575371, -0.00974362529814243, -0.0214505679905415, 0.0306967329233885, 0.0227638687938452, 0.00199813977815211, -0.00327164283953607, -0.00716345524415374, 0.0200178772211075, 0.0106655890122056, 0.0148442713543773, 0.0113421371206641, -0.017404543235898, 0.00999567285180092, -0.0118462322279811, -0.0102012911811471, -0.0259476266801357, -0.0234802141785622, 0.00703079858794808, -0.018837234005332, -0.0118263335898519, 0.018333138898015, 0.00721651781350374, 0.0343315228819847, 0.0236924644559622, 0.0161177739500999, 0.000434864836279303, 0.0107982456684113, 0.0105926273390651, -0.00633103493601084, 0.0176698565483093, 0.00419858051463962, -0.0111033553257585, 0.0246475916355848, 0.00414220150560141, 0.00669252453371882, -0.0158922579139471, -0.0149371307343245, 0.0177892465144396, -0.00178423093166202, 0.0202566590160131, -0.00845022406429052, 0.0140881286934018, 0.00401617772877216, 0.00329817412421107, 0.021410770714283, -0.00391668546944857, -0.0210393331944942, -0.000212457802263089, 0.00591648323461413, -0.0020959738176316, 0.00366795435547829, -0.0478890240192413, 0.0198586899787188, 0.00598281156271696, -0.0132059622555971, -0.007501729298383, 0.0283885076642036, 0.0134845413267612, 0.00565448682755232, 0.0174178089946508, 0.0198454242199659, -0.0195137821137905, -0.00547540001571178, 0.00475242175161839, -0.0182535443454981, -0.0733325555920601, 0.00516697391867638, 0.0116472477093339, -0.029794666916132, -0.023201635107398, -0.010028837248683],id:"e32497b37521fbaefcbbc7219a1e15c0",source:"state_of_union.txt",text:"Vice President Harris and I ran for office with a new economic vision for America.
Invest in America. Educate Americans. Grow the workforce. Build the economy from the bottom up
and the middle out, not from the top down.
Because we know that when the middle class grows, the poor have a ladder up and the wealthy do very well.
America used to have the best roads, bridges, and airports on Earth.
Now our infrastructure is ranked 13th in the world.
We won’t be able to compete for the jobs of the 21st Century if we don’t fix that.
That’s why it was so important to pass the Bipartisan Infrastructure Law—the most sweeping investment to rebuild America in history.
This was a bipartisan effort, and I want to thank the members of both parties who worked to make it happen.
We’re done talking about infrastructure weeks.
We’re going to have an infrastructure decade."})
(:Chunk{embedding:[0.00134629406966269, -0.0130651351064444, 0.00704215373843908, 0.0121051399037242, 0.00586517388001084, -0.0140054039657116, -0.0325083173811436, -0.009790631942451, 0.00588489975780249, -0.000960816745646298, 0.0190026368945837, 0.0230924785137177, -0.0204755049198866, 0.00308381882496178, 0.00556270964443684, -0.011684319935739, 0.0290102548897266, -0.0252491775900126, 0.00774571159854531, -0.0216327589005232, -0.0313773639500141, -0.000902460888028145, 0.0280634090304375, -0.011408157646656, -0.0186870228499174, -0.00178683968260884, 0.0326398238539696, -0.0218957718461752, 0.0301675088703632, -0.0167144294828176, -0.0149127962067723, -0.0172273032367229, -0.0152547117322683, -0.00366573361679912, 0.000394723901990801, -0.0168853886425495, -0.0149785494431853, -0.0048953159712255, 0.0105007654055953, -0.0287998449057341, 0.0431603156030178, 0.00162985420320183, 0.015281013213098, 0.0233949422836304, -0.0226848088204861, 0.0113029526546597, -0.0231056287884712, -0.0128218485042453, 0.0185423661023378, 0.0299307964742184, 0.0224480982869864, 0.0103824092075229, -0.0273532774299383, -0.0415033362805843, -0.0435548312962055, -0.0100470688194036, -0.0229609720408916, 0.00946844182908535, -0.0227242615073919, 0.019910030066967, 0.0148207414895296, 0.0255779437720776, -0.0414770357310772, 0.00653914269059896, -0.0284053254872561, -0.0144656747579575, -0.0147681394591928, 0.0315088704228401, 0.023736858740449, 0.0277477949857712, 0.0546013489365578, 0.0268930047750473, 0.0198968779295683, -0.00195944146253169, 0.0189237333834171, 0.0110136391595006, -0.0380315743386745, -0.0186738707125187, -0.0149522479623556, 0.0112503496930003, 0.0142552657052875, -0.0404512882232666, -0.0128613002598286, 0.00208108453080058, 0.0129993818700314, 0.00387943116948009, -0.0253543835133314, 0.00999446678906679, -0.0234869960695505, -0.0117369228973985, 0.00594407739117742, 0.0204886570572853, -0.000783283438067883, 0.0322453044354916, -0.00585531070828438, 0.00457970146089792, -0.0184503104537725, 0.0119276065379381, 0.0403723828494549, -0.0298255924135447, 0.013663487508893, 0.00367230898700655, -0.0153467664495111, -0.010757202282548, -0.0133478725329041, -0.00867282971739769, 0.00194957852363586, 0.00323505094274879, 0.0282212179154158, -0.0020383452065289, 0.00189368834253401, -0.0128415739163756, 0.00190190749708563, -0.0285105314105749, 0.0086662545800209, -0.0226979590952396, -0.011342404410243, 0.00488874083384871, 0.013794993981719, -0.00189861981198192, 0.0322190038859844, 0.0100799454376101, 0.000478353584185243, 0.00668379943817854, -0.0143736209720373, 0.00349477562122047, -0.02611711807549, -0.0130651351064444, 0.00779831409454346, 0.00502682197839022, -0.00732489209622145, -0.00829803757369518, 0.0344020053744316, -0.01823990046978, -0.0353751517832279, -0.000162122407346033, 0.000664105988107622, 0.0329291373491287, -0.0305883269757032, -0.0238157622516155, -0.00333368056453764, 0.00275505357421935, -0.0158990919589996, 0.000521914975252002, 0.00949474330991507, 0.0118684293702245, 0.0159516949206591, 0.00320053054019809, 0.0226453561335802, 0.00312327081337571, 0.0192130468785763, 0.00396819785237312, 0.0070027019828558, 0.0201993435621262, 0.00446792086586356, 0.00708818063139915, 0.0227900128811598, 0.0227637123316526, 0.00773256085813046, -0.00890296511352062, 0.00450408505275846, -0.0119210314005613, -0.00297697028145194, -0.0124141797423363, -0.00250683585181832, 0.0139528010040522, 0.0231845322996378, 0.0113687058910728, 0.00377751374617219, 0.00317258550785482, 0.0134925292804837, 0.0226059053093195, -0.0354014523327351, 0.0210146810859442, -0.00131999282166362, 0.0288524460047483, 0.00738406972959638, 0.00381367793306708, -0.0346387177705765, 0.0153862182050943, 0.0123813031241298, 0.00969857722520828, 0.0143736209720373, 0.0243286360055208, -0.01123062428087, -0.00187396246474236, 0.0225664526224136, 0.0132755441591144, 0.0164514183998108, -0.0062564043328166, 0.0122760981321335, 0.0327450297772884, -0.000711776956450194, -0.00899501983076334, -0.633754372596741, 0.000562188739422709, -0.00837694108486176, -0.00535229966044426, 0.00145478663034737, -0.00967885181307793, 0.00437257904559374, 0.0133610237389803, -0.00935008656233549, 0.00970515329390764, -0.0149259464815259, -0.00413258047774434, -0.0021238240879029, -0.0310091469436884, 0.00356710399501026, -0.0176086723804474, 0.00883063673973083, -0.01467608474195, -0.00117369228973985, -0.0150311514735222, -0.00636489689350128, 0.0226716585457325, -0.0237631592899561, -0.0165697727352381, 0.013860747218132, -0.00303286034613848, 0.00488874083384871, -0.0179111361503601, -0.0275110844522715, -0.0240261722356081, -0.0202519446611404, 0.026445884257555, -0.011000488884747, -0.00189533224329352, 0.0500512346625328, 0.0092777581885457, -0.020725367590785, 0.0218826215714216, 0.023736858740449, 0.018700173124671, -0.0128744505345821, -0.00934351142495871, -0.0113226780667901, -0.00253642466850579, 0.00611503561958671, -0.00583887239918113, 0.0225006993860006, -0.00746297324076295, 0.000137978699058294, -0.00230135745368898, -0.0118947299197316, 0.00365258287638426, -0.0217248145490885, -0.00444819498807192, -0.00362299405969679, -0.00121150026097894, -0.00494463089853525, -0.0100141922011971, 0.00419833324849606, -0.0102772042155266, 0.00602955650538206, 0.00339943356812, -0.0100733703002334, -0.0157281346619129, -0.0274847820401192, 0.0189500339329243, -0.024683702737093, 0.00507613690569997, 0.0218826215714216, -0.00593421468511224, -0.0382945872843266, 0.0252754800021648, 0.00125588360242546, -0.00362299405969679, 0.0140974577516317, -0.00114821293391287, 0.0180294923484325, -0.0091133750975132, -0.0114476094022393, 0.0237500090152025, -0.00220930320210755, -0.010822955518961, -0.00434627803042531, 0.0100207673385739, 0.00989583693444729, 0.00132163672242314, -0.0133018456399441, -0.0122497966513038, 0.0199757814407349, 0.0202387943863869, 0.0053720255382359, -0.0085347481071949, -0.00414244318380952, -0.0342441983520985, 0.0103429574519396, 0.014873344451189, 0.00348162488080561, 0.00400107447057962, 0.00510901352390647, -0.00622681574895978, -0.0183977093547583, -0.00913967657834291, 0.0153993684798479, 0.00620708987116814, 0.0237763095647097, 0.0245127435773611, -0.017556069418788, -0.00216491986066103, -0.00223231664858758, -0.0232239831238985, -0.0230661761015654, -0.00891611631959677, -0.0385839007794857, -0.00250190426595509, -0.00498408265411854, -0.0119341816753149, -0.00614133663475513, 0.00387285579927266, 0.00561531214043498, -0.0188448298722506, 0.0322716049849987, 0.0192919503897429, -0.0115396631881595, -0.032008595764637, -0.00684489449486136, 0.00201040017418563, 0.00873858295381069, -0.0102246021851897, 0.000190786638995633, 0.0011547883041203, -0.00158793665468693, -0.00265806773677468, 0.0354803577065468, 0.00194135936908424, 0.00946186669170856, 0.0266168415546417, 0.00718681048601866, -0.0108098043128848, -0.000144348538015038, -0.00262354733422399, -0.00513860210776329, 0.02827381901443, 0.0072394129820168, 0.00131506135221571, -0.014268415980041, -0.0106256958097219, -0.0119144562631845, -0.00983008369803429, -0.0351121388375759, -0.0129533549770713, -0.0114278830587864, -0.024289183318615, -0.0260776672512293, 0.0125917131081223, -0.0114870611578226, 0.00776543747633696, 0.0151232061907649, 0.00317587330937386, -0.0115856910124421, -0.0260119140148163, 0.00719996122643352, 0.0270376615226269, -0.0170694962143898, -0.0140711572021246, 0.014939097687602, 0.0124010285362601, -0.00658845761790872, 0.0237500090152025, -0.00397477298974991, -0.0163988154381514, 0.0194629076868296, 0.00325970840640366, 0.0121643180027604, 0.0226585082709789, 0.00565805146470666, -0.00237368582747877, -0.0139264995232224, -0.00605585752055049, -0.0105862440541387, 0.00901474617421627, -0.000301642197882757, 0.00201533152721822, -0.0347176194190979, -0.010757202282548, 0.0391099266707897, 0.0103429574519396, 0.0343231037259102, 0.00388600630685687, -0.00584215996786952, 0.0107637774199247, -0.0196996200829744, 0.0274321809411049, 0.00314464047551155, 0.00623339088633657, 0.00151149870362133, 0.00346189900301397, -0.0144919762387872, -0.0146234827116132, 0.0286157354712486, -0.000829721509944648, 0.0156755317002535, -0.0182793531566858, 0.0208963248878717, 0.0135188307613134, -0.00133314344566315, -0.0206201616674662, 0.00277477945201099, -0.00538188870996237, -0.00225533032789826, 0.0160174481570721, -0.00195944146253169, -0.0386628061532974, -0.0417137481272221, -0.0295625794678926, -0.00220108404755592, 0.0248152073472738, -0.017556069418788, 0.0303779169917107, -0.0154782719910145, -0.00171779887750745, -0.00224546738900244, 0.0166881289333105, -0.00596709083765745, -0.00580599578097463, -0.020593861117959, 0.0049610692076385, -0.00754187721759081, 0.00353751517832279, 0.00997474044561386, -0.00556599721312523, 0.00402408791705966, 0.0111911725252867, -0.00345203606411815, 0.0172799061983824, -0.00345532386563718, -0.00671996362507343, -0.0107243256643414, -0.00995501503348351, 0.0209094751626253, 0.0214355010539293, 0.0365850068628788, 0.0129204783588648, 0.0236842557787895, -0.000942734652198851, 0.0147023862227798, -0.000302053173072636, 0.0471580997109413, 0.00395833468064666, 0.006391198374331, 0.0375581532716751, -0.0113161029294133, 0.0259198602288961, -0.0140974577516317, -0.0133675988763571, -0.00787721760571003, -0.0288787484169006, -0.00605914508923888, 0.0119670582935214, 0.0414770357310772, 0.0431077107787132, 0.0156229287385941, 0.00783776585012674, 0.0119341816753149, 0.0204097516834736, -0.00151232059579343, 0.00356710399501026, -0.0117303477600217, 0.0109807625412941, -0.0082257091999054, -0.0126706166192889, 0.0120722632855177, 0.00502353440970182, 0.030404219403863, -0.0300096999853849, 0.0151232061907649, 0.0178453829139471, -0.00698955124244094, -0.00961967371404171, -0.00641421182081103, -0.0049972333945334, 0.00469476915895939, -0.0230398755520582, 0.0106914490461349, 0.0111385695636272, -0.0300623029470444, -0.0134793790057302, -0.0188185274600983, -0.00745639810338616, -0.0239867195487022, 0.011000488884747, -0.0168196354061365, 0.0047243582084775, -0.0168196354061365, 0.0300623029470444, -0.00101013155654073, -0.0190026368945837, 0.0285894349217415, -0.0122892484068871, -0.00664763525128365, -0.0361378863453865, -0.0070355786010623, 0.000100376171758398, -0.00485915178433061, -0.0115593895316124, 0.018568666651845, 0.00802844949066639, -0.00953419506549835, 0.00150903291068971, 0.0268272515386343, -0.0190420895814896, 0.0156492311507463, -0.0122169200330973, -0.00586846144869924, -0.027458481490612, -0.0221061818301678, -0.0119670582935214, -0.0273006744682789, -0.0405038893222809, 0.00999446678906679, 0.02569629997015, -0.0079561211168766, -0.0245127435773611, -0.044422771781683, 0.00922515522688627, 0.133505031466484, 0.0155308749526739, -0.00212053651921451, -0.0014621838927269, -0.0152415614575148, -0.000652599206659943, -0.0132952705025673, -0.0250256173312664, -0.00733804237097502, -0.0205544084310532, 0.0149522479623556, 0.0154388202354312, 0.0016594430198893, -0.0197916738688946, 0.00967227667570114, 0.0257094502449036, -0.00447449646890163, -0.0238157622516155, -0.0222508385777473, -0.0198705773800611, -0.012045961804688, -0.0242628827691078, 0.0142289642244577, 0.0198705773800611, 0.0145051274448633, 0.0115133626386523, 0.0233554895967245, -0.00581585895270109, 0.0190420895814896, -0.000849036499857903, -0.00579284550622106, -0.00187560624908656, 0.025170274078846, 0.00838351622223854, -0.0262354742735624, 0.0165697727352381, -0.000110958302684594, -0.0145971812307835, 0.024091923609376, 0.00899501983076334, 0.0121708931401372, 0.0226059053093195, 0.000411162152886391, -0.00913967657834291, -0.00215012533590198, -0.00695009948685765, 0.00210902979597449, 0.00152218353468925, 0.00317422929219902, -0.0285368319600821, 0.0191078409552574, -0.0198311246931553, -0.0414507351815701, -0.010757202282548, -0.00264820479787886, 0.0437652431428432, -0.00245916470885277, -0.0299833994358778, -0.0175823699682951, -0.0156097784638405, -0.0274847820401192, -0.0190157871693373, -0.00462901592254639, -0.0154914231970906, 0.0033123109024018, -0.0163330622017384, -0.0057139415293932, -0.0023440970107913, -0.00864652823656797, -0.000565065420232713, 0.020265094935894, -0.0408458076417446, -0.0289313495159149, 0.0119670582935214, 0.0202782470732927, -0.00919885467737913, 0.0171220991760492, -0.00818625744432211, 0.0192919503897429, 0.00363614480011165, 0.002312864176929, -0.0300360023975372, 0.00398134812712669, -0.0161621049046516, 0.0164908692240715, -0.00891611631959677, 0.00534901209175587, -0.0112240491434932, 0.0028898473829031, 0.0189763363450766, 0.0154125196859241, -0.0100010419264436, 0.0139133492484689, -0.0229741223156452, 0.0020071123726666, -0.0124470563605428, -0.00887666456401348, 0.00578626990318298, -0.00676599098369479, 0.00213204324245453, -0.00113259663339704, -0.00475065922364593, -0.0096920020878315, -0.0224743988364935, 0.02719546854496, -0.00498408265411854, 0.0167407318949699, 0.0080218743532896, -0.0333499573171139, -0.0155834769830108, 0.00782461557537317, -0.0405564941465855, 0.00554955890402198, 0.00688434625044465, -0.00842954311519861, 0.0243286360055208, -0.0028043685015291, 0.0138081442564726, -0.0382945872843266, 0.00954077020287514, -0.00133725302293897, -0.0145708797499537, 0.0202913973480463, 0.0194234568625689, 0.00738406972959638, 0.00739722047001123, 0.0167407318949699, -0.012111715041101, -0.0134070506319404, 0.00708818063139915, -0.014610331505537, 0.0225401520729065, -7.27393344277516e-05, -0.0164251159876585, 0.01230897475034, -0.032981738448143, -0.00329258502461016, -0.00523723196238279, -0.019910030066967, -0.0236185025423765, -0.0141895124688745, -0.0063583217561245, -0.00764708174392581, -0.0158727914094925, 0.0105204908177257, -0.0245258938521147, -0.011769799515605, 0.00674626464024186, 0.00369203486479819, 0.0144525244832039, 0.00922515522688627, -0.00764708174392581, -0.00673968950286508, 0.00437915418297052, -0.0144525244832039, -0.00818625744432211, 0.0159911457449198, -0.0183319561183453, 0.0159911457449198, 0.0131374634802341, 0.0447646901011467, -0.0213828980922699, 5.58901083422825e-05, 0.0139922527596354, 0.000481230264995247, -0.0165171716362238, 0.00271395780146122, 0.00829803757369518, -0.0262354742735624, 0.0136503372341394, 0.00313970912247896, 0.0119013050571084, -0.0253938343375921, -0.0113950064405799, -0.00464216666296124, 0.0101785752922297, -0.00410299142822623, -0.0276425909250975, -0.0294310729950666, -0.0102180270478129, -0.0227637123316526, 0.0101259723305702, -0.00413258047774434, 0.0298255924135447, -0.0214881021529436, -0.0248941127210855, 0.0471844039857388, 0.0085018714889884, 0.0323242098093033, -0.0130651351064444, 0.0486309714615345, 0.00823885947465897, -0.00733804237097502, -0.00285203941166401, 0.00403723865747452, -0.0043528531678021, -0.0104876141995192, -0.0306672304868698, 0.00180492177605629, 0.0281949155032635, 0.00970515329390764, 0.00135451322421432, -0.0431340113282204, -0.0180294923484325, 0.000659996410831809, 0.00791009422391653, -0.0161095019429922, -0.014741837978363, 0.0106454221531749, -0.0266694445163012, 0.0339285843074322, -0.0352962464094162, -0.0102443285286427, -0.0649114325642586, 0.024420689791441, -0.000665749830659479, -0.0155045734718442, 0.0153336152434349, -0.00871885661035776, -0.0321400985121727, 0.000691640074364841, 0.00365258287638426, -0.00777858821675181, -0.0141106089577079, 0.0200283844023943, 0.0262354742735624, 0.00953419506549835, -0.00340929650701582, 0.00595394056290388, -0.0133347222581506, 0.000926296343095601, 0.0248020570725203, -0.00166108692064881, -0.00948816817253828, 0.00563503801822662, -0.00918570347130299, 0.02677465043962, -0.00549038127064705, -0.0200809873640537, -0.00223231664858758, 0.00738406972959638, -0.0132755441591144, -0.0106256958097219, -0.0297466889023781, -0.00892269145697355, 0.0219746753573418, -0.00576983159407973, -0.0154256699606776, 0.00505969859659672, -0.02569629997015, -0.0213697478175163, 0.0347702242434025, -0.0100339185446501, 0.0136108854785562, -0.00669037457555532, -0.0276688914746046, 0.00376436323858798, -0.00988268665969372, -0.00461257761344314, -0.00456983828917146, 0.00568106537684798, 0.033113244920969, -0.0042509357444942, 0.00431011384353042, 0.006391198374331, 0.0102574788033962, -0.0421608686447144, -0.0113752810284495, 0.0171615518629551, 0.0239209663122892, -0.0380841791629791, 0.000167670325026847, -0.0163067616522312, 0.0212382413446903, 0.00976433046162128, -0.0153730679303408, -0.00681201787665486, -0.00682516861706972, -0.0421345680952072, 0.0013495817547664, 0.0054081897251308, 0.0122760981321335, -0.0349017307162285, -0.0244469903409481, 0.0118026761338115, -0.00566791463643312, -0.00550024444237351, 0.00238519255071878, 0.0386365018785, -0.00895556807518005, -0.000923008716199547, 0.00303450413048267, -0.000544517592061311, 0.0134925292804837, 0.0143604706972837, -0.000670270354021341, 0.0106059703975916, 0.00814022962003946, -0.0106848739087582, 0.0170168951153755, 0.0126969171687961, 0.00457970146089792, -0.0104218609631062, 0.00973802991211414, -0.00755502749234438, 0.000593421456869692, -0.00325806462205946, -0.0144130727276206, -0.0125719867646694, -0.0140185542404652, 0.0305094234645367, 0.000718763214536011, 0.0204097516834736, -0.000719174218829721, -0.00750900059938431, -0.00611174758523703, 0.00353751517832279, -0.00564161315560341, -0.0281949155032635, 0.0278266984969378, -0.00852817296981812, 0.0242365803569555, 0.0213302951306105, -0.00553312059491873, 0.00609530927613378, -0.00305751780979335, -0.0194103065878153, 0.0158596411347389, 0.0110925426706672, -0.0117829497903585, 0.000895885576028377, 0.0180952437222004, -0.0139791024848819, -0.0140054039657116, -0.00697640050202608, -0.00928433332592249, -0.0144130727276206, 0.0162147060036659, 0.0104087106883526, 0.00550024444237351, 0.0208700243383646, -0.00442846911028028, 0.0196864679455757, 0.00320217455737293, -0.0135714337229729, -0.0323242098093033, -0.0181872993707657, -0.00770625984296203, -0.038504995405674, -0.0147286877036095, 0.0149785494431853, 0.0227900128811598, 0.0194760598242283, 0.000657530676107854, -0.0239341165870428, -0.00428709993138909, -0.0349806323647499, -0.034033790230751, -0.00145725242327899, 0.0108492560684681, 0.0113292541354895, 0.0137818427756429, 0.0136108854785562, 0.0218563210219145, -0.00630243169143796, 0.0236316528171301, -0.00170136068481952, -0.00121396605391055, 0.00487887766212225, -0.0269324574619532, 0.0050662737339735, 0.031351063400507, -0.0285894349217415, -0.0107637774199247, 0.0082914624363184, 0.0171089489012957, -0.000266505405306816, 0.0233291890472174, 0.0163856651633978, -0.0129928067326546, 0.00506298616528511, 0.000333696836605668, 0.0153599167242646, -0.0108887078240514, 0.00899501983076334, -0.0350332334637642, -0.00620708987116814, 0.0210015308111906, -0.00715393386781216, 0.00326957134529948, 0.00507613690569997, -0.00445148255676031, -0.000261162960669026, -0.0140843074768782, 0.0119341816753149, -0.0109544610604644, -0.01230897475034, -0.015281013213098, -0.00620708987116814, 0.00471778260543942, -0.0236185025423765, 0.0223823450505733, -0.00449422234669328, -0.00743009662255645, -0.00507613690569997, 0.00969857722520828, -0.00588161218911409, 0.000122978788567707, 0.00306244916282594, -0.0163988154381514, 0.0206201616674662, 0.00220601540058851, 0.0040766904130578, -0.0208700243383646, 0.00184272974729538, 0.00984981004148722, -0.0107177505269647, 0.00851502269506454, 0.0191341433674097, 0.00688434625044465, -0.0126377400010824, -0.00117451418191195, 0.0052339443936944, -0.00941583979874849, -0.0145182777196169, -0.0196075644344091, 0.00691722286865115, -0.0210541319102049, 0.0134004754945636, 0.0156886819750071, -0.00488545279949903, -0.0428183972835541, -0.0112371994182467, 0.00796269625425339, -0.00621366500854492, 0.00919227860867977, 0.237342283129692, 0.00184930511750281, 0.0086333779618144, 0.0285894349217415, 0.00307888747192919, 0.00830461271107197, 0.0276951920241117, 0.020462354645133, -0.00821913406252861, 0.00164958008099347, -0.0228557661175728, 0.00115067872684449, -0.0377422608435154, 0.00144574558362365, 0.000786160118877888, -0.0157938878983259, -0.0453170165419579, 0.00259724631905556, 0.00259560230188072, 0.0292732659727335, 0.0129007520154119, -0.00879118498414755, 0.00977748166769743, -0.0242102798074484, -0.0243812371045351, 0.0139264995232224, -0.00360984355211258, 0.0138475960120559, 0.017490316182375, 0.0239867195487022, -0.0371110327541828, 0.0248415097594261, 0.0181083958595991, 0.0096262488514185, 0.00558901065960526, -0.0163462124764919, 0.0264064315706491, 0.00411942973732948, 0.00722626224160194, 0.00867282971739769, 0.0268930047750473, 0.0182004496455193, -0.00282573816366494, -0.0126114385202527, 0.000694927759468555, 0.0250519197434187, -0.0207779705524445, -0.0124339051544666, 0.02147495187819, 0.0271428674459457, -0.0307198334485292, -0.00885036308318377, 0.0156755317002535, 0.034875426441431, 3.41094055329449e-05, -0.00296710734255612, 0.0272217709571123, 0.00915282685309649, 0.0297992900013924, -0.00919227860867977, 0.0156097784638405, 0.0458167381584644, -0.000947666121646762, 0.0282212179154158, -0.00533914938569069, 0.0204360540956259, 0.0131045868620276, 0.0242628827691078, 0.0369532257318497, -0.0129796555265784, -0.0254201367497444, -0.00399121129885316, -0.0203045476227999, -0.0215538553893566, -0.0235922019928694, -0.0180426426231861, 0.031614076346159, 0.0171483997255564, 0.0310354493558407, 0.0034684743732214, -0.0134793790057302, -0.0143473194912076, 0.00963940005749464, -0.0189237333834171, 0.031088050454855, -0.0115396631881595, 0.0103889852762222, 0.00596051570028067, -0.003465186804533, -0.0222113858908415, 0.0153862182050943, -0.0359011739492416, -0.00600325502455235, -0.0154914231970906, 8.61981607158668e-05, 0.0174114126712084, 0.0145051274448633, -0.0152284111827612, -0.00236875424161553, 0.0314562693238258, -0.0185949672013521, 0.0301412064582109, -0.00235067214816809, 0.00193314021453261, 0.00353093980811536, -0.0166092254221439, 0.0115922661498189, 0.0217774156481028, -0.0192919503897429, -0.00842954311519861, 0.00748927472159266, -0.00412929290905595, 0.00871885661035776, 0.000306984642520547, -0.00301642203703523, 0.00613476149737835, -0.00836379081010818, -0.026708897203207, 0.0291417594999075, 0.0111319944262505, -0.00691722286865115, -0.0355066582560539, -0.0148338926956058, 0.00646352674812078, 0.00810077786445618, -0.0145971812307835, -0.0360589846968651, 0.00402737548574805, -0.0108952838927507, -0.0226585082709789, 0.00678571686148643, -0.0113292541354895, 0.00931720994412899, -0.0223165918141603, -0.0239472668617964, 0.00311669544316828, 0.015149506740272, 0.00470791989937425, -0.0128678753972054, 0.0193051006644964, -0.024486443027854, -0.0148207414895296, -0.000833009195048362, 0.00280929985456169, 0.024157676845789, -0.0155966281890869, 0.00712105724960566, -0.00893584173172712, 0.00268436898477376, -0.020330848172307, -0.0223034415394068, 0.019647017121315, 0.0210146810859442, -0.000393080059438944, 0.0128744505345821, -0.00730516575276852, -0.0239341165870428, -0.0256699975579977, 0.00553640862926841, 0.0147286877036095, -0.0245916470885277, -0.000688763393554837, 0.0161358024924994, -0.00394847197458148, -0.0188579801470041, 0.00537860114127398, -0.165382117033005, 0.0153336152434349, 0.0256042443215847, -0.00531942304223776, -0.00067068130010739, -0.00130437652114779, 0.0037709386087954, -0.0131703400984406, 0.00108656950760633, -0.012045961804688, 0.0146497841924429, 0.000843283080030233, -0.0319296903908253, -0.00933036021888256, 0.0165040194988251, 0.00986953545361757, -0.0311406534165144, 0.009922138415277, -0.00865967944264412, -0.00467504328116775, -0.0187527760863304, -0.0237763095647097, 0.00560544896870852, -0.0258672572672367, 0.00815338082611561, 0.00640106108039618, 0.00225861789658666, 0.0194103065878153, -0.0100667951628566, -0.0309828463941813, -0.0158070381730795, -0.0162410084158182, 0.0346650183200836, 0.00388271873816848, 0.0278266984969378, 0.00458627659827471, 0.00314628425985575, -0.0046586049720645, -0.0271165650337934, 0.0323242098093033, 0.02827381901443, 0.0159911457449198, -0.000454107124824077, -0.00563503801822662, -0.0280897114425898, 0.017621822655201, 0.0092777581885457, -0.0166223756968975, 0.00340272136963904, -0.014268415980041, -0.00546736782416701, -0.0264853369444609, -0.0218431688845158, 0.000121745913929772, 0.00685146963223815, 0.0291154589504004, -0.0183582566678524, 0.014873344451189, 0.0192919503897429, -0.018634419888258, -0.0123944533988833, 0.00149752618744969, 0.00943556521087885, -0.00781803950667381, -0.0137160904705524, -0.0130717102438211, 0.0184766128659248, 0.00759447924792767, -0.021277692168951, 0.0162541586905718, -0.00650955364108086, -0.0229346696287394, 0.00459285173565149, -0.0172799061983824, 0.000992871355265379, -0.00870570633560419, -0.012177468277514, 0.0163067616522312, 0.003162722568959, -0.00417203223332763, -0.0245390459895134, 0.0361378863453865, 0.000903282780200243, 0.00163478567264974, -0.000206608470762148, 0.0147681394591928, -0.000468079670099542, 0.0180031899362803, 0.0146892359480262, -0.00289313495159149, 0.0117632243782282, -0.0145708797499537, -0.0127495201304555, -0.00222245370969176, -0.0172273032367229, 0.00824543461203575, 0.0435285307466984, 0.00915940292179585, 0.00730516575276852, -0.0274847820401192, 0.00566462706774473, 0.00145314284600317, -0.00967885181307793, 0.011362130753696, -0.0122958235442638, 0.027721494436264, 0.0286420360207558, 0.0416348427534103, 0.0273532774299383, 0.0114278830587864, -0.0285105314105749, 0.00274354685097933, 0.0202913973480463, 0.0290891584008932, 0.0124404802918434, 0.0155571764335036, -0.011835552752018, 0.0165434721857309, 0.000271436874754727, 0.0266036912798882, 0.0247889067977667, 0.01467608474195, -0.0038235408719629, 0.00551997032016516, 0.00270738266408443, -0.0350858382880688, -0.129086419939995, -0.0198179744184017, 0.00952104479074478, 0.0278266984969378, 0.00551997032016516, 0.0273532774299383, -0.00406353967264295, 0.0052010677754879, -0.0362430922687054, 0.0297466889023781, 0.000199827685719356, -0.0289313495159149, 0.00998131558299065, 0.00277971103787422, 0.024354936555028, -0.0238026101142168, -0.0386365018785, -0.00661475863307714, -0.0377685613930225, 0.0305094234645367, -0.00339943356812, -0.0208042711019516, -0.00609859731048346, -0.0091791283339262, 0.0135319819673896, -0.00595722813159227, -0.0142158139497042, 0.0140054039657116, 0.0063583217561245, -0.0120722632855177, 0.0060164057649672, 0.000489038473460823, 0.0151626579463482, -0.0131308874115348, 0.0134793790057302, 0.0190815404057503, -0.0267483480274677, -0.0029736824799329, 0.0091133750975132, -0.0289839524775743, 0.00694352388381958, -0.0163330622017384, 0.00391888292506337, -0.0367691144347191, 0.00310683250427246, -0.0226848088204861, -0.0139791024848819, 0.00737091898918152, -0.00448435917496681, -0.0114147327840328, -0.0226848088204861, 0.0071736597456038, -0.00723283737897873, 0.000307806563796476, -0.00558572309091687, 0.00971830356866121, -0.00591448834165931, 0.00133314344566315, -0.0221719350665808, 0.0111780213192105, -0.00479011097922921, -0.0108821326866746, -0.00366573361679912, 0.0235264487564564, 0.00419175811111927, 0.000239382265135646, -0.00933036021888256, 0.00800872407853603, 0.017884835600853, -0.056915856897831, -0.0297729894518852, 0.0225401520729065, -0.00285861478187144, 0.0196733176708221, -0.0326661244034767, 0.0124404802918434, -0.00565805146470666, 0.00105780246667564, 0.0333236567676067, 0.0098892617970705, -0.0303516164422035, -0.0206070113927126, 0.0111977476626635, -0.0155966281890869, 0.0365324057638645, 0.011296377517283, -0.0110399406403303, -0.00880433619022369, -0.0106125455349684, -0.00521750608459115, 0.0156229287385941, 0.0191998966038227, 0.00563832558691502, 0.00239012413658202, 0.0138870477676392, 0.0316666774451733, 6.73968970659189e-05, -0.00518134189769626, -0.013190065510571, 0.0366639122366905, -0.0245258938521147, -0.0172536056488752, -0.0541279278695583, 0.0098892617970705, 0.00612489832565188, -0.000742598727811128, -0.00936981197446585, -3.82703401555773e-05, 0.0011983496369794, -0.030535725876689, -0.0130454087629914, 0.0126114385202527, 0.00163889524992555, 0.0213302951306105, 0.0122103448957205, 0.00255450676195323, -0.0164119657129049, 0.00187396246474236, 0.0371636338531971, -0.0192788001149893, 0.025762053206563, 0.00253642466850579, 0.0113489795476198, 0.00175560696516186, 0.0261434204876423, 0.00524051953107119, -0.00478682341054082, -0.00542134046554565, -0.0153599167242646, 0.0401619747281075, 0.00959337316453457, -0.0203571505844593, 0.0069698253646493, -0.0186738707125187, 0.000341915962053463, 0.0109939128160477, -0.00477696023881435, -0.0305094234645367, -0.0056777773424983, -0.00842296797782183, 0.00017445111006964, 0.0383471883833408, -0.00288655981421471, -0.0292732659727335, 0.00391559535637498, -0.0134136257693172, -0.0124667817726731, 0.0070027019828558, 0.0174771659076214, -0.024420689791441, 0.00447120890021324, 0.00574024301022291, -0.00284053268842399, 0.00350792612880468, -0.0198968779295683, -0.00455997511744499, 0.00915940292179585, -0.0506298616528511, 0.0191078409552574, 0.0237105563282967, 5.18062261107843e-05, -0.0165829248726368, 0.0433707237243652, 0.0234869960695505, 0.0156360790133476, -0.0115067875012755, 0.0224743988364935, -0.0171483997255564, 0.00600325502455235, -0.0127100683748722, -0.00236875424161553, -0.0247889067977667, 0.0142421144992113, -0.00900817010551691, 0.0199363306164742, 0.0220272783190012, 0.00490846671164036, 0.000433148350566626, 0.00123451382387429, -0.0283264219760895, -0.0111188441514969, 0.0264590345323086, -0.000188629113836214, 0.000160170369781554, -0.0221193321049213, 0.0233160387724638, -0.0190026368945837, 0.0208831746131182, 0.00628270581364632, 0.0179637391120195, -0.0250650700181723, -0.00382025330327451, -0.00719996122643352, 0.00387943116948009, -0.0114673348143697, 0.00183286680839956, -0.00092136487364769, 0.0159385446459055, 0.0170300453901291, 0.00865310430526733, 0.00655558099970222, 0.00316601037047803, 0.0118684293702245, -0.014334169216454, -0.00264984858222306, -0.0134333521127701, -0.0180163402110338, -0.0123023996129632, -0.0226190555840731, -0.00865310430526733, -0.0120328115299344, 0.0337444767355919, 0.00687777111306787, 0.0372425392270088, 0.0254201367497444, 0.0193314030766487, -0.0120393866673112, 0.0241839792579412, -0.00598024157807231, -0.00178190821316093, -0.0135714337229729, 0.0375055521726608, 0.0220009777694941, -0.00203176983632147, -0.00318573624826968, -0.00614133663475513, 0.0202519446611404, 0.0222245380282402, 0.00968542695045471, -0.00306902453303337, 0.00318902381695807, 0.0179768893867731, -0.0108624072745442, 0.00625311676412821, -0.032981738448143, -0.0107111744582653, -0.00535887526348233, -0.0370321273803711, -0.0184634625911713, 9.31073736865073e-06, 0.0041128545999527, 0.0336918719112873, 0.0321400985121727, -0.0213302951306105, 0.0192788001149893, 0.0112503496930003, 0.0296414829790592, 0.00351778930053115, 0.00670352531597018, -0.0109676122665405, -0.00141533475834876, 0.0291943624615669, -0.0151232061907649, -0.00193149643018842, -0.00854789931327105, -0.018568666651845, 0.0264984872192144, -0.00453367410227656, 0.0317718833684921, -0.034033790230751, 0.0147155364975333, 0.0143473194912076, 0.0212908443063498, 0.034875426441431, 0.0158070381730795, -0.0285631325095892, -0.0249204132705927, 0.0248152073472738, -0.00510572595521808, -0.0126180136576295, -0.0209489278495312, -0.00555613450706005, 0.0172404553741217, -0.0240261722356081, -0.000672736088745296, 0.0168327856808901, 0.00403066305443645, -0.013124312274158, 0.00176546990405768, 0.0149522479623556, 0.0159385446459055, 0.00143917032983154, -0.00592763908207417, -0.00940268859267235, -0.0434759296476841, -0.0086005013436079, 0.0209752283990383, -0.0162804592400789, -0.0131966406479478, -0.0223165918141603],id:"c9da73cf4e0e6508264ab4a9bdce2451",source:"state_of_union.txt",text:"It is going to transform America and put us on a path to win the economic competition of the 21st Century that we face with the rest of the world—particularly with China.
As I’ve told Xi Jinping, it is never a good bet to bet against the American people.
We’ll create good jobs for millions of Americans, modernizing roads, airports, ports, and waterways all across America.
And we’ll do it all to withstand the devastating effects of the climate crisis and promote environmental justice.
We’ll build a national network of 500,000 electric vehicle charging stations, begin to replace poisonous lead pipes—so every child—and every American—has clean water to drink at home and at school, provide affordable high-speed internet for every American—urban, suburban, rural, and tribal communities.
4,000 projects have already been announced.
And tonight, I’m announcing that this year we will start fixing over 65,000 miles of highway and 1,500 bridges in disrepair."})
(:Chunk{embedding:[-0.0107558313757181, 0.00691588642075658, -0.012788743712008, -0.0131342057138681, 0.00425848551094532, -0.000501999689731747, -0.0236907321959734, -0.0168346371501684, 0.00770646333694458, 0.0134132327511907, 0.0325797386467457, 0.0152401961386204, 0.0116859218105674, 0.00371039635501802, -0.00322874239645898, 0.00155873189214617, 0.0245145261287689, 0.00758023699745536, -0.0133933024480939, -0.00596918724477291, -0.0469562783837318, 0.0022405213676393, 0.00642426731064916, 0.00358749157749116, -0.0200235173106194, -0.00997189804911613, 0.0444583222270012, -0.023252259939909, 0.0256704948842525, 0.00116344343405217, -0.00221893005073071, -0.0150940390303731, -0.0240893419831991, 0.0106960395351052, -0.00504906242713332, -0.00959986168891191, -0.0157185271382332, -0.000898533791769296, 0.0267467424273491, -0.0192927327007055, 0.0470625758171082, 0.00994532369077206, 0.014522697776556, 0.0145758455619216, 0.0114932600408792, -0.0114334682002664, -0.0112009458243847, -0.0199969448149204, -0.0183759294450283, 0.0136058945208788, 0.0229067988693714, 0.0216578189283609, -0.0560180172324181, -0.0335629768669605, -0.0300286337733269, -0.0110215712338686, -0.00754037592560053, 0.00934740900993347, -0.0106827523559332, -0.00778618548065424, 0.000309753319015726, 0.0290719699114561, -0.0285936370491982, 0.0199836567044258, -0.0079589169472456, -0.016901072114706, -0.0262152627110481, 0.00682952115312219, 0.0121509665623307, 0.00710190460085869, 0.0483647026121616, 0.0425449945032597, 0.0046172346919775, -0.0018369285389781, 0.0242354981601238, 0.0133933024480939, -0.0122639061883092, -0.0243417955935001, -0.0288593769073486, -0.0180038940161467, 0.0291516911238432, -0.0214319415390491, -0.000740335381124169, 0.00661028549075127, 0.0171668119728565, -0.013346797786653, -0.0469031296670437, 0.0192794464528561, -0.00418872851878405, -0.0074407234787941, 0.0145891327410936, 0.00849704071879387, 0.0147087154909968, 0.0221893005073071, 0.0211130529642105, 0.0128950392827392, -0.0223487447947264, 0.0120313838124275, 0.0236375834792852, -0.0435016565024853, 0.030134929344058, 0.00817815214395523, -0.0308790020644665, -0.009234469383955, 0.000964138365816325, -0.00881592836230993, 0.00353102176450193, -0.00414886744692922, 0.0231193900108337, 0.00799877755343914, -0.00370043120346963, -0.015864685177803, 0.00683616474270821, -0.0175122730433941, 0.0159842688590288, 0.0267998911440372, -0.0026490967720747, 0.0060289790853858, 0.0174458380788565, 0.00137354421894997, 0.0483647026121616, 0.0168080627918243, 0.0190668534487486, 0.0135394586250186, 0.0225081872195005, 0.00631797127425671, -0.0429967530071735, -0.00762674165889621, 0.0109418490901589, -0.00793234258890152, 0.0122041152790189, 0.00520186265930533, 0.0203291196376085, -0.00866977125406265, -0.037044171243906, -0.0132737187668681, -0.00267400988377631, 0.0143898278474808, -0.0242089256644249, -0.0209801830351353, 0.0119450185447931, -0.0133733712136745, -0.00228536501526833, -0.00243152212351561, -0.000877772807143629, 0.0161835737526417, 0.00920789502561092, 0.0121974712237716, 0.000930920883547515, 0.0187081042677164, -0.00149561860598624, -0.00256771384738386, 0.0231326781213284, 0.0217774026095867, -0.0106362486258149, 0.0091414600610733, -0.0166884791105986, 0.00942048709839582, 0.00728127919137478, 0.00501252291724086, 0.00201630312949419, -0.0124100632965565, 0.0151073262095451, -0.0131342057138681, 0.00351441302336752, 0.0206347201019526, -0.00679630367085338, 0.00180205015931278, 0.00493944436311722, 0.0112873120233417, 0.0120247406885028, -0.0112474504858255, -0.0197046305984259, 0.0308524277061224, -0.00680959038436413, 0.00628807535395026, -0.0140975136309862, 0.00350112607702613, -0.0308258533477783, 0.00895544234663248, 0.0251788757741451, 0.00491287047043443, 0.0263082720339298, 0.0288062281906605, -0.00308922887779772, 0.00473017431795597, 0.012788743712008, 0.00855018850415945, 0.00344133446924388, -0.0228005014359951, -0.00350112607702613, 0.0355560295283794, 0.00669332919642329, 0.00748058455064893, -0.638626635074615, -0.0240893419831991, 0.00391634507104754, -0.000137645081849769, -0.0118719395250082, -0.00823129992932081, 0.000479162641568109, 0.0195451863110065, -0.0177913010120392, 0.00289988913573325, -0.00704211322590709, -0.011513190343976, -0.00861662346869707, -0.0288328025490046, 0.00334998639300466, -0.0095666442066431, 0.0220564305782318, -0.0355826020240784, -0.0102509250864387, -0.00547092454507947, -0.0234914273023605, 0.00208605988882482, -0.0127555252984166, 0.00696903467178345, -0.00150641426444054, 0.0146157061681151, 0.0129614742472768, -0.00322043802589178, 0.0149744553491473, -0.00335496896877885, 0.0012008132180199, 0.025152301415801, -0.00641430215910077, 0.0263481326401234, 0.0483647026121616, 0.0159178338944912, 0.00424519833177328, 0.00876278057694435, 0.0233186949044466, 0.0168612115085125, 0.0032652816735208, -0.00950685236603022, 0.0151338996365666, 0.00684280786663294, -0.00625153630971909, 0.00767988944426179, 0.0159709807485342, 0.00284341932274401, 0.00755366310477257, -0.0047368174418807, -0.0154395010322332, 0.00467038247734308, -0.0230662431567907, -0.00261421850882471, 0.00921453908085823, 0.00569680379703641, -0.00284175830893219, -0.0427841581404209, 0.0135527458041906, 0.00566690787672997, 0.00971280131489038, 0.000732031010556966, -0.0100848376750946, -0.0154129266738892, -0.0334566794335842, 0.00396617129445076, -0.0133733712136745, 0.00286002806387842, 0.00611866638064384, -0.0224816147238016, -0.0366189889609814, 0.0223487447947264, -0.00703546963632107, -0.0303209479898214, 0.0162234343588352, -0.0130478395149112, 0.0223088823258877, -0.00583963934332132, -0.0280355829745531, 0.0203158315271139, -0.0117988614365458, -0.0112740248441696, -0.00938726961612701, -0.00155790150165558, 0.0307461321353912, 0.00348451733589172, -0.0077728983014822, -0.0145492712035775, 0.0165688972920179, 0.00997854117304087, 0.00483314832672477, -0.00332175148651004, -0.00397281488403678, -0.0383462980389595, -0.0078659076243639, 0.00977259315550327, 0.00248633092269301, -0.0177115797996521, 0.0108488406985998, 0.00659367674961686, -0.0245145261287689, 0.00829773489385843, 0.0119450185447931, 0.0258166529238224, 0.00692917359992862, 0.0229333732277155, 0.00525833247229457, 0.006072161719203, 0.0117922173812985, -0.0481786839663982, -0.00831766612827778, -0.0109883537515998, -0.0115264775231481, 0.00682287756353617, 0.00182696327101439, -0.0194654632359743, 0.00183360686060041, 0.00848375353962183, -0.000394665607018396, -0.00527161965146661, 0.0232655480504036, 0.0223753172904253, 0.00851697102189064, -0.0204354152083397, 0.000219443201785907, 0.00834423955529928, 0.0129149695858359, -0.0110747190192342, 0.000147714134072885, 0.00948027893900871, -0.0114068947732449, -0.0036605701316148, 0.040153332054615, 0.00569348223507404, 0.012788743712008, 0.0323671475052834, 0.00101977773010731, -0.02854048833251, 0.00547424657270312, -0.033217515796423, -0.0210997648537159, -0.00586621323600411, 0.00472353072836995, -0.00927432999014854, -0.0228669364005327, -0.0182031989097595, -0.0161304250359535, -0.000220688860281371, -0.00154129264410585, -0.00175554561428726, 0.00356423924677074, -0.00998518522828817, -0.00858340598642826, -0.00422526802867651, -0.0177514404058456, -0.00389641453512013, 0.0148415854200721, 0.00915474724024534, -0.0181234758347273, 0.0103306472301483, -0.00448436429724097, 0.0235977228730917, 0.00718162674456835, 0.00644419807940722, 0.00201630312949419, 0.0149213075637817, 0.00927432999014854, 0.00765995914116502, -0.00897537264972925, -0.0292048398405313, 0.0152667695656419, -0.0139912171289325, 0.00286334985867143, 0.0120978187769651, 0.0244348030537367, 0.0146157061681151, -0.00164011481683701, 0.00543438550084829, 0.00351441302336752, 0.00347455195151269, 0.00626814505085349, -0.00314569869078696, -0.00129631347954273, 0.00694246077910066, 0.00437142513692379, 0.013725477270782, 0.0289656724780798, -0.00318223796784878, -0.00396617129445076, 0.011207589879632, -0.00646744994446635, 0.0186283830553293, 0.00807185657322407, 0.00773303769528866, 0.00152385351248085, -0.0125562204048038, -0.0202493965625763, -0.0250460058450699, 0.00436145951971412, -0.00635451078414917, 0.0090218773111701, -0.00656378082931042, 0.0272383615374565, -0.00424852035939693, 0.00803199503570795, -0.0118852267041802, 0.000683865568134934, -0.0189605578780174, 0.00708861788734794, 0.0117855742573738, -0.00651727663353086, -0.0369113013148308, -0.0243152212351561, -0.0246739704161882, 0.0150276040658355, 0.023026380687952, -0.0227473545819521, 0.02588308788836, -0.0110215712338686, 0.00665679015219212, -0.00426180707290769, 0.00392631022259593, 0.00945370458066463, -0.00167084101121873, -0.0143765406683087, 0.00110448233317584, -0.0140975136309862, 0.00881592836230993, -0.00386651884764433, -0.0170738026499748, -0.0176717173308134, 0.00328355142846704, -0.00187678961083293, 0.00828444864600897, 0.0142968185245991, 0.00507895788177848, -0.00478000054135919, -0.0143101057037711, 0.0256970692425966, 0.0159444063901901, 0.0191731490194798, 0.00627478864043951, 0.000605389184784144, 0.0077728983014822, 0.020900459960103, 7.40646792110056e-05, 0.0481786839663982, 0.0220830030739307, -0.00537459412589669, 0.0294174309819937, 0.0134796677157283, 0.0219235606491566, -0.00772639410570264, -0.0151604739949107, 0.00375357922166586, -0.0218836981803179, 0.0106893964111805, 0.0247271172702312, 0.0192927327007055, 0.0156520921736956, 0.0157052408903837, 0.0229067988693714, 0.0167549140751362, 0.00228038243949413, 0.00688266893848777, -0.00264411419630051, 0.00118669576477259, -0.00157534063328058, -0.0113670332357287, 0.0064541632309556, 0.00718162674456835, 0.00503245368599892, 0.0223221704363823, -0.0212326347827911, 0.0470359995961189, 0.0334035344421864, -0.0189074091613293, 0.0114866169169545, -0.00654385052621365, 0.00803863815963268, -0.0126160122454166, -0.038080558180809, -0.00447107758373022, 0.0108355535194278, -0.0338552929461002, -0.000654800271149725, -0.00171900645364076, -0.00212592096067965, -0.02112633921206, 0.0160374157130718, -0.0273712314665318, 0.00314237689599395, -0.022946659475565, 0.0147884376347065, 0.0209668949246407, -0.0229200851172209, 0.0283544715493917, -0.0020412162411958, 0.00332341226749122, -0.031649649143219, -0.00241823517717421, -0.00379676185548306, -0.0193458814173937, -0.0131342057138681, 0.0244879517704248, -0.00728127919137478, -0.00718827033415437, -0.019026992842555, 0.0308790020644665, -0.0397015735507011, 0.0133733712136745, -0.0114068947732449, -0.00482650473713875, -0.000851198798045516, 0.00824458710849285, -0.0362469516694546, -0.0162367206066847, -0.0112540936097503, 0.0214319415390491, 0.00667339889332652, -0.0144429756328464, -0.0214850883930922, -0.015784963965416, 0.0255509130656719, 0.121602676808834, 0.00586953479796648, -0.0174059774726629, 0.0119516616687179, -0.00609873561188579, -0.0172199588268995, -0.0197976380586624, -0.0224949009716511, 0.0201032403856516, -0.0200235173106194, 0.00110365194268525, -0.000417502655182034, -0.00446775555610657, -0.00890229362994432, 0.0052550109103322, 0.00563369039446115, -0.00488297455012798, -0.0249397102743387, -0.0201165266335011, -0.0151338996365666, -0.0434485077857971, 0.0100981248542666, 0.0283278971910477, 0.0155325103551149, 0.00819143932312727, 0.00807185657322407, 0.0317027978599072, 0.0285670626908541, 0.0183360688388348, 7.94625229900703e-05, 0.00954671390354633, -0.0175388474017382, -0.0012373523786664, 0.007653315551579, -0.0185885205864906, -0.00676308618858457, 0.00038885252433829, 0.00461391266435385, -0.00453751254826784, 0.00755366310477257, 0.0344930663704872, 0.026108967140317, 0.00882921554148197, -0.0144429756328464, -0.00559050776064396, -0.0161569993942976, -0.0024580960161984, 0.00473017431795597, -0.00381669239141047, -0.0167549140751362, 0.00973937567323446, -0.0198375005275011, -0.0166087578982115, -0.000259096617810428, -0.000820057408418506, 0.0219235606491566, -0.0187081042677164, -0.0113338157534599, -0.0268663261085749, -0.0360343605279922, -0.0147884376347065, -0.028487341478467, 0.0185087993741035, -0.00192163325846195, -0.0148681597784162, -0.0188941229134798, -0.00107126485090703, -0.00733442744240165, -0.0139912171289325, -0.00888900738209486, 0.0145891327410936, -0.0372036173939705, -0.0281950272619724, -0.0109086316078901, 0.0369644500315189, -0.0172731075435877, 0.0170738026499748, 0.0133069362491369, -0.00952678360044956, -0.0120380278676748, 0.00859004911035299, -0.0524836741387844, 0.00222225184552372, -0.0412694402039051, -0.00269560143351555, 0.0207011550664902, 0.00966629665344954, -0.00573998643085361, -0.00273712328635156, 0.0162765830755234, 0.00509556662291288, 0.00386319705285132, 0.0355028808116913, -0.00896208547055721, 0.0233054086565971, 0.00274874945171177, 0.0201298147439957, 0.0120646012946963, 0.00627146661281586, -0.00531148072332144, -0.00164758879691362, 0.000395496026612818, -0.0175388474017382, -0.0238501764833927, 0.0138982078060508, 0.0200500916689634, 0.0119184441864491, 0.00651063304394484, -0.0123901329934597, -0.015067464672029, 0.0149345947429538, -0.0292579866945744, -0.00495937513187528, -0.00210931221954525, 0.00139596604276448, 0.000961647077929229, -0.00498927058652043, -0.00441128620877862, -0.0217641163617373, -0.0162898693233728, -0.00978588033467531, -0.0391966663300991, 0.0268397517502308, 0.0229067988693714, -0.00471356557682157, -0.0047368174418807, 0.0020196249242872, 0.00181699811946601, -0.00177381525281817, 0.0051952195353806, -0.021073192358017, 0.0362735278904438, -0.0156388059258461, -0.0242089256644249, -0.0116394171491265, -0.0238634627312422, -0.00364063959568739, 0.00775961158797145, -0.0195186119526625, -0.0210067555308342, -0.00621831882745028, 0.00769317662343383, 0.00637444108724594, -0.0315965004265308, 0.012549577280879, -0.0322342775762081, 0.01531991828233, 0.0201962497085333, -0.0128153171390295, 0.0295237265527248, 0.0036904658190906, -0.0053148022852838, -0.0271187797188759, -0.000868637987878174, -0.016396164894104, -0.025072580203414, 0.0172066725790501, -0.0244879517704248, 0.0296034496277571, 0.0157583896070719, 0.0500388629734516, -0.0202759709209204, -0.0245809610933065, 0.0133933024480939, 0.0131873534992337, -0.0176451448351145, 0.00934740900993347, 0.0171668119728565, -0.00526829808950424, 0.000481653958559036, 0.0254180431365967, 0.0230928156524897, -0.0271586403250694, -0.00849704071879387, -0.00859004911035299, -0.00126890907995403, -0.0176717173308134, -0.00964636635035276, -0.0282747484743595, 0.0298426151275635, -0.0110946502536535, -0.00267234910279512, -0.0212990697473288, 0.0281418785452843, -0.0390637964010239, -0.0198507867753506, 0.0347588062286377, -0.00361738726496696, 0.0465576685965061, -0.00373364868573844, 0.0404190719127655, 0.000543106347322464, 0.0211396273225546, 0.00633458001539111, 0.0143366791307926, -0.0278229899704456, -0.030108354985714, -0.0299489106982946, -0.00147817935794592, 0.0188542623072863, 0.0365658402442932, 0.00283843674696982, -0.0178178753703833, -0.0247536916285753, -0.00556393386796117, 0.024594247341156, -0.0102575682103634, -0.0119184441864491, -0.00771975051611662, -0.0130877010524273, -0.00237173051573336, -0.0424121245741844, -0.0140709392726421, -0.0274243801832199, 0.00896872859448195, -0.0149345947429538, -0.0112208761274815, 0.0203955546021461, -0.00533805461600423, -0.0249529965221882, 0.00125728291459382, -0.000201796399778686, -0.00037598074413836, -0.0229067988693714, 0.0264278557151556, 0.0165556091815233, -0.0180836152285337, -0.023983046412468, -0.0116261299699545, -0.0161835737526417, -0.00827780459076166, 0.0290719699114561, 0.0161569993942976, -0.035901490598917, -0.0134065886959434, 0.0254844781011343, 0.0186948180198669, 0.0098656015470624, -0.0234914273023605, 0.0186416693031788, -0.00634786719456315, 0.00866977125406265, -0.0164227392524481, -0.0355560295283794, -0.00918132066726685, 0.014509410597384, 0.0318888127803802, 0.0148017248138785, 0.0032652816735208, -0.0264677163213491, -0.00360742211341858, -0.00210765143856406, 0.0098656015470624, -0.000394457980291918, -0.00973937567323446, -0.0319153890013695, 0.00959986168891191, -0.0268530398607254, -0.00694246077910066, 0.00426845066249371, -0.0148814469575882, 0.0197444912046194, -0.012297123670578, 0.0408974029123783, 0.00781275983899832, 0.0105299521237612, -0.032686036080122, -0.00674647744745016, 0.0180836152285337, 0.017126951366663, -0.0252320244908333, -0.00470692198723555, -0.0110415015369654, 0.0196381956338882, 0.0264942906796932, -0.014283531345427, -0.0191864371299744, -0.0172332469373941, -0.0145758455619216, 0.0196913424879313, -0.00252951378934085, -0.0025893053971231, -0.0328454785048962, 0.00730120996013284, 0.010815623216331, -0.0271852146834135, 0.000996525399386883, 0.00253449636511505, 0.029098542407155, 0.0210333298891783, -0.0049826274625957, 0.0172199588268995, 0.000634039344731718, 0.0139912171289325, 0.000785179028753191, -0.00683616474270821, 0.00148316205013543, 0.00920789502561092, -0.0159178338944912, 0.0178178753703833, 0.00615188386291265, 0.00794562976807356, -0.023026380687952, 0.00822465680539608, 0.00442789494991302, 0.00542774191126227, 0.0149744553491473, -0.0191200021654367, -0.0173794031143188, -0.0428904555737972, 0.0171136632561684, -0.00601237034425139, 0.00655049411579967, -0.00776625517755747, -0.0250327195972204, -0.007653315551579, 0.0107026835903525, -0.00292314123362303, -0.0124167073518038, 0.00578981265425682, 0.0105565264821053, 0.0165688972920179, 0.00242986110970378, -0.00491287047043443, -0.0121509665623307, -0.0129481870681047, -0.00365060498006642, 0.000626565364655107, 0.00283843674696982, 0.00910824257880449, -0.00130461785010993, 0.0161437131464481, -0.0240760557353497, -0.00890229362994432, -0.014509410597384, 0.00881592836230993, 0.00151222734712064, -0.00181201542727649, 0.00210100784897804, -0.00265906215645373, 0.013320223428309, -0.0152269089594483, 0.034360196441412, -0.00580642139539123, -0.0138184865936637, 0.00145990983583033, -0.0115663390606642, -0.0103638647124171, -0.0208340249955654, -0.0194787513464689, 0.00388312758877873, 0.0445380434393883, -0.00632793642580509, -0.00916139036417007, -0.0219501331448555, -0.00426180707290769, -0.0505703464150429, -0.0310650207102299, 0.0110547887161374, 0.00644751964136958, 0.0209668949246407, 0.0191731490194798, -0.000563452078495175, 0.0352637134492397, 0.000760681112296879, 0.0209270343184471, 0.00223719957284629, -0.0118320789188147, 0.0294705796986818, -0.021684393286705, -0.0104900915175676, 0.0246075354516506, -0.0319685377180576, -0.0156388059258461, 0.00576656078919768, 0.0034180823713541, 0.0126425866037607, 0.0175919961184263, 0.00825123116374016, -0.00932747777551413, -0.00129714398644865, 0.0137653378769755, -1.23754705327883e-06, 0.0111477980390191, 0.0227606408298016, -0.032792329788208, 0.00414554588496685, 0.0132537884637713, -0.00165921484585851, -0.00549749890342355, -0.00952678360044956, -0.0211927741765976, -0.013346797786653, -0.00212426017969847, 0.0073477141559124, 0.0044046426191926, -0.00430831173434854, -0.00961979199200869, 0.00512214098125696, 0.00581306498497725, -0.00128551782108843, 0.0242354981601238, 0.0079589169472456, -0.0381602793931961, -0.00863655377179384, 0.0169940814375877, 0.00250958325341344, 0.0034313693176955, -0.000751131039578468, -0.0207011550664902, 0.00625817989930511, -0.00934076495468616, -0.00952013954520226, 0.00563369039446115, -0.00441460777074099, -0.000469197402708232, 0.00445446884259582, 0.000476671353681013, 0.0210599042475224, -0.0154129266738892, -0.0136856157332659, -0.0115530518814921, -0.0175388474017382, -0.00118005217518657, -0.0054509942419827, -0.0200102310627699, -0.0102442819625139, -0.0181899107992649, -0.0148150119930506, 0.0189871322363615, -0.00821136962622404, -0.0393826849758625, -0.00775961158797145, 0.0199039354920387, -0.00441460777074099, 0.014748577028513, 0.221308365464211, 0.00889565050601959, 0.000483730051200837, 0.0273978058248758, 0.00916803441941738, 0.0154793616384268, 0.0151471868157387, 0.0141905220225453, -0.0215648114681244, -0.00987888872623444, -0.0131076313555241, 0.00633458001539111, -0.025325033813715, -0.0014349966077134, -0.000852859695442021, -0.0207410156726837, -0.0388246327638626, -0.00678301649168134, -0.0138716343790293, 0.0584628246724606, 0.0276103988289833, -0.0158248245716095, -0.0101446295157075, -0.025378180667758, 0.00146904459688812, 0.00503577524796128, -0.00741414912045002, 0.0293642841279507, 0.00808514282107353, 0.0121243931353092, -0.0358217693865299, -0.00184689380694181, -0.00166668882593513, 0.0171535238623619, -0.00593929179012775, -0.0145758455619216, -0.00291981967166066, -0.0143101057037711, 0.00624489272013307, 0.0146024199202657, 0.00526165449991822, 0.0137919122353196, -0.0178843103349209, -0.0209403205662966, 0.00834423955529928, 0.0246473960578442, -0.0276901200413704, 0.00646744994446635, 0.0131009882315993, 0.0146157061681151, -0.0396750010550022, -0.0149345947429538, 0.0179241709411144, 0.0309321507811546, -7.41684852982871e-05, 0.0110481455922127, 0.0206347201019526, 0.0130544835701585, 0.0112607376649976, -0.00029750436078757, 0.0129083264619112, 0.0346790850162506, -0.00440132059156895, 0.0220431424677372, -0.010031689889729, 0.0141506614163518, 0.0117257824167609, 0.0272649358958006, 0.0210067555308342, -0.0217641163617373, -0.00129299180116504, 0.00931419152766466, -0.0234648529440165, -0.0144296884536743, -0.0103572215884924, -0.0136324679479003, 0.0209403205662966, 0.0284076184034348, 0.0236774440854788, 0.00401267595589161, -0.0110614327713847, -0.00105714739765972, 0.0100582633167505, -0.0220962911844254, 0.0427310094237328, 0.00611202279105783, -0.000436810310930014, -0.00357088283635676, -0.00594593537971377, -0.0170339420437813, 0.027450954541564, -0.0134796677157283, -0.0133069362491369, -0.012928256765008, 0.000967460102401674, 0.0159975551068783, 0.0147220026701689, 0.0140709392726421, -0.0112806679680943, 0.0175255611538887, -0.025152301415801, 0.0389840751886368, 0.0250460058450699, 0.0259893834590912, 0.0274243801832199, -0.0372567661106586, -0.0243816561996937, 0.0268663261085749, 0.017964031547308, -0.0162765830755234, 0.0192927327007055, -0.0132870059460402, 0.0134995980188251, -0.0132803628221154, -0.0030310982838273, 0.00597583083435893, -0.00669665122404695, -0.0231326781213284, 0.0319685377180576, -0.00495273154228926, -0.00274376664310694, -0.0246075354516506, -0.00217906897887588, 0.000824624788947403, 0.0114467553794384, -0.0279558598995209, -0.010337290354073, -0.00767324585467577, 0.000714591762516648, -0.0312776118516922, -0.0225480496883392, 0.014256956987083, 0.00746065378189087, -0.0397812947630882, -0.0263215582817793, -0.00537459412589669, 0.013725477270782, -0.000397364521631971, -0.0288062281906605, 0.0205549988895655, -0.0234648529440165, -0.0132471453398466, -0.0139779299497604, 0.00158530590124428, 0.0197710655629635, -0.00670661637559533, 0.0212193485349417, -0.0104701602831483, -0.00952678360044956, -0.0220165681093931, -0.0208871737122536, 0.00108123011887074, -0.00447439914569259, -0.0210067555308342, 0.00762009806931019, 0.00629139738157392, -0.0315167792141438, -0.0119184441864491, -0.00308424630202353, 0.00356423924677074, -0.0331643670797348, -0.0140177914872766, 0.0276635456830263, -0.0132006406784058, -0.0278495643287897, -0.013180710375309, -0.167841464281082, 0.0232123993337154, 0.00932083465158939, -0.0285670626908541, 0.0241159163415432, -0.00274376664310694, 0.010157915763557, -0.00185187649913132, -0.00101562554482371, -0.00839074421674013, 0.025099154561758, -0.0020063379779458, -0.0267068818211555, -0.00904180761426687, 0.00715505285188556, -0.0130212660878897, -0.0278761386871338, 0.0230928156524897, -0.00108372140675783, 0.00444118166342378, -0.00256273127160966, -0.0153863532468677, 0.0104967346414924, -0.0271054916083813, 0.0138583471998572, -0.000225879106437787, -0.0201696753501892, 0.0203556939959526, -0.0136058945208788, -0.0190535672008991, -0.00350444787181914, 0.00362070905975997, 0.0187213905155659, 0.0258432272821665, 0.0296831708401442, -0.0172598212957382, -0.00803863815963268, 0.00342472572810948, -0.0164227392524481, 0.0222823098301888, 0.0302146524190903, 0.00394291896373034, 0.00855683162808418, -0.0190137047320604, -0.0184157900512218, 0.0381868556141853, -0.0087162759155035, -0.0114002507179976, 0.0150276040658355, -0.0214319415390491, 0.0157982502132654, -0.0152003346011043, -0.0155192231759429, 0.00828444864600897, 0.014748577028513, 0.0188808348029852, -0.00188841577619314, 0.00855018850415945, 0.00262418366037309, 0.00284175830893219, 0.00878935400396585, -0.00941384397447109, 0.0153464917093515, -0.00920125190168619, -0.0185353737324476, -0.0145758455619216, 0.00751380203291774, 0.0204354152083397, -0.0409505516290665, 0.00221394747495651, -0.00026636294205673, 0.00441460777074099, 0.0120513141155243, -0.0341476052999496, -0.0163695905357599, -0.00141423568129539, 0.0115331215783954, 0.00270390580408275, 0.00490622688084841, 0.00249629630707204, -0.015293343923986, 0.0298160407692194, -0.00462055625393987, -0.00331510789692402, -0.0273978058248758, 0.0177248660475016, 0.00534801976755261, 0.0227872151881456, -0.00199969438835979, -0.0229865200817585, 0.00939391367137432, -0.0215382371097803, -0.0260159578174353, 0.000270307529717684, 0.00096579926321283, 0.0276901200413704, 0.0134265199303627, -0.00379344029352069, -0.0123236980289221, -0.00792569946497679, -0.0143765406683087, -0.0010114733595401, -0.029098542407155, 0.0136856157332659, -0.00896208547055721, 0.026972621679306, 0.0351308435201645, 0.0156388059258461, 0.00660032033920288, -0.00350776966661215, -0.0247005447745323, 0.0223753172904253, 0.00977923627942801, 0.034865103662014, -0.00659367674961686, 0.0428373068571091, -0.0134530933573842, 0.00337656028568745, -0.0323671475052834, 0.01308105699718, 0.0405253693461418, 0.0116460602730513, -0.0211661998182535, -0.0140045043081045, 0.000656876363791525, -0.0336692743003368, -0.114799730479717, -0.0101778469979763, 0.00371039635501802, 0.0122506199404597, -0.00229034759104252, 0.0183360688388348, -0.00107458664570004, 0.0193458814173937, 0.00522511499002576, 0.0300286337733269, -0.0120513141155243, -0.0330049246549606, -0.021910272538662, -0.0125562204048038, 0.0149478819221258, -0.00365724833682179, -0.0270390566438437, -0.00939391367137432, -0.00908831227570772, 0.00906838197261095, 0.00228702579624951, -0.0191731490194798, -0.00382997957058251, -0.027198500931263, 0.0138583471998572, -0.0273180846124887, -0.0306929834187031, 0.0256704948842525, 0.00322542060166597, -0.00105216482188553, 0.00228370423428714, -0.0173926912248135, 8.7922606326174e-05, -0.00662025064229965, 0.00293310661800206, 0.00362403085455298, -0.0244480911642313, -0.00231193914078176, 0.0121376803144813, -0.0121177490800619, 0.00740086240693927, -0.021684393286705, 0.0275041032582521, -0.0305866878479719, 0.0171402376145124, -0.0210466179996729, -0.000839157495647669, 0.00201298133470118, 0.00801870785653591, -0.0214983765035868, -0.0232788342982531, 0.00287995859980583, -0.0198640730232, -0.0214452277868986, -0.00600904831662774, 0.00980581063777208, -0.00930090434849262, -0.000396118877688423, -0.0124632120132446, 0.00161935389041901, -0.00345462164841592, 0.00254944432526827, 0.00653720693662763, 0.00685609504580498, 0.00584960449486971, -0.000567604263778776, -0.0239963326603174, -0.00408575451001525, 0.0105897439643741, -0.048657014966011, -0.0219899956136942, 0.0372833386063576, -0.0126691600307822, 0.00652391975745559, -0.0397015735507011, -0.00421198084950447, -0.0121376803144813, -0.0110348584130406, 0.0309587232768536, 0.0127156646922231, -0.0349714010953903, -0.0204885639250278, 0.00454083411023021, -0.0059193610213697, 0.0160108413547277, 0.0130279092118144, -0.0272383615374565, 0.00305102881975472, -0.0117457136511803, -0.0162898693233728, 0.019000418484211, 0.0201962497085333, -0.00228868681006134, 0.00899530295282602, -0.00366389192640781, 0.0206745807081461, 0.0170472282916307, -0.010410369373858, 0.00755366310477257, 0.0120446709915996, -0.0201032403856516, -0.00483979191631079, -0.0469562783837318, 0.0115729821845889, 0.00761345447972417, 0.00910159945487976, -0.0113072423264384, 0.0174059774726629, 0.0212857834994793, -0.0244082305580378, -0.00354763050563633, 0.0106296045705676, -0.0160374157130718, 0.0296300239861012, 0.016901072114706, 0.00397613644599915, -0.0390903726220131, -0.0158779714256525, 0.0205284245312214, -0.0137786250561476, 0.0154527882114053, -0.00196813768707216, 0.024062767624855, 0.0026574011426419, 0.0114268250763416, 0.00596586568281054, -0.000505321426317096, 0.0169143583625555, -0.0159842688590288, 0.0315167792141438, -0.000232314996537752, -0.0401001833379269, 0.00164675829000771, -2.64831833192147e-05, -0.00166253664065152, 0.00512546254321933, -0.0111411549150944, -0.0291782654821873, -0.00581970857456326, -0.00744736706838012, 0.0349182523787022, 0.00406582374125719, 0.00414886744692922, -0.0313839092850685, -0.000949190463870764, -0.0339084379374981, -0.00857011880725622, -0.0178843103349209, 0.00869634561240673, -0.00663353782147169, 0.0064541632309556, 0.0107359010726213, 0.0205815713852644, 0.0230662431567907, -0.0116659915074706, -0.0172199588268995, 0.00730120996013284, -0.0266537331044674, 0.0142436707392335, 0.0258299391716719, -0.0177514404058456, -0.0189871322363615, 0.0408708304166794, 0.00884250272065401, 0.0248334147036076, -0.00662025064229965, 0.0180969014763832, 0.001636793022044, -0.0221095774322748, -0.00127472216263413, 0.0185087993741035, -0.0221760123968124, 0.00748058455064893, -0.00843060575425625, 0.0100449761375785, -0.000114600428787526, 0.000405046070227399, -0.00435813795775175, -0.00951349642127752, 0.00157035805750638, -0.0194920375943184, 0.0317293703556061, 0.0159444063901901, -0.00256937486119568, -0.0286999326199293, 0.00722148781642318, 0.00677969492971897, -0.00805856939405203, 0.00539784599095583, 0.00579313468188047, -0.00740086240693927, -0.00340811698697507, -0.0299754850566387, 0.00925439968705177, -0.00910824257880449, 0.00323040341027081, 0.0151737611740828, 0.0155457966029644, -0.00197644205763936, 0.0136058945208788, -0.0338021442294121, -3.57347780663986e-05, 0.0424121245741844, -0.0196116212755442, 0.0100449761375785, 0.00317393359728158, -0.0178577359765768, 0.0122439758852124, -0.019784351810813, 0.000150309249875136, -0.0123369852080941, 0.00877606775611639, -0.00801206473261118, 0.0315965004265308, 0.0360343605279922, 0.00590939586982131, -0.0287265069782734, 0.0265474375337362, -0.0127555252984166, -0.00709526101127267, -0.0181633364409208, 0.0490024797618389, 0.0262418370693922, 0.000799711677245796, -0.0275572501122952, -0.0236774440854788, 0.0509955286979675, 0.0201165266335011, 0.0047202087007463, 0.00274874945171177, 0.00981909781694412, 0.0323937200009823, -0.00255442690104246, 0.00524504575878382, -0.0394092611968517, -0.00674315541982651, -0.0153332045301795, -0.00467038247734308, -0.00292812404222786, 0.0246208216995001, 0.0315433517098427, 0.0412694402039051, 0.016648618504405, 0.00928097404539585, -0.00121077836956829, 0.0197710655629635, -0.00169575412292033, -0.00908831227570772, 0.0155059359967709, -0.00488297455012798, 0.0131408488377929, 0.0276635456830263, -0.00324701215140522, 0.00813829153776169, 0.00247802655212581, -0.0105365961790085, 0.0124831423163414, -0.0117722870782018, 0.0193193070590496, -0.0254844781011343, 0.0289125256240368, -0.00153464917093515, 0.0227074939757586, 0.0317825190722942, 0.00421530287712812, -0.0254711899906397, -0.0122174015268683, 0.0289125256240368, -0.0159178338944912, 0.00220896466635168, -0.0246075354516506, 0.00304770702496171, -0.000332590367179364, -0.0079854903742671, 0.0065903551876545, 0.0285139139741659, 0.0072281314060092, -0.0121177490800619, 0.00767324585467577, 0.0194521769881248, 0.0152269089594483, 0.0112474504858255, 0.0119715919718146, -0.00382997957058251, -0.047514334321022, -0.00699560856446624, 0.029045395553112, -0.00542774191126227, -0.0118453660979867, -0.0239166114479303],id:"6db11182e36e12bd992d19919b0d4ffc",source:"state_of_union.txt",text:"When we use taxpayer dollars to rebuild America – we are going to Buy American: buy American products to support American jobs.
The federal government spends about $600 Billion a year to keep the country safe and secure.
There’s been a law on the books for almost a century
to make sure taxpayers’ dollars support American jobs and businesses.
Every Administration says they’ll do it, but we are actually doing it.
We will buy American to make sure everything from the deck of an aircraft carrier to the steel on highway guardrails are made in America.
But to compete for the best jobs of the future, we also need to level the playing field with China and other competitors.
That’s why it is so important to pass the Bipartisan Innovation Act sitting in Congress that will make record investments in emerging technologies and American manufacturing.
Let me give you one example of why it’s so important to pass it."})
(:Chunk{embedding:[0.00581016065552831, -0.0219960901886225, -0.000155463218106888, -0.0145558388903737, -0.00260747014544904, 0.0298151187598705, -0.0438569039106369, -0.0228483378887177, -0.014637004584074, -0.0214414540678263, 0.017518412321806, 0.0306267831474543, -0.00862392876297235, -0.00498158717527986, 0.0353614874184132, 0.0106733795255423, 0.0128716360777617, -0.018018938601017, 0.00343097071163356, -0.00995641015470028, -0.0374447591602802, 0.0129325110465288, 0.0226589497178793, 0.0021492182277143, -0.0215767305344343, -0.00457575498148799, 0.0223072282969952, -0.00828573573380709, -0.0127972336485982, 0.00688899680972099, 0.00942206475883722, -0.0162468049675226, -0.0240793619304895, 0.0188982393592596, -0.0155974738299847, 0.0104095889255404, 0.00139589270111173, -0.0193717107176781, 0.0294092874974012, -0.0306267831474543, 0.0373635925352573, 0.0111333224922419, -0.0039534792304039, -0.00390951428562403, -0.00878626108169556, -0.00901623256504536, -0.0282188467681408, 0.00408199289813638, -0.00458928290754557, 0.0277859587222338, 0.00190571916755289, 0.0320066101849079, -0.0362543202936649, -0.0174101907759905, -0.039906807243824, 0.00495791342109442, -0.00319761736318469, -0.00961145292967558, 0.0113362390547991, 0.015286335721612, 0.0150022534653544, 0.000774039886891842, -0.0264331866055727, 0.0155298355966806, -0.0343063250184059, -0.0108898235484958, -0.0373635925352573, 0.00778520945459604, -0.0100578684359789, -0.00691943429410458, 0.0457507856190205, 0.0376882590353489, 0.00129612570162863, 0.014826393686235, 0.0109506985172629, -0.00319085363298655, 0.00709529500454664, -0.00505937123671174, 0.0118502927944064, 0.0250804126262665, 0.0244175549596548, -0.015854500234127, -0.00980084110051394, 0.0331699959933758, 0.00649669300764799, 0.0120396809652448, -0.0334134958684444, 0.0239305570721626, -0.0248910244554281, -0.00085055606905371, 0.032655943185091, 0.0210220944136381, 0.000815045787021518, 0.0191958509385586, -0.0050526075065136, 0.0232676975429058, -0.0151916416361928, 0.00920562073588371, 0.0168420244008303, -0.0157733336091042, -0.00125385157298297, 0.0117150153964758, -0.0147046437487006, -0.0154757238924503, -0.0232947524636984, 0.000744870689231902, 0.0134127456694841, -0.0115797379985452, 0.039176307618618, -0.0106666162610054, -0.0100578684359789, -0.0251345243304968, 0.0126213729381561, -0.0013544640969485, -0.00551931420341134, -0.00117860361933708, 0.0184247698634863, 0.0235517788678408, 0.00823838822543621, -0.0298692304641008, 0.0504313819110394, 0.0116879595443606, 0.00319761736318469, 0.00982789695262909, 0.014826393686235, 0.0026818725746125, -0.0266496296972036, -0.00355102936737239, -0.0011236472055316, -0.0162468049675226, 0.0216984804719687, -0.0146099496632814, 0.00788666680455208, 0.00681797647848725, -0.0313843376934528, -0.0213467590510845, -0.00942882895469666, 0.0279753468930721, -0.0200480967760086, -0.0189523510634899, 0.0111536141484976, 0.00917856581509113, -0.016436193138361, 0.00729144690558314, -0.0133383432403207, 0.0250533577054739, 0.004217270296067, 0.0348744913935661, -0.00231155101209879, -0.00244175549596548, 0.0160844717174768, -0.00856305379420519, 0.0234976690262556, 0.0263249650597572, 0.00964527204632759, 0.0197234321385622, -0.00599616672843695, 0.0239170286804438, 0.021170899271965, 0.00847512390464544, 0.00133501796517521, -7.61463306844234e-05, -0.0150293093174696, 0.00336840492673218, 0.00959792546927929, 0.00874567776918411, 0.0121952490881085, -0.0111536141484976, -0.000544491165783256, -0.00758905708789825, -0.0107342544943094, 0.00686870561912656, -0.0454261191189289, 0.0239576119929552, -0.00191924686077982, 0.0148399211466312, -0.00884713605046272, 0.0154351415112615, -0.0198587086051702, -0.00700060091912746, 0.0096317445859313, 0.00485307350754738, 0.0267037414014339, 0.0223342832177877, -0.0120532084256411, 5.93423501413781e-05, 0.0234976690262556, -0.00548887671902776, -0.0109168794006109, -0.0140823684632778, 0.012560497969389, -0.00515744742006063, 0.00552269630134106, -0.00899594090878963, -0.641539096832275, 0.00485983723774552, -0.00880655273795128, -0.00443033175542951, -0.00887419190257788, 0.0202915966510773, 0.0265143532305956, 0.00625995732843876, -0.018803546205163, -0.00528934272006154, -0.0077108065597713, -0.0120396809652448, -0.00753494631499052, -0.00572899403050542, -0.0250127743929625, -0.00133670889772475, 0.00815045833587646, -0.0308161713182926, 3.82581129088067e-05, -0.0012394783552736, -0.0189523510634899, 0.00823162402957678, -0.00423079775646329, -0.00654742168262601, 0.0038486395496875, 0.00194122944958508, -0.00534683559089899, -0.00131557183340192, -0.039176307618618, -0.00300822919234633, 0.00990229938179255, 0.0215226206928492, -0.011160378344357, 0.0166391097009182, 0.0508642680943012, 0.0011042010737583, -0.0178701318800449, 0.00819780491292477, 0.0175725221633911, 0.0300586186349392, -0.00462986575439572, -0.0115797379985452, 0.00837366562336683, -0.0123237632215023, -0.00534007186070085, 0.00319423549808562, 0.00861040037125349, -0.0122831799089909, -0.00710205873474479, -0.0235111974179745, 0.00429505482316017, 0.0147722819820046, -0.0232406426221132, -0.000581269676331431, 0.00399068044498563, 0.00838042981922626, 0.0181812699884176, -0.00477190734818578, 0.00953028630465269, -0.00226927688345313, -0.0060536595992744, 0.0104298805817962, -0.0293551757931709, -0.0253644958138466, -0.0308161713182926, 0.0176942721009254, -0.0220366735011339, -0.0158139169216156, 0.0225236713886261, -0.005742521956563, -0.0205621514469385, 0.0389869213104248, -0.0191146843135357, 0.0210085660219193, 0.00698707299306989, -0.0025263037532568, 0.0394198074936867, -0.00938824564218521, -0.0268254913389683, 0.0127904694527388, -0.00852923467755318, -0.0303291734308004, -0.010010520927608, -0.0143799781799316, 0.0150293093174696, -0.0104298805817962, -0.00948970299214125, -0.016003305092454, 0.00202239584177732, 0.000373492192011327, 0.0091244550421834, 0.0154757238924503, 0.0087794978171587, -0.0310867261141539, 0.0117150153964758, 0.0130745517089963, 0.0113430023193359, 0.0016360100125894, 0.0146234771236777, 0.00909739919006824, -0.0220637284219265, 0.00192262872587889, 0.00768375117331743, 0.00988200772553682, 0.0313572809100151, 0.0177078004926443, 0.0044776787981391, 0.00307417684234679, 0.0100781600922346, -0.0311678927391768, -0.00260747014544904, -0.0107004353776574, -0.0337652154266834, 0.00200548605062068, -0.0150428367778659, -0.0270148795098066, -0.00921914912760258, -0.00770404282957315, -0.026554936543107, 0.00521494029089808, 0.0223342832177877, 0.00576957734301686, 0.00282898684963584, -0.012560497969389, -0.00394333340227604, -0.0104907555505633, 0.00376409105956554, -0.0299774520099163, -0.00973996613174677, -0.0096790911629796, -0.0303021166473627, -0.00707500334829092, 0.0370930396020412, -0.00882008019834757, -0.00336502306163311, 0.0224425066262484, 0.00309954141266644, -0.0467247813940048, -0.00134516379330307, -0.0278941821306944, -0.0281647369265556, 0.00913798250257969, 0.0280835703015327, 0.00216781883500516, -0.00191755592823029, -0.0278130155056715, -0.0205080397427082, 0.00332613079808652, -0.0182624366134405, -0.00444047758355737, 0.0113091832026839, -0.0051033366471529, -0.0112956557422876, -0.00291522615589201, -0.011911166831851, -0.00494438549503684, 0.00934089813381433, -0.0266631580889225, -0.0217796470969915, -0.0110656842589378, 0.0104434080421925, 0.0167879145592451, 0.00329062063246965, -0.00281884102150798, 0.0026818725746125, -0.0214279256761074, -0.00860363710671663, 0.0127972336485982, -0.0013620734680444, -0.000188014324521646, 0.028705844655633, -0.00664887996390462, -0.000900439627002925, 0.011843528598547, -0.0184653531759977, -0.0140553126111627, 0.0111333224922419, 0.0120464442297816, -0.00806929171085358, -0.00474823359400034, -0.00466030323877931, -0.00904328841716051, -0.00666578952223063, -0.00094440474640578, 0.0318713337182999, -0.00546182133257389, 0.0324395000934601, 0.0139606185257435, 0.00578310480341315, 0.00173831346910447, 0.0166526362299919, 0.0159762501716614, 0.000331852148519829, 0.0142311733216047, 0.0069397259503603, 0.0173560790717602, 0.00205283309333026, -0.0120329167693853, -0.00788666680455208, -0.00127837061882019, 0.0191417392343283, 0.0152998641133308, 0.018086576834321, -0.0021170899271965, 0.00622952030971646, -0.0325477197766304, -0.000282180000795051, -0.0355238206684589, 0.00595896551385522, 0.0127566503360868, 0.00713587831705809, -0.00542800221592188, -0.0154351415112615, -0.000613398035056889, 0.0059555834159255, 0.0401232503354549, 0.00529610691592097, 0.0141094233840704, -0.012560497969389, -0.00439651263877749, 0.00750789092853665, -0.000753748288843781, 0.00869156699627638, -0.0163009166717529, -0.000883529952261597, 0.00859010964632034, 0.00978054944425821, 0.0103757698088884, 0.0160438884049654, -0.024119945243001, -0.00844130385667086, 0.0116067929193377, -0.0085968729108572, 0.0178430769592524, 0.00593191012740135, -0.01456936635077, -0.00283575057983398, -0.0186006296426058, 0.036173153668642, 0.0139335626736283, 0.0229159761220217, 0.0234300307929516, 0.0193311274051666, -0.0276912655681372, -0.00892153847962618, -0.00543138384819031, 0.0446956232190132, 0.00108982785604894, 0.00265312613919377, 0.0364707633852959, -0.0223072282969952, 0.0255403555929661, -0.0137306470423937, 0.00239440845325589, 0.00265650823712349, -0.0199804585427046, 0.00254321354441345, 0.00749436300247908, 0.0147587545216084, 0.0262437984347343, 0.00115915748756379, 0.0138253411278129, 0.0072035170160234, 0.0105786854401231, -0.0274748224765062, 0.00996993761509657, -0.0144746722653508, 0.00629715900868177, -0.00788666680455208, 0.00203085062094033, 0.0159897785633802, 0.00600293045863509, 0.0115594463422894, 0.00450473465025425, 0.0177348554134369, 0.0145287830382586, -0.000247726566158235, -0.0171125791966915, 0.00479219853878021, 0.000398856704123318, -0.00397715298458934, -0.0227806996554136, -0.0055937166325748, -0.0112821273505688, -0.0212791208177805, 0.017153162509203, 0.00108560046646744, -0.0119179310277104, 0.00572561239823699, 0.0129392743110657, -0.0188170745968819, 0.0103554781526327, -0.0200345702469349, 0.00870509538799524, 0.0022642039693892, 0.00641890848055482, 0.0318442806601524, -0.00701412837952375, -0.00195983005687594, 0.0102540198713541, -0.00439313054084778, -0.00739290518686175, 0.00763640413060784, -0.00724409986287355, 0.0358484871685505, -0.000122806435683742, 0.00675033777952194, 0.00425108941271901, 0.00393318757414818, -0.0201157368719578, 0.0026176159735769, -0.000836182851344347, 0.00439989473670721, 0.0130610242486, -0.0070885312743485, -0.019953403621912, -0.0144611448049545, 0.00688899680972099, 0.018303019925952, 0.0067435740493238, 0.0136562446132302, -0.0326018333435059, -0.0394468642771244, 0.0233488641679287, 0.116122044622898, 0.00667593535035849, -0.00754171004518867, -0.0113700581714511, 0.000423798453994095, 0.000646371918264776, -0.0325747765600681, -0.0243634432554245, 0.0114106414839625, -0.0152457533404231, -0.0027884035371244, -0.0237005855888128, 0.00354426563717425, -0.0283270683139563, -0.00132994505111128, -0.00560048082843423, 0.00815045833587646, -0.0160574167966843, -0.0129392743110657, -0.0122696524485946, -0.0344145484268665, 0.00395686132833362, 0.00934089813381433, 0.0065643317066133, 0.0123305264860392, -0.0110048092901707, 0.0349286012351513, 0.0242958050221205, 0.0257973838597536, -0.0086645120754838, 0.000344745756592602, -0.0261626318097115, 0.00581692438572645, 0.00761611247435212, 0.00132233568001539, -0.000984987942501903, -0.00352059211581945, 0.0017552231438458, 0.0104366447776556, 0.00339546054601669, -0.00319930841214955, 0.014894031919539, 0.0033802418038249, -0.0201969016343355, 0.00915827415883541, -0.0106869079172611, -0.0165173597633839, 0.0235788356512785, 0.0243769716471434, -0.0167338028550148, 0.0511077679693699, -0.0162738598883152, -0.0188306011259556, -0.027921237051487, -0.0245122481137514, 0.0160844717174768, -0.00318578071892262, -0.0243363883346319, -0.0257703270763159, -0.021955506876111, -0.0336299389600754, -0.0358484871685505, 0.0210085660219193, -0.0130474967882037, -0.0299774520099163, -0.033873438835144, 0.0152998641133308, -0.0244446098804474, -0.0209409277886152, -0.00359161267988384, 0.0299774520099163, -0.0346851013600826, -0.0324124433100224, -0.00530625227838755, 0.0539485923945904, -0.0247422195971012, 0.000425700796768069, 0.00888771936297417, 0.00198688544332981, 0.00527581525966525, 0.00316548906266689, -0.0283000133931637, 0.00286111515015364, -0.00075882114470005, -0.00592852802947164, 0.0247828029096127, 0.0136968279257417, -0.0257432721555233, 0.0184382982552052, 0.00801518093794584, 0.00856305379420519, 0.00638170726597309, 0.0189658794552088, -0.00201225001364946, 0.00128851633053273, -0.00649669300764799, 0.0021813465282321, -0.00441680429503322, 0.0078596118837595, -0.0257432721555233, -0.00255674123764038, 0.00374041753821075, 0.0064155263826251, -0.0191417392343283, 0.0232135858386755, 4.72942156193312e-06, 0.0232135858386755, 0.000571546610444784, -0.000197948756976984, -0.00838719308376312, 0.000361655431333929, -0.00969261955469847, 0.0133112873882055, 0.0129189835861325, -0.0264331866055727, 0.0114985713735223, 0.0112212533131242, -0.0046433936804533, -0.0335217192769051, -0.0152998641133308, -0.00338193285278976, -0.0401232503354549, 0.00488351099193096, 0.00112872000318021, -0.000876766047440469, 0.019885765388608, -0.0116135571151972, -0.00478205271065235, -0.00955057796090841, 0.0111400866881013, -0.043424017727375, 0.0275830440223217, 0.0129122193902731, -0.0310867261141539, 0.00212723575532436, -0.0471035577356815, 0.00940853729844093, 0.0113091832026839, -0.0184247698634863, -0.00993611849844456, -0.00288309762254357, -0.00865774787962437, 0.00764316786080599, -0.0199804585427046, 0.00417668698355556, -0.0324665531516075, 0.00300653814338148, 0.00389936845749617, 0.0112550724297762, 0.0214143991470337, -0.00592176429927349, 0.016503831371665, -0.014312339015305, -0.00726439151912928, -0.00380467437207699, -0.0314113907516003, -0.0314655005931854, -0.0444791801273823, 0.0349286012351513, 0.0193176008760929, 0.0540027022361755, -0.0144205614924431, -0.000941868289373815, 0.0110792117193341, -0.000490802980493754, -0.00017459227819927, 0.00725086405873299, -0.00133755442220718, -0.028056513518095, 0.00531978020444512, 0.00953705050051212, 0.0234570857137442, -0.016936719417572, -0.000102884732768871, -0.00316041614860296, 0.00831279065459967, 0.00301668397150934, 0.00550578674301505, -0.0159627217799425, -0.0178566053509712, -0.0251615792512894, 0.00157259870320559, -0.00846835970878601, 0.0237141121178865, -0.00730497483164072, -0.0266766864806414, 0.0369848161935806, 0.0149210877716541, 0.038689311593771, 0.00886066351085901, 0.0333323292434216, -0.00819104071706533, 0.0409349128603935, -0.00342927989549935, 0.00932737067341805, -0.0154757238924503, -0.0048226360231638, -0.0220772568136454, 0.00239948136731982, 0.0317090004682541, 0.0261085201054811, -0.0230106711387634, -0.00275289337150753, 0.0130407325923443, 0.0135412588715553, 0.0316819474101067, -0.0188982393592596, -0.00359837641008198, -0.0222801733762026, -0.0307079497724771, 0.0239711385220289, -0.0440733470022678, -0.0174237173050642, -0.0368495397269726, 0.0146775878965855, 0.0216984804719687, -0.00960468873381615, 0.0102946031838655, -0.0162873882800341, -0.0369848161935806, 0.0247151646763086, 0.00197843066416681, 0.0148805044591427, -0.00995641015470028, 0.0291116777807474, 0.0283000133931637, -0.000298244209261611, -0.0339546054601669, 0.00157936254981905, 0.0013739102287218, 0.0135074397549033, 0.0115797379985452, -0.00388245889917016, -0.0247828029096127, -0.000120798409625422, 0.0145828938111663, -0.000103783058875706, 0.00757552916184068, -0.0219825636595488, 0.00465353950858116, 0.0130813159048557, 0.0153269190341234, -0.0228753928095102, -0.0185465198010206, -0.0119923334568739, -0.00878626108169556, 0.0134871480986476, 0.00118029455188662, -0.0225101448595524, -0.0219013970345259, -0.0182624366134405, -0.00994964595884085, -0.0118976393714547, 0.0114985713735223, 0.0126754837110639, -0.000115936883958057, 0.00279009458608925, -0.0225236713886261, 0.00237411679700017, 0.020670372992754, 0.011843528598547, 0.0239035002887249, -0.0362272635102272, 0.0252021625638008, -0.00722380820661783, 0.00769727909937501, -0.0142717566341162, -0.00704794796183705, -0.00554636958986521, 0.0235111974179745, -0.0327371098101139, -0.0140958959236741, -0.0194258224219084, 0.0069397259503603, 0.0282459016889334, -0.00460619246587157, -0.00854276213794947, -0.0203457083553076, -0.00717646116390824, 0.00460281036794186, 0.0214955639094114, -0.00925296824425459, -0.00405493751168251, -0.00196490297093987, 0.0105651579797268, -0.0107613103464246, -0.0184788797050714, 0.0151645867154002, 0.0340628251433372, 0.0126619562506676, -0.0169908311218023, 0.00911092665046453, -0.00800165254622698, 0.0219825636595488, -0.0050695170648396, 0.00947617553174496, 0.00890124682337046, 0.00429505482316017, -0.0216984804719687, 0.0162468049675226, 0.0199128203094006, 0.014501728117466, -0.0119517501443624, 0.0283270683139563, -0.0164497215300798, -0.00616526324301958, -2.09389199881116e-05, -0.0255133006721735, -0.00473470566794276, -0.00815722160041332, -0.00102049822453409, 0.00546520343050361, 0.000246035604504868, -0.00818427745252848, -0.00226251292042434, 0.026839017868042, 0.002485720673576, -0.00529610691592097, -0.0250804126262665, 0.00657109543681145, -0.00256181415170431, 0.00457913707941771, -0.00366939697414637, -0.00373703567311168, 0.00137982855085284, -0.0193987656384706, -0.0157462786883116, 0.0138929793611169, 0.00596572924405336, -0.00614497205242515, 0.0128107611089945, 0.0316007807850838, -0.00254321354441345, 0.0103960614651442, -0.00886742770671844, 0.00629715900868177, -0.00863069202750921, 0.0122290691360831, -0.00138405594043434, 0.00722380820661783, 0.00210694409906864, 0.0333864390850067, 0.00314688845537603, 0.0223342832177877, -0.0100849233567715, 0.000864929286763072, -0.0171937458217144, -0.030572671443224, -0.0247016362845898, -0.00812340248376131, -0.0179512985050678, 0.0476176142692566, 0.000490380276460201, -0.000429082720074803, -0.0242958050221205, -0.0101728541776538, -0.0454531759023666, -0.0437216274440289, 0.016003305092454, -0.0105989770963788, 0.020021041855216, 0.0218337588012218, 0.00782579276710749, 0.0282188467681408, -0.0108492402359843, 0.0251074694097042, -0.0132301207631826, 0.00731850229203701, 0.0252292193472385, -0.015719223767519, -0.00156076194252819, 0.0172343291342258, -0.0192634891718626, -0.013318051584065, 0.00666578952223063, 0.0140958959236741, -0.00973320286720991, 0.0268660746514797, -0.000760512135457247, -0.00828573573380709, 0.00641890848055482, -0.00953028630465269, -0.012202013283968, 0.00527919689193368, 0.0172478575259447, -0.0269337128847837, 0.00788666680455208, 0.00480234436690807, -0.0173425506800413, 0.0135818421840668, -0.0107613103464246, 0.00884037185460329, 0.00450135255232453, -0.014961670152843, 0.0212520658969879, -0.000594797427766025, 0.00536712724715471, -0.0277589038014412, 0.0183436032384634, 0.00292368093505502, -0.0164497215300798, -0.000180510658537969, 0.026487298309803, -0.0271501559764147, -0.00864422041922808, 0.0124996239319444, 0.00164277385920286, -0.00739290518686175, 0.00316718011163175, -0.0357943773269653, 0.00665902579203248, 0.000946941145230085, -0.00999699346721172, -0.0145558388903737, -0.00821133237332106, -0.0137238828465343, 0.0030268297996372, -0.0119585143402219, 0.0132977599278092, 0.0241470001637936, -0.0219690352678299, -0.00283744162879884, -0.0130069134756923, 0.014501728117466, -0.0313302241265774, -0.0227265879511833, 0.00228449562564492, -0.0303832832723856, -0.0135480230674148, 0.0327371098101139, -0.0222125351428986, -0.0514865443110466, -0.00598602090030909, 0.0144340889528394, -0.0137306470423937, 0.000710205873474479, 0.232027649879456, 0.0214008707553148, -0.0134330373257399, 0.0445332899689674, -0.0167202763259411, 0.0138118136674166, 0.0184788797050714, 0.0128107611089945, -0.00869156699627638, -0.0107680736109614, -0.0365789830684662, -0.00171463994774967, -0.0365519300103188, -0.00810311082750559, -0.00719675282016397, -0.0310867261141539, -0.0367142632603645, -0.0157056953758001, -0.0233218092471361, 0.0106327962130308, 0.0254186075180769, -0.0212520658969879, -0.0233082808554173, -0.0131016075611115, 0.0109642259776592, 0.000627348548732698, -0.0190335176885128, 0.0358214303851128, 0.0177619103342295, 0.028489401564002, -0.0201698467135429, -0.00789343100041151, 0.0197910703718662, 0.015611001290381, 0.0103419506922364, -0.0122967073693871, 0.0183165483176708, 0.00303866667672992, 0.0313572809100151, 0.0155027797445655, 0.0141094233840704, 0.02060273475945, -0.00675033777952194, -0.00982789695262909, 0.00737261353060603, 0.0260138269513845, -0.011518863029778, 0.0183977149426937, 0.00376409105956554, 0.00765669578686357, -0.029571620747447, -0.0177483838051558, 0.0200616251677275, 0.0156380571424961, 0.0143664507195354, -0.00282053183764219, 0.012736358679831, 0.0277318488806486, 0.0226589497178793, -0.00110758293885738, -0.00569517491385341, 0.0345498248934746, -0.00763640413060784, 0.0283000133931637, -0.0294904541224241, 0.017220800742507, -0.00260408828034997, 0.0276506822556257, 0.00648992881178856, -0.00823162402957678, 0.0166391097009182, 0.00558018917217851, -0.0188170745968819, -0.0212655924260616, -0.0259461887180805, -0.0179512985050678, 0.0190335176885128, 0.00552607793360949, 0.0235517788678408, 0.00469412282109261, -0.0242416933178902, -0.0111536141484976, -0.00629377691075206, -0.00994288269430399, 0.00647301925346255, -0.00796783342957497, 0.0227942261844873, -0.0129663301631808, -0.0132098291069269, -0.0212926492094994, 0.00839395727962255, -0.00385202141478658, -0.0070885312743485, -0.00315534323453903, 0.00523523194715381, 0.000770235201343894, 0.0114715155214071, 0.0333323292434216, -0.0148805044591427, 0.00605704169720411, -0.00674019195139408, 0.01223583240062, 0.000343477557180449, 0.00955057796090841, 0.00395686132833362, -0.00490718428045511, 0.0159221403300762, 0.0173966623842716, -0.00319254444912076, -0.00313674262724817, -0.00696001760661602, -0.0120667358860373, 0.0181947983801365, 0.00422741612419486, 0.00229125935584307, 0.00248064775951207, 0.00418006908148527, -0.0119044035673141, 0.0323853865265846, 0.00242991861887276, -0.00803547259420156, -0.000519126653671265, 0.000935104384552687, 0.018668269738555, -0.00400420837104321, -0.0253644958138466, 0.00142548466101289, 0.0074808350764215, 0.00622613821178675, -0.0261220484972, -0.0151916416361928, -0.0054144742898643, 0.00890124682337046, -0.0191282108426094, -0.014961670152843, -0.000413864036090672, 0.0162873882800341, 0.00508642708882689, -0.0261355768889189, 0.0155568905174732, -0.00840748474001884, -0.00966556370258331, 0.0240387786179781, -0.00321621797047555, 0.00600969465449452, -0.0264331866055727, 0.0189117677509785, 0.0191282108426094, 0.000799404340796173, -0.0275289323180914, -0.0302750617265701, -0.00733879394829273, 0.0114309331402183, -0.0204809848219156, 0.0136968279257417, -0.000278586725471541, -0.0314113907516003, -0.00842777639627457, -0.0114647522568703, 0.0020342324860394, -0.0409619696438313, -0.00939500890672207, 0.0486727766692638, -0.00230816914699972, -0.0295986756682396, 0.0144746722653508, -0.173479616641998, 0.0288411229848862, 0.00582707021385431, -0.0181136317551136, 0.0354156009852886, 0.00691267056390643, 0.00103740789927542, -0.0217661187052727, 0.00239609926939011, -0.00725762778893113, 0.0191823225468397, -0.0170449409633875, -0.0231865309178829, -0.0140282567590475, 0.0165714714676142, -0.0013544640969485, -0.0458860620856285, 0.0470765046775341, 0.0135209672152996, 0.00413948576897383, -0.0129392743110657, -0.0352262109518051, -0.0105313388630748, -0.0355779342353344, 0.0168284978717566, 0.036741316318512, 0.000767698744311929, 0.0203051250427961, 0.000173746797372587, -0.0178295504301786, 0.000612975331023335, -0.0216984804719687, 0.0340087153017521, 0.00677062943577766, 0.0356861539185047, -0.0374177023768425, -0.00836013816297054, -0.00875244196504354, -0.0181947983801365, 0.0104839913547039, 0.0300586186349392, 0.00931384321302176, 0.0141364792361856, 0.00129274383652955, -0.0119990976527333, 0.0199263487011194, 0.0147316986694932, -0.0109845176339149, 0.0185735747218132, -0.00824515242129564, 0.0104298805817962, -0.0276777371764183, -0.0104636996984482, 0.0323583334684372, 0.00686532352119684, 0.0368765965104103, 0.00132233568001539, -0.00230478728190064, -0.00189557333942503, -0.009976701810956, -0.0159627217799425, -0.0152998641133308, 0.000948632135987282, -0.0239576119929552, -0.0106801437214017, -0.0282729584723711, 0.00288309762254357, 0.0181677434593439, -0.0218743402510881, 0.0105313388630748, -0.0086645120754838, -0.0199669301509857, 0.0107748378068209, 0.00272752880118787, -0.00735908560454845, -0.0117150153964758, -0.00698707299306989, -0.00613820785656571, -0.0120396809652448, -0.00285266037099063, -0.0283000133931637, 0.0237817503511906, 0.00299131963402033, -0.00216443696990609, -0.0116135571151972, 0.00719675282016397, -0.00362543202936649, 0.0332241058349609, 0.00947617553174496, -0.0116203213110566, -0.00285942410118878, -0.0210626777261496, -0.00277149397879839, -0.00311476015485823, 0.034820381551981, 0.024972191080451, 0.00245359214022756, 0.00576281361281872, -0.0221719518303871, -0.011843528598547, -0.0137982852756977, 0.0131421908736229, -0.0267307963222265, 0.0176266338676214, 0.00249755731783807, 0.0179512985050678, 0.00139081990346313, 0.0247286930680275, 0.0225236713886261, 0.0134262731298804, -0.0297068972140551, -0.00412595784291625, 0.0219419803470373, 0.0303832832723856, -0.0177889671176672, -0.00101457978598773, -6.58948483760469e-05, -0.0118232369422913, 0.00236904388293624, 0.021103261038661, 0.0193311274051666, 0.00846835970878601, -0.0349015444517136, 0.00104670820292085, -0.0124184573069215, -0.0182353816926479, -0.103243641555309, -0.00645949179306626, -0.0031823986209929, 0.00535698141902685, -0.00434240186586976, 0.0143258674070239, 0.005742521956563, 0.016436193138361, -0.0225642547011375, 0.0439651273190975, -0.015462196432054, -0.0265684630721807, -0.00405493751168251, -0.0118705844506621, -0.00232846080325544, -0.0155568905174732, -0.0249992478638887, -0.00418683281168342, -0.0263655483722687, 0.03847286850214, -0.00065989961149171, -0.00628024898469448, 0.011126559227705, -0.0296527873724699, 0.000151975604239851, 0.00303866667672992, -0.0261626318097115, 0.00354764750227332, 0.0275289323180914, -2.00405938812764e-05, 0.0137238828465343, -0.0234165024012327, 0.0160303618758917, -0.00489027472212911, 0.00215429114177823, -0.00673004612326622, -0.0162062216550112, 0.00933413486927748, 0.00517773907631636, -0.010693671181798, -0.0152457533404231, 0.003256801282987, -0.00466368533670902, -0.027921237051487, -0.00831279065459967, -0.00468397699296474, -0.0206568446010351, -0.00588456308469176, 0.000911430863197893, -0.010402824729681, -0.00280362227931619, -0.00235551618970931, -0.00356117519550025, -0.0185465198010206, -0.0161656383424997, -0.00115577550604939, 0.0139876734465361, -0.00723733613267541, -0.0269201844930649, 0.00280531332828104, -0.0180730484426022, 0.00927325990051031, -0.0162738598883152, 0.0126754837110639, 0.00749436300247908, 0.00514391995966434, -0.0271907392889261, -0.0134398005902767, -0.000911430863197893, -0.0241334717720747, -0.0167202763259411, 0.0263790749013424, -0.00582030648365617, 0.00898241344839334, -0.0316548906266689, -0.0041834507137537, -0.0160168334841728, -0.00430181855335832, 0.0191958509385586, 0.0051033366471529, -0.0201427917927504, -0.0192093774676323, 0.0123981656506658, -0.00827897153794765, 0.0186006296426058, 0.00783932022750378, -0.0107613103464246, -0.00879302527755499, 0.00233353371731937, -0.0267849080264568, 0.0175995789468288, 0.0307620596140623, 0.0136630088090897, 0.00575604941695929, 0.00303359376266599, 0.0105178104713559, -0.00419021490961313, -0.0226995330303907, -0.00796107016503811, 0.0346851013600826, -0.0212926492094994, -0.0167608596384525, -0.0564376935362816, 0.0172884408384562, 0.00561739038676023, 0.00137898302637041, -0.0174913555383682, -0.00215090927667916, -0.00128175248391926, -0.00999699346721172, -0.00417330488562584, 0.0185059364885092, 0.0109439343214035, -0.00373703567311168, 0.00988200772553682, -0.00081927323481068, -0.0362813733518124, -0.025039829313755, 0.0148805044591427, -0.00339038763195276, 0.0254727173596621, -0.00014478899538517, 0.0148805044591427, 0.00241470010951161, 0.00853599794209003, 0.0167743861675262, -0.0189929343760014, -0.0109371701255441, -0.0364978201687336, 0.0166932195425034, 0.00607395125553012, -0.0457778424024582, 0.000900439627002925, -0.0070885312743485, 0.0042984364554286, 0.0198451820760965, 0.00559709873050451, -0.0129798576235771, -0.014068840071559, 0.002485720673576, 0.030220951884985, 0.0188576579093933, -0.00280193123035133, -0.0255268290638924, -0.0143664507195354, -0.0199939869344234, -0.0156380571424961, 0.000410270731663331, 0.0163956098258495, -0.0192770175635815, -0.000242230933508836, 0.032872386276722, -0.0113091832026839, 0.0110859759151936, -0.00940853729844093, -0.016003305092454, -0.00395686132833362, -0.0146234771236777, 0.0181136317551136, 0.0141500066965818, -0.017721327021718, -0.00369983445852995, 0.0334405526518822, 0.0297880638390779, 0.0277318488806486, 0.0159491952508688, 0.0270689893513918, -0.000834491918794811, -0.0105448663234711, 0.0265955198556185, 0.0108154211193323, -0.00849541556090117, -0.0068585597909987, 0.00846159551292658, 0.0179648268967867, 0.0138794519007206, -0.0113768214359879, -0.0206974279135466, 0.00399068044498563, -0.01758605055511, -0.00255166832357645, 0.0355508774518967, 0.00422741612419486, -0.00501540629193187, -0.0453449562191963, 0.0138185769319534, 0.00443371385335922, 0.00506275333464146, 0.00457237288355827, -0.00367277907207608, 0.00247726566158235, 0.0146505329757929, -0.00119044038001448, 0.0281647369265556, -0.0197234321385622, -0.0337652154266834, 0.0258920770138502, 0.000193404281162657, -0.00348339066840708, -0.0151510583236814, 0.0101390341296792, 0.00470426864922047, 0.0234029740095139, 0.00412257621064782, 0.00870509538799524, -0.00615511741489172, -0.0328453294932842, 0.0183436032384634, -0.0193176008760929, 0.00176875083707273, -0.00297102797776461, 0.0147587545216084, 0.00576957734301686, 0.0143935056403279, 0.0166120529174805, 0.00823162402957678, -0.0246204696595669, 0.0174507722258568, 0.0134059814736247, -0.00838719308376312, -0.0159762501716614, 0.0469953380525112, 0.0167338028550148, -0.00451149838045239, -0.0122899441048503, -0.0166932195425034, 0.0277859587222338, -0.00233691558241844, 0.0120396809652448, -0.0185329914093018, 0.00835337396711111, 0.0172343291342258, -0.0102607840672135, -0.00258379662409425, 0.00583721604198217, -0.0197640154510736, -0.0157462786883116, 0.00777168152853847, -0.00863069202750921, 0.00923943985253572, 0.00602998631075025, 0.0547873117029667, 0.0472388379275799, -0.00648654717952013, 0.0140823684632778, 0.0106463246047497, 0.0253644958138466, -0.00995641015470028, 0.00733879394829273, -0.0220637284219265, -0.0216173138469458, 0.0271095726639032, -0.00868480373173952, 0.0115459188818932, -0.00750789092853665, -0.00412257621064782, 0.0138253411278129, 0.0110048092901707, 0.0170719958841801, -0.0206839013844728, 0.0195610988885164, 0.00994964595884085, 0.000592683732975274, 0.0294904541224241, 0.0150563642382622, -0.0141364792361856, -0.0180730484426022, 0.0324665531516075, 0.0127093037590384, -0.00194630236364901, -0.0346309915184975, 0.00725762778893113, 0.00239779031835496, -0.0214955639094114, 0.00161318189930171, 0.0191146843135357, 0.0166255813091993, 0.00276980292983353, -0.00921238493174314, 0.0172749124467373, 0.00235044327564538, -0.00140181113965809, 0.0145423104986548, -0.00502555212005973, -0.0334676057100296, 0.0133383432403207, 0.0255538839846849, -0.00625319359824061, -0.0190470460802317, -0.0199128203094006],id:"38dbce3c6065ebdae93df6e3525edb87",source:"state_of_union.txt",text:"If you travel 20 miles east of Columbus, Ohio, you’ll find 1,000 empty acres of land.
It won’t look like much, but if you stop and look closely, you’ll see a “Field of dreams,” the ground on which America’s future will be built.
This is where Intel, the American company that helped build Silicon Valley, is going to build its $20 billion semiconductor “mega site”.
Up to eight state-of-the-art factories in one place. 10,000 new good-paying jobs.
Some of the most sophisticated manufacturing in the world to make computer chips the size of a fingertip that power the world and our everyday lives.
Smartphones. The Internet. Technology we have yet to invent.
But that’s just the beginning.
Intel’s CEO, Pat Gelsinger, who is here tonight, told me they are ready to increase their investment from
$20 billion to $100 billion.
That would be one of the biggest investments in manufacturing in American history.
And all they’re waiting for is for you to pass this bill."})
(:Chunk{embedding:[-0.017294330522418, -0.0217706654220819, -0.0157269481569529, 0.00116225332021713, -0.00089991616550833, 0.00739193148910999, -0.0356512926518917, 0.00123447913210839, -0.0179850403219461, -0.0140665862709284, 0.0249187126755714, 0.0369264483451843, -0.0208674296736717, -0.0145182050764561, -0.0102278292179108, 0.00671782437711954, 0.021505007520318, 3.63463623216376e-05, 0.011157632805407, -0.0118284188210964, -0.0309757124632597, 0.0105333365499973, 0.0199509095400572, 0.00698016164824367, -0.00680084247142076, -0.0103340931236744, 0.0437007285654545, -0.00518697081133723, -0.00310321641154587, 0.0191406533122063, -0.00126519578043371, -0.0169888231903315, -0.0199641920626163, 0.00839478988200426, -0.0426912270486355, -0.0174670070409775, -0.0368733182549477, -0.0258219484239817, 0.0228997115045786, -0.0385735295712948, 0.0286644883453846, 0.00542274210602045, 0.000770407961681485, -0.0286379233002663, -0.0103208096697927, -0.000139159092213959, -0.0134356487542391, -0.000327921501593664, -0.00295212352648377, 0.0391579754650593, 0.023603705689311, 0.0283988304436207, -0.030045909807086, -0.0134422900155187, -0.0122999614104629, -0.016816146671772, 0.007239178288728, 0.00463573075830936, -0.00983598455786705, 0.00496448203921318, 0.00925153680145741, 0.0212924815714359, -0.0266322065144777, 0.0100883590057492, -0.0328353196382523, -0.0219034943729639, -0.0349605828523636, -0.00224646972492337, 0.00967658963054419, 0.00506742484867573, 0.0431162789463997, 0.0318789482116699, 0.00802286900579929, 0.0150760868564248, 0.0175068564713001, -0.000202460389118642, -0.00721925357356668, -0.012379658408463, -0.00226805452257395, -0.00283423787914217, 0.0138939088210464, -0.0174537245184183, 0.00257522147148848, 0.0313742011785507, 0.00415090471506119, 0.00426048878580332, -0.0391314104199409, 0.00786347407847643, -0.0354121997952461, 0.00165870157070458, -0.0017350782873109, 0.0136282509192824, -0.0190343894064426, 0.0155941192060709, 0.0126585997641087, 0.00739193148910999, -0.0151425013318658, 0.00448961881920695, 0.0256227049976587, -0.036687359213829, 0.0019974154420197, -0.000282884167972952, -0.0116026094183326, -0.0111111421138048, -0.00194262352306396, 0.0166700333356857, -0.00348343933001161, -0.0101082837209105, 0.00713955657556653, -0.0104270735755563, -0.0102543951943517, -0.0178522113710642, 0.00959025043994188, -0.0415488965809345, 0.0158332120627165, 0.00695359567180276, -0.0213854629546404, 6.07069850957487e-05, 0.0114697804674506, -0.0145314875990152, 0.0387594886124134, 0.0173873100429773, 0.0247991662472486, -0.00206549023278058, 0.0125456945970654, 0.0121936984360218, -0.0271236728876829, -0.00808928348124027, -0.00194594427011907, -0.00629609264433384, 0.00943749770522118, -0.0175068564713001, 0.00820882990956306, -0.0122534716501832, -0.0218370798975229, 0.00160224933642894, -0.00468222051858902, 0.0351199768483639, -0.0386000946164131, -0.0219034943729639, -0.00849441159516573, -0.00421731919050217, 0.0145049225538969, 0.00934451725333929, -0.00242412835359573, -0.00648537371307611, 0.0363154374063015, -0.00078701158054173, 0.00517368782311678, -0.00604371773079038, 0.0141330007463694, -0.00272797467187047, 0.0287441853433847, 0.0358903855085373, 0.00111991411540657, 0.0158199295401573, -0.00777713535353541, 0.00974964536726475, -0.00785019155591726, -0.00466893799602985, 0.0184100940823555, -0.00313144270330667, -0.00596402026712894, -0.00514380121603608, -0.00285748299211264, 0.0136548168957233, 0.0184233766049147, -0.00315468781627715, 0.00228963908739388, -0.00388524704612792, 0.0085342600941658, 0.0188882779330015, -0.0376171618700027, 0.0212791990488768, -0.0223285481333733, 0.0315867252647877, 9.14236807147972e-05, 0.0230989549309015, -0.0146776000037789, -0.00763766514137387, 0.018928125500679, 0.0220097582787275, 0.0299396477639675, 0.0205353572964668, -0.00730559276416898, -0.000564107962418348, 0.026858014985919, -0.0177990794181824, 0.00467225862666965, -0.0133493104949594, 0.0134223662316799, 0.0126785235479474, -0.000430033745942637, -0.0235505737364292, -0.640129327774048, -0.0064588082022965, 0.0154612902551889, 0.00895931292325258, -0.00162300386000425, 0.0108056357130408, 0.0252640675753355, 8.08907570899464e-05, -0.00613337708637118, 0.00580130470916629, -0.0312679372727871, 0.00909878313541412, 0.00739857275038958, -0.0188351459801197, -0.0146377515047789, -0.00527663016691804, 0.0163113959133625, -0.0374577641487122, -0.00135402521118522, -0.00539285549893975, -0.0266587715595961, 0.00467225862666965, -0.00570500362664461, -0.0326493568718433, 0.0113303102552891, 0.0085342600941658, 0.00590092642232776, 0.00393173703923821, -0.00797637924551964, -0.0139204747974873, -0.0140001717954874, 0.0142658296972513, -0.0252507850527763, 0.014345527626574, 0.0523877404630184, 0.00435014814138412, -0.0248124487698078, 0.0387329235672951, -0.000934783776756376, 0.0133360270410776, -0.0102942436933517, -0.0123863006010652, -0.0108654089272022, -0.000969651388004422, 0.00400811387225986, 0.00412433920428157, 0.0176662504673004, 0.00524342292919755, -0.00662152329459786, -0.0229129958897829, 0.0124726388603449, 0.0277612525969744, -0.0088663324713707, 7.34710192773491e-05, 0.00167945609427989, -6.28343259450048e-05, 0.00817562267184258, -0.019060954451561, 0.00691374717280269, -0.014850277453661, 0.000106885803688783, 0.0116092506796122, -0.0156871005892754, -0.0159527584910393, -0.0317726880311966, 0.0154745737090707, -0.0287441853433847, 0.000266488088527694, 0.00721261231228709, -0.0232849158346653, -0.0223152656108141, 0.0210533905774355, -0.0125589780509472, 0.00456267455592752, 0.0139071913436055, -0.0145979020744562, 0.0301256068050861, 0.0029288784135133, -0.000376279524061829, 0.0234443116933107, -0.0155542707070708, -0.0212924815714359, 0.00511391460895538, -0.0250515416264534, 0.0202032849192619, -0.0215448569506407, -0.0115361949428916, -0.0265126600861549, 0.0129508236423135, 0.00454275030642748, 0.00440992135554552, -0.00954376067966223, 0.00613337708637118, -0.0463041737675667, -0.0162582639604807, 0.0126187512651086, 0.00824203714728355, 0.0148369949311018, 0.0163246784359217, 0.0122733954340219, -0.015155783854425, -0.00907221809029579, 0.0209869761019945, 0.024148304015398, 0.0124726388603449, 0.0201900005340576, -0.0126320337876678, -0.00358306104317307, 0.00295378384180367, -0.0309491474181414, -0.00392509577795863, -0.00260510784573853, -0.0143056781962514, 0.00236435537226498, -0.024825731292367, -0.020482225343585, 0.00849441159516573, 0.00400479324162006, -0.0170153900980949, -0.00251046731136739, 0.00798302050679922, 0.0109849544242024, -0.00612341472879052, -0.0165372043848038, -0.00626952666789293, -0.00213522557169199, 0.0201103035360575, -0.0221691522747278, -0.0105466190725565, 7.36266738385893e-05, -0.0208408627659082, 0.0040247174911201, 0.0446570962667465, 0.00607360387220979, 0.00487482268363237, 0.0183038301765919, 0.0141462842002511, -0.0139603232964873, 0.0176795348525047, -0.0288770142942667, -0.0139337573200464, 0.0173873100429773, 0.000504334922879934, -0.0152487643063068, 0.00287408661097288, -0.026858014985919, -0.015328461304307, -0.0134489322081208, -0.00824867840856314, -0.00881320144981146, -0.00374577660113573, 0.0125589780509472, -0.0191140864044428, 0.00781698431819677, -0.0172411985695362, 0.00111161230597645, -0.00404132110998034, -0.00992896407842636, 0.0118616260588169, -0.0160058885812759, -0.00695359567180276, 0.0285582263022661, -0.0145979020744562, -0.00604703836143017, -0.00193930277600884, -0.0171482190489769, -0.00180315307807177, 0.00669125886633992, 0.00543270446360111, -0.0114764217287302, 0.0236966852098703, -0.0110978595912457, 0.0187155995517969, -0.00919176358729601, 0.0136946653947234, -0.00829516816884279, -0.00660491967573762, 0.0166301857680082, -0.00482833245769143, 0.00360630615614355, 0.013528629206121, -0.0088928984478116, -0.00998873729258776, 0.0159660410135984, 0.0373249351978302, -0.00297038746066391, 0.0232849158346653, 0.00697352038696408, -0.013289537280798, 0.0164442248642445, -0.0138673428446054, 0.008408073335886, 0.0224879421293736, 0.0130770104005933, 0.000802784983534366, 0.0185694880783558, -0.0205353572964668, -0.0262735672295094, 0.00923161208629608, -0.0136813828721642, -0.00440660072490573, 0.00132662919349968, 0.0133360270410776, 0.00737864850088954, 0.008952671661973, -0.0219566263258457, 0.0017799079651013, -0.0305506605654955, 0.0232317838817835, 0.0206947512924671, 0.0160723030567169, -0.0255297254770994, -0.0130504453554749, -0.0110447276383638, 0.010579826310277, 0.0399018190801144, -0.0116424579173326, 0.0326493568718433, -0.0143720926716924, -0.00928474403917789, -0.00585443619638681, 0.0219034943729639, 0.00691374717280269, -0.00144202436786145, -0.017905343323946, 0.0107989944517612, 0.0122999614104629, 0.00877335295081139, 0.000910708564333618, -0.00379890808835626, -0.0287176202982664, 0.02882388420403, -0.000334770476911217, 0.0140931522473693, 0.00163960747886449, -0.0159261915832758, 0.00502093462273479, -0.0218902118504047, 0.0349605828523636, 0.0131168598309159, 0.0191539358347654, 0.0106993727385998, 0.0191805008798838, 0.00420735729858279, 0.00512387696653605, -0.0024490337818861, 0.0451884120702744, -0.0014569676714018, -0.00129757286049426, 0.0292755030095577, -0.0174537245184183, 0.0268447324633598, 0.0024042041040957, 0.0251710880547762, 0.0104934880509973, -0.0307631865143776, 0.0152487643063068, 0.0188882779330015, 0.0304975286126137, 0.0212260670959949, -0.00332072400487959, 0.0102610364556313, -0.000797803921159357, 0.00182805850636214, -0.0152886128053069, 0.0152354817837477, 0.00181975669693202, -0.000456599547760561, 0.0079630957916379, 0.00205884873867035, -0.00339045911096036, 0.0196454022079706, 0.0130570866167545, -0.0384672656655312, 0.0318789482116699, 0.00755796767771244, -0.00165870157070458, -0.0149698238819838, -0.00237099686637521, 0.0124394316226244, -0.00292057660408318, -0.0272299367934465, -0.00604703836143017, -0.00247559975832701, -0.0293286330997944, -0.00314970663748682, 0.00668793777003884, 0.00265159807167947, -0.00578802172094584, 0.0141861326992512, -0.00899252016097307, 0.0137079479172826, -0.0278675146400928, 0.0222090017050505, 0.0181311517953873, 0.00980277732014656, 0.0306303575634956, -0.00573489023372531, 0.00877999421209097, -0.000811917008832097, 0.00661820266395807, -0.00253869337029755, -0.0135485539212823, -0.00456267455592752, 0.034588661044836, 0.000485655880765989, 0.00302517949603498, -0.014584619551897, -0.00531979976221919, -0.0411504097282887, 0.0394501984119415, -0.00614998070523143, -0.015155783854425, 0.00372917298227549, 0.0143986586481333, -0.0134157249704003, -0.0174537245184183, -0.00474863499403, 0.0373780690133572, 0.0090124448761344, -0.00086670892778784, -0.0209869761019945, -0.0218237973749638, 0.0245733577758074, 0.129959851503372, 0.0381219089031219, -0.0249319951981306, -0.00861395802348852, -0.00988911557942629, 0.0148768434301019, -0.0144517906010151, -0.020615054294467, 0.00362955126911402, -0.0162316989153624, -0.00101697165518999, -0.0157933626323938, -0.00697352038696408, -0.0260876063257456, 0.000635918637271971, 0.00134406297001988, 0.00630937563255429, -0.0274424627423286, 0.000938934681471437, -0.0256227049976587, -0.027336198836565, 0.00248888251371682, 0.0118018528446555, -0.0127582214772701, 0.0126519585028291, -0.0116756651550531, 0.0374046340584755, 0.0270174089819193, 0.0204423759132624, -0.00108670687768608, 0.0130305206403136, -0.0174005925655365, -0.00631601689383388, 0.00350336381234229, -0.0111775565892458, -0.00617322558537126, 0.0125456945970654, 0.00936444103717804, -0.00272963498719037, 0.00074882322223857, 0.010446997359395, 0.0149034094065428, 0.00178156839683652, -0.0118948332965374, -0.00313642364926636, -0.00596069963648915, -0.024148304015398, 0.00220828130841255, 0.0115760434418917, -0.0384938307106495, 0.0366607904434204, -0.0320649109780788, -0.0201235860586166, -0.0219167787581682, 0.0015175708103925, 0.0241748709231615, -0.00385868130251765, -0.00535632763057947, -0.00455935392528772, -0.0131434248760343, -0.0138009283691645, -0.0111045008525252, 0.0204290933907032, -0.0102543951943517, -0.021026823669672, -0.0237498171627522, -0.00034660057281144, -0.0127648627385497, -0.000307374517433345, -0.000646710977889597, -0.00641231797635555, -0.0263931136578321, -0.0299396477639675, -0.0121472077444196, 0.0377499908208847, -0.00203228299506009, -0.00284752086736262, -0.00195424607954919, -0.00980277732014656, -0.00955040194094181, -0.00463240966200829, -0.0392908044159412, 0.00699344463646412, -0.0259414948523045, 0.00569836236536503, 0.036767054349184, 0.00500433100387454, -0.0102543951943517, 0.0133825177326798, 0.0154480077326298, 0.00899916142225266, 0.0131035763770342, 0.0153417447581887, -0.0206017717719078, 0.0173076130449772, -0.0069071059115231, 0.0103938663378358, 0.00166368263307959, 0.000147979764733464, -0.0124394316226244, -0.00757789192721248, -0.00786347407847643, 0.000518448010552675, -0.0119546065106988, 0.0126187512651086, 0.0178256463259459, 0.0281863044947386, 0.0100086620077491, -0.0301256068050861, -0.0150362383574247, 0.0193930268287659, -0.0122136222198606, -0.008952671661973, 0.00467889988794923, -0.0142658296972513, 0.00698016164824367, 0.00583783257752657, 0.00319951749406755, -0.0146377515047789, -0.00498108565807343, -0.00260676839388907, -0.0357575565576553, 0.0249452777206898, 0.0244405288249254, 0.00411437684670091, 0.0219034943729639, -0.0107192965224385, -0.0119213992729783, -0.00393173703923821, 0.00878663547337055, -0.0302318707108498, 0.030524093657732, -0.00251378794200718, -0.0123464511707425, -0.00346351508051157, -0.0403534360229969, -0.000164790923008695, 0.010101642459631, -0.011463139206171, -0.0270705409348011, -0.022647337988019, -0.00155658938456327, 0.0177592318505049, -0.00830845162272453, 0.00730559276416898, -0.026446245610714, 0.00253205187618732, 0.0241881534457207, 0.0180913042277098, 0.0307100545614958, 0.0119147570803761, 0.00557881640270352, -0.0100684352219105, -0.0060968492180109, -0.00166617322247475, -0.024347547441721, -0.000535051629412919, -0.0298333838582039, 0.0206017717719078, 0.00455271266400814, 0.050660964101553, -0.0152886128053069, -0.0141861326992512, -0.0116158919408917, -0.00154745730105788, 0.00803615152835846, 0.0218105148524046, 0.00735208299010992, -0.00442652497440577, 0.00707314210012555, 0.00572824897244573, 0.00737200723960996, -0.0266454890370369, -0.00484161544591188, -0.00970979686826468, 0.00297038746066391, -0.0165903363376856, -0.00662484439089894, -0.0231388043612242, -0.0110779348760843, -0.0130371619015932, 0.00479180458933115, -0.0184897910803556, 0.024892145767808, -0.0260610412806273, -0.04096445068717, 0.0331806726753712, 0.0159926060587168, 0.0267783179879189, 0.00259016477502882, 0.0291426740586758, 0.00595073727890849, 0.0287441853433847, -0.0106595242395997, -0.0216644033789635, -0.0128644844517112, -0.0178787782788277, -0.0409910157322884, 0.0083815073594451, 0.0125390533357859, 0.0297271199524403, 0.0087401457130909, -0.0203892439603806, -0.00376238021999598, 0.0233646128326654, 0.0305772256106138, -0.010686089284718, -0.00270140892826021, -0.00502425525337458, -0.023802949115634, 0.0164043754339218, -0.0388923175632954, 0.00592085067182779, -0.043063148856163, 0.0181842837482691, -0.000237016676692292, -0.00860731676220894, -0.0117752868682146, -0.00192934065125883, -0.0339776463806629, 0.0120608694851398, 0.0110978595912457, 0.00560870254412293, -0.0180780217051506, 0.00345355295576155, 0.0140001717954874, 0.0178920608013868, -0.0220628902316093, 0.00993560627102852, -0.000966330640949309, 0.00578802172094584, 0.0153815932571888, -0.000918180157896131, -0.00972972065210342, -0.014651034027338, 0.0250913891941309, 0.0104735633358359, 0.00635918648913503, -0.0288504492491484, 0.0293286330997944, 0.0085342600941658, 0.00237597804516554, -0.0112705370411277, -0.00811584945768118, -0.017360744997859, -0.0111045008525252, 0.0106728067621589, 0.02007045596838, -0.0115893268957734, -0.0203361138701439, -0.0332603715360165, 5.98249171162024e-05, -0.00562198553234339, 0.0130105959251523, -0.00452282605692744, -0.0360232144594193, 0.00541942147538066, -0.00854090228676796, -0.0165106393396854, 0.00824203714728355, -0.0201900005340576, 0.0173076130449772, -0.00759117491543293, 0.0260079093277454, -0.0067012207582593, 0.00166368263307959, -0.0374311991035938, 0.000395996321458369, 0.0203493963927031, 0.0155144222080708, -0.0154878562316298, -0.017971757799387, -0.00372253148816526, 0.033499464392662, 0.0186491850763559, -0.0261938702315092, -0.0197250992059708, -0.0103673003613949, -0.0274955946952105, 0.00999537855386734, 0.00202232087031007, 0.00340042123571038, 0.00107757491059601, -0.00331906345672905, 0.00419739494100213, -0.018383527174592, -0.0113967247307301, -0.000761275936383754, 0.0168692767620087, 0.00822875369340181, 0.000893274729605764, -0.00307000917382538, 0.00182141712866724, 0.00142293015960604, 0.00341370422393084, -0.00495452014729381, 0.015155783854425, 0.0114963464438915, -0.0109982378780842, 0.0147307310253382, 0.00829516816884279, 0.0107657872140408, 0.00998209603130817, -0.00714619783684611, 0.00913863256573677, 0.00950391218066216, 0.00537293124943972, -0.015873059630394, 0.00445973221212626, -0.00350668444298208, 0.000990405911579728, -0.000694861460942775, -0.00745834596455097, 0.0079033225774765, 0.00187288830056787, 0.0101149249821901, 0.00192934065125883, -0.0131434248760343, -0.01899453997612, 0.0142791131511331, -0.00241250591352582, 0.024825731292367, -0.0014777221949771, 0.0124261491000652, -0.00183470000047237, -0.0126386750489473, 0.00218005524948239, 0.0135352704674006, 0.00530983740463853, -0.0132364053279161, 0.00775056984275579, 0.027947211638093, -0.0193266123533249, 0.00244737346656621, -0.0110248038545251, -0.00473535247147083, -0.0119280405342579, 0.00473535247147083, 0.00536628998816013, -0.0139071913436055, -0.0120475860312581, 0.0199243426322937, 0.0342167392373085, 0.0198180805891752, 0.00359966466203332, 0.000331864837789908, 1.97557128558401e-05, -0.0111177833750844, -0.00836822390556335, -0.00697352038696408, 0.00685397395864129, 0.0341636091470718, -0.00961017515510321, 0.000325638480717316, -0.0201767180114985, -0.00360962678678334, -0.0520689524710178, -0.0340042114257812, 0.00769743788987398, -0.00283755850978196, 0.0352262407541275, 0.0111775565892458, -0.0227668825536966, 0.0173873100429773, 0.00872686225920916, 0.034721489995718, -0.00937772449105978, -0.00900580361485481, 0.0264728106558323, -0.024692902341485, -0.00802286900579929, 0.0260079093277454, -0.0176264028996229, -0.00919840484857559, -6.17965997662395e-05, 0.0207744482904673, -0.0035166465677321, 0.0215315744280815, -0.012007737532258, -0.00629941327497363, 0.0076907966285944, -0.00681412545964122, -0.00224979035556316, 0.0165903363376856, 0.0414160676300526, -0.0350137129426003, -0.023191936314106, 0.000650861882604659, -0.00372585235163569, -0.00116889481432736, -0.0160457380115986, -0.00844128057360649, 0.0130039546638727, 0.00285250181332231, 0.00432358263060451, 0.000920670689083636, -0.00362955126911402, 0.00446969456970692, 0.0266454890370369, 0.00613005645573139, -0.0172146335244179, 0.0209205616265535, 0.0142525471746922, -0.018861711025238, -0.0066713341511786, 0.00891282316297293, 0.000634258263744414, -0.0100485105067492, -0.0052865925244987, -0.034588661044836, -0.000936444150283933, -0.00342698697932065, -0.00731223402544856, 0.00194594427011907, 0.000275412545306608, -0.00168360699899495, -0.00521353678777814, 0.00439331773668528, 0.0286379233002663, 0.0142923956736922, -0.0233513303101063, 0.00959689170122147, -0.00267816381528974, 0.00108670687768608, -0.0251710880547762, -0.0344823971390724, -0.023802949115634, -0.0204290933907032, -0.0325696617364883, 0.0129641061648726, -0.0162848308682442, -0.0300193447619677, 0.00266654137521982, 0.0155144222080708, 0.00851433631032705, 0.0138806262984872, 0.223790228366852, -0.0138806262984872, -0.00463573075830936, 0.0460119508206844, 0.00623964006081223, 0.00408449023962021, 0.0291692391037941, 0.00299363257363439, -0.0207877326756716, -0.00769743788987398, 9.39661113079637e-05, 0.00078203045995906, -0.0388126224279404, -0.00761774089187384, 0.00392841640859842, -0.0208142977207899, -0.0455337651073933, -0.0227934494614601, -0.0214385930448771, 0.0423458702862263, 0.0232185013592243, -0.0170818045735359, -0.0136680994182825, -0.0277878176420927, -0.00737200723960996, 0.00965666491538286, -0.014850277453661, 0.0247991662472486, 0.026446245610714, 0.0311882384121418, -0.0422927401959896, 0.0140400202944875, 0.00818890519440174, 0.010686089284718, 0.0103739416226745, -0.000229960132855922, 0.0142259811982512, 0.00895931292325258, 0.0221160221844912, 0.0321446061134338, 0.0281863044947386, 0.00754468468949199, -0.0321977399289608, -0.0345089621841908, 0.0199110601097345, 0.029913080856204, -0.0199907571077347, 0.00591420941054821, -0.0220761727541685, 0.011768645606935, -0.0172677636146545, -0.0222754161804914, 0.019060954451561, 0.0198844950646162, 0.00721925357356668, -0.00292223715223372, 0.0135751189664006, 0.0109716719016433, 0.0144916391000152, -0.010380582883954, 0.0070598591119051, 0.0326493568718433, -0.0218902118504047, 0.00555557105690241, -0.0207877326756716, 0.019937627017498, 0.00490138866007328, 0.0122335469350219, 0.01899453997612, -0.0146377515047789, -0.00653850520029664, 0.00814241543412209, -0.00956368446350098, -0.0129906721413136, -0.0191140864044428, -0.0388391874730587, 0.00339211942628026, 0.0206549037247896, 0.0212393496185541, 0.00589760579168797, -0.015022954903543, 0.0111642740666866, 0.000706899096257985, -0.0234310273081064, 0.0114432144910097, 0.00220994185656309, 0.0147572970017791, 0.00836822390556335, -0.0192734822630882, -0.0169755406677723, 0.00963009893894196, -0.0125921852886677, -0.0147307310253382, -0.00688718119636178, -0.00980941858142614, 0.0129574649035931, 0.0138939088210464, 0.0196586847305298, -0.00990239903330803, 0.00291891628876328, -0.0152089158073068, 0.0167364478111267, 0.014956540428102, -0.00368932425044477, 0.00945742148905993, -0.0166567508131266, -0.00219665886834264, 0.0261008907109499, 0.00693367142230272, -0.00534968636929989, 0.0192469153553247, -0.0163113959133625, 0.0086803724989295, 0.0110115204006433, 0.00130504451226443, -0.00537625188007951, 0.00721261231228709, 0.00208043353632092, 0.0346417911350727, -0.0108189182356, 0.0037690217141062, -0.0229661259800196, -0.00105100916698575, 0.00436343112960458, 0.00469882413744926, -0.018038172274828, -0.00233944994397461, 0.0044165626168251, -0.00518365018069744, -0.00943085551261902, -0.0021036786492914, 0.00860731676220894, 0.0302053056657314, -0.0042970166541636, -0.0136680994182825, 0.00097546266624704, 0.00907221809029579, 0.0191805008798838, -0.0239224955439568, 0.0121272839605808, -0.0117553630843759, -0.00789004005491734, 0.0175068564713001, -0.0148768434301019, 0.014544771052897, -0.0184366591274738, 0.0228465814143419, -0.00632265815511346, -0.0149698238819838, -0.0260477587580681, -0.0201501529663801, 0.020960409194231, 0.00530983740463853, -0.00575149385258555, 0.000449958082754165, 0.0157136656343937, -0.0461979098618031, -0.00792324729263783, -0.0214253105223179, 0.00092814234085381, -0.0465963967144489, -0.0141728492453694, 0.0404596999287605, -0.0128113524988294, -0.0276284236460924, 0.00434350688010454, -0.168639644980431, 0.0157933626323938, -0.000777049397584051, -0.0228465814143419, 0.0429037548601627, 0.00899252016097307, 0.0018463225569576, -0.0124992048367858, 0.0083815073594451, 0.000378977623768151, 0.0247194692492485, -0.010752503760159, -0.036687359213829, -0.0229661259800196, 0.00683404970914125, -0.00441988371312618, -0.0499968193471432, 0.0335260294377804, 0.024148304015398, 0.0120940767228603, 0.00408449023962021, -0.024692902341485, -0.0138673428446054, -0.0470745824277401, 0.0175068564713001, 0.00676763523370028, 0.000311110314214602, 0.0198180805891752, -0.0107657872140408, -0.0171880666166544, -0.00631601689383388, -0.0230458248406649, 0.0219566263258457, 0.0219034943729639, 0.017905343323946, -0.0249851271510124, -0.0155808366835117, -0.0101680569350719, -0.0149299744516611, 0.0120807932689786, 0.0365013964474201, 0.0108654089272022, -0.00224813004024327, -0.00339377974160016, 0.0115428362041712, 0.00271635223180056, -0.00747162895277143, -0.0070000858977437, 0.0194860082119703, -0.0195125732570887, 0.0152487643063068, -0.0227536000311375, -0.0141728492453694, 0.0223019812256098, 0.00933787599205971, 0.0190742388367653, -0.0187155995517969, 0.00364283425733447, -0.00123613944742829, -0.00907221809029579, 0.00421731919050217, -0.00444312859326601, 0.0139736058190465, -0.00988247431814671, -0.0057382108643651, -0.027469027787447, -0.0118284188210964, 0.00545594934374094, -0.0364217013120651, 0.0108986161649227, -0.00260012689977884, -0.00747162895277143, -0.00226971483789384, -0.0391048453748226, -0.0134290074929595, -0.0123066026717424, -0.0207877326756716, -0.00698680290952325, -0.0228997115045786, -0.0139868892729282, -0.00731223402544856, 0.0354918986558914, -0.0134555734694004, 0.0028541621286422, -0.00126104487571865, 0.0163910929113626, 0.00980941858142614, 0.0342698693275452, -0.0130305206403136, -0.0200571715831757, 0.0176529679447412, -0.0266322065144777, -0.00704657612368464, 0.00189613341353834, 0.0165372043848038, 0.0186890345066786, 0.00754468468949199, 0.0296739898622036, -0.0112439710646868, -0.0121936984360218, -0.00555225042626262, 0.00367272063158453, -0.0359700806438923, 0.00143621314782649, 0.0160191729664803, 0.0165239218622446, 0.00588100217282772, 0.0164176598191261, 0.036820188164711, -0.000850105308927596, -0.0214253105223179, 0.0180647373199463, 0.0138407768681645, 0.0417879894375801, -0.000925651809666306, 0.0198180805891752, 0.01003522798419, -0.00172013498377055, -0.00461248541250825, 0.0197649486362934, 0.0341901741921902, 0.0120807932689786, -0.0178654938936234, -0.00491799227893353, -0.0116026094183326, -0.0494655035436153, -0.11051369458437, -0.014478356577456, -0.015394875779748, 0.0220894552767277, 0.00401475513353944, 0.0216112714260817, -0.0109318234026432, 0.0312413703650236, -0.0187554489821196, 0.0363951325416565, 0.00977621134370565, -0.0339510813355446, 0.00987583305686712, -0.00191771809477359, 0.0343761332333088, 0.00949062872678041, -0.0396361611783504, -0.0138407768681645, -0.043195977807045, 0.0424255691468716, -0.021026823669672, -0.0233778972178698, 0.0121737737208605, -0.00504417950287461, 0.00116972497198731, -0.00518032955005765, -0.0141861326992512, 0.00297536863945425, 0.023802949115634, -0.00734544126316905, 0.026313416659832, 0.00186126574408263, 0.0136282509192824, -0.0163645278662443, -0.0176795348525047, -0.0038155117072165, -0.0353325009346008, 0.0136813828721642, -0.000681993667967618, -0.00917848106473684, -0.000630107359029353, -0.00525006465613842, 0.0137743623927236, -0.0450290180742741, 0.00238095899112523, -4.54264663858339e-05, -0.0155808366835117, -0.0117553630843759, 0.00775056984275579, -0.0096699483692646, -0.0101215662434697, 0.0198579281568527, -0.015939474105835, -0.0121604911983013, -0.0177990794181824, 0.00795645453035831, 0.00246729794889688, -0.00233114813454449, -0.00954376067966223, -0.00137062883004546, -0.000365279644029215, 0.0051670465618372, -0.0161652844399214, -0.00710634933784604, -0.00915191508829594, -0.0156871005892754, -0.029089542105794, -0.0190343894064426, 0.00455603329464793, -0.0286644883453846, -0.0297271199524403, 0.02618058770895, -0.00992896407842636, 0.0150495208799839, -0.0233646128326654, 0.0162449814379215, -0.0175467059016228, -0.0266322065144777, 0.0193531792610884, 0.00980941858142614, -0.043195977807045, -0.0215182919055223, 0.0131699908524752, 0.00539617659524083, 0.0227536000311375, 0.0225543566048145, -0.0149831064045429, 1.60717845574254e-05, -0.0279206465929747, -0.0160324554890394, 0.00943749770522118, 0.0213588960468769, 0.0193000473082066, 0.0161254350095987, -0.00572492787614465, 0.0286644883453846, 0.00255031604319811, -0.0070000858977437, 0.0115893268957734, 0.0329947136342525, -0.0211995020508766, -0.010446997359395, -0.0555756352841854, 0.0292489361017942, -0.0109185399487615, -0.0181710012257099, -0.0136548168957233, -0.00679088057950139, -0.00379226682707667, -0.0284785274416208, 0.0107192965224385, 0.00442652497440577, -0.00257522147148848, 0.0155941192060709, -0.00200903788208961, 0.0023261671885848, -0.00974964536726475, -0.00500101037323475, 0.0157003831118345, 0.000241790214204229, 0.000327713933074847, -0.0166169032454491, 0.0134090827777982, 0.00274789915420115, 0.0199907571077347, 0.0230989549309015, -0.00163794704712927, 0.00240918528288603, -0.040008082985878, 0.0223816800862551, 0.00889953970909119, -0.0310554094612598, 0.00418743304908276, -0.0243608299642801, 0.00676099397242069, 0.0156206851825118, -0.000491882208734751, -0.0213721785694361, -0.00866708904504776, -0.0057382108643651, 0.0233380477875471, 0.0106395995244384, -0.0148635599762201, -0.0203361138701439, -0.00314306514337659, -0.0147971455007792, -0.0176529679447412, -0.015089369378984, 0.0148768434301019, -0.00623299879953265, 0.00850105285644531, 0.018317112699151, 0.00513051822781563, 0.0148768434301019, -0.0156605336815119, -0.0352793708443642, -0.0136680994182825, -0.0326493568718433, 0.0199243426322937, 0.0140798697248101, 0.00180149276275188, -0.0178920608013868, 0.0416020303964615, 0.0201634354889393, 0.0120542282238603, 0.0160324554890394, 0.0176529679447412, 0.00619315030053258, -0.0119147570803761, 0.00309989578090608, 0.00122949806973338, 0.000870029674842954, -0.00118881918024272, -0.0247327517718077, 0.00787011533975601, 0.0122800366953015, 0.0131367836147547, -0.000487316225189716, -0.0067277867347002, -0.00221160217188299, -0.017360744997859, 0.023258350789547, -0.0235107261687517, -0.0113768000155687, -0.00741185573861003, 0.031613290309906, 0.0100950002670288, 0.0232317838817835, -0.0111841978505254, 0.0051670465618372, -0.00227303546853364, 0.00502757588401437, -0.0162715464830399, 0.00804279372096062, 0.00725246127694845, -0.00511391460895538, 0.0196586847305298, 0.00240088347345591, -0.0109384646639228, 0.0287707522511482, -0.00365279638208449, 0.0135087044909596, 0.024892145767808, -0.0108919749036431, -0.00097961351275444, -0.0079630957916379, -0.00330079952254891, 0.0157269481569529, -0.0117819281294942, -0.0160058885812759, -0.0136548168957233, 0.00694695441052318, 0.0122003396973014, 0.0136415334418416, 0.011835060082376, 0.0160723030567169, -0.0228598639369011, 0.00780370132997632, -0.00808264221996069, -0.0054659117013216, -0.00957696791738272, 0.0640235543251038, 0.0207346007227898, -0.0153815932571888, 0.011768645606935, 0.000664144812617451, 0.0431694127619267, 0.00408116960898042, -0.00102195283398032, -0.00265491870231926, 0.0012776484945789, 0.0301521737128496, -0.000551655248273164, 0.0157933626323938, -0.0111841978505254, -0.0154745737090707, -0.0104602808132768, -0.00596734089776874, -0.00585775682702661, 0.0345089621841908, 0.0169091261923313, 0.0556287653744221, 0.032755620777607, 0.00137311930302531, 0.0197383835911751, 0.00768415536731482, 0.00885969121009111, 0.0165637712925673, 0.00184964318759739, -0.0229528434574604, -0.0163379609584808, 0.0304443966597319, -0.00401807576417923, -0.00243575102649629, -0.00850769504904747, -0.0124394316226244, 0.0107126552611589, 0.00393505766987801, 0.0110248038545251, -0.0256758369505405, 0.0324368327856064, 0.0253437645733356, 0.017294330522418, 0.0289301462471485, 0.00583783257752657, -0.00968987215310335, -0.0176795348525047, 0.0283191334456205, -0.0063691483810544, -0.0281066074967384, -0.0331541076302528, -0.00785683281719685, -0.00773728685453534, -0.0284785274416208, 0.0130570866167545, 0.00329249771311879, 0.00430033728480339, -0.0169356912374496, -0.00347347720526159, 0.0248124487698078, -0.00421067792922258, -0.00947734620422125, 0.0237763840705156, -0.00749819446355104, -0.0193664617836475, 0.0170286726206541, 0.0254898760467768, -0.00438335537910461, -0.0184632241725922, -0.0357309877872467],id:"54b1e46662f5cdeeabfc0b535325a241",source:"state_of_union.txt",text:"So let’s not wait any longer. Send it to my desk. I’ll sign it.
And we will really take off.
And Intel is not alone.
There’s something happening in America.
Just look around and you’ll see an amazing story.
The rebirth of the pride that comes from stamping products “Made In America.” The revitalization of American manufacturing.
Companies are choosing to build new factories here, when just a few years ago, they would have built them overseas.
That’s what is happening. Ford is investing $11 billion to build electric vehicles, creating 11,000 jobs across the country.
GM is making the largest investment in its history—$7 billion to build electric vehicles, creating 4,000 jobs in Michigan.
All told, we created 369,000 new manufacturing jobs in America just last year.
Powered by people I’ve met like JoJo Burgess, from generations of union steelworkers from Pittsburgh, who’s here with us tonight."})
(:Chunk{embedding:[-0.0189552493393421, -0.0215614270418882, 0.00692518148571253, 0.00391598511487246, -0.0158117134124041, 0.00111081649083644, -0.0111165614798665, 0.00498733948916197, -0.0311666745692492, -0.0244765859097242, 0.0168864261358976, 0.020822562277317, 0.0131249316036701, 0.0201239995658398, -0.00107387325260788, 0.00245168874971569, 0.0323219895362854, 0.0139981359243393, 0.0300650931894779, -0.0140518713742495, -0.0183641575276852, -0.0256587713956833, 0.0177461970597506, 0.000489498139359057, -0.029017249122262, -0.00711325602605939, 0.0429347790777683, -0.00944403931498528, 0.0047085857950151, -0.00390255125239491, -0.00558850727975368, -0.0173297449946404, -0.017813365906477, 0.00303606386296451, -0.0235899481922388, -0.0421556122601032, -0.0162550322711468, -0.0177461970597506, 0.0128293856978416, -0.0265991445630789, 0.0168461240828037, -0.0198150184005499, 0.00818796921521425, 0.00509816920384765, -0.0156370736658573, -0.000405116385081783, -0.00995452795177698, 0.00673374813050032, -0.0044734925031662, 0.0136085525155067, 0.020271772518754, 0.0165505781769753, -0.0353311859071255, -0.0334504395723343, -0.0032879498321563, -0.00603854330256581, -0.0125875752419233, 0.0228779502213001, -0.0111971646547318, -0.0118890115991235, 0.00718714250251651, 0.0192373618483543, -0.0292053241282701, 0.00891340058296919, -0.0164431072771549, -0.0169267281889915, -0.0149519434198737, 0.0107807135209441, 0.0206210538744926, -0.00790585670620203, 0.0270021613687277, 0.0418600663542747, 0.0234018731862307, 0.0102769425138831, -0.00881264545023441, 0.00175648392178118, -0.0177461970597506, -0.0152877913787961, 0.0139981359243393, 0.00543065881356597, 0.0434990040957928, 0.0141996443271637, -0.0134607795625925, 0.0105523373931646, 0.0288291741162539, 0.00548103591427207, -0.0142668141052127, 0.0354386568069458, -0.0089469850063324, -0.0191030222922564, 0.00835589319467545, 0.0265454091131687, 0.0160803925246, 0.0304412432014942, 0.0110493917018175, 0.0164968427270651, -0.00463134096935391, 0.0204329788684845, 0.01722227409482, -0.0525803305208683, 0.0184447597712278, -0.00567246926948428, -0.0166446156799793, -0.001899219234474, -0.00215446343645453, 0.00378164602443576, -0.0134540619328618, -0.00990750920027494, 0.0186865702271461, -0.0263035986572504, 0.0062165423296392, -0.00447013415396214, 0.0200568288564682, -0.0289635136723518, 0.0241944752633572, 0.00642812671139836, -0.00621318398043513, 0.000201928472961299, 0.00587397767230868, -0.0142533797770739, 0.0128159513697028, -0.000634752330370247, 0.0111837312579155, 0.00990079250186682, 0.0138637963682413, -0.0224480666220188, -0.0470992922782898, 0.00182701193261892, 0.0261289570480585, -0.00217293505556881, 0.0205001495778561, 0.0405704118311405, -0.0051686973311007, -0.0111770145595074, -0.0112105989828706, -0.0021443881560117, -0.0356804691255093, 0.00729461386799812, -0.00444998312741518, -0.0125741409137845, -0.00461118994280696, -0.00334504386410117, -0.0091484934091568, -0.0133465910330415, 0.00991422683000565, 0.00519556505605578, 0.0310592036694288, 0.0319727100431919, 0.00428205914795399, -0.000701502081938088, 0.000969760469160974, -0.0140921734273434, 0.0138637963682413, -0.0042887763120234, 0.00509145250543952, 0.0251751504838467, 0.0173431802541018, 0.0118419928476214, -0.00950449239462614, 0.0116539178416133, 0.017087934538722, -0.00200836965814233, 0.0123995002359152, 0.0104582998901606, -0.0202046018093824, 0.0216285977512598, -0.00479254778474569, -0.00245672650635242, -0.00533997965976596, 0.0306561850011349, 0.00604861881583929, 0.018995551392436, -0.0394150950014591, 0.0331011563539505, -0.0111299958080053, 0.0349281691014767, -0.0106799593195319, 0.0257125068455935, -0.0134473452344537, -0.0290978513658047, -0.00327451596967876, 0.00140888150781393, 0.0346326231956482, 0.0338803231716156, 0.0110359583050013, 0.00471194460988045, 0.0482008755207062, 0.00837604328989983, 0.0143339829519391, -0.0202583391219378, 0.0028395929839462, 0.0310054682195187, -0.0165908802300692, -0.0234018731862307, -0.633220851421356, -0.0289903804659843, -0.00808721501380205, 0.00998811330646276, -0.0103105269372463, 0.000790921505540609, -0.0135010806843638, 0.015986355021596, -0.0280768740922213, 0.0274051800370216, -0.00630050431936979, -0.00608556205406785, -0.0193851348012686, -0.0251079797744751, 0.00444998312741518, -0.0274454802274704, 0.0131988180801272, -0.0109217697754502, -0.0217226352542639, -0.0117882573977113, -0.0182298179715872, 0.0383941195905209, -0.0210375059396029, 0.00550790363922715, 0.0144280204549432, 0.0212658811360598, 0.000166454556165263, -0.0100619997829199, -0.0005717808380723, -0.00194455869495869, -0.023509344086051, 0.0229316875338554, -0.0175581220537424, 0.00866487249732018, 0.0516936890780926, 0.00255244318395853, -0.0122853117063642, 0.00714012375101447, 0.0310323350131512, 0.019317964091897, -0.0108949020504951, -0.00994781125336885, 0.0014886453282088, -0.0100821508094668, 0.0250005088746548, -0.000142945209518075, -0.00468507641926408, 0.013554816134274, 0.0204732809215784, -0.0286410991102457, 0.00825513806194067, 0.0216420311480761, 0.0152071872726083, -0.00542058330029249, 0.0211718436330557, -0.00446005864068866, -0.00967913307249546, -0.0345788896083832, 0.0148847736418247, -0.00484628370031714, 0.00480934046208858, 0.0190492868423462, -0.0235630813986063, -0.0117949740961194, -0.0463469959795475, 0.0340415313839912, -0.0284530241042376, -0.00125355180352926, 0.0105456206947565, 0.00546424323692918, -0.0191030222922564, 0.00889996625483036, -0.00392941897735, 0.00947762466967106, 0.00319391232915223, -0.0126345939934254, 0.0249467734247446, -0.00894026830792427, -0.00729461386799812, 0.0254035256803036, -0.000510908430442214, -0.0172760095447302, -0.00943732261657715, -0.021547993645072, 0.0275932531803846, -0.00810064841061831, -0.0226092729717493, -0.0326981395483017, -0.00329130818136036, -0.0130107430741191, -0.0178805366158485, 0.0124196512624621, -0.00122332549653947, -0.0257125068455935, 0.00375477829948068, 0.0243019461631775, 0.00346930767409503, 0.0114255417138338, 0.0358148068189621, 0.00532654579728842, -0.0072543122805655, 0.00358349573798478, -0.00930970069020987, 0.0116270501166582, 0.0064415605738759, 0.0354117900133133, 0.00728789670392871, 0.00806034635752439, 0.0183641575276852, -0.0255916006863117, -0.0127487815916538, -0.0140653047710657, -0.0111098447814584, -0.0103776967152953, -0.0130913462489843, -0.0242885109037161, 0.025739373639226, -0.00443654926493764, -0.00917536113411188, -0.0105321863666177, 0.0155296018347144, 0.0117546720430255, 0.0102567914873362, -0.0141324745491147, -0.00984705705195665, -0.0124398022890091, 0.00939702056348324, -0.00139376835431904, 0.0052190744318068, -0.0154489977285266, 0.00868502352386713, -0.00274723488837481, 0.0428004413843155, 2.51754645432811e-05, 0.0172357074916363, 0.0107202613726258, 0.00652216374874115, -0.0210643727332354, 0.0238854940980673, -0.046696275472641, 0.00893355067819357, 0.000156693975441158, 0.00469515193253756, -0.0159729197621346, 0.000155014742631465, -0.0387433990836143, -0.0120770866051316, 0.00239795306697488, 0.00786555465310812, 0.0021108032669872, -0.0045742467045784, -0.023737721145153, -0.00838947761803865, 0.0144280204549432, -0.0179880075156689, 0.00325940269976854, 0.000299114442896098, -0.0117546720430255, -0.0252423193305731, -0.0150459809228778, -5.98884798819199e-06, 0.0191701911389828, -0.0223002936691046, 0.00773793272674084, -0.0253229234367609, -0.00906789023429155, -0.0100552830845118, 0.00254068849608302, -0.0236033815890551, -0.00761031080037355, -0.00161542778369039, -0.0170745011419058, -0.00200836965814233, -0.00773121602833271, 0.0275932531803846, -0.00337862875312567, -0.0176387261599302, 0.0251348484307528, -0.00778495147824287, 0.00526273483410478, 0.0218704082071781, 0.0131182139739394, -0.015059414319694, -0.008745476603508, 0.0271902363747358, 0.00101509992964566, 0.0235899481922388, 0.00787898898124695, 0.000475644425023347, 0.0285336282104254, 0.00834917556494474, 0.0202583391219378, -0.0215211268514395, 0.017947705462575, -0.00505115045234561, -0.000915185199119151, -0.0147370006889105, -0.0203658100217581, 0.0262498632073402, -0.0137294577434659, 0.013554816134274, 0.0032543649431318, -0.0109822228550911, 0.0104112811386585, 0.00647850381210446, -0.0242616441100836, 0.0203658100217581, -0.0306293182075024, -0.000579337414819747, 0.0332892313599586, 0.00231902883388102, -0.0391464158892632, -0.00536348903551698, -0.028882909566164, 0.0181492138653994, 0.0350893773138523, -0.0161744300276041, 0.0262901652604342, -0.0109486375004053, -0.0010663167340681, 0.00316536542959511, 0.00893355067819357, 0.0175178200006485, -0.0108344499021769, -0.0194388702511787, 0.0083693265914917, 0.00330810062587261, 0.0221525207161903, 0.0144280204549432, -0.0110493917018175, -0.00228040642105043, 0.0238451920449734, 0.000639790028799325, 0.0329399518668652, 0.0156639404594898, -0.0242750775068998, 0.00721401022747159, -0.00773121602833271, 0.0550253018736839, 0.000195631335373037, 0.00589412869885564, 0.018498495221138, 0.00298568676225841, 0.0177730638533831, 0.00216453894972801, -0.00454402063041925, 0.0512638054788113, 0.0151668861508369, -0.016899861395359, 0.0159191843122244, -0.00892683397978544, 0.00938358716666698, -0.00625684438273311, -0.00537356454879045, 0.00877234432846308, -0.0339609272778034, 0.00692518148571253, -0.00261961272917688, 0.0276469886302948, 0.027512650936842, 0.0225421041250229, -0.00896713603287935, 0.00524594215676188, -0.0126816127449274, 0.00944403931498528, 0.0152340559288859, -0.0280500072985888, -0.000599068473093212, -0.0114524094387889, 0.0232406668365002, -0.0220316145569086, 0.00331481755711138, -0.0139309661462903, -0.0158385820686817, 0.0346057564020157, 0.0112441834062338, -0.00834917556494474, -0.0109284864738584, 1.34470301418332e-05, -0.000209065241506323, -0.00806034635752439, -0.0286679659038782, 0.0018723513931036, 0.0238048899918795, -0.0357073359191418, -0.0257662422955036, -0.00199157744646072, 0.00967241637408733, -0.0036103636957705, 0.0166043136268854, -0.0061325803399086, 0.00234589679166675, -0.0114456927403808, 0.0138100609183311, 0.0119897658005357, 0.00466492585837841, 0.034766960889101, -0.022918252274394, 0.0175984241068363, -0.00854396726936102, -0.00483620818704367, -0.0151400184258819, 0.00770434830337763, 0.00873204227536917, 0.018767174333334, 0.00921566318720579, 0.00813423376530409, 0.0036943256855011, 0.00152139051351696, 0.00635759858414531, 0.0362984277307987, -0.0237645898014307, 0.00778495147824287, 0.00780510250478983, -0.00105624133720994, -0.0069453320465982, -0.00664978614076972, -0.0123524814844131, 0.0171282365918159, 0.0127689326182008, -0.00139040977228433, -0.00697219977155328, -0.0331817604601383, 0.020137432962656, 0.132297158241272, 0.03662084415555, -0.00217797281220555, 0.00804019626230001, 0.0286948345601559, 0.00640797568485141, -0.00692518148571253, -0.0367014445364475, -0.00215782201848924, -0.0194791723042727, 0.0125875752419233, -0.00867159012705088, 0.00755657535046339, -0.00965226534754038, -0.0120703689754009, -0.00869845785200596, 0.000674214446917176, -0.022004745900631, 0.0223808959126472, -0.0195463411509991, -0.0092559652402997, 0.00955151114612818, -0.0227301772683859, 0.0224346313625574, -0.00400666426867247, 0.0299576222896576, 0.0223137270659208, 0.0203255079686642, 0.0267737861722708, 0.00361708062700927, -0.0175849907100201, -0.00998139567673206, -0.0106396581977606, -0.00929626636207104, -0.0169804636389017, -0.00767748011276126, 0.00117546727415174, -0.00727446284145117, 0.0162550322711468, 0.00193280400708318, -0.0188343431800604, 0.00802004523575306, 0.011391956359148, -0.0180820450186729, -0.00522243324667215, -0.0136757213622332, 0.00718042580410838, 0.0160938259214163, -0.0216285977512598, -0.0265051070600748, 0.036996990442276, -0.00918879546225071, -0.0232003647834063, -0.0236839856952429, -0.00953807681798935, 0.000596549652982503, 0.00920894648879766, 0.0171685386449099, -0.0180148743093014, 0.00243825488723814, -0.00730804773047566, -0.0114725604653358, 0.00936343614012003, -0.00247351895086467, -0.0143877193331718, -0.00108898640610278, 0.0156908091157675, 0.0113180698826909, -0.0146698309108615, 0.0138772306963801, 0.0188074763864279, -0.0144280204549432, -0.0219913125038147, -0.000286730035440996, 0.0137093067169189, 0.000340675585903227, -0.00497054727748036, -0.00723416125401855, 0.0301456972956657, -0.0301456972956657, 0.00861785374581814, -0.0480934008955956, 0.0134809296578169, -0.0248930379748344, 0.00458432221785188, -0.0146160954609513, 0.00571612920612097, -0.00752299046143889, -0.0177327636629343, 0.0220181811600924, 0.00561873335391283, 0.0143877193331718, 0.0242213420569897, 0.00132407993078232, -0.00082786480197683, 0.0105993561446667, 0.0118554271757603, 0.00226697255857289, 0.00899400375783443, -0.0159326195716858, 0.0074558206833899, 0.0132525535300374, -0.00865143910050392, -0.0200299620628357, 0.0122047085314989, -0.0318115018308163, 0.0102097727358341, -0.00852381717413664, 0.0143205495551229, -0.010088867507875, 0.0218435395509005, -0.00760359363630414, -0.0274723488837481, -0.00909475795924664, -0.00824842136353254, -0.000895873934496194, -0.00813423376530409, 0.00178335176315159, 2.71039662038675e-05, 0.00258434866555035, -0.0127353481948376, -0.0180283095687628, 0.0157579779624939, 0.0194791723042727, -0.00450707739219069, 0.00482949102297425, -0.00193280400708318, -0.0425586327910423, -0.0309248641133308, -0.0176387261599302, -0.0261155236512423, 0.026693182066083, 0.00129385362379253, -0.0221122186630964, -0.0119427470490336, 0.00307300733402371, -0.0156908091157675, 0.0148579059168696, -0.0162550322711468, -0.0126883294433355, -0.0147907361388206, -0.00496047176420689, 0.00691846432164311, -0.0300919618457556, 0.016993897035718, -0.0355998650193214, 0.0304949786514044, 0.0020520300604403, 0.00543065881356597, 0.0367283150553703, 0.0123995002359152, -0.00936343614012003, -0.0184716284275055, 0.00544073432683945, 0.00965226534754038, -0.040221132338047, 0.00668001221492887, -0.0105590540915728, 0.00620982563123107, 0.0105859218165278, 0.0475829131901264, -0.0180148743093014, -0.0100754331797361, -0.0127823669463396, 0.0204195454716682, -0.00502092437818646, 0.00675725750625134, 0.0152877913787961, -0.0155699029564857, 0.0248930379748344, -9.94949077721685e-05, 0.0114725604653358, -0.0129435732960701, -0.011391956359148, 0.00415779557079077, 0.012164406478405, -0.0102635081857443, 0.00327283656224608, -0.0320801809430122, -0.0257528088986874, -0.0207822602242231, -0.00655574863776565, -0.0121778408065438, 0.0270961988717318, -0.0134540619328618, -0.0309517309069633, 0.0343370772898197, 0.00329298758879304, 0.0354923941195011, 0.0100619997829199, 0.0262364279478788, -0.00654231477528811, 0.0171013697981834, -0.0172088406980038, -0.00791929103434086, -0.0325100645422935, -0.0306024495512247, -0.0152071872726083, 0.00453394511714578, 0.00354655249975622, 0.00859770365059376, -0.00132072146516293, -0.015946052968502, -0.00160619197413325, 0.0184716284275055, 0.031247278675437, -0.00831559114158154, -0.0191030222922564, -0.000322203966788948, -0.0171416699886322, 0.0205135829746723, -0.0521773099899292, -0.0249064713716507, -0.0245437566190958, 6.2131839513313e-05, 0.00959852989763021, -0.0220181811600924, -0.00394285283982754, -0.0116337668150663, -0.0191030222922564, -0.0175984241068363, -0.00542394164949656, -0.00668001221492887, -0.0125271221622825, 0.0301188286393881, 0.0113785229623318, -0.00977988727390766, -0.0146026620641351, -0.010021697729826, 0.00814095046371222, -0.00276570650748909, 0.0123256137594581, -0.00268678227439523, -0.0183507222682238, -0.00472873682156205, -0.00513175409287214, 0.0118151251226664, 0.00744910398498178, -0.040221132338047, 0.0344176813960075, 0.0150459809228778, -0.0177730638533831, -0.0172760095447302, -0.0209434684365988, 0.0221256520599127, -0.00757672591134906, -0.00423168204724789, -0.0132861379534006, -0.0160400904715061, -0.019317964091897, 0.00489330198615789, 0.00504443375393748, -0.0146832652390003, 0.0555626563727856, 0.0142533797770739, -0.0357073359191418, -0.0138637963682413, -0.00603518448770046, 0.00605533551424742, 0.010001546703279, 0.0134809296578169, 0.0261289570480585, -0.0273917447775602, 0.0270961988717318, -0.0145623600110412, 0.016402805224061, -0.0237242877483368, -0.0154892997816205, -0.0250408109277487, 0.0210106372833252, -0.0311935413628817, -0.00498062279075384, -0.0198150184005499, -0.00349617539905012, 0.00685465335845947, 0.0032375727314502, -0.0155161675065756, -0.00551797915250063, 0.0051519051194191, 0.0157714113593102, 0.0266663134098053, 0.00192272861022502, -0.0211718436330557, 0.00442983210086823, 0.00637103244662285, -0.0111031280830503, -0.0161744300276041, -0.00402345648035407, 0.0298770181834698, -0.0116539178416133, -6.59888428344857e-06, -0.00176991778425872, -0.00588741153478622, 0.00323421414941549, -0.00526273483410478, -0.0156908091157675, 0.00658261636272073, 0.00637774961069226, -0.0168864261358976, 0.0244362838566303, -0.00290172477252781, -0.000314227596390992, -0.000854732585139573, -0.0117546720430255, -0.00362043920904398, -0.0126950461417437, 0.00478583108633757, -0.0182969868183136, -0.0306561850011349, -0.0103575456887484, 0.00994781125336885, 0.00439288886263967, -0.0136152692139149, -0.00727446284145117, 0.00715355761349201, 0.0283455532044172, -0.00115615595132113, -0.0170476343482733, -0.00671695545315742, 0.0415913909673691, 9.59265234996565e-05, 0.0044399076141417, 0.0150056788697839, -0.00498733948916197, -0.0189418140798807, -0.0162550322711468, 0.00555492239072919, 0.0116001823917031, 0.00707967113703489, -0.00755657535046339, -0.000826605362817645, 0.0315696932375431, -0.00206714309751987, -0.0195329077541828, 0.0155699029564857, -0.00509816920384765, -0.00218301056884229, 0.0120032001286745, -0.0133801754564047, -0.0107135446742177, -0.00493024569004774, 0.00861785374581814, 0.0246646609157324, 0.0146026620641351, -0.00210744491778314, -0.00959181226789951, -0.0264648050069809, 0.00409734295681119, -0.00428541749715805, -0.0162281654775143, -0.000898392812814564, 0.0216420311480761, 0.0266797486692667, -0.00595122249796987, -0.0176387261599302, 0.0125741409137845, -0.0238989274948835, -0.013736174441874, 0.0190089847892523, 0.0186462681740522, 0.0348744355142117, 0.00240802858024836, -0.0067606158554554, 0.0389314740896225, 0.00502764154225588, 0.0102164894342422, 0.00317208236083388, 0.00795959215611219, 8.00262278062291e-05, 0.00272540468722582, 0.0026095372159034, 0.0303069036453962, -0.00161122973076999, -0.0110426750034094, 0.0158654488623142, 0.0277007259428501, 0.0127151971682906, 0.0316234268248081, 0.00767748011276126, -0.00640125898644328, -0.00252893380820751, 0.0171013697981834, 0.00736178364604712, -0.0123188970610499, 0.0199762266129255, -0.0497054718434811, -0.00353983556851745, 0.0159729197621346, 0.0248124338686466, -0.0208494309335947, -0.000484880234580487, 0.00838276091963053, -0.0232809688895941, -0.00563888438045979, -0.0012124105123803, -0.00697219977155328, 0.00539707392454147, -0.0414570495486259, 0.0207150913774967, 0.0195463411509991, -0.0153549602255225, 0.021910710260272, 0.0283992886543274, -0.0352505818009377, -0.022004745900631, -0.00098907167557627, 0.0278350636363029, 0.00250710360705853, -0.0021024071611464, -0.00100166606716812, 0.0178536679595709, -0.00206210534088314, 0.00124683487229049, -0.00203355844132602, 0.00749612273648381, -0.0361909568309784, 0.0108949020504951, -0.0176790282130241, 0.0118554271757603, -0.00136774010024965, -0.0138772306963801, 0.00550454529002309, -0.0254841297864914, -0.0205807518213987, -0.00456753000617027, -0.0368895195424557, -0.0095582278445363, -0.0135077983140945, 0.00615608971565962, -0.0178268011659384, 0.00899400375783443, -0.0171685386449099, -0.010021697729826, 0.0113516552373767, 2.66447987087304e-05, 0.0151668861508369, 0.234717294573784, 0.00391598511487246, 0.00627027824521065, 0.0283186845481396, 0.0133062889799476, -0.00429885182529688, 0.0243825484067202, -0.0100552830845118, -0.0188477784395218, -0.00592771358788013, -0.0251348484307528, 0.00386896636337042, -0.0127219138666987, 0.000434503075666726, -0.00120317470282316, -0.00951792579144239, -0.027109632268548, -0.00524930097162724, -0.0351431109011173, 0.0298232827335596, 0.0230660252273083, -0.00773793272674084, -0.0138369286432862, -0.0112307500094175, 0.0300919618457556, 0.00160283350851387, -0.0161475613713264, 0.010135886259377, 0.019183624535799, 0.00327619514428079, -0.0274857822805643, 0.0142936818301678, -0.0014155984390527, 0.00505786761641502, -0.0102366404607892, -0.00800661090761423, 0.00775808375328779, -0.00420145597308874, 0.00867159012705088, 0.0173431802541018, 0.0229451209306717, 0.0313547477126122, -0.00620310846716166, -0.0147370006889105, -0.00490673631429672, 0.0163893718272448, -0.0103239612653852, 0.00257931090891361, -0.00919551216065884, 0.00631057983264327, -0.0206882227212191, -0.00358685432001948, 0.0254841297864914, 0.0375343486666679, -0.000205916672712192, 0.000453814311185852, 0.0180283095687628, 0.0205404497683048, 0.00136102316901088, -0.010135886259377, 0.0197747182101011, 0.0298770181834698, 0.014374285005033, 0.013736174441874, -0.0260349195450544, 0.0368089154362679, -0.00220819911919534, 0.00865815579891205, 0.0190089847892523, -0.0116203334182501, 0.00784540455788374, -0.00873204227536917, -0.00453730346634984, -0.012983875349164, -0.0207016579806805, 0.00188746454659849, 0.01307119615376, 0.0249064713716507, 0.0264513716101646, 0.00906789023429155, -0.0300650931894779, 0.00726774614304304, -0.0166177488863468, -0.0102567914873362, 0.0164296738803387, -0.0342833399772644, -0.00139880599454045, -0.00519892387092113, -0.00943060591816902, -0.0229585543274879, 0.0192104931920767, -0.0073550664819777, -0.0145757934078574, -0.00844993069767952, 0.006115788128227, -0.00881936307996511, 0.0023794814478606, 0.0257662422955036, -0.0118151251226664, 0.00786555465310812, -0.00581016670912504, 0.0509145222604275, 0.00579337449744344, 0.0144280204549432, 0.0102366404607892, -0.00342396809719503, -0.00907460693269968, -0.00633073085919023, 0.0170610677450895, -0.0278619322925806, 0.0133734587579966, -0.00673374813050032, 0.0257931090891361, -0.00432571955025196, 0.0123323304578662, -0.00928954966366291, 0.0126883294433355, -0.0211852788925171, 0.0251885838806629, 0.00039315180038102, -0.00552469585090876, -0.0288023054599762, -0.00815438386052847, -0.00690503045916557, -0.01364213693887, -0.0238451920449734, -0.01364213693887, -0.00426862528547645, -0.00487315142527223, -0.0439557582139969, 0.011613616719842, -0.00384881556965411, -8.63233726704493e-05, -0.0400867909193039, -0.0216285977512598, 0.00849023181945086, 0.0126547440886497, -0.00459775608032942, 0.00848351512104273, -0.000795119616668671, -0.0115665979683399, -0.00219140667468309, 0.00336519489064813, -0.0176924616098404, 0.000120380442240275, -0.0112576177343726, 0.0176252909004688, 0.0129234222695231, -0.00286478153429925, -0.0163625031709671, -0.00793944206088781, 0.00343740195967257, -0.00453394511714578, -0.0228913854807615, 0.000146093792864121, -0.0180551763623953, -0.0495711341500282, 0.00620646681636572, 0.00074012455297634, 0.0169132947921753, -0.0376149527728558, 0.00912834238260984, 0.0299038868397474, -0.0197478495538235, -0.018041742965579, -0.0268812570720911, -0.170556932687759, 0.0225286688655615, 0.0122181419283152, -0.026787219569087, 0.0128428190946579, 0.00464141648262739, 0.0119091626256704, -0.00176823860965669, -0.0270558968186378, 0.0225555375218391, -0.00379172153770924, 0.00512839574366808, -0.0288560409098864, -0.00641133403405547, -0.0081678181886673, -0.00966569967567921, -0.0157982800155878, 0.00894026830792427, 0.00609227875247598, 0.00514182960614562, 0.00894026830792427, -0.0262229945510626, 0.00304278102703393, -0.023872060701251, 0.006844577845186, 0.0101493196561933, -0.0110090905800462, 0.0389852114021778, 0.0150862820446491, -0.0261826924979687, -0.025148281827569, -0.00369768403470516, 0.00275563099421561, 0.02432881295681, 0.00904102250933647, 0.0111031280830503, -0.0211449768394232, -0.0128562534227967, -0.019720982760191, 0.0530639514327049, 0.0327250063419342, -0.0016918332548812, 0.0130779128521681, -0.000120905198855326, -0.000618799531366676, 0.0202180370688438, -0.00286814011633396, -0.00285134767182171, 0.014508624561131, -0.0246377941220999, 0.0119964824989438, 0.00471194460988045, -0.0153146591037512, 0.0265319757163525, 0.00416451273486018, 0.0218301061540842, -0.00183204968925565, 0.00610235426574945, -0.00569933699443936, 0.00458096386864781, -0.0166043136268854, -0.015099716372788, 0.0103709800168872, 0.000317586062010378, -0.00419809715822339, 0.000180098373675719, -0.00191097392234951, -0.0099343778565526, -0.0152474893257022, -0.000994949019514024, -0.0136152692139149, -0.013736174441874, 0.00928954966366291, -0.00447685085237026, -0.0214539561420679, -0.00478583108633757, -0.0145892277359962, 0.010841166600585, -0.0213061831891537, 0.0244900211691856, -0.00125019333790988, 0.0325906686484814, -2.90455864160322e-05, -0.00853053387254477, -0.0104918843135238, 0.0161206927150488, 0.0143608516082168, 0.00269014085642993, -0.00820140261203051, -0.0190761536359787, 0.00347602460533381, -0.0107336947694421, -0.0133264400064945, 0.00465485034510493, 0.00594114745035768, 0.0104045644402504, 0.00715355761349201, 0.0342833399772644, -0.00267670676112175, -0.00724759511649609, 0.00391598511487246, 0.00111921271309257, -0.0282649490982294, 0.0219510104507208, 0.00700578466057777, 0.0226227063685656, 0.00502764154225588, 0.0106127895414829, 0.0155699029564857, 0.0106732426211238, -0.0189821161329746, 0.0104582998901606, 0.00889996625483036, 0.0330205522477627, 0.0111635802313685, -0.0103844134137034, 0.0245303213596344, 0.000533158367034048, 0.0179342720657587, -0.00568926148116589, 0.0214002206921577, -0.02318693138659, -0.0328324809670448, -0.0114927114918828, -0.000931137998122722, -0.0256319027394056, -0.128213256597519, -0.00949777569621801, -0.000808973331004381, 0.0167789552360773, -0.0015348243759945, 0.0084700807929039, -0.000132764820591547, 0.0216017290949821, -0.0127219138666987, 0.0267469175159931, -0.0190627202391624, -0.0211718436330557, -0.00243993406184018, 0.000985713209956884, 0.0245840586721897, 0.00615944853052497, -0.0216017290949821, 0.00976645387709141, -0.0356804691255093, 0.026424502953887, 0.00391934346407652, -0.0285873636603355, 0.00521571608260274, 0.00547767756506801, 0.0119964824989438, -0.00339542119763792, -0.0265857111662626, 0.00517205568030477, 0.00265991454944015, -0.0197344161570072, -0.0175581220537424, 0.0155833372846246, 0.0307636577636003, -0.0248796045780182, 0.00502764154225588, -0.0104717342182994, -0.0207553934305906, -0.0114188250154257, 0.00607212772592902, -0.0282918177545071, 2.71564422291704e-05, 0.0175178200006485, 0.00483620818704367, -0.0137025900185108, -0.0157176759094, -0.00693861534819007, -0.00901415478438139, 0.0260483548045158, -0.0079998942092061, -0.00609899591654539, -0.0200568288564682, 0.0075901597738266, -0.0205404497683048, -0.0307636577636003, 0.00185723823960871, 0.00362715614028275, -0.0155833372846246, 0.013051045127213, -0.00804019626230001, -0.00140972109511495, 0.0015768053708598, 0.0020570675842464, -0.0280231386423111, 0.00682778563350439, -0.00471194460988045, -0.00908132363110781, -0.00831559114158154, -0.0185253638774157, -0.0224883668124676, -0.0465350672602654, -0.0231600627303123, 0.0341221354901791, -0.015852015465498, 0.0340146645903587, -0.0230391584336758, 0.0121979918330908, -0.034390814602375, -0.00696548307314515, 0.0524997264146805, -0.00463134096935391, -0.0221659541130066, -0.0274589154869318, 0.00875219330191612, -0.0305487141013145, -0.00125774997286499, 0.0199762266129255, -0.0186597034335136, 0.0184447597712278, 0.00976645387709141, -0.0176790282130241, 0.0148713402450085, 0.0243153795599937, 0.0130443274974823, 0.00344915664754808, -0.012164406478405, 0.0225555375218391, -0.00249870750121772, -0.0117882573977113, 0.00557171460241079, 0.00282783829607069, -0.0458096377551556, -0.0286410991102457, -0.0341490022838116, 0.0180551763623953, -0.0114725604653358, -0.0211449768394232, -0.024006400257349, 0.0180283095687628, 0.0163222029805183, -0.000529799901414663, -0.00404024869203568, 0.0145220579579473, -0.0229854229837656, 0.0285336282104254, 0.00912162568420172, -0.0262364279478788, -0.0152743570506573, 0.00225353869609535, 0.0393613614141941, -0.00428541749715805, 0.0157042425125837, -0.00533326296135783, -0.00185220048297197, 0.0065255225636065, -0.0181895159184933, 0.0244362838566303, -0.020822562277317, -0.0100149810314178, -0.00755657535046339, 0.0472336336970329, -0.00682778563350439, -0.0360028818249702, 0.0272036697715521, -0.0232541002333164, 0.00219140667468309, 0.00674718199297786, 3.75467316189315e-05, -0.0015499375294894, -0.0121912742033601, 0.00508809369057417, 0.0104112811386585, 0.0227301772683859, -0.0120905200019479, -0.0329668186604977, -0.00540714943781495, -0.0177461970597506, -0.0148847736418247, -0.0223943293094635, 0.0243556816130877, 0.0234287418425083, -0.000723332166671753, 0.00162886176258326, 0.0383941195905209, 0.0255916006863117, -0.0165102761238813, -0.0147370006889105, -0.0126211596652865, -0.0301456972956657, -0.010706827044487, 0.0240735691040754, -0.00759687693789601, -0.0277007259428501, 0.0297695472836494, 0.00410070130601525, 0.0242079086601734, -0.0346326231956482, 0.0221928209066391, 0.00742223579436541, 0.000673794595059007, -0.00152223010081798, -0.00279929116368294, -0.0314084850251675, -0.00922909751534462, -0.0152206216007471, 0.00490001915022731, 0.00524594215676188, 0.00792600773274899, -0.0173431802541018, -0.0173431802541018, 0.000342774641467258, 0.00655239028856158, 0.030521847307682, -0.00287485704757273, -0.00838947761803865, -0.0437139458954334, 0.0112307500094175, 0.0190627202391624, 0.0163490697741508, 0.00160535238683224, -0.0128831211477518, -0.00653223926201463, 0.0212121456861496, -0.0184716284275055, -0.00168763508554548, -0.0127219138666987, -0.0114859938621521, 0.00763046182692051, 0.00785883795469999, -0.0188074763864279, 0.0136085525155067, 0.0110964104533195, 0.00920894648879766, 0.0374537445604801, -0.0152206216007471, -0.0208762977272272, 0.00394621165469289, -0.0170207656919956, 0.012211425229907, -0.0245437566190958, -0.00552805466577411, -0.00129553279839456, 0.0117210876196623, 0.0116472011432052, 0.00732819875702262, 0.00139964558184147, -0.000746421690564603, -0.00279761198908091, 0.0269887279719114, -0.0142533797770739, -0.0102164894342422, -0.00573628023266792, 0.034981906414032, 0.00559858232736588, 0.00369768403470516, -0.00174976699054241, 0.0202583391219378, 0.0225152354687452, 0.00186395517084748, 0.00943060591816902, -0.0172625761479139, -0.00347602460533381, 0.0077244988642633, 0.0167386531829834, -0.0177461970597506, -0.00467500137165189, -0.0185522306710482, 0.00832902546972036, -0.0219913125038147, -0.00321574253030121, 0.0303875077515841, -0.00604190165176988, 0.0453260168433189, -0.00744910398498178, -0.0150728486478329, 0.00317208236083388, 0.0104582998901606, 0.0107471290975809, 0.00373126892372966, -0.0145489256829023, 0.00851709954440594, -0.00687480391934514, 0.0314890891313553, -0.0194388702511787, 0.00262465048581362, -0.00310995057225227, 0.0066094845533371, 0.0054373755119741, 0.0109217697754502, 0.0184044577181339, -0.00586390215903521, 0.0124062169343233, 0.0191433243453503, 0.0146026620641351, 0.0276469886302948, 0.0123995002359152, -0.010021697729826, -0.0211987122893333, 0.0319727100431919, 0.00075145938899368, 0.000885798537638038, -0.0379373654723167, 0.00879921205341816, -0.00541722495108843, -0.0159997884184122, -0.00330138369463384, 0.0278081968426704, -0.0160266570746899, -0.013554816134274, 0.0192910972982645, 0.00944403931498528, -0.0160803925246, -0.018498495221138, 0.0121106710284948, -0.0120502188801765, -0.0489531718194485, 0.0159594863653183, 0.0188074763864279, 0.00173129537142813, -0.0128092346712947, -0.0169267281889915],id:"a851a535ec7c5c3ca2f3f65dfe75cd06",source:"state_of_union.txt",text:"As Ohio Senator Sherrod Brown says, “It’s time to bury the label “Rust Belt.”
It’s time.
But with all the bright spots in our economy, record job growth and higher wages, too many families are struggling to keep up with the bills.
Inflation is robbing them of the gains they might otherwise feel.
I get it. That’s why my top priority is getting prices under control.
Look, our economy roared back faster than most predicted, but the pandemic meant that businesses had a hard time hiring enough workers to keep up production in their factories.
The pandemic also disrupted global supply chains.
When factories close, it takes longer to make goods and get them from the warehouse to the store, and prices go up.
Look at cars.
Last year, there weren’t enough semiconductors to make all the cars that people wanted to buy.
And guess what, prices of automobiles went up.
So—we have a choice.
One way to fight inflation is to drive down wages and make Americans poorer."})
(:Chunk{embedding:[-0.0180016551166773, -0.00451380759477615, -0.0159925408661366, 0.016300605610013, 0.00521030044183135, 0.0176935903728008, -0.0172515846788883, -0.0147870732471347, -0.0254889503121376, 0.000916657911147922, 0.0189258456230164, 0.0222475808113813, -0.000512742437422276, 0.0106750885024667, 0.0139566399157047, -0.0107353618368506, 0.0257166493684053, -0.00583312520757318, 0.00887358374893665, -0.0294134169816971, -0.0112912161275744, -0.0105210561305285, 0.0349317826330662, -0.0016843065386638, -0.0142914922907948, -0.00611440138891339, 0.0107822408899665, -0.0101326275616884, 0.00447027711197734, -0.00339037855155766, 0.0150415608659387, -0.0159657523036003, 0.00222006998956203, 0.00439326092600822, -0.0154032008722425, -0.021818969398737, -0.0198902208358049, -0.0134208761155605, 0.0401822626590729, -0.0288776531815529, 0.0217252112925053, -0.0185642056167126, 0.0142780980095267, -0.00148758094292134, -0.0258639845997095, 0.00788242090493441, -0.0117667065933347, 0.0101125361397862, 0.00170774618163705, 0.0258505903184414, 0.0170238856226206, 0.0214171465486288, -0.0219395160675049, -0.0169837027788162, -0.0123828342184424, -0.000235861516557634, -0.0184302646666765, 0.0139432456344366, -0.024270087480545, -0.00457408092916012, 0.00120044511277229, 0.0278864912688732, -0.038655336946249, 0.0198366437107325, -0.0122823789715767, -0.00995850469917059, -0.0115323094651103, 0.0170372799038887, 0.023747717961669, 0.00619811424985528, 0.0436915159225464, 0.0515940263867378, -0.00196223380044103, 0.00716583710163832, 0.00938255898654461, -0.00567909330129623, -0.0251540970057249, -0.000825829221867025, -0.00313421664759517, 0.00305050355382264, 0.0115256132557988, -0.0033836814109236, -0.0210019294172525, 0.00586995901539922, 0.0115657951682806, 0.000537437794264406, -0.0271096341311932, 0.0156442951411009, -0.0270292703062296, -0.0221270341426134, 0.00333177950233221, 0.0202652551233768, 0.00163826439529657, 0.0237343236804008, -0.00332005950622261, 0.0233860779553652, -0.0168497636914253, 0.0103134475648403, 0.0158452056348324, -0.0234664417803288, 0.0266274474561214, -0.00498260091990232, -0.0259175598621368, -0.0158585999161005, -0.00159389653708786, -0.0193946398794651, -0.0180418360978365, -0.0133940884843469, 0.0129185980185866, 0.00131513201631606, 0.00165835558436811, -0.0173721313476562, 0.0197428856045008, -0.027350727468729, 0.0173185560852289, 0.00977098755538464, -0.0147201027721167, 0.00145493284799159, 0.0111371846869588, -0.0106951789930463, 0.0217252112925053, 0.0204795598983765, 0.0271364226937294, 0.00926201231777668, 0.00447697378695011, 0.00221839593723416, -0.0371284112334251, -0.0107621494680643, 0.0047113704495132, -0.00884679518640041, 0.0185909941792488, 0.0215912703424692, 0.00311747402884066, -0.0249933674931526, -0.0302974265068769, 0.0101795066148043, -0.0136485761031508, 0.0213367827236652, -0.0271766055375338, -0.00420574378222227, 0.00449371663853526, -0.0049892975948751, -0.0103201447054744, 0.0129654770717025, 0.0089204628020525, 0.0314761064946651, 0.0263461712747812, 0.00458747521042824, 0.00739353662356734, 0.00723280757665634, -0.00348915997892618, -0.0211760532110929, 0.0144388265907764, 0.0062115085311234, 0.0101728094741702, 0.0344495959579945, 0.00986474566161633, 0.0281543731689453, -0.0118604646995664, 0.0217519998550415, 0.0260113198310137, -0.0127109894528985, 0.0198366437107325, -0.00302204117178917, -0.0218323636800051, 0.00646599614992738, 0.00434638140723109, 0.00652961805462837, 0.000353687646565959, 0.022341338917613, 0.0112108513712883, 0.0299759693443775, -0.0262524131685495, 0.0227699503302574, -0.0196089446544647, 0.0216716341674328, 0.00312919379211962, 0.0224350970238447, -0.0184034761041403, -0.0124230170622468, 0.00433633616194129, 0.0144120389595628, 0.0107822408899665, 0.0286097712814808, -0.00875973328948021, 0.0112979132682085, 0.0318511426448822, 0.00600055139511824, 0.00733326328918338, -0.00384745188057423, 0.00517011806368828, 0.0153496246784925, -0.00984465517103672, -0.030538521707058, -0.640344560146332, -0.0239486303180456, 0.0124966837465763, -0.00923522375524044, -0.023627171292901, 0.0241763293743134, 0.000835456245113164, 0.0075810537673533, -0.00512323854491115, 0.0187651179730892, -0.0123895313590765, -0.00851194281131029, -0.0257032550871372, -0.0416288264095783, -0.00583312520757318, -0.0204259846359491, -0.000296972051728517, -0.0398340187966824, -0.0273239389061928, -0.0118805561214685, 0.000288391456706449, 0.0131061151623726, -0.00930219423025846, -0.0221136398613453, 0.0208412017673254, 0.0186981465667486, 0.00374364759773016, 0.00216147094033659, -0.0108224228024483, -0.0116327656432986, -0.0125033808872104, 0.0290651712566614, -0.00922182947397232, -0.00179815629962832, 0.053924597799778, 0.00229876046068966, -0.00234563974663615, 0.00766141852363944, 0.0101594161242247, 0.0167693980038166, -0.0282615255564451, -0.0126708075404167, -0.000602733984123915, -0.00889367423951626, 0.00524378567934036, 0.00634544901549816, -0.00229876046068966, -0.00575610948726535, -0.00498260091990232, -0.0124498046934605, 0.0172649789601564, 0.0232253484427929, -0.0192606989294291, -0.00563891092315316, 0.0304581560194492, -0.00779535947367549, -0.0167827922850847, -0.0149879846721888, 0.0127712627872825, -0.00511988997459412, 0.0114318542182446, -0.00399813521653414, -0.0311010722070932, -0.0134811494499445, -0.0506028644740582, 0.0198634322732687, -0.0205465313047171, 0.0201982855796814, 0.00875303614884615, -0.0069716228172183, -0.030565308406949, 0.0136887580156326, -0.0080632409080863, -0.0205465313047171, 0.00369676831178367, -0.00266542355529964, 0.0277793388813734, -0.0097977751865983, -0.018095413222909, 0.0242165103554726, 0.00769490376114845, -0.00547148520126939, -0.00527057377621531, -0.0128181418403983, 0.0306992493569851, 0.000325225206324831, -0.0107755437493324, -0.0202518608421087, -0.0120881646871567, -0.0149611961096525, 0.0188320875167847, 0.0239620227366686, 0.00688456138595939, -0.0495849139988422, 0.000348874134942889, 0.0227297674864531, -0.0162336342036724, -0.00106650427915156, 0.00749399233609438, 0.0123828342184424, -0.0168899446725845, -0.000302622676827013, -0.0014080535620451, -0.00222676713019609, 0.00972410757094622, 0.024645121768117, -0.0149076199159026, 0.0151085313409567, 0.0124163199216127, -0.0399143807590008, -0.00999868661165237, -0.00980447232723236, -0.0281543731689453, -0.00219663046300411, 0.000123999954666942, -0.0186713580042124, 0.00903431233018637, -0.00448367092758417, 0.00499264616519213, -0.0128248389810324, -0.0130726303905249, 0.00992501899600029, 0.00087061570957303, -0.0159523580223322, -0.00386754283681512, 0.00739353662356734, 0.0019538626074791, 0.00825075805187225, -0.0117466151714325, -0.0164077579975128, -0.00302036688663065, 0.00951649993658066, 0.043905820697546, 0.0154165951535106, 0.0097977751865983, -0.00585321662947536, 0.000963537197094411, -0.00815699994564056, -0.00344228069297969, -0.0172649789601564, -0.00291153998114169, 0.00161482475232333, 0.0119274351745844, -0.0238280817866325, 0.00685777328908443, -0.0111974580213428, -0.0064358594827354, -0.00225355522707105, -0.0134677551686764, 0.00650952663272619, 0.00128750666044652, -0.0120211942121387, -0.0090075246989727, -0.0049156304448843, -0.00816369708627462, -0.00463100615888834, 0.0136351818218827, -0.00526387663558125, -0.00769490376114845, -0.0121819227933884, 0.00903431233018637, 0.0178811084479094, 0.00132517761085182, 0.00162738165818155, -0.00901422090828419, -0.000746301840990782, -0.00657649710774422, 0.0154701713472605, -0.0226360093802214, -0.0265202950686216, -0.0011217548744753, -0.0139968218281865, 0.0103603275492787, -6.06919602432754e-05, 0.0175194665789604, -0.0121886199340224, -0.00374029902741313, 0.0134342703968287, -0.00664681615307927, -0.00421578902751207, 0.0141709456220269, 0.00892715994268656, -0.0243504513055086, -0.00083671195898205, 0.0298152398318052, -0.00204259832389653, 0.00531745282933116, 0.0221404284238815, -0.000511905294843018, 0.0241629350930452, -0.00628852425143123, 0.0246049389243126, 0.000387382140615955, 0.0066501647233963, -0.0132802380248904, -0.000825410650577396, -7.64927972340956e-05, -0.0142513094469905, 0.0272703636437654, -0.0159791465848684, 0.0051935575902462, -0.00401152949780226, 0.0227699503302574, -0.00527727091684937, 0.0267345998436213, -0.0454327464103699, 0.0111237904056907, -0.0321190245449543, 0.0095633789896965, 0.034288864582777, 0.0120747704058886, -0.0191669408231974, -0.00784223899245262, -0.0171578265726566, 0.0173721313476562, 0.0300295446068048, -0.0220734570175409, 0.0148942256346345, 0.00248627760447562, 0.0034154923632741, 0.00214807689189911, -0.0027575078420341, 0.0150147723034024, -0.0295473579317331, -0.0266140531748533, 0.000699003983754665, -0.00257668760605156, 0.0167693980038166, 0.00786902662366629, -0.0231985598802567, -0.017840925604105, -0.0136351818218827, -0.000281275861198083, 0.0323065407574177, 0.0186579655855894, -0.0191803332418203, 0.000722443626727909, -0.0159389656037092, 0.0311010722070932, 0.0126708075404167, 0.0253014322370291, -7.95797168393619e-05, 0.025930954143405, 0.00985135138034821, -0.0106750885024667, 0.00900082755833864, 0.05829107016325, 0.0233325008302927, 0.00700510805472732, 0.0210421122610569, -0.0254621617496014, 0.00584317091852427, 0.00842488184571266, -0.0148406494408846, -0.00702519901096821, -0.0223011560738087, 0.0110970018431544, 0.024524575099349, 0.0317975655198097, 0.0321458131074905, 0.0353068150579929, 0.0135012408718467, 0.00210287189111114, 0.0243102703243494, -0.0225690379738808, 0.0016416129656136, -0.00817039329558611, -0.015590718947351, 0.0105612380430102, -0.00597711186856031, -0.0125033808872104, -0.00422583473846316, 0.0158050246536732, -0.0248460341244936, 0.0231449846178293, 0.0346371121704578, 0.00387423997744918, -0.00626843329519033, 0.0176132265478373, 0.0102129923179746, 0.00868606567382812, -0.0357354283332825, 0.0142379151657224, 0.00355947879143059, -0.0224083084613085, -0.0135280285030603, -0.00196558237075806, -0.00248292903415859, 0.00179983058478683, 0.00847176089882851, -0.015657689422369, 0.00568579044193029, -0.0108023323118687, 0.0223279446363449, 0.00701850233599544, -0.0122020142152905, 0.053924597799778, -0.00459082378074527, 0.00991832185536623, 0.0098312608897686, -0.0092954970896244, 0.0124698961153626, -0.00403496902436018, -0.00194883986841887, 0.0320922359824181, 0.000851361721288413, 0.000424634461523965, -0.0121350437402725, 0.0294669941067696, -0.0162068475037813, 0.0336727388203144, -0.0115858865901828, -0.00359631259925663, -0.00188186939340085, 0.0235334131866693, -0.00576950330287218, -0.0209349598735571, -0.0214707236737013, 0.0199705846607685, 0.0214037522673607, -0.0165818817913532, -0.0180820189416409, -0.0178275313228369, 0.0129654770717025, 0.12279699742794, 0.00335856759920716, -0.00746050709858537, 0.00768820662051439, 0.019769674167037, 0.0101661132648587, 0.00577285187318921, -0.030940342694521, 0.0190865751355886, -0.019381245598197, 0.00446357997134328, 0.00776857091113925, 0.0189124532043934, -0.0348782055079937, -0.0146933142095804, -0.00330499117262661, -0.0121082551777363, -0.0280740093439817, 0.0151487132534385, -0.0071524428203702, -0.00971071422100067, 0.00738683948293328, 0.0114117627963424, 0.0175462551414967, 0.00610770424827933, 0.0190865751355886, 0.0290115941315889, 0.0168899446725845, 0.0158050246536732, 0.00942943803966045, -0.00226862356066704, -0.0132534503936768, 0.0168899446725845, 0.0162336342036724, -0.0170908570289612, -0.0141977332532406, -0.00512993568554521, 0.0141307627782226, 0.0236405655741692, 0.00688456138595939, 0.0028378723654896, 0.0193946398794651, 0.00143316737376153, -0.0190731808543205, 0.00188019510824233, -0.0163139998912811, -0.0250603388994932, 0.0203322265297174, -0.00516342092305422, -0.0159523580223322, 0.0398072302341461, -0.0308331903070211, -0.0227163732051849, -0.0204929541796446, 0.00821057613939047, 0.0274846684187651, -0.0169837027788162, -0.0218993332237005, -0.0182025656104088, 0.00145325856283307, -0.0225824322551489, -0.0151487132534385, 0.00600055139511824, -0.0261720474809408, -0.0235066246241331, -0.00426266854628921, -0.00178643653634936, 0.00557528901845217, -0.0129654770717025, -0.00805654376745224, 0.0314225293695927, -0.00896734185516834, -0.0236137770116329, 0.0105947237461805, 0.0133606027811766, -0.022595826536417, 0.0145995561033487, -0.00397134711965919, 0.0142914922907948, -0.0251005217432976, 0.00253148260526359, -0.0577553063631058, -0.00428945664316416, -0.0308867674320936, 0.0102598713710904, 0.0155639303848147, -0.00784893520176411, 0.00160729058552533, -0.0197160970419645, 0.00868606567382812, 0.0080096647143364, -0.0144254332408309, 0.0414145216345787, -0.0341817140579224, 0.00549157615751028, -0.00811011996120214, -0.00257166498340666, 0.00436312425881624, -0.0146933142095804, -0.0064894356764853, 0.00591014139354229, -0.0116595532745123, -0.0206001065671444, 8.68522911332548e-05, -0.00693813757970929, -0.00564225949347019, 0.0147067084908485, -0.00843827519565821, -0.00544469663873315, -0.0184972360730171, 0.024524575099349, -0.0240557827055454, -0.0177471674978733, -0.000596036901697516, 0.00992501899600029, 0.0158452056348324, -0.0186043884605169, -0.00676401425153017, -0.0092954970896244, 3.19155988108832e-05, -0.00885349232703447, -0.0137289399281144, 0.0043262904509902, 0.0136083932593465, -0.00887358374893665, 0.0108157256618142, 0.0110568199306726, -0.0238548703491688, -0.00886018946766853, 0.00410863664001226, -0.0247120931744576, 0.0301902741193771, -0.00197395379655063, -0.0188856646418571, 0.00488884234800935, -0.0200509503483772, 0.00473815854638815, 0.00395125616341829, 0.00582307996228337, -0.0158452056348324, -0.000508975354023278, -0.0165283046662807, 0.00352599378675222, -0.0200777389109135, 0.0236405655741692, -0.0267747826874256, 0.00841148756444454, -0.00431959331035614, -0.0234530474990606, 0.0121752256527543, 0.0264399293810129, 0.00442674616351724, -0.0169167332351208, -0.00916825328022242, 0.00323634664528072, -0.0434236340224743, 0.0220466684550047, -0.00953659042716026, -0.0134476646780968, 0.0320386588573456, 0.040825180709362, -0.0133137237280607, -0.000815365114249289, -0.0105679351836443, 0.0248192455619574, 0.0132065704092383, 0.0111840637400746, 0.0220734570175409, -0.0130793265998363, 0.0161934532225132, 0.0206938665360212, 0.0179346837103367, -0.0236405655741692, -0.0066066337749362, 0.0104272980242968, 0.00888027995824814, -0.00514667853713036, -0.00346906878985465, -0.0237209293991327, -0.0120814675465226, -0.0125569580122828, -0.000600222556386143, 0.00511319329962134, 0.00973750185221434, -0.0173051618039608, -0.0345835350453854, 0.0410662740468979, -0.00794269423931837, 0.0472275540232658, -0.0145459799095988, 0.0185642056167126, -0.0271899979561567, 0.0194883979856968, -0.00620815996080637, -0.00661667948588729, -0.0163541808724403, -0.0231583788990974, -0.0164613351225853, -3.03459801216377e-05, 0.0150013789534569, 0.0272703636437654, -0.0162202399224043, -0.0210822951048613, 0.0107688466086984, 0.0172515846788883, 0.016809580847621, -0.0263729598373175, -0.0037637387868017, 0.018992817029357, -0.0140905808657408, 0.0233057141304016, -0.0384410321712494, -0.030565308406949, -0.0198634322732687, 0.0214305408298969, 0.0167693980038166, -0.0057293213903904, 0.00452050473541021, -0.0242165103554726, -0.0109161818400025, -0.0209885351359844, -0.00370681378990412, -0.0249263979494572, -0.0191133636981249, 0.0239084474742413, 0.0169970970600843, 0.0057393666356802, -0.0150147723034024, 0.0235735941678286, 0.0230780132114887, -0.00922852661460638, -0.00487544806674123, 0.00510649615898728, -0.00636219186708331, -0.0183766894042492, -0.00323969498276711, 0.0159255713224411, 0.00125736999325454, -0.0311278607696295, 0.0409055463969707, 0.015269260853529, 0.00445018569007516, -0.0125167751684785, -0.0343156531453133, -0.00112426630221307, -0.00285126641392708, 0.00993841327726841, -0.00789581518620253, -0.0157648418098688, -0.0142245218157768, -0.0111639723181725, -0.00245781522244215, 0.00514667853713036, 0.0346639007329941, 0.00030534336110577, -0.0328958816826344, -0.00150013784877956, -0.00959016662091017, -0.0262390188872814, 0.0112979132682085, 0.00464439997449517, 0.0240289941430092, -0.00300697283819318, 0.0260515008121729, 0.0111907608807087, -0.00190865760669112, -0.0276721864938736, -0.00113766035065055, -0.00258673331700265, 0.023238742724061, -0.00750068947672844, -0.00646934472024441, -0.000355780473910272, -0.015269260853529, 0.00878652185201645, -0.0202116779983044, -0.0209349598735571, -0.0170640684664249, -0.0215242989361286, 0.0108425142243505, 0.023104801774025, 0.00865927804261446, -0.0308331903070211, -0.00928879994899035, -0.00204929546453059, 0.00875973328948021, -0.00631866091862321, -0.00810342375189066, 0.0277525503188372, -0.00905440375208855, 0.00857891328632832, 0.0138093046844006, -0.0163541808724403, 0.00540451472625136, 0.00617467472329736, -0.00705868424847722, 0.0172247979789972, 0.00461426330730319, -0.00891376566141844, 0.0164211522787809, 0.00187014951370656, 0.00916155613958836, -0.00366663164459169, -0.00289144879207015, -0.0215778760612011, 0.00403831759467721, 0.00973750185221434, -0.0117131303995848, -0.0255559198558331, -0.00967053137719631, 0.00366328307427466, 0.00843157805502415, 0.00305552640929818, 0.0068108937703073, -0.0139700341969728, 0.0280472207814455, -0.000241930712945759, -0.00152190320659429, -0.017586437985301, 0.0243772398680449, -0.0136418789625168, 0.00525383092463017, 0.00550831854343414, -0.00447027711197734, -0.0166622456163168, -0.0150549551472068, 0.00358626712113619, 0.0184168703854084, 0.0052370885387063, -0.0146129503846169, -0.00177136820275337, 0.0301366988569498, -0.0106416027992964, 0.0100589599460363, 0.00155036570504308, 0.0109831523150206, -0.0115122189745307, 0.00633540377020836, 0.0142245218157768, -0.00134443154092878, -0.0130391446873546, 0.00713904900476336, 0.00898073613643646, 0.00479508331045508, -0.0269221179187298, -0.00998529233038425, -0.0266408417373896, -0.0092954970896244, -0.0103268418461084, 0.000965211482252926, 0.00871955137699842, 0.0344228073954582, 0.0136619694530964, -0.0016416129656136, -0.0222743693739176, 0.0203054379671812, -0.0342620760202408, -0.0308867674320936, -0.0149611961096525, 0.0179212894290686, 0.0115457037463784, 0.0276453979313374, 0.00390102807432413, 0.0407448150217533, -0.000429029372753575, 0.0182829294353724, 0.00362979783676565, -2.51139158535807e-06, 0.00176801963243634, -0.00768820662051439, -0.00861909613013268, 0.00952319707721472, -0.00569918425753713, -0.019381245598197, 0.00152190320659429, 0.0174658913165331, 0.0226761903613806, 0.0189258456230164, 0.00804984662681818, 0.0020827807020396, 0.00403831759467721, 0.0151085313409567, -0.00807663518935442, -0.0144656151533127, -0.000318318867357448, -0.0364854969084263, 0.00853203423321247, 0.0140370046719909, -0.00871955137699842, -0.0217787865549326, -0.0241897236555815, -0.0192606989294291, -0.0196491274982691, -0.0128449304029346, 0.00854542851448059, -0.00468458235263824, -0.00101125368382782, -0.015202290378511, -0.000651706126518548, -0.0239754170179367, -0.018617782741785, 0.0143852503970265, 0.0121618323028088, -0.0165952742099762, -0.0139566399157047, 0.00817039329558611, 0.0264667179435492, 0.0107420589774847, -0.00308733736164868, -0.0141977332532406, 0.0143852503970265, 0.0065965885296464, 0.00206436379812658, -0.0158318113535643, 0.020921565592289, -0.00872624851763248, 0.0257970131933689, -0.0179212894290686, 0.0116662504151464, 0.00316267902962863, -0.0255425255745649, -0.0016114761820063, -0.00561212282627821, -0.0133873913437128, -0.00108492118306458, -0.0202518608421087, 0.00711226090788841, -0.00487879663705826, 0.00552506139501929, -0.00147837249096483, -0.0162470284849405, -0.0205465313047171, -0.00788242090493441, 0.00899413041770458, -0.00534089282155037, 0.00374699616804719, 0.231021225452423, 0.0150549551472068, 0.0276989750564098, 0.038762491196394, 0.015523748472333, 0.0155505361035466, 0.0365658588707447, -0.00320620974525809, -0.028502618893981, 0.00199906760826707, -0.00809002947062254, 0.00705198757350445, -0.0173587389290333, -0.00197897641919553, -0.0122020142152905, -0.0185909941792488, -0.0234530474990606, -0.0155639303848147, -0.0341013483703136, 0.0155505361035466, 0.0044334433041513, 0.00234898808412254, -0.00343893212266266, -0.0120680732652545, 0.000752161780837923, 0.00651622377336025, 0.00616462901234627, 0.0174926798790693, 0.0219261217862368, 0.0229038912802935, -0.0295205693691969, 0.0294134169816971, -0.0003547340456862, 0.0217519998550415, -0.0052370885387063, -0.0112376399338245, 0.00548487901687622, -0.00150934630073607, 0.0323601178824902, 0.00935577042400837, 0.0158585999161005, 0.000529485056176782, -0.0395661368966103, -0.0414948835968971, -0.00959016662091017, 0.0138628808781505, -0.00637558614835143, -0.0208144132047892, 0.00537437805905938, 0.0263327769935131, -0.0203991960734129, -0.0202652551233768, 0.0182963237166405, 0.0328690931200981, 0.0188186932355165, -0.000797366781625897, 0.0148138618096709, 0.0333512797951698, 0.00689795520156622, -0.000740441959351301, 0.0245111808180809, 0.0495045483112335, 0.0115590980276465, 0.0266542360186577, -0.0323601178824902, 0.0195821560919285, -0.00711895758286119, 0.000524462258908898, 0.0247656684368849, -0.0109429704025388, -0.0159523580223322, -0.00642246520146728, -0.00997859518975019, -0.0081168171018362, -0.0372623540461063, -0.0105277532711625, 0.0100254751741886, 0.0370748341083527, 0.0243638455867767, 0.0247120931744576, -0.0140905808657408, 0.00721271662041545, -0.00391777092590928, -0.0106817856431007, 0.0251139160245657, -0.0294134169816971, -0.0126975951716304, 0.00821727328002453, -0.0311278607696295, -0.0232119541615248, 0.00326146045699716, -0.0239218417555094, -0.0235066246241331, -0.0069180466234684, 0.00890706852078438, 0.000208759418455884, 0.00260682450607419, 0.00501608615741134, -0.0077417828142643, 0.015269260853529, -0.00540786283090711, 0.0322529636323452, 0.0191535465419292, 0.0155639303848147, 0.0142513094469905, -0.029788451269269, -0.0194482151418924, -0.0054179085418582, -0.00303878379054368, -0.0350121445953846, 0.0366194359958172, 0.000235233674175106, 0.0296812988817692, -0.00628182711079717, -0.00877312757074833, -0.0068544247187674, 0.00148925511166453, -0.0280204322189093, 0.00269221165217459, 0.0134744523093104, -0.00457742949947715, -0.0280204322189093, 0.00257333926856518, 0.00630191853269935, 0.00232554855756462, -0.00950310565531254, -0.0286097712814808, -0.00140637927688658, -0.00621820520609617, -0.0415216721594334, 0.00449036806821823, -0.0126908980309963, 0.0147201027721167, -0.0389500074088573, -0.0207876246422529, 0.0122622875496745, -0.0158318113535643, 0.00127997249364853, -0.00110082665923983, 0.00959016662091017, -0.0277525503188372, -0.00863248948007822, 0.00321458117105067, -0.00600389996543527, 0.0169301275163889, -0.0154567779973149, 0.0281275846064091, 0.00204762117937207, 0.00282280403189361, -0.017198009416461, -0.0145191913470626, 0.0101393247023225, 0.00313421664759517, -0.0210421122610569, 0.00648273853585124, 0.00113263761159033, -0.0334316454827785, -0.00784893520176411, 0.0214037522673607, 0.00441670045256615, -0.0506028644740582, 0.0083311228081584, 0.0276721864938736, 0.0070787756703794, -0.0217118170112371, -0.00894725043326616, -0.170372799038887, 0.00884009804576635, 0.0129119008779526, -0.0254621617496014, 0.00599050568416715, 0.0019220516551286, 0.0194750037044287, -0.00501943472772837, -0.0001659611298237, 0.0182159598916769, 0.00245614093728364, 0.0200777389109135, -0.0230914074927568, -0.000832944875583053, 0.00363649497739971, -0.00642916234210134, -0.0332441255450249, 0.0220600627362728, -9.18881505640456e-06, 0.022461885586381, -0.000289228599285707, -0.0301634855568409, 0.0059436266310513, -0.0319315046072006, -0.000786902674008161, 0.0269890874624252, -0.0177605599164963, 0.0284490436315536, 0.00385414878837764, -0.0200107675045729, -0.0261050779372454, 0.00107068987563252, 0.0288776531815529, 0.0103067504242063, 0.0031743987929076, -0.0108157256618142, -0.0186579655855894, 0.00811011996120214, -0.0136284846812487, 0.0348246283829212, 0.0348246283829212, 0.00260849855840206, 0.00605412758886814, 0.0015612484421581, -0.0153764132410288, 0.0114050656557083, 0.0120412856340408, -0.00652292091399431, 0.00164245010819286, -0.0168765503913164, 0.0252746436744928, -0.0131396008655429, -0.0258639845997095, 0.022461885586381, 0.00612779520452023, 0.00296344188973308, 0.00862579233944416, 0.00730647519230843, -0.00358961569145322, 0.00059519981732592, -0.0110367285087705, 0.00212965998798609, 0.0252210684120655, -0.00220332760363817, -0.0151085313409567, -0.0102263865992427, -0.00434303283691406, -0.00969731993973255, -0.0237343236804008, 0.018992817029357, -0.0202384665608406, -0.0139700341969728, 0.030538521707058, -0.0162738170474768, -0.0198366437107325, -0.0135949989780784, -0.00192707439418882, 0.00025406910572201, -0.0120144970715046, 0.00655305758118629, 0.00507970806211233, 0.0205867141485214, 0.00499264616519213, -0.00378717831335962, -0.0132132675498724, 0.0147602846845984, 0.0147334970533848, 0.021952910348773, 0.0102933570742607, -0.0151219256222248, -0.0041220304556191, -0.0129386894404888, -0.000637474877294153, -0.00345567474141717, 0.000507719640154392, 0.0208144132047892, 0.0247924569994211, 0.0220064874738455, 0.0104741770774126, -0.00999868661165237, 0.00806993804872036, -0.00417225854471326, -0.030565308406949, 0.0188186932355165, -0.00802975613623857, 0.0266810227185488, 0.0185909941792488, 0.0163943637162447, 0.0262925941497087, 0.00594027806073427, -0.0161800589412451, 0.0196759160608053, 0.00595367234200239, 0.0322529636323452, 0.0083846990019083, 0.00344897760078311, -0.00336024188436568, 0.000637474877294153, 0.0074203247204423, 0.0251273084431887, 0.0138762751594186, -0.00619141710922122, -0.0146531322970986, -0.00122304761316627, 0.0117198266088963, -0.0129654770717025, -0.125154361128807, -0.0491830930113792, 0.0162068475037813, 0.0213233884423971, -0.000412496068747714, 0.0282347369939089, -0.0143584627658129, 0.0303510036319494, -0.0447630435228348, 0.0522101558744907, -0.00399478664621711, -0.0107554523274302, -0.00143819022923708, -0.00272402260452509, 0.0217787865549326, 0.00422583473846316, -0.034797839820385, 0.00199906760826707, -0.0370212607085705, 0.030565308406949, -0.00250469450838864, -0.0185775998979807, 0.0106884818524122, -0.00185005844105035, 0.00569248758256435, 0.000637474877294153, -0.0153496246784925, 0.0297080874443054, 0.00940264947712421, -0.0114050656557083, 0.00805654376745224, 0.00901422090828419, 0.0160193294286728, -0.0125435637310147, 0.00557528901845217, -0.0025164142716676, -0.0191937275230885, -0.0166354570537806, 0.0226627979427576, -0.026453323662281, -0.00946961995214224, -0.0198500379920006, 0.00523039139807224, -0.0168497636914253, -0.00884009804576635, -0.00375704164616764, -0.0103469332680106, 0.0199571903795004, -0.00471471901983023, -0.0112108513712883, -0.0277257617563009, 0.00374699616804719, -0.0354139693081379, -0.00961025804281235, 0.00529401330277324, 0.00902091804891825, -0.00855212565511465, 0.00909458566457033, -0.00891376566141844, -0.0148808322846889, 0.00115607725456357, 0.00828424375504255, -0.0316636227071285, 0.00170774618163705, 0.0181757770478725, -0.00524043710902333, 0.00432294188067317, 0.000884846958797425, -0.00622490234673023, -0.0466114282608032, -0.0243370588868856, 0.0203724075108767, -0.0203991960734129, 0.0337531007826328, -0.032226175069809, 0.00756765995174646, -0.00527727091684937, -0.0100053837522864, 0.0353871807456017, 0.00339205283671618, -0.0301902741193771, -0.0158452056348324, 0.00320955831557512, -0.0165684875100851, 0.000835037673823535, 0.0257836189121008, 0.00911467708647251, 0.0209885351359844, 0.000202376293600537, -0.0140637923032045, 0.0130592361092567, 0.0112108513712883, 0.0107487561181188, -0.00770160043612123, -0.00486540235579014, 0.017331950366497, -0.00379387545399368, -0.00619476567953825, 0.00207608356140554, 0.0034590233117342, -0.0323869064450264, -0.00898073613643646, -0.0495045483112335, 0.0120680732652545, -0.0144254332408309, -0.00898743327707052, -0.00909458566457033, -0.00816369708627462, 0.0113849751651287, -0.0151755018159747, -0.00763463042676449, 0.0192205160856247, -0.0224217027425766, 0.028502618893981, 0.00265872641466558, -0.0167024284601212, -0.0149344084784389, -0.0262256246060133, 0.0253951903432608, -0.0106349056586623, 0.0105679351836443, 0.0004122867831029, 0.0128650218248367, 0.00398808950558305, -0.0131596913561225, 0.0255559198558331, 0.0012339303502813, -0.0172515846788883, 0.00302873807959259, 0.0473079197108746, -0.00151436903979629, -0.0302706398069859, -0.0116126742213964, -0.0286633484065533, 0.00271397712640464, 0.0111371846869588, -0.00912807136774063, -0.00196390808559954, -0.0140905808657408, 0.00940264947712421, 0.0108425142243505, 0.0280472207814455, -0.0108893932774663, -0.0251005217432976, -0.0108759999275208, -0.0207742303609848, -0.00773508567363024, -0.037369504570961, 0.0043798666447401, 0.0206938665360212, -0.00593692949041724, 0.00886018946766853, 0.0169301275163889, 0.0126440189778805, -0.0245915465056896, -0.0336995273828506, -0.0202518608421087, -0.018349900841713, -0.0095298932865262, 0.0195955503731966, -0.0155639303848147, -0.0299491807818413, 0.0277257617563009, -0.00888027995824814, -0.00763463042676449, -0.0308064017444849, 0.0232119541615248, -0.00826415233314037, 0.00382066355086863, 0.00462096044793725, -0.00481182616204023, -0.00868606567382812, -0.0117265237495303, -0.0073131718672812, 0.00747390137985349, 0.00750068947672844, 0.0159255713224411, -0.00366663164459169, -0.00465779425576329, 0.0107621494680643, 0.00185508118011057, 0.0390035845339298, 0.00133020034991205, -0.021952910348773, -0.0228637084364891, 0.0183900836855173, 0.00078732124529779, -0.000510231067892164, 0.00600389996543527, 0.0108826961368322, -0.0207608360797167, 0.0109831523150206, -0.0158318113535643, 0.00139800796750933, -0.0258371960371733, -0.0110166370868683, 0.0155773246660829, 0.0228637084364891, -0.000552087556570768, -0.00478503806516528, 0.0169301275163889, 0.0111304875463247, 0.0335923731327057, -0.0143316742032766, 0.0043262904509902, -0.00868606567382812, -0.00424592569470406, 0.00591348996385932, -0.0149076199159026, -0.00644925329834223, -0.0104406913742423, 0.0199170093983412, 0.0160862989723682, 0.0231717731803656, 0.00785563234239817, 0.00913476850837469, 0.00555854663252831, 0.0155773246660829, -0.00906110089272261, -0.00204092427156866, -0.0287437122315168, 0.0385481864213943, 0.00732656614854932, -0.00535763520747423, 0.0109362732619047, -0.0131128123030066, 0.0186311770230532, 0.0112175485119224, 0.0154165951535106, -0.00251976284198463, -0.0120613761246204, 0.0189660284668207, -0.00981116946786642, -0.0113180046901107, -0.031717199832201, -0.0173587389290333, -0.0084181847050786, -0.0419770702719688, 0.0160595122724771, 0.00869945995509624, 0.00877982471138239, 0.050951112061739, -0.00256999069824815, -0.00559872901067138, -0.00727968709543347, 0.0225824322551489, 0.0188052989542484, -0.000768485828302801, -0.0107085732743144, -0.00542125711217523, -0.00630861567333341, 0.0345031693577766, -0.0066936956718564, 0.00533084711059928, -0.0278061274439096, -0.00258673331700265, 0.0206402894109488, 0.00415551569312811, 0.0165149103850126, -0.0336727388203144, 0.0172114036977291, 0.0113581866025925, 0.0272837579250336, 0.00521364901214838, 0.00464439997449517, -0.00811011996120214, -0.0085990047082305, 0.0274578798562288, -0.0216582398861647, 0.0167158227413893, -0.0645595043897629, -0.031181437894702, 0.025033550336957, -0.00860570184886456, -0.0140771865844727, 0.026573870331049, 0.0066936956718564, 7.4138370109722e-05, 0.0149210141971707, 0.00320788403041661, 0.0192339103668928, -0.0162202399224043, 0.0268149636685848, -0.0272971522063017, -0.0633808225393295, -0.000430285086622462, 0.00813021138310432, 0.00581638282164931, -0.0171578265726566, -0.0316368378698826],id:"11a9953c73c3ea894cbe85aa5667881c",source:"state_of_union.txt",text:"I have a better plan to fight inflation.
Lower your costs, not your wages.
Make more cars and semiconductors in America.
More infrastructure and innovation in America.
More goods moving faster and cheaper in America.
More jobs where you can earn a good living in America.
And instead of relying on foreign supply chains, let’s make it in America.
Economists call it “increasing the productive capacity of our economy.”
I call it building a better America.
My plan to fight inflation will lower your costs and lower the deficit.
17 Nobel laureates in economics say my plan will ease long-term inflationary pressures. Top business leaders and most Americans support my plan. And here’s the plan:
First – cut the cost of prescription drugs. Just look at insulin. One in ten Americans has diabetes. In Virginia, I met a 13-year-old boy named Joshua Davis."})
(:Chunk{embedding:[0.00346458493731916, -0.00290366751141846, 0.00153413356747478, -0.0198925994336605, 0.0229352973401546, -0.00168115471024066, -0.00735105667263269, -0.00273746950551867, -0.0278700925409794, -0.00141907355282456, 0.00313059124164283, 0.023395536467433, -0.0124904038384557, -0.0135131599381566, 0.0170160979032516, 0.0124328741803765, 0.031475305557251, -0.00543338991701603, 0.0158271454274654, -0.0145231308415532, -0.0324724949896336, -0.00136314157862216, 0.00215577729977667, 0.0183968190103769, -0.0179877169430256, -0.0101444581523538, 0.00051177735440433, -0.0102786952629685, 0.0151112154126167, -0.0181155614554882, 0.012944252230227, -0.00812451541423798, -0.0307593774050474, 0.00554525386542082, -0.00729352654889226, 0.00186972529627383, -0.00472704926505685, -0.00436908472329378, 0.0232549086213112, -0.0143825020641088, 0.0345435738563538, 0.00498273782432079, 0.00779212033376098, 0.0109498780220747, -0.0354896225035191, -0.0047622062265873, -0.0058584725484252, -0.0189849026501179, -0.0228202361613512, -0.000612454896327108, 0.000757478468585759, 0.0311429109424353, -0.0267450623214245, -0.0222193673253059, 0.00188250979408622, -0.00729991914704442, 0.0027646366506815, 0.00166837021242827, -0.00155970244668424, -0.00315775838680565, -0.0239708367735147, -0.0126374252140522, -0.0249041020870209, -0.0172973554581404, -0.0279212314635515, -0.0029068635776639, -0.0071976431645453, 0.00134716101456434, 0.000674779061228037, 0.0146126225590706, 0.0246995501220226, 0.0321145281195641, 0.0157504379749298, -0.0178854409605265, -0.00692277774214745, -0.0071720746345818, -0.00111064873635769, -0.00871259998530149, -0.00744694005697966, -0.000651207752525806, 0.0293275192379951, 0.0027310773730278, -0.028534883633256, 0.0296854842454195, 0.0138072017580271, -0.00714011350646615, -0.0114356875419617, 0.0316798575222492, -0.0299156047403812, -0.0137816332280636, 0.0218102652579546, 0.00998465251177549, -0.00601827818900347, 0.01194067299366, 0.0175658296793699, 0.0228841584175825, 0.0037841962184757, 0.0394272319972515, 0.0168754700571299, -0.0230503566563129, -0.00646253768354654, 0.0118128284811974, -0.011058546602726, -0.0160956177860498, -0.0105343842878938, 0.0140501065179706, 0.0188442748039961, -0.00531193753704429, -0.00157408497761935, -0.00171471387147903, -0.0149322338402271, 0.0443108901381493, 0.00134076876565814, 0.01228585280478, 0.0227307453751564, -0.00406545400619507, 0.0151239996775985, 0.00579455029219389, 0.011403726413846, -0.00570186320692301, 0.0243288017809391, 0.0295320712029934, 0.0442086160182953, 0.0166837032884359, 0.0101380664855242, 0.00150856468826532, -0.0192405916750431, 0.000996387796476483, 0.00580094242468476, -0.000233915416174568, 0.0188442748039961, -0.00231078872457147, 0.0210176296532154, -0.00403668917715549, -0.0245333518832922, 0.0328560285270214, -0.0191894546151161, 0.0133086089044809, -0.00272628315724432, 0.00187771557830274, 0.0246867667883635, 0.0050019146874547, 0.000689561071339995, 0.0204295460134745, -0.0113142346963286, 0.022564547136426, 0.0230120029300451, 0.00774098234251142, -0.00427639717236161, 0.00801584776490927, -0.0130784884095192, 0.00770902121439576, 0.0168243311345577, 0.0164663661271334, 0.00706340651959181, 0.00545256631448865, -0.002446623519063, 0.0213116724044085, -0.000673181028105319, 0.0207747258245945, 0.00285892188549042, 0.00383853004314005, 0.00779851246625185, -0.00069555378286168, 0.00542380148544908, -0.000479017238831148, -0.0265660788863897, -0.00202154065482318, 0.0123433833941817, 0.00294361868873239, 0.00642098812386394, 0.0259779952466488, -0.00763231469318271, 0.000606462184805423, -0.0213500261306763, 0.0173612777143717, 0.0105535602197051, 0.00268313568085432, -0.0303502753376961, -0.021976463496685, -0.0034230356104672, 0.0144592085853219, -0.000276463659247383, 0.0393249578773975, -0.0283814705908298, 0.0065136756747961, 0.0213372409343719, 0.0123242065310478, -0.00284773553721607, -0.00409102300181985, 0.00923676230013371, 0.0192278083413839, 0.00306666898541152, -0.0357708819210529, -0.6381995677948, -0.0278445240110159, -0.00927511602640152, 0.0191255323588848, 0.00718485889956355, 0.032293513417244, 0.00355407618917525, 0.0257095210254192, -0.0332395620644093, 0.0137944174930453, 0.00723599689081311, 0.0175913982093334, -0.0233699679374695, -0.0222960747778416, -0.0175402611494064, -0.0237023644149303, 0.0083162821829319, -0.0323190800845623, -0.0219892486929893, -0.0208897851407528, 0.00670544197782874, 0.0231654178351164, -0.0295832082629204, -0.00372347002848983, 0.0234338901937008, -0.00864867772907019, 0.015712084248662, -0.00529276067391038, -0.0114101180806756, 0.0158015750348568, 0.014267441816628, 0.0214650854468346, -0.0144208557903767, 0.00858475547283888, 0.0420096926391125, -0.0184607412666082, 0.00661595119163394, -0.00417731795459986, 0.0045193019323051, 0.00506583694368601, -0.0410636402666569, 0.0113525884225965, 0.00097721116617322, 0.00597353279590607, -0.0103106563910842, 4.28541125074844e-06, -0.0125926798209548, 0.0185374468564987, 0.00423484807834029, 0.0140501065179706, 0.00260163494385779, 0.0165302883833647, -0.0361799821257591, -0.0388135798275471, 0.0161595400422812, -0.0117680830881, -0.00181698950473219, -0.0334185436367989, 0.026821767911315, -0.00774098234251142, -0.00401431601494551, -0.00462157744914293, 0.0146126225590706, -0.00415814109146595, 0.00749168545007706, 0.0156098091974854, -0.000661195605061948, 0.0160316955298185, 0.017770379781723, -0.0010746925836429, 0.0179877169430256, 0.00229640607722104, -0.013116842135787, -0.000738701317459345, 0.0351316593587399, -0.0211582593619823, 0.0341600403189659, -0.00951162818819284, -0.0269751828163862, 0.0116913765668869, 0.000783446885179728, -0.014293011277914, -0.0309383608400822, -0.00378739228472114, 0.0330094397068024, 0.0212093964219093, 0.0233060456812382, 0.00579455029219389, -0.0113589810207486, -0.000716328504495323, 0.0267961993813515, 0.0300434492528439, 0.0114932172000408, -0.0286882985383272, -0.0212477501481771, 0.00863589346408844, -0.00699309213086963, 0.0179237946867943, 0.0180005002766848, 0.00582651142030954, -0.0117872599512339, 0.00706979865208268, 0.00402070861309767, -0.00056171661708504, 0.0233571827411652, 0.00285572581924498, -0.0320889614522457, 0.0232293400913477, 0.0410636402666569, -0.0624903738498688, 0.0054174093529582, 0.0062963399104774, -0.0156481619924307, -0.0116530228406191, 0.0274354219436646, -0.0138455554842949, -0.00564113678410649, 0.0219892486929893, 0.0164407975971699, -0.00177703809458762, -0.00120733119547367, 0.0158910676836967, 0.00479416735470295, -0.00229640607722104, -0.00535029079765081, -0.0147276818752289, -0.00456085149198771, -0.00452569406479597, 0.0137049267068505, -0.00930068455636501, 0.00714011350646615, 0.00358923338353634, 0.012771662324667, -0.00635706586763263, 0.0333418361842632, -0.00638263486325741, 0.00490922760218382, -0.0051553281955421, 0.00747250905260444, -0.012209146283567, 0.0163129530847073, 0.00320250377990305, 0.0041453568264842, -0.00495397299528122, 0.0103681860491633, -0.00962668843567371, -0.00633469317108393, -0.00460559688508511, 0.00593837536871433, 0.0225517638027668, 0.0112375281751156, 0.00880848336964846, 0.0201994255185127, 0.0088212676346302, -0.0107069741934538, -0.0222960747778416, 0.00701866112649441, -0.0127908382564783, -0.0156737305223942, 0.00566670577973127, -0.000877332640811801, 0.026719493791461, -0.0108859557658434, 0.00158367329277098, 0.000301033753203228, -0.0163257382810116, 0.0177575964480639, 0.0147660356014967, -0.0158143602311611, -0.0265660788863897, -0.00813090801239014, -0.0207747258245945, 0.00978649407625198, 0.0136154359206557, 0.0291229691356421, 0.0312963239848614, 0.000922078208532184, 0.0161851085722446, 0.00111544295214117, 0.00802224036306143, -0.0012241107178852, -0.00272947922348976, -0.00331756379455328, 0.0186652913689613, 0.0214011631906033, -0.00670544197782874, -0.00796470977365971, 0.0289184171706438, 0.00676297210156918, 0.0281513519585133, -0.0266939233988523, 0.0274098534137011, 0.00885962136089802, 0.0318077020347118, 0.00148699095007032, -0.0197391845285892, 0.0145103465765715, 0.0155458869412541, -0.00303310994058847, -0.000102575206256006, 0.0139350462704897, -0.0134364534169436, 0.0155331026762724, 0.0060758083127439, 0.0152646293863654, -0.0381999276578426, 0.00261441920883954, -0.00933903828263283, 0.0356430374085903, 0.0101828118786216, 0.00259684072807431, -0.00988876912742853, 0.0110649382695556, -0.0112567050382495, 0.0418562777340412, 0.0137688489630818, -0.013730495236814, -0.0231526326388121, -0.00884044449776411, -0.0120237721130252, -0.00327281840145588, -0.00464714644476771, 0.0274354219436646, -0.0245333518832922, -0.00726156542077661, 0.000256687722867355, 0.00738301780074835, 0.00196241261437535, -0.0126566020771861, -0.0331628546118736, 0.00411339569836855, -0.0130848810076714, -0.00744054792448878, 0.0294042266905308, -0.0108539946377277, 0.00869342312216759, -0.0241626035422087, -0.0214139483869076, 0.0228330213576555, 0.0381999276578426, 0.0275121293962002, -0.00707619125023484, 0.0294297952204943, 0.0095883347094059, -0.0261697620153427, -0.00990155339241028, 0.029174106195569, 0.0168754700571299, -0.0162234622985125, 0.0155203184112906, -0.00429237773641944, -0.00823957566171885, 0.00103234406560659, -0.00994629971683025, -0.00114021287299693, -0.00366274383850396, -0.000700747477822006, 0.0223088581115007, 0.032983873039484, 0.019969305023551, 0.0155203184112906, 0.00708258338272572, -0.00650089094415307, 0.0132702551782131, 0.00766427582129836, -0.00438506528735161, -0.0318077020347118, 0.00823957566171885, -0.022807452827692, 0.00153972674161196, -0.0304014142602682, -0.00835463590919971, 0.00546535104513168, -0.00424124021083117, 0.0193556509912014, 0.0186525080353022, -0.0251214373856783, -0.00793914124369621, 0.0288928486406803, -0.00672461884096265, 0.00125687092076987, -0.0352339334785938, -0.0111544290557504, -0.000105072169390041, 0.00402070861309767, -0.0165814273059368, 0.00938378367573023, -0.0136154359206557, 0.0158399287611246, 0.0175146907567978, -0.0212733186781406, 0.0207108035683632, 0.0229608658701181, -0.000519368157256395, 0.0061013768427074, -0.00236672069877386, 0.0479928106069565, -0.00574980489909649, -0.0152518441900611, 0.00339427054859698, -0.00560278352349997, 0.00942213740199804, -0.000342782965162769, -0.0233699679374695, 0.0344157293438911, 0.00413576839491725, -0.0261441934853792, -0.00450651720166206, 2.36462328757625e-05, -0.0264893732964993, -0.00799667090177536, -0.0248529631644487, -0.0188698433339596, -0.00192246108781546, 0.0451546646654606, -0.00688442448154092, -0.0177575964480639, 0.0134364534169436, 0.000913288909941912, -0.00587445311248302, -0.0289439875632524, -0.0073702335357666, -0.0254282634705305, 0.0170160979032516, 0.0987470671534538, 0.0222960747778416, 0.013998968526721, 0.0126566020771861, 0.00526719214394689, 0.014561484567821, -0.0257095210254192, 0.00475261779502034, 0.0260930545628071, 0.0105088148266077, 0.0129506438970566, 0.0145103465765715, -0.00256168353371322, -0.0132958246394992, 0.0199948735535145, 0.00341344717890024, -0.0178215187042952, -0.0271797329187393, 0.00807337835431099, 0.0114676486700773, 0.00128004269208759, 0.00194003980141133, 0.0287905726581812, 0.0265149418264627, 0.00387688330374658, -0.0176553204655647, 0.0131551949307323, 0.0292763821780682, 0.0113525884225965, -0.00216057151556015, -0.0076578832231462, 0.00434031942859292, 0.0122219305485487, 0.0241242498159409, -0.0315775834023952, -0.0319611169397831, -0.00210304139181972, 0.0165302883833647, 0.0547174289822578, 0.00974174775183201, 0.0176936741918325, 0.029174106195569, -0.00129682233091444, 9.67323139775544e-05, -0.00798388663679361, -0.0300945863127708, -0.031373031437397, 0.0133086089044809, -0.00516172032803297, -0.0119470655918121, 0.0252876356244087, -0.0208642166107893, -0.01825618930161, -0.0209153536707163, -0.00883405283093452, 0.00358284101821482, 0.0092175854369998, -0.0277422480285168, -0.0230759251862764, -0.00875095371156931, -0.00376821565441787, -0.0270518884062767, 0.011499609798193, -0.0282536260783672, -0.0366913601756096, 0.0033687015529722, 0.0157632231712341, -0.00891715101897717, -0.00248817284591496, -0.0252109281718731, 0.0189976878464222, -0.011748906224966, 0.00201674643903971, 0.00954998191446066, -0.00111144781112671, -0.0132958246394992, 0.0159933418035507, 0.000309623312205076, 0.0181666985154152, -0.00485808961093426, 0.00958194304257631, -0.0135770821943879, 0.0229225121438503, -0.0282791946083307, -0.00528956484049559, 0.0115954931825399, -0.000395119306631386, 0.000535748200491071, -0.0155458869412541, 0.0111927827820182, 0.000145123442052864, 0.00967143382877111, 0.0369214825332165, -0.0077665513381362, -0.00146062299609184, -0.0398619025945663, -0.00228521972894669, 0.0193300824612379, -0.0202377792447805, -0.0232293400913477, 0.00938378367573023, -0.00225645489990711, -0.0111032919958234, -0.0130657041445374, 0.0154180424287915, -0.0213244557380676, 0.00493479613214731, 0.00768345221877098, -0.0039503937587142, -0.0257734432816505, -0.0056379409506917, -0.0200332272797823, -0.0138072017580271, 0.00807977002114058, 0.0232804771512747, 0.000836582214105874, -0.0239196997135878, -0.00922397803515196, -0.00389286386780441, -0.0275632664561272, -0.0133086089044809, -0.0178854409605265, 0.0292252451181412, -0.00710175978019834, -0.0194195732474327, -0.0133469616994262, 0.0108348187059164, -0.0169777441769838, 0.0191127471625805, 0.011109683662653, 0.0251853596419096, 0.0321912355720997, -0.0104129314422607, -0.0105024231597781, -0.00419649435207248, -0.03132189437747, 0.00112583034206182, 0.0112886661663651, 0.0155586712062359, -0.013462021946907, -0.00781768932938576, -0.00158607040066272, -0.00555164599791169, -0.0195985566824675, 0.0480950884521008, -0.0252492818981409, 0.000199956732103601, 0.00171631190460175, 0.000247898395173252, -0.00510738650336862, 0.0041677295230329, -0.0058584725484252, -0.0222193673253059, -0.000576898164581507, 0.000459840550320223, -0.0100677516311407, 0.00613973056897521, -0.0104768536984921, 0.005420605186373, 0.0214011631906033, 0.0315520130097866, -0.0209537073969841, -0.0354384854435921, -0.00354129169136286, 0.0265916492789984, 0.036358967423439, 0.0091472715139389, 0.0122730685397983, 0.00558999925851822, -0.000201854418264702, 0.0124648353084922, 0.0338787846267223, 0.00966504123061895, -0.0349782444536686, 0.0307593774050474, -0.0143185798078775, -0.00344221224077046, -0.0309383608400822, -0.0223472118377686, -0.0257734432816505, 0.000172689906321466, -0.00271669495850801, -0.00232676928862929, -0.00965864956378937, -0.0107581112533808, -0.0189337655901909, 0.00282696075737476, -0.00764509895816445, 0.0250319465994835, 0.00733187980949879, 0.00903221126645803, -0.0216184984892607, 0.0540015026926994, 0.000421886739786714, -0.00205350178293884, 0.0106814047321677, -0.0135898664593697, -0.0104448925703764, 0.0071081523783505, 0.0023906915448606, 0.0299667418003082, -0.00762592209503055, 0.0189593341201544, 0.00226124888285995, 0.00554205756634474, 0.0194707121700048, -0.0297877602279186, -0.0153029821813107, -0.00762592209503055, -0.0152518441900611, 0.01903604157269, -0.0272820089012384, -0.0211071204394102, -0.024520568549633, -0.00843134243041277, 0.00540142878890038, -0.0136793572455645, 0.00283814710564911, -0.00226923916488886, -0.0156865157186985, -0.0126246409490705, -0.0128611531108618, -0.00381615734659135, -0.0101892035454512, 0.0156098091974854, 0.0361799821257591, 0.00256328145042062, -0.0256839524954557, -0.00383853004314005, 0.0345691442489624, 0.00272947922348976, 0.0153541201725602, 0.0408590920269489, -0.0198031067848206, 0.0129762133583426, 0.0145487003028393, -0.0105024231597781, -0.00526719214394689, -0.0486831702291965, 0.000511377875227481, -0.0112247439101338, -0.0164663661271334, -0.0156737305223942, -0.0169393923133612, 0.00400153174996376, 0.0329071655869484, 0.00550370430573821, 0.0302991382777691, -0.0230631418526173, -0.0130912736058235, -0.0171311590820551, 0.0159294195473194, 0.0118959276005626, 0.0189337655901909, 0.0122475000098348, -0.0256328154355288, -0.0215417928993702, -0.0201610717922449, -0.0112439207732677, -0.00219892477616668, 0.00999743677675724, 0.0182817578315735, -0.0106238750740886, 0.0424955002963543, 0.0045640473254025, 0.0100805358961225, -0.0152646293863654, -0.0100038293749094, -0.0212477501481771, 0.016491936519742, 0.000534150167368352, -0.000166996833286248, 0.0237535014748573, -0.00898746587336063, -0.0163896605372429, -0.00508501334115863, -0.0146126225590706, -0.0103426175191998, -0.0311429109424353, 0.00209824717603624, 0.00514254346489906, -0.0041677295230329, -0.0190616101026535, 0.0131040578708053, -0.0191638860851526, -0.00161403638776392, -0.0243160165846348, -0.0156353786587715, 0.0245333518832922, -0.0015565063804388, 0.00872538425028324, -0.000752284773625433, -0.00184895051643252, -0.0156353786587715, -0.00319291558116674, -0.0082267913967371, 0.0117105524986982, 0.0106366593390703, -0.0317565649747849, 0.0193684361875057, 0.0253132041543722, -0.00288449064828455, -0.00303310994058847, 0.0012233117595315, -0.0327281840145588, -0.0528253316879272, 0.00122890493366867, 0.00647532194852829, -0.0412681922316551, -0.01250318903476, -0.00445218337699771, -0.0204423293471336, 0.0212349649518728, -0.00712732877582312, 0.00353489932604134, 0.0213372409343719, 0.010962663218379, -0.0281513519585133, -0.023395536467433, 0.0220659542828798, -0.020455114543438, -0.0105663454160094, -0.00559639139100909, -0.0141395973041654, -0.0188187044113874, 0.00267354724928737, 0.00990155339241028, -0.010937093757093, 0.00733827240765095, -0.00949245132505894, -0.0100741442292929, 0.039785198867321, 0.00924954656511545, 0.00977370887994766, -0.0341600403189659, 0.00720403576269746, -0.0155203184112906, 0.0163768753409386, 0.00923676230013371, -0.013947831466794, -0.00434990786015987, 0.00506264064460993, 0.0211071204394102, -0.000606062647420913, -0.00840577390044928, -0.0302735697478056, -0.00217655207961798, -0.0193940047174692, -0.00816286914050579, -0.0109498780220747, -0.00460240058600903, 0.0307849477976561, -0.0062963399104774, -0.00200556009076536, -0.00495077669620514, -0.0112694893032312, -0.0349526777863503, 0.0316542908549309, -0.0169010385870934, 0.0200076587498188, -0.00988237746059895, 0.0181027762591839, -0.00570186320692301, 0.0442597530782223, 0.0119151044636965, 0.0232676919549704, -0.0103873629122972, 0.00377141172066331, 0.0213883779942989, 0.00587445311248302, -0.00944131333380938, -0.00248337863013148, -0.00672461884096265, -0.0126246409490705, 0.0174891222268343, 0.00735744880512357, 0.0218869727104902, 0.00577217759564519, -0.0191638860851526, 0.00761952996253967, -0.00464395014569163, 0.0146509753540158, -0.0206724498420954, 0.00594157166779041, 0.0154819646850228, -0.016491936519742, -0.0123753445222974, -0.00985680799931288, -0.0039056483656168, -0.0208642166107893, -0.0526719205081463, -0.017770379781723, -0.027895662933588, 0.00972896348685026, -0.00748529331758618, 0.00565072521567345, -0.0240347590297461, -0.00809255428612232, 0.0123689519241452, 0.000328000955050811, 0.00756199983879924, -0.00160444807261229, 0.00843134243041277, -0.0213244557380676, 0.00915366411209106, 0.0204806830734015, 0.00733827240765095, -0.0253387726843357, -0.0280490759760141, 0.00902581959962845, -0.0071081523783505, -0.00729991914704442, -0.0132958246394992, -0.011058546602726, 0.0136410044506192, 0.00577856972813606, -0.00512336706742644, -0.0125607186928391, 0.013730495236814, -0.00406865030527115, -0.0241498202085495, 0.00933903828263283, -0.017859872430563, -0.0212605353444815, -0.0277422480285168, -0.0188314896076918, 0.00883405283093452, -0.026284821331501, -0.01860136911273, -0.00445218337699771, -0.0244694296270609, -0.0194579269737005, 0.00147021131124347, -0.00298037403263152, -0.0187547821551561, -0.00681411009281874, 0.212937742471695, 0.00901303440332413, 0.00252173212356865, 0.0464075393974781, 0.0168626848608255, 0.0143057955428958, 0.0320122539997101, 0.00366593990474939, 0.0028077841270715, -0.0147660356014967, -0.00462796958163381, 0.0118383970111609, -0.0205573905259371, 0.00102914788294584, 0.000425082835135981, -0.0206596646457911, -0.0235745199024677, -0.0158143602311611, -0.0154691804200411, -0.0189337655901909, -0.00501469895243645, -0.00474302982911468, 0.00272947922348976, -0.00477818679064512, 0.000301633030176163, 0.00485169747844338, 0.008687031455338, 0.0292508136481047, 0.0304525513201952, 0.0126566020771861, -0.0141651667654514, -0.00418051378801465, -0.00423804391175508, 0.0384811833500862, -0.000761873088777065, -0.0283303335309029, -0.0105088148266077, -0.00842494983226061, 0.0366146564483643, 0.0302991382777691, 0.00891715101897717, 0.0404244214296341, -0.0257223062217236, -0.038174357265234, 0.0064944988116622, 0.00566350994631648, -0.00167156639508903, -0.0237023644149303, 0.00498913042247295, 0.00466312700882554, -0.0149066643789411, -0.0232421234250069, 0.0283814705908298, 0.0255305394530296, -0.000113861475256272, -0.00592239480465651, 0.0231526326388121, 0.0330094397068024, 0.00108907499816269, 0.0185374468564987, 0.0269751828163862, 0.0164152290672064, -0.0169649608433247, 0.0128100151196122, -0.0227690991014242, 0.0129953902214766, -0.00368831283412874, 0.00599270919337869, -0.00067078392021358, -0.0322423726320267, -0.00918562430888414, 0.0114612560719252, -0.0167859774082899, -0.00203592306934297, -0.00201994250528514, -0.00170672358945012, 0.00897468160837889, 0.0503962896764278, 0.000596873869653791, 0.00352211506105959, 0.000639621808659285, 0.0266939233988523, 0.0161211863160133, 0.00498593412339687, -0.00406865030527115, -0.0317821353673935, 0.0135642979294062, -0.00714011350646615, -0.0191255323588848, -0.01791100949049, 0.0117297293618321, -0.013462021946907, -0.00182977388612926, 0.003707489464432, -0.0117425136268139, 0.021145474165678, 0.00517130875959992, 0.0176041834056377, -0.0251597911119461, -0.0349782444536686, 0.024175388738513, 0.0298388972878456, 0.000493799219839275, 0.0201994255185127, 0.0117105524986982, -0.0283047650009394, -0.00742137106135488, 0.0148427421227098, -0.00582651142030954, -0.0292508136481047, 0.0012448854977265, -0.000638423312921077, 0.00253611453808844, -0.0189593341201544, 0.00510099390521646, 0.0142290890216827, -0.0327281840145588, -0.0255305394530296, -0.017719242721796, -0.00666708871722221, 0.0274098534137011, -0.0452313721179962, -0.0271030273288488, 0.0173101406544447, -0.0095435893163085, -0.0186652913689613, 0.000543338945135474, 0.000416293536545709, 0.0138072017580271, -0.025939641520381, -0.0178343020379543, -0.0145870530977845, -0.00325364153832197, 0.00170832162257284, -0.00721042789518833, -0.00999743677675724, -0.011058546602726, 0.0122027536854148, -0.00448414450511336, -8.83924585650675e-05, -0.00547493901103735, -0.0100997127592564, 0.0197775382548571, -0.00445218337699771, 0.0257862284779549, -0.027895662933588, 0.0387880094349384, -0.0180132854729891, 0.0128803299739957, -0.00846969615668058, -0.0434671193361282, 0.0145487003028393, 0.00295480526983738, -0.0403732806444168, 0.0239324830472469, -0.0196880474686623, -0.0403732806444168, -0.0196496937423944, -0.0101252812892199, -0.00875095371156931, -0.0518792830407619, 0.0237535014748573, 0.052620779722929, 0.00967143382877111, -0.0235105976462364, -0.00162761984393001, -0.158220306038857, 0.0116466311737895, -0.00767706008628011, 0.000580493768211454, 0.0116849839687347, -0.00903221126645803, 0.00191606895532459, -0.00910891778767109, 0.0126438178122044, 0.00834185164421797, 0.0108795640990138, -0.0208258628845215, -0.0149066643789411, 0.0158654972910881, 0.0059032179415226, 0.00859114807099104, -0.0258373655378819, 0.0470978990197182, 0.0139094777405262, -0.0113909421488643, 0.0403988510370255, -0.00288129458203912, 0.0190104711800814, -0.0305548273026943, 0.000933264615014195, 0.00130481261294335, -0.00242584873922169, 0.0173101406544447, -0.0067565799690783, -0.00518728932365775, -0.0161851085722446, 0.00604384718462825, 0.00772180547937751, 0.00654244050383568, 0.0288672801107168, -0.0356174670159817, -0.00824596825987101, 0.029174106195569, 0.00659038219600916, 0.0362055525183678, 0.0157760065048933, 0.00636026216670871, 0.00426361290737987, 0.0110329771414399, -0.0167348403483629, 0.0254921857267618, 0.0090833492577076, -0.00685885548591614, -0.000566111295484006, -0.0144592085853219, 0.040680106729269, -0.0129889976233244, -0.00267993961460888, 0.0291229691356421, 0.0316031500697136, -0.017668105661869, 0.00900025013834238, 0.0172590035945177, -0.00146062299609184, 0.00293243234045804, -0.0122027536854148, -0.0304781198501587, -0.00135914643760771, -0.00142546580173075, -0.023293262347579, 0.000921279191970825, -0.00942852906882763, -0.0222832895815372, -0.0130784884095192, 0.027460990473628, -0.0180644225329161, -0.00792635697871447, 0.0180260688066483, 0.000309423543512821, -0.00958194304257631, -0.00571145163848996, 0.0209025703370571, -0.0136921424418688, 0.0107836807146668, 0.0156737305223942, 0.00376182328909636, 0.0138199869543314, -0.0279723685234785, -0.0117361219599843, -0.0235745199024677, 0.0264638047665358, 0.0153541201725602, 0.0144592085853219, 0.0147660356014967, -0.019087178632617, -0.0149578023701906, -0.0259907804429531, -0.00317533686757088, 0.00381615734659135, -0.0214523002505302, -0.0015077656134963, 0.0200460124760866, 0.0213755946606398, 0.0141651667654514, -0.013730495236814, -0.0162234622985125, 0.0108859557658434, -0.0139733999967575, 0.0143697177991271, -0.0069547388702631, -0.00411339569836855, 0.002446623519063, 0.00481014791876078, -0.00517130875959992, -0.0109307020902634, -0.0192661602050066, 0.0270263198763132, 0.0102531258016825, 0.0192022379487753, 0.000269072654191405, 0.0333674065768719, -0.0175274759531021, -0.00825235992670059, 0.0171439424157143, 0.005506900139153, 0.0478138290345669, -0.000874935532920063, -0.0168754700571299, 0.0118064358830452, -0.00722960429266095, -0.0152390599250793, -0.114957742393017, -0.0112055670469999, 0.0264893732964993, -0.0110457614064217, -0.00203112885355949, 0.00777933560311794, -0.0028733043000102, 0.0285860225558281, -0.00547493901103735, 0.00758756883442402, -0.0258373655378819, -0.0167987626045942, 9.89795807981864e-05, -0.00108028575778008, 0.00483571691438556, -0.00626118248328567, 0.0090386038646102, -0.0351316593587399, -0.0389925613999367, 0.0201227180659771, -0.00282376469112933, -0.000710735330358148, -0.00210623745806515, -0.00996547564864159, 0.00495397299528122, -0.0243543703109026, -0.0158527139574289, 0.0333162657916546, 0.00795192550867796, 0.0239580534398556, 0.0166069958359003, -0.0052000735886395, -0.00874456111341715, -0.0117297293618321, -0.0026319979224354, 0.00931346882134676, -0.025543324649334, -0.0130017818883061, 0.0125479344278574, -0.0515213198959827, -0.0110457614064217, 0.004343515727669, -0.0170416664332151, -0.0106494436040521, 0.0192150231450796, -0.00104273145552725, -0.001562898629345, -0.046688798815012, 0.0103106563910842, -0.00109386921394616, -0.0108539946377277, 0.00448094867169857, -0.0244566462934017, -0.0336230956017971, -0.00295959925279021, -0.00952441245317459, -0.0215929299592972, -0.0194707121700048, 0.00558360712602735, -0.0180772077292204, 0.0274865590035915, 0.00132159213535488, -0.022999219596386, 0.0111224688589573, 0.0012736504431814, 0.00617169169709086, 0.00181858753785491, -0.0146381910890341, 0.00566990207880735, -0.0117105524986982, -0.00857197120785713, -0.00633149687200785, -0.00923676230013371, 0.0272308718413115, -0.0273842848837376, 0.0182178355753422, 0.0082267913967371, -0.0105343842878938, 0.00411339569836855, -0.00466312700882554, -0.0208130795508623, -0.0170928053557873, 0.00988876912742853, -0.00134636205621064, 0.0171822961419821, 0.0193045139312744, 0.00014602234296035, 0.0111160762608051, 0.00461838115006685, -0.0214778706431389, 0.0104704620316625, 0.0146254068240523, 0.000270271179033443, 0.00622282922267914, -0.00667348084971309, 0.0172078646719456, -0.0110777225345373, -0.0237535014748573, 0.0163257382810116, -0.00153413356747478, 0.00423484807834029, 0.00392482522875071, -0.0423676557838917, 0.00944770593196154, -0.00146621617022902, 0.0157632231712341, 0.002489770995453, -0.0193300824612379, -0.00931346882134676, -0.0333162657916546, 0.00850165728479624, -0.0144464243203402, -0.0235361661761999, 0.0212988872081041, -0.0147404670715332, -0.00274545978754759, -0.0330094397068024, -0.0220915228128433, -0.00282056839205325, -0.00638583116233349, -0.000870940391905606, 0.00372027396224439, -0.00345819280482829, -0.00574660860002041, -0.0135515136644244, 0.031270757317543, -0.00815008487552404, 0.0052448189817369, -0.00598951335996389, 0.026182547211647, 0.00520646572113037, -0.0459984391927719, 0.00753643130883574, -0.0316031500697136, -0.00328879873268306, 0.0129826050251722, -0.00253931060433388, -0.00110026146285236, -0.0105088148266077, 0.00382574554532766, 0.0202761329710484, -0.0047590103931725, 0.0107708964496851, -0.0317565649747849, -0.00949245132505894, -0.0200460124760866, -0.0102595183998346, -0.0440807715058327, -0.00187611754518002, 0.0317565649747849, -0.000690759625285864, 0.0107581112533808, 0.0230120029300451, 0.0185885857790709, -0.0199565216898918, -0.0304014142602682, -0.0368959121406078, -0.0115123940631747, -0.016057264059782, -0.0103234406560659, -0.00308105163276196, -0.0228969436138868, 0.0171567276120186, 0.0100869284942746, -0.0203784070909023, 0.00462796958163381, 0.0169393923133612, -0.0377652533352375, -0.0253132041543722, 0.0226796083152294, 0.00632510473951697, -0.0260291323065758, -0.00865507032722235, 0.00816286914050579, 0.0171950813382864, 0.00041429596603848, 0.0264382343739271, 0.0121516166254878, -0.0017051255563274, 0.0194451436400414, -0.0015077656134963, 0.0411914847791195, 0.0150217246264219, -0.00816926173865795, -0.0347736924886703, 0.00726795801892877, 0.010668620467186, 0.021094337105751, 0.00544937048107386, 0.0163129530847073, 0.0215545762330294, 0.004148552659899, -0.0356174670159817, 0.00683967862278223, -0.0387880094349384, 0.0186141543090343, 0.0522883869707584, 0.0345180071890354, -0.00352850719355047, -0.0177831649780273, -0.00531513383612037, 0.0108667798340321, 0.0298900362104177, -0.0075683924369514, -0.0104704620316625, 0.00778572773560882, -3.2909960282268e-05, -0.0235233809798956, -0.0110777225345373, -0.0278700925409794, -0.00583290355280042, 0.00795192550867796, 0.0164663661271334, 0.00866785459220409, 0.0106750130653381, 0.0253132041543722, -0.00563154881820083, 0.000105471684946679, -0.00073270860593766, -0.0111416447907686, -0.0130145661532879, 0.0351316593587399, 0.00234434776939452, -0.0149066643789411, 0.00706340651959181, -0.0196624789386988, 0.0212477501481771, 0.0359242931008339, -0.00543019361793995, -0.00740858679637313, 0.0116274543106556, 0.0162873845547438, -0.0122602842748165, -0.0269496124237776, -0.0532855726778507, -0.0231270641088486, -0.00940935220569372, -0.0218230504542589, 0.00457043945789337, 0.0199437364935875, -0.00271829287521541, 0.0648938491940498, -0.0151239996775985, -0.01250318903476, -0.00301073724403977, 0.016146756708622, 0.0227435305714607, -0.0189209803938866, 0.00471426453441381, -0.031373031437397, 0.0342367477715015, 0.0188954118639231, -0.0184735246002674, 0.0146254068240523, -0.0138711240142584, -0.0149833709001541, 0.00635387003421783, 0.0119918109849095, 0.002435436937958, -0.0115891005843878, 0.00751086231321096, 0.0176297519356012, 0.0149066643789411, 0.00152694236021489, -0.00301553122699261, 0.00668626558035612, -0.00579774659126997, 0.0164791513234377, 0.0108731715008616, 0.0159549899399281, -0.0443875975906849, -0.0238174237310886, 0.0151367848739028, -0.0115187866613269, -0.0171695109456778, 0.03132189437747, -0.0209920611232519, -0.00440424168482423, 0.0163896605372429, -0.0214906539767981, 0.00170672358945012, 0.00256328145042062, 0.0333929732441902, -0.0240475442260504, -0.0248146113008261, -0.0123114222660661, 0.0154691804200411, -0.0145870530977845, -0.00708258338272572, -0.00570825533941388],id:"c0676ea6268c23738a616a98ad27f3b4",source:"state_of_union.txt",text:"He and his Dad both have Type 1 diabetes, which means they need insulin every day. Insulin costs about $10 a vial to make.
But drug companies charge families like Joshua and his Dad up to 30 times more. I spoke with Joshua’s mom.
Imagine what it’s like to look at your child who needs insulin and have no idea how you’re going to pay for it.
What it does to your dignity, your ability to look your child in the eye, to be the parent you expect to be.
Joshua is here with us tonight. Yesterday was his birthday. Happy birthday, buddy.
For Joshua, and for the 200,000 other young people with Type 1 diabetes, let’s cap the cost of insulin at $35 a month so everyone can afford it.
Drug companies will still do very well. And while we’re at it let Medicare negotiate lower prices for prescription drugs, like the VA already does."})
(:Chunk{embedding:[-0.00522474618628621, 0.0137804364785552, 0.00851539615541697, -0.0230614133179188, 0.0149623844772577, -0.0215033907443285, 0.00605748221278191, -0.0231017060577869, -0.018226170912385, 0.0243508107960224, 0.0284204706549644, 0.0428993329405785, -0.0127865262329578, 0.00976449996232986, 0.00366336642764509, 0.0148146403953433, 0.0286890957504511, -0.0135386744514108, 0.00683985091745853, 0.00256368494592607, -0.0354047082364559, 0.011967221274972, -0.0145325846970081, 0.00268456595949829, -0.00461698323488235, -0.0185350906103849, 0.0355927459895611, -0.02059006690979, 0.030703779309988, -0.0208855550736189, 0.0104159144684672, -0.0151101276278496, -0.0174874551594257, -0.00452632270753384, -0.022255539894104, 0.020563205704093, -0.0143579794093966, 0.00596682168543339, 0.0415830723941326, -0.0283130221068859, 0.0409115105867386, -0.010543511249125, 0.00272150197997689, 0.0194349810481071, -0.00114920909982175, 0.0113023752346635, -0.017205398529768, -0.0187634211033583, -0.0257610883563757, 0.021946620196104, -0.00971749052405357, 0.00961675681173801, -0.0289308577775955, -0.00574520649388433, -0.0209661424160004, -0.0145728783681989, -0.0116784498095512, 0.0198110565543175, 0.00753491697832942, 0.00155046698637307, -0.0240821857005358, -0.0094958757981658, -0.0241493415087461, 0.00332926469855011, -0.0280981212854385, -0.0111814942210913, 0.0198513492941856, 0.0251969769597054, 0.00977121572941542, 0.0143848415464163, 0.046552624553442, 0.0332288481295109, 0.00993910618126392, -0.0273325424641371, 0.000470092869363725, -0.0109867416322231, -0.0170576553791761, 0.00180482084397227, -0.0106442458927631, 0.000190240709343925, 0.0254790335893631, -0.000441971234977245, -0.0170576553791761, -0.00825348775833845, 0.0170710869133472, 0.0061515006236732, -0.033739235252142, 0.0206572227180004, -0.0350554957985878, 0.00165036169346422, 0.0319125913083553, 0.00134060415439308, 0.00502327783033252, 0.0207646731287241, 0.00916681066155434, 0.026660980656743, -0.0107114017009735, 0.0146131720393896, 0.00573849072679877, -0.0260297134518623, 0.00254521705210209, 0.00911980122327805, -0.0384133011102676, -0.00468078162521124, -0.0185082275420427, -0.0113695319741964, -0.00568812340497971, 0.00860941503196955, 0.00593324331566691, 0.00340481544844806, -0.0147340530529618, -0.000252465048106387, 0.00763565115630627, -0.00977121572941542, 0.0151907149702311, 0.00290618115104735, -0.00969734415411949, 0.0107785575091839, -0.0114769814535975, -0.00322181498631835, 0.00909293908625841, 0.0252238400280476, 0.0301128048449755, 0.0207378100603819, -0.00909293908625841, -0.0242299288511276, -0.0393803492188454, -0.00243608839809895, -0.00959660951048136, -0.00828706566244364, 0.00770280743017793, -0.000770616519730538, 0.0230479817837477, -0.00744089856743813, -0.0287965461611748, 0.0451020523905754, 0.00281048379838467, 0.0268893111497164, -0.0242030657827854, -0.00121216801926494, 0.0343839339911938, 0.0134312249720097, -0.0149892466142774, 0.00795128475874662, -0.0173262804746628, 0.0128805441781878, 0.0133707839995623, 0.00718570500612259, 0.0161577630788088, 0.00660144677385688, -0.000938506796956062, -0.000875547935720533, 0.0257879514247179, 0.0292800702154636, 0.00226819794625044, 0.00417375285178423, 0.01458630990237, -2.77543658739887e-05, -0.0241627730429173, -0.00885117705911398, -0.0113426689058542, -0.00797143206000328, 0.00626230845227838, 0.0138610238209367, -0.0185485202819109, -0.00442894641309977, -0.0104427775368094, 0.00774981640279293, 0.00167302694171667, 0.00342832016758621, 0.00526503985747695, 0.0328796394169331, 0.00492590153589845, 0.0245254151523113, -0.00897877383977175, 0.0316708274185658, -0.0257342271506786, 0.0187365580350161, -0.00756849488243461, -0.0344376601278782, 0.007044677156955, -0.00021594890858978, 0.0113426689058542, 0.0334974750876427, -0.00328561337664723, -0.0098047936335206, 0.0189514569938183, 0.0189380273222923, 0.0018887659534812, 0.000115214723336976, 0.0125649105757475, 0.0376074276864529, 0.00872358027845621, -0.0123030012473464, -0.616332054138184, 0.0175008848309517, -0.0042241201736033, 0.00267952936701477, 0.0074140359647572, 0.014250528998673, 0.00161678367294371, 0.0208855550736189, -0.0363180302083492, 0.00168897653929889, 0.00466735055670142, -0.0114836972206831, -0.0290920324623585, -0.0202811490744352, -0.000141027863719501, -0.0126992231234908, 0.0149086592718959, -0.0176217667758465, -0.0157951209694147, -0.0154862022027373, -0.000129695268697105, 0.00194416975136846, -0.0228062197566032, -0.00289442879147828, -0.00185854570008814, 0.00574856391176581, -0.00156305881682783, -0.0231688618659973, 0.0071521271020174, -0.0162786450237036, -0.00105519057251513, 0.022940531373024, 0.000322139530908316, 0.0274399910122156, 0.049426905810833, 0.00190891278907657, 0.0282055716961622, 0.016708442941308, 0.010026409290731, 0.0194484125822783, -0.0294949691742659, 0.00146484293509275, 0.0121351117268205, 0.012893975712359, 0.00565454550087452, 0.00908622331917286, -0.00393870659172535, 0.00199117907322943, -0.00441551487892866, -0.00480837840586901, -0.00297165848314762, 0.0388699620962143, -0.0134648028761148, -0.0119605055078864, 0.0101607218384743, 0.00535905873402953, 0.00234710657969117, -0.0477345734834671, 0.00542957242578268, 0.0183470528572798, 0.012148542329669, -0.0108658606186509, 0.0058257938362658, -0.0235315058380365, -0.0171382427215576, 0.0143311163410544, -0.00162182038184255, 0.0255193263292313, 0.00225308793596923, -0.0124305980280042, -0.0220540706068277, 0.0217317212373018, -0.00792442262172699, -0.0182798970490694, 0.0216914284974337, -0.0114635499194264, 0.0253178589046001, -0.0151101276278496, -0.0274131298065186, 0.0216645654290915, 0.0105233648791909, -0.00952945370227098, -0.0155533580109477, -0.0173934362828732, -0.00367343984544277, -0.00272150197997689, 0.017380004748702, -0.0094958757981658, 0.0226719062775373, -0.00420397333800793, 0.0200393870472908, 0.00786398164927959, -0.00252339127473533, -0.0456930249929428, -0.00325035629794002, 0.00528182927519083, -0.0149489529430866, 0.000464636425022036, 0.00909293908625841, -0.00210870220325887, -0.0245657097548246, -0.0065510799176991, 0.0143311163410544, 0.00767594482749701, 0.011221787892282, 0.0169636365026236, -0.0164666809141636, 0.00885789282619953, 0.0413144454360008, -0.0387356504797935, -0.0228868070989847, -0.00180482084397227, -0.00919367279857397, -0.0194349810481071, -0.00667531881481409, -0.0122425612062216, -0.000581739936023951, 0.0116112940013409, 0.0116247246041894, -0.0128805441781878, 0.0148952277377248, 0.0287696830928326, 0.00409652339294553, -0.0340884476900101, 0.0241896361112595, 0.00194584869313985, 0.0204960480332375, 0.00681970408186316, 0.00797143206000328, -0.0290651693940163, 0.00267281359992921, 0.00969062838703394, 0.0169770680367947, 0.0119739370420575, 0.00922725163400173, 0.0178500972688198, 0.00099894730374217, -0.02040203101933, 0.0143848415464163, -0.00168393983040005, -0.0105838049203157, 0.0168964806944132, 0.00152360450010747, -0.00671896990388632, -0.00328729231841862, -0.0124574610963464, 0.00531204929575324, -0.00204490404576063, 0.00366000877693295, -0.022094365209341, -0.0124238831922412, 0.00840794667601585, -0.012061239220202, -0.0162249188870192, -0.0105770891532302, -0.012820104137063, 0.00883774552494287, -0.0163458008319139, -0.0317782759666443, -0.0205363426357508, 0.00667531881481409, 0.0327990502119064, -0.00330408127047122, 0.00673911673948169, -0.00104427768383175, 0.0181187223643064, 0.00454311165958643, 0.0136797018349171, -0.0167487375438213, -0.0190454758703709, 0.00628581317141652, -0.0278026349842548, 0.0018803714774549, 0.0162652134895325, 0.016184626147151, 0.0276951845735312, -0.0220137778669596, -0.000427490682341158, -0.0147877782583237, 0.00409652339294553, 0.0123835895210505, -5.17312000738457e-05, -0.00819304678589106, 0.00744761386886239, 0.0147340530529618, 0.00223629898391664, 0.0120881022885442, 0.0123030012473464, -0.0116045782342553, 0.0290383081883192, 0.00596010591834784, 0.0274937171489, 0.0158085506409407, 0.031536515802145, 0.0115239908918738, -0.0159562956541777, -0.00417375285178423, 0.00762222008779645, 0.0315633788704872, 0.0139819048345089, 0.025465602055192, 0.00837436877191067, 0.0198647808283567, -0.00447259796783328, 0.0219331905245781, -0.0311067160218954, 0.0238269921392202, 0.00218928954564035, 0.0027198230382055, 0.00559410499408841, 0.00652757519856095, -0.0373388044536114, 0.00521803088486195, -0.018212741240859, -0.0128402505069971, 0.00170072878245264, -0.00907279178500175, 0.0179709792137146, 0.0125380484387279, -0.0213959403336048, 0.0175814721733332, -0.00111311278305948, 0.0343839339911938, -0.0188305769115686, -0.0128671135753393, 0.00489232363179326, -0.0103353271260858, 0.0229002386331558, 0.0175814721733332, -0.0115441372618079, 0.000318991573294625, 0.00387826608493924, 0.00302370451390743, 0.0399981886148453, 0.00673911673948169, -0.0153250275179744, -0.00809902884066105, -0.00931455381214619, 0.0181858781725168, 0.0180918592959642, 0.0233568996191025, 0.00295822718180716, 0.0118664866313338, 0.0119403582066298, -0.0098786661401391, -0.0207378100603819, 0.0410189591348171, 0.0332557111978531, -0.00274164881557226, 0.00208687642589211, 0.00705139292404056, 0.0354315713047981, 0.00425098277628422, 0.0222421083599329, 0.0103084649890661, -0.0149489529430866, 0.0125246169045568, 0.0287965461611748, 0.0415830723941326, 0.0453975386917591, 0.0265803933143616, 0.0111882099881768, -0.00321509945206344, 0.00387826608493924, 0.00327553995884955, 0.00545979291200638, -0.0226450450718403, -0.00164868286810815, -0.00307239266112447, -0.0108457142487168, -0.0076155043207109, -0.0151907149702311, -0.00247134524397552, -0.0467675253748894, -0.00363986194133759, 0.0422277711331844, -0.0231420006603003, 4.26283986598719e-05, 0.00435843225568533, 0.00815946888178587, 0.000518781074788421, -0.0230882745236158, 0.0182664655148983, 0.00747447647154331, -0.0238404236733913, 0.00616829004138708, 0.00430470751598477, 0.00150849437341094, -0.00406294548884034, 0.0102816028520465, -0.0113158067688346, 0.00707825552672148, -0.0156205138191581, 0.0137938680127263, 0.00819304678589106, -0.0220540706068277, 0.0352166704833508, -0.00410323916003108, 0.00995925348252058, -0.0119336433708668, -0.0147743467241526, 0.00616493215784431, -0.0155667895451188, 0.0067055388353765, 0.000675338786095381, 0.032906498759985, -0.00843480881303549, -0.0193006694316864, 0.00795800052583218, -0.0318588651716709, 0.0267684310674667, -0.024458259344101, 0.0125850578770041, 0.0181993097066879, 0.0110673289746046, -0.0201468374580145, -0.0130148567259312, -0.0254521705210209, 0.0240821857005358, 0.0209661424160004, -0.0256536398082972, -0.0132028935477138, -0.0360762700438499, -0.00634289579465985, 0.121310822665691, 0.0265803933143616, -4.95473159389803e-06, 0.0156473759561777, 0.0307575035840273, -0.00399914709851146, -0.0195289999246597, 0.00517773721367121, -0.0170710869133472, -0.0170307923108339, 0.00526503985747695, 0.0103487586602569, -0.00435843225568533, -0.0284473337233067, 0.0191126316785812, 0.0174471605569124, -0.00454311165958643, -0.0224032830446959, -0.0163995251059532, -0.00275507988408208, 0.000179537702933885, -0.0105367954820395, 0.0253178589046001, 0.0419322848320007, 0.0159965883940458, 0.00036579099833034, 0.0318588651716709, 0.0347062833607197, 0.0176217667758465, -0.0152444401755929, -0.000112696368887555, -0.00453975377604365, 0.00225644581951201, 0.0170307923108339, -0.0118396244943142, 0.000239033819525503, -0.00453303847461939, -0.0171785354614258, 0.0290383081883192, 0.00343167781829834, 0.0166547186672688, 0.0199453681707382, -0.0112687973305583, -0.0234509184956551, 0.00791770685464144, -0.033040814101696, -0.0369090065360069, 0.0235717985779047, 0.00357270566746593, -0.0206840857863426, 0.0138610238209367, -0.00271478621289134, -0.025801382958889, 0.0157548263669014, 0.00429127644747496, 0.019730469211936, -0.00830721203237772, -0.0124507453292608, -0.00441887276247144, -0.0363986194133759, -0.0150429718196392, -0.0199856627732515, 0.0286890957504511, -0.0208721235394478, -0.0401593632996082, -0.0144922910258174, 0.00948916003108025, 0.015351889654994, -0.0290920324623585, 0.00071143516106531, 0.0280443970113993, -0.0292263440787792, -0.0345451086759567, 0.0179844088852406, 0.00872358027845621, -0.00449274480342865, -0.00115004857070744, 0.0121955517679453, 0.0295218322426081, 0.00849524978548288, -0.000669462606310844, -0.0310529917478561, 0.0102883176878095, -0.0180784277617931, 0.00117691105697304, -0.0152310086414218, -0.0131894629448652, -0.00825348775833845, -0.0228196512907743, 0.0423083566129208, -0.00327721890062094, -0.0149489529430866, 0.0283130221068859, -0.0231285691261292, 0.000745852710679173, 0.014922090806067, -0.00770952273160219, -0.00723271444439888, -0.0155667895451188, -0.00644698785617948, 0.0140221985056996, 0.0106979701668024, -0.0148280719295144, -0.0152175771072507, 0.00257040071301162, 0.00125414063222706, 0.0064738504588604, 0.00577542651444674, -0.0157682579010725, -0.0295486934483051, 0.0293875187635422, -0.0268758796155453, -0.0191394947469234, -0.00629924423992634, 0.0203885994851589, -0.0116247246041894, 0.00059517112094909, -0.0124641768634319, -0.0328527763485909, -0.0139550426974893, -0.0119940834119916, -0.0157279632985592, 0.0275340098887682, 0.0369358658790588, 0.00476136896759272, -0.00665181409567595, 0.00774981640279293, -0.00865642447024584, -0.00348540279082954, -0.0106509607285261, -0.0198110565543175, 0.0223629884421825, -0.00709840236231685, -0.0299516301602125, -0.00746104540303349, -0.020751241594553, -0.00274164881557226, 0.02817870862782, -0.0261774566024542, 0.0124238831922412, 0.00342999887652695, 0.00991895981132984, -0.0150966960936785, -0.0127126537263393, 0.0477077104151249, -0.0296561438590288, 0.00292968587018549, -0.00826691836118698, -0.00202643591910601, 0.0250760968774557, 0.00916009489446878, -0.0150966960936785, -0.0475733987987041, 0.00262076780200005, 0.00381111004389822, -0.0030438513495028, 0.0341690368950367, -0.00807216577231884, 0.012820104137063, 0.0122224139049649, 0.0310798529535532, -0.00916009489446878, -0.0123500106856227, -0.0076155043207109, 0.00498634204268456, 0.000826859788503498, 0.028339883312583, 0.0184545032680035, 0.00270471279509366, -0.0095093073323369, 0.0119202118366957, 0.0147071909159422, -0.0263520628213882, -0.0315633788704872, 0.0198513492941856, -0.00313283316791058, -0.00343167781829834, -0.0324498377740383, -0.0166547186672688, -0.0258685387670994, -0.0110538974404335, 0.0197976250201464, -0.00792442262172699, 0.00337795307859778, -0.00394878024235368, -0.0256939325481653, 0.0384133011102676, 0.0105502270162106, 0.0406428873538971, -0.00928769167512655, 0.0375805646181107, 0.0173128489404917, 0.0387356504797935, -0.0213019214570522, -0.00531540717929602, -0.030864953994751, -0.0282592959702015, -0.0223764199763536, 0.00817961618304253, 0.00129863154143095, 0.0159294325858355, 0.00851539615541697, -0.0044087995775044, -0.010026409290731, 0.000284993788227439, 0.0243776720017195, -0.00932126957923174, -0.00668203411623836, 0.0182664655148983, -0.00862956140190363, 0.0151101276278496, -0.0243105161935091, 0.00288603431545198, -0.023947874084115, -0.00354248541407287, -0.00966376625001431, -0.00904592964798212, 0.0167487375438213, -0.00317312683910131, -0.00232528080232441, -0.0154324769973755, -0.00489568151533604, -0.00238068448379636, -0.0077699632383883, 0.0150564024224877, -0.0137132806703448, 0.00444237748160958, -0.0218928959220648, 0.0121216801926494, 0.00436514802277088, 0.00185015122406185, 0.033040814101696, 0.02226896956563, -0.00917352642863989, 0.0126522136852145, -0.00691708084195852, 0.0143982730805874, 0.000312485848553479, -0.0365060679614544, 0.00638318946585059, -0.00178803177550435, -0.0126857915893197, -0.00636304263025522, -0.0246060024946928, 0.0176754910498857, 0.0444573536515236, 0.0253715831786394, -0.009865234605968, 0.00322013604454696, -0.0159965883940458, -0.0234777797013521, 0.0273594036698341, 0.00759535748511553, 0.0262849070131779, -0.0135386744514108, -0.0179575476795435, 0.00245287735015154, -0.021919758990407, 0.0116448719054461, -0.0162652134895325, 0.0023504642304033, 0.036291167140007, -0.00235717999748886, 0.029871042817831, -0.00351898092776537, -0.014250528998673, -0.0152310086414218, -0.0121283959597349, -0.000397690164390951, 0.0155667895451188, -0.0220540706068277, -0.0217317212373018, -0.0067357593216002, 0.0117858992889524, 0.00460019428282976, -0.00708497082814574, -0.0311604402959347, 0.00289610773324966, -0.0343302115797997, -0.00214899587444961, 0.00278362119570374, -0.009280975908041, -0.0385207533836365, -0.00183336215559393, 0.00371373351663351, -0.000612799602095038, -0.0194752756506205, -0.0157413948327303, 0.0345719717442989, 0.00866985507309437, -0.00655443780124187, 0.0200931113213301, -0.014760916121304, 0.0113225225359201, -0.00847510248422623, -0.00653093308210373, -0.00265602464787662, 0.00589294964447618, -0.0308380909264088, 0.0132230408489704, 0.011967221274972, 0.00946901366114616, -0.0172994174063206, 0.00288267666473985, -0.00341824674978852, -0.00564447231590748, -0.00737374229356647, -0.0236792489886284, -0.0500447414815426, -0.0200931113213301, 0.00372716481797397, -0.00398571603000164, 0.010791989043355, -0.0084616718813777, -0.0174740236252546, 0.00879745185375214, -0.000815946899820119, -0.0160637442022562, -0.0379835031926632, 0.0233568996191025, 0.00718570500612259, -0.0126186357811093, 0.0204826183617115, -0.00240083131939173, 0.0141162173822522, -0.032745324075222, 0.0221212264150381, 0.00935484748333693, 0.000913323252461851, 0.0130215724930167, 0.00672904355451465, 0.0204960480332375, -0.0182396024465561, -0.0229539629071951, -0.00455318531021476, -0.000195277418242767, -0.0157279632985592, 0.012820104137063, 0.0142370983958244, -0.0169367734342813, 0.0159562956541777, -0.00253010704182088, 0.0209392793476582, -0.0157682579010725, -0.0191932190209627, -0.0272385235875845, -0.0312947519123554, 0.00862284656614065, -0.00804530363529921, -0.0292532071471214, 0.00846838671714067, 0.0407234728336334, 0.00784383527934551, -0.0182396024465561, -0.026983330026269, -0.0130484346300364, -0.0425232574343681, -0.0106711080297828, -0.0120746707543731, 0.0264192186295986, 0.0215974096208811, 0.0336317867040634, -0.00623544584959745, 0.0491314195096493, 0.0137267112731934, 0.0414218977093697, -0.0216108411550522, 0.00688350247219205, 0.00605076644569635, 0.0145325846970081, -0.00748790754005313, 0.0159697253257036, -0.0169233437627554, -0.0125581948086619, 0.0187634211033583, 0.0197036061435938, 0.0183336213231087, 0.0244313981384039, -0.0117993308231235, -0.00674247462302446, 0.00858255289494991, 0.0122559927403927, -0.00347868725657463, 0.00302370451390743, 0.00014742866915185, -0.0372044928371906, 0.0187768526375294, 0.00738045806065202, -0.00294311717152596, -0.015351889654994, -0.018561951816082, 0.00791099108755589, -0.0276951845735312, 0.00891833286732435, -0.0199319366365671, 0.00577206863090396, -0.0198244880884886, -0.0325572900474072, 0.00304888794198632, 0.0106845395639539, -0.0309992656111717, 0.0221883822232485, 0.0176083352416754, -0.020227424800396, 0.0109061542898417, 0.0122224139049649, 0.00371373351663351, -0.00900563597679138, 0.00120125513058156, 0.00037376579712145, 0.0168427564203739, -0.00800500996410847, -0.0290651693940163, -0.0108322827145457, 0.00760878855362535, -0.00705810869112611, -0.00832064356654882, 0.0154593391343951, 0.00549672869965434, -0.0166009943932295, -0.0206169299781322, 0.00651414413005114, 0.00268792384304106, -0.0166412871330976, 0.0049023968167603, -0.00732001755386591, -0.000435675348853692, -0.0207646731287241, 0.011470265686512, 0.0170307923108339, -0.0328527763485909, -0.0263386312872171, 0.00843480881303549, -0.00697752134874463, 0.0116583025082946, 0.0309455413371325, 0.200608775019646, 0.018226170912385, -0.0111882099881768, 0.0397026985883713, 0.00108037411700934, 0.00404615653678775, 0.0181590151041746, 0.00488224998116493, -0.0352972596883774, 0.0186022464185953, -0.0398101508617401, -0.000786985794547945, -0.0336855128407478, 0.00283734616823494, -0.00221279426477849, -0.022094365209341, -0.0212884917855263, 0.0213287845253944, -0.0371776297688484, 0.0355927459895611, 0.0172994174063206, 0.0130484346300364, -0.00474122213199735, -0.012893975712359, -0.0164398197084665, 0.00936156325042248, -0.0027282175142318, 0.0162786450237036, 0.00565118761733174, 0.0175277478992939, -0.0191394947469234, 0.00796471629291773, 0.00511058093979955, 0.00817290041595697, -0.0126387821510434, -0.0215974096208811, 0.000172927015228197, -0.0177695099264383, 0.0217182897031307, 0.0305157415568829, -0.00366000877693295, 0.0321812145411968, -0.00282895169220865, -0.00743418280035257, 0.0086161307990551, 0.0274937171489, -0.0132700502872467, -0.0128603978082538, 0.0080923130735755, 0.013834161683917, -0.0317514166235924, 0.00566461915150285, 0.0152041465044022, 0.0269161742180586, -0.00397228449583054, 0.00756177958101034, 0.0137804364785552, 0.0203617364168167, 0.0121418265625834, 0.0285816453397274, 0.0247403159737587, 0.0473584979772568, -0.00852882768958807, 0.0222958326339722, -0.0290383081883192, 0.00647049257531762, -0.0040998812764883, 0.0103084649890661, 0.0129006914794445, -0.0183336213231087, -0.00762222008779645, 0.0244448278099298, -0.015016108751297, -0.010973310098052, -0.0197573322802782, -0.0119134960696101, 0.0359688177704811, 0.0311604402959347, 0.0116112940013409, -0.00272318068891764, -0.0158354137092829, 0.00139768677763641, -0.00121552578639239, -0.0282055716961622, 0.0180247034877539, -0.0324498377740383, 0.000396011251723394, 0.0188843011856079, -0.0174874551594257, -0.00744761386886239, 0.0102413091808558, -0.0246194340288639, -0.01458630990237, -0.00159579736646265, 0.00131542060989887, 0.0178635288029909, 0.00483524100854993, -0.00806545000523329, -0.0317245535552502, 0.00916009489446878, -0.00295319058932364, 0.0398907363414764, 0.0189917515963316, 0.0185485202819109, 0.0257610883563757, -0.0275877360254526, 0.00059517112094909, 0.0101472903043032, 0.0143982730805874, -0.019730469211936, 0.029844181612134, -0.0230614133179188, 0.00888475496321917, 0.00424426700919867, -0.00891833286732435, 0.00869000237435102, -0.0193678252398968, -0.0354584343731403, -0.00212717009708285, -0.00340313650667667, 0.00683985091745853, -0.036586657166481, 0.0041938996873796, 0.0140624921768904, 0.00539263663813472, -0.0283130221068859, -0.0305694676935673, -0.0166950114071369, -0.00491582835093141, -0.048056922852993, 0.00117019540630281, -0.0186022464185953, 0.00856912136077881, -0.0132901966571808, -0.0350554957985878, 0.0160637442022562, 0.0133842155337334, -0.00748119223862886, 0.00109632371459156, 0.0141699416562915, 0.000648056564386934, 0.00292464904487133, -0.00512736989185214, 0.00819304678589106, 0.00156054040417075, -0.0251566842198372, 0.0243642404675484, -0.00412674387916923, -0.0146668972447515, -0.0136662712320685, -0.0487822070717812, 0.0157951209694147, 0.0144788604229689, -0.0106643922626972, 0.0121149644255638, -0.00801844149827957, -0.0392460376024246, -0.011382962577045, 0.0110270353034139, 0.00626902421936393, -0.0524623617529869, 0.0109598794952035, 0.0138207301497459, -0.00590638117864728, -0.0150295402854681, -0.00691708084195852, -0.168696179986, 0.00417375285178423, 0.00247638206928968, -0.00395213766023517, -0.00438529485836625, 0.0195021387189627, 0.0109128700569272, -0.00426777172833681, -0.000354458403307945, 0.00257375836372375, -0.00122643867507577, -0.0218526031821966, -0.0148683656007051, 0.0272116605192423, 0.0089720580726862, 0.00732001755386591, -0.0395146645605564, 0.0614612847566605, -0.000517102133017033, 0.0107718417420983, 0.0187499895691872, -0.026150593534112, 0.00374059611931443, -0.0207109488546848, 0.0288234073668718, -0.00332422810606658, -0.00450617587193847, 0.00309589738026261, 0.00719913654029369, -0.0133707839995623, -0.0299784932285547, 0.0305963288992643, 0.0242299288511276, 0.0198379196226597, 0.00421740440651774, -0.0201468374580145, -0.0132700502872467, 0.0154190454632044, -0.0107584111392498, 0.0429261922836304, 0.0203348733484745, -0.00159243959933519, 0.0150966960936785, 0.0112956594675779, -0.0118127623572946, 0.0132431872189045, 0.0181590151041746, -0.0165875628590584, 0.000403776182793081, -0.00715884286910295, 0.00359621038660407, 0.000323818443575874, -0.0173262804746628, 0.00739388912916183, 0.0172994174063206, 0.000667783722747117, -0.00331919128075242, 0.00532883824780583, -0.00177963729947805, -0.0320200398564339, -0.0135856838896871, -0.0291457567363977, -0.00871014874428511, 0.00549001293256879, -0.0148146403953433, -0.0219869147986174, -0.00832064356654882, -0.0242567919194698, -0.0326110124588013, 0.017205398529768, 0.0111009068787098, -0.0241896361112595, -0.00670218095183372, -0.0161980576813221, 0.0031748057808727, -0.0140490606427193, -0.0242299288511276, 0.00244951946660876, -1.90975224541035e-05, -0.000162119074957445, 0.0166009943932295, 0.039299763739109, -0.0204423237591982, -0.00369694456458092, -0.0186291076242924, 0.00374395377002656, 0.0230211187154055, -0.00112570449709892, -0.0106845395639539, -0.0192603766918182, -0.00378760532476008, -0.0220272075384855, 0.00527847139164805, -0.0258819703012705, -0.00222118874080479, 0.00329736573621631, 0.00894519593566656, -0.0112553657963872, -0.00362643063999712, -0.00781697314232588, -0.00265770358964801, -0.00254857493564487, -0.0164801124483347, 0.00451624905690551, 0.0310261286795139, 0.000158656344865449, 0.00395885342732072, 0.0134782334789634, -0.00639662053436041, -0.021919758990407, -0.0276414602994919, 0.0214093718677759, 0.0108725763857365, 0.0213019214570522, -0.00853554345667362, 0.0169367734342813, -0.0163592323660851, -0.0192872378975153, -0.00235382211394608, -0.000215739040868357, 0.0152847338467836, -0.0116985961794853, -0.0132566187530756, -0.0111412005499005, -0.00316976895555854, -0.0229270998388529, -0.127542912960052, -0.00443230429664254, 0.017702354118228, 0.023947874084115, 0.00354920118115842, -0.0218928959220648, -0.0203885994851589, 0.0362374447286129, -0.00582243595272303, 0.0277489107102156, -0.0138207301497459, -0.015848845243454, -0.00652421731501818, -0.00498634204268456, 0.0452632270753384, -0.0157279632985592, -0.0113292383030057, -0.0350017696619034, -0.0309724044054747, 0.0366672426462173, -0.000455402449006215, -0.0155264958739281, -0.00424426700919867, -0.0156742390245199, 0.000329064991092309, -0.0146937593817711, -0.028850270435214, 0.018038135021925, 0.00252339127473533, 0.0172188300639391, 0.00721928337588906, -0.00804530363529921, 0.0168427564203739, -0.0147340530529618, -0.000411541113862768, -0.00360964168794453, -0.00560753606259823, -0.0345451086759567, 0.00989881251007318, -0.0463108606636524, -0.00896534230560064, 0.00840794667601585, 0.0153250275179744, -0.0570558421313763, 0.003183200256899, -0.0311873033642769, 0.0189648885279894, -0.0139416111633182, 0.00540606770664454, -0.0231420006603003, -0.0255596209317446, 0.00428791856393218, -0.0240418910980225, -0.00259054754860699, 0.00146148516796529, -0.012309717014432, 0.00223965663462877, -0.00972420629113913, 0.00785726681351662, -0.0206572227180004, -0.00323356734588742, -0.00205665617249906, -0.0220540706068277, 0.0390311367809772, 0.0126052042469382, -0.0105636585503817, -0.0136528396978974, -0.0102614555507898, -0.00226484029553831, -0.0260028503835201, -0.0238807164132595, 0.0194349810481071, -0.00403272500261664, 0.0273056793957949, -0.0255327578634024, 0.0220809336751699, -0.0175814721733332, -0.0155667895451188, 0.0232225880026817, -0.00790427532047033, -0.0196767430752516, -0.025465602055192, 0.0216242708265781, 0.00208016089163721, 0.0144788604229689, -0.00905264541506767, 0.00348204490728676, 0.0012415488017723, -0.0210601594299078, -0.0155667895451188, 0.0286085084080696, 0.0297635942697525, -0.00748790754005313, 0.00408980809152126, -0.000574604549910873, 0.0173128489404917, -0.0271713677793741, -0.0124238831922412, 0.00657794205471873, 0.00529190246015787, -0.0280175339430571, -0.000175235501956195, -0.045719888061285, 0.0180515665560961, 0.00746104540303349, 0.00598361063748598, 0.0144788604229689, 0.0152444401755929, 0.00516766356304288, -0.0123164327815175, -0.0329870879650116, 0.00844152458012104, -0.0149086592718959, 0.032906498759985, 0.00189716042950749, -0.0117456056177616, -0.00817290041595697, -0.0135991144925356, 0.004130101762712, 0.0129745630547404, 0.0101607218384743, 0.00790427532047033, 0.00670218095183372, -0.0133372060954571, 0.00511393882334232, 0.00729987071827054, -0.0108994385227561, 0.0290920324623585, -0.00526839774101973, 0.030864953994751, 0.00805201940238476, -0.0171382427215576, -0.000504930096212775, -0.0169636365026236, 0.00497626885771751, 0.0260834377259016, 0.00099642900750041, -0.0130551503971219, 0.00829378142952919, -0.0195021387189627, 0.0147206224501133, -0.0119067803025246, -0.00756849488243461, -0.0112016415223479, -0.00795128475874662, -0.0304351542145014, -0.0076155043207109, -0.032745324075222, 0.00486210314556956, 0.0166412871330976, 0.0091265169903636, -1.52150587382494e-05, 0.0475733987987041, 0.0120142307132483, -0.0210735909640789, -0.00760878855362535, -0.0112620815634727, -0.048056922852993, -0.0197170376777649, -0.00147743464913219, -0.0124238831922412, -0.0375805646181107, 0.0286890957504511, 0.0112553657963872, 0.0231285691261292, -0.025465602055192, 0.0142908226698637, -0.0121082486584783, 0.00532883824780583, -0.00652421731501818, -0.00700438348576427, -0.0434634424746037, -0.00455318531021476, -0.00510722305625677, 0.000102885278465692, 0.0390042774379253, 0.00793113838881254, 0.00819304678589106, -0.00642348313704133, -0.00227995030581951, 8.02725553512573e-05, 0.0313216149806976, 0.00832064356654882, -0.0024814186617732, -0.0430605076253414, 0.0077699632383883, 0.00639997841790318, 0.0260431449860334, -0.00249988678842783, -0.0180112719535828, -0.00652757519856095, -0.00612128060311079, -0.0333363004028797, 0.00699095241725445, -0.0143714100122452, 0.0072595770470798, 0.0273594036698341, 0.0075214859098196, 0.0273594036698341, -0.0128536820411682, -0.00518109509721398, 0.0157951209694147, 0.0269564669579268, -0.0161711946129799, -0.0338735468685627, -0.0100196935236454, -0.00751477014273405, -0.0130618661642075, 0.00298844743520021, -0.0297635942697525, -0.0112285036593676, 0.0208989847451448, 0.00976449996232986, 0.0230076871812344, 0.0275340098887682, 0.0215705465525389, -0.0161309000104666, 0.0217451527714729, -0.00999954715371132, -0.0170039311051369, -0.00781025690957904, 0.0047479378990829, 0.00726629234850407, 0.0122962864115834, 0.016023451462388, -0.0107987048104405, 0.0382252633571625, 0.0217182897031307, -0.00617836322635412, 0.0174740236252546, -0.00329064996913075, 0.0248477663844824, -0.0267684310674667, -0.0203483048826456, -0.045881062746048, -0.0062891710549593, -0.033416885882616, -0.0151369897648692, -0.00354248541407287, -0.00147071911487728, -0.0129275536164641, 0.0538860745728016, 0.000515842984896153, -0.000255822844337672, -0.000195697139133699, 0.024632865563035, 0.0169904995709658, -0.0138610238209367, 0.00564447231590748, -0.0134648028761148, 0.00405287183821201, 0.0138475922867656, -0.0121418265625834, 0.00576871074736118, 0.00797143206000328, -0.00512736989185214, -0.00451624905690551, 0.0207109488546848, 0.0368015542626381, -0.0130215724930167, 0.0206437930464745, 0.0152847338467836, 0.0157413948327303, 0.0251701157540083, 0.0175546109676361, -0.033739235252142, -0.0373656675219536, 0.010456208139658, -0.00151185225695372, 0.00756177958101034, 0.00107869517523795, -0.0188305769115686, -0.00346861383877695, -0.00384468794800341, 0.0040998812764883, 0.0310261286795139, -0.0031378697603941, -0.0150832654908299, 0.0205766353756189, -0.00513744354248047, -0.00210198666900396, 0.0125447642058134, 0.0332825742661953, -0.0218928959220648, -0.0436514802277088, -0.0165472682565451, 0.038628201931715, 0.0041166702285409, -0.0258416756987572, -0.0399713255465031],id:"525eab9f86a715e4ff0848030a2180c6",source:"state_of_union.txt",text:"Look, the American Rescue Plan is helping millions of families on Affordable Care Act plans save $2,400 a year on their health care premiums. Let’s close the coverage gap and make those savings permanent.
Second – cut energy costs for families an average of $500 a year by combatting climate change.
Let’s provide investments and tax credits to weatherize your homes and businesses to be energy efficient and you get a tax credit; double America’s clean energy production in solar, wind, and so much more; lower the price of electric vehicles, saving you another $80 a month because you’ll never have to pay at the gas pump again.
Third – cut the cost of child care. Many families pay up to $14,000 a year for child care per child.
Middle-class and working families shouldn’t have to pay more than 7% of their income for care of young children."})
(:Chunk{embedding:[-0.00703655276447535, -0.0197390727698803, 0.00346581381745636, -0.0285134501755238, 0.0200145002454519, -0.0105449929833412, -0.00771200936287642, -0.0273330397903919, -0.0209719445556402, 0.0092858886346221, 0.0491312704980373, 0.0172470957040787, -0.00682014459744096, 0.013535363599658, -0.00809892173856497, 0.015738794580102, 0.0207489784806967, -0.0255099628120661, 0.00638404861092567, -0.0201981198042631, -0.00825630966573954, -0.000171630745171569, 0.00211326102726161, -0.00704966858029366, -0.00401339260861278, -0.00385272596031427, 0.0294577777385712, -0.0040396242402494, 0.0230835657566786, -0.00128861388657242, 0.00496427807956934, -0.00923342630267143, -0.0163027681410313, -0.01767991296947, -0.0470852293074131, 0.0111548714339733, 0.00150092365220189, -0.00522659160196781, 0.0365664660930634, -0.0286970697343349, 0.0196210313588381, -0.00677423970773816, 0.0168273951858282, -0.0019394785631448, -0.00873503088951111, -0.00667587202042341, -0.0366713926196098, -0.0108663262799382, -0.0122631443664432, 0.0153715563938022, -0.00333629664964974, 0.017614334821701, -0.0333924777805805, 0.0073316553607583, -0.00923342630267143, -0.00685293367132545, -0.00324940541759133, 0.0408684052526951, -0.0167618170380592, 0.00944327656179667, 0.00676768179982901, 0.0049478835426271, -0.0298512484878302, 0.0173651371151209, -0.00967935938388109, -0.0154633661732078, -0.00478393770754337, 0.0159092992544174, 0.0224540140479803, 0.015187936834991, 0.0403962396085262, 0.0351762063801289, 0.00896455533802509, -0.00871535763144493, 0.0192144457250834, -0.0106630334630609, -0.0254050381481647, -0.0235557295382023, -0.0152535159140825, -0.00376419513486326, 0.0150305489078164, 0.0163814630359411, -0.0321858376264572, -0.00179028790444136, 0.0196210313588381, 0.00449867220595479, -0.00426586903631687, 0.0269133392721415, -0.0180864986032248, -0.00136566837318242, 0.019948922097683, 0.0127221923321486, 0.00910882744938135, 0.0412094108760357, -0.00147715152706951, 0.0383239649236202, -0.0318448282778263, 0.0266116801649332, 0.00304939155466855, -0.0448817983269691, 0.00561022479087114, 0.00935802515596151, -0.00758741097524762, -0.0104728564620018, 0.0114762047305703, -0.0013787840725854, -0.0219031572341919, -0.0196866095066071, -0.0046495022252202, -0.00752183236181736, -0.005846306681633, -0.0219425037503242, 0.00916784815490246, -0.00343630346469581, 0.0246312133967876, 0.0035510656889528, -0.00894488207995892, 0.006088946480304, -0.0128926960751414, 0.00670866155996919, 0.00727919256314635, 0.00406585540622473, 0.0112991435453296, 0.00452490337193012, 0.00598730007186532, -0.0152272842824459, -0.0379042662680149, -0.0212211422622204, 0.00542660523205996, -0.00273789465427399, 0.0208145566284657, 0.00217883940786123, 0.0135222477838397, -0.0135747110471129, -0.0197259560227394, 0.00490853656083345, -0.0163289997726679, -0.00674145063385367, -0.0332088582217693, -0.0214309934526682, 0.0286446064710617, -3.59912228304893e-05, -0.000507002347148955, -0.00302479974925518, 0.00456425035372376, 0.012079524807632, 0.0152797466143966, 0.00203784601762891, 0.0300610978156328, -0.0137058673426509, 0.00220179185271263, 0.0172470957040787, 0.0129451593384147, 0.0115417828783393, 0.00425275368615985, 0.0197915341705084, 0.0068135866895318, 0.00644962722435594, -0.0133714182302356, -0.0113057009875774, 0.00563973467797041, -0.0152141684666276, 0.0102367745712399, 0.00372156919911504, -0.00338711985386908, 0.00428554276004434, 0.014702657237649, 0.0186242405325174, 0.0125320153310895, 0.00169028097297996, 0.00946295075118542, 0.0210112910717726, -0.0357795283198357, 0.00460359733551741, -0.0112860277295113, 0.00324120814912021, -0.00383961014449596, 0.0047413120046258, -0.0242639761418104, -0.0245787519961596, 0.012918927706778, 0.0139812966808677, 0.0180209204554558, 0.0273068100214005, 0.016066687181592, -0.00585942203179002, 0.0277002789080143, 0.0201325416564941, 0.00724640348926187, -0.00752183236181736, 0.00979739986360073, 0.0239885468035936, -0.00691851181909442, -0.00751527445390821, -0.625354766845703, -0.00898422859609127, 0.0114040682092309, -0.0200013853609562, -0.0103351417928934, 0.0171815175563097, -0.0127025190740824, 0.00271494220942259, -0.0227032117545605, 0.010131848976016, -0.0165257342159748, -0.00540365278720856, -0.0228212531656027, -0.026100168004632, -0.00989576708525419, -0.0301660243421793, -0.00646930048242211, -0.0284872185438871, -0.0379567258059978, -0.0132861658930779, -0.0162371899932623, 0.00648897420614958, -0.0227687899023294, -0.00177717232145369, -0.00831533037126064, 0.00680702878162265, -0.0027788809966296, -0.00562334014102817, -0.00588565366342664, -0.00981707312166691, -0.00489214202389121, 0.0158699508756399, -0.00685293367132545, 0.0113253742456436, 0.0461933650076389, -0.000774643791373819, 0.00502329878509045, 0.0137452138587832, 0.0137845613062382, 0.0138239087536931, -0.0502067543566227, -0.0124008590355515, -0.00254443846642971, -0.00227064918726683, 0.0195292215794325, 0.0133910914883018, -0.00601025251671672, -0.00276412582024932, 0.0129779484122992, 0.0185455475002527, -0.0208276715129614, 0.0187422819435596, -0.00993511453270912, -0.0295627024024725, 0.0145190386101604, 0.00338056194595993, -0.000654963369015604, -0.0290643088519573, -0.00159027404151857, -0.000139558847877197, -0.00526921730488539, -0.018716050311923, -0.00743002304807305, -0.0175618715584278, -0.0235950760543346, 0.0233589950948954, -0.00860387459397316, 0.016132265329361, 0.015935530886054, -0.0214178767055273, -0.0207620933651924, 0.0246180985122919, -0.0049019786529243, -0.0100662708282471, 0.00931212026625872, 0.000745953293517232, 0.0166962388902903, -0.0461671315133572, -0.0135222477838397, 0.0248017180711031, -0.00287396949715912, -0.012918927706778, -0.0270444955676794, -0.00414782809093595, 0.0189127847552299, -0.00111811025999486, -0.0133779756724834, -0.00452490337193012, 0.0131943561136723, -0.00471180165186524, 0.00321825570426881, 0.018204540014267, 0.0128336753696203, -0.0433866120874882, 0.0031657931394875, -0.0124533213675022, -0.00933835189789534, -0.00250673107802868, 0.00480361143127084, -0.0132730500772595, -0.0111351972445846, -0.0219818502664566, 0.00399699807167053, 0.0109253469854593, 0.0274379663169384, 0.0137714454904199, -0.00344941928051412, 0.0112335653975606, 0.0231491439044476, -0.0164732728153467, -0.0158699508756399, -0.00367238558828831, -0.0154371345415711, -0.00174766208510846, -0.0134829012677073, -0.0214965716004372, 0.0168142784386873, 0.0158437211066484, -0.00652832118794322, -0.00647585839033127, 0.00560038769617677, 0.0262575559318066, -0.000425029429607093, -0.0287233013659716, 0.0169060882180929, 0.00900390185415745, 0.0235032681375742, 0.0125320153310895, 0.0178241860121489, -0.00998757686465979, -0.00705622648820281, 0.00159191351849586, 0.0259296651929617, 0.00179520633537322, 0.0228474847972393, 0.0175618715584278, 0.0120926406234503, -0.0293790847063065, 0.0139681808650494, -0.0255099628120661, -0.000265797105384991, -0.000535692845005542, -0.00167142727877945, -0.0158043727278709, -0.0119549259543419, -0.0310841202735901, -0.00780381914228201, -0.0139157176017761, -0.0171290561556816, -0.00644634803757071, -0.0176930278539658, -0.0073775602504611, -0.00979739986360073, -0.00683981785550714, -0.0247623715549707, -0.00242967647500336, 0.0177979543805122, -0.0144009971991181, -0.0132927242666483, -0.0246180985122919, 0.017811069265008, 0.0297463219612837, -0.0240410100668669, 0.0025264045689255, -0.00372156919911504, 0.00356746022589505, -0.0177848376333714, 0.0108597688376904, 0.0266903731971979, -0.0184668526053429, -0.0188078600913286, -0.0209063664078712, 0.0073316553607583, -0.0112663544714451, 0.0257198140025139, -0.00181324034929276, 0.00272313947789371, 0.025969011709094, -0.00766610493883491, -0.0019394785631448, 0.00482656387612224, -0.0135878259316087, -0.0314251258969307, -0.00868912599980831, 0.026165746152401, 0.00323628983460367, -0.0154240187257528, 0.0215490330010653, 0.00172798859421164, 0.0374321006238461, 0.0106958225369453, 0.0256673507392406, 0.000726279802620411, 0.0229392945766449, -0.00221162848174572, -0.00614796672016382, -0.00338056194595993, 0.00327563681639731, 0.0253525748848915, 0.0170503612607718, 0.00530856428667903, 0.020276814699173, 0.00120828044600785, -0.00722017232328653, 0.0104597406461835, -0.0539316050708294, 0.00309529644437134, -0.00857764296233654, -0.0055708778090775, 0.0236606560647488, 0.00333137833513319, -0.0374321006238461, -0.0236737709492445, -0.0263362508267164, 0.0147944670170546, 0.0348089672625065, -0.025523079559207, 0.0113450484350324, -0.0203161612153053, 0.00688572274520993, 0.0145190386101604, -0.0223359726369381, -0.00328383408486843, -0.00163535913452506, -0.010171196423471, 0.00796776544302702, -0.0206440519541502, 0.0142960725352168, 0.0291954651474953, -0.00248705758713186, -0.016971668228507, 0.0102892369031906, -0.00545611558482051, 0.0295627024024725, 0.00310841202735901, -0.012918927706778, 0.0194898750633001, -0.0163027681410313, 0.0112532386556268, -9.86236336757429e-05, 0.0163027681410313, 0.00966624356806278, 0.00328219449147582, 0.0136534050107002, 0.00800055451691151, -0.00497411517426372, 0.0333662442862988, 0.0401076972484589, 0.00998757686465979, 0.00897111278027296, 0.00507904030382633, 0.0310578886419535, 0.00903669185936451, 0.0299037098884583, 0.0268871076405048, -0.0105974553152919, -0.00931867863982916, 0.0419438891112804, 0.038927286863327, 0.0435702316462994, 0.0201850049197674, 0.0253788065165281, -0.00909571163356304, 0.00215916591696441, 0.00329039175994694, 0.0115417828783393, -0.00833500362932682, -0.00140583503525704, -0.00667259329929948, -0.0193849485367537, -0.0101646380499005, -0.00697097461670637, 0.00271658156998456, -0.00922031048685312, 0.0116729401051998, 0.0293528530746698, -0.0245918668806553, -0.0164732728153467, 0.00678079761564732, 0.00424291705712676, -0.0126762874424458, -0.0237786956131458, 0.0134042073041201, 0.0288019943982363, -0.0092858886346221, 0.000551677541807294, 0.00246410514228046, -0.00433144764974713, -0.00376091618090868, 0.0306119564920664, -0.0076070842333138, 0.000486099248519167, -0.0141780311241746, 0.0116860549896955, -0.00753494817763567, -0.0297463219612837, 0.0282511375844479, 0.0139419492334127, 0.00303627597168088, -0.0215359181165695, -0.0172864440828562, 0.0108532104641199, -0.0115614561364055, 0.0052364282310009, 0.0164339244365692, -0.0074234651401639, -0.0116204768419266, -0.0244082473218441, -0.00904980674386024, -0.0197390727698803, 0.0432816855609417, -0.0106302443891764, 0.0205653589218855, 0.00697097461670637, -0.0150436647236347, -0.0117909805849195, -0.0293266214430332, -0.0310841202735901, 0.0181914232671261, 0.0240016616880894, -0.0101777538657188, -0.00392814073711634, -0.0500493682920933, -0.000536512583494186, 0.13535363972187, 0.0354122892022133, 0.00158453593030572, 0.0337334834039211, 0.012177892960608, 0.00385272596031427, 0.0103417001664639, -0.00534463254734874, 0.00621682405471802, 0.00510527146980166, 0.0111089665442705, -0.0170110147446394, -0.00224277819506824, -0.0220474284142256, -0.00788907054811716, -0.00111073267180473, 0.00605615694075823, -0.0062496131286025, -0.00878749415278435, -0.00097711686976254, -0.000775873428210616, 0.000811531615909189, 0.027201883494854, 0.0260083582252264, 0.00209030881524086, 0.0128140021115541, 0.0297987852245569, 0.0384026616811752, 0.00983018893748522, -0.00893832370638847, -0.0120926406234503, -0.0018755397759378, 0.0159748774021864, 0.01097780931741, -0.0222441628575325, -0.00301988120190799, -0.01767991296947, -0.00547906802967191, 0.0146633107215166, 0.00812515337020159, 0.00945639237761497, 0.00916784815490246, 0.00105253187939525, -0.0203555077314377, 0.00128123629838228, -0.00990232545882463, -0.0223622042685747, 0.00343302474357188, -0.00638404861092567, -0.0128336753696203, 0.0382452718913555, 0.0113778375089169, -0.022021196782589, 0.00801366940140724, -0.00059184426208958, 0.0151354745030403, -0.0100203659385443, -0.0333400145173073, 0.00961378030478954, -0.0358582213521004, -0.0173520222306252, 0.000316005491185933, -0.013469785451889, -0.000513560138642788, -0.0136796357110143, -0.000759478833060712, 0.0258903186768293, 0.0154502503573895, -0.0204735491424799, -0.00352483429014683, 0.0260214749723673, -0.00883339904248714, -0.030375873669982, -0.00432161102071404, -0.0041084811091423, -0.00332973874174058, 0.0053052855655551, 0.00543972104787827, 0.0240541249513626, 0.0189127847552299, 0.00637749070301652, -0.0547185428440571, -0.00339367776177824, -0.0170503612607718, 0.00522331241518259, -0.0194505266845226, -0.000662750797346234, -0.00208211131393909, -0.0173257905989885, 0.0242508593946695, -0.0102039854973555, 0.0109187886118889, 0.0185061991214752, -0.0348352007567883, -0.0092858886346221, 0.0118696745485067, -0.0136927515268326, 0.0260608214884996, -0.026100168004632, -0.00259854062460363, 0.0160142239183187, 0.0103744892403483, -0.012309049256146, 0.00141895073466003, -0.00328383408486843, -0.00427570613101125, 0.0217588841915131, 0.0229655243456364, -0.00924654211848974, -0.0204604342579842, 0.0428095236420631, -0.0242246277630329, -0.0115876877680421, 0.019109521061182, 0.00587253784760833, -0.00428882148116827, -0.0120598515495658, 0.00818417314440012, -0.0198046509176493, -0.0112794693559408, -0.0137583296746016, -0.023962315171957, 0.0206309370696545, 0.0284085255116224, -0.00964656937867403, 0.00215260800905526, -0.00255099637433887, -0.020276814699173, -0.0110171567648649, -0.0162765365093946, -0.017168402671814, 0.0160273388028145, 0.00680047087371349, -0.0267821829766035, 0.0125385737046599, -0.00981707312166691, -0.00609878310933709, 0.0133255133405328, -0.0186767037957907, -0.00565612968057394, -0.0138107929378748, -0.0185848940163851, -0.00967935938388109, -0.0431767627596855, 0.0257591605186462, -0.0270182639360428, -3.90395907743368e-05, 0.00555448327213526, -0.0286446064710617, 0.0433341488242149, 0.00168372318148613, 0.0079874387010932, -0.0267952978610992, 0.00412487564608455, 0.0117122866213322, -0.0161847267299891, 0.0213654134422541, -0.0300610978156328, 0.00580695969983935, 0.0127025190740824, 0.0167355854064226, -0.0257591605186462, -0.0171552859246731, 0.0153977880254388, 0.0264542903751135, -0.0165913123637438, -0.0103482576087117, 0.00193783908616751, 0.00815138407051563, 0.00972526334226131, -0.00042830835445784, 0.0120336199179292, -0.0255099628120661, -0.0184012744575739, 0.00971870590001345, 0.0119746001437306, 0.00507248239591718, -0.00442653615027666, -0.0396879948675632, -0.010912231169641, 0.00627584429457784, 0.0094957398250699, -0.00485279504209757, 0.00687916483730078, -0.00758741097524762, -0.0264805220067501, 0.0464819073677063, -0.0015656822361052, 0.0402913168072701, 0.0218113474547863, 0.0294577777385712, -0.0143091874197125, 0.0114696472883224, -0.0255361944437027, 0.0108925579115748, -0.0188996698707342, -0.00915473233908415, -0.0108597688376904, 0.00665619876235723, 0.00974493753165007, 0.0174438320100307, 0.0199882704764605, -0.0267297197133303, 0.00244771060533822, -0.000837353058159351, 0.0336810201406479, -0.0267559513449669, -0.0026592006906867, 0.0128664653748274, -0.00173454638570547, 0.0111351972445846, -0.0180602669715881, 0.00298217381350696, -0.00589549029245973, -0.0016427367227152, -0.00403634505346417, -0.00827598292380571, 0.0047183595597744, -0.0157519113272429, -0.0251164939254522, -0.0163814630359411, 0.000406175677198917, -0.00948918145149946, -0.0112335653975606, 0.00822352059185505, 0.00705622648820281, -0.00441014161333442, 0.00614468799903989, 0.0063184704631567, 0.0103679308667779, 0.00360680720768869, 0.0209325980395079, 0.0139026027172804, -0.0199620388448238, 0.00945639237761497, -0.00650536874309182, 0.000590614683460444, -0.02228351123631, -0.040212620049715, 0.00224441778846085, 0.00442325696349144, -0.00454457709565759, -0.000368468143278733, -0.00461015524342656, 0.0182438865303993, 0.0228474847972393, 0.0239754319190979, -0.0237000025808811, 0.000192226434592158, -0.0132402610033751, -0.0100138084962964, 0.00842025503516197, -0.0207489784806967, 0.0128205604851246, -0.0131746828556061, -0.0208145566284657, -0.010722054168582, -0.0155289443209767, 0.00811203755438328, -0.00562661932781339, 0.000812761194538325, 0.0517806373536587, -0.00832844525575638, 0.0329203121364117, 0.00510855065658689, -0.00969247426837683, -0.037563256919384, -0.0145583851262927, -0.0152666307985783, 0.0152666307985783, -0.0319759845733643, -0.0169454365968704, -0.0226900968700647, 0.00525282276794314, -0.0108007481321692, -0.0239098519086838, -0.0229786410927773, -0.0220080818980932, -0.0144009971991181, 0.00520691787824035, 0.0219162721186876, -0.010558107867837, -0.0129517167806625, -0.0207752101123333, 0.00440030498430133, 0.0172077491879463, -0.0146895423531532, -0.022991755977273, 0.0447244085371494, 0.00803990103304386, 0.0118762319907546, -0.00219359458424151, 0.00223458092659712, 0.0157256796956062, -0.00522003369405866, -0.0164208095520735, 0.00365271209739149, 0.0152797466143966, 0.00467901257798076, 0.0150698963552713, -0.00278052035719156, -0.00344286137260497, -0.0311103519052267, -0.0114958779886365, -0.0130435265600681, 0.010131848976016, 0.0149649707600474, -0.0388748236000538, -0.0329465456306934, -0.00604304159060121, 0.00604304159060121, 0.0143878813832998, 0.0037805896718055, -0.00352483429014683, -0.0070890155620873, 0.0216670744121075, 0.00762020004913211, -0.020276814699173, -0.00752839026972651, 0.0329465456306934, 0.0272543467581272, -0.00287560909055173, 0.00763331539928913, 0.00796120706945658, 0.0101777538657188, -0.0277002789080143, 0.000899242586456239, 0.029143001884222, -0.0300348680466413, 0.0171290561556816, -8.17807631392498e-06, 0.0055249729193747, -0.0132927242666483, -0.0125320153310895, -0.015187936834991, 0.00688572274520993, -0.0098039573058486, 0.0179291106760502, 0.00975805334746838, -0.0164470411837101, 0.0149649707600474, 0.0147420046851039, 0.0216801892966032, -0.00655127363279462, 0.000440194417024031, -0.00796120706945658, -0.0220343135297298, -0.00699064834043384, -0.0335236340761185, -0.0332088582217693, 0.00787595566362143, 0.0438850075006485, 0.0197784192860126, -0.00605615694075823, -0.0132599351927638, 0.000555366335902363, -0.0168667417019606, -0.0193456020206213, -0.0305332615971565, 0.0195685680955648, 0.0319759845733643, 0.0175225250422955, -0.00717426743358374, 0.0535905957221985, 0.0168405100703239, 0.0435964614152908, -0.00794809125363827, 0.00816449988633394, 0.00599713670089841, -0.00607910938560963, 0.00466917594894767, -0.00448227766901255, -0.00870224181562662, -0.00558399315923452, 0.00869568437337875, 0.0099547877907753, 0.0170765928924084, 0.024290207773447, -0.0042232433333993, 0.00825630966573954, 0.00314448005519807, 0.0264674071222544, 0.0106433602049947, -0.0119680417701602, 0.0138894869014621, -0.0207096319645643, 0.0144403446465731, 0.0306906495243311, 0.00259198271669447, -0.0244738254696131, -0.0235688462853432, -8.16654937807471e-05, -0.0217195376753807, 0.00866289529949427, 0.00784972403198481, -0.000214768966543488, -0.00519380252808332, -0.027201883494854, 0.022349089384079, 0.0171421710401773, -0.0188865531235933, 0.0224540140479803, 0.0254706162959337, -0.0175225250422955, -0.00458392407745123, -0.00190505001228303, -0.00807269010692835, -0.00435767881572247, 0.0118303280323744, -0.0210899859666824, 0.0232147220522165, -0.000909899070393294, -0.0222572796046734, -0.0115548986941576, 0.000287314993329346, -0.0142436092719436, -0.00876126252114773, 0.0183881595730782, -0.000587745627854019, -0.00767922028899193, -0.00617419835180044, 0.0168929733335972, 0.00190177105832845, -0.0241983979940414, 0.00307070440612733, -0.00837435014545918, 0.00193619972560555, 0.0052823331207037, 0.0252476502209902, -0.00171651237178594, -0.00599385797977448, -0.0533807463943958, -0.00450195092707872, 0.00618403498083353, 0.0208145566284657, 0.0249591059982777, 0.224749997258186, 0.018204540014267, 0.0253525748848915, 0.0328940823674202, -0.00386912049725652, 0.00852518063038588, 0.0181258451193571, 0.0163289997726679, -0.0214309934526682, 0.0205391272902489, -0.0171946343034506, -0.000486918957903981, -0.0164470411837101, 0.00870880018919706, 0.000230548757826909, -0.0311103519052267, -0.0117319598793983, 0.00434784218668938, -0.0266772583127022, 0.0260739363729954, 0.00512494519352913, 0.0146239632740617, -0.00869568437337875, -0.000599221850279719, -0.00241328193806112, 0.00616436125710607, -0.00385272596031427, 0.0203817393630743, 0.00900390185415745, 0.0232803001999855, -0.0196997243911028, 0.0199226904660463, -0.00833500362932682, 0.00676768179982901, -0.0144141130149364, -0.0228212531656027, 0.00146157667040825, -0.0085055073723197, 0.0222310479730368, 0.0240672398358583, 0.0210899859666824, 0.00419701216742396, -0.00443637277930975, -0.0140468748286366, 0.00797432288527489, 0.0206309370696545, 2.73584519163705e-05, -0.00757429515942931, 0.00151977734640241, 0.0225589387118816, -0.0449604913592339, -0.00790874473750591, 0.0223884359002113, 0.0173913687467575, -0.012918927706778, 0.0242508593946695, 0.00901701766997576, 0.018781628459692, -0.0142829567193985, 0.0167224705219269, 0.0208276715129614, 0.0407897122204304, -0.00243787374347448, 0.0221130065619946, -0.0169060882180929, 0.0210375227034092, -0.0106171285733581, 0.00392814073711634, 0.0300086364150047, -0.0168798584491014, -0.0232278387993574, 0.00378386862576008, -0.0172602124512196, 0.00273789465427399, -0.0219162721186876, -0.00234114564955235, 0.0417602695524693, 0.015096127986908, 0.0244607105851173, 0.00508231902495027, -0.0172208640724421, -0.0137189831584692, -0.00469868630170822, -0.0151485903188586, 0.0113253742456436, -0.0271494220942259, 0.0136140575632453, 0.0220605451613665, -0.0180471520870924, -0.0117713073268533, 0.0117909805849195, -0.0126041518524289, -0.0158174894750118, -0.0208932496607304, 0.00661357259377837, 0.0212211422622204, 0.000149293133290485, 0.00960722286254168, -0.026100168004632, 0.0154895978048444, -0.0102302171289921, 0.0422062017023563, 0.009069480933249, 0.00143370591104031, 0.0149912023916841, -0.0246312133967876, 0.0163945779204369, 0.00259854062460363, 0.0137189831584692, -0.0310316570103168, 0.0302184857428074, -0.00517740799114108, 0.0317399017512798, -0.00787595566362143, -0.00449539348483086, -0.0118368854746222, -0.0150698963552713, -0.0198702290654182, 0.0089186504483223, -0.00143698474857956, 0.00134353572502732, -0.0206571687012911, -0.00465278141200542, -0.00205915910191834, 0.0101580806076527, -0.0263493657112122, -0.0331301651895046, 0.00245098932646215, 0.000994331203401089, -0.0401601567864418, 0.00235426146537066, -0.0250377990305424, 0.00440030498430133, -0.0391895994544029, -0.034782737493515, -0.0125975934788585, 0.0206965152174234, 0.00294446619227529, 0.00603976240381598, 0.0289856139570475, 0.0033608884550631, 0.0148731609806418, -0.00514789763838053, -0.0164339244365692, -0.0136402891948819, -0.0267428364604712, 0.0319497548043728, -0.0121516613289714, -0.00679391296580434, -0.0238180439919233, -0.038927286863327, 0.0110368300229311, 0.00802678521722555, -0.00612173555418849, 0.0167618170380592, -0.00233458797447383, -0.0343892686069012, 0.0105056455358863, 0.0101187340915203, 0.0095875496044755, -0.0478197038173676, -0.0133714182302356, 0.0334449410438538, 0.00429210066795349, -0.0169978979974985, 0.00261821411550045, -0.163893312215805, 0.00218047900125384, -0.000107486950582825, -0.00106728705577552, -0.00345597718842328, 0.00331170484423637, 0.0195423364639282, -0.0149518549442291, 0.0100400391966105, 0.0052364282310009, 0.0101843122392893, -0.000851698336191475, -0.0280412863940001, 0.000581597676500678, -0.00463638687506318, -0.000577089143916965, -0.032002218067646, 0.0247361399233341, 0.00135747110471129, 0.0121975662186742, 0.0211949106305838, -0.0144796911627054, -0.00269690807908773, -0.0282511375844479, 0.0089186504483223, 0.0168273951858282, -0.017745491117239, 0.0125123420730233, 0.00816449988633394, -0.029143001884222, -0.0197653025388718, 0.00718738324940205, 0.013600941747427, 0.0181914232671261, 0.012079524807632, -0.00580368051305413, -0.00741034932434559, 0.010105618275702, -0.0195816848427057, 0.0247754864394665, 0.0360418409109116, -0.00205915910191834, 0.0225458238273859, -0.00281167007051408, -0.00992199871689081, 0.0105449929833412, 0.0237393490970135, -0.00430849520489573, -0.000299201055895537, -0.020145658403635, 0.00297397654503584, -0.0260083582252264, -0.00670538237318397, 0.0171946343034506, 0.0147420046851039, -0.000123983991215937, -0.0203292760998011, -0.00683325994759798, -0.000793497601989657, -0.00147961068432778, -0.00122713414020836, -0.0317399017512798, 0.0126566141843796, 0.0105449929833412, 0.00711524672806263, -0.018204540014267, 0.00280183344148099, -0.0190832894295454, -0.0295889340341091, 0.00443965196609497, 0.00028711004415527, -0.0333662442862988, 0.0332088582217693, -0.0168405100703239, -0.00702343741431832, 0.00370189570821822, -0.0249722208827734, -0.013666519895196, -0.00480361143127084, 0.0130697572603822, 0.00478393770754337, 0.0336023271083832, -0.0261526312679052, -0.00510855065658689, -0.00819728896021843, -0.00765954703092575, -0.00143698474857956, 0.00170339667238295, 0.00560366688296199, -0.0362254604697227, -0.0160142239183187, -0.0241852812469006, -0.0111745446920395, -0.0147157730534673, 0.0155945224687457, -0.0107876323163509, 0.0232671853154898, 0.00152059714309871, -0.00746281212195754, -0.0324481502175331, 0.0106630334630609, -0.00996790360659361, -0.0426783673465252, 0.016709353774786, 0.0287757627665997, 0.0283298306167126, 0.0048003327101469, 0.0168142784386873, 0.00771200936287642, 0.00711524672806263, -0.0153322098776698, 0.0225720554590225, 0.0343105718493462, 0.0135878259316087, 0.00215424760244787, 0.0256280042231083, -0.0208670198917389, -0.00377403199672699, 0.0116663817316294, 0.00633486500009894, 0.0430193729698658, -0.0133386291563511, -0.0148862767964602, -0.0105318771675229, -0.00440358370542526, -0.0158568359911442, -0.125490665435791, -0.024355785921216, 0.0178373008966446, 0.032002218067646, 0.00406913412734866, 0.000564793241210282, -0.0132533768191934, 0.0320284478366375, -0.0229130629450083, 0.0381928086280823, -0.0144272288307548, -0.0110565032809973, -0.0158830676227808, 0.00189521326683462, 0.0247230231761932, -0.0107548432424664, -0.0166044291108847, -0.0275428909808397, -0.0279363617300987, 0.0252476502209902, 0.000997610040940344, -0.0108597688376904, 0.0180864986032248, -0.00120172253809869, -0.0214047618210316, -0.0108663262799382, -0.0252607651054859, 0.0133648598566651, -0.0107810748741031, 0.0108400946483016, -0.00678079761564732, -0.00758085306733847, 0.0102236587554216, -0.0229524094611406, 0.00417078053578734, 0.0136796357110143, -0.0147420046851039, -0.020985059440136, 0.0285396818071604, -0.0243689008057117, 0.00639060651883483, -0.0057085920125246, -0.00349860289134085, -0.0360943041741848, 0.00716770952567458, -0.0144534604623914, 0.0011910661123693, 0.0032280923333019, 0.00773824099451303, -0.0191619824618101, -0.0271756518632174, -0.00809892173856497, -0.0311628133058548, -0.00452490337193012, 0.00387239945121109, -0.00412487564608455, -0.0257591605186462, 0.0100728292018175, 0.0138763710856438, -0.0100531550124288, -0.0115089938044548, -0.0186504721641541, -0.0204079709947109, 0.0318185985088348, 0.0126959616318345, -0.00293135060928762, 0.0102433320134878, -0.00399699807167053, 0.00406585540622473, -0.0555054843425751, -0.019109521061182, 0.0251820720732212, -5.78421204409096e-05, 0.0582335405051708, -0.0170765928924084, 0.000793907442130148, -0.0222441628575325, -0.0170503612607718, 0.0412094108760357, 0.00600369460880756, -0.0299824047833681, -0.0131418937817216, -0.00770545192062855, -0.0158174894750118, 0.0134042073041201, 0.00500034634023905, -0.0126762874424458, 0.00901046022772789, 0.00404290296137333, 0.00542332651093602, 0.0275166593492031, 0.00741690723225474, -0.00743658049032092, 0.0114302998408675, -0.00944983493536711, 0.0116598242893815, -0.00788907054811716, -0.0151354745030403, 0.0145846167579293, 0.010590897873044, -0.0256673507392406, -0.0113909533247352, -0.0423111282289028, 0.0189127847552299, -0.00903669185936451, -0.00985642056912184, 0.00643651140853763, 0.0115614561364055, 0.00352155533619225, -0.0111876605078578, -0.0246967934072018, 0.033418707549572, -0.0257198140025139, 0.0397404581308365, 0.00131648464594036, 0.00517412880435586, -0.0267428364604712, -0.00535119045525789, 0.00395437236875296, 0.000391625479096547, 0.0184406209737062, 0.0131353363394737, 0.00728575047105551, -0.0422062017023563, 0.0114302998408675, -0.00992199871689081, -0.0290905386209488, 0.00210178480483592, -0.0131484512239695, 0.0185848940163851, 0.0149780865758657, -0.0306119564920664, 0.000863994297105819, -0.00383633119054139, 0.00950229726731777, 0.0212604887783527, 0.0159486457705498, -0.0321071408689022, 0.0109581360593438, -0.0226769801229239, -0.00286249327473342, 0.000141095835715532, -0.0137714454904199, -0.0222572796046734, 0.00326743931509554, -0.0282773692160845, -0.0247623715549707, -0.0110696190968156, 0.0127615397796035, 0.00767922028899193, 0.0066299675963819, 0.0140468748286366, 0.0336285568773746, 0.00864322204142809, -0.0206440519541502, -0.0163158848881721, -0.022217933088541, -0.017745491117239, -0.00501674087718129, 0.0188209749758244, -0.0179028790444136, -0.0400552339851856, 0.0273592714220285, -0.00676768179982901, -0.00529216974973679, -0.0194374118000269, 0.00017706144717522, -0.0235819611698389, -0.00361664383672178, -0.00497411517426372, -0.00512166600674391, -0.030375873669982, 0.0141780311241746, -0.00617747707292438, 0.00302807847037911, 0.00876126252114773, 0.00410192366689444, 0.00378386862576008, 0.00935146771371365, 0.0088727455586195, -0.00831533037126064, 0.0281199812889099, 0.00779726123437285, -0.0138501394540071, -0.0235163830220699, 0.0120926406234503, 0.0158306043595076, 0.0142960725352168, 0.00975149497389793, 0.0153453247621655, -0.0185848940163851, 0.0143616506829858, -0.0264674071222544, -0.00331170484423637, -0.0045117880217731, -0.00540365278720856, 0.0349925868213177, 0.0122172394767404, 0.0207358617335558, 0.00113942322786897, 0.00120008317753673, 0.0119221368804574, 0.0467442199587822, -0.0320809110999107, -0.0164076946675777, -0.0110237142071128, -0.00172307016327977, -0.0300086364150047, -0.0227819066494703, -0.00713492045179009, 0.0126828458160162, 0.0440948568284512, 0.0395043753087521, 0.0211424473673105, 0.0298512484878302, 0.0298250168561935, -0.0124533213675022, 0.0142173785716295, -0.0088268406689167, -0.0252476502209902, -0.0164208095520735, 0.0309005007147789, 0.0129582742229104, -0.0110761765390635, 0.0212867204099894, -0.0284609869122505, 0.0412356443703175, 0.0149780865758657, 0.0196997243911028, 0.00979084242135286, 0.0166962388902903, 0.0108269797638059, -0.0153846722096205, 0.00687260692939162, -0.0279625933617353, -0.0221392381936312, -0.0142173785716295, -0.0168405100703239, 0.0144928069785237, -0.00122795393690467, 0.0131812412291765, 0.0398978441953659, -0.00636109616607428, -0.0135091319680214, -0.00777758797630668, 0.0266510266810656, 0.0042002908885479, 0.00427242694422603, -0.0101646380499005, -0.00347237172536552, 0.00485607422888279, 0.0144665753468871, -0.00658734142780304, 0.00927277375012636, 0.00465606013312936, 0.00231655384413898, -0.00318546663038433, 0.00794809125363827, 0.0260739363729954, -0.024486942216754, 0.0145452693104744, 0.0135222477838397, 0.0256673507392406, 0.0231753755360842, 0.019948922097683, -0.0170897077769041, -0.0238442737609148, 0.00132960034534335, -0.0118303280323744, 0.0032854734454304, -0.0212867204099894, -0.00670210365206003, -0.00420356960967183, 0.00578728597611189, 0.00483967969194055, 0.0487640351057053, -0.00739067560061812, 0.00706278439611197, 0.0253656916320324, 0.0233065318316221, -0.0112007753923535, 0.0222572796046734, 0.0234376881271601, -0.019109521061182, -0.0252738818526268, -0.0197915341705084, -0.00597418425604701, 0.0180996134877205, -0.015738794580102, -0.0506526902318001],id:"cb47471f71b715c9cb3c646a7afd4041",source:"state_of_union.txt",text:"My plan will cut the cost in half for most families and help parents, including millions of women, who left the workforce during the pandemic because they couldn’t afford child care, to be able to get back to work.
My plan doesn’t stop there. It also includes home and long-term care. More affordable housing. And Pre-K for every 3- and 4-year-old.
All of these will lower costs.
And under my plan, nobody earning less than $400,000 a year will pay an additional penny in new taxes. Nobody.
The one thing all Americans agree on is that the tax system is not fair. We have to fix it.
I’m not looking to punish anyone. But let’s make sure corporations and the wealthiest Americans start paying their fair share.
Just last year, 55 Fortune 500 corporations earned $40 billion in profits and paid zero dollars in federal income tax.
That’s simply not fair. That’s why I’ve proposed a 15% minimum tax rate for corporations."})
(:Chunk{embedding:[-0.0234685521572828, -0.0232301577925682, -0.0229785200208426, 0.00123666820582002, 0.00458908220753074, -0.000470993458293378, -0.0209389291703701, -0.00771469064056873, -0.0149393491446972, 0.00791335199028254, 0.0422751791775227, -0.000875766389071941, 0.0241704899817705, 0.0144360736012459, 0.00619161874055862, -0.00145105714909732, 0.0220117010176182, -0.00302131124772131, 0.00147175102028996, -0.023627482354641, -0.00699950894340873, -0.0137208914384246, 0.00652603199705482, -0.0139990178868175, -0.00436062132939696, 0.000952747708652169, 0.0409242808818817, -0.00821796618402004, 0.00414209347218275, 0.00273490743711591, -0.00290376972407103, -0.0190715100616217, -0.00974103808403015, -0.0213494952768087, -0.0279450584203005, -0.0174954608082771, -0.0064200796186924, -0.0238791201263666, 0.0266074053943157, -0.019588029012084, 0.0227136388421059, -0.0209786612540483, 0.00543008279055357, 0.000586051610298455, -0.0128401592373848, -0.0019187395228073, -0.02483269572258, -0.01378711219877, -0.0110985590144992, 0.0263954997062683, 0.0263425223529339, 0.0170054286718369, -0.0232169143855572, -0.00854906905442476, -0.0163167361170053, -0.00422486895695329, -0.0234685521572828, 0.0175749268382788, -0.022289827466011, 0.000618747959379107, -0.000557907857000828, 0.0148598849773407, -0.0324215665459633, 0.024859182536602, -0.0175881702452898, -0.0126613629981875, -0.00417520385235548, 0.015508845448494, 0.0189920458942652, 0.0313885249197483, 0.0486853271722794, 0.0235347729176283, 0.0307792983949184, 0.00559563376009464, 0.0369245633482933, -0.00890665967017412, -0.0167935229837894, -0.00939007010310888, -0.018528500571847, -0.0102840466424823, 0.022435512393713, 0.00091384316328913, -0.0102906683459878, -0.00678098108619452, 0.0301965568214655, -0.00127391726709902, -0.0119064496830106, 0.0187271628528833, -0.0180649571120739, 0.00458908220753074, 0.00257101166062057, 0.0170054286718369, 0.00476456619799137, 0.0316798947751522, -0.0102509362623096, 0.0222236067056656, -0.0230977181345224, 0.025004867464304, 0.0192569270730019, -0.0494269952178001, 0.0255743656307459, -0.01092638541013, -0.041427556425333, -0.017177602276206, -0.000321583385812119, -0.00114395946729928, -0.0162505153566599, -0.00673793768510222, -0.00193860568106174, -0.0118998270481825, -0.00909869931638241, 0.00580091774463654, 0.0142771443352103, -0.0305409040302038, 0.014157947152853, -0.00983374752104282, -0.0114296618849039, 0.00622803997248411, 0.00366530567407608, 0.0121713317930698, 0.0317063853144646, 0.00844311621040106, -0.00756238354369998, -0.00144277955405414, 0.0108005665242672, -0.028925122693181, -0.0297462567687035, -0.0196674950420856, 0.00200648163445294, -0.00594329182058573, 0.0219454802572727, 0.00451955059543252, 0.0205548498779535, -0.0237731672823429, -0.0204753838479519, 0.014383097179234, -0.010462841950357, 0.00700613111257553, -0.0174689739942551, -0.00770144630223513, 0.0157737284898758, 0.00043457216816023, -0.00684057967737317, -0.000553355203010142, 0.00282927160151303, 0.0231109615415335, 0.0271504130214453, -0.00396992033347487, 0.0184093043208122, -0.00649954378604889, 0.0063704140484333, 0.0113170864060521, 0.0245015919208527, -0.0113766854628921, -0.000796301756054163, 0.0299846511334181, 0.00208760192617774, 0.0170451626181602, -0.00713194999843836, -0.0209256839007139, 0.000502862094435841, -0.0152307199314237, 0.00918478611856699, 0.00437717651948333, -0.00763522600755095, 0.01098598446697, 0.0216408651322126, 0.0221308972686529, -0.00937020312994719, 0.0222368501126766, 0.0295343510806561, 0.0278126187622547, -0.0226341728121042, 0.0225547086447477, -0.0118534732609987, 0.00296999025158584, -0.00424142414703965, 0.00381761300377548, -0.0174292400479317, -0.010840299539268, 0.0139195527881384, 0.021243542432785, 0.0192966591566801, 0.0312295965850353, 0.00416195951402187, 0.00729087926447392, 0.0213627405464649, 0.00940331351011992, -0.00306269899010658, -0.0131646394729614, 0.014767175540328, 0.0185417458415031, -0.0124693242833018, 0.0152572076767683, -0.628935992717743, -0.011370062828064, 0.00200482620857656, -0.0213627405464649, -0.0220779217779636, 0.00641676830127835, -0.012654741294682, -0.00226143072359264, -0.0106615033000708, 0.0047976765781641, -0.0275212489068508, -0.00517513370141387, -8.47933042678051e-05, -0.0477052628993988, -0.00113402644637972, -0.0166478380560875, -0.0148201519623399, -0.0203826762735844, -0.0268325544893742, 0.00935695972293615, -0.0232434030622244, 0.024263197556138, -0.0266206488013268, -0.0136546716094017, -0.00737034389749169, 0.0168067682534456, 0.0193099044263363, -0.0247532296925783, -0.00305607705377042, -0.00890003796666861, -0.00387058942578733, 0.0129461111500859, -0.012879891321063, -0.0024485036265105, 0.0552014261484146, 0.00712532782927155, 0.00746967457234859, 0.0144360736012459, 0.00346002215519547, 0.00619161874055862, -0.0335340723395348, 0.00764184817671776, 0.0251770410686731, -0.00961521919816732, 0.00458908220753074, 0.0159326568245888, 0.00161412521265447, -0.0021753441542387, 0.0170319173485041, 0.00115140923298895, -0.00803917087614536, 0.0100787626579404, -0.0141447028145194, -0.00561881111934781, 0.0286072641611099, -0.00507911387830973, -0.00386396725662053, -0.0259187109768391, -0.00604262249544263, 0.0119329374283552, 0.0108800316229463, -0.0170054286718369, -0.0166345946490765, -0.0174159966409206, -0.0319977551698685, 0.0110853146761656, -0.0102112041786313, 0.011747520416975, 0.00645318953320384, -0.0240380484610796, -0.0124693242833018, 0.00623135082423687, -0.0112376222386956, -0.0197204705327749, 0.00533737381920218, 0.00901923514902592, 0.015959145501256, -0.0262365695089102, -0.0101449834182858, 0.0306468568742275, -0.00211574556306005, -0.0182901080697775, -0.0187536515295506, -0.0203296989202499, 0.00906558893620968, 0.00779415527358651, -0.00599626824259758, -0.0104164881631732, -0.00207601324655116, 0.00205118069425225, 0.00218196609057486, 0.0260114204138517, 0.0268987752497196, -0.0331632345914841, 0.0195350535213947, 0.0112442439422011, 0.00448975106701255, -0.00439042039215565, 0.0213494952768087, -0.00834378506988287, -0.0233625993132591, -0.00895301438868046, 0.0212832745164633, -0.00659887492656708, 0.00837027374655008, 0.00653927633538842, -0.00573138613253832, 0.0149658378213644, 0.0205018725246191, -0.0148201519623399, -0.0122507959604263, -0.0134824980050325, -0.0171908475458622, 0.0009991021361202, -0.0274682715535164, -0.0257862694561481, 0.0184755250811577, 0.0157869718968868, -0.0188596043735743, 0.0134295215830207, 0.00849609263241291, 0.02605115249753, 0.00839676149189472, -0.0172173343598843, 0.00174987723585218, -0.00922451820224524, -0.000113713045720942, -0.0141447028145194, 0.00345008913427591, -0.0153366727754474, -0.00137407577130944, 0.0121051110327244, 0.0330043062567711, -0.0115687251091003, 0.00598633475601673, 0.0185549892485142, 0.00489038554951549, -0.021985212340951, -0.00416527083143592, -0.0217070858925581, 0.00550954742357135, 0.00377788068726659, -0.00735709955915809, -0.0233890879899263, -0.00293356901966035, -0.0299846511334181, -0.00422486895695329, 0.00520493276417255, -0.0114097958430648, -0.00718492642045021, -0.0122375516220927, 0.00599957909435034, -0.0051453341729939, -0.0107409683987498, 0.0274417828768492, 0.00416858168318868, 0.0111118033528328, -0.0132109932601452, -0.0152307199314237, -0.0318653136491776, 0.00611215410754085, 0.0386462956666946, -0.0157869718968868, -0.00864177756011486, -0.0211905669420958, 0.00453610578551888, -0.000576118531171232, -0.000645650085061789, 0.00850933697074652, -0.0188463591039181, -0.00345671107061207, -0.0151247670874, 0.0219719689339399, -0.000932053837459534, 0.0245943013578653, -0.00549299223348498, -0.00107939448207617, 0.0143698528409004, -0.0130785526707768, -0.00665847305208445, -0.00884706154465675, 0.0106416372582316, -0.0247399862855673, -0.0103701334446669, 0.0345406234264374, -0.00441028643399477, -0.012058756314218, 0.0148466406390071, -0.0149128613993526, 0.0275742243975401, 0.00860866717994213, 0.0179457608610392, 0.00710546178743243, 0.00890003796666861, -0.00268855318427086, -0.00166544609237462, 0.0120720006525517, -0.00754251703619957, 0.0185417458415031, 0.0124494573101401, -0.00500627141445875, -0.00995294377207756, 0.0113104647025466, -0.0036355066113174, 0.0163564682006836, -0.0351233631372452, 0.0110720712691545, -0.0332691892981529, -0.00104380096308887, 0.0293489340692759, 0.00458577089011669, -0.0464073419570923, -0.0166345946490765, -0.0131050404161215, 0.00585720501840115, 0.0370305143296719, -0.0178265646100044, 0.0145950028672814, 0.00111581571400166, -0.0025230017490685, 0.0149658378213644, -0.0131911272183061, 0.00319845112971961, -0.00246505881659687, -0.0133633008226752, -0.00367854977957904, -0.00449306238442659, 0.0118071185424924, 0.00786037556827068, -0.00742332031950355, -0.011674677953124, -0.0127209620550275, 0.000713112240191549, 0.0464868061244488, 0.0103304013609886, -0.0279185716062784, -0.00238228309899569, -0.0116614336147904, 0.0425135754048824, -0.00623135082423687, 0.0130520639941096, 0.0223030708730221, 0.0152174755930901, 0.002069391310215, 0.0155618218705058, -0.0087013766169548, 0.0337989516556263, 0.00472152326256037, 0.00818485580384731, 0.00890003796666861, 0.000200627488084137, 0.0188066270202398, 0.0193099044263363, 0.012429591268301, 0.0153764048591256, -0.0339313931763172, -0.011747520416975, 0.0230977181345224, 0.0151777435094118, 0.0386727824807167, 0.0250181127339602, 0.0134692536666989, -0.0105555504560471, -0.016118073835969, -0.00917154178023338, 0.0154823577031493, -0.0079928170889616, -0.00739683210849762, -0.00367192784324288, -0.0196674950420856, -0.0144228292629123, 0.0139063093811274, 0.0136546716094017, -0.0324215665459633, 0.0211773216724396, 0.0156147982925177, -0.0144360736012459, 0.0209521725773811, 0.0145950028672814, 0.0160650983452797, -0.0140122622251511, -0.04005017131567, 0.0111382910981774, 0.00782064348459244, -0.0160121209919453, -0.00723128067329526, -0.0131116630509496, 0.000467682431917638, -0.0109727401286364, 0.0278126187622547, -0.0100324088707566, -0.00394343212246895, -0.0248724278062582, 0.0151115227490664, 0.0259451996535063, -0.0255611203610897, 0.012045512907207, -0.00637703621760011, 0.00829743128269911, -0.0132109932601452, -0.00588700408115983, 0.0134162772446871, 0.000486306933453307, -0.00250148004852235, 0.0335870459675789, -0.0014634735416621, -0.00935033708810806, -0.0100655192509294, -0.000334206677507609, -0.00850271433591843, 0.0255213882774115, -0.00237400573678315, 0.010317157022655, -0.000869972049258649, -0.0128335366025567, -0.0188463591039181, -0.0269252639263868, -0.017018673941493, 0.0351763404905796, 0.0298522096127272, -0.0239320956170559, -0.00709221744909883, -0.0418248809874058, -0.0169921852648258, 0.132970809936523, 0.0494799725711346, -0.0146744670346379, 0.00780077744275331, 0.00737034389749169, -0.00962184183299541, 0.000703593017533422, -0.00841000583022833, 0.0225414652377367, -0.0163829568773508, 0.00339049054309726, 0.00419838074594736, -0.00664191832765937, -0.00339711271226406, -0.00835040770471096, 0.00917816441506147, -0.00145850691478699, -0.0203694310039282, -0.00349313230253756, 0.00107608339749277, -0.0268987752497196, 0.00989334564656019, -0.00920465216040611, 0.0234288200736046, 0.00411891611292958, 0.00803917087614536, 0.021998455747962, 0.0271504130214453, 0.0141447028145194, -0.00323983887210488, -0.00665516220033169, 0.0035891521256417, 0.011747520416975, 0.00862853415310383, -0.0167405474931002, 0.00797957275062799, -0.0393084995448589, -0.00119031383655965, -0.00330440397374332, 0.0151777435094118, -0.00700613111257553, 0.00916492007672787, 0.000992480083368719, -0.0170716494321823, 0.00482747610658407, 0.00190715095959604, 0.00035779774771072, 0.0159326568245888, -0.00591349229216576, -0.017614658921957, 0.0480231195688248, -0.0137076480314136, -0.0209124404937029, 0.00633068149909377, -0.00825769919902086, 0.0232301577925682, -0.00780077744275331, -0.00690680043771863, 0.00715181604027748, -0.0067114494740963, -0.043520126491785, 0.000714353867806494, -0.0184622816741467, -0.0153764048591256, -0.0194820761680603, -0.00137738685589284, 0.00890665967017412, 0.00933709368109703, -0.022885812446475, -0.00913843140006065, 0.0393879637122154, -0.0142771443352103, -0.0402620770037174, -0.000129336956888437, 0.00481092091649771, -0.024249954149127, 0.0051519563421607, -0.000375387578969821, 0.000310408679069951, -0.0126414969563484, -0.00939007010310888, -0.0349379479885101, -0.00598633475601673, -0.0333221666514874, 0.00557907857000828, -0.0131646394729614, -0.00223494251258671, -0.00151479442138225, -0.0234420634806156, 0.0125620327889919, 0.0208594631403685, 0.0188596043735743, 0.0353087820112705, -0.0299316756427288, 0.00598964607343078, 0.0188993364572525, -0.00297661242075264, -0.00430102273821831, -0.0135884508490562, 0.00922451820224524, 0.0114760156720877, -0.00650616595521569, -0.0334281176328659, 0.00715843820944428, 0.0139063093811274, 0.00121762976050377, 0.0344611592590809, 0.0131381507962942, -0.0119461817666888, -0.00931060500442982, 0.0465397797524929, -0.0219189915806055, -0.00380436889827251, 0.0116018354892731, 0.000141442884341814, 0.0169392097741365, 0.00180782016832381, 0.00515857851132751, -0.00164475210476667, -0.0100456532090902, -0.0147274434566498, -0.00649292208254337, -0.000402289646444842, 0.0349114574491978, -0.0106946136802435, 0.00608566589653492, 0.00314381928183138, -0.0293224453926086, 0.012429591268301, -0.0259187109768391, -0.00276801781728864, 0.00202634790912271, -0.00430433358997107, -0.00255280104465783, -0.00729087926447392, -0.0185020137578249, -0.00349313230253756, 0.00535061815753579, -0.0332162119448185, -0.0167008154094219, -0.00517844455316663, -0.0100655192509294, -0.00669489474967122, -0.0381695069372654, 0.0229652766138315, -0.0336930006742477, 0.0104231098666787, -0.0108601655811071, -0.0196410063654184, 0.0488177686929703, 0.0106482598930597, -0.00882057286798954, -0.0224884878844023, 0.003989786375314, 0.00933709368109703, -0.0180914457887411, 0.0167670361697674, -0.0159459002315998, -0.0026322656776756, 0.013098418712616, -0.000648133340291679, -0.022289827466011, -0.00116217008326203, 0.00542677147313952, 0.0214289594441652, -0.0104959523305297, -0.0139990178868175, 0.0102376919239759, -0.00311070890165865, 0.0130653083324432, 0.000358832447091118, 0.00360570731572807, -0.0122176855802536, -0.0214951802045107, 0.0168200116604567, -0.00293191359378397, 0.000751189014408737, 0.0114693939685822, -0.0339313931763172, -0.00871462002396584, -0.0234553087502718, 0.010999227873981, 0.0124759459868073, 0.00413878262042999, -0.0357855670154095, -0.0308852512389421, 0.0467516854405403, -0.00795970670878887, 0.0548835657536983, 0.00602937815710902, 0.0252432618290186, -0.0244088843464851, 0.0202369913458824, -0.00892652571201324, 0.00478112138807774, -0.0224090237170458, -0.0418248809874058, -0.0122905280441046, 0.00302296667359769, 0.014992325566709, 0.0188596043735743, 0.00407256186008453, -0.0409507676959038, -0.00335075822658837, 0.00669158343225718, 0.0154558690264821, 0.00494005065411329, 0.00482085393741727, 0.00882719550281763, -0.0220911651849747, 0.000802923808805645, -0.0310971569269896, 0.00555259035900235, 0.00194026122335345, -0.0105224410071969, 0.00975428242236376, -0.00880070682615042, -0.00701937498524785, -0.00267696450464427, -0.0361828915774822, -0.0158267039805651, 0.000655583164189011, -0.0184755250811577, -0.00235579488798976, 0.0114031732082367, 0.0197469592094421, 0.0132176158949733, 0.00446657417342067, 0.0134692536666989, -0.00584727199748158, -0.00123418495059013, 0.0103304013609886, -0.0217335745692253, -0.0167273040860891, 0.000743739190511405, -0.00395336514338851, 0.0241572447121143, -0.00305607705377042, -0.0299051869660616, 0.0394144542515278, -0.00211574556306005, -0.00402620760723948, -0.0149393491446972, -0.0217997953295708, -0.00388714461587369, 0.0120124025270343, 0.0141447028145194, -0.00641345744952559, -0.0108005665242672, -0.0273623187094927, -0.0187404062598944, 0.000376008392777294, 0.00490362942218781, 0.0297992341220379, -0.00415202649310231, -0.00052314210915938, 0.0114627722650766, -0.0279715470969677, -0.0232301577925682, 0.0112177561968565, -0.00792659632861614, 0.0439174473285675, -0.0232036709785461, 0.0179192721843719, 0.0152307199314237, 0.00276470673270524, -0.0299051869660616, -0.0045427274890244, 0.00388052244670689, 0.0129858441650867, -0.0304084625095129, 0.00314050819724798, -0.0128202922642231, 0.00271835224702954, -0.00585058284923434, -0.0195482969284058, -0.0190582647919655, -0.0141182150691748, 0.0124560799449682, 0.000268606992904097, 0.000963508558925241, -0.00645981170237064, -0.0194423440843821, -0.00705910753458738, -0.00347657734528184, 0.00572145311161876, -0.0117872525006533, -0.0205548498779535, 0.0393349900841713, 0.00273159635253251, 0.00739020993933082, 0.00982050318270922, 0.00546981487423182, 0.0041950698941946, 0.00105787278153002, 0.00237069465219975, 0.00983374752104282, 0.025441924110055, -0.0104429759085178, 0.0269914846867323, -0.00735047785565257, 0.0153234284371138, -0.0273358300328255, -0.0152042312547565, -0.0157075077295303, -0.00739020993933082, 0.0145685141906142, -0.0268457978963852, -0.0192701704800129, -0.0193893685936928, 0.000773952342569828, 0.0119196930900216, 0.000134406960569322, -0.00391363259404898, -0.0183165948837996, 0.0107740787789226, 0.0079928170889616, -0.0145155377686024, -0.00197668257169425, 0.0422486923635006, 0.0186741873621941, 0.018382815644145, -0.00606579938903451, 0.0121514657512307, -0.00130702753085643, -0.00875435303896666, 0.00100075756199658, 0.0197999347001314, -0.0247797183692455, 0.00136083166580647, 0.00388052244670689, 0.0150188142433763, -0.0074762967415154, -0.0165948625653982, -0.00562874414026737, 0.00593004748225212, 0.000540111097507179, 0.0151777435094118, 0.00644656736403704, -0.0156015548855066, -0.0016017088200897, -0.000499964924529195, 0.00409242790192366, 8.33576632430777e-06, -0.00999267678707838, 0.00100075756199658, 0.0090854549780488, -0.00754913920536637, -0.0456656701862812, -0.0220911651849747, -0.0139063093811274, 0.0184622816741467, 0.00534399598836899, 0.0074829189106822, -0.0203032121062279, 0.00485065300017595, -0.0102575588971376, -0.012118355371058, -0.0253492146730423, 0.0239850729703903, 0.0373483747243881, 0.0100655192509294, -0.0127408280968666, 0.0313090607523918, 0.012654741294682, 0.0366331897675991, 0.00220348779112101, 0.0012101799948141, -0.000963508558925241, -0.00912518799304962, 0.00189390685409307, -0.00115968682803214, -0.0185682345181704, 0.0111250476911664, 0.0257862694561481, 0.0299051869660616, 0.0203561875969172, 0.0288986340165138, 0.00289052561856806, -0.00884706154465675, -0.016581617295742, 0.0354147329926491, 0.00743656419217587, -0.00163399137090892, 0.0010719447163865, -0.0272033903747797, 0.0249121598899364, 0.0159459002315998, 0.0178000759333372, -0.0293224453926086, -0.014753932133317, 0.00725776888430119, -0.0154823577031493, 0.00615850836038589, 0.000852589204441756, -0.00756238354369998, 0.0134030329063535, -0.00403282977640629, 0.0241440013051033, 0.0069796429015696, -0.015588310547173, 0.0301700681447983, 0.0307528097182512, -0.0221971180289984, -0.0241307578980923, -0.00803917087614536, -0.00456921570003033, 0.02319042570889, 0.00475132232531905, -0.010913142003119, 0.0256803184747696, -0.00682071363553405, -0.00105042301584035, -0.0112574882805347, 0.0126282535493374, -0.0204886291176081, -0.00154293805826455, 0.0149261048063636, 0.0149128613993526, 0.00125405110884458, -0.0232831351459026, 0.0144890500232577, 0.000860039028339088, -0.00542014976963401, -0.00623797299340367, -0.0294283982366323, 0.00338883511722088, 0.00711870566010475, 0.0124097252264619, -0.0221971180289984, -0.00765509204939008, -0.0227268822491169, -0.0228328350931406, -0.0165418852120638, 0.0156280435621738, 0.0210713688284159, 0.239877209067345, 0.00304117728956044, 0.00339711271226406, 0.0348055064678192, -0.00259915529750288, 0.0140917263925076, 0.0271769016981125, 0.0219719689339399, -0.0235347729176283, -0.00292198034003377, -0.0230050086975098, -0.00336400233209133, -0.00860866717994213, 0.00587707106024027, -0.00772131280973554, -0.0117342760786414, -0.0479436554014683, -0.0166478380560875, -0.036580216139555, 0.0346465744078159, 0.0263954997062683, 0.00416858168318868, -0.00742994248867035, -0.00892652571201324, 0.0128335366025567, -0.00486720819026232, 0.00844973791390657, 0.0190185327082872, 0.0142638999968767, 0.0390965938568115, -0.0356266386806965, 0.00279781688004732, -0.0115554807707667, 0.0273623187094927, -0.0202369913458824, -0.0112442439422011, -0.00759549345821142, -0.0158796813338995, 0.00913180969655514, 0.00955562107264996, 0.015588310547173, 0.00177470990456641, -0.0147009557113051, -0.0116150788962841, -0.00119528034701943, 0.0134758753702044, -0.00535061815753579, 0.00431426707655191, 0.00997943244874477, 0.0243029315024614, -0.0316004306077957, -0.00561550026759505, 0.0221573859453201, 0.0174689739942551, 0.00314878579229116, 0.0187139194458723, 0.0138665763661265, 0.0245810560882092, -0.0219719689339399, 0.00444670766592026, -0.00102559034712613, 0.0333486534655094, 0.0160650983452797, 0.0187404062598944, -0.0443412587046623, 0.0397323109209538, -0.0161313191056252, 0.0134096555411816, 0.0315739437937737, -0.0188993364572525, -0.00134758756030351, 0.00562874414026737, -0.0115422364324331, -0.00432751094922423, -0.0260776411741972, -0.00275808456353843, 0.0138665763661265, 0.0237864106893539, 0.0373218841850758, 0.0109528740867972, -0.0121382214128971, 0.00343022285960615, 0.00338221294805408, -0.00770144630223513, 0.018965557217598, -0.0262895468622446, -0.0068736900575459, 0.0143433641642332, -0.0335605591535568, -0.000610056566074491, 0.00623797299340367, -0.022435512393713, -0.0273623187094927, 0.00189721793867648, -0.0133301904425025, 0.0185814779251814, 0.00823121052235365, 0.0119991581887007, -0.0285277999937534, 0.00504931481555104, -0.0128997573629022, 0.0406329110264778, -0.0011050549801439, 0.0127010960131884, 0.00827094260603189, -0.00929073896259069, -0.00125322327949107, 0.0148069085553288, 0.0240645371377468, -0.0434671491384506, 0.0215878896415234, -0.00579760642722249, 0.0206475574523211, -0.00154624914284796, -0.00206442479975522, -0.00569827575236559, 0.0113766854628921, -0.0065194102935493, 0.0012118355371058, -0.00923114083707333, -0.0217335745692253, -0.0257730260491371, 0.00823121052235365, 0.00683395750820637, 0.0185947213321924, 0.00599626824259758, -0.0306733455508947, -0.00142043014056981, 0.00308422069065273, -0.0352028273046017, 0.00421824725344777, -0.0105621730908751, 0.00153300503734499, -0.048340979963541, -0.0163034927099943, -0.00345340021885931, 0.0039964085444808, 0.00733061134815216, -0.00228129699826241, 0.0239850729703903, -0.0136546716094017, 0.0142241679131985, 0.013098418712616, -0.00982050318270922, 0.00241373805329204, -0.0225282199680805, 0.0294019114226103, -0.00426460150629282, 0.00845636054873466, -0.0130719309672713, -0.0189920458942652, 0.00203628093004227, -0.00435731001198292, -0.0232566464692354, 0.0113170864060521, 0.00152307190001011, -0.022448755800724, -0.0108071891590953, 0.0191377308219671, 0.00329115986824036, -0.0461689457297325, 0.000927087268792093, 0.0309117380529642, -0.0160915870219469, -0.0245545692741871, -0.0060095121152699, -0.166875705122948, 0.0227533709257841, 0.00380105781368911, -0.000839758955407888, 0.0247134976089001, 0.0233890879899263, 0.0164624210447073, -0.00565192149952054, -0.0011017438955605, -0.00356266391463578, 0.00387390051037073, 0.0221044085919857, -0.0284483358263969, 0.002710074884817, -0.0113170864060521, -0.0146877113729715, -0.0234023313969374, 0.0212170537561178, 0.0200515724718571, 0.0173895079642534, 0.0162637587636709, -0.0281304772943258, 0.00984036922454834, -0.0409772582352161, 0.0292694699019194, 0.00699950894340873, -0.0238526314496994, 0.0117806307971478, 0.00805241521447897, -0.0190979987382889, -0.0370305143296719, 0.0138930650427938, 0.0378516502678394, -0.0061651305295527, 0.00742994248867035, -0.00248492509126663, 0.0272033903747797, -0.00561881111934781, -0.017614658921957, 0.0227268822491169, 0.0516784936189651, 0.0156545303761959, 0.0113303307443857, -0.00746967457234859, -0.019429100677371, 0.00195350544527173, 0.0198529120534658, 0.00246174773201346, -0.00909207761287689, -0.0222500953823328, 0.0136679150164127, -0.0112442439422011, -0.00446988502517343, 0.0159988775849342, -0.00104959518648684, -0.0133566791191697, -0.00482747610658407, 0.00231937365606427, -0.0144360736012459, -0.0111780241131783, -0.00970792863518, -0.0199588648974895, 0.00582078378647566, 0.0139063093811274, -0.0154956020414829, -0.014303632080555, 0.00286072655580938, -0.0252035297453403, -0.0186079666018486, 0.0014601624570787, -0.0205813366919756, -0.0291370283812284, 0.022435512393713, -0.0268987752497196, -0.0287132170051336, -0.00544663751497865, -0.0069730207324028, -0.00770144630223513, -0.0289781000465155, 0.0239056069403887, 0.00426129065454006, 0.0298786982893944, -0.0076749580912292, -0.00227964133955538, -0.0131182847544551, -0.000426294602220878, -0.000615023076534271, 0.00623466214165092, -0.00170352286659181, -0.0252432618290186, 0.00235579488798976, -0.00832391902804375, 0.00664191832765937, -0.0160915870219469, 0.0105158183723688, 0.0159061681479216, 0.032818891108036, 0.0144360736012459, -0.00772793451324105, -0.00921789649873972, -0.0042944005690515, 0.0029832343570888, -0.0378516502678394, 0.0270841922610998, 0.0273093432188034, 0.0318918004631996, 0.0141182150691748, 0.021985212340951, 0.0107144797220826, 0.00365868373773992, -0.00327129359357059, 0.0165286418050528, 0.0339049063622952, 0.0122574185952544, 0.007681580260396, 0.0167935229837894, 0.0129196234047413, -0.0138136008754373, 0.00977414846420288, 0.0246340334415436, 0.032818891108036, -0.00703924102708697, -0.0327924005687237, -0.00860204547643661, -0.021826284006238, -0.0240777805447578, -0.124600529670715, -0.0349379479885101, 0.02063431404531, 0.0102112041786313, 0.0113435750827193, 0.000329860951751471, -0.0203694310039282, 0.0205548498779535, -0.0387257598340511, 0.0447650700807571, -0.00307594309560955, -0.0179590042680502, -0.0190715100616217, 0.0107012363150716, 0.0181973986327648, 0.00504931481555104, -0.0287397056818008, -0.0147936642169952, -0.0120521346107125, 0.0223428029567003, -0.000444919103756547, -0.00397654203698039, 0.0176676344126463, 0.00537710636854172, -0.00684057967737317, -0.0321566835045815, -0.0100324088707566, 0.0250710882246494, -0.0127077177166939, 0.000753258413169533, 0.000321790343150496, -0.00805241521447897, 0.014157947152853, -0.0152969397604465, -0.000181175200850703, 0.0138665763661265, -0.0239983163774014, -0.0192834157496691, 0.0208462197333574, -0.0246340334415436, 0.0129130017012358, -0.00237566116265953, 0.00413547130301595, -0.0252829939126968, -0.0104098655283451, -0.0117011656984687, 0.00931060500442982, 0.0054565710015595, 0.00395005382597446, -0.00303621077910066, -0.0333486534655094, -0.0126746073365211, -0.031759362667799, 0.00184424151666462, -0.00162074726540595, 0.00727763492614031, -0.0119064496830106, 0.0074762967415154, -0.00457252701744437, 0.00050037878099829, 0.00356928608380258, -0.00105125072877854, -0.0202899668365717, -0.000179519687662832, 0.00562874414026737, -0.0159988775849342, 0.00592673663049936, -0.0114296618849039, 0.0127342063933611, -0.047281451523304, -0.0152704520151019, 0.0379311144351959, -0.0228063464164734, 0.0261571053415537, -0.0179854929447174, 0.00835702940821648, -0.0322626382112503, -0.00831067562103271, 0.0493475310504436, -0.00813187938183546, -0.0226606614887714, -0.0111184250563383, -0.00130537198856473, -0.0312031097710133, 0.00845636054873466, 0.0190979987382889, -0.00814512372016907, 0.0185152571648359, -0.0037381483707577, -0.00124660122673959, 0.00622803997248411, 0.0209124404937029, 0.0154426256194711, 0.00729750143364072, -0.0115687251091003, 0.0305409040302038, 0.00727101322263479, -0.00975428242236376, 0.027097437530756, 0.0133368130773306, -0.0225547086447477, -0.0232566464692354, -0.0392025485634804, 0.030726321041584, -0.0314150154590607, -0.0158664360642433, 0.00606579938903451, 0.0110786929726601, -0.000893149233888835, -0.00721141463145614, 0.00545988185331225, 0.0250181127339602, -0.0353352688252926, 0.0189125798642635, 0.00702599715441465, 0.00455928267911077, -0.0216276217252016, -0.0228328350931406, 0.0219454802572727, -0.00903247855603695, 0.0150982784107327, 0.0165021531283855, 0.0289781000465155, -0.0146744670346379, 0.0258260034024715, 0.00825107656419277, -0.00523142097517848, -0.00994632206857204, -0.00292198034003377, 0.0182106420397758, 0.0129990875720978, -0.0236804578453302, -0.012058756314218, -0.00319348461925983, -0.00385403423570096, 0.00754913920536637, -0.00354610872454941, -0.0246737655252218, 0.0174292400479317, -0.0245148371905088, 0.00725114671513438, 0.015138010494411, -0.00745643069967628, -0.0356001518666744, 0.00190052890684456, -0.0271239243447781, -0.0144890500232577, -0.00619161874055862, 0.00309084285981953, 0.0117144100368023, -0.00223328708671033, -0.00380436889827251, 0.0220646765083075, 0.0103502674028277, -0.0303554870188236, -0.0201575253158808, 0.00101069069933146, -0.0188066270202398, 0.00396660901606083, 0.0160915870219469, -0.0174424853175879, -0.0410832092165947, 0.0266338922083378, -0.0212170537561178, 0.0118402289226651, -0.0285013113170862, 0.0170848947018385, 0.0146082462742925, -0.0210846140980721, -0.000162861091666855, -0.0016356467967853, -0.0286602415144444, -0.0146612226963043, 0.00391694391146302, 0.00528439739719033, 0.00493673980236053, 0.0189125798642635, -0.0074762967415154, -0.0149658378213644, -0.00889341533184052, 0.0127408280968666, 0.0653728991746902, 0.00272828550077975, -0.0183563288301229, -0.041427556425333, 0.0210581254214048, 0.0264749638736248, 0.0126017648726702, 0.0181841552257538, -0.00448975106701255, -0.0151909869164228, 0.0221176538616419, -0.0117673864588141, 0.00254121236503124, -0.0227401256561279, -0.00516188936308026, 0.00918478611856699, 0.0186079666018486, 0.0151909869164228, 0.00293356901966035, -0.00126563967205584, -0.0050526256673038, 0.0406064242124557, -0.0223692916333675, -0.00900599081069231, -0.0103370230644941, -0.0020942238625139, -0.000251017161644995, -0.0205813366919756, -0.0243161749094725, 0.00109098304528743, 0.0346730649471283, 0.0184755250811577, 0.00279781688004732, 0.0302230454981327, 0.0125487884506583, -0.00612870929762721, 0.0263027902692556, -0.00984036922454834, -0.00250975764356554, -0.0116548119112849, 0.0340903252363205, 0.0139592858031392, -0.00906558893620968, 0.00607242155820131, -0.0124958120286465, 0.0353617593646049, 0.0192834157496691, 0.00605917768552899, -0.00382423494011164, 0.0140519943088293, -0.00135586515534669, -0.00988672394305468, -0.0134427659213543, -0.0243029315024614, -0.0297197699546814, -0.00242863758467138, -0.0139195527881384, 0.0110786929726601, 0.00923114083707333, 0.00606911070644855, 0.0357590802013874, 0.00557576771825552, -0.00781402178108692, -0.0120190242305398, 0.0307528097182512, 0.0261703487485647, 0.0212832745164633, 0.00869475398212671, -0.0155353341251612, -0.0174159966409206, 0.0273623187094927, 0.00361232925206423, -0.00274649611674249, -0.0055062361061573, -0.0132176158949733, 0.00748954061418772, 0.00463874731212854, 0.0323685891926289, -0.0193231478333473, -0.00393018778413534, 0.00296667916700244, 0.0318388268351555, 0.0247797183692455, 0.0334016308188438, -0.0037315262015909, -0.00436724349856377, 0.0045427274890244, -0.00355935283005238, -0.00206111371517181, -0.0282099414616823, 0.00555921252816916, -0.00210581254214048, -0.0150850340723991, -0.00563867716118693, 0.0373483747243881, -0.009794014506042, -0.010687991976738, 0.0141976792365313, 0.0216011330485344, 0.000169276201631874, 0.00390038872137666, 0.00821134448051453, -0.0281834527850151, -0.0401561222970486, -0.016118073835969, 0.0120918666943908, 0.0147406877949834, -0.0102244485169649, -0.0241969786584377],id:"6479ca9d6f8702fdd9335a499a9b017b",source:"state_of_union.txt",text:"We got more than 130 countries to agree on a global minimum tax rate so companies can’t get out of paying their taxes at home by shipping jobs and factories overseas.
That’s why I’ve proposed closing loopholes so the very wealthy don’t pay a lower tax rate than a teacher or a firefighter.
So that’s my plan. It will grow the economy and lower costs for families.
So what are we waiting for? Let’s get this done. And while you’re at it, confirm my nominees to the Federal Reserve, which plays a critical role in fighting inflation.
My plan will not only lower costs to give families a fair shot, it will lower the deficit.
The previous Administration not only ballooned the deficit with tax cuts for the very wealthy and corporations, it undermined the watchdogs whose job was to keep pandemic relief funds from being wasted.
But in my administration, the watchdogs have been welcomed back."})
(:Chunk{embedding:[-0.0102589223533869, -0.0300928391516209, 0.0152878062799573, -0.0150598296895623, 0.00376495742239058, 0.0254528559744358, 0.00362414866685867, -0.00489477999508381, -0.00742933759465814, -0.0110903643071651, 0.040231067687273, 0.0236290469765663, 0.00707396306097507, 0.0239643063396215, -0.000895979406777769, -0.00209536822512746, 0.0349742099642754, -0.0183587782084942, 0.00413709506392479, -0.0310583859682083, -0.00909222196787596, -0.00653084367513657, -0.000122474273666739, 0.000719130330253392, -0.00496518425643444, -0.00986331701278687, 0.025788115337491, 0.00250773667357862, 0.0307633578777313, 0.00766401877626777, -0.0133231887593865, -0.00320004625245929, -0.00237530935555696, -0.00476402929052711, -0.0172591283917427, -0.0189354233443737, 0.00050330744124949, 0.00491824839264154, 0.0212420038878918, -0.0233340207487345, 0.0118480501696467, 0.00389906112104654, 0.00215236213989556, 0.00176346185617149, -0.00712089939042926, -0.00599107658490539, 0.00218756427057087, -0.0175943877547979, -0.00315143377520144, 0.0225025769323111, 0.0477140471339226, 0.0155828343704343, -0.00881060399115086, -0.024996904656291, -0.0195522997528315, -0.00509258266538382, 0.0105606559664011, 0.00352357118390501, -0.0176212079823017, -0.000485706346808001, 0.0146038783714175, 0.00274577038362622, -0.033981841057539, 0.0223148334771395, -0.0143624916672707, -0.020128944888711, -0.00751650473102927, 0.0103393848985434, 0.017728490754962, 0.00734216999262571, 0.049108725041151, 0.0404992774128914, 0.0123107070103288, -0.00917938910424709, 0.00679234554991126, -0.00776459649205208, -0.0294223222881556, 0.00222109025344253, -0.00846193451434374, -0.0199814308434725, 0.0232669673860073, -0.00159080349840224, -0.0174066424369812, -0.00841499865055084, 0.022435525432229, -0.00381189375184476, -0.0178760048002005, 0.0225562192499638, -0.00858262833207846, 0.00852898694574833, 0.0122235398739576, 0.0250237248837948, 0.00437512854114175, 0.0451660789549351, -0.0121162571012974, 0.027102330699563, -0.0292613971978426, 0.0215370319783688, 0.0348937474191189, -0.044012788683176, 0.0316216200590134, -0.0136651527136564, -0.0433959141373634, -0.011727356351912, 0.00503894127905369, -0.0283494926989079, -0.0146172884851694, -0.0222075507044792, -0.00238369079306722, -0.00316819665022194, -0.000882569060195237, -0.0318361856043339, 0.0200216621160507, -0.0233071986585855, -0.00890447665005922, -0.00957499444484711, -0.00189924170263112, 0.00139551516622305, -0.0198070965707302, 0.00578321609646082, 0.0278398990631104, 0.0147648025304079, 0.00678899278864264, -0.00198808521963656, 0.0142686190083623, -0.00761708244681358, -0.0349742099642754, 0.000836470979265869, 0.0381390526890755, -0.00144077511504292, 0.0177821330726147, 0.0192706827074289, 0.0244470797479153, -0.0282422099262476, -0.00881060399115086, 0.0153414476662874, -0.0218991115689278, 7.59047106839716e-05, -0.00404992746189237, -0.0284567754715681, 0.00622911052778363, 0.00544125214219093, 0.00651743309572339, 0.0051562818698585, -0.00506240967661142, 0.0232937894761562, 0.00879048835486174, 0.0102924481034279, 0.0207055900245905, 0.00465004099532962, 0.00800598226487637, -0.00481431791558862, 0.00531385373324156, -0.00909892655909061, 0.0189622435718775, 0.00403316458687186, 0.00895811803638935, 0.00714772008359432, -0.00503558898344636, -0.0160119645297527, 0.00801939330995083, -0.0125722093507648, 0.00135528412647545, -0.00930008199065924, -0.0122771812602878, 0.022368473932147, 0.0209603868424892, 0.0246214140206575, -0.00271559716202319, 0.00274074147455394, 0.0178894158452749, 0.00126895494759083, -0.0342232286930084, 0.0237631518393755, -0.00256305444054306, 0.0333917886018753, -0.0125722093507648, 0.00964204594492912, -0.0255333185195923, -0.00887765549123287, -0.00452934764325619, 0.00852898694574833, 0.0130147505551577, 0.0170847941190004, 0.0105271292850375, 0.00221606134437025, 0.0252382904291153, 0.0108757987618446, 0.0101583451032639, -0.0197132229804993, 0.00756344106048346, 0.0247957482933998, -0.00682251853868365, 0.00568599114194512, -0.633827090263367, -0.0307365357875824, -0.011331751011312, -0.0133433043956757, -0.0204373821616173, 0.0101851653307676, -0.00886424537748098, 0.00968898274004459, -0.00707396306097507, 0.019404785707593, 0.00369455316103995, -0.0189756546169519, -0.00560217630118132, -0.0302805844694376, -0.0135243441909552, -0.0197802763432264, 0.0055820606648922, -0.00668171001598239, -0.00424773013219237, -0.0134774083271623, -0.0273034851998091, 0.02252939902246, -0.00689962832257152, 0.00172323081642389, -0.00336264679208398, 0.00919950474053621, 0.0289127286523581, -0.0150195993483067, 0.00294524943456054, -0.00193779647815973, -0.0218857005238533, 0.00978955999016762, -0.0101449340581894, -0.0114926751703024, 0.0615267157554626, 0.00480761285871267, 0.00697338534519076, 0.0155023718252778, 0.0349473878741264, 0.0190561171621084, -0.0129476990550756, -0.0133231887593865, 0.0134639972820878, -0.00166372233070433, 0.010574066080153, -0.00521662877872586, 0.00554518215358257, -0.0200350731611252, -0.00010937821934931, 0.013142148964107, 0.000875863886903971, 0.0107349902391434, -0.0227171443402767, -0.0196193512529135, 0.0183453671634197, 0.00239207223057747, 0.0015975086716935, -0.0388363935053349, 0.00528032798320055, -0.0130348661914468, 0.018814729526639, -0.0124917468056083, 0.00336264679208398, -0.00889106653630733, -0.020423972979188, 0.0192036293447018, -0.0105338348075747, 0.00157739315181971, 0.0286713410168886, -0.000369203859008849, -0.00719465594738722, 0.00198808521963656, -0.0100778825581074, -0.00157990760635585, 0.021376108750701, -0.00616541132330894, 0.0378172062337399, -0.0355642661452293, 0.00658448506146669, 0.0101047037169337, 0.00763049256056547, -0.0107618104666471, -0.0262440666556358, -0.0143759017810225, -0.000395395967643708, 0.00827419012784958, -0.0172054879367352, 0.0106545276939869, 0.00431142933666706, -0.00860274396836758, 0.0100912926718593, 0.0290736518800259, 0.0166824832558632, -0.0184660609811544, 0.00705384742468596, 0.00994377955794334, 0.00394934974610806, 0.000977279734797776, -0.010245512239635, 0.002832937752828, 0.00225964514538646, -0.0198741480708122, 0.0333649665117264, 0.00696668028831482, 0.0199143793433905, 0.0246750563383102, 0.00427119852975011, 0.0187879092991352, 0.0154353203251958, -0.0149123165756464, -0.00699350098147988, -0.0227439645677805, -0.0273571275174618, 0.0054848357103765, 0.00994377955794334, -0.0193913746625185, 0.0215370319783688, 0.00871673133224249, -0.00172323081642389, 0.00968898274004459, 0.00757685117423534, 0.0294491425156593, 0.00789199490100145, -0.00483778584748507, 0.0211079008877277, -0.00712089939042926, 0.00726841297000647, -0.0191365778446198, -0.00545801501721144, -0.00570610677823424, 0.01284712087363, -0.00433825002983212, 0.0411697924137115, 0.0175139252096415, 0.00227640802040696, 0.0200216621160507, 0.0192170403897762, -0.0297441706061363, 0.0147648025304079, -0.040955226868391, 0.0079657519236207, 0.00295865978114307, -0.0297709908336401, -0.00504564633592963, -0.0101315239444375, -0.0382999777793884, 0.0147379813715816, -0.000813841004855931, -0.02049102447927, 0.00462657306343317, -0.00440194923430681, -0.0143893118947744, -0.00789869949221611, -0.00288155023008585, -0.000979794189333916, -0.0158510413020849, -0.00293854437768459, -0.02535898424685, -0.0103326793760061, -0.0274241790175438, 0.00649731745943427, 0.0330431163311005, -0.0107148746028543, 0.0152475750073791, 0.0025127655826509, 0.013732205145061, 0.0124649265781045, 0.0138394879177213, -0.0125587983056903, -0.0104734878987074, 0.00381189375184476, 0.00456957891583443, 0.0118815759196877, -0.00998400989919901, 0.0235351752489805, 0.0204776134341955, -0.0159180928021669, 0.0170579738914967, -0.00449246913194656, 0.00616541132330894, 0.0140004120767117, 0.00128152722027153, -0.0154219092801213, 1.839995093178e-05, 0.0294759627431631, 0.0124045796692371, -0.0170445628464222, 0.0322116762399673, -0.0128538263961673, 0.0308169983327389, 0.0108959143981338, 0.00976273976266384, 0.00904528517276049, 0.000630705791991204, -0.00467686168849468, -0.010279037989676, -0.0111842369660735, 0.012022384442389, 0.0124649265781045, -0.00147513917181641, 0.0295564252883196, 0.0033173868432641, 0.0211749523878098, 0.00114658544771373, 0.0146038783714175, -0.0326408073306084, 0.0112714041024446, -0.0553579516708851, -0.015542603097856, 0.0328553728759289, 0.00209201546385884, -0.0315679796040058, -0.0195522997528315, 0.00421755714341998, -0.00831442046910524, 0.0358592942357063, -0.024701876565814, 0.0247152857482433, -0.020128944888711, -0.00652413815259933, 0.000653754861559719, -0.00234513613395393, -0.0110233128070831, -0.0242325142025948, -0.0104600777849555, -0.0065040229819715, -0.0136517425999045, 0.016642251983285, 0.00941407028585672, -0.011593253351748, -0.00755003048107028, 0.00116418651305139, 0.00879048835486174, 0.0256271902471781, -0.00588379381224513, -0.0081467917189002, -0.0040231067687273, 0.000227347452891991, 0.0234949439764023, 0.00476402929052711, 0.00442876992747188, 0.0199143793433905, -0.00199646688997746, 0.0132159059867263, -0.00838817749172449, 0.000674708571750671, 0.033981841057539, 0.0142954401671886, 0.00901846494525671, 0.0280008241534233, -0.0140674635767937, 0.00489813275635242, 0.00622240547090769, -0.00367443752475083, 0.0134639972820878, -0.0268475338816643, -0.0163740441203117, 0.0309242811053991, 0.0221807286143303, 0.0303342267870903, 0.0219929851591587, 0.000277845829259604, 0.00434830784797668, 0.00223450060002506, 0.0255735497921705, -0.00744274770841002, -0.010936145670712, 0.0164679177105427, 0.0166958943009377, -0.00998400989919901, -0.00425778795033693, 0.00314472848549485, 0.0153816789388657, -0.00595419807359576, 0.00964204594492912, 0.0112445838749409, -0.0354033410549164, 0.00249264994636178, 0.000906875357031822, 0.003424669848755, -0.00105522735975683, -0.0362616032361984, 0.00894470792263746, -0.0050087682902813, -0.0132695473730564, -0.0152743961662054, 0.0110099026933312, -0.014523415826261, -0.0264854542911053, 0.0294759627431631, -0.0199411995708942, -0.00501882564276457, -0.0105003090575337, 0.0151939336210489, -0.0101248193532228, -0.00887095090001822, 0.0226098615676165, -0.00713430950418115, 0.00552841927856207, -0.0207994617521763, -0.00489477999508381, 0.00815349631011486, 0.000113883259473369, 0.00192270986735821, 0.0340623036026955, 0.0359665751457214, -0.0137858465313911, -0.00130080454982817, -0.00159583240747452, -0.0323457792401314, 0.0369857624173164, -0.00801939330995083, -0.0121766030788422, -0.00173664116300642, -0.00318328337743878, 0.000843176152557135, -0.00430472427979112, -0.0111373011022806, 0.0225025769323111, 0.0277057960629463, -0.00967557169497013, -0.0198205057531595, -0.0365298092365265, -0.0243263859301805, 0.127559304237366, 0.019109757617116, 0.000809231190942228, 0.0111708268523216, 0.0209067445248365, 0.00573627976700664, -0.000201783957891166, -0.0116200735792518, 0.00430472427979112, -0.0230792239308357, 0.0151000609621406, -0.000395605515222996, 4.256216561771e-05, 0.00591061450541019, 0.0177553109824657, 0.0131555590778589, -0.00363085395656526, -0.00681916624307632, 0.0161326583474874, -0.00781823787838221, -0.0120156789198518, 0.017366411164403, 0.00506911473348737, 0.0285640582442284, -0.00363755924627185, -0.00117005361244082, 0.0427790358662605, 0.0176748502999544, 0.0154889617115259, -0.00213895179331303, -0.0288859065622091, 0.00205346080474555, 0.00740922195836902, 0.00190762314014137, -0.0201423559337854, -0.0144161330536008, -0.0125655038282275, -0.0135913956910372, 0.0112579939886928, 0.0282422099262476, 0.01969981379807, 0.00783164799213409, 0.0136718582361937, -0.0271827913820744, -0.00303576933220029, 0.000657107448205352, -0.0266329683363438, 0.00549489352852106, 0.000318286416586488, -0.0375758185982704, 0.026083143427968, -0.0157705787569284, -0.0305487923324108, 0.00917268358170986, 0.0184660609811544, 0.0287786237895489, -0.00695997476577759, 0.00669847289100289, -0.0223416537046432, -0.00973591860383749, -0.03848772123456, 0.000292513403110206, -0.0156632959842682, -0.0107752215117216, -0.0143088502809405, -0.0197266340255737, -0.0119955632835627, 0.0255601387470961, -0.0149257266893983, -0.00823395885527134, 0.0180101078003645, -0.0182112641632557, -0.020330099388957, 0.0166824832558632, 0.0131019176915288, -0.0221270881593227, 0.0128538263961673, -0.00396946538239717, 0.0252785217016935, -0.0104198465123773, 0.00321680912747979, -0.0554115921258926, -0.0150866508483887, -0.0503692999482155, 0.00149190216325223, 0.00476738158613443, -0.0235888175666332, -0.0163740441203117, -0.0208128727972507, 0.021872291341424, -0.005994429346174, 0.010245512239635, 0.0258953981101513, -0.0103930262848735, -0.00219091703183949, -0.0146843399852514, -0.00625928398221731, 0.0044991746544838, 0.000273236015345901, 0.00550830364227295, 0.0148586751893163, -0.0164410974830389, -0.00178860628511757, -0.00624587340280414, 0.00535073224455118, -0.0310583859682083, 0.0112177627161145, -0.01409428473562, -0.000982308643870056, -7.72667044657283e-05, 0.0265927370637655, -0.0223148334771395, 0.00968227721750736, 0.00591731956228614, 0.01369867939502, 0.00326877436600626, 0.00997730530798435, 0.00953476317226887, -0.00430472427979112, 0.00370125821791589, -0.0152878062799573, -0.00393593963235617, 0.0126929022371769, 0.0226098615676165, 0.0112915197387338, -0.00244403746910393, 0.0140540534630418, -0.044039610773325, -0.0165617894381285, 0.0054177837446332, -0.0173530001193285, 0.0199814308434725, -0.000748465536162257, 0.00769083946943283, -0.00623246328905225, -0.020558075979352, 0.00481431791558862, 0.0280544646084309, -0.0169909205287695, -0.0139870019629598, -0.0278130788356066, -0.0130147505551577, -0.00724829733371735, -0.0373076125979424, 0.0200350731611252, -0.033257681876421, 0.00113652774598449, -0.00382865662686527, -0.0153682678937912, 0.0195925310254097, -0.0072415922768414, -0.0229048877954483, -0.0169506911188364, 0.0169775113463402, -0.0111507112160325, -0.022824427112937, 0.0168568175286055, -0.0216040834784508, 0.00593073014169931, 0.00944759603589773, 0.0314338766038418, -0.0145904673263431, -0.00430807704105973, -0.00354033405892551, 0.0209603868424892, 0.000636991928331554, -0.010641117580235, 0.0180503390729427, -0.0141881573945284, 0.0190561171621084, 0.00096051674336195, 0.0187879092991352, -0.0124783366918564, -0.02128223516047, 0.0139199495315552, -0.00036166055360809, -0.0150330094620585, -0.0128337107598782, -0.0269011743366718, 0.00512946117669344, 0.00861615408211946, 0.00846864003688097, -0.00956158433109522, 0.0191633999347687, -0.0153146265074611, -0.0326139852404594, 0.0522735677659512, 0.00640009250491858, 0.0251846499741077, 0.0059441402554512, 0.0234010722488165, -0.00977614987641573, 0.0116737149655819, 0.018090570345521, -0.00595755083486438, -0.0163338147103786, -0.0345182567834854, -0.00451929029077291, 0.00504899909719825, 0.0140272323042154, 0.00474726594984531, 0.00531385373324156, -0.0119151016697288, -0.0166824832558632, 0.0260295011103153, 0.0242995657026768, -0.0160387866199017, -0.0334454290568829, 0.0140406433492899, -0.0195925310254097, 0.0160119645297527, -0.028483597561717, -0.0260295011103153, -0.0247957482933998, -0.00373143167234957, -0.00957499444484711, -0.021510211750865, -0.00915927346795797, -0.00970239285379648, -0.0524344928562641, -0.00664818426594138, -0.00539766857400537, -0.0152475750073791, -0.01924386061728, 0.0306024327874184, 0.0147916227579117, -0.0111037753522396, 0.00445894338190556, 0.00418067863211036, 0.00334756029769778, -0.0172993596643209, 0.0161326583474874, 0.01766143925488, -0.0304146874696016, -0.00655766436830163, 0.00355709693394601, 0.00679569784551859, -0.015475551597774, -0.0191365778446198, 0.0341964103281498, 0.0114591494202614, 0.0111440056934953, -0.0161728896200657, -0.018090570345521, -0.013370125554502, 0.0193913746625185, -0.000522165733855218, 0.00340623059310019, -0.0129812248051167, -0.0286981631070375, -0.0155291929841042, -0.00966886710375547, -0.00240213004872203, 0.0344377942383289, 0.00778471166267991, -0.00923973508179188, -0.00850216578692198, -0.00489813275635242, -0.0146575197577477, -0.00581674184650183, -0.0251444187015295, 0.0156632959842682, -0.00749638909474015, 0.0171116143465042, -0.0105137191712856, 0.00420079426839948, -0.0296100657433271, -0.006158706266433, -0.0268609430640936, 0.0160656068474054, -0.012780069373548, -0.0156498849391937, -0.00277426745742559, 0.00485790148377419, -0.0163069926202297, -0.00610171211883426, -0.0130214560776949, -0.0257344730198383, -0.00622911052778363, -0.0141076948493719, 0.00586032588034868, 0.0124582210555673, -0.0341695882380009, 0.000166162702953443, 0.0031195841729641, -0.00846864003688097, -0.0233742501586676, -0.00978955999016762, 0.037897665053606, 0.0123576428741217, -0.00126895494759083, -0.00624252064153552, 8.96293713594787e-05, 0.0143759017810225, -0.0148989055305719, -0.0112378783524036, 0.0278130788356066, 0.012089435942471, -0.0128538263961673, 0.0352692380547523, -0.0057631004601717, 0.00274912314489484, -0.0399092212319374, 0.00815349631011486, -0.00561558688059449, -0.00310449744574726, 0.0186538062989712, -0.022797605022788, -0.0138394879177213, -0.0122101297602057, 0.0133365988731384, 0.00486460654065013, 0.0095414686948061, 0.000443798984633759, 0.0104734878987074, 0.00273738894611597, 0.0051227561198175, -0.00533061660826206, -0.00607153866440058, 0.0525417774915695, 0.0240045376121998, -0.000784505857154727, 0.00873684696853161, -0.0101382294669747, 0.00282623269595206, -0.0134103558957577, -0.000592989206779748, 0.0176748502999544, -0.022368473932147, -0.0100175365805626, -0.0178089533001184, 0.0241252314299345, 0.0100979981943965, -0.00966216158121824, -0.0099035482853651, -0.00394934974610806, 0.000319962709909305, 0.00205010827630758, 0.0166690722107887, -0.0105673605576158, 0.0178760048002005, 0.00199143798090518, 0.0107416957616806, 0.00212051253765821, -0.0157973989844322, -0.013732205145061, -0.00566252274438739, -0.00209872075356543, 0.00137204711791128, -0.0108489785343409, -0.0206519495695829, 0.0103058591485023, 0.00416726805269718, -0.00923303049057722, -0.0207592323422432, 0.0033006239682436, -0.0270889196544886, -0.0137724354863167, -0.0249566733837128, 0.0235754065215588, 0.0478481501340866, 0.02173818834126, -0.0243800282478333, 0.0395605526864529, -0.000503726536408067, 0.022462347522378, 0.00407004309818149, 0.018747678026557, -0.0266195572912693, -0.00922632496803999, -0.00528032798320055, -0.0214833915233612, -0.0113518666476011, -0.00188750762026757, -0.00302571174688637, -0.000823060632683337, 0.0154084991663694, 0.0281081069260836, 0.00826077908277512, -0.0128538263961673, -0.011693830601871, 0.00614864844828844, 0.0239240750670433, -0.0112512884661555, 0.00472715077921748, -0.0388095714151859, 0.00026213054661639, 0.0381122343242168, 0.0199411995708942, -0.0172591283917427, 0.0152475750073791, -0.00584691530093551, -0.0308974608778954, -0.0272498447448015, 0.00706725753843784, -0.0119486274197698, 0.00884412974119186, 0.00549489352852106, 0.00521662877872586, 0.00246415287256241, -0.00496183196082711, 0.0311924889683723, 0.0431008860468864, -0.02332060970366, -0.00510599324479699, -0.003096116008237, 0.00749638909474015, 0.00965545605868101, -0.000908551621250808, -0.00556865055114031, 0.00604136567562819, -0.00868320558220148, 0.00337270461022854, -0.00611176993697882, 0.020625127479434, -0.022824427112937, 0.0136450370773673, -0.0100510623306036, 0.0169775113463402, -0.0187342669814825, -0.026378171518445, -0.00722147664055228, 0.00187912618275732, -0.0198070965707302, 0.00509928818792105, -0.0193913746625185, 0.00208698678761721, 0.0026099905371666, -0.0254126247018576, -0.0141479261219501, -0.00358056509867311, -0.0143222603946924, -0.0200216621160507, -0.00425108289346099, -0.0268609430640936, 0.021939342841506, 0.230228990316391, 0.0207055900245905, 0.00899834930896759, 0.0404992774128914, -0.00127398385666311, 0.0236961003392935, 0.00980967562645674, 0.0110568385571241, -0.0196864027529955, 0.0153548577800393, 0.00495512643828988, 0.00117675878573209, -0.0225159879773855, 0.00221103243529797, -0.011036722920835, 0.00294357328675687, -0.0497524216771126, -0.0043516606092453, -0.020786052569747, 0.0230524018406868, 0.0239911265671253, 0.0162533521652222, -0.00646043894812465, -0.00311790779232979, 0.00395940756425261, 0.00031556244357489, 0.00630286755040288, 0.0230389926582575, 0.0339550226926804, 0.00635315617546439, -0.0314338766038418, 0.0190158858895302, -0.0111305955797434, 0.00967557169497013, 0.00550830364227295, -0.00802609790116549, 0.000699433905538172, -0.00283964304253459, 0.012350938282907, -0.00522668613120914, 0.00804621353745461, 0.0111238909885287, -0.0142820291221142, -0.0313534140586853, -0.0119955632835627, 0.0122369499877095, -0.022100267931819, -0.0122637711465359, 0.016776354983449, 0.0293955001980066, -0.0603466033935547, -0.00207525258883834, 0.0283494926989079, 0.0320507511496544, 0.00625257845968008, -0.00353698153048754, 0.0307365357875824, 0.0337940976023674, 0.00173831742722541, -0.0108288628980517, 0.00508252484723926, 0.0419207736849785, 0.0208262838423252, 0.0134572926908731, -0.0169104598462582, 0.0354838036000729, -0.0102656278759241, 0.00260496162809432, 0.0415184646844864, -0.0232803784310818, -0.0169909205287695, 0.0148050328716636, -0.00643361825495958, -0.0154889617115259, -0.0132024958729744, -0.0185331124812365, 0.0111842369660735, 0.0259088091552258, 0.0542046613991261, -0.000204298397875391, 0.00722147664055228, -3.09590650431346e-05, -0.00119771249592304, 0.000481515598949045, 0.0115798423066735, -0.0247421078383923, 0.00390576617792249, 0.0245141312479973, -0.00797916203737259, -0.0193377342075109, 0.0151939336210489, -0.0171518456190825, -0.0228780675679445, -0.00849546026438475, 0.0093939546495676, 0.00251108920201659, -0.00179363519418985, 0.0126996077597141, 0.00501882564276457, 0.0329358354210854, -0.0204373821616173, 0.0531586520373821, 0.023615637794137, -0.00159247976262122, -0.00269548152573407, -0.0240179486572742, -0.0138260768726468, 0.02252939902246, 0.010607591830194, -0.0410625115036964, 0.0155560132116079, 0.00307600037194788, 0.00279605924151838, -0.00361744360998273, -0.0102388067170978, 0.0140808736905456, -5.17555927217472e-05, -0.00210039713419974, 0.014818443916738, 0.0196461714804173, -0.0200082510709763, -0.0370662249624729, -0.0118681648746133, 0.00777800660580397, 0.0184124186635017, -0.00635650893673301, -0.0264586322009563, -0.00510599324479699, -0.00633304053917527, -0.0366639122366905, 0.0109964925795794, -0.002043402986601, 0.0127599537372589, -0.0268877651542425, -0.0181308016180992, 0.00658783735707402, 0.02615019492805, 0.00308438204228878, 0.00765731325373054, 0.0067990506067872, -0.0144831845536828, 0.0162399411201477, -0.0020283164922148, -0.00447235396131873, 0.0131890857592225, -0.0175139252096415, 0.0225428082048893, -0.020423972979188, 0.000998233444988728, -0.0179832875728607, -0.0249432623386383, 0.013142148964107, -0.00019570738368202, -0.00992366392165422, -0.00128320348449051, -0.0122503601014614, -0.0241386406123638, 0.000185440076165833, 0.00156733533367515, -0.0038420669734478, -0.0600247532129288, 0.0074226320721209, 0.036020215600729, -0.0160387866199017, -0.0163740441203117, -0.00805291905999184, -0.1698287576437, 0.0372807905077934, 0.00864967983216047, 0.000455113971838728, 0.00889106653630733, 0.00792552065104246, 0.0142954401671886, -0.0181978531181812, -0.00993707403540611, 0.0138126667588949, 0.00824736896902323, 0.0189622435718775, -0.0215638522058725, -0.0140138221904635, 0.000917771249078214, -0.0305487923324108, -0.0376830995082855, 0.000735055131372064, 0.010507014580071, 0.0310047436505556, 0.0156632959842682, -0.00748297898098826, 0.00761037738993764, -0.0179162360727787, 0.0113116353750229, 0.00623916834592819, -0.00648725964128971, 0.0181844439357519, -0.00671188347041607, -0.0325603447854519, -0.0129141733050346, 0.00776459649205208, 0.0173127707093954, 0.00783835351467133, -0.00461986754089594, -0.0122704757377505, -0.00596090359613299, -0.012089435942471, -0.015985144302249, 0.0221539083868265, 0.0263245292007923, -0.00450587971135974, 0.00217583030462265, -0.0087033212184906, -0.0180369298905134, 0.0317557230591774, 0.0202496387064457, -0.0159449130296707, -0.00800598226487637, -0.0218588802963495, 0.00541107868775725, -0.0267670713365078, -0.00183051358908415, 0.0204776134341955, 0.0142015675082803, 0.0298782736063004, 0.000110635439341422, -0.00953476317226887, -0.018814729526639, -0.012317412532866, -0.00907881092280149, -0.0128001850098372, 0.00630621984601021, -0.00149190216325223, 0.00344981416128576, -0.0273168962448835, -0.00291675259359181, 0.00111641210969537, -0.0361543223261833, 0.021349286660552, -0.012713017873466, 0.00930008199065924, 0.0193779654800892, -0.0352424159646034, -0.0333113260567188, 0.00236860406585038, -0.0103192692622542, 0.0154889617115259, -0.022462347522378, 0.0113920979201794, -0.0149257266893983, 0.0146575197577477, -0.0124313998967409, -0.00774448085576296, 0.0220600366592407, 0.0066180108115077, 0.00245241890661418, -0.00182716106064618, -0.0167227145284414, -0.0176882594823837, -0.00478749722242355, -0.0249432623386383, -0.00450587971135974, 0.0152743961662054, -0.0207055900245905, 0.0307365357875824, 0.0314875170588493, 0.0237095095217228, -0.0102186910808086, -0.0198205057531595, -0.00611176993697882, 0.00633639330044389, -0.0229317098855972, 0.0293418597429991, 0.0121162571012974, 0.0404188148677349, 0.00187074474524707, 0.0202496387064457, -0.00225461623631418, 0.00632968824356794, -0.0341159477829933, 0.0101516395807266, 0.0216174945235252, 0.0235083550214767, 0.000681413745041937, 0.0030944396276027, 0.0121497828513384, -0.00354033405892551, 0.00653754873201251, 0.00833453610539436, 0.0479017943143845, -0.0161192491650581, -0.0265525057911873, 0.00229317089542747, -0.00542113650590181, -0.0302269421517849, -0.129597678780556, -0.0181173905730247, -0.00352021842263639, 0.0190292950719595, 0.0138528980314732, 0.0350546725094318, -0.00217583030462265, 0.0299855563789606, -0.033552709966898, 0.017862593755126, 0.00140054407529533, -0.0105137191712856, -0.0167227145284414, 0.0071276044473052, 0.027464410290122, -0.00734216999262571, -0.017004331573844, -0.00202496373094618, -0.00300224358215928, 0.0122168343514204, -0.0108959143981338, 0.00272733112797141, -0.000676803931128234, 0.00471038743853569, -0.00777800660580397, -0.00807973928749561, -0.018948832526803, 0.0277326162904501, -0.00401975447311997, -0.0064537338912487, -0.00860944855958223, 0.00621905270963907, 0.0353497005999088, -0.0105874761939049, -0.00117256806697696, 0.00419408874586225, -0.022368473932147, -0.0229987613856792, 0.0296100657433271, -0.0337136350572109, 0.0126124396920204, -0.00154721981380135, 0.00281282211653888, -0.000230909572564997, -0.00746956840157509, -0.00563570205122232, 0.0111708268523216, 0.0186538062989712, -9.27200380829163e-05, -0.0175675675272942, -0.0432618111371994, -0.00496853701770306, -0.0136048067361116, -0.0105472449213266, -0.00216241995804012, 0.000440027302829549, -0.00846193451434374, 0.0119419218972325, -0.0210408493876457, -0.0145636470988393, 0.00398622825741768, 0.0144429532811046, -0.0111238909885287, 0.0141479261219501, 0.00337940966710448, -0.00625928398221731, -0.0179162360727787, 0.00210710219107568, 0.0107014644891024, -0.0523808524012566, -0.00758355669677258, 0.00582344736903906, -0.0259356293827295, 0.0112781096249819, -0.0247286967933178, 0.020330099388957, -0.0269279945641756, -0.0194316059350967, 0.0408747643232346, -0.00613188557326794, -0.0125856194645166, -0.016642251983285, -0.0034565192181617, -0.0150464195758104, 0.0247286967933178, -0.00267871865071356, -0.00446900120005012, 0.0223952941596508, -0.00556194549426436, -0.000244948547333479, 0.0183587782084942, 0.0113451611250639, 0.00272900750860572, -0.00284131919033825, -0.0316484421491623, 0.0337940976023674, 0.00869661569595337, 0.000481934665003791, 0.00626598903909326, 0.0113585721701384, -0.0304951500147581, -0.0165349692106247, -0.0551433861255646, 0.0143356705084443, -0.0104064363986254, 0.00347663485445082, 0.00686610257253051, 0.0207458212971687, -0.00577651103958488, -0.027759438380599, -0.00526021234691143, 0.0216711349785328, -0.020719001069665, 0.0386754684150219, 0.00954817328602076, -0.00554182985797524, -0.0403383523225784, -0.0127264279872179, 0.0311120264232159, -0.00129242311231792, 0.0247957482933998, 0.0155023718252778, 0.0120290899649262, 0.00480090733617544, 0.0101114083081484, 0.0230658128857613, -0.00114574725739658, -0.00397617043927312, -0.00291339983232319, 0.045031975954771, -0.00623916834592819, -0.0528636239469051, -0.0139601808041334, -0.0224891677498817, -0.00853569153696299, 0.00923973508179188, -0.00322351441718638, -0.0201021246612072, 0.0178491845726967, -0.0271827913820744, 0.0153682678937912, -0.00178022484760731, -0.00621569994837046, -0.00821384321898222, 0.0137858465313911, 0.0045327004045248, -0.0182112641632557, -0.00304079824127257, 0.00184057140722871, 0.00488136988133192, 0.0152878062799573, 0.00481431791558862, 0.00197299872525036, 0.00437848130241036, -0.0112177627161145, -0.011593253351748, -0.0147245712578297, -0.0210274383425713, 0.00673535140231252, 0.0109562613070011, 0.00310282129794359, -0.021778417751193, 0.016347223892808, -0.00766401877626777, 0.00480426009744406, -0.0219125226140022, 0.0190963465720415, -0.00353362876921892, -0.0140808736905456, -0.018385598435998, 0.0129141733050346, -0.0200082510709763, -0.031514335423708, -0.0120022688060999, -0.010540540330112, -0.0024473899975419, 0.0170579738914967, -0.00759026175364852, -0.00948112178593874, -0.0103930262848735, 0.00640679756179452, 0.0290468316525221, -0.00030194254941307, -0.0186538062989712, -0.0143222603946924, 0.0186672154814005, 0.00879719387739897, 0.00876366812735796, 0.0125453881919384, -0.00148184434510767, -0.0150061883032322, 0.00795234087854624, -0.019833916798234, 0.00155308691319078, -0.0154889617115259, -0.00927996635437012, 0.00966886710375547, 0.0173261798918247, 0.00306761893443763, 9.07294452190399e-05, 0.00778471166267991, 0.0121497828513384, 0.033981841057539, -0.00387224042788148, -0.0157705787569284, 0.00161091901827604, -0.01488549541682, 0.00154973426833749, -0.00722818216308951, -0.0214968007057905, -0.00524344947189093, 0.0428863205015659, 0.0132762528955936, -0.00596760865300894, 0.0146172884851694, 0.0110568385571241, -0.0105003090575337, 0.00725500285625458, -0.00946771167218685, -0.0125319780781865, -0.0266195572912693, 0.0490014404058456, 0.0084753455594182, -0.00186571583617479, -0.00772436521947384, -0.000778219720814377, 0.0357788316905499, 0.0326408073306084, 0.0116804204881191, -0.0258283466100693, -0.0223550647497177, 0.0181039813905954, -0.0222209598869085, -0.00856921728700399, -0.032533522695303, -0.0162399411201477, -0.0156096545979381, -0.0325067043304443, 0.00432819267734885, 0.0190292950719595, 0.00473050307482481, 0.0232803784310818, -0.0116200735792518, -0.00312461308203638, -0.00862956419587135, 0.00988343264907598, 0.0113853923976421, 0.0115194963291287, 0.00082138431025669, -0.0201021246612072, -0.00189086026512086, 0.0363420657813549, 0.011988858692348, -0.0100242411717772, -0.01845264993608, -0.0114122135564685, 0.0124381054192781, 0.0108892088755965, 0.028483597561717, -0.0227439645677805, 0.0195254795253277, 0.0128739420324564, 0.0306024327874184, 0.0100979981943965, 0.00276923854835331, -0.0206385385245085, -0.0197266340255737, -0.00761037738993764, 0.00032436300534755, -0.00435836566612124, -0.038058590143919, -0.0137456152588129, 0.00614529568701982, -0.0150464195758104, -0.0241386406123638, 0.0273705366998911, 0.00429466646164656, -0.0109897870570421, 0.017366411164403, 0.00977614987641573, 0.0113853923976421, -0.0119687430560589, 0.0201691761612892, -0.0257076527923346, -0.0332040414214134, 0.00205346080474555, 0.00432819267734885, -0.0123978741466999, -0.0116670103743672, -0.0108087472617626],id:"b9f956bd3e9a0777de490c1df34e0588",source:"state_of_union.txt",text:"We’re going after the criminals who stole billions in relief money meant for small businesses and millions of Americans.
And tonight, I’m announcing that the Justice Department will name a chief prosecutor for pandemic fraud.
By the end of this year, the deficit will be down to less than half what it was before I took office.
The only president ever to cut the deficit by more than one trillion dollars in a single year.
Lowering your costs also means demanding more competition.
I’m a capitalist, but capitalism without competition isn’t capitalism.
It’s exploitation—and it drives up prices.
When corporations don’t have to compete, their profits go up, your prices go up, and small businesses and family farmers and ranchers go under.
We see it happening with ocean carriers moving goods in and out of America.
During the pandemic, these foreign-owned companies raised prices by as much as 1,000% and made record profits."})
(:Chunk{embedding:[-0.0184684861451387, -0.0010157999349758, 0.00893572252243757, -0.0151781244203448, 0.0292152352631092, 0.012239352799952, -0.00558233913034201, -0.00864383578300476, -0.0228865947574377, -0.00635185930877924, 0.0339384973049164, 0.00380779872648418, -0.00171483610756695, 0.0154169406741858, 0.00284921517595649, -0.0134599711745977, 0.0253278315067291, -0.0086239343509078, 0.0225416366010904, -0.0268005337566137, -0.0105809038504958, 0.0141697870567441, 0.00756916077807546, 0.00181931839324534, 4.73694453830831e-05, -0.0207239780575037, 0.0245848465710878, -0.0117948884144425, 0.00798708945512772, -0.00213110679760575, 0.00418260786682367, -0.0231121443212032, -0.0173540096729994, -0.0225814394652843, -0.020604569464922, -0.00756916077807546, -0.0218119192868471, -0.00408973498269916, 0.0298520792275667, -0.0047531146556139, 0.0261636897921562, -0.00677642226219177, 0.00900869444012642, 0.0106074390932918, -0.00383433373644948, -0.00125047040637583, -0.0157088283449411, -0.00302666914649308, -0.0138380974531174, 0.0254339724779129, 0.00836521573364735, 0.00253908522427082, -0.0219180602580309, -0.00958583410829306, -0.00886275060474873, -0.0072043021209538, 0.000765788776334375, 0.0244389027357101, 0.00538664218038321, 0.0258585345000029, 0.00285087362863123, 0.00856423005461693, -0.0278088711202145, 0.0277558006346226, 0.00178283255081624, 0.00106057804077864, -0.0213873572647572, 0.000205129399546422, 0.0177653040736914, 0.00987108796834946, 0.0423501506447792, 0.016186460852623, 0.00627888739109039, -0.00545629672706127, 0.035397931933403, 0.00218251883052289, -0.0286314617842436, 0.00501183234155178, -0.00264356750994921, -0.00735687930136919, 0.0195033587515354, -0.0053435224108398, -0.0408111102879047, 0.0133604640141129, 0.0325586684048176, -0.00454746698960662, -0.031868752092123, 0.0180173888802528, -0.0119474660605192, -0.000209275516681373, 0.0291887000203133, 0.00445127673447132, 0.0183756127953529, 0.0323198512196541, 0.00287575041875243, 0.0286314617842436, -0.0138911679387093, 0.0211220048367977, 0.0229794681072235, -0.0208699200302362, 0.0258718021214008, -0.00753599172458053, -0.0313911214470863, -0.00539990933611989, -0.0169294457882643, -0.00834531430155039, -0.0166906286031008, -0.00590739492326975, 0.0234836358577013, 0.00963890459388494, -0.0224620308727026, -0.0282334331423044, 0.0195033587515354, -0.0262167602777481, 0.0123388599604368, -0.0153638701885939, -0.0237357206642628, 0.003824383020401, -0.00486920587718487, -0.0102027775719762, 0.0245583113282919, 0.00865710340440273, 0.0230723414570093, 0.0126639157533646, -0.0120602399110794, -0.0115295369178057, -0.0120602399110794, -0.00403998140245676, 0.0109391286969185, 0.00328870420344174, 0.024916535243392, -0.00814630091190338, 0.0207903143018484, -0.0365389473736286, -0.0256993230432272, -0.0151648567989469, -0.00395042542368174, 0.00414280546829104, -0.0310196280479431, -0.0276761949062347, 0.00616279616951942, 0.0250624790787697, 0.00879641249775887, 0.00307973963208497, 0.00491895945742726, 0.0118280574679375, 0.0285518560558558, 0.0115361707285047, 0.0316830091178417, -0.000479291717056185, 0.000581700936891139, 0.000994240050204098, 0.000547702715266496, 0.000399686192395166, 0.00537669146433473, 0.0163324046880007, 0.0242000855505466, 0.0137186888605356, -0.004706677980721, -0.0134135344997048, -0.0095062293112278, -0.0196360349655151, -5.81428867008071e-06, 0.00216261739842594, -0.00762886507436633, 0.0214271601289511, -0.0040698335506022, 0.017924515530467, 0.00764213223010302, 0.0144484061747789, 0.0255533810704947, 0.0141299841925502, -0.0318422168493271, 0.0222895536571741, -0.00526059977710247, 0.0108661567792296, -0.00272980681620538, 0.00556907150894403, -0.031072698533535, -0.0122924232855439, -0.00144865515176207, 0.0108595229685307, 0.0107467491179705, 0.0111381430178881, -0.00754262553527951, -0.0127501552924514, 0.0411295332014561, 0.0119939027354121, -0.00560887390747666, -0.0226345099508762, 0.0145678147673607, 0.0179908536374569, -0.00305486284196377, -0.00806669518351555, -0.624107480049133, -0.0121597470715642, -0.000681207864545286, -0.00987108796834946, 0.0091148354113102, -0.00764213223010302, 0.00959910172969103, -0.00600026827305555, -0.0069588515907526, 0.0148862367495894, -0.00148762867320329, 0.0143422661349177, -0.00477301608771086, -0.0232846215367317, -0.0075028226710856, -0.0150056453421712, -0.00674325320869684, -0.0282334331423044, 0.00756252696737647, -0.0187338385730982, -0.0306746698915958, 0.0103354537859559, -0.00378458038903773, -0.0155363492667675, -0.000753350381273776, 0.00261537381447852, -0.00356898200698197, -0.00609314115718007, -0.0156292226165533, -0.0106538757681847, -0.0217455811798573, 0.0210423991084099, -0.00789421703666449, 0.0155894197523594, 0.0570506416261196, 0.00493886088952422, -0.0136921536177397, 0.0116290431469679, 0.0132078872993588, -0.00253908522427082, -0.0422174744307995, -0.0125511409714818, -0.0131946196779609, 0.00513455783948302, 0.0117683531716466, 0.00119242479559034, -0.0114764664322138, 0.00695221778005362, -0.00448444578796625, 0.0152179272845387, -0.0076952027156949, 0.00535679003223777, -0.0176989659667015, -0.00808659661561251, -0.0124914366751909, 0.00780797749757767, 0.0116423107683659, -0.0245848465710878, -0.0056884796358645, 0.010507931932807, 0.00161201227456331, -0.00365853821858764, -0.0134732387959957, -0.0310196280479431, -0.0220640040934086, 0.0238949321210384, 0.00286579970270395, 0.0179775860160589, 0.0223160888999701, -0.0154434759169817, -0.015085251070559, 0.00991089083254337, -0.0229662004858255, -0.00359220034442842, 0.0212546810507774, -0.0176326278597116, 0.00366517202928662, -0.0300112906843424, -0.01419632229954, 0.0201932732015848, -0.019689105451107, -0.00683280918747187, -0.0268270689994097, -0.00245450437068939, 0.00754262553527951, 0.00387745350599289, -0.00412622094154358, -0.0017380544450134, 0.0151515891775489, 0.00876324344426394, 0.00211949762888253, -0.00786104798316956, 0.0199809912592173, -0.053839884698391, 0.00819273758679628, 0.00811313185840845, -0.000578798644710332, -0.0180837269872427, -0.00796055421233177, -0.00150670076254755, -0.00621254928410053, -0.0107931848615408, -5.28112323081587e-05, 0.00742985075339675, 0.0082325404509902, 0.00377462967298925, -0.0153506025671959, 0.0278619416058064, 0.00450103031471372, -0.0214006248861551, 0.00256064510904253, -0.0107135800644755, -0.0304093193262815, -0.0120270708575845, -0.0116754798218608, -0.0223160888999701, 0.0139575060456991, 0.0205249637365341, -0.0121730146929622, 0.00104813964571804, 0.0245981141924858, 0.0358224958181381, 0.0135064078494906, 0.00987108796834946, 0.0204586256295443, -0.00369834108278155, 0.016650827601552, 0.00304988748393953, -0.00974504556506872, 0.00574486702680588, 0.00329036265611649, -0.0207903143018484, 0.0381841287016869, -0.00318919727578759, 0.0167038962244987, 0.00311290845274925, 0.0226610451936722, -0.0329832322895527, 0.0197554435580969, -0.0144882090389729, 0.0118280574679375, 0.00555580388754606, -0.00641488004475832, -0.00876987725496292, -0.0184286832809448, -0.0319748930633068, -0.0208831876516342, -0.00415275618433952, -0.0189593881368637, -0.00916127115488052, -0.0029155530501157, 0.00344293983653188, -0.0154302082955837, 0.00452756555750966, -0.015775166451931, -0.00500519853085279, -0.00435177003964782, -0.000395125447539613, -0.0225416366010904, -0.0232580862939358, 0.0265219137072563, 0.0349733717739582, -0.0282865036278963, 0.0121199442073703, 0.0124184647575021, 0.00704509066417813, 0.00964553840458393, 0.00509143806993961, -0.00343630602583289, -0.0174601506441832, -0.00389403803274035, -0.00678968988358974, 0.00710479496046901, -0.0171947982162237, 0.0238418616354465, 0.0146076176315546, -0.00437830481678247, 0.0118744941428304, -0.00843818765133619, 0.0103221861645579, 0.0329036265611649, 0.00358556653372943, -0.0175795573741198, -0.00572496559470892, 0.0113106211647391, 0.00964553840458393, -0.0118678603321314, 0.0208168495446444, 0.00666033057495952, 0.008325413800776, -0.0135528445243835, 0.0199146550148726, -0.00174468825571239, 0.0251686200499535, -0.00419919239357114, -0.00567189510911703, -0.00375472824089229, -0.0117948884144425, 0.040704969316721, -0.00755589315667748, 0.0217323135584593, 0.0046104877255857, 0.0222099479287863, 0.0144351394847035, -0.00564204296097159, -0.015111786313355, 0.00741658359766006, -0.0270526185631752, 0.0112177478149533, 0.028445715084672, -0.00162445066962391, -0.0231784824281931, 0.00631537334993482, -0.0266413222998381, 0.0359551720321178, 0.0154036730527878, -0.0310196280479431, 0.014222857542336, -0.00673330249264836, 0.0102492142468691, 0.025805464014411, 0.00778144225478172, -0.0163324046880007, -0.00808659661561251, -0.000954437302425504, 0.0184817537665367, -0.00770847033709288, -0.00524401525035501, 0.00774163939058781, -0.00185414589941502, -0.0126904509961605, -0.00432523479685187, 0.0189859233796597, 0.051584392786026, 0.00373482680879533, -0.0213342867791653, -0.00319583108648658, -0.0138513650745153, 0.0355306081473827, -0.00578798679634929, 0.0158945731818676, 0.0107600167393684, -0.0011260868050158, 0.0225416366010904, -0.00916127115488052, -0.000368382956366986, 0.0259646754711866, 0.0248501971364021, 0.00562877533957362, -0.00246777199208736, 0.0146474204957485, 0.0151383215561509, 0.00594719778746367, 0.0185215566307306, 0.0253012962639332, -0.0163058694452047, -0.00379121419973671, 0.0125909438356757, 0.0251818876713514, 0.0381575934588909, 0.0178979802876711, 0.019702373072505, -0.00788094941526651, -0.0103487214073539, -0.00570838106796145, -0.00968534126877785, -0.0069588515907526, 0.0111248753964901, -0.0173009391874075, -0.0119474660605192, -0.0103221861645579, -0.00388740422204137, 0.011376959271729, -0.0256993230432272, 0.00535347312688828, 0.0318156816065311, -0.0137186888605356, -0.00137153721880168, -0.00373814371414483, 0.0213873572647572, -0.00088146555935964, -0.029321376234293, 0.035397931933403, 0.0112708183005452, -0.030621599406004, -0.0154302082955837, -0.00744975218549371, -0.0128231262788177, -0.0125776762142777, 0.0259248726069927, -0.00986445415765047, -0.0168100371956825, -0.0132476892322302, 0.00905513111501932, 0.0117550855502486, -0.0138380974531174, 0.0353448614478111, 0.00256064510904253, 0.00924751069396734, -0.00179775862488896, 0.00752935791388154, 0.00224388134665787, -0.0200473293662071, -0.0200605969876051, 0.0165579542517662, -0.0128430277109146, -0.0156292226165533, -0.0296928696334362, -0.0056387260556221, -0.0333812572062016, 0.0322933159768581, 0.0109523963183165, -0.00396037613973022, 0.00453419936820865, -0.00589081039652228, 0.0104150585830212, -0.0176724307239056, -0.0254207048565149, 0.0313380509614944, -2.9644774258486e-05, 0.0116224093362689, -0.0126174790784717, -0.0366450846195221, 0.00677973916754127, 0.138725936412811, 0.0307808108627796, 0.00280112004838884, 0.0247175227850676, 0.0150454482063651, -3.94659000448883e-05, 0.00973841175436974, -0.00993079226464033, -0.015788434073329, -0.00856423005461693, 0.0146872233599424, -0.00766866747289896, 0.000636015145573765, 0.00163274293299764, 0.00394047470763326, 0.00876987725496292, -0.000814713013824075, -0.0193574149161577, -0.00254240212962031, 0.00748955504968762, 0.00575813464820385, -0.0269464775919914, 0.00427548121660948, 0.0339119620621204, 0.000985947903245687, 0.00567521201446652, 0.0232713539153337, 0.00489242421463132, 0.0176060926169157, -0.0306481346487999, -0.022342624142766, 0.00242796912789345, 0.00491895945742726, -0.000833370548207313, -0.0262432955205441, 0.00999712944030762, -0.0079472865909338, 0.00296033127233386, 0.0091745387762785, -0.00949296168982983, 0.00704509066417813, 0.0155628845095634, -0.00346615817397833, -0.0165712218731642, 0.0186807680875063, -0.01666409522295, -0.00763549841940403, 0.00966543983668089, -0.00908830016851425, -0.0252880286425352, 0.0475775822997093, 0.00405656592920423, -0.00923424307256937, 0.0130221405997872, -0.00130354077555239, 0.00706499209627509, -0.0103487214073539, -0.000475560227641836, -0.0106406081467867, -0.0203126817941666, -0.0186144299805164, -0.00395042542368174, -0.00108711328357458, -0.0266413222998381, -0.0145810823887587, 0.00118081562686712, -0.0144351394847035, -0.00374477752484381, -0.012259254232049, 0.00020969012985006, -0.00236660661175847, -0.00655750697478652, -0.0339384973049164, 0.0192778091877699, -0.00861066672950983, -0.006126310210675, 0.0261636897921562, 0.000524899049196392, 0.0253543667495251, -0.0033815773203969, 0.0072043021209538, -0.0282599683851004, -0.00574155012145638, -0.0306481346487999, 0.00833868142217398, -0.0185082890093327, -0.00833868142217398, -0.0137982945889235, -0.00439488934352994, 0.0296663343906403, 0.00442474149167538, 0.00135246501304209, 0.0187338385730982, -0.0204586256295443, -0.00631869025528431, -0.000354700750904158, 0.0134334359318018, 0.0151515891775489, -0.0220905393362045, 0.00812639947980642, 0.0108993258327246, -0.000503753835801035, -0.0213740896433592, -0.00930058117955923, 0.0225283689796925, -0.0073038088157773, -0.00833868142217398, 0.021878257393837, -0.0116887474432588, -0.00890918727964163, 0.0330097675323486, -0.0290029533207417, -0.0324790626764297, 0.015788434073329, 0.00282599683851004, 0.0088760182261467, -0.00633527478203177, 0.00768193509429693, -0.0259912107139826, -0.0109457625076175, -0.00182595220394433, 0.0105742700397968, 0.0314441919326782, 0.0145943500101566, -0.00998386181890965, -0.00546293053776026, -0.0187736414372921, -0.0218915250152349, -0.00103238446172327, -0.0117020150646567, -0.0171417277306318, 0.0169161781668663, -0.0194502882659435, -0.0400946587324142, 0.00169327633921057, -0.0232846215367317, -0.0153904054313898, 0.0121663808822632, 0.00131017458625138, -0.0117484517395496, -0.0191849358379841, -0.0121995499357581, -0.00164518132805824, -0.0595980174839497, 0.0311523042619228, -0.0401211939752102, 0.0117285503074527, -0.0139707736670971, 0.0233642272651196, 0.0384229421615601, -0.0135661121457815, -0.00139641400892287, -0.0221701450645924, 0.00786768179386854, 0.000570506439544261, 0.00617938069626689, 0.0260708164423704, -0.0203524846583605, 0.0194237530231476, 0.00854432862251997, 0.035902101546526, 0.00239645852707326, -0.0101298056542873, -0.00307476427406073, 0.0172744039446115, 0.00744311837479472, -0.00819273758679628, 0.0247307904064655, 0.0183888804167509, 0.037653423845768, 0.0162926018238068, -0.00322402454912663, -0.0175795573741198, -0.00601021852344275, -0.000453171145636588, -0.00910156778991222, -0.00170654384419322, -0.0215996373444796, -0.0348406955599785, -0.00391062255948782, -0.03234638646245, -0.00786104798316956, -0.0107268476858735, 0.00831877999007702, -0.0104681290686131, -0.0264821108430624, 0.0174468830227852, 0.0100170308724046, 0.0312584452331066, -0.0184419509023428, 0.027570053935051, -0.00408310117200017, 0.0171417277306318, -0.000458561116829515, -0.0169161781668663, -0.0222630184143782, -0.0399885177612305, -0.0139442384243011, -0.00660394364967942, 0.00791411846876144, 0.00361541844904423, 0.0114764664322138, -0.0069124149158597, -0.0110253682360053, 0.0178183745592833, 0.0361143834888935, -0.0245848465710878, -0.00628220429643989, -0.0180306565016508, -0.0337792858481407, 0.0039736432954669, -0.0323198512196541, -0.010269115678966, -0.0183092765510082, 0.00625235214829445, 0.0105278333649039, -0.0158017016947269, 0.010494664311409, -0.00802025850862265, -0.0304093193262815, -0.0168233048170805, -0.00406319973990321, -0.0115096354857087, -0.0235897768288851, 0.00414280546829104, 0.0208831876516342, -0.00826570950448513, -0.0161068551242352, 0.021480230614543, 0.0162793342024088, -0.00752272410318255, 0.0151648567989469, 0.0309930928051472, -0.0236693825572729, 0.0134533373638988, 0.0151250539347529, 0.0392720699310303, 0.0105543686076999, -0.0413948856294155, 0.0138779003173113, 0.00547951506450772, -0.0368573665618896, -0.0265882518142462, -0.00885611679404974, -0.00515114236623049, 0.0148198995739222, 0.0101032704114914, -0.00655087316408753, -0.00760232983157039, -0.00435177003964782, -0.00564535986632109, -0.0112575506791472, -0.016173193231225, 0.0177785716950893, 0.0112907197326422, -0.0198615845292807, -0.0228865947574377, 0.0014105107402429, -0.00638834526762366, 0.000742985110264271, -0.0386086888611317, 0.0445260368287563, -0.0256064515560865, 0.0124848028644919, 0.00304491212591529, 0.000254986516665667, -0.0130818448960781, -0.0183092765510082, -0.00013858413149137, 0.020126935094595, -0.0198217816650867, -0.00516440998762846, 0.00435177003964782, 0.00766866747289896, 0.000813054561149329, -0.0428012497723103, -0.00737678073346615, -0.013141549192369, -0.0184552185237408, -0.0107268476858735, -0.0114233959466219, 0.0252084229141474, -0.0370431132614613, -0.0237224530428648, 0.00195033592171967, 8.84160544956103e-05, -0.00474316393956542, -0.0215996373444796, 0.0271056890487671, -0.00423236144706607, -0.00941998977214098, -0.000110701461380813, -0.00344293983653188, -0.00543307838961482, -0.00270990538410842, -0.013327294960618, 0.0174601506441832, 0.012458267621696, -0.0156159549951553, 0.0174734182655811, -0.015284264460206, -0.0140769137069583, -0.0224089603871107, -0.0274639129638672, -0.0281272921711206, -0.0223160888999701, -0.00567189510911703, -0.0290825590491295, -0.0314972624182701, -0.00657409150153399, 0.00326548586599529, 0.0219976659864187, 0.00392720708623528, -0.000604504602961242, 0.00322734145447612, 0.014222857542336, 0.0109192272648215, 0.00579793751239777, -0.00960573554039001, 0.0276231244206429, -0.0150454482063651, 0.00587422586977482, 0.0176458954811096, -0.00792075227946043, 0.0105809038504958, -0.0188930500298738, 0.00295701436698437, 0.0150321805849671, -0.0155894197523594, 0.0174999535083771, -0.00384760135784745, 0.0196094997227192, -0.0120735075324774, -0.0176989659667015, -0.0114565650001168, -0.00242133531719446, -0.00540986005216837, 0.0359551720321178, 0.0142493927851319, -0.0129757039248943, -0.00516772689297795, 0.0170355867594481, 0.0296928696334362, 0.0247573256492615, -0.00874997675418854, 0.00239977543242276, -0.0216659754514694, -0.0219976659864187, -0.00480950158089399, -0.024027606472373, -0.00491232564672828, 0.0338058210909367, 0.00816620234400034, 0.0115560721606016, -0.021466962993145, 0.00140636460855603, -0.0202728789299726, -0.0262300278991461, -0.0155230816453695, 0.0143289985135198, 0.0188797824084759, -0.0123786628246307, -0.0086239343509078, 0.0391924642026424, 0.0180173888802528, 0.0162793342024088, -0.0208831876516342, 0.0106737772002816, -0.00327211967669427, -0.0326382741332054, -0.00825244188308716, 0.00535679003223777, -0.00626230286434293, 0.00239480007439852, 0.0132941259071231, 0.0110320020467043, 0.00835194811224937, 0.0364593416452408, -0.00284921517595649, 0.00243128603324294, 0.0055856560356915, 0.00391393946483731, 0.000766203389503062, -0.00318919727578759, 0.0229927357286215, -0.036671619862318, 0.00305154593661427, 0.0189726557582617, 0.00821263901889324, -0.00465360749512911, 0.0106074390932918, 0.00409305188804865, -0.0075956960208714, -0.00302501069381833, -0.00268834573216736, -0.00184253673069179, -0.00749618886038661, -0.00143289985135198, -0.0129226334393024, 0.0221436098217964, -0.0212281458079815, 0.0251022819429636, 0.0120071694254875, -0.0181766003370285, 0.00270824693143368, 0.0243858322501183, -0.000667525688186288, -0.00329036265611649, -0.00150421308353543, -0.0203524846583605, 0.00762886507436633, -0.00362205225974321, -0.00317261274904013, 0.00183756137266755, 0.00986445415765047, -0.0092209754511714, -0.00626230286434293, 0.0129956053569913, -0.00276463432237506, -0.0262034926563501, -0.00786104798316956, 0.00399686163291335, -0.0168100371956825, 0.00546956434845924, -0.0138380974531174, -0.0266413222998381, -0.0125246057286859, -0.0044114738702774, 0.0140901813283563, 0.00537669146433473, 0.00243791984394193, -0.0234703682363033, -0.00260874000377953, -0.00916790496557951, 0.0063253240659833, 0.0575813464820385, 0.248157024383545, 0.00307310582138598, 0.012265888042748, 0.0195829644799232, -0.000610723800491542, 0.00746301980689168, 0.0298786144703627, 0.0223160888999701, -0.00782124511897564, 0.0314972624182701, -0.0210954695940018, -0.00774163939058781, -0.0322933159768581, 0.00125959189608693, 0.010275749489665, -0.0119076631963253, -0.04195212200284, -0.00880968011915684, -0.013154816813767, 0.0255003105849028, 0.00244952901266515, 0.0038708196952939, -0.00535679003223777, -0.0168631076812744, 0.0297990087419748, 0.0062755704857409, 0.00815293472260237, 0.0392720699310303, 0.0212148781865835, 0.0147668290883303, -0.0349203012883663, 0.00218749418854713, -0.00642814766615629, 0.00253410986624658, 0.00697211921215057, -0.0319483578205109, -0.0223824270069599, -2.6055786293e-05, 0.00209793774411082, 0.0215200334787369, 0.027158759534359, 0.0106538757681847, -0.0200340617448092, -0.0294540524482727, 0.0171417277306318, 0.0322933159768581, -0.0058344230055809, -0.0139309708029032, 0.0089688915759325, 0.0187205709517002, -0.0484532415866852, -0.0023533389903605, 0.0239214673638344, 0.0395374223589897, 0.00719103449955583, 0.0260973516851664, -0.00828561093658209, 0.0339915677905083, -0.00110203924123198, 0.015085251070559, 0.014023844152689, 0.0212281458079815, -0.0108727905899286, 0.0310196280479431, -0.0177520364522934, 0.0211618077009916, -0.0119010293856263, 0.0114034945145249, 0.0302235726267099, -0.0239347349852324, -0.0247175227850676, 0.0134201683104038, 0.000392223155358806, -0.00983791891485453, -0.0245052408427, -0.0186675004661083, 0.013154816813767, 0.0472856946289539, 0.0279150120913982, 0.00624571833759546, -0.0209229905158281, -0.00856423005461693, -0.00417265715077519, -0.0119209308177233, 0.00996396131813526, -0.0422174744307995, 0.0146739557385445, 0.0299847554415464, -0.0185613594949245, -0.0204586256295443, 0.0125312395393848, -0.0123587613925338, -0.0121398456394672, -0.00532030407339334, 0.0106207067146897, 0.0220640040934086, 0.00443469220772386, 0.0125445071607828, -0.0174203477799892, -0.00131680839695036, -0.0134400697425008, 0.0303031783550978, 0.00305652129463851, -0.00358224962837994, 0.00212613143958151, -0.0224222280085087, -0.000445708137704059, 0.0127634229138494, -0.00244289520196617, -0.0468080602586269, 0.0207505133002996, -0.000231146317673847, 0.00353912985883653, -0.00613626092672348, -0.00655419006943703, 0.0232846215367317, 0.00918780639767647, -0.0263627041131258, 0.0299051497131586, -0.00859739910811186, -0.00498529756441712, -0.0311788395047188, -0.0153506025671959, 0.00809986423701048, 0.0100833689793944, -0.0126506481319666, -0.0160803198814392, -0.030170502141118, -0.0137319564819336, -0.0465161725878716, 0.00380116491578519, -0.0112708183005452, 0.0177122335880995, -0.0271056890487671, -0.026283098384738, -0.0155363492667675, 0.0143422661349177, 0.00611304258927703, -0.0158415045589209, 0.014010576531291, -0.00908830016851425, 0.0116622122004628, 0.0054430291056633, -0.0116754798218608, 0.0318422168493271, -0.0340446382761002, 0.0189063176512718, -0.00525728287175298, -0.00263527524657547, -0.0210291314870119, -0.0347345545887947, 0.0156955607235432, 0.0160007141530514, -1.58330039994325e-05, 0.020591301843524, -0.0101099042221904, -0.0416071638464928, -0.00936691928654909, 0.00673330249264836, 0.0152179272845387, -0.0362735949456692, -0.0037978480104357, 0.0478960052132607, -0.00298023270443082, -0.0148066319525242, 0.00116340187378228, -0.167277783155441, 0.0250492114573717, -0.00407978426665068, 0.010295650921762, 0.0169825162738562, -0.0135528445243835, -0.0308073461055756, -0.00886275060474873, -0.0038741366006434, -0.00155811267904937, 0.00124134903308004, -0.00239148316904902, -0.0195431616157293, -0.00235831434838474, 0.00888265203684568, 0.00194204365834594, -0.0376003533601761, 0.0100966366007924, 0.00615947926416993, 0.00107550411485136, 0.0184950213879347, 0.0019005824578926, 0.00809323042631149, -0.0382637307047844, 0.00549609959125519, -0.00620259903371334, -0.0137850269675255, 0.0100966366007924, -0.0046104877255857, -0.00798045564442873, -0.0273577719926834, -0.0103686228394508, 0.0176989659667015, 0.0239612702280283, 0.0173142068088055, -1.70120583788957e-05, -0.0112708183005452, 0.0040665166452527, -0.0273047015070915, 0.0206443723291159, 0.0386882945895195, 0.0110983401536942, 0.00855759624391794, 0.011376959271729, -0.0197289083153009, 0.0180173888802528, 0.0086239343509078, -0.00731707643717527, 0.0191849358379841, -0.01048803050071, -0.0100568337365985, -0.025778928771615, 0.0101563408970833, 0.0133936330676079, -0.00676647154614329, 0.00683280918747187, -0.0319218225777149, 0.00879641249775887, -0.00298354960978031, -0.00193540984764695, 0.00434181932359934, -0.0168498400598764, -0.00599695136770606, 0.0098047498613596, -0.00429206574335694, -0.0169029105454683, -0.020087132230401, 0.00491232564672828, -0.0222364831715822, 0.00276131741702557, -0.0319748930633068, -0.0358490310609341, 0.0172744039446115, -0.0116555783897638, -0.00415938999503851, -0.0101696085184813, -0.0201402027159929, -0.00451429793611169, -0.0189063176512718, 0.0287110675126314, 0.00858413148671389, 0.0364593416452408, -0.0130088729783893, -0.0216129049658775, 0.00194204365834594, 0.000116506031190511, 0.0187736414372921, 0.0180306565016508, 0.00591734563931823, -0.026681125164032, 0.00967207364737988, -0.00796055421233177, 0.0126639157533646, -0.0252349581569433, 0.00705172447487712, 0.0223956927657127, 0.0105809038504958, 0.0107533829286695, -0.0111182415857911, -0.0312053747475147, -0.00305486284196377, 0.01225262042135, -0.0341773144900799, 0.0320810340344906, 0.0184021480381489, 0.0298786144703627, 0.0115759735926986, 0.0225947070866823, 0.0178714450448751, -0.000273229466984048, -0.00655087316408753, 0.03587556630373, 0.0338058210909367, 0.00949959550052881, 0.0195166263729334, 0.0080401599407196, -0.00283760600723326, -0.00846472289413214, 0.0027447328902781, -0.00417929096147418, 0.0473653003573418, -0.00595051469281316, -0.0124250985682011, 0.00943989120423794, -0.0151515891775489, -0.0342303849756718, -0.124927639961243, -0.0356102138757706, 0.00199677236378193, 0.0201932732015848, 0.00718440068885684, 0.0322137102484703, 0.000126353072118945, 0.0177255012094975, -0.0125113381072879, 0.0296397991478443, 0.000379370176233351, -0.0186807680875063, -0.0079340199008584, 0.0199411902576685, 0.0365654826164246, 0.00638502836227417, -0.0210954695940018, -0.0126307466998696, -0.0217323135584593, 0.0245848465710878, -0.0148862367495894, 0.0135992811992764, -0.00892908871173859, 0.0116157755255699, -0.00380779872648418, -0.0237224530428648, -0.0132410554215312, 0.0303031783550978, 0.011383593082428, -0.000490486272610724, -0.0182296708226204, -0.0088295815512538, 0.00959910172969103, -0.0129491686820984, 0.00681954156607389, -0.0169161781668663, -0.025380901992321, -0.00621586618945003, 0.0227937214076519, -0.0255666486918926, 0.0179775860160589, 0.00327709503471851, 0.0068659782409668, -0.0331159085035324, 0.00292384531348944, 0.00297525734640658, 0.00551600102335215, 0.0147137586027384, -0.00365190440788865, -0.000729302875697613, -0.0198483169078827, 0.00521416310220957, -0.012471535243094, -0.0182164032012224, 0.00680627441033721, 0.00220739538781345, -0.00358888343907893, -0.0065210210159421, -0.0164252780377865, -0.00750945648178458, -0.00292882067151368, -0.00194536056369543, -0.0282865036278963, 0.00608982425183058, -0.00598700065165758, 0.0174866858869791, -0.0100435661152005, -0.0044612274505198, 0.0106804110109806, -0.0487451292574406, -0.00760896364226937, 0.031550332903862, -0.015098518691957, 0.0425093621015549, -0.0210158638656139, 0.0134069006890059, -0.0178051069378853, -0.0155761521309614, 0.0165314190089703, 7.76879678596742e-05, -0.0228467918932438, -0.00819937139749527, 0.0025971308350563, -0.0219180602580309, 0.0337262153625488, 0.0241072122007608, 0.00113272061571479, 0.041978657245636, -0.00557570531964302, 0.00516440998762846, 0.0266413222998381, 0.00670013343915343, -0.0117550855502486, 0.0107998186722398, 0.00327211967669427, 0.00888928584754467, -0.00676978845149279, -0.0125909438356757, 0.00802025850862265, 0.0133604640141129, -0.0102359466254711, -0.00357229891233146, -0.0605532862246037, 0.0127037186175585, -0.0106273405253887, 0.006126310210675, 0.00600358471274376, 0.000584603229071945, 0.0112708183005452, -0.00149094557855278, -0.0193308796733618, 0.0171947982162237, -0.0424828268587589, 0.0148597015067935, 0.0120934089645743, 0.0203524846583605, -0.0295867286622524, -0.00970524270087481, 0.0300112906843424, 0.00177619874011725, 0.0182296708226204, 0.01419632229954, 0.00230524386279285, -0.0188665147870779, 0.0130287744104862, 0.0114831002429128, 0.0214006248861551, 0.00362205225974321, 0.00376467895694077, 0.0265749841928482, 0.00807332899421453, -0.0252880286425352, -0.00703182304278016, -0.00914800446480513, -0.00664374604821205, 0.0206974428147078, -0.00275965896435082, -0.0353448614478111, -0.020962793380022, -0.0211485400795937, 0.0128761967644095, -0.00267010275274515, -0.00489574111998081, -0.025792196393013, -0.0184552185237408, -0.0208035819232464, -0.0215863697230816, -0.0181235298514366, 0.00635849311947823, 0.0134599711745977, 0.00308139808475971, 0.000990094034932554, 0.0273843072354794, 0.00434513622894883, -0.00736351311206818, -0.00468677654862404, -0.0225018337368965, -0.0142891956493258, -0.0135860135778785, 0.00657740840688348, -0.00206311047077179, -0.0363266654312611, 0.0279415473341942, -0.00358888343907893, -0.0107666505500674, -0.00651438720524311, 0.0175795573741198, -0.0166242923587561, 0.0147933643311262, -0.00705835828557611, 0.0182694736868143, -0.0178714450448751, 0.00392720708623528, -0.00276131741702557, -0.00560887390747666, 0.0267474632710218, 0.00152245606295764, 0.00114350055810064, -0.0025241591501981, -0.00412290403619409, 0.00507485354319215, 0.0464631021022797, 0.00839175097644329, 0.00513124093413353, -0.0181102622300386, 0.0136656183749437, 0.00390067184343934, 0.0104415938258171, 0.0126440143212676, 0.0103619890287519, 0.000420831405790523, 0.002570595825091, -0.0147137586027384, 0.000177764988620766, 0.00427548121660948, -0.00232680374756455, 0.0118877617642283, 0.00228700111620128, 0.0119209308177233, 0.0153373349457979, -0.0235499739646912, -0.0115229031071067, 0.0242000855505466, -0.0137054212391376, -0.0177918393164873, -0.022329356521368, 0.0193574149161577, -0.0147004909813404, -0.0256329867988825, -0.00532030407339334, 0.00300842616707087, 0.0266147870570421, 0.0322137102484703, 0.0166906286031008, 0.0440749377012253, 0.0221834126859903, -0.0300378259271383, 0.00752272410318255, -0.00876324344426394, -0.0160139817744493, -0.00567189510911703, 0.0397762395441532, 0.0117749869823456, -0.0181766003370285, 0.0130022391676903, -0.00354576366953552, 0.0165048837661743, 0.0176856983453035, 0.0157353635877371, 0.00131763762328774, -0.0143024632707238, 0.0136523507535458, -0.0299316849559546, -0.0117484517395496, -0.0379187762737274, -0.00405656592920423, -0.0108130862936378, -0.0298520792275667, -0.00570174725726247, 0.00656414078548551, -0.00250094081275165, 0.0585896819829941, 0.00202994141727686, -0.0187603738158941, -0.0069588515907526, 0.0234969034790993, 0.0171947982162237, -0.00243294448591769, 0.0143024632707238, -0.0403600111603737, 0.0208566524088383, 0.0365389473736286, -0.0123322261497378, 0.00792075227946043, -0.0216792430728674, 0.0214138925075531, -0.0123720290139318, -0.00649116886779666, 0.0362205244600773, -0.0136125488206744, 0.0352652557194233, -0.00317592965438962, 0.0352387204766273, 0.011383593082428, 0.0118678603321314, -0.0240939445793629, -0.0177122335880995, 0.0184021480381489, -0.00806006137281656, -0.00709816114977002, -0.0374146066606045, -0.0032339752651751, -0.00393384089693427, 0.00428543193265796, -0.00875660963356495, 0.0316034033894539, -0.00135578191839159, -0.0167171638458967, 0.0448179207742214, 0.0136523507535458, -0.0049023749306798, -0.00768193509429693, 0.000252706144237891, -0.0334608629345894, -0.0240674093365669, -0.00339152803644538, 0.0065210210159421, -0.0121199442073703, 0.0138380974531174, -0.0209229905158281],id:"917005556f4f62a7570d9781c1718058",source:"state_of_union.txt",text:"Tonight, I’m announcing a crackdown on these companies overcharging American businesses and consumers.
And as Wall Street firms take over more nursing homes, quality in those homes has gone down and costs have gone up.
That ends on my watch.
Medicare is going to set higher standards for nursing homes and make sure your loved ones get the care they deserve and expect.
We’ll also cut costs and keep the economy going strong by giving workers a fair shot, provide more training and apprenticeships, hire them based on their skills not degrees.
Let’s pass the Paycheck Fairness Act and paid leave.
Raise the minimum wage to $15 an hour and extend the Child Tax Credit, so no one has to raise a family in poverty.
Let’s increase Pell Grants and increase our historic support of HBCUs, and invest in what Jill—our First Lady who teaches full-time—calls America’s best-kept secret: community colleges."})
(:Chunk{embedding:[-0.00979824084788561, -0.0254952218383551, -0.0117908800020814, -0.0365009233355522, 0.00956730637699366, -0.00201903143897653, -0.00422610994428396, 0.000855284160934389, -0.0145555017516017, -0.00742291007190943, 0.0164425708353519, 0.0221697576344013, 0.0102007277309895, -0.00556223373860121, 0.0102865034714341, 0.00763405067846179, 0.0371607355773449, -0.02061259560287, 0.00235553667880595, -0.010999103076756, -0.0143971461802721, -0.00074517767643556, 0.000861882348544896, -0.025851521641016, -0.00324133737012744, 0.0149249974638224, 0.040037527680397, -0.0107219815254211, 0.0257723443210125, -0.00395228713750839, -0.00105982657987624, -0.0209293067455292, -0.0161126628518105, -0.000967452593613416, -0.0227767862379551, -0.0244263224303722, -0.00698083452880383, 0.010972710326314, 0.0269732046872377, -0.0181316956877708, 0.0307473428547382, -0.0149118015542626, -0.00509376591071486, -0.0141068277880549, -0.00760765792801976, -0.00270523829385638, -0.0153868673369288, -0.0169836189597845, -0.0304834172129631, 0.0192137900739908, 0.0195041075348854, 0.012826788239181, -0.0173531137406826, -0.0142519874498248, 0.00470447540283203, -0.0272107385098934, -0.00904605258256197, 0.0119822258129716, -0.00425580190494657, -0.0369232036173344, -0.0119888242334127, 0.00905265100300312, -0.0293485373258591, 0.00664103031158447, -0.0119294412434101, -0.00433827843517065, -0.0145950904116035, 0.0288470778614283, 0.0119030484929681, 0.0253764558583498, 0.0549493283033371, 0.0173003282397985, 0.0158091485500336, -0.00552594428882003, 0.0104910461232066, 0.00306978565640748, -0.0153076900169253, -0.00554903782904148, -0.00577007513493299, 0.00248585012741387, 0.0196492671966553, -0.0155056342482567, -0.00156458443962038, -0.00959369912743568, 0.0138165093958378, -0.0130049381405115, 0.000271554803475738, 0.0217342805117369, -0.0401430986821651, -0.0334921702742577, 0.00197284459136426, 0.0188047047704458, 0.00597131857648492, 0.0220905803143978, 0.00189696589950472, 0.0338616669178009, 0.00437786756083369, 0.0245846770703793, 0.0124440966174006, -0.0278441607952118, 0.0059581222012639, -0.0131764896214008, -0.0208369325846434, -0.00530160730704665, -0.0239908453077078, -0.0193985383957624, 0.00185737700667232, -0.00428219418972731, 0.0194117352366447, -0.0129653494805098, -0.0132886581122875, -0.0215363353490829, -3.84547965950333e-05, -0.0495124608278275, 0.0174718797206879, -0.0059581222012639, -0.0369759872555733, 0.00801014434546232, 0.00999618507921696, -0.0148986047133803, 0.024056825786829, 0.0102733075618744, 0.0407237336039543, 0.018606761470437, 0.0220905803143978, -0.00341783766634762, -0.0509112663567066, -0.00622534705325961, 0.0195173043757677, -0.0162710193544626, 0.0366328842937946, 0.0253764558583498, 0.0100819617509842, 0.00438446551561356, 0.00766044296324253, 0.00882831402122974, 0.00260956515558064, -0.00254523335024714, -0.00714578805491328, 0.00586904771625996, 0.0175906475633383, -0.00448013842105865, 0.000421043951064348, 0.00647607678547502, -0.0210480727255344, 0.00443725055083632, 0.0256535764783621, -0.00769343366846442, 0.0183560308068991, -0.00218893378041685, -0.00387310958467424, -0.01763023622334, 0.0180921051651239, 0.000778168381657451, 0.00324463634751737, 0.0299819577485323, -0.00187717145308852, -4.34034045611043e-05, -0.0179733391851187, -0.0169704221189022, 0.0235157795250416, -0.00915162358433008, 0.00790457427501678, 0.0123649183660746, -0.00837964098900557, 0.014753445982933, -0.0016355145489797, 0.0137373320758343, -0.00266235042363405, 0.019636070355773, -0.0158751308917999, 0.0200319606810808, -0.0163897853344679, 0.0213911775499582, 0.000283720117295161, 0.0222621317952871, -0.030377846211195, 0.0148722128942609, -0.0174586847424507, 0.000636308337561786, 0.00241986871697009, 0.0108803361654282, 0.0247826222330332, 0.0266564954072237, 0.00279101426713169, 0.00339474412612617, 0.0635533034801483, 0.010405270382762, -0.005499551538378, -0.0110914772376418, 0.00973885785788298, 0.0208501294255257, 0.00373454857617617, -0.0172343477606773, -0.629621148109436, -0.0148722128942609, 0.00793756544589996, 0.00346402474679053, -0.0172475446015596, -0.00585585134103894, -0.0183164421468973, 0.00549295358359814, -0.0203486699610949, 0.0339144505560398, -0.0143443616107106, 0.00847861263900995, 0.00192005943972617, -0.0138429021462798, -0.00227470952086151, -0.00169407296925783, 0.00818169675767422, -0.00757466722279787, -0.0141464164480567, 0.00261616334319115, -0.0304834172129631, 0.0126552367582917, -0.0155980084091425, 0.00280915899202228, -0.0276066269725561, 0.0234102085232735, 0.0189894530922174, -0.00728434883058071, 0.00567110301926732, -0.00869635120034218, -0.0243207514286041, 0.0171155817806721, -0.0077924057841301, -0.0149513902142644, 0.0476649776101112, 0.00497499899938703, -0.0161390565335751, 0.00198439136147499, 0.0271315611898899, 0.0103854760527611, -0.0260758586227894, 0.00103178445715457, 0.0109265232458711, -0.0216155145317316, -0.00375764188356698, -0.0011183851165697, -0.0163369998335838, 0.00379393179900944, 0.0272635240107775, -0.000553006771951914, -0.00431848410516977, 0.00603070203214884, 0.0116523187607527, 0.0111442618072033, 0.00802334118634462, 0.00520593440160155, 7.4074458098039e-05, -0.0247694253921509, 0.0229087490588427, -0.0193325560539961, 0.00635730987414718, 0.00723156379535794, -0.0182636585086584, -0.00727775087580085, -0.0346534438431263, 0.0156375970691442, 0.011282823048532, -0.00142932252492756, 0.00632761837914586, -0.0150569602847099, -0.000417744886362925, 0.00366196897812188, -0.00996319483965635, 0.00137241359334439, 0.0149381943047047, 0.0132424710318446, 0.0191346127539873, -0.0255480073392391, -0.00903945509344339, 0.0147138573229313, 0.015109745785594, -0.0127080222591758, 0.012543068267405, -0.000862707092892379, -0.000955905881710351, 0.00766704138368368, -0.042201716452837, 0.0243999306112528, 0.0161126628518105, -0.00962009094655514, 0.00308957998640835, 0.0251785106956959, 0.006875263992697, -0.0289526488631964, 0.00605379557237029, 0.0258647166192532, -0.0026854439638555, -0.00229450385086238, 0.0146478759124875, 0.00641999254003167, -0.00649587111547589, -0.0201903153210878, 0.0228823572397232, 0.00469127902761102, 0.0301930978894234, 0.0129059664905071, -0.00145159126259387, 0.00732393795624375, 0.0193853415548801, -0.0301139205694199, -0.0127740036696196, -0.00128828722517937, -0.00907904375344515, -0.024927781894803, -0.0042195119895041, -0.0318030454218388, 0.00600430928170681, 0.0197284445166588, -0.0140012577176094, -0.00462529761716723, 0.0150041757151484, 0.0108737386763096, 0.0221169721335173, -0.0136581547558308, 0.0118304686620831, 0.0117842815816402, 0.0169572252780199, -0.0206521842628717, -0.00395558634772897, -0.0215231403708458, 0.0141200246289372, -0.0106560001149774, 0.0319350101053715, 0.0185143873095512, 0.0114081874489784, 0.0337824895977974, 0.0102073261514306, -0.0080431355163455, 0.025033351033926, -0.0177490022033453, -0.00921100657433271, 0.00181448913644999, -0.00615936564281583, -0.0138956876471639, -0.0145291090011597, -0.0492749251425266, -0.010306297801435, -0.00462529761716723, -0.0121933668851852, 0.000232790698646568, -0.00262441113591194, -0.0128597794100642, 0.000414239621022716, 0.00803653709590435, 0.0192533787339926, 0.00882831402122974, -0.0102601107209921, -0.0203222781419754, -0.00547645799815655, -0.0139352763071656, 0.00277451891452074, 0.0190290417522192, -0.00839283689856529, -0.00327762705273926, -0.00114395294804126, -0.000500634021591395, 0.00776601349934936, 0.00940235238522291, -0.00657504890114069, -0.0229879282414913, 0.0106494016945362, -0.0086435666307807, 0.00633421633392572, 0.0185803677886724, 0.0362369976937771, -0.0296652466058731, -0.0130445268005133, 0.0153604755178094, -0.0217606723308563, 0.0171815622597933, 0.0161258596926928, -0.00650906749069691, -0.0110452901571989, 0.00986422225832939, 0.0187651161104441, 0.00293617323040962, 0.00332546373829246, 0.000134127854835242, -0.0294277146458626, 0.0342575535178185, 0.0187783129513264, 0.00140128040220588, 0.0023538873065263, 0.0182108730077744, 0.0132226767018437, 0.0212064292281866, -0.0049321111291647, -0.00783199444413185, 0.0168252624571323, -0.00443065259605646, 0.0269600097090006, -0.017221150919795, 0.00531810242682695, -0.0206389892846346, -0.00250894366763532, -0.03987917304039, 0.00958050228655338, -0.0406181626021862, 0.00129488541278988, 0.0369232036173344, -0.00267224758863449, -0.0278177671134472, -0.0323045030236244, -0.00508056953549385, -0.0156244011595845, 0.034125592559576, -0.00950132496654987, 0.0299027804285288, -0.00327597768045962, 0.00969267077744007, 0.00104498071596026, 0.0108407475054264, -0.0122263571247458, -0.00781879853457212, -0.0283456183969975, -0.00858418270945549, -0.00081280863378197, 0.0264057647436857, 0.0110584860667586, -0.0024495602119714, -0.000566203088965267, 0.0166932996362448, 0.0124506941065192, 0.0291637890040874, -0.0150305675342679, 1.15725224532071e-05, 0.00987741909921169, -0.0184879936277866, 0.0435213446617126, -0.0054038786329329, -0.0184220131486654, 0.00591193558648229, -0.0124638909474015, 0.00884151086211205, 0.0185275841504335, -0.00785178877413273, 0.0532602034509182, -0.00195305014494807, 0.00477375602349639, -0.0186991356313229, -0.00726455450057983, 0.00872274395078421, 0.00449333479627967, 0.0181053020060062, 0.00698083452880383, -0.016653710976243, -0.0065420581959188, 0.0304042398929596, 0.0568495914340019, 0.0274746641516685, 0.00530160730704665, 0.00264255586080253, 0.0185671728104353, -0.0243339482694864, 0.00983123201876879, 0.00646617915481329, 0.000901471183169633, -0.023080300539732, -0.0132886581122875, 0.0143179688602686, -0.00927038956433535, 0.0158883258700371, 0.0217738691717386, -0.02061259560287, 0.0281080864369869, 0.0109463175758719, -0.0110122989863157, 0.00985102634876966, -0.00376753928139806, -0.00203552679158747, -0.0105636259540915, -0.0366592779755592, -0.0106691960245371, 0.0202167071402073, -0.0153208859264851, 0.00012783901183866, -0.0151757271960378, 0.0130379293113947, -0.0389290377497673, 0.0122923385351896, -0.0123847126960754, 0.0195700898766518, -0.0172079540789127, 0.0114279827103019, 0.00491231679916382, -0.0146742686629295, 0.0169968139380217, 0.00463849399238825, -0.00215264386497438, -0.00198109215125442, -0.00139880611095577, -0.00305823888629675, 0.00191676034592092, -0.00939575489610434, 0.0123187312856317, 0.0263793729245663, -0.00203387741930783, -0.0221829544752836, -0.00610658060759306, -0.0423336811363697, 0.0296916402876377, -0.00527191581204534, 0.000684144848491997, 0.0165613368153572, -0.00981143768876791, -0.00304009392857552, -0.0403806306421757, -0.00664103031158447, 0.0213647838681936, -0.0205730069428682, -0.00542697217315435, -0.0252049025148153, -0.00103838264476508, 0.00167675293050706, 0.135974511504173, 0.0124572925269604, -0.00351351080462337, 0.00530160730704665, -0.00987741909921169, 0.0194381270557642, -0.00203222781419754, -0.00830706115812063, 0.00698743248358369, -0.00286524323746562, 0.00194810144603252, -0.0131171066313982, 0.00149282964412123, 0.00144746748264879, 0.00189696589950472, 0.0109661119058728, 0.0220114029943943, -0.0110650844871998, 0.00136004202067852, 0.0103458873927593, -0.00585585134103894, -0.0110386917367578, 0.0253500621765852, 0.0338352732360363, 0.00531480368226767, -0.00327267847023904, 0.00748229306191206, 0.041885007172823, 0.00710619892925024, 0.000303102162433788, -0.000989721389487386, 0.0219454206526279, 0.00136993930209428, 0.0241360049694777, -0.0161126628518105, 0.00423270836472511, -0.00530160730704665, -0.0073173395358026, 0.0243999306112528, 0.0129323583096266, 0.0252576880156994, 0.0132028823718429, 0.00696104019880295, -0.0181976761668921, 0.00534119596704841, 0.0115269543603063, -0.0172607395797968, -0.00194810144603252, -0.00646947836503386, -0.0235025826841593, 0.0192797724157572, -0.0175642538815737, -0.0309584829956293, -0.0176566280424595, 0.0268412418663502, 0.00814210716634989, -0.0153868673369288, -0.0099697932600975, -0.00548305595293641, -0.00434157764539123, -0.0202299039810896, -0.0157431680709124, 0.000989721389487386, 0.0011695206630975, 0.00222687306813896, -0.0377677641808987, 0.000774869346059859, 0.00963328778743744, -0.0203486699610949, -0.0250729396939278, 0.0163501966744661, -0.0154132600873709, 0.0103392889723182, 0.014133220538497, 0.0246506594121456, 0.0186463501304388, -0.00169572257436812, -0.0059416270814836, -0.0255480073392391, -0.00961349345743656, -0.00175015721470118, -0.0354452207684517, -0.016086271032691, -0.0249145850539207, -4.24497666244861e-05, -0.0111508602276444, 0.00831365957856178, -0.0160994678735733, -0.015677185729146, 0.0343895182013512, -0.0145950904116035, 0.00917141791433096, 0.0181712843477726, -0.0196228753775358, -0.0114411786198616, 0.0166141223162413, 0.0180789101868868, 0.0313807651400566, -0.025033351033926, -0.00602410361170769, 0.00697423610836267, -0.0190290417522192, 0.00478365318849683, 0.00249904626980424, 0.00415682978928089, -0.023383816704154, 0.00895367935299873, 0.00935616530478001, -0.0177490022033453, -0.0325948223471642, 0.0314071550965309, -0.00730414362624288, -0.0155188301578164, -0.00435147481039166, 0.0236213486641645, 0.00874913670122623, 0.028424795717001, 0.00236213486641645, 0.0168780479580164, -0.0145159130915999, -0.0255084186792374, -0.0235025826841593, 0.0280816927552223, -1.90212067536777e-05, 0.00532800005748868, 0.00770003208890557, 0.00620225351303816, -0.0286359377205372, -0.00779900420457125, -0.00827406998723745, -0.0157299712300301, 0.0268940273672342, 0.0188838820904493, -0.0242943596094847, -0.023080300539732, -0.0205730069428682, 0.00311102415435016, 0.0213120002299547, -0.0265641212463379, -0.0205598119646311, -0.0107351774349809, -0.0193853415548801, 0.00227470952086151, -0.0488262511789799, 0.0208897180855274, -0.0372135229408741, 0.0176962167024612, -0.00321824382990599, -0.0145950904116035, 0.0221037771552801, -0.00580966426059604, -0.0125496666878462, -0.00339474412612617, 0.00486612971872091, -0.0104844477027655, -0.00640679616481066, 0.0110914772376418, -0.0073173395358026, 0.0184879936277866, 0.0200187638401985, 0.0444450862705708, -0.00861057545989752, -0.0117314970120788, 0.00289328536018729, 0.0314863361418247, -0.0246110707521439, 0.0029246264602989, 0.00481664389371872, -0.006875263992697, 0.0180657133460045, 0.000608678616117686, 0.0208237376064062, -0.0324364677071571, -0.0155980084091425, -0.00856438837945461, 0.00985102634876966, -0.00925059523433447, -0.00871614553034306, -0.0227503944188356, -0.0212592147290707, -0.0204278491437435, -0.00682907737791538, -0.010431663133204, 0.028424795717001, -0.0454480051994324, -0.019477715715766, 0.0413043685257435, 0.0119624314829707, 0.00714578805491328, -0.0015959256561473, 0.0208501294255257, 0.00810251850634813, 0.00431188615038991, -0.00340794050134718, 0.00137983646709472, -0.0154264569282532, -0.00986422225832939, -0.0228823572397232, 0.00109116779640317, 0.0363161750137806, 0.0233178343623877, -0.00023196593974717, -0.0207181666046381, 0.00155303766950965, -0.00267554656602442, 0.028477581217885, -0.0126882279291749, -0.0180261246860027, 0.00322154304012656, -0.0156903825700283, 0.00614616926759481, -0.0158883258700371, -0.0159543082118034, -0.038902647793293, 0.00498489663004875, -0.0138297062367201, 0.00269699073396623, 7.75797161622904e-05, 0.00118436652701348, -0.0421489328145981, -0.000682082958519459, -0.0105636259540915, -0.0086765568703413, -0.0173267219215631, 0.0198604073375463, -0.000791364698670805, 0.00301205180585384, -0.00669711455702782, -0.0120284128934145, -0.0110518885776401, 0.0111970473080873, 0.0149249974638224, -0.00973225943744183, -0.0100819617509842, -0.0191873982548714, -0.0010829201200977, 0.0386651121079922, 0.00590533716604114, -0.0409876592457294, 0.0345214791595936, 0.0391401797533035, 0.00521913031116128, -0.0135393878445029, -0.0404598079621792, -0.0165877286344767, 0.01071538310498, 0.00549295358359814, -0.00467148469761014, 0.00606039352715015, -0.0241755936294794, -0.0186199564486742, 0.0132820606231689, -0.000505582662299275, 0.0215627290308475, 0.0140408463776112, -0.00964648369699717, 0.00459890533238649, -0.0146478759124875, -0.00112003460526466, -0.000832603080198169, -0.016244625672698, 0.0184747986495495, -0.0218266546726227, 0.0200187638401985, -0.00306978565640748, 0.00588554283604026, -0.0337033085525036, 0.0129455551505089, -0.0416210815310478, 0.0175378620624542, -0.0307473428547382, -0.0216551031917334, -0.0175246652215719, -0.00159922474995255, 0.0275274496525526, -0.0279233381152153, -0.031248802319169, -0.019939586520195, -0.0248881932348013, 0.00740311574190855, 0.0216551031917334, 0.0164161771535873, -0.0317766517400742, -0.0186727419495583, 0.0217606723308563, -0.0099565964192152, -0.00765384500846267, -0.00585255213081837, 0.0349701531231403, 0.00317700556479394, -0.0173795074224472, -0.00740971369668841, -0.00502118607982993, -0.00419971765950322, -0.0186463501304388, -0.0171815622597933, 0.00464509194716811, 0.0093231750652194, -0.0136317620053887, 0.0293485373258591, -0.00171551702078432, 0.0148590160533786, -0.0250861365348101, -0.0026310090906918, -0.00699403090402484, -0.00775281712412834, 0.00616926280781627, -0.0052785137668252, -0.0186199564486742, -0.0159411113709211, 0.0244791079312563, 0.0178941618651152, -0.0224864687770605, -0.0151625303551555, 0.00297906110063195, 0.0138165093958378, -0.000545996241271496, -0.0093231750652194, -0.0335185639560223, 0.0426240004599094, 0.0117248985916376, -0.0138560989871621, 0.0131039107218385, -0.00761425588279963, -0.00358938938006759, -0.0176170393824577, 0.0143971461802721, 0.0244791079312563, -0.0106757944449782, -0.00187552196439356, 0.00335185625590384, 0.0173399168998003, -0.0333338156342506, -0.0245318934321404, 0.00227800849825144, -0.0060372999869287, -0.00481994310393929, 0.00321824382990599, 0.00545336445793509, -0.0345214791595936, 0.0272371303290129, -0.00780560215935111, 0.000743940530810505, 0.0243735369294882, -0.0286887232214212, -0.018963061273098, -0.00586904771625996, 0.00727115292102098, -0.0065420581959188, -0.0307473428547382, 0.0143443616107106, 0.0222885236144066, 0.0124506941065192, -0.0150173716247082, -0.0109133273363113, -0.0104580549523234, -0.0349173694849014, -0.00229285447858274, -0.019688855856657, 0.0190950240939856, 0.0283984038978815, 0.00492551317438483, -0.013235873542726, 0.0256799701601267, 0.00230934983119369, 0.0100621664896607, -0.0126618351787329, -0.0198999959975481, 0.0150437643751502, -0.0220509916543961, 0.00956070795655251, 0.0114807672798634, -0.00096085446421057, 0.0188838820904493, 0.0152285117655993, 0.00802334118634462, -0.00738332094624639, 0.0295332837849855, -0.000534861930646002, -0.00447024125605822, -0.00341783766634762, -0.0135261919349432, 0.0136581547558308, 5.96410209254827e-05, -0.00199263892136514, -0.0199527814984322, -0.0143971461802721, 0.0387442894279957, -0.0018524284241721, -0.00318855233490467, -0.00800354685634375, 0.00990381184965372, 0.0122263571247458, 0.00272173364646733, 0.0156375970691442, -0.00822128541767597, 0.0118568614125252, -0.0347326211631298, -0.00465169036760926, 0.0200583525002003, -0.00904605258256197, 0.0379525125026703, 0.01071538310498, -0.0191478095948696, -0.0164821594953537, 0.000106601233710535, 0.00364217441529036, 0.000683320104144514, 0.0107021862640977, 0.00316380918957293, 0.0314599424600601, -0.00313411746174097, -0.000132890709210187, 0.0139352763071656, -0.00482324184849858, -0.0123121337965131, 0.00332051515579224, -0.000489912054035813, 0.00986422225832939, 0.0116787115111947, -0.0189234726130962, 0.00608678627759218, 0.00285039748996496, -0.0231462828814983, 0.000292380165774375, -0.0198340155184269, 0.00192005943972617, 0.000347227236488834, 0.00424590473994613, 0.00920440815389156, -0.00404796004295349, -0.01071538310498, -0.00660144118592143, 0.00162726687267423, 0.0136053692549467, 0.0181976761668921, 0.236266270279884, 0.00983783043920994, -0.00170561973936856, 0.0140144536271691, 0.000586409878451377, 0.0150173716247082, 0.00398857705295086, 0.0142255946993828, -0.0086435666307807, -0.0208237376064062, -0.00762745225802064, -0.00156375975348055, -0.0086765568703413, -0.00430198851972818, 0.00646617915481329, -0.0226712170988321, -0.0465037077665329, -0.00135261914692819, -0.0437060929834843, 0.00617256201803684, 0.00275637395679951, -0.0139220803976059, 6.76309573464096e-05, -0.0115797398611903, -0.00489252246916294, 0.00827406998723745, 0.0110716829076409, 0.0269468128681183, 0.0112762246280909, -0.00877552945166826, -0.0311168394982815, 0.0035168097820133, -0.00713919010013342, -0.000194439009646885, -0.00673010526224971, -0.0170364025980234, 0.00958710070699453, -0.0274218786507845, -0.00301205180585384, -0.00339474412612617, 0.0197812300175428, 0.0201507266610861, -0.0146874645724893, -0.0129389567300677, 0.0193589497357607, 0.0373982712626457, -0.0152417086064816, -0.00498159741982818, 0.0320405773818493, 0.00496840104460716, -0.0373190939426422, -0.00425250269472599, 0.0131434993818402, 0.0124836852774024, 0.00411064270883799, -0.00146891141775995, 0.0155716156587005, 0.0160070937126875, -0.0105570275336504, 0.0263529792428017, 0.00143674551509321, 0.0101347463205457, -0.0145950904116035, 0.0252576880156994, -0.0408029109239578, 0.0170364025980234, 0.00599441211670637, 0.0404334142804146, 0.0115335527807474, -0.0251653138548136, -0.00309122959151864, -0.00514325173571706, -0.0107285790145397, -0.0124243013560772, -0.0258251279592514, -0.0110518885776401, 0.0423864647746086, 0.021998206153512, 0.0107285790145397, -0.00684887170791626, -0.0159807000309229, 0.000193098749150522, 0.00351021159440279, -0.0121207870543003, 0.00192335841711611, -0.0171287767589092, 0.021998206153512, 0.000494035892188549, -0.0134272193536162, 0.00290318252518773, 0.00954751204699278, -0.0184220131486654, -0.0143443616107106, 0.00960689503699541, -0.000108869346149731, 0.000135055728605948, 0.0091318292543292, -0.0100423721596599, -0.012331928126514, 0.00670701172202826, -0.0130379293113947, 0.0421753264963627, 0.0387970767915249, 0.000305782654322684, -0.000897347345016897, 0.00305164069868624, 8.02086651674472e-05, 0.00599441211670637, 0.0275538414716721, -0.0355771817266941, -0.00803653709590435, -0.0140804350376129, 0.0221433658152819, -0.00178974610753357, 0.00115632440429181, 0.0169572252780199, -0.00519603677093983, 0.00317205698229373, -0.00383352069184184, 0.000566203088965267, 0.00781220057979226, -0.0390346087515354, -0.0221169721335173, 0.00520263519138098, 0.0306153800338507, -0.0112498328089714, 0.0105306347832084, 0.00890749227255583, 0.00109199248254299, -0.038401186466217, 0.0319086164236069, -0.0207181666046381, 0.00997639074921608, -0.0287415068596601, -0.0243999306112528, -0.00138973374851048, 0.0169308334589005, -0.0123385256156325, -0.00504757883027196, 0.0050079901702702, -0.0219586174935102, -0.00929678231477737, -0.000689505832269788, -0.0190026499330997, 0.00684227328747511, -0.01681206561625, 0.0163369998335838, 0.00987082067877054, 0.00450653117150068, -0.00609008548781276, -0.012331928126514, -0.00205202214419842, 0.00637050624936819, -0.00653545977547765, -0.00261946255341172, -0.0137901175767183, -0.0488262511789799, 0.0290054325014353, -0.00430198851972818, 0.025600790977478, -0.023542171344161, -0.0169968139380217, 0.0419641844928265, -0.0294277146458626, -0.0211536437273026, -0.0242151822894812, -0.166062042117119, 0.0264717470854521, 0.0158751308917999, -0.00102271209470928, 0.0173399168998003, 0.00506737316027284, -0.0215099435299635, -0.00632431916892529, -0.0230539087206125, -0.00634741270914674, 0.0246506594121456, 0.00333371129818261, -0.0165613368153572, 0.0132160792127252, 0.0150173716247082, -0.0257063619792461, -0.0419905781745911, 0.0282928328961134, 0.01261564809829, 0.0034772208891809, 0.012490282766521, -0.031196016818285, -0.00268049538135529, -0.0223545059561729, 0.000719197501894087, -0.00276627112179995, 0.00826747249811888, 0.0323572903871536, -0.0155584197491407, -0.0245450884103775, -0.0271315611898899, -0.00671360967680812, 0.0194249302148819, 0.0217474773526192, -0.0121867684647441, -0.000486200617160648, 0.00524552306160331, -0.00169737206306309, -0.00490241963416338, 0.0297972094267607, 0.0288998633623123, 0.0199263896793127, 0.0152285117655993, -0.000101755722425878, -0.0263265874236822, 0.00447683967649937, 0.00651896465569735, -0.00633421633392572, 0.0113883931189775, 0.0121933668851852, -0.00880192127078772, -0.0222357399761677, -0.00116622168570757, 0.0204014554619789, -0.00761425588279963, 0.0323836803436279, -0.0266828872263432, -0.0105306347832084, 0.00925719365477562, -0.00398527784273028, 0.0353924334049225, -0.0238324888050556, 0.0158883258700371, 0.00264420546591282, -0.011949235573411, -0.025033351033926, 0.00345082837156951, 0.00656845048069954, -0.0244923047721386, 0.00899326801300049, -0.0117512913420796, -0.00609338423237205, -0.000236295963986777, -0.0534185580909252, 0.0138165093958378, 0.00762745225802064, -0.0241887886077166, 0.0194513238966465, -0.0155452229082584, -0.00223347102291882, -0.000740641437005252, 0.040855698287487, -0.006321020424366, 0.0229879282414913, -0.0101545406505466, -0.00304504274390638, 0.00269864010624588, 0.0358411073684692, -0.0278705526143312, -0.0132820606231689, 0.0339144505560398, -0.000669299042783678, -0.00541707454249263, -0.0148326233029366, 0.00853139813989401, 0.0274482723325491, 0.0228427685797215, 0.00415353057906032, -0.00602410361170769, -0.0165085513144732, 0.00424590473994613, -0.00190356397069991, -0.0320405773818493, 0.0301403142511845, 0.0343631245195866, 0.0120350113138556, 0.00429209135472775, 0.0122131612151861, 0.0185143873095512, -0.0101281479001045, -0.0138165093958378, 0.00725795654579997, 0.0271315611898899, 0.0227240025997162, 0.00855119246989489, 0.0273163095116615, 0.000395888520870358, 0.00343103404156864, 0.000701877404935658, -0.0142915761098266, 0.0349701531231403, -0.00686866603791714, -0.0150305675342679, -0.0238720793277025, -0.0251785106956959, -0.0309584829956293, -0.13185727596283, -0.0332546383142471, -0.00979164335876703, 0.0265509244054556, -0.00926379207521677, 0.0268940273672342, -0.00191346125211567, 0.0230934973806143, -0.0216551031917334, 0.0288470778614283, 0.0219058319926262, -0.019886801019311, 0.00419311923906207, 6.89712032908574e-05, 0.0367912426590919, 0.0110914772376418, -0.0278441607952118, -0.0221037771552801, -0.0192929673939943, 0.0254160445183516, -4.99499983561691e-05, -0.0197284445166588, 0.00923739932477474, -0.00333371129818261, -0.00312422029674053, -0.0162710193544626, -0.0224204864352942, 0.0300347432494164, 0.00440425984561443, -0.00193655479233712, -0.022156560793519, -0.00250069587491453, 0.0178545732051134, -0.0156244011595845, -0.0153208859264851, -0.000334030948579311, -0.0355243980884552, -0.0305889882147312, 0.0194513238966465, -0.0290054325014353, 0.01681206561625, -0.00143262161873281, 0.0029708135407418, -0.0396416373550892, -0.0212460178881884, -0.0264717470854521, -0.0162842143326998, 0.0165217481553555, -0.0067004133015871, -0.0125496666878462, -0.0218134578317404, 0.00584265496581793, -0.0148326233029366, -0.00727115292102098, 0.00350031442940235, 0.0054038786329329, -0.0148458201438189, 0.00320339808240533, -0.0088810995221138, -0.00620225351303816, -0.000470117636723444, -0.00449663400650024, -0.0138165093958378, 0.00347392191179097, 0.0119162444025278, -0.00370485684834421, -0.00417332490906119, -0.0109067289158702, 0.0191610045731068, -0.0394304990768433, -0.010405270382762, 0.000186706805834547, -0.0273163095116615, 0.0255743991583586, -0.00531150447204709, -0.00154149101581424, -0.00676969392225146, -0.0123451240360737, 0.025798736140132, -0.0201771184802055, -0.0318558290600777, -0.014542305842042, 0.00320669705979526, -0.0220773834735155, 0.0386123284697533, 0.0211932323873043, -0.00104168173857033, -0.00155551207717508, -0.00224996660836041, 0.0148722128942609, 0.0149381943047047, 0.0290318261831999, -0.00725135812535882, 0.00885470677167177, -0.00857098679989576, 0.0152681013569236, -0.00291802850551903, -0.0182372648268938, 0.0172739364206791, 0.0387178994715214, -0.0308001283556223, -0.0261682327836752, -0.0308793056756258, 0.011566543020308, 0.00528511172160506, 0.0126948254182935, -0.0313807651400566, 0.0112300384789705, -0.000394032802432775, -0.00985102634876966, -0.0142915761098266, 0.0176962167024612, -0.0100027834996581, 0.017735805362463, 0.0171287767589092, -0.00825427565723658, -0.0296124629676342, -0.0125496666878462, 0.0274482723325491, -0.0127080222591758, 0.0219058319926262, 0.00704681593924761, 0.0153736714273691, -0.00600430928170681, 0.00830706115812063, 0.0153472786769271, -0.00469127902761102, 0.0129785453900695, -0.00845221988856792, 0.0212460178881884, -0.0154660455882549, -0.0104184662923217, 0.0126750310882926, -0.00767363933846354, 0.0167724769562483, 0.0139352763071656, 0.00507067237049341, -0.0264057647436857, 0.0181976761668921, 0.0258647166192532, 0.00117941794451326, 0.01295215357095, -0.0185275841504335, -0.0409612655639648, -0.0143707534298301, -0.0178809650242329, -0.0108935330063105, -0.00899986643344164, -0.0177621990442276, 0.0142783802002668, 0.0238852743059397, 0.017221150919795, -0.00148705625906587, 0.00962009094655514, -0.0291373953223228, -0.0169836189597845, 0.00464839115738869, -0.0154132600873709, 0.00982463359832764, 0.00176995166111737, -0.00233409274369478, -0.0181184988468885, 0.0395360663533211, 0.0159147195518017, 0.0206257924437523, -0.00283885071985424, 0.00762745225802064, 0.0125364698469639, -0.0152944941073656, 0.0102337189018726, -0.00261781294830143, -0.00017371671856381, 0.000602492887992412, -0.0177490022033453, -0.00538408383727074, 0.0116787115111947, 0.00713259167969227, -0.0130643211305141, -0.00845881830900908, 0.0117842815816402, 0.00133777328301221, 0.016191840171814, 0.00698083452880383, -0.0154660455882549, -0.0248354077339172, 0.0206389892846346, 0.0106560001149774, 0.0207313634455204, -0.000917966535780579, 0.00641009537503123, -0.0314335487782955, 0.0018722228705883, -0.028477581217885, 0.00798375252634287, -0.00984442792832851, 0.00735033024102449, 0.032990712672472, 0.0212856065481901, 0.00212460174225271, 0.0268676355481148, 0.0218794401735067, 0.0123121337965131, 0.00962009094655514, -0.0114741688594222, -0.0114741688594222, -0.0159147195518017, -0.00987741909921169, 0.00671360967680812, -0.0259306989610195, 0.00676969392225146, -0.017221150919795, 0.0305098090320826, 0.0273690931499004, -0.00282565434463322, 0.0192665755748749, 0.0157299712300301, -0.0015761312097311, -0.00670371251180768, -0.000881676736753434, -0.00662783393636346, -0.00881511811167002, 0.0301667060703039, 0.000673835282213986, -0.0226712170988321, 0.00107302283868194, 0.00387640856206417, 0.0291373953223228, -0.0130247324705124, 0.0134272193536162, -0.00890089385211468, 0.00818829424679279, 0.015109745785594, -0.0183164421468973, 0.00774621916934848, -0.0295860692858696, -0.0200055669993162, 0.00534119596704841, -0.0301930978894234, 0.00137323839589953, 0.00855119246989489, 0.00547975720837712, 0.0406709499657154, 0.00700722681358457, -0.0270787756890059, 0.0241755936294794, 0.013235873542726, 0.0372927002608776, 0.00186892377678305, 0.0026392568834126, 0.0164425708353519, -0.00905265100300312, 0.0320405773818493, -0.0213383920490742, -0.012826788239181, -0.0131039107218385, -0.0152944941073656, 0.0065585533156991, -0.000186603705515154, 0.0219850093126297, -0.0238324888050556, 0.0153076900169253, 0.0209425035864115, -0.00395228713750839, 0.0266037099063396, -0.00127426616381854, -0.0193061642348766, -0.024307556450367, 0.0145159130915999, -0.0194645188748837, 0.00178479752503335, -0.0244263224303722, 0.0101677374914289, 0.013565780594945, 0.00132952560670674, -0.0130247324705124, 0.0201375298202038, 0.0141464164480567, 0.00534119596704841, 0.0213515888899565, 0.0232518538832664, -0.00220542913302779, -0.0167064964771271, 0.0234629940241575, -0.0247958190739155, -0.0489846095442772, -0.00447354046627879, 0.00603070203214884, -0.00646617915481329, -0.0142387906089425, -0.0106691960245371],id:"97a28c77d3d036f07469a1264ee55073",source:"state_of_union.txt",text:"And let’s pass the PRO Act when a majority of workers want to form a union—they shouldn’t be stopped.
When we invest in our workers, when we build the economy from the bottom up and the middle out together, we can do something we haven’t done in a long time: build a better America.
For more than two years, COVID-19 has impacted every decision in our lives and the life of the nation.
And I know you’re tired, frustrated, and exhausted.
But I also know this.
Because of the progress we’ve made, because of your resilience and the tools we have, tonight I can say
we are moving forward safely, back to more normal routines.
We’ve reached a new moment in the fight against COVID-19, with severe cases down to a level not seen since last July.
Just a few days ago, the Centers for Disease Control and Prevention—the CDC—issued new mask guidelines.
Under these new guidelines, most Americans in most of the country can now be mask free."})
(:Chunk{embedding:[-0.000944702245760709, -0.00350483693182468, -0.00962911359965801, -0.0218242090195417, 0.0218643024563789, 0.00995654333382845, -0.0141529925167561, -0.0214232746511698, -0.0261810310184956, 0.0117006087675691, 0.0174005627632141, 0.00629133265465498, -0.0247243028134108, 0.0048646735958755, 0.00595722068101168, -0.00397927640005946, 0.0382224358618259, -0.0369127169251442, 0.00836616940796375, -0.0172268245369196, -0.0076311226002872, 0.0161042083054781, 0.00562644936144352, -0.0249648634344339, -0.00769794499501586, 0.0185231808573008, 0.0273571070283651, -0.0281723402440548, 0.0100634591653943, -0.02161037735641, 0.0105980392545462, -0.0138322450220585, -0.0140594411641359, 0.00242064287886024, -0.0110390670597553, -0.0294820610433817, -0.00916803907603025, -0.0219177603721619, 0.00878046825528145, -0.0226929001510143, 0.0243233684450388, -0.000220514048123732, 0.00113096984568983, 0.00241061951965094, -0.0168526191264391, 0.00879383273422718, -0.0168526191264391, -0.0111593473702669, -0.0243100039660931, 0.0122418710961938, 0.0311392564326525, 0.0196725260466337, -0.0367256142199039, -0.0306046772748232, -0.0262745823711157, -0.0119612170383334, -0.0131439734250307, -0.00181088806129992, -0.0171600021421909, -0.0367790721356869, -0.0191914048045874, -0.0176945813000202, -0.032315332442522, 0.00916135683655739, -0.0167189743369818, 0.0119879459962249, -0.0351218730211258, 0.036324679851532, 0.016705609858036, 0.0321549586951733, 0.0493951477110386, 0.02161037735641, 0.0199799090623856, 0.0145138334482908, 0.0193918719887733, -0.000669059692882001, -0.0176812168210745, 0.0142866373062134, 0.00566320167854428, -0.00205813115462661, -0.00652521103620529, 0.00728364568203688, -0.0236417800188065, 0.00926827266812325, 0.0297226216644049, 0.00938187073916197, 0.0124757494777441, 0.0321015007793903, -0.0182024333626032, -0.0175876654684544, 0.00955560896545649, 0.02671561203897, -0.00714331865310669, 0.0346942096948624, -0.00409955671057105, 0.027063088491559, 0.0182157978415489, 0.0069829449057579, 0.00217172922566533, -0.0161843951791525, -0.0130170108750463, -0.00912126339972019, -0.0190844889730215, -0.0114199547097087, -0.0261543020606041, -0.00963579583913088, -0.00182425265666097, -0.0102438796311617, 0.00497493054717779, -0.00543600553646684, -0.0154359834268689, 0.0121015440672636, -0.003257593838498, -0.0336517803370953, 0.0238021537661552, 0.00211158907040954, -0.0213831812143326, 0.00765785155817866, 0.00415969686582685, 0.00647175312042236, 0.0205946750938892, 0.0112929921597242, 0.0436484180390835, 0.0159972924739122, 0.00448044436052442, -0.0189642086625099, -0.0364583246409893, -0.00318910088390112, 0.0199398156255484, -0.0209956113249063, 0.0131239267066121, 0.0206614974886179, 0.000543767586350441, -0.00884060841053724, -0.00995654333382845, 0.037420567125082, -0.0127430390566587, -0.00214165914803743, -0.016759067773819, -0.000461492483736947, 0.0339992567896843, 0.0231740213930607, -0.00916803907603025, 0.0124623849987984, 0.0163848623633385, -0.00186434609349817, 0.0226127132773399, -0.0086134122684598, -0.0015177046880126, 0.00757766468450427, 0.00906780548393726, -0.0144470110535622, 0.0385431833565235, 0.00153106916695833, 0.020808506757021, 0.0134313106536865, -0.00563647272065282, 0.019311685115099, -0.00537586538121104, 0.000856997794471681, 0.00665551517158747, 0.00511859869584441, 0.0112261697649956, 0.00688939355313778, -0.0153023386374116, 0.0176143944263458, 0.0112929921597242, 0.0140193477272987, -0.0136986002326012, 0.0249514989554882, -0.00353824812918901, 0.029214771464467, -0.0131172444671392, 0.0246441159397364, -0.0119211236014962, 0.0343200042843819, -0.0234012175351381, 0.00568324839696288, -0.0230002831667662, 0.0058870567008853, 0.000877879792824388, 0.009729347191751, 0.0242431815713644, 0.0332241170108318, -0.0152889741584659, -0.000965584244113415, 0.0480586998164654, 0.00320246536284685, -0.0013982595410198, -0.00656530447304249, -0.000629383837804198, 0.0191245824098587, 0.0160373859107494, -0.000390493631130084, -0.637218773365021, -0.0184697229415178, 0.0189909376204014, -0.00573002407327294, 0.00413296790793538, -0.00574672967195511, -0.01003004796803, 0.00675574876368046, -0.0339725278317928, 0.058269165456295, -0.00561976712197065, -0.00338956830091774, -0.0186300966888666, -0.017854955047369, -0.0109789269044995, -0.0185900032520294, 0.00961574912071228, -0.0196992550045252, -0.00404943991452456, 0.00620446354150772, -0.00933509506285191, 0.0346407517790794, -0.0240560788661242, 0.00458067841827869, -0.00874037481844425, 0.00424990709871054, 0.0196457970887423, -0.0113999079912901, -0.00940859969705343, -1.83500687853666e-05, -0.0284396298229694, 0.0133711704984307, 0.00203474331647158, -0.0105178523808718, 0.0510256141424179, -0.00793182384222746, -0.0102839730679989, 0.00233210320584476, 0.0211158916354179, 0.0279585085809231, -0.0197794418781996, -0.00813897326588631, 0.027611032128334, -0.000543349946383387, -0.0143267307430506, 0.000272510253125802, -0.0140594411641359, -0.0200200024992228, 0.0157300028949976, -0.00366855203174055, 0.00105328869540244, 0.00396591192111373, 0.00560640264302492, -0.0164784137159586, -0.00121032143943012, 0.00944869313389063, 0.00741729093715549, -0.00352488365024328, 0.0182692557573318, -0.0223721526563168, 0.000314900738885626, -0.013605048879981, 0.00697626266628504, 0.00555628584697843, -0.0279852375388145, 0.0138857029378414, -0.00949546881020069, 0.0189642086625099, 0.00303373881615698, -0.00293350499123335, -0.0105913570150733, 0.030016640201211, -0.000859503634274006, -0.0148613108322024, 0.0238422472029924, 0.0142866373062134, 0.0155428992584348, -0.0335181355476379, -0.0105378990992904, 0.0276377610862255, 0.00828598253428936, -0.0217974800616503, -0.0142732728272676, 0.0155963571742177, 0.00713663641363382, 0.0285198166966438, -0.0277981348335743, 0.0100166834890842, 0.00493149599060416, 0.0267022475600243, 0.00411960342898965, 0.0246173869818449, -0.000701635610312223, -0.0319945849478245, 0.0408686026930809, 0.00773135619238019, 0.00469427648931742, -0.0220514051616192, 0.0169862639158964, 0.0043167294934392, -0.0205679461359978, -0.0284396298229694, 0.00975607614964247, 0.000627713277935982, 0.022759722545743, 0.00523553835228086, -0.0109455157071352, 0.013030375353992, 0.0334914065897465, -0.0227864515036345, -0.00675240764394403, -0.00930836610496044, -0.0234947688877583, 0.0048646735958755, 0.0251252371817827, -0.0275843031704426, -0.00525558507069945, 0.0106915906071663, -0.0124957961961627, 0.00533577194437385, 0.0396925285458565, 0.0105980392545462, -0.00704976730048656, -0.02006009593606, 0.00517873885110021, 0.00331773422658443, 0.0113798612728715, 0.000645671796519309, -0.0054326644167304, -0.0219712182879448, 0.0233611240983009, -0.0232274793088436, 0.0344269201159477, 0.0127430390566587, 0.00595722068101168, 0.00821247790008783, 0.0085933655500412, -0.0132508901879191, 0.00685598235577345, 0.00205311947502196, -0.0154627123847604, 0.0104510299861431, -0.0108185531571507, 0.00234546768479049, -0.0267022475600243, -0.026007292792201, 0.000585114001296461, 0.000121428900456522, 0.00100567773915827, -0.012428973801434, -0.00331606366671622, 0.00124790903646499, 0.0280921533703804, 0.00712995417416096, 0.0259404703974724, 0.022211778908968, -0.00860004778951406, -0.010130281560123, -0.00858668331056833, 0.00730369286611676, 0.0105846747756004, 0.0325558930635452, 0.014406917616725, 0.00335615710355341, 0.00944201089441776, 0.000679918332025409, 0.000907949870452285, 0.0339457988739014, 0.0107650952413678, -0.0264750514179468, -0.00142164737917483, -0.028412900865078, -0.00747074885293841, 0.0266621541231871, 0.0319945849478245, -0.0115001415833831, -0.0200467314571142, 0.00882724393159151, 0.000323253538226709, 0.0202605631202459, 0.00562310824170709, -0.0390243045985699, -0.0238556116819382, 0.0136986002326012, 0.0198462642729282, 0.00808551535010338, 0.00979616958647966, -0.0147009370848536, 0.00706981401890516, 0.0199932735413313, 0.0150751424953341, 0.0145672913640738, -0.0101703749969602, 0.0327429957687855, 0.00546607561409473, -0.0161309372633696, -0.00371532770805061, -0.00840626284480095, 0.0154359834268689, 0.0173337403684855, 0.0189909376204014, 0.00614766450598836, 0.00797191727906466, -0.0119077591225505, 0.0105913570150733, -0.0536717846989632, -0.00392581848427653, -0.0368058010935783, 0.0129969641566277, 0.0206347685307264, 0.000219469948206097, -0.0273972004652023, -0.0193250495940447, -0.00680586555972695, -0.0102104684337974, 0.0253257043659687, -0.00966252479702234, -0.00220179930329323, -0.0162913110107183, 0.0331973880529404, -0.0112261697649956, 0.00408285111188889, 0.0038255846593529, -0.0221315920352936, -0.0452254265546799, 0.0193651430308819, -0.0131439734250307, 0.0246441159397364, 0.00799864623695612, -0.00683259451761842, -0.0295622479170561, 0.00858000107109547, 0.0186568256467581, 0.0186033677309752, -0.0061209355480969, 0.0178950484842062, 0.0136986002326012, -0.0300433691591024, 0.0347476676106453, 0.00364182284101844, 0.00393584184348583, -0.0124222915619612, -0.00711658969521523, 0.00129719055257738, 0.00948878657072783, 0.000481539202155545, 0.059231411665678, 0.000896255951374769, 0.00077806378249079, -0.00230370368808508, -0.0134179461747408, -0.0114934593439102, -0.000184910226380453, -0.00466420641168952, 0.00781822577118874, -0.0346674807369709, -0.0178415905684233, 0.00903439428657293, 0.0457600057125092, 0.0460272952914238, 0.00303039769642055, 0.00346140237525105, 0.00639156624674797, -0.0117674311622977, -0.000622283958364278, -0.00430002389475703, -0.0232542082667351, -0.0235883202403784, 0.00637151952832937, -0.00362511724233627, -0.0287336483597755, 0.00366186979226768, 0.0322886034846306, -0.010377524420619, 0.00886065512895584, -0.00242064287886024, -0.0342932753264904, -0.00380219682119787, -0.0169461704790592, 0.0133310770615935, 0.00341629725880921, -0.0372334644198418, -0.00544937001541257, 0.0104109356179833, -0.0163314044475555, -0.0113999079912901, -0.00229368032887578, -0.0134246284142137, -0.0252989754080772, 0.019311685115099, -0.0119879459962249, 0.0317540243268013, -0.0250316858291626, 0.00138322450220585, 0.00868023466318846, -0.00799864623695612, 0.0246708448976278, -0.0182959847152233, 0.00427329493686557, -0.0129835996776819, -0.0225859843194485, -0.0187771059572697, 0.0219578538089991, -0.0207015909254551, -0.00844635628163815, 0.0116939265280962, 0.0070029916241765, -0.0240026209503412, -0.00966252479702234, -0.0256865452975035, 0.0256464518606663, -0.0140594411641359, -0.00260941637679935, -0.00424990709871054, -0.00725691672414541, 0.00741729093715549, -0.0217573866248131, 0.00177246518433094, 0.0135916844010353, -0.0290811248123646, 0.012328740209341, -0.0263948626816273, -0.00270797940902412, -0.0281456112861633, 0.110123381018639, -0.0149014042690396, 0.00594385620206594, 0.0162512175738811, 0.0174807496368885, 0.0216771997511387, -0.00449046771973372, 2.07515004149172e-05, 0.0175342075526714, -0.00269962660968304, -0.0102371973916888, 3.30979892169125e-05, -0.00434345845133066, -0.00760439364239573, 0.0109588801860809, 0.0122418710961938, 0.00422651926055551, 0.00735715078189969, -0.0184830874204636, 0.00400266423821449, 0.0170129928737879, -0.0097894873470068, 0.0280386954545975, 0.0318609401583672, 0.0237486958503723, -0.00633476721122861, 0.014005983248353, 0.0441829971969128, -0.00492147263139486, 0.00525224395096302, -0.0081590199843049, 0.0161843951791525, 0.00560306152328849, 0.0249514989554882, -0.00894084200263023, 0.00752420676872134, -0.0027464022859931, -0.00156531564425677, 0.018162339925766, 0.00793850608170033, 0.0168258901685476, 0.0163714978843927, 0.00225692777894437, -0.00432007061317563, 0.00972266495227814, 0.0222251433879137, -0.0100367302075028, -0.00395588856190443, -0.0144871044903994, -0.0169461704790592, 0.0158235542476177, -0.00827261805534363, -0.0201402828097343, -0.00688939355313778, 0.00560974376276135, 0.0360039286315441, -0.00587035110220313, -0.0101035526022315, -0.00160039740148932, -0.0197660773992538, -0.0264884158968925, -0.0260340217500925, -0.0116070574149489, -0.00475775776430964, -0.00657532783225179, -0.00719677656888962, 0.00717004761099815, 0.0076110758818686, -0.0135649554431438, -0.027664490044117, 0.00358836492523551, -0.025512807071209, 0.020808506757021, -0.00122034479863942, 0.0191245824098587, 0.0162244886159897, -0.00942196417599916, 0.00641161296516657, -0.0141262635588646, -0.0186167322099209, -0.00378883234225214, -0.0172268245369196, -0.020006638020277, -0.0230804700404406, 0.0167189743369818, -0.00771130947396159, -0.010277290828526, -0.0103240665048361, -0.0248846765607595, 0.0245772935450077, -0.0129969641566277, 0.0129501884803176, 0.00712327193468809, -0.0086334589868784, -0.0186300966888666, 0.00174907734617591, -0.009081169962883, 0.00614432338625193, -0.0253524333238602, -0.000991477980278432, 0.0120079927146435, -0.0119211236014962, -0.00581355206668377, -0.00219678762368858, -0.00639156624674797, -0.0283059850335121, -0.00279484852217138, 0.00222351658158004, -0.00813229102641344, -0.0374472960829735, 0.0127363568171859, -0.00924154371023178, 0.00607415987178683, -0.0116137396544218, -0.00223019882105291, 0.0100567769259214, 0.0324222482740879, 0.00837285164743662, 0.00629133265465498, 0.00808551535010338, -0.015382525511086, -0.00147092889528722, 0.0151553293690085, 0.0109121045097709, -0.00128549663349986, 0.0225726198405027, 0.0255796294659376, -0.0103975711390376, -0.0234814044088125, -0.0128098614513874, 0.0154226189479232, 0.0223053302615881, 0.00116688688285649, -0.0277179479598999, -0.0239090695977211, -0.00317406584508717, 0.0137787871062756, 0.0134847685694695, 0.00151185772847384, -0.0150617780163884, 0.0015577981248498, -0.0186568256467581, 0.00591712724417448, -0.0354960784316063, 0.0296958927065134, -0.0317807532846928, 0.00565317831933498, -0.00218008202500641, -0.00286000035703182, 0.0197928063571453, -0.00729032792150974, -0.0265017803758383, -0.00671899644657969, 0.00614432338625193, -0.00505511742085218, -0.0158770121634007, 0.00455394946038723, -0.00617773458361626, 0.0229735542088747, 0.0122752822935581, 0.0136986002326012, -0.0312194433063269, -0.00957565568387508, 0.00903439428657293, 0.0238422472029924, -0.0054727578535676, 0.00358502380549908, 0.0151286004111171, -0.0102037861943245, 0.0206347685307264, -0.0220781341195107, 0.00273804948665202, -0.0294018741697073, 0.00765785155817866, 0.00564315496012568, 0.00494820158928633, 0.00119695696048439, -0.00830602925270796, -0.025459349155426, -0.0149414977058768, -0.0187637414783239, 0.00615100562572479, 0.0106982728466392, 0.0348278544843197, -0.0146742081269622, -0.00308218505233526, 0.00451051443815231, 0.0134112639352679, 0.0257132742553949, -0.00440359860658646, 0.0152889741584659, -0.00565317831933498, -0.00306882057338953, 0.00743065541610122, -0.00577011751011014, -0.0206748619675636, 0.000582190521527082, -0.0208886954933405, 0.0089475242421031, 0.0478181391954422, 0.000625207438133657, 0.00298195146024227, -0.000842380395624787, 0.0115669639781117, 0.00615434674546123, 0.0206882264465094, -0.0255929939448833, -0.0238021537661552, 0.0142331793904305, -0.0361910350620747, 0.0228532738983631, -0.0207416843622923, -0.0237086024135351, -0.0244703777134418, -0.0171199087053537, -0.0155161703005433, -0.00818574894219637, 0.00632808497175574, -0.00827261805534363, -0.0348011255264282, 0.00973602943122387, 0.00517873885110021, 0.00331105198711157, -0.00655528111383319, 0.0255796294659376, 0.0179618708789349, 0.0114600481465459, -0.025111872702837, -0.0173337403684855, -0.00877378601580858, 0.0107316840440035, 0.0149949556216598, 0.0116137396544218, -0.00743065541610122, -0.00556965032592416, 0.00386567809619009, 0.0406547710299492, 0.00527229066938162, -0.0518007539212704, 0.0313798189163208, 0.0193651430308819, 0.0133444415405393, -0.0150484135374427, -0.0248579476028681, -0.0199799090623856, 0.0276912190020084, 0.00564983719959855, -0.0127764502540231, 0.0158903766423464, -0.0324489772319794, -0.0164650492370129, 0.0150617780163884, -0.00243567791767418, 0.0159438345581293, 0.0105111701413989, -0.0118476189672947, 0.00374539778567851, -0.0116738798096776, 0.0178282260894775, -0.0222786013036966, -0.0199264511466026, 0.0314332768321037, -0.00836616940796375, -0.00164550251793116, 0.0135048152878881, 0.0108920577913523, -0.0127430390566587, 0.0144470110535622, -0.0268492568284273, 0.0238823406398296, -0.0331439301371574, -0.0145806558430195, -0.0100166834890842, -0.00324255879968405, 0.00791845936328173, 0.00584028102457523, -0.0298829954117537, -0.0268492568284273, -0.0305244904011488, -0.0024173017591238, 0.0246441159397364, 0.0182826202362776, -0.0346407517790794, -0.00953556224703789, 0.0142866373062134, -0.0060507720336318, 0.00418976694345474, 0.0054426877759397, 0.00957565568387508, -0.00650850543752313, 0.0014291648985818, 0.00247577135451138, -0.00527897290885448, -0.0149281332269311, 0.00381890241988003, -0.012081497348845, -0.00391913624480367, 0.0182024333626032, -0.00884060841053724, 0.00995654333382845, 0.00669226748868823, 0.00333109870553017, -0.0264082290232182, 0.00309220841154456, -0.0157567318528891, -0.0262211244553328, -0.00753088900819421, 0.00665551517158747, -0.022412246093154, -0.0390777625143528, 0.0113598145544529, 0.00424322485923767, -0.000738805625587702, -0.0188973862677813, 0.00330102862790227, 0.0120414039120078, -0.00330102862790227, -0.0263146758079529, -0.0304977614432573, 0.0547409430146217, -0.000221558148041368, 0.00530570186674595, 0.015810189768672, -0.0137921515852213, 0.00813897326588631, -0.0153157031163573, -8.59294814290479e-05, 0.00390577153302729, -0.0264483224600554, -0.0159438345581293, -0.0195522457361221, 0.0119545347988605, 0.0014876346103847, -0.0113330855965614, -0.000248495955020189, -0.00818574894219637, -0.0164917781949043, 0.00614098226651549, 0.0157166384160519, -0.00168810191098601, 0.00808551535010338, 0.0155963571742177, 0.0153023386374116, -0.00135482498444617, -0.0252187885344028, -0.0103574777022004, -0.00554292136803269, -0.0228666383773088, -0.00714331865310669, -0.00696289818733931, 0.00415635574609041, 0.0226661711931229, 0.0255662649869919, -0.000418057898059487, -0.0302572008222342, 0.00630469713360071, -0.0194987878203392, 0.000684930011630058, -0.000995654379948974, 0.0308185089379549, 0.0171867311000824, 0.0122619178146124, -0.00233711488544941, 0.021409910172224, 0.00052246794803068, -0.000102165242424235, -0.0101035526022315, -0.00688271131366491, 0.0111125716939569, -0.0170530863106251, 0.00994986109435558, 0.0137386936694384, -0.0158369187265635, 0.00173070118762553, 0.0267423409968615, 0.0137253291904926, 0.00481455679982901, 0.0309254247695208, -0.0201670117676258, 0.00139658898115158, -0.000811892619822174, 0.0103307487443089, 0.00468759424984455, 0.0118142077699304, 0.000528314907569438, -0.032315332442522, 0.00514198653399944, 0.0309254247695208, 0.00395922968164086, -0.00743733765557408, -0.0075709824450314, 0.00351820141077042, -0.000979784061200917, 0.0173871982842684, 0.0126695344224572, -0.0236417800188065, 0.016906077042222, -0.00367857539094985, 0.0175475720316172, 0.0315401926636696, 0.00324088823981583, 0.00517205661162734, 0.00402271095663309, -0.0100567769259214, 0.00660205725580454, -0.00569995399564505, -0.00233711488544941, 0.00252922927029431, 0.00590042117983103, -0.00297359866090119, 0.0103975711390376, -0.00692948698997498, -0.00683927675709128, 0.0012387209571898, 0.00462411297485232, -0.00174573622643948, 0.00129719055257738, -0.00650850543752313, 0.0197126194834709, 0.0135515909641981, -0.0174272917211056, 0.00195288576651365, 0.010658179409802, -0.0270898174494505, 0.0100500946864486, -0.0270229950547218, 0.020861966535449, 0.00419310806319118, 0.000662377453409135, -0.00419979030266404, -0.00230203312821686, -0.000563814304769039, 0.0185365453362465, 0.0089274775236845, -0.00647843535989523, -0.00420981366187334, 0.248900219798088, -0.00769794499501586, -0.00172401894815266, 0.0319143980741501, 0.00581355206668377, 0.0209020599722862, 0.0320480428636074, 0.00646172976121306, 0.00679250108078122, -0.011206123046577, -0.00593383284285665, -0.0203273855149746, 0.00489140255376697, 0.0013280960265547, -0.0093551417812705, -0.00664215069264174, -0.0322084166109562, -0.00797859951853752, -0.0257400032132864, -0.00230036256834865, 0.0108853755518794, 0.00548612233251333, -0.000258101674262434, -0.0076511693187058, 0.0130838332697749, 0.0124089270830154, -0.00290176435373724, 0.0377947725355625, 0.0148479463532567, -0.0141262635588646, -0.0296691637486219, -0.00631472049281001, -0.00656196335330606, 0.0175342075526714, -0.01905776001513, -0.0232408437877893, 0.0173738338053226, -0.0213831812143326, 0.0048646735958755, 0.0187771059572697, 0.0141396280378103, 0.0372601933777332, -0.0109187867492437, -0.0166521519422531, -0.0131439734250307, 0.0261676665395498, 0.00376878562383354, 0.00378215010277927, 0.00960238464176655, -0.00172736006788909, -0.0381155200302601, -0.00913462787866592, 0.0132776191458106, 0.0152756096795201, -0.00710322521626949, -0.0111593473702669, 0.0105178523808718, 0.00319411256350577, -0.00499831838533282, 0.00889406632632017, -0.0174406562000513, -0.00636817840859294, -0.01262944098562, 0.0377947725355625, -0.0230671055614948, 0.040414210408926, -0.0128098614513874, 0.0261008441448212, 0.00117440440226346, -0.00150099908933043, -0.0057968464680016, 0.002138318028301, -0.0213965456932783, -0.0138322450220585, -0.0155963571742177, -0.0134981330484152, 0.00834612268954515, 0.0212495364248753, 0.00888070184737444, -0.00683259451761842, -0.0151286004111171, 0.000805628020316362, 0.0142465438693762, -0.0156765449792147, -0.00998995453119278, -0.0347476676106453, 0.0164383202791214, -0.00710990745574236, -0.0369661748409271, 0.0180821530520916, 0.00224022218026221, -0.0203808434307575, -0.010277290828526, -0.000431422377005219, 0.01385897397995, 0.0194987878203392, 0.00168141967151314, 0.00380219682119787, 0.0168125256896019, -0.00510189309716225, -0.0118476189672947, 0.0308986958116293, 0.0214900970458984, -0.00497827166691422, 0.0190043020993471, -0.0094353286549449, 0.00463413633406162, 0.0111660296097398, 0.00681588891893625, -0.0380086041986942, 0.0128165436908603, -0.0186835546046495, 0.0104844411835074, -0.00656530447304249, -0.00662544509395957, 0.0066488329321146, -0.0227062646299601, 0.00090043235104531, 0.0150751424953341, -0.00413965014740825, -0.00283661251887679, -0.034560564905405, -0.0197259839624166, 0.0247376672923565, 0.0182558912783861, -0.0134045816957951, -0.0204476658254862, 0.00614766450598836, -0.00578014086931944, -0.0340794436633587, 0.0286801904439926, -0.0167457032948732, 0.000975607603322715, -0.0361375771462917, -0.00779817858710885, -0.0197393484413624, 0.0165185071527958, -0.0126762166619301, -0.0112128052860498, 0.0048346035182476, -0.0142331793904305, -0.00256932270713151, 0.020608039572835, 0.00897425319999456, -0.000185954326298088, -0.031620379537344, 0.0167457032948732, 0.0175743009895086, 0.00462411297485232, 0.0167724322527647, -0.0195121522992849, -0.00914131011813879, -0.0118943946436048, -0.014553926885128, 0.00572668295353651, -0.0272368267178535, -0.0200333669781685, 0.0187503769993782, 0.0097493939101696, 0.00258101662620902, -0.0142599083483219, -0.00217507034540176, 0.020407572388649, -0.0103173842653632, -0.024363461881876, -0.0257266387343407, -0.169247880578041, 0.0227463580667973, 0.0106782261282206, -0.0133644882589579, 0.00497827166691422, -0.00378215010277927, 0.0132508901879191, 0.00379217346198857, -0.00909453444182873, 0.00575341191142797, 0.0232141148298979, 0.0172802824527025, -0.0364850535988808, 0.00242231343872845, 0.00988303869962692, -0.0125693008303642, -0.0276912190020084, 0.0279585085809231, 0.0141930859535933, 0.00735715078189969, 0.0426327176392078, -0.0273704715073109, -0.0131640201434493, -0.0413497239351273, -0.0192181337624788, -0.000965584244113415, -0.000237846121308394, 0.0340259857475758, -0.0200467314571142, -0.0201670117676258, -0.0282257981598377, -0.00301369209773839, 0.0317272953689098, 0.00302705657668412, -0.00209488347172737, -0.00805878639221191, -0.00866687018424273, -0.00032033005845733, -0.0140594411641359, 0.0146207502111793, 0.0320747718214989, 0.0201670117676258, 0.0136651890352368, 0.00614432338625193, -0.0304977614432573, 0.0261142086237669, -0.00477780448272824, -0.00440359860658646, 0.011005655862391, 0.000199214395252056, 0.000345388485584408, -0.0108786933124065, -0.00582023430615664, 0.0112929921597242, 0.0103708421811461, -0.0264750514179468, 0.00302705657668412, 0.0182558912783861, 0.00620780466124415, -0.0177747681736946, -0.00143083545845002, -0.0244035553187132, -0.00534245418384671, -0.0133444415405393, -0.0235883202403784, -0.0126494877040386, -0.0211158916354179, 0.0173604693263769, -0.0426861755549908, 0.00651518767699599, -0.014553926885128, 0.0134045816957951, -0.00868691690266132, -0.0153958899900317, 0.000922149687539786, 0.00650850543752313, 0.00235549104399979, 0.0101904217153788, -0.00100567773915827, 0.00626460369676352, -0.000575090642087162, 0.0152087872847915, -0.023815518245101, -0.00862677674740553, -0.00115018128417432, 0.00518207997083664, -0.00194954464677721, 0.0259805638343096, -0.0086134122684598, -0.00779149634763598, -0.0101837394759059, -0.010277290828526, -0.0153958899900317, -0.0157166384160519, 0.00586366886273026, 0.0253390688449144, 0.0196190681308508, 0.0227196291089058, -0.00608418323099613, -0.00720345880836248, 0.00333276926539838, 0.00274306116625667, -0.0370463617146015, 0.00477780448272824, 0.0167323388159275, -0.00549948681145906, 0.00435014069080353, 0.0267289765179157, 0.0149414977058768, -0.00952219776809216, -0.0216771997511387, 0.0129234595224261, 0.0153157031163573, 0.00286000035703182, 0.00209321291185915, 0.00898093543946743, -0.0209822468459606, 0.00623119249939919, 0.00983626302331686, 0.0081790667027235, 0.0288672931492329, -0.000492397870402783, -0.00603740755468607, -0.0030855261720717, -0.0190310310572386, -0.0307917799800634, -0.135355532169342, -0.0402271077036858, 0.00757766468450427, 0.00840626284480095, -0.0131239267066121, 0.035709910094738, -0.0171332731842995, 0.0118008423596621, -0.0260340217500925, 0.021810844540596, -0.000989807420410216, -0.0336517803370953, -0.010230515152216, 0.0192047692835331, 0.00702972058206797, 0.00210156571120024, -0.0181489754468203, -0.0145138334482908, -0.0136250955983996, 0.0112462164834142, 0.00980285182595253, -0.0178816840052605, 0.0104643944650888, 0.0031974536832422, -0.0066488329321146, -0.0111259361729026, -0.00470764096826315, 0.0118943946436048, 0.00489808479323983, 0.0149949556216598, -0.0195789746940136, 0.0105913570150733, -0.00900766439735889, -0.00916135683655739, -0.00951551552861929, 0.0107116373255849, -0.0274506583809853, -0.0230671055614948, 0.0138456095010042, -0.0476577654480934, -0.00191947456914932, -0.0120146749541163, -0.0140861701220274, -0.0373938381671906, -0.00414633238688111, -0.0183494426310062, -0.00244068959727883, 0.0137520581483841, -0.0102505618706346, -0.0106849083676934, -0.0115870106965303, -0.00212161242961884, -0.0190310310572386, -0.0165452361106873, -0.0250851437449455, -0.0144202820956707, -0.0204209368675947, -0.00512528093531728, -0.019258227199316, -0.00376210338436067, -0.0148880397900939, -0.003952547442168, -0.037420567125082, 0.00390577153302729, -0.00261609861627221, 0.00745070213451982, -0.00508852861821651, -0.00662210397422314, 0.0364583246409893, -0.0277446769177914, -0.00829934701323509, 0.00801201071590185, -0.0177213102579117, 0.0225191619247198, -0.0180153287947178, 0.0219043958932161, 0.00273470836691558, 0.00139658898115158, 0.0342398174107075, -0.00388238369487226, -0.0258068256080151, -0.00179585302248597, 0.0161977596580982, -0.0282792560756207, 0.0474973917007446, 0.0254727136343718, -0.00505177630111575, 0.00824588909745216, 0.00869359914213419, 0.00747074885293841, -0.00681588891893625, 0.0269428081810474, -0.0204476658254862, -0.00884060841053724, -0.0232809372246265, 0.0247510317713022, -0.00237219664268196, -0.021262900903821, -0.0027263555675745, 0.0482992604374886, -0.0289742089807987, -0.0191513113677502, -0.038168977946043, 0.0076110758818686, 0.0119478525593877, -0.00508852861821651, -0.0298829954117537, 0.00345472013577819, 0.0120480861514807, -0.0111727118492126, 0.00206982507370412, 0.0215702839195728, -0.00606747763231397, -0.00503841182217002, -0.012829908169806, -0.00466420641168952, -0.0276912190020084, -0.00723687000572681, 0.0278248637914658, 0.000842380395624787, 0.0252989754080772, 0.000524973787833005, -0.00870696362107992, 0.0130704687908292, 0.0186969190835953, 0.0219578538089991, -0.000223437527893111, 0.0400400049984455, 0.0119411703199148, 0.0286801904439926, -0.00269962660968304, -0.0202471986413002, 0.00445371540263295, -0.0156230861321092, -0.00392915960401297, 0.0337319672107697, 0.0125158429145813, -0.0270764529705048, 0.0196324326097965, 0.0131640201434493, 0.00367189315147698, 0.0266354251652956, -0.0167857967317104, -0.0465084165334702, -0.00438689300790429, -0.0247243028134108, 0.0113464500755072, -0.0154493479058146, -0.0215034615248442, 0.0170798152685165, 0.0200200024992228, 0.00400934647768736, 0.0180821530520916, 0.0016488436376676, -0.0237887892872095, -0.0235615912824869, 0.0108987400308251, -0.0259939283132553, 0.00922149699181318, -0.00838621612638235, -0.00677913660183549, -0.0226661711931229, 0.0264349579811096, 0.0115335527807474, 0.0174406562000513, 0.00590710388496518, 0.0145405624061823, 0.00249915919266641, -0.0144470110535622, 0.0134446751326323, -0.0115936929360032, 0.00120447447989136, 0.0132776191458106, -0.00154526892583817, 0.0178415905684233, 0.00321582984179258, -0.00573336519300938, -0.0237887892872095, -0.00362177612259984, 0.020608039572835, 0.00248245359398425, 0.00989640317857265, -0.00678247772157192, -0.00979616958647966, -0.027263555675745, 0.0519343987107277, 0.0148880397900939, 0.0246842093765736, -0.0113731790333986, 0.00996322557330132, -0.0296691637486219, 0.00330102862790227, -0.0233343951404095, 0.0027564256452024, -0.000783075462095439, 0.0204209368675947, 0.0313798189163208, 0.0267690699547529, -0.000371282192645594, 0.0218509379774332, 0.00597392627969384, 0.027611032128334, 0.010177057236433, -0.00303039769642055, -0.0140995346009731, -0.0164516847580671, -0.0121483197435737, -0.0058569866232574, -0.0133177125826478, -0.015582992695272, -0.0217707511037588, 0.0186434611678123, 0.0211960785090923, 0.019458694383502, 0.0250985082238913, 0.00826593581587076, -0.00578348198905587, -0.00339792110025883, -0.00283327139914036, 0.00108502933289856, -0.0267824344336987, 0.0539390742778778, -0.000871197553351521, -0.0196725260466337, 0.00169812527019531, -0.0273704715073109, 0.0220781341195107, 0.000344970845617354, 0.0125960297882557, -0.00751752452924848, 0.0189241152256727, 0.0153424320742488, -0.0268091633915901, 0.00183093489613384, -0.0362177640199661, -0.0038155613001436, 0.00895420648157597, -0.0253791622817516, 0.00351820141077042, 0.00773803843185306, 0.00491144927218556, 0.0431405678391457, 0.00813897326588631, -0.0196324326097965, -0.00410958006978035, -0.0033344398252666, 0.0346407517790794, -0.00148011709097773, 0.0113731790333986, -0.000169144303072244, -0.0116137396544218, 0.0281188823282719, 0.00576343527063727, -0.00437686964869499, -0.0237219668924809, -0.0148613108322024, 0.0172802824527025, 0.0194854233413935, -0.00803205743432045, -0.0301770139485598, 0.0143000017851591, 0.014981591142714, 0.00667556189000607, 0.0301770139485598, 0.0123020112514496, -0.0345872938632965, -0.0249381344765425, 0.0260741151869297, -0.0150617780163884, 0.00834612268954515, -0.0299899112433195, 0.00747743109241128, 0.0219444893300533, -0.0309788826853037, -0.0194319654256105, 0.0151286004111171, 0.000871197553351521, -0.0104510299861431, -0.00680586555972695, 0.00539257097989321, -0.00498829502612352, 0.00982958078384399, 0.0226929001510143, -0.0269829016178846, -0.0293751452118158, -0.00369862210936844, 0.00171399558894336, -0.0117340199649334, -0.00938187073916197, -0.00800532847642899],id:"69cbf86fbbe939b9ab468ed8d5fef819",source:"state_of_union.txt",text:"And based on the projections, more of the country will reach that point across the next couple of weeks.
Thanks to the progress we have made this past year, COVID-19 need no longer control our lives.
I know some are talking about “living with COVID-19”. Tonight – I say that we will never just accept living with COVID-19.
We will continue to combat the virus as we do other diseases. And because this is a virus that mutates and spreads, we will stay on guard.
Here are four common sense steps as we move forward safely.
First, stay protected with vaccines and treatments. We know how incredibly effective vaccines are. If you’re vaccinated and boosted you have the highest degree of protection.
We will never give up on vaccinating more Americans. Now, I know parents with kids under 5 are eager to see a vaccine authorized for their children.
The scientists are working hard to get that done and we’ll be ready with plenty of vaccines when they do."})
(:Chunk{embedding:[-0.0106013854965568, -0.00701122311875224, -0.0094111692160368, -0.0119216814637184, -0.00160565471742302, 0.0211637485772371, -0.0113168163225055, -0.025248209014535, 0.000729251769371331, 0.0295017696917057, 0.0136452196165919, 0.03067247569561, -0.0267961397767067, 0.00214304076507688, 0.00385031918995082, -0.00656245276331902, 0.0272384062409401, -0.0276286415755749, -0.00760958343744278, -0.0197198782116175, -0.000864208035636693, 0.0116875404492021, 0.00943718478083611, -0.00501126842573285, -0.0174044836312532, 0.00811038538813591, 0.023036876693368, -0.0173654593527317, -0.00043047804501839, -0.00958677474409342, -0.024519769474864, -0.00379503588192165, -0.0187442898750305, -0.00899491831660271, -0.015336237847805, -0.000893475662451237, 0.0221653506159782, 0.0167020596563816, 0.0136972507461905, -0.0293716918677092, 0.0354073271155357, 0.00423079822212458, 0.00807136204093695, 0.000958514865487814, -0.0378528013825417, -0.0155573710799217, -0.0108550386503339, -0.0171183105558157, -0.010048552416265, 0.00769413448870182, 0.0238953940570354, -0.0174565147608519, 0.00309911672957242, -0.00340480078011751, 0.00377877615392208, -0.000345114123774692, 0.0172093659639359, 0.00458851410076022, -0.0277066882699728, -0.00101786316372454, 0.000392674031900242, -0.0164419040083885, -0.0392836630344391, 0.0149720180779696, -0.0186532363295555, 0.0209296066313982, -0.023284025490284, 0.0195767916738987, 0.0108745498582721, 0.035095140337944, 0.0459176599979401, 0.0160126443952322, 0.00060364487580955, -0.00672505097463727, 0.0304903667420149, -0.00289261736907065, -0.00579824252054095, 0.0112387696281075, 0.0163508486002684, 0.012051759287715, 0.0355634205043316, -0.0310627110302448, -0.018041867762804, -0.00781770888715982, 0.0255734045058489, 0.00658846879377961, 0.0154923321679235, 0.0380869433283806, -0.0184711255133152, -0.025248209014535, 0.0274985637515783, 0.0202662069350481, -0.0140874860808253, 0.0270823128521442, -0.00409421604126692, 0.0341585762798786, -0.0127671901136637, 0.0410006977617741, -0.000837379368022084, -0.0501061826944351, 0.00237555592320859, 0.00699171144515276, -0.0162858106195927, -0.00959327816963196, -0.0124419946223497, 0.0062275012023747, -0.0127476789057255, -0.0111086908727884, 0.00935263372957706, 0.0253002401441336, -0.0039186105132103, 0.0059088091365993, 0.00040425913175568, -0.0294497385621071, 0.0304903667420149, 0.0114664072170854, -0.00846810080111027, -0.00798681098967791, -0.00802583433687687, -0.00129834457766265, 0.00837054196745157, 0.00846810080111027, 0.0356935001909733, -0.00472509628161788, 0.00413649156689644, -0.00107639841735363, -0.0455274246633053, -0.0292155984789133, 0.0153492456302047, -0.0147118614986539, 0.0149720180779696, 0.0284351278096437, 0.0219312105327845, -0.0137883052229881, -0.0184971410781145, 0.050262276083231, -0.0209556221961975, 0.0147118614986539, -0.0224385149776936, -0.016558974981308, 0.0259766466915607, 0.0177036635577679, 0.00404543662443757, 0.00909898057579994, -0.00559011707082391, 0.0241035185754299, 0.0173654593527317, -0.0109656052663922, 0.00571694364771247, -0.00167475873604417, 0.0062275012023747, -0.018367063254118, 0.0164288952946663, -0.0250530913472176, 0.0057852347381413, 0.0129623077809811, -0.0177426878362894, 0.00892337504774332, -0.0105233388021588, 0.00934612937271595, 0.00100160331930965, -0.0150110423564911, 0.00900792609900236, -0.00753153674304485, 0.0165069438517094, 0.00391210662201047, 0.0142695950344205, 0.0169492084532976, 0.00608441513031721, 0.0026584763545543, -0.00819493643939495, 0.0251571536064148, -0.0414689779281616, 0.025261215865612, 0.0109330853447318, 0.019849956035614, -0.0149980336427689, -0.0166630372405052, 0.00410071993246675, 0.00491696177050471, -0.00621449341997504, 0.0149329947307706, 0.0206824578344822, 0.0302302092313766, -0.0236742608249187, 0.00448770308867097, 0.0291635673493147, -0.00571043975651264, -0.000765429809689522, -0.0376186594367027, -0.00166012498084456, 0.0118306260555983, 0.0174435079097748, -0.0185101497918367, -0.63145238161087, -0.0164288952946663, 0.0175345614552498, -0.0093591371551156, 0.0127801978960633, 0.00117314408998936, 0.0047413557767868, 0.0207735132426023, -0.0249490272253752, 0.0310106799006462, -0.00139183842111379, -0.00238531176000834, -0.0247409027069807, -0.0294757541269064, -0.00615595793351531, -0.0272123906761408, 0.0229067988693714, -0.00816241651773453, 0.00801282655447721, 0.00101786316372454, -0.0249750446528196, 0.0331699810922146, -0.015128112398088, 0.00116013630758971, 0.00806485768407583, -0.00632180785760283, 0.0312188044190407, -0.000857704144436866, -0.0240384787321091, 0.0159606132656336, 0.00321618723683059, 0.0423274971544743, 0.00502427620813251, -0.00440640421584249, 0.0448770299553871, -0.0163898728787899, -0.00708276638761163, 0.00847460422664881, 0.02476691827178, 0.0224515236914158, -0.0278367679566145, -0.0123054124414921, 0.0233490634709597, -0.0113493362441659, -0.015661433339119, -0.0113623440265656, -0.00458851410076022, 0.0055023143067956, -0.00939165707677603, 0.0247929338365793, -0.0070762624964118, -0.0112517774105072, -0.0195898003876209, -0.00543402321636677, 0.0213328506797552, 0.0239474251866341, 0.014347642660141, -0.0250791069120169, 0.00805184990167618, -0.0121233025565743, 0.00948271155357361, 0.000545109622180462, -0.00199832860380411, -0.0217230841517448, -0.0104517955332994, 0.0225035548210144, 0.00732341129332781, 0.0233620721846819, 0.0165459662675858, -0.0130338510498405, 0.0124159790575504, 0.0150240501388907, -0.0334301367402077, -0.0117720905691385, 0.0234271120280027, 0.0186662431806326, -0.00942417699843645, -0.0274205170571804, -0.038034912198782, 0.0180938988924026, 0.0116550205275416, -0.014347642660141, -0.0148679558187723, 0.0064746499992907, 0.0136061953380704, 0.0237523075193167, -0.0166890528053045, 0.0112517774105072, 0.0241165272891521, 0.0110696675255895, -0.00431860145181417, 0.0284871589392424, -0.0154272923246026, -0.022711681202054, -0.00367146148346364, -0.0085721630603075, -0.00828599091619253, 0.00463729305192828, 0.040506400167942, 0.0108355265110731, -0.000696732196956873, -0.0302302092313766, 0.0184581186622381, 0.0200190581381321, 0.0082274554297328, -0.000710146501660347, -0.0298659894615412, 0.0016276054084301, 0.0214889440685511, -0.0212287865579128, 0.00336577743291855, -0.0226596482098103, -0.0300741158425808, -0.0051218350417912, 0.0497419610619545, -0.0246368404477835, -0.00386983109638095, 0.00616571400314569, -0.0246498472988605, -0.0293456763029099, -0.00441941199824214, 0.0103672444820404, 0.0128972688689828, 0.00862419512122869, 0.0185101497918367, -0.00776567775756121, 0.0112062497064471, -0.0197198782116175, -0.00739495456218719, -0.0155053399503231, -0.00152923364657909, -0.0210857018828392, 0.0261977799236774, 0.012754182331264, 0.0121233025565743, 0.020591402426362, 0.0186532363295555, -0.0256904754787683, -0.000401413679355755, -0.0165719818323851, -0.00793477986007929, 0.0158045198768377, -0.015830535441637, 0.0191995650529861, -0.0107509754598141, -0.0295798182487488, -0.00679008988663554, 0.0200580824166536, -0.012422482483089, -0.00783071666955948, 0.0285652056336403, -0.00885833613574505, 0.0234791431576014, 0.0214889440685511, 0.00965181365609169, 0.0018601204501465, -0.00177069159690291, -0.0305944290012121, -0.0125330490991473, -0.0178987812250853, 0.036005686968565, 0.0228937901556492, 0.00298204622231424, -0.0175085458904505, 0.0159996375441551, 0.00231214263476431, 0.0178987812250853, 0.029527785256505, -0.00512508722022176, -0.0289034098386765, -0.00276579102501273, -0.00812339317053556, 0.0107444720342755, 0.0281489547342062, 0.0200710892677307, 0.0232710167765617, -0.0131379133090377, 0.0104062678292394, -0.0167410839349031, 0.0118956649675965, 0.0031934236176312, -0.00205523800104856, -0.0235051587224007, 0.0217751171439886, 0.0196418315172195, -0.00132192124146968, -0.0048389146104455, 0.0250010602176189, -0.00665350770577788, 0.0140354540199041, -0.00783071666955948, -0.00924206711351871, 0.0150110423564911, 0.0303082559257746, -0.00537223601713777, -0.023036876693368, 0.00596084073185921, 0.0110306441783905, 0.0133980698883533, 0.0200450737029314, 0.0173524525016546, 0.0201621446758509, 0.00557710928842425, -0.0339504517614841, 0.00543727492913604, -0.0294757541269064, 0.00176581367850304, -0.0234010964632034, 0.00799331441521645, 0.0176256168633699, -0.00563564477488399, -0.023284025490284, -0.0463599264621735, 0.00173004204407334, -0.00747300125658512, 0.0247799269855022, -0.0202792156487703, 0.00604539131745696, -0.0119411926716566, 0.0176516324281693, -0.0192125719040632, 0.00184711266774684, 0.0254173092544079, -0.0257945377379656, -0.0305423978716135, 0.0136842429637909, 0.0105948820710182, 0.0212157797068357, 0.0135931875556707, -0.00228937901556492, -0.0338203720748425, -0.00828599091619253, 0.0129688121378422, 0.0238173454999924, 0.00295277871191502, 0.00831851083785295, 0.0125005301088095, -0.0178337413817644, 0.0279928613454103, 0.016064677387476, -0.00630554836243391, -0.00314301811158657, 0.00956726260483265, 0.0195898003876209, -0.0104713076725602, -0.000167272635735571, 0.0521093867719173, 0.00463729305192828, 0.0108745498582721, 0.00178857729770243, 0.000307513342704624, 0.0219051949679852, 0.00289261736907065, -0.00377552420832217, 0.00960628595203161, -0.022464532405138, -0.00236417399719357, 0.0115249417722225, 0.0369422510266304, 0.0414949953556061, 0.00956726260483265, 0.0201361291110516, -0.00291863293386996, 0.00346658821217716, 0.0161297153681517, 0.00202109245583415, -0.00529418885707855, -0.0199540201574564, 0.00854614749550819, -0.00258042942732573, -0.0276026260107756, 0.0138013130053878, 0.0171183105558157, -0.0116290049627423, 0.0153492456302047, 0.0172093659639359, -0.0296058338135481, 0.0139053761959076, 0.00833151862025261, 0.000775592168793082, 0.00878679286688566, -0.0352772511541843, 0.00114468950778246, -0.0189524162560701, -0.014880963601172, -0.016064677387476, 0.00791526772081852, -0.014555768109858, -0.00732341129332781, 0.0196938626468182, 0.00739495456218719, 0.00647139828652143, -0.0125200413167477, 0.0108550386503339, -0.00441616028547287, -0.0235832054167986, 0.0172223746776581, 0.0108875585719943, 0.00619823345914483, -0.00712829362601042, -0.0163638573139906, -0.0157654955983162, -0.0110826753079891, -0.0255343802273273, -0.0141265094280243, 0.000271741795586422, -0.00821444764733315, -0.0171053037047386, -0.026978250592947, 0.00579499080777168, 0.0231799632310867, 0.00651692552492023, -0.0161427240818739, -0.0116290049627423, 0.0104713076725602, 0.0109721086919308, -0.0293977074325085, 0.00699821533635259, -0.00507955951616168, -0.0273945014923811, -0.0128842610865831, -0.00607465906068683, -0.0214239042252302, -0.0128842610865831, 0.0918873474001884, 0.0019105258397758, 0.00393487000837922, 0.00364544591866434, 0.0141785405576229, 0.0251831691712141, -0.00565840816125274, -0.0325195863842964, 0.00638359505683184, -0.00999652128666639, -0.000131805951241404, -0.00588929746299982, 0.0144777204841375, -0.00162028847262263, -0.0341845899820328, 0.01438666600734, 0.00241783144883811, -0.00120322476141155, 0.00325195887126029, 0.00418527098372579, 0.0123379314318299, -0.0178597569465637, 0.0263668820261955, 0.0244937539100647, 0.0249750446528196, -0.0171963591128588, 0.0245457850396633, 0.0521874353289604, 0.0104517955332994, -0.00519988220185041, -0.0268741883337498, -0.00507955951616168, -0.00655269715934992, 0.0247539114207029, -0.00525516550987959, -0.0102891977876425, -0.031400915235281, 0.00242596119642258, 0.0128647489473224, 0.00956726260483265, 0.00772665394470096, 0.0178857743740082, 0.00241132755763829, -0.0117916027083993, 0.0083055030554533, 0.0209816377609968, 0.00365520175546408, 0.0106599209830165, 0.0105883777141571, -0.0253262557089329, 0.0199280045926571, -0.00615595793351531, -0.0287213008850813, -0.025014067068696, -0.000962579797487706, 0.0242596119642258, 2.25477615458658e-05, -0.012793205678463, -0.0402722582221031, -0.022880781441927, -0.0270823128521442, -0.0281229391694069, -0.0204613246023655, -0.00835753418505192, -0.0183280408382416, -0.00861769076436758, 0.00405844440683722, 0.0100940801203251, 0.000252433295827359, -0.0344707630574703, 0.0267441086471081, -0.0335602164268494, 0.00421128654852509, 0.00940466485917568, 0.00433160923421383, 0.00870224181562662, -0.00603563571348786, 0.023036876693368, 0.00538849597796798, -0.00297879427671432, -0.0026535983197391, -0.0223474614322186, 0.016311826184392, -0.0493777431547642, 0.00781120499596, -8.63801542436704e-05, -0.00444867974147201, -0.0191215183585882, 0.00112273881677538, 0.0231019146740437, -0.00973636470735073, 0.0246628560125828, 0.0164809264242649, -0.0139183839783072, 0.00343081657774746, 0.0143086183816195, 0.00887784734368324, 0.0152451833710074, -0.0451632030308247, -0.00840956531465054, -0.00238693784922361, -0.025586411356926, 0.0211117174476385, -0.0218011327087879, -0.00250563421286643, -0.0254563335329294, 0.0170922949910164, 0.012298908084631, -0.0227767191827297, -0.0225685946643353, 0.00887784734368324, -0.00741446623578668, -0.00316903390921652, 0.0010926581453532, 0.0181329231709242, 0.0306464601308107, 0.00120566377881914, 0.0065201772376895, -0.0172483902424574, -0.0208515599370003, -0.00925507489591837, -0.025508364662528, 0.0162077620625496, -0.00169264455325902, -0.00309098674915731, -0.00259343720972538, -0.0140874860808253, -0.00958677474409342, 0.00365520175546408, -0.0117916027083993, -0.022711681202054, 0.0337683409452438, 0.0125980889424682, -0.0111216995865107, -0.0183540564030409, -0.0273164547979832, 0.0102306623011827, 0.00863069854676723, 0.0218921862542629, -0.00510557554662228, 0.00770063837990165, -0.0137622896581888, -0.0225816015154123, 0.0043348609469831, 0.0221913661807775, -0.0245457850396633, -0.00719333300366998, 0.00938515271991491, -0.0293456763029099, -0.00794778764247894, 0.00958677474409342, -0.0288253631442785, -0.0326496660709381, 0.0110371485352516, -0.00915101170539856, -0.00900792609900236, -0.00137639162130654, -0.0125135378912091, 0.0160256531089544, 0.0217230841517448, 0.0218011327087879, -0.0197719093412161, -0.0334041193127632, 0.0178597569465637, 0.00207637576386333, -0.0071738213300705, -0.00844208523631096, 0.0122728925198317, 0.00264384248293936, 0.0184060875326395, 0.0110306441783905, -0.000602425367105752, -0.00188288418576121, 0.0251441448926926, 0.000143492681672797, 0.00696569588035345, -0.00875427294522524, -0.0287993475794792, -0.0313488841056824, -0.00231702066957951, -0.0311927888542414, 0.00738845067098737, -0.0147638926282525, 0.0101005844771862, -0.00504704006016254, -0.0148289324715734, 0.0022552334703505, 0.00143492687493563, 0.0261327419430017, 0.0162467863410711, 0.00784372445195913, -0.00559336924925447, 0.0284611433744431, 0.00883882399648428, -0.00945019256323576, -0.000636570912320167, 0.00303570367395878, -0.0235311742872, 0.00659497268497944, 0.0303863026201725, 0.00867622625082731, 0.0188743695616722, -0.0028438379522413, -0.000238205990171991, 0.00136257079429924, 0.0283310655504465, -0.0128972688689828, -0.0179378055036068, -0.00723235635086894, -0.0081038810312748, 0.0070762624964118, -0.0186922587454319, 0.00357065070420504, -0.00411697989329696, -0.0100615601986647, 0.00497224507853389, -0.00435762479901314, -0.0111086908727884, -0.0244157072156668, -0.0213978886604309, 0.00566816423088312, -0.0204613246023655, 0.000327431596815586, -0.00637383945286274, 0.025586411356926, 0.0235832054167986, 0.0111412107944489, -0.0101916389539838, -0.0077396621927619, -0.00540800765156746, 0.0236092209815979, 0.00892987847328186, 0.0522134490311146, -0.00584377022460103, -0.0108680464327335, 0.0143346348777413, 0.0241685584187508, -0.00339179299771786, -0.0476086772978306, 0.0217751171439886, -0.0014568775659427, 0.0127086546272039, -0.0303602870553732, -0.00381129584275186, -0.0255343802273273, 0.0267701242119074, 0.0087477695196867, -0.00266498024575412, -0.0117850983515382, -0.0409746803343296, -0.0199280045926571, 0.00757706398144364, -0.0117590827867389, 0.0305423978716135, 0.0146728381514549, -0.000163410935783759, 0.0149329947307706, -0.00489745009690523, 0.000227433876716532, -0.0163768641650677, -0.0176516324281693, 0.0225946102291346, -0.0118371304124594, 0.0219832416623831, 0.0186662431806326, -0.0166110061109066, 0.0096583180129528, 0.0155183477327228, -0.0513289198279381, 0.0297098960727453, -0.0131053943186998, -0.00900142174214125, 0.00488444231450558, 0.0010926581453532, 0.0101526156067848, -0.0144647127017379, -0.0166890528053045, -0.0100940801203251, -0.0233100410550833, 0.0150500657036901, 0.0130468588322401, 0.01886136084795, -0.0262498110532761, -0.0286172367632389, -0.00198532082140446, 0.00313488836400211, -0.0218791794031858, -0.0181329231709242, 0.0135021330788732, -0.0199800357222557, 0.0129427965730429, 0.00416250713169575, -0.000852013239637017, -0.00399665720760822, -0.00785022880882025, -0.0107314642518759, 0.0127086546272039, -0.0114403907209635, 0.00352837541140616, 0.0121688302606344, 0.00679008988663554, -0.00780470110476017, -0.0341585762798786, -0.00537548772990704, 0.00898191053420305, -0.0117785949259996, -0.011518438346684, 0.000978026655502617, -0.0219962503761053, -0.0175605770200491, -0.00876077730208635, 0.00743397790938616, 0.00640310673043132, -0.00569092808291316, 0.0109591009095311, 0.0245718006044626, 0.00792827550321817, -0.00805184990167618, -0.0140094384551048, 0.0518752485513687, 0.0220352727919817, 0.00521288998425007, 0.0110826753079891, -0.0277327056974173, -0.0197979249060154, -0.0182630009949207, 0.0167540926486254, 0.0327537283301353, 0.00859817955642939, -0.0426136702299118, -0.0111997462809086, 0.0138793606311083, 0.0166240129619837, -0.0179117899388075, -0.00773315830156207, -0.00115038047078997, -0.0159345977008343, -0.000612994248513132, -0.00219832407310605, -0.000662993115838617, -0.00700471922755241, 0.0147899091243744, 0.0282530188560486, 0.00088697177125141, -0.0218271482735872, -0.0108420308679342, -0.00874126516282558, -0.0130923865363002, 0.0119021693244576, -0.0106859365478158, 0.0169101860374212, 0.0158435441553593, 0.0154012767598033, -0.00239831954240799, -0.0106274010613561, -0.0169882327318192, -0.0217490997165442, 0.00551857426762581, -0.00180808908771724, 0.00403242884203792, 0.0138013130053878, 0.0165849905461073, 0.00407795654609799, 0.0272904392331839, 0.0109656052663922, -0.00726487580686808, -0.0119021693244576, 0.00270075188018382, 0.0136842429637909, -0.0148939713835716, 0.0161297153681517, -0.00790225993841887, -0.0412088222801685, 0.0236742608249187, 0.0207865200936794, -0.0117720905691385, -0.0026893699541688, 0.0437843725085258, -0.0140614695847034, 0.00865671411156654, 0.00209913938306272, 0.00286009768024087, 0.00551207037642598, 0.0117590827867389, -0.00135931873228401, -0.020006051287055, -0.000721121847163886, 0.0210466776043177, 0.0212808176875114, -0.00289261736907065, -0.020006051287055, -0.0100225368514657, 0.00292838900350034, 2.56345811067149e-05, 0.000531695259269327, -0.0167410839349031, 0.00996400229632854, -0.00359016261063516, 3.35104195983149e-05, -0.00440640421584249, -0.00298529816791415, -0.0195767916738987, 0.00757706398144364, -0.0183410476893187, 0.00792177207767963, -0.00641936669126153, 0.0109591009095311, 0.0015015919925645, 0.0162858106195927, 0.010295701213181, 0.00775266997516155, -0.0012048507342115, -0.0177296791225672, 0.0190564785152674, 0.0161036998033524, -0.0106339054182172, 0.0122143570333719, -0.00103412289172411, 0.0125330490991473, 0.0177296791225672, 0.00488119013607502, 0.014594791457057, -0.00992497801780701, 0.0150500657036901, 0.0044844513759017, -0.0249490272253752, 0.0155573710799217, 0.0268221572041512, -0.0074209701269865, 0.0217751171439886, 0.00435762479901314, -0.0312968529760838, 0.0177166722714901, 0.0136842429637909, 0.0133200231939554, -0.00549255823716521, 0.226440399885178, 0.0298139583319426, 0.00119428185280412, 0.0329618528485298, -0.00624701287597418, 0.0213848818093538, 0.0152321755886078, 0.0198889803141356, 0.0235311742872, 0.00377227226272225, 0.0443307012319565, -0.00225198152475059, -0.0268221572041512, -0.00193979346659034, -0.0229978524148464, -0.0188873764127493, -0.0395698361098766, -0.0296318493783474, -0.0157004576176405, 0.00618522567674518, -0.00338203716091812, -0.0115444539114833, 0.0104517955332994, -0.00641611497849226, -0.0173394437879324, 0.00853313971310854, -0.00294464873149991, 0.023284025490284, 0.0317911505699158, -0.00403242884203792, -0.0242205895483494, -0.0269002038985491, -0.00543402321636677, 0.0254693422466516, -0.0193296428769827, -0.0358756110072136, -0.00076095835538581, -0.00460152188315988, 0.0238563697785139, -0.0114664072170854, 0.0208515599370003, 0.0106989443302155, -0.0403503067791462, -0.0196808539330959, -0.00100322929210961, 0.0194467138499022, -0.00705675082281232, -0.017300421372056, 0.0217230841517448, 0.000823152076918632, -0.0222173817455769, -0.015583386644721, 0.0327537283301353, 0.00927458610385656, 0.00744698569178581, -0.0114273829385638, 0.0301001314073801, -0.0121167981997132, -0.0173134282231331, 0.0131574254482985, 0.018119914457202, -0.0039901533164084, -0.0278627835214138, 0.0412088222801685, -0.0416771024465561, 0.0133200231939554, -0.0191735494881868, 0.000469908060040325, 0.00590230524539948, -0.00573970749974251, -0.00477387569844723, -0.00681610591709614, -0.0107184564694762, 0.0111086908727884, -0.000502427632454783, -0.0236092209815979, 0.0132354721426964, 0.0358495935797691, 0.0382690504193306, 0.00354463513940573, -0.0125200413167477, 0.0276806727051735, 0.00179670727811754, -0.0114729106426239, -0.020994646474719, -0.0173134282231331, 0.00779169332236052, 0.0100030256435275, -0.025989655405283, 0.0256514512002468, 0.00179833325091749, -0.0248579736799002, -0.0102111510932446, 0.00290725124068558, 0.0164679195731878, 0.00701122311875224, 0.00753153674304485, 0.0138793606311083, 0.00403242884203792, -0.0158435441553593, 0.00613644625991583, 0.040428351610899, -0.014100493863225, -0.0190044473856688, 0.0148289324715734, -0.0197719093412161, -0.0125980889424682, 0.0169882327318192, -0.00663724774494767, -0.0261587575078011, 0.00301293982192874, -0.0275245793163776, 0.0139964306727052, -0.0178987812250853, -0.00401616934686899, 0.0174304991960526, -0.0127086546272039, -0.0144126815721393, 0.00328122638165951, 0.00933962594717741, 0.011973712593317, -0.0175605770200491, 0.00161215860862285, 0.0370983444154263, 0.0157915111631155, -0.0231539476662874, -0.0414429642260075, 0.00779169332236052, 0.0148159246891737, -0.0327016972005367, 0.00172191218007356, -0.00575596699491143, 0.0107054486870766, -0.00954124704003334, -0.0284871589392424, 0.00485192239284515, 0.0259376242756844, -0.00472834799438715, -0.0350431092083454, 0.00113493367098272, 0.000320521183311939, -0.00452672690153122, -0.000374585011741146, -0.00910548493266106, 0.00407470436766744, -0.0234271120280027, 0.0385812409222126, -0.00248937448486686, 0.023205978795886, 0.00819493643939495, -0.0125915845856071, -0.022555585950613, 0.00122517545241863, -0.00675757043063641, -0.00100810721050948, -0.00142679689452052, -0.0302822403609753, 0.00484216678887606, 0.0288773942738771, -0.00291538098827004, -0.00531044881790876, -0.0215279664844275, 0.0513549335300922, -0.0102761900052428, -0.0258465688675642, -0.010295701213181, -0.162441849708557, 0.0137752974405885, -0.00558036146685481, -0.00118940393440425, 0.0210466776043177, -0.00547955045476556, -0.00163654831703752, -0.0157915111631155, 0.02295882999897, 0.00143330090213567, 0.0262107886373997, -0.0142175639048219, 0.00609742291271687, 0.0017511798068881, 0.0168451461941004, -0.0271083284169436, -0.0356154516339302, 0.0256254356354475, 0.0191995650529861, 0.00833802204579115, 0.0271083284169436, -0.0263018421828747, -0.00799331441521645, -0.0271083284169436, 0.00227962317876518, -0.00156419223640114, -0.00891687069088221, 0.0163508486002684, 0.0106469132006168, -0.0173784680664539, -0.0137622896581888, 0.00020456853962969, 0.0347049050033092, 0.00653318548575044, 0.0124289868399501, -0.0219182018190622, 0.0222954303026199, -0.00125606905203313, -0.0137883052229881, 0.0074209701269865, 0.0137883052229881, 0.0223994925618172, -0.0205393712967634, 0.00825997535139322, -0.0342106074094772, 0.0195507761090994, 0.00781770888715982, -0.0129232844337821, 0.000960140838287771, -0.0262237954884768, 0.0094111692160368, -0.0267961397767067, -0.0105103310197592, 0.00348935183137655, 0.00828599091619253, -0.00900142174214125, 0.00531695270910859, 0.00239018979482353, 0.00693317642435431, -0.0153232300654054, 0.00598360411822796, -0.0400901474058628, 0.00176418770570308, -0.00497549679130316, -0.00658521661534905, -0.0209686309099197, -0.0243116449564695, 0.0185881964862347, -0.0228157434612513, 0.0234010964632034, -0.000925995293073356, -0.0130988899618387, 0.0165199507027864, -0.0117981070652604, -0.0160126443952322, 0.00709577417001128, -0.0151541279628873, -0.0160906929522753, -0.00374300451949239, -0.00511858332902193, 0.00419827876612544, 0.0127411745488644, -0.0122273648157716, -0.00934612937271595, 0.0174435079097748, -0.0164549108594656, -0.00456575024873018, 0.0208905842155218, -0.0190824940800667, 0.0110176363959908, 0.012877756729722, 0.0149590102955699, -0.00145606452133507, 0.00179182935971767, -0.0142175639048219, 0.0239604320377111, 0.015908582136035, 0.0169882327318192, -0.00324870692566037, -0.0239734407514334, -0.00279018073342741, 0.00523240165784955, -0.0308025535196066, 0.0109200775623322, 0.0300481002777815, -0.000397755211452022, -0.00661123218014836, 0.0272384062409401, 0.0150760812684894, -0.000235157276620157, -0.030178178101778, 0.0217100773006678, 0.0110436519607902, 0.0117005482316017, -0.0032861044164747, 0.0261067245155573, -0.0168191306293011, 0.00764860725030303, -0.0121037904173136, -0.0176646411418915, 0.0532280616462231, -0.000208735102205537, -0.029033487662673, 0.0172744058072567, -0.0431599989533424, -0.00640961062163115, -0.112699888646603, -0.0192385874688625, 0.0107899997383356, 0.0136712351813912, -0.00424705818295479, 0.0512248538434505, 0.0188223384320736, 0.0333781056106091, -0.0165069438517094, 0.0205653868615627, -0.00713479751721025, -0.0213068351149559, -0.0113883595913649, -0.000349788810126483, 0.00872175395488739, 0.0186272207647562, -0.0146468225866556, -0.0137883052229881, -0.0340805277228355, 0.00547629874199629, -0.00984693132340908, -0.0192255806177855, 0.00380479171872139, 0.00842257309705019, 0.00225360738113523, -0.0133850621059537, -0.0130143389105797, 0.0146728381514549, 0.0140744773671031, 0.00464054523035884, -0.0172613970935345, -0.0135151408612728, -0.00261620082892478, -0.0201101135462523, -0.0226726569235325, 0.00749901682138443, -0.0214629285037518, -0.0249620359390974, 0.00961929373443127, -0.019602807238698, 0.011602989397943, -0.00610392680391669, -0.0330399014055729, -0.0373845174908638, 0.00749901682138443, -0.00266985828056931, -0.0170662794262171, -0.0102761900052428, -0.0107444720342755, 0.000950384943280369, -0.0254043024033308, -0.00693317642435431, -0.0200710892677307, -0.0197719093412161, 0.0038210516795516, -0.0369162373244762, -0.0102436700835824, 0.009677829220891, -0.017300421372056, -0.0149590102955699, -0.00523565383628011, -0.0175085458904505, -0.0283050499856472, 0.0095347436144948, 0.00125769502483308, -0.00266498024575412, -0.00699171144515276, -0.0145297516137362, 0.0329098217189312, -0.0104127721861005, 0.00329748634248972, 5.45211223652586e-05, -0.0135541642084718, 0.0153492456302047, -0.0174304991960526, 0.0265359841287136, -0.00415925541892648, -0.020825544372201, 0.0153622534126043, -0.00166662887204438, 0.000631286529824138, -0.00463729305192828, 0.0111151952296495, -0.0224255081266165, 0.0176126081496477, 0.0165979973971844, -0.000673561997245997, 0.0168581549078226, 0.00529093714430928, 0.00719333300366998, -0.0101331034675241, 0.0049624890089035, -0.00755755230784416, -0.00152435572817922, -0.0392576456069946, 0.0242856293916702, -0.00718032522127032, -0.0229848455637693, 0.00631205225363374, 0.052239466458559, -0.0277587212622166, -0.0237262919545174, -0.0476086772978306, 0.00924857053905725, 0.0162858106195927, 0.0034763440489769, -0.0134370941668749, -0.00466656079515815, 0.00772665394470096, -0.0072973957285285, -0.000151114465552382, 0.0105818742886186, -0.0298659894615412, -0.0102111510932446, -0.0126110967248678, 0.0246108248829842, -0.0303082559257746, 0.00472509628161788, 0.0221523437649012, 0.00439339643344283, 0.0363959223031998, -0.00241783144883811, 0.00710227806121111, -0.00376902031712234, 0.0214759353548288, 0.00652993330731988, -0.00121460657101125, 0.0162597931921482, -0.00460477359592915, 0.0198629647493362, -0.0259506311267614, -0.0189784318208694, -0.00478037958964705, -0.0228287503123283, 0.00597384851425886, 0.0117070516571403, 0.0157785043120384, -0.0200710892677307, 0.00916402041912079, 0.00328447832725942, 0.00496574118733406, -0.0055023143067956, -0.0396218672394753, -0.0311927888542414, -0.00260481890290976, -0.0251051224768162, -0.0163898728787899, 0.0125915845856071, -0.00292513705790043, 0.0155053399503231, 0.0164549108594656, 0.0111997462809086, 0.00382755557075143, 0.0128062134608626, -0.0444347634911537, -0.0358495935797691, -0.0263538751751184, -0.0239604320377111, -0.00999001786112785, -0.0239474251866341, 0.00566491205245256, -0.0167020596563816, 0.00710227806121111, 0.0391275696456432, -0.00839655753225088, 0.0224775392562151, 0.0345748253166676, -0.00316090392880142, -0.00960628595203161, -0.0243506673723459, 0.00101461110170931, -0.016155730932951, -0.00610067462548614, -0.000983717502094805, 0.017391474917531, 0.0114924227818847, 0.00882581621408463, 0.00288123544305563, 0.000631692993920296, 0.0133980698883533, -0.000527223804965615, 0.00521288998425007, 0.0239344164729118, -0.00934612937271595, -0.0253132469952106, 0.0392316319048405, 0.00378853199072182, 0.0139183839783072, -0.000943881052080542, 0.0156354177743196, -0.020253200083971, -0.00282757822424173, -0.0324675552546978, 0.00257717748172581, -0.0110891796648502, 0.0180548746138811, 0.0258465688675642, 0.0132809998467565, 0.0130273466929793, 0.025664459913969, 0.0180938988924026, 0.0209556221961975, 0.0291375517845154, 0.00184386060573161, -0.00020456853962969, 0.0047771274112165, -0.0353813134133816, -0.0257294978946447, 0.000969896733295172, -0.011928184889257, -0.0247278939932585, 0.00456249807029963, 0.0138533441349864, 0.0172744058072567, 0.0146077992394567, 0.00780470110476017, -0.0182109698653221, -0.00849411636590958, -0.000612181262113154, 0.027966845780611, -0.0278107523918152, 0.0356154516339302, 0.00506655173376203, 0.016064677387476, -0.000818274158518761, -0.00506980391219258, 0.0114533994346857, 0.00269912579096854, -0.0068551292642951, -0.0206434354186058, 0.0232319943606853, 0.0176776479929686, -0.0264709442853928, 0.00579824252054095, -0.0236872676759958, -0.0111216995865107, -0.00165118207223713, -0.0368381887674332, 0.0155573710799217, 0.0049267178401351, 0.0114859184250236, 0.0618132315576077, 0.0111282030120492, -0.0230758991092443, -0.0145297516137362, 9.39511228352785e-05, -0.000172861939063296, -0.0207995288074017, 0.0139964306727052, -0.00791526772081852, -0.000922743289265782, 0.0295798182487488, 0.00870874617248774, 0.0265359841287136, -0.0235701967030764, -0.0375406108796597, 0.0132354721426964, 0.0221783593297005, 0.0147508848458529, -0.0542166568338871, 0.00135362788569182, 0.0297098960727453, -0.00409421604126692, 0.0173134282231331, -0.0189784318208694, -0.032623652368784, -0.0188483539968729, 0.00587303750216961, -0.01886136084795, 0.00204223021864891, -0.0453973449766636, 0.00718682911247015, 0.00972335692495108, -0.019511753693223, -0.0161167085170746, 0.0248189494013786, -0.00332837994210422, -0.0098794512450695, 0.0190824940800667, 0.00867622625082731, -0.0154272923246026, 0.00650716945528984, 0.0260156709700823, -0.0172874126583338, -0.0299440361559391, -0.0048389146104455, -0.0190434716641903, -0.0128712533041835, -0.00646164221689105, -0.011355840601027],id:"d247b00018ff9ede1814961c500d6a98",source:"state_of_union.txt",text:"We’re also ready with anti-viral treatments. If you get COVID-19, the Pfizer pill reduces your chances of ending up in the hospital by 90%.
We’ve ordered more of these pills than anyone in the world. And Pfizer is working overtime to get us 1 Million pills this month and more than double that next month.
And we’re launching the “Test to Treat” initiative so people can get tested at a pharmacy, and if they’re positive, receive antiviral pills on the spot at no cost.
If you’re immunocompromised or have some other vulnerability, we have treatments and free high-quality masks.
We’re leaving no one behind or ignoring anyone’s needs as we move forward.
And on testing, we have made hundreds of millions of tests available for you to order for free.
Even if you already ordered free tests tonight, I am announcing that you can order more from covidtests.gov starting next week."})
(:Chunk{embedding:[-0.00032055500196293, 0.0067895008251071, -0.025179959833622, -0.00861384533345699, 0.0073775677010417, 0.0163723193109035, -0.0135389063507318, -0.0171875953674316, -0.0130711253732443, 0.0238835401833057, 0.0461899898946285, 0.0233355686068535, -0.0208229180425406, 0.00601098034530878, 0.000826969218906015, -0.000994869042187929, 0.0316754281520844, -0.0229747090488672, -0.00599427381530404, -0.0365938059985638, 0.00123460660688579, -0.00792553927749395, 0.0107455877587199, -0.0058840112760663, -0.0199675485491753, 0.00576038379222155, 0.017722200602293, -0.012777091935277, -0.00352506060153246, 0.00564677966758609, -0.0017508357996121, -0.0141136078163981, -0.0302052590996027, -0.02574129588902, -0.00462100375443697, -0.0211169514805079, -0.00250429660081863, 0.00589403510093689, 0.00718377297744155, -0.0277995318174362, 0.0238434430211782, 0.00327279325574636, 0.0140868779271841, -0.0108391437679529, -0.0182568076997995, -0.000893794989679009, -0.0123226763680577, -0.0212372373789549, -0.0487026385962963, 0.0207694564014673, 0.0118548963218927, 0.0104381889104843, -0.0384114682674408, 0.00607112376019359, -0.0248191002756357, -0.0157040618360043, -0.0113470200449228, -0.00478472700342536, -0.0204620584845543, -0.0261422507464886, -0.0162787642329931, -0.000313663564156741, -0.0260887909680605, 0.0167465452104807, -0.00416658818721771, -0.01953986287117, -0.0296973828226328, 0.0121556119993329, 0.0148219615221024, 0.0304191019386053, 0.030312180519104, 0.0300448779016733, 0.0222262591123581, 0.0115140844136477, 0.0278262607753277, 0.0137794790789485, 0.0024241057690233, 0.0136859230697155, -0.0104649197310209, 0.00396611075848341, 0.0174014363437891, -0.0296439230442047, -0.0355780534446239, -0.00483484612777829, 0.0238033477216959, 0.00586062204092741, 0.0168935619294643, 0.0167732741683722, -0.0109794782474637, -0.00697661284357309, 0.00781193561851978, 0.0196334179490805, -0.000408890336984769, 0.0288152825087309, 0.00548639800399542, 0.027558958157897, -0.00338806794025004, 0.0152362817898393, -0.0150758996605873, -0.038144163787365, 0.0105116972699761, 0.00428687501698732, -0.00911503843963146, -0.00810596905648708, -0.022988073527813, -0.00801909528672695, 0.00177756615448743, -0.0220257826149464, -0.00107171875424683, -0.005496421828866, -0.00845346320420504, -0.0213708896189928, 0.000699582567904145, -0.0305260233581066, 0.0114405760541558, -0.00454749539494514, -0.00199474999681115, -0.0109460651874542, 0.00488830683752894, -0.0117011964321136, 0.0119751822203398, 0.0242310333997011, 0.0244582407176495, -0.0106386663392186, 0.0121689774096012, -0.0116343712434173, -0.0382778160274029, -0.0168133694678545, -0.00725059863179922, -0.0036653948482126, 0.0165059715509415, 0.0350434482097626, 0.0242577642202377, -0.0062248227186501, -0.0122358035296202, 0.00629833107814193, -0.0145680233836174, 0.00515560992062092, -0.00353508465923369, -0.000469033548142761, 0.0291360467672348, 0.0152095509693027, -0.0131780467927456, 0.0116744665428996, 0.001158592174761, 0.0154501236975193, 0.0267837792634964, -0.020542249083519, 0.0219990517944098, 0.00805250834673643, 0.0157307926565409, -0.0237899832427502, 0.00475799664855003, -0.00810596905648708, 0.0012772079790011, 0.00287517975084484, -0.000301551393931732, 0.000482816365547478, -0.0150224389508367, -0.00847351085394621, 0.0222262591123581, -0.0190854463726282, 0.00885441806167364, 0.00383245944976807, 0.0105785233899951, 0.00569021655246615, 0.00225537060759962, 0.00126467819791287, -0.00483484612777829, 0.0353642106056213, -0.017227690666914, 0.00471790134906769, -0.0190453510731459, 0.029937956482172, -0.00204319879412651, 0.0322100333869457, -0.00475131394341588, -0.00467446446418762, -0.0277193393558264, -0.00715704262256622, 0.0136658754199743, 0.0101508386433125, 0.0307398661971092, 0.0312477424740791, -0.00553985824808478, -0.00503532355651259, 0.0443990603089333, 0.0141804339364171, 0.00632172031328082, -0.0208630133420229, 0.0131045384332538, -0.000651969166938215, 0.00167064485140145, -0.019606688991189, -0.632973909378052, -0.0220792423933744, 0.0103713637217879, 0.00225871196016669, -0.0113603854551911, -0.0178558528423309, 0.00740429805591702, 0.0174949932843447, -0.0290291253477335, 0.0287618227303028, -0.0103646805509925, -7.12112378096208e-05, -0.0150224389508367, -0.018163250759244, 0.00632506143301725, -0.0138596696779132, -0.000966468069236726, 0.00473460741341114, -0.0139532256871462, -0.000465274613816291, -0.0365670770406723, 0.0262224413454533, -0.0109126521274447, 0.0068964222446084, -0.0116611011326313, 0.000521658861543983, 0.0206892658025026, -0.0116811487823725, 0.00773842725902796, -0.00312243518419564, -0.0284410584717989, 0.0330921337008476, -0.0140200518071651, -0.00539618311449885, 0.0489966720342636, 0.0113804331049323, -0.0302052590996027, 0.0043303114362061, 0.0276124179363251, 0.00328615843318403, -0.0189517959952354, 0.0155837759375572, 0.0171875953674316, -0.00285012018866837, -0.0385718494653702, 0.0171475000679493, 0.00195632525719702, 0.00184940383769572, 0.0139264957979321, -0.00303890299983323, 0.00628496613353491, -0.00994367804378271, 0.0252601504325867, 0.00405632564797997, 0.0210634898394346, 0.00213508424349129, 0.00747780641540885, -0.0108725568279624, 0.00682959612458944, -0.0189117006957531, 0.00640525249764323, 0.00902816466987133, -0.0316219665110111, -0.0183369982987642, -0.0404697023332119, 0.0186711270362139, -0.00693651754409075, 0.00964964460581541, -0.00449403468519449, -0.00294701755046844, -0.006154655944556, 0.0179226789623499, -0.00753794983029366, -0.00074510759441182, 0.0143942767754197, 0.00698329554870725, 0.00297708925791085, -0.0156773310154676, 0.00408639758825302, 0.0172143243253231, 0.0127369966357946, -0.0355780534446239, -0.025674469769001, 0.00183436810038984, 0.0214644446969032, -0.00193961872719228, -0.0210768561810255, 0.00655895192176104, 0.0101508386433125, 0.00335465488024056, 0.00257446384057403, 0.0317823477089405, 0.00740429805591702, -0.0330921337008476, 0.0246720835566521, 0.0136591922491789, 0.0118148010224104, 0.0107790008187294, 0.0223331805318594, 0.0145011972635984, -0.00894129183143377, -0.0323169529438019, 0.0180563293397427, 0.0195799581706524, 0.0103312684223056, 0.0218520350754261, -0.00981670897454023, 0.0224133711308241, 0.0233890283852816, -0.0357651673257351, -0.00183770933654159, 0.00293532316572964, -0.0184706505388021, -0.00284510827623308, 0.00116694543976337, -0.0290825869888067, 0.0174415335059166, 0.0150892650708556, -0.0232420116662979, -0.00557995401322842, 0.012616709806025, 0.0172945167869329, 0.00147016753908247, -0.029937956482172, 0.0121556119993329, 0.00671599246561527, 0.0199274513870478, -0.0159980952739716, 0.00258949957787991, -0.0221995301544666, 0.0148620568215847, -0.0209298394620419, 0.0342415384948254, 0.0048482115380466, 0.010398093611002, 0.017347976565361, 0.013558954000473, -0.0222797207534313, 0.00284009636379778, -0.0260086003690958, -0.00420668395236135, 0.00562673201784492, -0.00879427511245012, -0.00373222073540092, -0.0211303159594536, -0.0185107458382845, -0.0189117006957531, -0.0029537002556026, -0.0133517943322659, -0.000289021554635838, 0.00562673201784492, -0.000147016748087481, 0.038010511547327, -0.00647876085713506, 0.0100706471130252, -0.00306897470727563, 0.00531599204987288, -0.0228945184499025, -0.00798568222671747, 0.0020649170037359, 0.015316472388804, 0.0127169489860535, 0.00285513210110366, -0.0018477332778275, -0.00720382062718272, 0.0126233929768205, 0.0131379514932632, 0.0232286471873522, 0.00987685285508633, -0.0337069295346737, 0.00746444147080183, -0.0138195743784308, 0.00575035950168967, 0.0161985736340284, 0.0167064480483532, -0.00778520526364446, -0.0157976187765598, 0.00379236391745508, -0.0258081220090389, 0.0172410551458597, 0.0178023912012577, -0.00625823577865958, -0.0153565676882863, 0.0110463043674827, 0.013278285972774, -0.00139832973945886, 0.0125766145065427, -0.00705012120306492, 0.010992843657732, 0.0187245886772871, 0.011808117851615, -0.0158510785549879, -0.00513556227087975, 0.000902148254681379, 0.00186611036770046, -0.00617470359429717, -0.0116945141926408, -0.0107322223484516, 0.0106052542105317, 0.00548639800399542, 0.014902152121067, -0.00507541932165623, 0.0128840133547783, -0.014808596111834, 0.00787876173853874, -0.0305527541786432, 0.00849355850368738, -0.0310338996350765, -0.0122090727090836, 0.00859379768371582, -0.0101575208827853, -0.0360592007637024, -0.022239625453949, -0.00904153008013964, -0.00290191010572016, 0.0346692241728306, -0.034000962972641, 0.0167465452104807, -0.0123159941285849, 0.0294568110257387, -0.00700334319844842, -0.015156090259552, 0.0203685034066439, -0.00197804346680641, -0.0358453579246998, -0.0016263728030026, -0.00429355725646019, 0.0390262641012669, -0.0109995258972049, -0.00220525125041604, -0.0107322223484516, 0.00145011977292597, -0.011433893814683, 0.0197537057101727, 0.0111264949664474, -0.00454081268981099, 0.00985680520534515, -0.0243245903402567, 0.0286014396697283, 0.0218119397759438, 0.00508878426626325, 0.00778520526364446, 0.0169336572289467, -0.00140083569567651, 0.0225069280713797, -0.0212639681994915, 0.0514825917780399, 0.0200076438486576, 0.0029537002556026, -0.00578377256169915, -0.00778520526364446, -0.00923532526940107, 0.0040128892287612, 0.000223239927436225, 0.0102978553622961, -0.0363265015184879, 0.00280501274392009, 0.0074377111159265, 0.0147952307015657, 0.0282272156327963, 0.00387255474925041, 0.0384649261832237, 0.00916181690990925, -0.0108124138787389, 0.00915513373911381, 0.00938902422785759, -0.00186443969141692, -0.0148887876421213, -0.0132716028019786, 0.00449403468519449, -0.0132181420922279, 0.0140467826277018, 0.015343202278018, -0.0205556154251099, 0.011206685565412, 0.0102978553622961, -0.0155570451170206, 0.00775847490876913, -0.00771837960928679, 0.00281169544905424, -0.00314749497920275, -0.0249527525156736, -0.0131179038435221, 0.0213842540979385, -0.0125031061470509, 0.00465775793418288, -0.00463771028444171, 0.00326945213600993, -0.0136725576594472, 0.0281737558543682, -0.0224133711308241, 0.0141136078163981, -0.0248324647545815, 0.00276658800430596, 2.25406547542661e-05, -0.0250463075935841, 0.0209966655820608, 0.0216248277574778, 0.0105183804407716, -0.00258114631287754, -0.00499856937676668, -0.0165460668504238, 0.00799236539751291, -0.0234424881637096, 0.000896301004104316, 0.0151026295498013, -0.0109861604869366, -0.0169871170073748, -0.00409307982772589, -0.0127570442855358, 0.0362463109195232, -0.00956945400685072, -0.00789212621748447, 0.0081661120057106, 0.00343818729743361, 0.0134319849312305, -0.0426081269979477, 0.00601098034530878, 0.0197670701891184, -0.00249427277594805, 0.00343150459229946, -0.0104248244315386, -0.0172143243253231, -0.00785203091800213, 0.110877357423306, 0.0195131320506334, 0.000989021733403206, 0.00138329400215298, 0.0109794782474637, 0.0010500003118068, -0.0026362775824964, -0.0282004848122597, 0.0259417742490768, -0.017976138740778, -0.00985012203454971, -0.00769164925441146, -0.0114004807546735, -0.00440381979569793, 0.0119284046813846, -0.000497434521093965, 0.0136324623599648, -0.00946921482682228, -0.00465441681444645, -0.00704343896359205, -0.00887446571141481, -0.0111732734367251, 0.0117011964321136, 0.0225202925503254, 0.0305260233581066, 0.00153281667735428, 0.0230816304683685, 0.0469651706516743, 0.0121689774096012, 0.00601098034530878, -0.0254071671515703, 0.0203952323645353, 0.000183875352377072, 0.0298043042421341, -0.015597140416503, -0.00327112269587815, -0.0263694580644369, 0.00497518060728908, 0.0164525117725134, 0.015062534250319, 0.00414319941774011, 0.031515046954155, 0.00592410657554865, -0.0238835401833057, 0.0161050166934729, 0.0108190961182117, -0.00372219691053033, -0.0092152776196599, -0.00726396404206753, -0.0250997692346573, 0.0298043042421341, -0.00712363002821803, -0.0282806772738695, 0.000479057431221008, 0.00294367619790137, 0.0364334248006344, -0.003695466555655, -0.0246587190777063, -0.0259150434285402, 0.00189952319487929, -0.0235761404037476, -0.0184171888977289, -0.000718794937711209, 0.00729737710207701, -0.0200744681060314, -0.0268506053835154, 0.0143675459548831, 0.0205823443830013, -0.0418864078819752, -0.0261957123875618, 0.0171875953674316, -0.0372887924313545, -0.00909499078989029, 0.015035804361105, 0.0126501228660345, 0.00750453677028418, -0.000400328281102702, 0.00393269816413522, -0.00968305766582489, -0.00874749664217234, -0.0141937993466854, -0.0419665984809399, -0.00908162537962198, -0.0229747090488672, -0.00380238774232566, -0.0103914113715291, 0.00612458400428295, -0.00814606435596943, -0.00247756647877395, 0.0276658795773983, 0.0119217215105891, 0.0248191002756357, 0.00339809176512063, -0.00628496613353491, -0.00467446446418762, 0.0148887876421213, 0.0179627742618322, 0.0205155201256275, -0.0262759029865265, -0.0199274513870478, -0.00931551586836576, -0.00199307943694293, -0.00827971566468477, -0.00858711451292038, -0.00111766147892922, -0.0140200518071651, 0.00364200584590435, 0.0139799565076828, -0.0186978578567505, -0.00922864209860563, 0.0287885535508394, -0.00103078794199973, 0.00163054943550378, -0.000568019284401089, 0.00821289047598839, 0.0121556119993329, 0.0107188578695059, 0.0050486889667809, -0.00636849831789732, -0.00738425040617585, -0.00197804346680641, 0.00473126629367471, 0.0178291220217943, 0.00729737710207701, 0.000996539718471467, 0.0152763770893216, 0.00731742475181818, -0.0196334179490805, -0.00965632777661085, -0.005496421828866, -0.00950262788683176, 0.0176553744822741, -0.00989021733403206, -0.0252467859536409, -0.0163322240114212, -0.0249527525156736, -0.0127369966357946, 0.00264797220006585, 0.0130978561937809, -0.0111331772059202, -0.00363532337360084, -0.0242711286991835, 0.011086399666965, -0.0300716087222099, 0.0333059765398502, -0.0249661169946194, 0.00479140970855951, -0.0144076412543654, -0.017040578648448, 0.0149288829416037, 0.0084601454436779, -0.0192190986126661, -0.0351503677666187, 0.00628162501379848, 0.0108725568279624, -0.025674469769001, 0.0178825836628675, -0.0157976187765598, -0.00571360532194376, 0.0273985769599676, 0.0316219665110111, -0.0249393861740828, -0.0132916504517198, 0.00890119560062885, 0.00112016743514687, -0.00153949926607311, -0.0245117023587227, -0.00656897574663162, -0.0111331772059202, 0.0208630133420229, 0.00380572909489274, -0.00281503656879067, -0.0143675459548831, -0.0061078779399395, 0.0141403386369348, 0.0198739916086197, 0.00198639673180878, -0.0200611036270857, -0.0254071671515703, -0.0147551354020834, -0.0141937993466854, 0.0105517935007811, -0.00648210197687149, 0.0264897458255291, -0.0305794831365347, -0.00997040886431932, 0.0195665936917067, 0.00876086205244064, 0.0376897491514683, 0.000222195769310929, 0.0154902189970016, 0.00667589716613293, 0.0168801955878735, 0.00534606352448463, -0.0178424865007401, -0.0214109849184752, -0.0102577600628138, -0.0323169529438019, 0.0072840116918087, 0.0324773378670216, 0.0234291236847639, 0.00505203008651733, 0.0125832976773381, 0.0164257809519768, -0.000994869042187929, 0.0160515569150448, -0.0124696930870414, -0.0125031061470509, 0.00311241135932505, -0.0235895067453384, -0.00604105181992054, -0.025300245732069, -0.0116544188931584, -0.008520289324224, -0.00725728133693337, -0.0197537057101727, -0.00948926340788603, 0.0171341337263584, -0.0138195743784308, -0.0274253059178591, -0.00520907063037157, -0.0109126521274447, -0.0142739899456501, -0.002459189388901, 0.0221594329923391, 0.0113136069849133, 0.0127169489860535, 0.00215179054066539, -0.0188716053962708, -0.00731742475181818, 0.00747112417593598, 0.0186310317367315, 0.0139933219179511, -0.0172143243253231, 0.000250596727710217, 0.0177355669438839, 0.0432496555149555, 0.00194463063962758, -0.0271446388214827, 0.0329852141439915, 0.014688310213387, -0.00214677862823009, -0.0240706522017717, -0.027184734120965, -0.01478186622262, 0.0133384289219975, 0.00284844962880015, -0.00417995359748602, -0.00168401002883911, -0.0215980969369411, -0.0160782858729362, 0.00441050250083208, -0.00669928593561053, 0.0176286455243826, 0.00995036121457815, 0.00903484784066677, 0.0105718411505222, -0.0118816262111068, 0.00370549038052559, -0.0247790049761534, -0.0175484530627728, 0.0354176722466946, -0.00784534867852926, 0.0122023904696107, 0.00747112417593598, 0.014875422231853, -0.0313813947141171, 0.0134186195209622, -0.0301517993211746, 0.0201279297471046, -0.0546902306377888, -0.00930215045809746, -0.022426737472415, -0.00841336790472269, 0.0179226789623499, -0.0130109824240208, -0.00932888127863407, 0.00567351002246141, -0.00765155348926783, 0.0185642056167126, 0.0261155217885971, 0.0141537031158805, -0.0312210116535425, -0.0163188595324755, 0.0131245860829949, -0.0225336588919163, -0.0097097884863615, 0.01002386957407, -0.00101241085212678, -0.00756468018516898, -0.00376229221001267, 0.0168668311089277, -0.0192992892116308, -0.00396611075848341, -0.0148887876421213, -0.00621479889377952, -0.00160465436056256, 0.0168801955878735, 0.000389886758057401, 0.0296706538647413, 0.00634510908275843, 0.00720382062718272, -0.0469651706516743, -0.00351503677666187, -0.00403293687850237, -0.0100305518135428, -0.000390304398024455, -0.0123895024880767, -0.0274787675589323, -0.0267570484429598, 0.00673269899562001, 0.00243412959389389, -0.0191121771931648, -0.0067895008251071, 0.0166529882699251, -0.0110529866069555, 0.010144155472517, -0.0265164747834206, -0.0505203008651733, 0.0287885535508394, 0.00914845149964094, 0.00666587334126234, 0.00473794899880886, -0.0410043075680733, -0.0130778085440397, -0.0116076404228806, 0.00100238691084087, 0.0260219648480415, -0.00101074017584324, -0.0135723194107413, -0.000667422660626471, -0.00540286535397172, -0.00291026337072253, -0.0241107475012541, 0.0033362777903676, -0.0066023888066411, -0.00952267553657293, -0.0137661136686802, 0.00747112417593598, -0.0209298394620419, 0.00648210197687149, 0.0137661136686802, 0.0227207709103823, 0.0260219648480415, -0.0108257792890072, -0.0134453503414989, -0.0104782851412892, -0.0262224413454533, 0.0122558511793613, -0.0208229180425406, 0.0160649213939905, 0.0147685008123517, 0.0354978628456593, 0.00363198202103376, -0.0306596755981445, -0.0103179030120373, 0.000975656614173204, 0.0121890250593424, -0.00819284282624722, 0.0248191002756357, 0.0311942808330059, 0.0195799581706524, -0.0147016746923327, 0.0351771004498005, 0.00668592099100351, 0.00272482191212475, -0.00910167302936316, -0.00206157588399947, 0.0233355686068535, -0.00532267475500703, 0.00965632777661085, 0.0236964263021946, -0.00273317494429648, 0.0435436889529228, 0.0176553744822741, 0.00743102841079235, 0.00801241304725409, 0.0131914122030139, -0.0108792390674353, -0.0112200509756804, -0.0155704105272889, -0.00862052757292986, 0.0122892642393708, 0.0105116972699761, -0.0112601462751627, -0.0171341337263584, -0.00341145694255829, 0.0450673177838326, 0.00196300772950053, -0.00524582481011748, -0.00608114758506417, 0.0104582365602255, 0.0027064448222518, 0.0248725619167089, 0.0155436797067523, -0.000109949316538405, 0.00861384533345699, -0.0198338963091373, 0.0176152791827917, 0.00353842577897012, 0.00716372532770038, -0.00828639883548021, 0.0124897407367826, -0.0157307926565409, -0.00541957188397646, -0.00878090970218182, -0.00990358274430037, 0.0231484547257423, 0.00755131477490067, 0.00744439382106066, 0.0288420133292675, 0.00458759069442749, -0.00130310305394232, -0.0122491680085659, 0.00117529870476574, -0.010210981592536, 0.00683961994946003, 0.00521241221576929, 0.012215755879879, 0.00707016931846738, -0.00622148159891367, -0.0215179063379765, -0.00519904680550098, -0.0137794790789485, 0.0027949889190495, -0.0496649295091629, -0.00670930976048112, -0.000935561140067875, -0.00229212478734553, -0.00075346085941419, -0.00307064526714385, -0.0418062172830105, 0.000687470368575305, 0.0302319899201393, 0.0054362784139812, -0.0034949891269207, 0.237579062581062, 0.00644534779712558, -0.00418663630262017, 0.0210902206599712, 0.0208095535635948, 0.00416324706748128, 0.0412448793649673, 0.0164124146103859, 0.018537474796176, -0.00976324919611216, 0.0107990484684706, -0.020168025046587, -0.0246319882571697, 0.00255107483826578, -0.0133050158619881, -0.0169202908873558, -0.027933182194829, -0.0230148043483496, -0.0116009581834078, 0.0249661169946194, 0.0322367623448372, -0.0156639665365219, 0.0053895004093647, -0.00615799706429243, 0.0110730342566967, 0.0113136069849133, -0.00456420192494988, 0.0224935635924339, 0.00948926340788603, 0.0116611011326313, -0.0388658829033375, -0.015222916379571, 0.000250805576797575, 0.0166797190904617, -0.00332124205306172, -0.027933182194829, 0.00182601483538747, -0.0203284062445164, -0.00249093142338097, 0.0205155201256275, 0.0169470217078924, 0.0151961855590343, -0.0098969005048275, -0.0131379514932632, -0.0102310292422771, 0.0418329462409019, -0.0265833009034395, -0.0114071629941463, 0.027933182194829, -0.00688973953947425, -0.0390529967844486, -0.00270477402955294, 0.00331121822819114, 0.00946253258734941, 0.00364200584590435, -0.0119684999808669, 0.0214911755174398, 0.00793890468776226, -0.00593747198581696, 0.00473460741341114, 0.000407637358875945, 0.0167198143899441, -0.0120353261008859, 0.0384114682674408, -0.0103914113715291, 0.0202214848250151, 0.0142205292358994, 0.0106988102197647, 0.0109727960079908, -0.0254606287926435, -0.00915513373911381, 0.00845346320420504, -0.00586396362632513, 0.000603520486038178, -0.0168534647673368, -0.0235627759248018, 0.0248191002756357, 0.0199942775070667, 0.0278529915958643, -0.0167198143899441, -0.00400954764336348, 0.00648544356226921, -0.000645704276394099, -0.00175250647589564, 0.00986348744481802, -0.00542959570884705, 0.0274787675589323, -0.000589737668633461, -0.022734135389328, 0.0101575208827853, -0.010210981592536, 0.00053627701709047, -0.000687888008542359, 0.0047546555288136, 0.000842422712594271, 0.036273043602705, 0.0206759013235569, 0.0215045418590307, 0.0148486914113164, -0.0103914113715291, -0.0043069226667285, 0.0556525215506554, 0.0319961905479431, -0.017909312620759, 0.0201279297471046, -0.00222529890015721, -3.57100361725315e-05, -0.0013331746449694, 0.00603771070018411, -0.0176954697817564, 0.0201412942260504, -0.0238568093627691, 0.00108007190283388, -8.6769119661767e-05, 0.0181766171008348, 0.00361527549102902, 0.0116343712434173, -0.0219455920159817, -0.00692315259948373, 0.00529260281473398, 0.0152095509693027, -0.0160248260945082, -0.0146081186830997, 0.0294300802052021, 0.017160864546895, -0.0201145652681589, -0.0240572858601809, -0.015597140416503, 0.0200343728065491, -0.0247255451977253, 0.0253136120736599, -0.0232286471873522, 0.0175484530627728, -0.0374224446713924, -0.000213111634366214, -0.00611790176481009, 0.00809260364621878, 0.00974320061504841, -0.0157307926565409, 0.00785871315747499, -0.0135990492999554, 0.00677279429510236, 0.00725059863179922, -0.00650549121201038, 0.0170138478279114, 0.00212673097848892, 0.038839153945446, -0.00872744899243116, -0.0106787625700235, 0.00208329409360886, -0.00542959570884705, 0.00405298452824354, -0.00819284282624722, -0.0397212542593479, -0.00290023954585195, -0.0132649205625057, -0.0341880768537521, -0.00633174413815141, -0.00303389108739793, 0.032129842787981, -0.00977661367505789, -0.0263694580644369, 0.0377164781093597, -0.00108926044777036, -0.0249393861740828, -0.0118548963218927, -0.169256374239922, 0.0298310350626707, 0.00284510827623308, -0.00421670777723193, -0.00445059780031443, -0.019980913028121, 0.0235895067453384, -0.00852697156369686, -0.00967637542635202, 0.00407971488311887, 0.0286816321313381, 0.0257947575300932, -0.00856706686317921, -0.0136992884799838, -0.00236730370670557, -0.00680620735511184, -0.0451742373406887, 0.0156372357159853, 0.0121288821101189, -0.00216682651080191, 0.0186844933778048, -0.0428486987948418, -0.00852697156369686, -0.035818625241518, 0.00315250689163804, -0.0172143243253231, -0.0339475050568581, 0.0480076521635056, -0.0120219606906176, -0.0198071654886007, -0.0421269796788692, -0.00237398641183972, 0.0230148043483496, 0.0188582390546799, 0.0184973794966936, -0.015597140416503, 0.024926021695137, -0.00443723285570741, -0.0144611019641161, 0.0159312691539526, 0.025554183870554, 0.0115207675844431, 0.0071904556825757, -0.0264496505260468, -0.0233890283852816, 0.0119551345705986, -0.000944749685004354, 0.00458424957469106, 0.000128535248222761, -0.0254338979721069, 0.00180596706923097, -0.0188448745757341, -0.0270109865814447, 0.014942248351872, 0.0259150434285402, -0.00335131376050413, -0.0182300768792629, 0.00752458442002535, 0.0023004780523479, -0.0204085987061262, 0.00614129053428769, -0.0145680233836174, 0.0135790016502142, -0.00919522903859615, -0.0402291305363178, -0.00659904722124338, -0.0105384280905128, -0.00641861744225025, -0.0516429729759693, 0.0211570467799902, 0.00587064633145928, -0.000760143448133022, 0.0188716053962708, -0.0348830670118332, 0.00486825918778777, 0.00765823619440198, 0.00869403593242168, 0.00795895233750343, -0.00516897533088923, 0.0247121788561344, 0.0039427219890058, 0.0227875970304012, -0.000670346256811172, -0.0124362809583545, -0.0196200534701347, 0.012055373750627, -0.00403293687850237, 0.0313813947141171, -0.00596420234069228, 0.00747112417593598, -0.00635179178789258, -0.00612124288454652, -0.00108257785905153, -0.0205957107245922, -0.0008311458514072, 0.0120754214003682, 0.0154902189970016, -0.0040830560028553, 0.0182300768792629, -0.0115474974736571, -0.0048716003075242, 0.0188181437551975, -0.0388926118612289, 0.0387322306632996, -0.000553401128854603, -0.000433532346505672, 0.0160248260945082, 0.0194062106311321, 0.00932888127863407, -0.00409642141312361, -0.0148620568215847, 0.0117412926629186, 0.0326109901070595, 0.0106854448094964, 0.0241508428007364, 0.0161317475140095, 0.00784534867852926, 0.00738425040617585, 0.0257813911885023, -0.000172180836671032, 0.0349365249276161, 0.00563007313758135, -0.0252467859536409, 0.0119751822203398, -0.0200210083276033, -0.0135923670604825, -0.124670207500458, -0.0379837825894356, 0.0100038219243288, 0.0127436788752675, -0.0147685008123517, 0.0322100333869457, 0.0130911730229855, 0.0360592007637024, -0.0148353269323707, 0.0294568110257387, -0.00206324644386768, -0.0136057315394282, -0.0286014396697283, 0.00810596905648708, 0.0243513192981482, -0.0123627725988626, -0.0117011964321136, -0.0127169489860535, -0.00168066879268736, 0.0188181437551975, 0.00130978564266115, -0.01550358440727, 0.00180095515679568, -0.00546634988859296, -0.00863389298319817, 0.000108278669358697, -0.0269842557609081, 0.0157441571354866, 0.00460763880982995, -0.00188615813385695, -0.00456086033955216, -0.0186443962156773, 0.00504200626164675, -0.0168668311089277, -0.0155303152278066, 0.0227742306888103, -0.053995244204998, -0.0212372373789549, 0.0059074005112052, -0.0234157592058182, 0.00507541932165623, 0.0109059698879719, 0.00376563356257975, -0.0309537090361118, 0.0186978578567505, -0.0310606304556131, -0.0194730367511511, 0.00356515613384545, -0.0133451111614704, -0.00117028679233044, -0.0331723242998123, 0.0084601454436779, -0.0391331873834133, -0.00171241105999798, -0.00981002673506737, -0.0226272139698267, -0.0116945141926408, -0.019914086908102, -0.00954940635710955, -0.0182300768792629, 0.00622816430404782, 0.00235560932196677, -0.0318090803921223, 0.0140334172174335, 0.00174248265102506, 0.0112133687362075, -0.0233890283852816, -0.00298711308278143, 0.0185107458382845, -0.0244849715381861, -5.05435355080408e-06, 0.00988353509455919, -0.0206491705030203, 0.0239904597401619, -0.0200210083276033, 0.0163589548319578, 0.00936897657811642, -0.0138329397886992, 0.026997622102499, -0.00788544397801161, -0.0206090752035379, -0.0156906973570585, 0.00861384533345699, -0.0212105084210634, 0.0326377190649509, 0.0110262567177415, -0.0288687441498041, -0.00260787666775286, 0.00294701755046844, 0.0184572841972113, 0.0137126529589295, 0.000279415369732305, 0.0114071629941463, 0.0133451111614704, -0.0173880718648434, 0.0314081236720085, -0.00868067052215338, -0.0164658762514591, 0.0137794790789485, 0.0326644480228424, -0.0281470250338316, -0.0243112239986658, -0.0410043075680733, 0.00914176926016808, 0.0036653948482126, -0.0139398612082005, -0.0253403410315514, 0.000135217822389677, -0.00509212585166097, -0.0161718428134918, 0.00291193393059075, 0.0131379514932632, -0.00342816323973238, 0.00107840122655034, -0.0143809113651514, 0.0166396237909794, -0.0416191071271896, 0.00181599101051688, 0.0248591955751181, -0.0233088377863169, 0.0379035919904709, -0.00352840195409954, 0.0217183828353882, -0.0102176638320088, 0.0150892650708556, 0.00325441616587341, -0.00987016968429089, 0.0138463051989675, -0.00239570485427976, 0.0156773310154676, -0.012964203953743, -0.0166663527488708, 0.0042367554269731, -0.0268372390419245, 0.00355847366154194, 0.0228811521083117, 0.00102661130949855, -0.0162253025919199, 0.00635847449302673, 0.0143140852451324, 0.0140334172174335, 0.0225202925503254, -0.03619284927845, -0.036647267639637, 0.000960620818659663, -0.0416725650429726, -0.0078720785677433, -0.0100305518135428, -0.00560668436810374, 0.00840668473392725, 0.00152864004485309, 0.0176553744822741, 0.0129842525348067, 0.0141136078163981, -0.0289756655693054, -0.0214911755174398, 0.00740429805591702, -0.00596420234069228, 0.00244582421146333, 0.00703007355332375, 0.00514558609575033, -0.0136591922491789, 0.0213708896189928, 0.0222262591123581, 0.0137928444892168, 0.00747780641540885, -0.00151360430754721, -0.0051890229806304, -0.0107255401089787, 0.00828639883548021, 0.00173078814987093, -0.0184572841972113, -0.00856038462370634, 0.00988353509455919, 0.0239770952612162, -0.000419958349084482, 2.8348755222396e-05, 0.0012613368453458, -0.0017508357996121, -0.00551981059834361, 0.000203087765839882, 0.0142338946461678, 0.00323770986869931, -0.00956277176737785, -0.0185642056167126, 0.0447465516626835, 0.0130978561937809, 0.0156906973570585, 0.00628162501379848, 0.0127436788752675, -0.0416725650429726, 0.00625155307352543, -0.0401222072541714, -0.02310835942626, 0.00172744679730386, -0.0063551333732903, 0.0358720868825912, 0.0168267358094454, 0.0115074021741748, 0.0431694649159908, 0.0265833009034395, 0.0124763762578368, 0.0277728009968996, -0.013278285972774, 0.00522577716037631, -0.0187112223356962, -0.017227690666914, -0.00321599142625928, -0.00668592099100351, -0.00294033507816494, -0.0332792475819588, 0.00556324748322368, 0.00507876044139266, 0.0261021554470062, 0.0317823477089405, 0.013558954000473, -0.0086606228724122, -0.0117546571418643, -0.014594754204154, -0.000595167221035808, -0.0257012005895376, 0.0339207723736763, 0.018537474796176, 0.010117425583303, -0.0269174296408892, -0.0140467826277018, 0.0253938026726246, 0.00297875981777906, 0.00243747094646096, -0.0266233962029219, 0.0109460651874542, 0.0241508428007364, -0.0260887909680605, 0.00771169690415263, -0.022426737472415, -0.014902152121067, -0.0137928444892168, -0.0335198193788528, -0.0124496454373002, 0.0180563293397427, 0.0191656388342381, 0.048863023519516, 0.0188448745757341, -0.00502864131703973, -0.00705680390819907, -0.0103780459612608, 0.00888114795088768, 0.0128238704055548, 0.00210501253604889, 0.0192458294332027, 0.00860716216266155, 0.0542090870440006, -0.000232637306908146, 0.00474797282367945, -0.0182568076997995, -0.0202348511666059, 0.00497518060728908, 0.00421670777723193, 0.00791217386722565, -0.0367541871964931, 0.0143140852451324, 0.0153699330985546, -0.00534940510988235, 0.027558958157897, 0.0128372348845005, -0.0290825869888067, -0.0215847324579954, 0.0330921337008476, -0.0205689799040556, 0.00926205515861511, -0.0396143309772015, 0.014968978241086, 0.00636849831789732, -0.0098033444955945, -0.0133250635117292, 0.0249393861740828, 0.00351837812922895, -0.00702339131385088, 0.0147016746923327, 0.0142606245353818, -0.000994033762253821, -0.0086606228724122, 0.00788544397801161, -0.0152763770893216, -0.0349365249276161, -0.0151427248492837, -0.00509212585166097, -0.0272114630788565, -0.00850024074316025, -0.00115107430610806],id:"592b75a5bd75fd11f09ef037e2768ff3",source:"state_of_union.txt",text:"Second – we must prepare for new variants. Over the past year, we’ve gotten much better at detecting new variants.
If necessary, we’ll be able to deploy new vaccines within 100 days instead of many more months or years.
And, if Congress provides the funds we need, we’ll have new stockpiles of tests, masks, and pills ready if needed.
I cannot promise a new variant won’t come. But I can promise you we’ll do everything within our power to be ready if it does.
Third – we can end the shutdown of schools and businesses. We have the tools we need.
It’s time for Americans to get back to work and fill our great downtowns again. People working from home can feel safe to begin to return to the office.
We’re doing that here in the federal government. The vast majority of federal workers will once again work in person.
Our schools are open. Let’s keep it that way. Our kids need to be in school."})
(:Chunk{embedding:[-0.0062456545419991, 0.000431062595453113, -0.00149198074359447, -0.0178806241601706, 0.0269796401262283, 0.00559761421754956, 0.000904280866961926, 0.000596792320720851, -0.0241097472608089, 0.015711672604084, 0.012702913954854, 0.0264638531953096, -0.00897337589412928, -0.00370639422908425, 0.0162406861782074, 0.0137278763577342, 0.0431938767433167, -0.0261993482708931, 0.0106662157922983, -0.0203273072838783, -0.0197850707918406, 0.0125045347958803, 0.000570754986256361, -0.000193420215509832, -0.0159232784062624, 0.0197321679443121, 0.0406281650066376, -0.0177351459860802, 0.0034154374152422, -0.00820630788803101, -0.0189915504306555, -0.0250619705766439, -0.0319259092211723, 0.0131856380030513, -0.00997188687324524, -0.00390808051452041, -0.0194412115961313, 0.00337741454131901, 0.015460392460227, -0.0324284695088863, 0.0230913981795311, -0.0036171234678477, 0.00022069743135944, 0.0061034825630486, -0.0137543268501759, 0.00809389259666204, -0.0176028925925493, -0.0259745176881552, -0.0112216789275408, 0.0103421956300735, 0.0296776052564383, 0.00464208517223597, -0.0181980319321156, -0.0202611815184355, -0.0184096377342939, 0.00044842081842944, 0.000259546795859933, 0.00647048512473702, -0.0100247878581285, -0.038750171661377, -0.00357414106838405, -0.0041758930310607, -0.0379302017390728, 0.0011894516646862, -0.0304711237549782, -0.0192428324371576, -0.0341213122010231, 0.0206843912601471, 0.0137411011382937, 0.0207901932299137, 0.0497536323964596, 0.0415274873375893, 0.00383203476667404, -0.000915026408620179, 0.0178144983947277, -0.00626879883930087, -0.0197189431637526, 0.00294924504123628, 0.00866258051246405, 0.00663910759612918, 0.0112415170297027, -0.0164522901177406, -0.0194544363766909, -0.0123590556904674, 0.0318201072514057, 0.00782277341932058, 0.0174045134335756, 0.0290956906974316, -0.020909221842885, -0.0146800987422466, 0.000409571453928947, 0.0139923822134733, -0.00993221066892147, 0.0194544363766909, -0.00396098149940372, 0.0180922299623489, 0.00457265228033066, 0.0187138188630342, 0.00681103672832251, -0.0246123094111681, 0.00330632855184376, -0.0024499895516783, -0.0263183750212193, -0.0120019726455212, -0.022364005446434, -0.0100049497559667, -0.0189518760889769, -0.0286460313946009, 0.00931062083691359, 0.00921143125742674, -0.00317407539114356, 0.00572325475513935, -0.00946271233260632, -0.0336187481880188, 0.00567365996539593, -0.0129145197570324, -0.0253926031291485, 0.00482393335551023, 0.00278227543458343, -0.00619605975225568, 0.00802115350961685, 0.00638452032580972, 0.0384856648743153, 0.00972060579806566, 0.0124053442850709, -0.021795317530632, -0.0429822728037834, -0.000915853015612811, 0.0117639172822237, -0.0140717346221209, 0.0183302853256464, 0.0297305062413216, 0.0113076437264681, -0.0233030039817095, -0.00118201249279082, 0.0249032657593489, -0.00954206380993128, 0.00844436325132847, -0.00920481886714697, 0.00810711737722158, 0.0136617496609688, 0.00927755795419216, 0.0024417235981673, -0.00232434901408851, 0.0094494866207242, 0.0224830340594053, 0.034465167671442, -0.0113473199307919, 0.0162803623825312, 0.00968754291534424, 0.00535625219345093, -0.0188989732414484, 0.0154339419677854, -0.00282195140607655, 0.00335757667198777, 0.0161084327846766, -0.000208092053071596, 0.0288576353341341, -0.00739295082166791, -0.0176293440163136, -0.00648371037095785, 0.0106463776901364, 0.0125904986634851, 0.00445362459868193, -0.00254421983845532, 0.00855677854269743, 0.0105339623987675, 0.0164390653371811, -0.0082790469750762, 0.0131195113062859, -0.0065465304069221, 0.0323226675391197, 0.000645973952487111, 0.0150768579915166, -0.0169416274875402, 0.0290692411363125, -0.0194412115961313, 0.00621589785441756, -0.00696974061429501, 0.000858818821143359, -0.0116382762789726, 0.020023126155138, 0.0143759166821837, 0.031555600464344, -0.00671845953911543, 0.00779632292687893, 0.0540386326611042, 0.00444370554760098, 0.0114002209156752, -0.0163861643522978, 0.0104678366333246, 0.0206447150558233, 0.0116382762789726, -0.0246916618198156, -0.634391844272614, -0.00946932472288609, 0.027561554685235, 0.00192758953198791, 0.00745246466249228, -0.00341874361038208, -0.00056579546071589, 0.0245726332068443, -0.0402049534022808, 0.0367134734988213, -0.0266093313694, 0.005147953517735, -0.031423345208168, -0.0251413229852915, -0.015142984688282, -0.00871548242866993, -0.0059811482205987, -0.00726731028407812, -0.0118697192519903, 5.58911597181577e-06, -0.027561554685235, 0.0362638123333454, -0.0112878056243062, 0.0222582034766674, -0.0164258405566216, 0.00794180110096931, 0.0254587307572365, -0.0203669834882021, 0.00280541973188519, -0.01497105602175, -0.0240171700716019, 0.019137030467391, -0.0240832976996899, -0.00926433224231005, 0.0498065315186977, 0.00582244480028749, -0.0154868429526687, -0.00781616102904081, 0.0183170605450869, -0.00792196299880743, -0.0109770111739635, 0.000206128926947713, 0.00683748722076416, -0.00300214625895023, -0.0246519856154919, -0.00239543500356376, -0.00919159315526485, -0.00825920887291431, 0.0292543955147266, -0.00059183279518038, -0.00968092959374189, -0.00852371472865343, 0.016346488147974, 0.00351462722755969, -0.0067581357434392, 0.0156058706343174, 0.0174838658422232, -0.00955528952181339, 0.0264241769909859, -0.0215837135910988, -0.0146933244541287, -0.00821953266859055, -0.00591171532869339, 0.00687055056914687, -0.0284873265773058, 0.00985285919159651, 3.2649993954692e-05, 0.0058389762416482, 0.01354272197932, -0.0220598243176937, 0.00165481748990715, 0.0121606765314937, -0.0158307012170553, -0.0172458104789257, 0.0278525110334158, 0.0163993891328573, -0.0024863590952009, -0.045997641980648, -0.0247313380241394, 0.011704402975738, 0.0143891414627433, -0.0335658490657806, 0.0136352991685271, 0.0138469040393829, 0.00728714792057872, 0.0130137093365192, -0.0172061342746019, 0.0147462254390121, 0.0203008577227592, 0.0229591447860003, -0.00519093591719866, 0.0294924508780241, 0.00220201490446925, -0.0246123094111681, 0.0105670262128115, 0.00938336085528135, -0.0175367668271065, -0.00313439941965044, 0.0204066596925259, 0.0163332633674145, -0.00240370095707476, -0.0305769257247448, 0.0360786579549313, 0.0115060238167644, 0.00612662686035037, 0.00693667726591229, -0.0305240247398615, 0.0172590352594852, 0.0342535637319088, -0.0353909395635128, -0.00641427747905254, 0.00642750272527337, -0.00788890011608601, 0.00208464008755982, 0.0125111471861601, -0.0198644213378429, -0.00998511258512735, 0.0165845435112715, -0.0133443418890238, -0.0127492025494576, 0.0164522901177406, 0.00423210067674518, 0.00818646978586912, -0.0146933244541287, 0.0213588830083609, -0.000517853710334748, 0.0048834471963346, -0.0160687565803528, -0.000212018319871277, -0.00990576017647982, 0.00482723955065012, -0.0231178496032953, 0.0293601974844933, -0.00198545027524233, 0.0101636536419392, 0.0259877424687147, -0.00331790070049465, -0.00517771067097783, 0.00517109781503677, -0.0113605447113514, 0.00645395321771502, 0.0151958856731653, -0.0135823972523212, -0.00706893065944314, -0.0207505188882351, -0.0105273500084877, -0.0141907623037696, 0.000730698637198657, -0.00426847022026777, -0.0199173223227262, 0.017232583835721, -0.00242684525437653, 0.00667217094451189, 0.00456934608519077, 0.0144288176670671, 0.00852371472865343, -0.000645560678094625, -0.0084046870470047, 0.00229624519124627, -0.00903288926929235, 0.020909221842885, 0.0354438424110413, 0.000801784684881568, -0.00380227784626186, -0.00507190776988864, 0.00639774557203054, -0.0189386494457722, 0.0250222943723202, 0.00576293049380183, -0.0281170178204775, 0.0176557935774326, -0.0223375558853149, 0.00842452514916658, 0.00633492553606629, 0.0428500175476074, 0.00601090537384152, -0.0149578303098679, -0.00436765979975462, -0.0118035925552249, 0.00831210985779762, 0.0134633695706725, -0.00368655635975301, -0.0227607656270266, 0.0288840867578983, 0.0183302853256464, -0.00109439471270889, 0.00385517906397581, -0.00835178606212139, 0.00541576603427529, 0.0224169082939625, 0.0117176286876202, 0.000990245374850929, -0.00257067056372762, 0.01029590703547, 0.0173516124486923, 0.010408322326839, -0.0119622964411974, -0.012623562477529, 0.0307356305420399, -0.00545213557779789, 0.0206314902752638, 0.0186344683170319, 0.00696312775835395, -0.00056579546071589, 0.0162935871630907, -0.0276938080787659, -0.0149578303098679, -0.00235079950653017, -0.00516117876395583, 0.0262919254601002, -0.0129740331321955, -0.0335922986268997, -0.00851710233837366, -0.0121077755466104, -0.0129674207419157, 0.0224962588399649, -0.00666555855423212, -0.00233426806516945, -0.010785243473947, 0.0203802082687616, -0.0206182654947042, -0.00301702483557165, 0.00589187769219279, -0.0298627596348524, -0.042955819517374, 0.00681103672832251, -0.00734666222706437, 0.0259083900600672, 0.0119755221530795, -0.0244403798133135, -0.00879483390599489, 0.0184096377342939, 0.00564720900729299, 0.0289898887276649, -0.00942303612828255, 0.00428830832242966, -0.00480078905820847, -0.00745246466249228, 0.0319523587822914, 0.013132737018168, 0.00199867552146316, -0.00665233284235001, 0.000788972654845566, -0.0082790469750762, -0.0111423274502158, -0.00975366961210966, 0.0473730750381947, -0.00257067056372762, 0.0125574357807636, -0.00407339679077268, 0.0101636536419392, -0.0036898625548929, -0.00586873339489102, 0.0115390866994858, -0.00337245501577854, -0.0420565009117126, -0.00798808969557285, 0.0232633277773857, 0.0504678003489971, 0.0340419597923756, 0.0210679247975349, 0.00326003995724022, 0.0153281390666962, -0.0149975065141916, 0.00941642373800278, -0.00138700485695153, -0.0215572621673346, -0.00958174001425505, -0.0165580939501524, -0.00533310789614916, -0.0204331111162901, 0.0172854848206043, 0.0158439259976149, -0.0121540641412139, 0.00445693079382181, 0.0201950538903475, -0.0280376654118299, -0.00204827054403722, 0.00317738181911409, 0.00185650342609733, 0.00536947743967175, -0.0475317798554897, -0.0174574144184589, 0.0115456990897655, -0.0152752380818129, -0.0112613551318645, -0.000339931895723566, -0.0103752594441175, -0.0299421120434999, 0.0210943762212992, -0.0212927553802729, 0.0167167969048023, -0.0150371817871928, 0.0065465304069221, -0.000804264447651803, -0.0136485239490867, 0.0335922986268997, -0.00780954817309976, 0.00428500166162848, -0.0161877851933241, -0.0307356305420399, -0.00182178698014468, 0.000445527781266719, -0.0231178496032953, -0.00566374091431499, 0.00633161934092641, 0.00273268064484, -0.0141510860994458, -0.0132848285138607, -0.0097668943926692, 0.0212398543953896, 0.00131591875106096, -0.0137146506458521, 0.0182906091213226, 0.0070424797013402, 0.00469168042764068, -0.0353644900023937, 0.00725408503785729, 0.000381054356694221, -0.0269664153456688, -0.0168093740940094, -0.0241626482456923, -0.00215076678432524, -0.0241890996694565, 0.121778696775436, 0.00122334156185389, -0.000471978390123695, 0.00623573549091816, 0.00846420135349035, 0.0200098995119333, -0.00793518871068954, 0.00841129943728447, 0.00600098632276058, -0.0105207376182079, -0.00801454018801451, 0.00650354847311974, -0.00386509811505675, -0.00342866266146302, 0.000254173995926976, 0.0234352573752403, 0.0178144983947277, 0.00271780206821859, -0.00601090537384152, -0.0067581357434392, 0.00862290523946285, -0.0222317539155483, 0.0326400771737099, 0.034465167671442, -0.0142172127962112, -0.0114398971199989, 0.0120813241228461, 0.0408397689461708, -0.00284344260580838, -0.00337741454131901, -0.0244403798133135, 0.0184757634997368, -0.00058480683946982, 0.0279847644269466, -0.0130269341170788, -0.000590179639402777, -0.0145478453487158, 0.00322201708331704, 0.0238187909126282, -0.0133906304836273, 0.0141114098951221, 0.0171664580702782, -0.00348817673511803, -5.32628873770591e-05, 0.0065630623139441, 0.00593485962599516, -0.00972060579806566, -0.00112497829832137, -0.0128219425678253, -0.0198511965572834, 0.037480540573597, -0.0264770798385143, -0.0273499488830566, -0.028196370229125, 0.0122532537207007, 0.0149313798174262, -0.00377582712098956, -0.0170738808810711, -0.0128417797386646, 0.0124053442850709, -0.0158307012170553, -0.0324549227952957, -0.00720779644325376, -0.00667878380045295, -0.0186873693019152, -0.026106771081686, -0.00480078905820847, -0.00794841349124908, -0.0209753476083279, -0.0232104267925024, 0.0116184381768107, -0.0329310335218906, 0.0127227520570159, -0.00691683916375041, -0.00224995659664273, 0.00737311271950603, 0.00861629191786051, -0.00979334488511086, 0.000201272749109194, -0.0111224893480539, 0.00513803446665406, -0.0245329570025206, -4.14065980294254e-05, -0.0506529547274113, -0.0130004836246371, -0.0141643118113279, -0.0166242197155952, -0.00319391349330544, -0.00776325957849622, 0.0319523587822914, 0.00366671825759113, 0.018753495067358, 0.0164919663220644, -0.00864274241030216, -0.0107521805912256, 0.011215066537261, 0.00363696133717895, 0.0151033084839582, -0.0359993055462837, -0.0180393289774656, 0.0187138188630342, -0.00952883902937174, 0.0136485239490867, -0.0177615974098444, -0.00834517367184162, -0.0215969383716583, 0.0189518760889769, 0.0123127670958638, -0.0303653217852116, -0.0245461836457253, 0.0228797942399979, -0.0285402275621891, -0.0222317539155483, -0.00691683916375041, 0.0237658899277449, -0.0149446045979857, 0.0192031562328339, 0.00627541169524193, 0.00240866024978459, -0.0174838658422232, -0.0379037521779537, -0.0265564303845167, 0.00821292027831078, 0.0198644213378429, -0.0138469040393829, 0.0130666103214025, 0.00356752844527364, -0.0238320156931877, -7.80086920713075e-05, 0.00317903491668403, 0.00775003433227539, 0.0286460313946009, 0.00735327461734414, -0.0119755221530795, -0.0132583770900965, -0.0154736172407866, 0.0174441896378994, 0.013417080976069, 0.000738551141694188, -0.000250867684371769, -0.0132120884954929, -0.00883451011031866, 0.00667878380045295, -0.0316349528729916, -0.00265663489699364, -0.0354967415332794, 0.0132120884954929, 0.0234881583601236, 0.00483385240659118, 0.0211472772061825, 0.00495618628337979, -0.0241361986845732, -0.00604396872222424, 0.00423210067674518, -0.0105934767052531, 0.000567035342101008, 0.00269135134294629, 0.00107620994094759, 0.0250222943723202, 0.0215969383716583, 0.0308149829506874, -0.0255248565226793, -0.0057860747911036, 0.0100843021646142, 0.0138072278350592, 0.00232600211165845, -0.00511158397421241, 0.0112084541469812, 0.0108050815761089, 0.00970076769590378, -0.00078855938045308, 0.0201950538903475, -0.0136882001534104, 0.0111621655523777, 0.0192163810133934, -0.0208695456385612, -0.00518762972205877, -0.018819622695446, -0.0311588402837515, -0.0170342046767473, -0.012530985288322, -0.000473631575005129, -0.00832533556967974, 0.00967431720346212, -0.0140585089102387, -0.0223507806658745, 0.0201553795486689, -0.0134369190782309, 0.0219672471284866, -0.00606050016358495, 0.0275086537003517, 0.000805090996436775, -0.000979499774985015, 0.00414613587781787, -0.00784922391176224, -0.0161745585501194, -0.000282071152469143, -0.0195470135658979, -0.00846420135349035, 0.0123590556904674, 0.0101438155397773, 0.00258720200508833, -0.00374937662854791, -0.0144684938713908, 0.00672507239505649, 0.0482723973691463, -0.0188725236803293, -0.011611825786531, 0.0137675516307354, -0.032190416008234, 0.0124450204893947, -0.0284608770161867, -0.00981979537755251, -0.00517109781503677, -0.0121805146336555, -0.00611670780926943, -0.0303917713463306, 0.00800792779773474, 0.00705570494756103, -0.017867399379611, -0.0134633695706725, 0.00540254078805447, -0.0172193590551615, -0.00671845953911543, 0.0192296076565981, 0.023951044306159, -0.00159613008145243, -0.0233426801860332, -0.0074656899087131, -0.00409984728321433, 0.00716812023892999, 0.0104281604290009, 0.0171796828508377, -0.0230913981795311, -0.00779632292687893, -0.0050256191752851, 0.0358935035765171, -0.00258720200508833, -0.0488014109432697, 0.0251016467809677, 0.0225359350442886, -0.00256571103818715, -0.0130269341170788, -0.0157248992472887, -0.00532318884506822, 0.0279583148658276, 0.00208133389241993, -0.0195734649896622, 0.0161348842084408, -0.0422681048512459, -0.0177351459860802, 0.0139923822134733, 0.00436104740947485, 0.0221259500831366, -0.00725408503785729, -0.0264374036341906, -0.000349644251400605, -0.0136352991685271, 0.0126367872580886, -0.0168225988745689, -0.00399073865264654, 0.0294130984693766, -0.0262919254601002, 0.0198511965572834, 0.0130467722192407, 0.00378243997693062, -0.0208827704191208, 0.00954206380993128, -0.0357877016067505, 0.0212398543953896, -0.0415539368987083, -0.0158042497932911, -0.0202347300946712, 0.0109836235642433, 0.0116184381768107, -0.0260009672492743, -0.0301272664219141, 0.00622251024469733, -0.0246652103960514, 0.0158836022019386, 0.0346503220498562, -0.00869564432650805, -0.025088420137763, -0.00532649550586939, 0.00988592207431793, -0.00277566281147301, -0.005164485424757, -0.00741278845816851, 0.0261861216276884, -0.00722102168947458, 0.0129145197570324, -0.000394486327422783, -0.0185286644846201, -3.48197718267329e-05, -0.00739956321194768, -0.00734666222706437, 0.00406678393483162, 0.0197321679443121, -0.0246387608349323, 0.031555600464344, 0.00716150784865022, 0.00772358337417245, -0.040046252310276, -0.0105141252279282, -0.005766237154603, -0.0210547000169754, 0.00542899128049612, 0.0136882001534104, -0.0279318634420633, -0.0319788083434105, 0.0152091113850474, 0.00355430319905281, 0.000303148990496993, -0.0133245037868619, -0.00422548782080412, -0.00198379717767239, 0.000803851115051657, -0.0195470135658979, -0.0283550731837749, 0.0572920627892017, 0.00198545027524233, 0.0147462254390121, 0.000201582719455473, -0.0208430960774422, -0.0232501029968262, -0.0154736172407866, 0.0111886160448194, 0.0372953861951828, -0.00974044390022755, -0.0186873693019152, -0.0138601288199425, 0.011499410495162, 0.000610430899541825, -0.017298711463809, 0.00573317380622029, 0.00155810732394457, -0.00739956321194768, 0.00309141725301743, -0.0016234073555097, -0.0297040548175573, 0.0189386494457722, -0.00802115350961685, 0.0118234306573868, 0.0142833394929767, -0.0203934349119663, -0.030920784920454, -0.0160819813609123, 0.0141510860994458, 0.0118432687595487, -0.0222846549004316, 0.0201024767011404, 0.0195205640047789, 0.0112878056243062, 0.0109505597501993, -0.0220995005220175, 0.000853859353810549, -0.0261199958622456, -0.0100314011797309, -0.00776325957849622, 0.025723235681653, 0.0179070755839348, 0.036845725029707, -0.00364026776514947, 0.0212001781910658, 0.00862951762974262, -0.012530985288322, -0.00661926995962858, -0.0103355832397938, 0.032534271478653, 0.0047776447609067, -0.00287319952622056, -0.00178872374817729, -0.0187799464911222, 0.0179335251450539, 0.0156587716192007, 0.00443048030138016, 0.002423538826406, 0.0214514601975679, -0.00976028200238943, -0.00279550068080425, -0.00157463899813592, -6.15803728578612e-05, -0.0019060984486714, -0.000277938233921304, -0.0106067024171352, -0.0176954697817564, -0.00974044390022755, 0.0187270455062389, 0.0194015353918076, -0.00907256547361612, -0.0229326952248812, 0.0108381453901529, -0.0076442314311862, 0.0182906091213226, 0.0101504288613796, 0.000142482094815932, 0.0101967174559832, -0.0261199958622456, 0.013622073456645, 0.00126880360767245, -0.0149313798174262, 0.0151562104001641, 0.00387832336127758, -0.00658620661124587, -0.0130930608138442, 0.00262191845104098, 0.00215572630986571, -0.013225314207375, 0.00829227175563574, 0.0159100536257029, 0.0308678839355707, -0.000622416322585195, -0.0106397652998567, -0.0103157451376319, 0.0120350355282426, -0.0112481294199824, 0.00396098149940372, -0.0152223370969296, 0.0272176973521709, 0.0128880683332682, -0.010897658765316, 0.0149842808023095, 0.00539262173697352, -0.0104942871257663, -0.00571002950891852, -0.0413423329591751, 0.0242420006543398, 0.00365018681623042, -0.0156852230429649, 0.0064572598785162, -0.00687055056914687, -0.0137807773426175, 0.00367663730867207, 0.0234617069363594, 0.00823275838047266, 0.0135823972523212, 0.249270722270012, 0.00378905260004103, 0.00800792779773474, 0.0173912886530161, 0.0102694565430284, 0.0276144556701183, 0.0304182227700949, 0.0116713400930166, -0.0158439259976149, 0.00597453583031893, -0.00623242929577827, 0.00536617124453187, -0.00538600934669375, 0.0011902783298865, -0.00909901596605778, 0.00500908773392439, -0.0394907891750336, -0.0139791574329138, -0.0220730490982533, 0.000406058476073667, 0.00234584021382034, -0.00477103190496564, 0.0144684938713908, -0.000448834092821926, -0.0142039870843291, -0.00359728536568582, -0.000653826456982642, 0.0214646849781275, 0.0190973542630672, 0.0122797042131424, -0.0295453518629074, 0.00547858653590083, -0.0010836492292583, 0.00694329012185335, -0.0232104267925024, -0.0131922513246536, -0.00593816628679633, -0.0109439473599195, 0.0136088486760855, 0.0122334156185389, 0.0137807773426175, 0.0233559049665928, -0.00368324993178248, -0.0108778206631541, 0.0125838862732053, 0.0427177660167217, 0.0034154374152422, 0.0084046870470047, 0.0217159651219845, 0.0208959970623255, -0.0296247042715549, 0.000630682159680873, -0.00149611372034997, 0.0322433151304722, -0.00362042966298759, -0.00251446291804314, 0.0194147620350122, 0.0150636332109571, -0.00475780665874481, 0.0161481089890003, 0.0202876310795546, -0.00120102381333709, -0.0170871056616306, 0.0349677316844463, -0.0228401180356741, 0.0274557527154684, -0.00911224167793989, 0.0249826181679964, 0.010011563077569, -0.0220201481133699, -0.00581583194434643, -0.000548023963347077, -0.0298363082110882, -0.00556455086916685, -0.00887418538331985, -0.00243015144951642, 0.0151694351807237, 0.0382211580872536, 0.0203273072838783, 0.00519754830747843, -0.0171135570853949, -0.00488014100119472, -0.00359397917054594, -0.00382872857153416, -0.0127492025494576, -0.0138336783275008, 0.0187005940824747, 0.000748883408959955, -0.0187931712716818, 0.0125442100688815, -0.000665811938233674, -0.0207240674644709, -0.0050785206258297, 0.00704909255728126, 0.0045825713314116, 0.00909240357577801, 0.0246387608349323, 0.0142965642735362, 0.0024599083699286, -0.00414282968267798, 0.00930400844663382, 0.0333013422787189, 0.0204727854579687, 0.00398412579670548, 0.030603377148509, 3.82035941584036e-05, -0.0150768579915166, 0.0215043611824512, -0.00453958893194795, -0.0311323888599873, 0.0181319061666727, -0.0304446741938591, 0.014256889000535, -0.00429161451756954, 0.00525375595316291, 0.0253793783485889, 0.00630186218768358, -0.0116647267714143, 0.0156852230429649, 0.000848073279485106, 0.000334352487698197, -0.0400991514325142, -0.0159100536257029, 0.0207505188882351, 0.00989914778620005, -0.0185551159083843, -0.0119622964411974, -0.0147462254390121, 0.00904611498117447, -0.031079487875104, 0.017616119235754, -0.0201421529054642, 0.0164787415415049, -0.0267151352018118, -0.0280112158507109, -0.000583567016292363, 0.00954867713153362, 0.00366341206245124, -0.0135030457749963, 0.00262026535347104, 0.00561083946377039, 0.00326169305481017, 0.0175632163882256, -0.00963464099913836, 0.0146007472649217, -0.0190973542630672, 0.0258554890751839, -0.00426516402512789, -0.0106728281825781, 0.0033790678717196, -0.0212398543953896, -0.00676474813371897, 0.00222019967623055, -0.0127624282613397, 0.0148652531206608, -0.0183302853256464, -0.0213324315845966, 0.0170871056616306, 0.0114134456962347, 0.012815329246223, -0.0243213530629873, -0.0157645754516125, 0.0309736859053373, -0.00563067756593227, -0.0192825086414814, -0.0224962588399649, -0.1666389554739, 0.00555463181808591, -0.0155926458537579, -0.0065994318574667, 0.00789551250636578, -0.039887547492981, 0.0183435101062059, -0.00582575099542737, -0.00479748286306858, 0.00122416811063886, 0.0279054138809443, 0.0199173223227262, -0.0153942657634616, -0.00718795834109187, -0.00100264418870211, -0.0165845435112715, -0.0343064665794373, 0.0258422642946243, 0.0193354096263647, 0.0124384080991149, 0.0327723287045956, -0.00967431720346212, -0.00113407068420202, -0.0271647945046425, -0.00984624680131674, -0.0219936966896057, -0.0216233879327774, 0.0466589070856571, -0.033830352127552, -0.0380360037088394, -0.030285969376564, 0.00657959375530481, 0.0249164924025536, 0.0117506915703416, -0.00412960443645716, -0.00497933058068156, 0.0124648585915565, 0.0181980319321156, -0.0151562104001641, 0.0248106885701418, 0.0311323888599873, 0.0268209371715784, 0.0096412543207407, -0.0134567571803927, -0.0294659994542599, 0.0117506915703416, -0.0097668943926692, -0.00945609994232655, 0.0100710764527321, -0.000626135966740549, 0.0208166446536779, -0.0208430960774422, -0.018753495067358, 0.027561554685235, 0.0230781733989716, 0.0137146506458521, 0.00193916168063879, 0.00859645381569862, 0.0178277231752872, -0.0135559467598796, 0.00191601738333702, -0.0287782829254866, -0.00277235638350248, -0.0106794415041804, -0.0115589248016477, -0.0212398543953896, -0.00885434821248055, -0.00462224753573537, -0.0303653217852116, 0.0138865802437067, -0.0133112790063024, -0.021160501986742, 0.00169449334498495, -0.0232765525579453, 0.0109571730718017, 0.00791535060852766, 0.00862290523946285, 0.00747230229899287, -0.00201520719565451, 0.0109042711555958, -0.00812695547938347, 0.0170738808810711, -0.00512150302529335, -0.00247644004411995, -0.00515456637367606, 0.00277400971390307, 0.00211605033837259, 0.0169019512832165, -0.0162935871630907, -0.00443378649652004, 7.54772845539264e-05, -0.00841791275888681, 0.00845097564160824, -0.0015829048352316, -0.00693006440997124, 0.0219275709241629, 0.0157381240278482, 0.0176954697817564, 0.00591832818463445, -0.0237129889428616, -0.0068639381788671, 0.0200760271400213, -0.0117110153660178, 0.0212001781910658, 0.0345709696412086, 0.00638782698661089, -0.00321540446020663, 0.0238320156931877, -0.01497105602175, -0.00556124467402697, -0.0262522492557764, 0.00526367500424385, 0.0181054547429085, 0.00567035330459476, 0.00997849926352501, 0.0107058919966221, -0.0097668943926692, 0.0101768793538213, 0.00189948570914567, -0.00206810841336846, 0.0448867157101631, -0.00673499144613743, -0.0210282504558563, -0.0149181541055441, -0.0223772320896387, -0.0108116939663887, -0.132253140211105, -0.0354702919721603, -0.0017920300597325, 0.0311323888599873, -0.00939658563584089, 0.028831185773015, -0.00281864497810602, 0.0243081282824278, -0.00930400844663382, 0.0347825773060322, -0.00205488316714764, -0.0327458791434765, -0.00977350678294897, 0.0178541745990515, 0.0292808450758457, 0.00847081374377012, -0.0229591447860003, -0.0356554463505745, -0.0191238038241863, 0.0171664580702782, 0.0113737704232335, -0.0168490502983332, 0.0228930190205574, -0.0167829245328903, -0.0107587929815054, -0.0184228625148535, -0.0144155928865075, 0.0470292158424854, 0.0104876738041639, 0.0128682311624289, -0.0193221848458052, 0.00941642373800278, 0.000381054356694221, -0.00314266537316144, -0.00672176573425531, 0.00705570494756103, -0.0380095541477203, -0.0221259500831366, 0.0219936966896057, -0.0367663726210594, 0.0079616392031312, -0.00788228772580624, -0.0170871056616306, -0.0306298285722733, -0.00512480922043324, -0.0133641799911857, 0.00353115890175104, 0.00360059179365635, -0.0123326051980257, -0.00991237256675959, -0.0289369877427816, 0.00672837859019637, -0.0127888787537813, -0.0117110153660178, -0.0235542841255665, -0.00523061165586114, -0.0243345778435469, 0.000220490779611282, -0.00804099068045616, -0.0201024767011404, 0.00545874843373895, -0.000645560678094625, -0.0254190545529127, 0.0201024767011404, -0.00107620994094759, 0.00409323489293456, -0.00247478694655001, -0.00942964944988489, 0.0263977274298668, -0.0229326952248812, -0.0241229739040136, 0.00163497950416058, -0.0212663058191538, 0.0314762480556965, -0.0196131411939859, -0.00189121998846531, -0.0032385487575084, -0.00537609029561281, 0.0270722173154354, -0.00777648482471704, -0.0189915504306555, -0.00514464732259512, 0.0174441896378994, -0.0128417797386646, 0.0199966747313738, 0.0212398543953896, -0.00654322421178222, 0.0133575676009059, -0.0237923394888639, 0.0159100536257029, -0.0172590352594852, 0.00159447698388249, -0.00661926995962858, -0.0109174968674779, -0.019388310611248, 0.0269399657845497, -0.00909240357577801, -0.0145346205681562, 0.00792196299880743, 0.0397817455232143, -0.0173912886530161, -0.0140320584177971, -0.0384063124656677, 0.0145213948562741, -0.00400727009400725, 0.0173912886530161, -0.0115523124113679, -0.000421763543272391, 0.00902627687901258, -0.0271647945046425, -0.0104347728192806, 0.0172458104789257, -0.0191767048090696, 0.0303388703614473, 0.0121077755466104, 0.0117308534681797, -0.0424797087907791, -0.00524053070694208, 0.0358141511678696, 0.011102651245892, 0.0036534930113703, 0.0198908727616072, 0.00928417034447193, -0.00650024181231856, 0.0343593657016754, 0.0206843912601471, -0.00432137120515108, 0.0204331111162901, 0.00132749089971185, 0.0386708192527294, -0.00647709751501679, -0.000896841636858881, 0.00517440401017666, -0.0143759166821837, -0.00705570494756103, 0.0317143052816391, 0.0271383449435234, -0.0131922513246536, 0.0041229915805161, -0.00143164023756981, 0.00587534578517079, 0.0183302853256464, -0.027561554685235, -0.0425855107605457, 0.00987269729375839, -0.0171135570853949, -0.00736649986356497, 0.00527028786018491, -0.0100578516721725, 0.033169087022543, 0.00452636368572712, 0.0225359350442886, 0.0111952284350991, 0.0107125043869019, -0.0352586880326271, -0.0367663726210594, 0.0105471881106496, -0.0371895842254162, 0.00511819636449218, -0.00767068238928914, 0.00858984142541885, -0.0217027403414249, 0.0262786988168955, 0.0151562104001641, 0.0104149347171187, -0.00147214275784791, 0.0133641799911857, -0.00895353779196739, -0.00617291545495391, -0.00574309285730124, 0.00450652558356524, -0.0288840867578983, 0.0059811482205987, -0.00853032805025578, 0.0207505188882351, 0.00598445488139987, 0.00413621682673693, -0.0161877851933241, -0.0185286644846201, 0.0310001373291016, -0.004546201787889, 0.00403702724725008, 0.0142304385080934, -0.0213588830083609, -0.0299950130283833, 0.0271647945046425, -0.00747230229899287, 0.0219275709241629, -0.0046189408749342, 0.0215704869478941, -0.034465167671442, -9.21639075386338e-05, -0.0425590611994267, 0.00231608306057751, -0.00706893065944314, 0.0201818291097879, 0.0159100536257029, 0.0179996527731419, 0.00830549746751785, 0.0207372922450304, 0.0046354727819562, 0.0251809973269701, 0.0157513488084078, -0.0127954911440611, -0.0138998050242662, -0.00309968297369778, -0.0331955403089523, -0.00204827054403722, -0.00380889046937227, -0.0117440791800618, -0.0175896678119898, 0.038141805678606, 0.015539743937552, 0.0147594502195716, 0.0269135143607855, 0.00876177102327347, -0.0167035721242428, -0.00347164506092668, 0.000370928726624697, 0.000743097334634513, -0.0224698092788458, 0.049647830426693, 0.00292940717190504, -0.000180711518623866, -0.00304016913287342, -0.0125177595764399, 0.0115456990897655, 0.00219705537892878, -0.0100049497559667, 0.00431145261973143, 0.0157910250127316, 0.00219540204852819, -0.00311621464788914, -0.00575631810352206, -0.0348619297146797, -0.00283517665229738, 0.0117308534681797, -0.0167035721242428, 0.0144420433789492, 0.00314431847073138, -0.0149842808023095, 0.031079487875104, 0.00103322765789926, -0.0127492025494576, 0.00806082878261805, 0.0082790469750762, 0.0127095272764564, -0.0017259034793824, -0.00516117876395583, 0.0128880683332682, -0.00968754291534424, 0.039887547492981, -0.0138601288199425, -0.000485616998048499, 0.00331294117495418, -0.00242519192397594, 0.0172458104789257, 0.00440072314813733, 0.0090395025908947, -0.0217027403414249, 0.0104744490236044, 0.0243742540478706, -0.00708876829594374, 0.031238192692399, -0.000705074577126652, -0.0194147620350122, -0.028196370229125, 0.023064948618412, -0.0317143052816391, -0.00284344260580838, -0.0317672044038773, 0.00737311271950603, 0.0117837553843856, -0.0171003304421902, -0.00855016522109509, 0.0219672471284866, 0.00166225666180253, 0.00922465696930885, -0.00435112835839391, 0.0102430060505867, -0.0160423070192337, -0.00235575903207064, 0.0265432056039572, -0.0310265868902206, -0.030920784920454, 0.0107389548793435, 0.0106331529095769, -0.0248900409787893, -0.0116250514984131, -0.0201024767011404],id:"6d1fc730b8e50f939e84034784b3bb15",source:"state_of_union.txt",text:"And with 75% of adult Americans fully vaccinated and hospitalizations down by 77%, most Americans can remove their masks, return to work, stay in the classroom, and move forward safely.
We achieved this because we provided free vaccines, treatments, tests, and masks.
Of course, continuing this costs money.
I will soon send Congress a request.
The vast majority of Americans have used these tools and may want to again, so I expect Congress to pass it quickly.
Fourth, we will continue vaccinating the world.
We’ve sent 475 Million vaccine doses to 112 countries, more than any other nation.
And we won’t stop.
We have lost so much to COVID-19. Time with one another. And worst of all, so much loss of life.
Let’s use this moment to reset. Let’s stop looking at COVID-19 as a partisan dividing line and see it for what it is: A God-awful disease.
Let’s stop seeing each other as enemies, and start seeing each other for who we really are: Fellow Americans."})
(:Chunk{embedding:[0.00617943005636334, -0.0156659744679928, 0.00412401184439659, -0.00315724080428481, 0.00820190832018852, 0.0168254412710667, 0.018208896741271, 0.0109754055738449, -0.0274055749177933, -0.00589944515377283, 0.00753653282299638, 0.02809071354568, -0.00393296359106898, 0.000584674184210598, 0.00149297795724124, 0.000765840872190893, 0.0262329317629337, -0.014809550717473, 0.00655164523050189, -0.0250207614153624, -0.0237822402268648, 0.0123852109536529, 0.00955901108682156, -0.000239839951973408, -0.0049409088678658, 0.0263251625001431, 0.0251920465379953, -0.00414377544075251, 0.0104483747854829, -0.0260089430958033, 0.00103182648308575, 0.000506031385157257, -0.0329130403697491, -0.0261670537292957, -0.0258113071322441, -0.0296981558203697, -0.00952607207000256, -0.0199349205940962, 0.0135842049494386, -0.023268386721611, 0.0253633316606283, -0.0296981558203697, 0.00360686331987381, -0.0168781448155642, -0.0322542525827885, 0.0217927023768425, -0.0185909923166037, -0.0198163390159607, -0.0237558893859386, 0.0226359497755766, 0.0421624220907688, -0.0108370603993535, -0.0151389446109533, -0.0446658171713352, 0.0259167142212391, -0.00959853921085596, -0.00650552986189723, 0.0273528713732958, -0.0177609194070101, -0.0106064844876528, 0.00524724507704377, -0.0191707257181406, -0.0163511149585247, 0.0065187057480216, -0.0230048708617687, -0.0229653436690569, -0.00888704787939787, 0.0293555855751038, 0.0182879511266947, 0.0222538523375988, 0.0633490383625031, -0.00486185401678085, 0.012925417162478, -0.00116111361421645, 0.0389475375413895, -0.0101453326642513, -0.0082677872851491, -0.00429529650136828, 0.00704902969300747, -0.0133865689858794, 0.0171416588127613, -0.0152575261890888, -0.029961671680212, 0.0227413568645716, 0.00749041792005301, -0.023913998156786, -0.00741795124486089, -0.00909127201884985, -0.00537570891901851, -0.00140815903432667, 0.0162061806768179, 0.0421887747943401, -0.00751018151640892, 0.00529994815587997, -0.0134722115471959, 0.0229126401245594, -0.0161007754504681, 0.0178399737924337, -0.000109935223008506, -0.00597520591691136, -0.00345534225925803, -0.0287231504917145, -0.0179980844259262, -0.0150598902255297, -0.0219244584441185, -0.0119174718856812, 0.00524724507704377, -0.00667681451886892, 0.0194869451224804, 0.00340922712348402, -0.00909786019474268, 0.025271100923419, 0.0133602172136307, -0.00998063571751118, -0.0065351752564311, -0.012925417162478, -0.0377353690564632, -0.0176686905324459, -0.00515501480549574, -0.0325177684426308, 0.0136764356866479, 0.0137159628793597, 0.0101980352774262, -0.0233079139143229, 0.00716761173680425, -0.0225173681974411, -0.0157186780124903, 0.00489479349926114, 0.0112520959228277, 0.00179025600664318, -0.00411413004621863, 0.00570510281249881, 0.0191839020699263, -0.00942725408822298, -0.00136533775366843, 0.0191443748772144, -0.0365231968462467, 0.0192366056144238, -0.0109292902052402, -0.018446059897542, 0.0105274301022291, -0.0120624052360654, -0.0129517689347267, -0.00701609067618847, 0.010988580994308, 0.0149017805233598, 0.00670316629111767, -0.00571498461067677, 0.0271157082170248, 0.000305101129924878, 0.0279062520712614, -0.0186436958611012, 0.01151561178267, -0.00457857549190521, 0.0181561931967735, 0.0051484270952642, -0.0179585572332144, 0.0249417070299387, -0.00365956639871001, 0.0167332105338573, 0.0189467389136553, 0.00864988472312689, -0.00179849076084793, 0.0256663747131824, 0.015046713873744, 0.00482891499996185, -0.0013258105609566, 0.016680508852005, -0.0156000964343548, 0.0228599384427071, 0.0126619022339582, 0.0149544840678573, -0.0063968300819397, 0.0299880225211382, 0.00247868918813765, 0.0126487268134952, 0.00193518924061209, -0.00143286352977157, -0.016746386885643, 0.0209099259227514, 0.00125416729133576, -0.00071560830110684, 0.0179322045296431, 0.0295136943459511, -0.0188018046319485, -0.0264042168855667, 0.0239008236676455, 0.0124906171113253, -0.00781322363764048, -0.0109358783811331, 0.00289537245407701, 0.0217004716396332, 0.0231893323361874, -0.0124247390776873, -0.642555296421051, -0.0262197554111481, 0.010395672172308, -0.0140980593860149, 0.0076089994981885, 0.0125894360244274, -0.00698315119370818, 0.0128595381975174, -0.0309893805533648, 0.0208176951855421, -0.00703585427254438, 0.00414706952869892, 0.00110264611430466, -0.0238876473158598, -0.0170757807791233, -0.0157318543642759, 0.00463127857074142, 0.00287231500260532, 0.00893316324800253, -0.00446328753605485, -0.0244937315583229, 0.011752774938941, -0.0122139267623425, -0.00301889516413212, 0.00110429315827787, 0.00966441724449396, 0.0258508343249559, -0.0155078656971455, -0.0210285075008869, 0.00515501480549574, -0.0333346650004387, 0.0250207614153624, -0.00574792409315705, -0.00661093601956964, 0.040792141109705, -0.00399225438013673, 0.00807015132158995, 0.0110478717833757, 0.00367932999506593, 0.0189467389136553, -0.00582039076834917, 0.0183933563530445, 0.0324914157390594, -0.00111993937753141, 0.0214633084833622, -0.0263646896928549, 0.0137950172647834, -0.0148886051028967, 0.0141639383509755, 0.0443232469260693, 0.00317535735666752, 0.0121875749900937, -0.0213842540979385, 0.000630377617198974, -0.00270267715677619, -0.00693044811487198, 0.00518136657774448, -0.0255082659423351, 0.00741795124486089, -0.00153415219392627, -0.00714784814044833, -0.00344875431619585, -0.0311211366206408, -0.00611025700345635, -0.0180507861077785, 0.0264700949192047, 0.0134656233713031, 0.0220430418848991, 0.0162193570286036, 0.00826119910925627, -0.00355086638592184, 0.0097764115780592, -0.00946019310504198, -0.0308576226234436, 0.00604437850415707, 0.0256927255541086, 0.0204619504511356, -0.0210416838526726, -0.00181496050208807, 0.0126157868653536, 0.00246057263575494, -0.00343887251801789, -0.00294807553291321, 0.00514183891937137, 0.0138872480019927, 0.0199480950832367, -0.030198834836483, 0.00467080576345325, 0.019974447786808, -0.00085642421618104, 0.0186305195093155, 0.013248223811388, 0.0234133191406727, -0.0203170161694288, 0.0147436717525125, 0.0108304722234607, -0.00711490865796804, 0.00452257832512259, 0.0212656706571579, -0.0324650630354881, -0.00074154807953164, -0.0235450770705938, 0.0383678041398525, 0.000760899973101914, 0.0184328835457563, 0.00626507215201855, -0.00220199837349355, -0.00543499970808625, 0.054073303937912, -0.0247704219073057, 0.00384402694180608, 0.00863012112677097, -0.00810967851430178, -0.0163511149585247, 0.0105998963117599, -0.0206068828701973, -0.00423271209001541, 0.0259957686066628, -0.0123786237090826, -0.00604437850415707, 0.000432329514296725, -0.0031802982557565, 0.00963147822767496, -0.0332029052078724, 0.0246913675218821, 0.0205673556774855, -0.0079383933916688, -0.0160085447132587, 0.00388026027940214, -0.0132350474596024, 0.00745747843757272, -0.00478938780725002, 0.0172602422535419, 0.0128134237602353, 0.0331502035260201, 0.00832049082964659, 0.0162588842213154, -0.0207122899591923, 0.0190126169472933, -0.0222670286893845, -0.0115353753790259, 0.00984229054301977, -0.0110412845388055, -0.0119833508506417, -0.0159294903278351, -0.0360225178301334, -0.0028772559016943, -0.00266479677520692, -0.0227018296718597, -0.0267599616199732, 0.0216477680951357, -0.0324650630354881, -0.0224646646529436, -0.00898586586117744, 0.010613071732223, 0.00669328449293971, -0.00458845729008317, 0.0143615752458572, -0.0102309752255678, -0.00125416729133576, 0.000937949167564511, 0.0106196599081159, -0.0278535503894091, -0.00367274228483438, 0.010580132715404, -0.012721193023026, 0.0253633316606283, 0.020620059221983, 0.0118450056761503, -0.0184328835457563, 0.0062749539501965, -0.0156527981162071, 0.0182615984231234, -0.000747724203392863, 0.0344941318035126, 0.00881458166986704, -0.0264832712709904, 0.00931525975465775, 0.00408448465168476, 0.00189895590301603, 0.000140404154080898, 0.00228105299174786, -0.0325704701244831, -0.00381767563521862, 0.0152838779613376, 0.0048190332017839, 0.0203960705548525, 0.0240325797349215, -0.0294346399605274, 0.0252579264342785, 0.00525712687522173, 0.00301724835298955, -0.0179322045296431, 0.00595214823260903, 0.00491126347333193, 0.0383941568434238, -0.0252447500824928, -0.0010450022527948, 0.0033367604482919, 0.0295927505940199, 0.00650552986189723, -0.0163115877658129, 0.0143879260867834, -0.000222958507947624, -0.0115749025717378, -0.0349684581160545, 0.0101123936474323, -0.0288549065589905, 0.026628203690052, 0.0056161661632359, -0.00492114527150989, -0.0218454040586948, -0.019869040697813, -0.033018447458744, 0.00957877561450005, 0.0291447732597589, -0.0163511149585247, 0.0236373078078032, -0.0181825440376997, 0.00449622701853514, -0.00107629457488656, 0.0139926532283425, 0.00126816658303142, -0.0157318543642759, -0.00930867251008749, -0.0101453326642513, 0.0123390965163708, 0.0349684581160545, -0.000285131623968482, -0.0164169929921627, -0.00438423315063119, 0.011752774938941, 0.0328076332807541, 0.0452455505728722, -0.012925417162478, -0.0109227020293474, -0.00407130876556039, -0.00534935714676976, 0.0354691371321678, 0.00547123281285167, 0.0261143501847982, 0.0262724589556456, -0.00322476658038795, -0.00154485751409084, 0.0224119629710913, -0.0265491493046284, 0.040291465818882, 0.0143088717013597, 0.0156132718548179, 0.0194078888744116, -0.000623789732344449, 0.00214270735159516, 0.00841930881142616, -0.00807015132158995, 0.0055832271464169, -0.0182879511266947, -0.00515830889344215, 0.0083731934428215, 0.0213710777461529, 0.0355745442211628, 0.0179453808814287, 0.0275109801441431, 0.0199612714350224, -1.05058643384837e-05, -0.0139794778078794, -0.0175632834434509, -0.00412730593234301, -0.00586650567129254, -0.0157318543642759, -0.0123390965163708, 0.00126899010501802, -0.0151389446109533, 0.0327285788953304, -0.00409766053780913, 0.0186700467020273, 0.00585332978516817, -0.00316712260246277, 0.00198789220303297, -0.00566557561978698, -0.0119635872542858, -0.00305512850172818, -0.0352583266794682, 0.0040218997746706, 0.0243224464356899, -0.0127607202157378, -0.0177477449178696, 6.46435582893901e-05, -0.00637377239763737, -0.0257849562913179, 0.0213183742016554, -0.0115090236067772, 0.0221879743039608, -0.0130901141092181, 0.0356535986065865, 0.00258903624489903, -0.0125301443040371, 0.0316218174993992, -0.00788569077849388, 0.0274846293032169, -0.00724007841199636, -0.0119635872542858, 0.00251656956970692, -0.0107448296621442, -0.0157713815569878, 0.0156396236270666, 0.0136632593348622, 0.00775393284857273, -0.0100267510861158, 0.00799109693616629, -0.0244015008211136, 0.00963806640356779, 0.00485856039449573, -0.0152838779613376, 0.0145196840167046, -0.00309300888329744, -0.0120755806565285, -0.0209231022745371, -0.0231498051434755, 0.00855106581002474, -0.0112916231155396, 0.00519124837592244, -0.0409502536058426, -0.0489084087312222, -0.0174447018653154, 0.131862968206406, 0.0285123381763697, -0.0107250660657883, -0.014809550717473, -0.0073323086835444, -0.00164202868472785, -0.00874211452901363, -0.00641000550240278, 0.00557005126029253, -0.033729936927557, 0.00314241787418723, 0.00474327243864536, 0.0112784476950765, -0.0170494299381971, 0.00206035887822509, 0.00742453895509243, -0.000601967389229685, -0.0267599616199732, -0.0115419626235962, -0.000664140505250543, -0.00851153861731291, -0.0130571750923991, 0.0213447250425816, 0.0436381064355373, -0.0126948412507772, -0.0120294662192464, 0.047248262912035, 0.0312001928687096, -0.00169802561867982, -0.00533288763836026, -0.0168386176228523, 0.02303122356534, 0.0132745746523142, -0.000203709554625675, -0.0233079139143229, 0.00210812105797231, 0.0151257691904902, -0.0202906653285027, 0.0177345685660839, 0.0126948412507772, 0.00246551353484392, 0.00118746503721923, 0.00585003616288304, -0.0226227752864361, 0.0207781679928303, -0.00071807875065133, -0.000972535519395024, 0.0167068596929312, -0.00407789694145322, -0.00888045970350504, 0.0152838779613376, -0.0286440961062908, -0.0292765311896801, -0.00787251442670822, 0.0150862410664558, 0.00890681147575378, -0.00146168551873416, -0.0227545313537121, -0.0139267751947045, 0.0285913925617933, -0.0391847006976604, -0.0260089430958033, -0.00377156026661396, -0.0197241082787514, 0.00404166337102652, -0.0169703755527735, 0.00160003092605621, 0.0181166660040617, -0.0299353189766407, -0.00664716912433505, 0.000886069668922573, -0.0199349205940962, -0.0178663264960051, 0.00964465364813805, 0.0145328594371676, 0.0123522719368339, 0.0367340110242367, -0.0106657752767205, -0.0110939871519804, -0.012279805727303, 0.00656482065096498, -0.0331238508224487, 0.00128216587472707, 0.0169044956564903, -0.0057709813117981, 0.0112257450819016, -0.0118252420797944, 0.000497796572744846, -0.0132679874077439, 0.0295663978904486, -0.0158899631351233, 0.0117988903075457, 0.0191707257181406, 0.0107382414862514, 0.0012484029866755, 0.0252447500824928, 0.00986864138394594, 0.0154683385044336, -0.00562604796141386, 0.00404495745897293, 0.0212261434644461, -0.0253238044679165, -0.019869040697813, -0.0400542989373207, 0.00496067246422172, -0.010428611189127, 0.0170757807791233, 0.0233474411070347, -0.00975005980581045, 2.51227197622939e-06, 0.0100267510861158, -0.00788569077849388, 0.0149544840678573, 0.0134195080026984, 0.00715443585067987, 0.0121546359732747, 0.0352056212723255, 0.0112652722746134, 0.0029727800283581, -0.0319643877446651, 0.00880799349397421, -0.0157713815569878, 0.0295927505940199, 0.0268785431981087, -0.00265326793305576, -0.0208440478891134, -0.00344875431619585, -0.0218585804104805, 0.0046642180532217, -0.0136237321421504, -0.0194605924189091, 0.00870917551219463, -0.0104351993650198, -0.0083731934428215, -0.00945360586047173, -0.00282949372194707, -0.004993611946702, 0.00502325734123588, -0.000439329131040722, 0.00270761805586517, -0.00426235748454928, -0.0190126169472933, -0.00210153311491013, -0.04735367000103, 0.0185382906347513, -0.0249812342226505, 0.00633424520492554, 0.00111582188401371, -0.00442705443128943, 0.0289603136479855, -0.0229126401245594, -0.0235582534223795, -0.0199876222759485, 0.00334828929044306, -0.030198834836483, -0.029856264591217, -0.0085642421618104, -0.0228204112499952, 0.0353110283613205, 0.0102573269978166, 0.0344150774180889, 0.00411413004621863, -0.0110544599592686, 0.00212953169830143, 0.00626836623996496, 0.0016560279764235, 0.00312100746668875, 0.0227677077054977, -0.00789886619895697, 0.0408448465168476, 0.016983550041914, 0.0177082177251577, -0.0250734649598598, 0.00160579534713179, 0.00973029620945454, 0.00634742062538862, -0.0304096471518278, -0.0111269261687994, -0.0240194052457809, -0.00745747843757272, -0.0181430168449879, -0.0188808590173721, 0.0057545118033886, 0.00176555139478296, -0.0187227502465248, -0.0176423378288746, 0.0525976195931435, -0.0161534771323204, 0.0267863143235445, -0.0103232050314546, 0.00982911419123411, 0.00198789220303297, 0.00340263918042183, 0.00760241178795695, -0.0215818900614977, -0.00808332674205303, -0.0425840467214584, -0.00607072981074452, 0.0273265186697245, 0.00341581483371556, 0.0218322295695543, -0.011364090256393, -0.00816896930336952, 0.00273561640642583, 0.0181298404932022, 0.0209758039563894, -0.0231761559844017, -0.0191575512290001, 0.017088957130909, -0.0272474642843008, -0.000429859064752236, -0.00671634217724204, -0.0209231022745371, -0.0256531983613968, -0.00986205413937569, -0.000772840459831059, -0.0190653204917908, 0.0144669804722071, -0.00286737410351634, -0.025205222889781, -0.0125235570594668, 0.0157845560461283, -0.0020620059221983, 0.0100860418751836, 0.0125630842521787, 0.0254028588533401, -0.00950630847364664, -0.0269575975835323, 0.0218717567622662, 0.033598180860281, 0.00576768768951297, -0.00287231500260532, 0.0140190050005913, -0.0124313263222575, -0.0119504118338227, -0.00599496951326728, 0.00135216198395938, 0.00171120138838887, -0.0294873435050249, 0.00812285393476486, 0.00333181954920292, 0.000662493519484997, -0.0209494531154633, -0.00143368705175817, -0.0293292347341776, 0.00310783158056438, -0.00511219352483749, 0.0174183510243893, 0.00872893910855055, -0.0161534771323204, -0.0257849562913179, -0.00971712078899145, -0.00120475830044597, 0.0115287872031331, 0.0159690175205469, -0.000452504900749773, -0.00127640145365149, -0.000528265489265323, 0.00234693172387779, 2.00467075046618e-05, 0.00411413004621863, 0.023334264755249, -0.0103561449795961, -0.00449952110648155, 0.00897927861660719, 0.0211866162717342, -0.0147041445598006, 0.00929549615830183, 0.00849177502095699, 0.0233869682997465, -0.018037611618638, 0.00281137716956437, -0.0157713815569878, 0.00123358017299324, -0.0100926300510764, -0.00641659367829561, -0.0287758521735668, -0.0350475125014782, -0.0250075869262218, 0.00543829379603267, 0.013860896229744, 0.00550087867304683, -0.0319643877446651, 0.00468727527186275, 0.00474986014887691, -0.00781981181353331, -0.0144801568239927, -0.00162638246547431, 0.0097764115780592, 0.00307983323000371, -0.0202247872948647, -0.0155210411176085, 0.00516819069162011, 0.0218717567622662, -0.0139531260356307, -0.000188680947758257, 0.014453805051744, 0.00836660526692867, -0.0114760845899582, 0.0244805552065372, -0.0150071866810322, -0.00576768768951297, -0.0330975018441677, -0.00734548456966877, -0.0384205058217049, -0.0166278053075075, 0.0098818177357316, 0.00912421196699142, -0.036549549549818, -0.0261670537292957, -0.0105603691190481, 0.00515501480549574, 0.00312265427783132, -0.00591591466218233, -0.00117264233995229, -0.00418989080935717, -0.0032593528740108, -0.00923620536923409, -0.0288285557180643, 0.0664585158228874, -0.0107909450307488, 0.00130357639864087, 0.010817295871675, -0.0105274301022291, 0.00479268142953515, -0.00402848748490214, 0.00859059300273657, 0.0273265186697245, -0.00255774380639195, -0.0297772102057934, -0.0321751981973648, 0.0149149568751454, -0.0342569686472416, -0.0264832712709904, -0.00808991491794586, -0.00859059300273657, -0.0160744227468967, -0.00172108318656683, 0.0224910173565149, -0.0147041445598006, 0.00763535127043724, 0.040317814797163, 0.0189335625618696, -0.0142561690881848, -0.0118318293243647, -0.0192497801035643, 0.0107711814343929, -0.0137686654925346, -0.0155342174693942, -0.036892119795084, -0.00131510524079204, 0.0242170412093401, 0.00926914531737566, -0.0160744227468967, -0.0260089430958033, -0.00414048135280609, -0.0228994656354189, -0.00912421196699142, -0.0171943623572588, 0.00745089026167989, 0.0350211597979069, 0.00429529650136828, -0.00564581155776978, 0.0159163139760494, -0.00139827723614872, 0.00822167191654444, -0.00586979975923896, -0.000306336354697123, 0.0103232050314546, -0.0307522155344486, 0.0162984114140272, 7.56576628191397e-05, 0.00602132081985474, 0.00784616358578205, 0.00785933900624514, 0.000357392389560118, 0.0240984596312046, 0.00934161152690649, -0.0347312949597836, -0.00175237562507391, -0.00768805388361216, -0.00198624539189041, 0.0234264954924583, 0.00225305440835655, 0.0283805802464485, -0.0427421554923058, -0.0293028838932514, 0.00912421196699142, -0.00308642094023526, 0.0101980352774262, -0.00803721137344837, 0.00563263613730669, -0.00448963930830359, 0.0222933795303106, -0.00791204161942005, -0.0131362294778228, 0.0379725322127342, -0.018446059897542, 0.0117330113425851, 0.0109754055738449, -0.0130176478996873, 0.0314900577068329, 0.0264700949192047, -0.00480256322771311, -0.00773416925221682, -0.0139267751947045, 0.0235319007188082, -0.00206694682128727, 0.00812944211065769, 0.00581709668040276, 0.0275373309850693, -0.0275900345295668, 0.0079713324084878, -0.00809650216251612, 0.0194210652261972, -0.0163906421512365, -0.00153497571591288, -0.00146333244629204, -0.00456210598349571, 0.00526700867339969, -0.0244015008211136, -0.00928890891373158, -0.00443364214152098, -0.0318589806556702, 0.005494290497154, -0.0273001678287983, -0.00249515892937779, 0.00159179617185146, -0.0176028106361628, -0.0106064844876528, 0.00265162112191319, -0.0134195080026984, -0.00580392079427838, -0.0178267993032932, -0.000394037488149479, 0.0200930293649435, 0.221985146403313, -0.00323629518970847, -0.0148227261379361, 0.00113723252434283, -0.0155605683103204, 0.0158240832388401, 0.0116737205535173, 0.0109095266088843, -0.000163770542712882, 0.0140058295801282, -0.0100135747343302, -0.0149676594883204, -0.0135578541085124, -0.00143451057374477, -0.0129847079515457, -0.0108699994161725, -0.023913998156786, -0.0212788470089436, -0.0156923271715641, 0.00013958067575004, -0.0126355504617095, 0.00388026027940214, 0.00192201347090304, -0.00026907364372164, 0.0113047994673252, 0.0183274783194065, -0.0058763874694705, 0.00836660526692867, 0.0157713815569878, 0.0040218997746706, -0.0195396468043327, -0.0101255690678954, 0.00311771337874234, 0.0106723625212908, 0.000953595386818051, -0.018854508176446, -0.0178136229515076, -0.016917672008276, 0.00630459981039166, 0.0186436958611012, 0.00878164172172546, 0.0156791508197784, -0.00886728428304195, 0.012161223217845, -0.0129583571106195, 0.0467212349176407, 0.00601143902167678, -0.0177082177251577, 0.017220713198185, 0.0213051978498697, -0.0162325315177441, 0.00529006635770202, 0.0192893072962761, 0.0280643627047539, 0.00471033295616508, -0.0103429686278105, 0.000322806037729606, 0.0118450056761503, -0.0173656474798918, -0.0153629323467612, -0.00661423010751605, -0.002547862008214, -0.00710173277184367, 0.0271157082170248, -0.0249812342226505, 0.0384205058217049, 0.0199085678905249, 0.0136632593348622, -0.00793180521577597, -0.020620059221983, -0.00101041584275663, -0.00498043606057763, -0.0168386176228523, -0.0132284602150321, -0.0201852601021528, 0.000154403402120806, 0.0108963511884212, 0.0146646173670888, 0.0281170643866062, 0.00352122099138796, 0.00201589078642428, -0.00476962374523282, 0.0130044715479016, 0.0191575512290001, 0.00905174482613802, -0.0426631011068821, 0.0240457560867071, -0.000382714555598795, -0.00872235093265772, 0.0061893118545413, 0.000554617028683424, -0.0213051978498697, -0.006759162992239, 0.00308971502818167, 0.0153365805745125, 0.00241281045600772, 0.00436117546632886, 0.016983550041914, -0.0187754537910223, 0.0143220480531454, -0.0210680346935987, 0.0212524961680174, 0.0208440478891134, -0.0189335625618696, -0.00282290577888489, -0.00508584221825004, 0.0106262480840087, 0.0239798780530691, 0.0133009264245629, -0.039975244551897, -0.00786592718213797, -0.00472021475434303, -0.00583027256652713, 0.00599826313555241, 0.00176061049569398, 0.00787251442670822, 0.0344941318035126, -0.0261275265365839, 0.0154024595394731, -0.00783298723399639, 0.0154419867321849, -0.0348367020487785, -0.0362860336899757, 0.0134063325822353, 0.010191448032856, -0.00538888433948159, -0.0198426898568869, -0.00836001802235842, -0.00265820883214474, -0.0259562414139509, 0.0204092469066381, -0.0201325565576553, 0.0168517921119928, -0.0227281805127859, -0.00936137512326241, 0.0087355263531208, 0.0288549065589905, -0.0085971811786294, -0.0083007263019681, -0.00595544185489416, -0.00879481807351112, 0.00473009655252099, 0.00259233010001481, -0.0185909923166037, -0.00159014912787825, -0.0159821938723326, 0.0168649684637785, -0.00920326635241508, 0.0174842290580273, -0.0141112357378006, -0.0383941568434238, 0.0156527981162071, 0.0124313263222575, -0.0100399265065789, 0.0130176478996873, -0.0166541561484337, -0.0259825922548771, -0.0295136943459511, -0.00848518777638674, 0.0157582052052021, -0.0271684098988771, 0.0108765875920653, 0.0217927023768425, 0.00632106931880116, -0.0274319257587194, -0.0127936601638794, -0.166541561484337, 0.0304623488336802, 1.12392808659934e-05, -0.00560628436505795, 0.0160875990986824, -0.0153234051540494, 0.0112652722746134, -0.0161139499396086, 0.00831390265375376, 0.00306830438785255, 0.0153234051540494, 0.00722690252587199, -0.0242302175611258, -0.00540206022560596, 0.00230081658810377, -0.0274319257587194, -0.018749101087451, 0.000170152547070757, 0.00481244502589107, 0.012128284201026, 0.0433218888938427, -0.0192497801035643, 0.0211207382380962, -0.0400015972554684, 0.000468974583782256, -0.00811626575887203, -0.00272573460824788, 0.0328603386878967, -0.0321224965155125, -0.0254555623978376, -0.0341252088546753, -0.00345204817131162, 0.00739818764850497, 0.0201984345912933, 0.00913079921156168, 0.00963806640356779, 0.0120360534638166, -0.0101585080847144, -0.00195495295338333, 8.29660930321552e-05, 0.043242834508419, 0.0202247872948647, -0.0102112116292119, -0.000769134785514325, -0.0404495745897293, 0.0257322527468204, 0.0134260961785913, 0.003761678468436, 0.000440564355812967, 0.013314101845026, -0.00384732102975249, -0.0408184938132763, 0.0036925058811903, 0.0229653436690569, 0.0195791739970446, -0.011719835922122, -0.0388684831559658, -0.01657510176301, -0.00882775709033012, -0.0245200842618942, -0.00670316629111767, 0.0210548602044582, 0.00186766346450895, -0.0140321813523769, -0.0199612714350224, -0.0174315255135298, -0.0131757566705346, -0.00288713769987226, -0.0487502999603748, 0.0199349205940962, -0.0100267510861158, 0.00682504195719957, -0.000761311675887555, -0.0301461312919855, 0.0240457560867071, 0.0143747506663203, -0.0266809072345495, 0.00537900254130363, 0.012721193023026, 0.018446059897542, -0.0134458597749472, 0.0210021566599607, -0.0117791267111897, 0.00789886619895697, 0.00470374524593353, 0.0183143019676208, 0.00607731798663735, -0.00300571951083839, 0.00366944819688797, -0.0281434170901775, 0.00957218743860722, -0.0241643376648426, 0.0141375865787268, -0.0134392715990543, -0.0150994174182415, 0.0145592112094164, 0.0240457560867071, -0.0154815139248967, -0.0022365846671164, -0.0344941318035126, 0.0111466897651553, -0.0196318775415421, -0.0197109319269657, 0.0194737687706947, 0.0085642421618104, 0.0204092469066381, 0.00831390265375376, 0.0280380100011826, -0.00946678128093481, 0.00272573460824788, -0.0280380100011826, 0.0125828478485346, -0.000441799580585212, 0.00660764193162322, 0.0102639142423868, -0.00424259388819337, -0.00320335594005883, -0.00381767563521862, 0.0197372827678919, -0.0207913443446159, 0.0449820347130299, -0.00508913584053516, -0.020554181188345, -0.00206529977731407, -0.000956065836362541, -0.0123522719368339, -0.1175277531147, -0.00243092700839043, 0.000541853019967675, 0.0237163621932268, -0.00510231172665954, 0.0419779606163502, 0.00174908165354282, 0.0221220962703228, -0.0274055749177933, 0.018854508176446, -0.00309136183932424, -0.0213710777461529, 0.00313253607600927, 0.0266677308827639, 0.025442386046052, -0.000162535317940637, -0.0157318543642759, -0.00637377239763737, -0.016509223729372, 0.0205014776438475, 0.000353069102857262, -0.00737842358648777, 0.00303207105025649, -0.0124576780945063, -0.000452504900749773, -0.00820190832018852, -0.00725325429812074, 0.0270893555134535, -0.00251162867061794, 0.015217998996377, -0.0109358783811331, 0.0117132477462292, 0.0176818650215864, -0.00795815698802471, -0.0222933795303106, 0.0172602422535419, -0.0373400934040546, -0.012516968883574, 0.00581380259245634, -0.025376508012414, 0.0231366287916899, 0.00429529650136828, -0.0137291382998228, -0.0280116591602564, -0.0226491261273623, -0.00235022557899356, -0.00661423010751605, 0.00805038772523403, 0.00554369948804379, -0.0211997926235199, -0.0104022603482008, 0.00917032640427351, 0.00267632561735809, -0.0292501803487539, -0.00803721137344837, 0.000494502601213753, -0.00356733612716198, -0.00438752677291632, -0.00230081658810377, -0.0135842049494386, -0.00809650216251612, 0.00497714197263122, -0.0200930293649435, 0.0288812592625618, 0.00114299694541842, -0.013689611107111, -0.0443495959043503, -0.00279161357320845, 0.011548550799489, -0.0350475125014782, -0.0140980593860149, 0.00571827823296189, -0.0224383138120174, 0.0159031376242638, -0.0349948108196259, 0.0217268224805593, -0.0159953683614731, -0.011159866116941, 0.0234264954924583, -0.0359698161482811, 0.0062420149333775, -0.0217531751841307, 0.00603120261803269, -0.0139531260356307, 0.0434009432792664, 0.0175369326025248, -0.00666363909840584, 0.0185514651238918, 0.00984887778759003, 0.00443364214152098, -0.0039164936169982, 0.0213447250425816, -0.00664387550204992, -0.0222802050411701, 0.020620059221983, 0.0218981076031923, 0.00696338759735227, -0.000604437838774174, 0.00814261753112078, 0.0099147567525506, -0.00411742413416505, 0.00724666612222791, -0.0492509789764881, 0.0175764597952366, -0.00565239973366261, -0.0029563105199486, -0.0046971570700407, 0.00848518777638674, 0.00542841199785471, -0.00872893910855055, 0.0240457560867071, 0.0158636104315519, -0.0117659503594041, 0.0229258164763451, 0.0193947143852711, -0.00949972029775381, -0.0353637300431728, -0.00180013780482113, 0.0126948412507772, 0.00181001960299909, 0.0420043133199215, -0.00926914531737566, 0.00280149537138641, 0.0251261685043573, 0.0156791508197784, 0.0114102056249976, 0.00614978466182947, -0.000951948401052505, -0.0121809868142009, 0.00982911419123411, 0.0111466897651553, -0.00280314218252897, -0.0108502358198166, -0.0172734167426825, -0.0132943382486701, 0.0311738401651382, 0.0012212279252708, -0.0171284843236208, 0.0172075387090445, 0.0104747265577316, -0.00632106931880116, 0.0179322045296431, -0.0243487991392612, -0.014282519929111, -0.0102770905941725, -0.0275109801441431, 0.00289701949805021, 0.00182484230026603, -0.00946019310504198, -0.00262691639363766, -0.0162325315177441, 0.00735865999013186, 0.00723349023610353, 0.00103017943911254, -0.0328866876661777, -0.00552722997963428, 0.00832707807421684, -0.0167332105338573, 0.0109490538015962, 0.0141902901232243, 0.00504631502553821, -0.0225964225828648, 0.0401333533227444, -0.00252809841185808, -0.00510889990255237, -0.00880799349397421, 0.0428475625813007, -0.0223065558820963, -0.0200007986277342, -0.0120887570083141, 0.028327876701951, -0.0324387140572071, -0.0203170161694288, -0.0071939630433917, 0.0181166660040617, 0.00720055121928453, -0.00316053465940058, -0.00457857549190521, 0.00387696642428637, -0.0170362535864115, 0.00589285744354129, 0.0235977806150913, 0.0157055016607046, -0.010613071732223, -0.0241116341203451, 0.0349684581160545, -0.00119240593630821, 0.0190521441400051, 0.00574463000521064, 0.036549549549818, 0.00911762379109859, -0.00528347864747047, -0.0149281322956085, -0.000667434418573976, -0.00701609067618847, 0.00233375583775342, -0.0146777927875519, 0.0122468657791615, 0.0132021084427834, 0.0174578782171011, 0.0181430168449879, 0.00918350275605917, -0.0110544599592686, -0.013063763268292, -0.0153497569262981, 0.00301889516413212, -0.00290854834020138, 0.0283805802464485, -0.0293819382786751, 0.0127804838120937, -0.00852471496909857, 0.0321488454937935, 0.0211470890790224, 0.013689611107111, 0.00739159947261214, 0.0191970784217119, 0.00336475879885256, 0.0167595632374287, -0.00106394232716411, -0.0139004234224558, -0.0129781207069755, 0.0451401434838772, 0.0176423378288746, -0.0101453326642513, -0.00156956200953573, -0.0125960232689977, 0.0189994405955076, 0.0110873989760876, -0.00100629846565425, -0.00905833300203085, 0.00893975142389536, -0.000492855673655868, 0.0355218388140202, -0.0180112589150667, -0.033387366682291, 8.84602832229575e-06, 0.00348169379867613, -0.00330217415466905, -0.00075719429878518, 0.0241643376648426, 0.012141459621489, 0.0371819846332073, 0.017088957130909, 0.00486514810472727, -0.0224778410047293, -0.00770122976973653, 0.00933502335101366, -0.0085642421618104, -0.00400213617831469, 0.00278996652923524, -0.0252579264342785, 0.0344150774180889, -0.0220035146921873, 0.00585332978516817, -0.00463127857074142, -0.0179322045296431, 0.0315164104104042, -0.0101716844365001, 0.028565039858222, -0.000245604343945161, -0.00167908554431051, -0.00364639074541628, 0.0174183510243893, 0.0157845560461283, 0.0213183742016554, -0.00168814382050186, -0.00832707807421684, -0.00113887945190072, -0.00270432396791875, -0.0036925058811903, -0.0224119629710913, 0.0126421386376023, 0.0027207937091589, -0.0205278284847736, -0.0325441174209118, 0.0226227752864361, -0.0223065558820963, 0.0175632834434509, 0.00405154516920447, 0.0220298655331135, 0.0216082409024239, -0.0136369084939361, 0.0118647692725062, -0.0242960955947638, -0.010955641977489, 0.0228862892836332, 0.00356404227204621, -0.00353439664468169, -0.0110281081870198, -0.00332358456216753],id:"85befa094297427708001b55c2b6043c",source:"state_of_union.txt",text:"We can’t change how divided we’ve been. But we can change how we move forward—on COVID-19 and other issues we must face together.
I recently visited the New York City Police Department days after the funerals of Officer Wilbert Mora and his partner, Officer Jason Rivera.
They were responding to a 9-1-1 call when a man shot and killed them with a stolen gun.
Officer Mora was 27 years old.
Officer Rivera was 22.
Both Dominican Americans who’d grown up on the same streets they later chose to patrol as police officers.
I spoke with their families and told them that we are forever in debt for their sacrifice, and we will carry on their mission to restore the trust and safety every community deserves.
I’ve worked on these issues a long time.
I know what works: Investing in crime prevention and community police officers who’ll walk the beat, who’ll know the neighborhood, and who can restore trust and safety."})
(:Chunk{embedding:[-0.00454782042652369, -0.0109743699431419, -0.022739103063941, 0.00402955012395978, 0.010890151374042, 0.0117193832993507, 0.0330397225916386, 5.62302848265972e-05, -0.00544507568702102, -0.00697073340415955, 0.00802670884877443, -0.00318412203341722, 0.00259135058149695, 0.013241802342236, -0.0110585894435644, -0.00405222456902266, 0.0326510183513165, -0.00663061859086156, -0.00287154037505388, -0.023944079875946, -0.0085579352453351, 0.00167466036509722, 0.00631965650245547, -0.00466119218617678, 0.0031193383038044, 0.0102682271972299, 0.048665564507246, -0.0202384479343891, -0.00636176578700542, -0.00797488167881966, -0.0127818370237947, 0.00373154506087303, -0.0206919349730015, -0.0238663405179977, -0.0191371254622936, -0.0227909293025732, -0.00362465181387961, -0.00479723792523146, 0.0189686864614487, -0.00552605511620641, 0.0313553437590599, -0.0314849093556404, -0.00368619640357792, -0.0134231969714165, -0.0111298514530063, 0.00516650546342134, -0.0148095693439245, -0.0144726932048798, -0.0343872234225273, 0.00778053048998117, 0.0270537007600069, -0.00620952388271689, -0.0519824959337711, -0.0345167927443981, 0.0171029139310122, 0.00453486386686563, -0.00188844685908407, 0.0105662327259779, -0.0158849805593491, -0.0289972145110369, -0.000264196307398379, -0.00376393692567945, -0.0245660040527582, 0.0242550428956747, -0.0164550766348839, -0.0113695515319705, -0.00307560944929719, 0.00949729979038239, 0.0204457566142082, 0.022156048566103, 0.050971869379282, 0.027261009439826, 0.0130344936624169, -0.00723634660243988, 0.0338430404663086, -0.00513087445870042, -0.00380280707031488, -0.00826640892773867, -0.00597630254924297, -0.0144726932048798, 0.0236072055995464, 0.00172810698859394, -0.0351387150585651, -0.000998479779809713, 0.0177248381078243, -0.00909564085304737, 0.00052474852418527, 0.0192019082605839, -0.00566210132092237, -0.00585645250976086, 0.0012163151986897, 0.0166494287550449, 0.0038643516600132, 0.00917985942214727, -0.000259539956459776, 0.0205623675137758, -0.00938716810196638, 0.0191371254622936, 0.0133195426315069, -0.0104755349457264, 0.0297487061470747, -0.0298523604869843, -0.0229204967617989, -0.00854497868567705, -0.0109031079337001, -0.0345945321023464, 0.00308532686904073, 0.0128725348040462, 0.0141746886074543, 0.00685412250459194, -0.00624191574752331, 0.000384248705813661, 0.00132887705694884, -0.0210417676717043, 0.0010592145845294, -0.01018400862813, -0.0175952706485987, -0.00497215427458286, 0.000591961666941643, -0.0106828436255455, 0.0164421200752258, 0.0116869919002056, 0.0256673283874989, -0.0043534692376852, 0.00763800600543618, -0.0197590496391058, -0.011868386529386, 0.0187484230846167, 0.0104172294959426, 0.000334243755787611, 0.0233610272407532, 0.00322461198084056, 0.0283234622329473, -0.0241513885557652, -0.0258616805076599, 0.020782632753253, -0.0084154112264514, 0.0150168770924211, -0.0105079272761941, -0.0083894981071353, 0.0157165415585041, -0.0149261802434921, -0.0172065682709217, -0.0178414490073919, 0.0202643629163504, 0.0078129218891263, 0.00787770561873913, 0.00364408688619733, 0.00766391959041357, 0.00478752050548792, 0.02609490044415, -0.00876524392515421, 0.00394533155485988, 0.00135479052551091, -0.01705108769238, 0.00448951497673988, -0.0268204789608717, 0.0144208669662476, 0.00820162519812584, -0.00101143657229841, 0.0138378124684095, -0.015405579470098, 0.00864215474575758, 0.0149261802434921, 0.0228168424218893, 0.00688651436939836, -0.00129567529074848, 0.0280902404338121, 0.00835062749683857, 0.0292822625488043, 0.0151334879919887, 0.0426018051803112, -0.00879763532429934, 0.0218839570879936, -0.0240995604544878, 0.0201218388974667, -0.00493652326986194, 0.00589208351448178, -0.0296709649264812, 0.00899846479296684, 0.00951673556119204, 0.0117776887491345, 0.00489765265956521, 0.0464629158377647, -0.00483934720978141, -0.0102682271972299, 0.0377300642430782, 0.00282133300788701, -0.00837006233632565, -0.00979530531913042, 0.0151594011113048, 0.0152630554512143, 0.00851906556636095, -0.0195387843996286, -0.621509552001953, -0.00328129786066711, 0.0119266910478473, -0.0154833206906915, 0.00597630254924297, -0.00791657622903585, -0.00175078131724149, 0.0213009025901556, -0.0290749538689852, 0.0257580261677504, -0.00957504101097584, 0.00435023009777069, -0.0219098702073097, -0.0316403917968273, -0.00206822180189192, -0.0138507690280676, -0.00404898542910814, -0.0113047668710351, 0.0092511223629117, 0.00860976241528988, -0.0228427555412054, 0.0144986072555184, -0.0135527644306421, 0.00207470008172095, -0.00702256010845304, 0.0207178480923176, 0.0102747054770589, -0.0314330831170082, 0.00774166034534574, -0.00109889463055879, -0.0203550588339567, 0.00544831482693553, -0.00560055673122406, 0.0273128356784582, 0.0469293594360352, 0.00667920615524054, -0.00765096303075552, 0.0131834968924522, 0.020782632753253, 0.0102617489174008, -0.00746309012174606, 0.013040971942246, 0.0328065007925034, -0.00365380453877151, -0.00613178359344602, 0.00914098974317312, 0.0361234284937382, -0.0215211678296328, -0.00280189793556929, 0.0153407957404852, 0.00275331013835967, 0.00339143024757504, -0.0175823140889406, 0.000932886265218258, -0.00252170814201236, -0.00573012419044971, -0.00436642579734325, -0.0286603383719921, 0.0048944135196507, 0.00870046019554138, -0.010585667565465, -0.00730113033205271, -0.0193444322794676, -0.0222337879240513, -0.030811158940196, 0.0256802849471569, 0.0046676704660058, 0.00788418482989073, 0.00432755565270782, 0.00536085665225983, 0.00489117437973619, -0.00664681429043412, -0.0141876451671124, -0.0330656357109547, 0.0134620666503906, 0.00271605933085084, 0.0226743184030056, -0.0120627377182245, -0.0138118993490934, 0.0141487745568156, 0.0141358179971576, -0.0188909471035004, -0.0115962941199541, 0.00107622030191123, 0.0218450855463743, 0.00064986216602847, -0.0121663911268115, -0.00788418482989073, 0.00617065373808146, 0.0126846618950367, 0.0169085636734962, 0.026872307062149, 0.0141228614374995, -0.0331692881882191, 0.00715212803333998, 0.0242550428956747, 0.00981474108994007, 0.0111881569027901, -0.00625163363292813, -0.00145763473119587, -0.00811740569770336, -0.00343353976495564, 0.0136434612795711, 0.0131511045619845, 0.0141487745568156, 0.0105727110058069, 0.0152371423318982, -0.0205494109541178, 0.0147447856143117, -0.0312257762998343, -0.00299462955445051, 0.00824697315692902, -0.0209251567721367, -0.0124514400959015, -0.0100609194487333, -0.0252267997711897, 0.0174397900700569, 0.0146411312744021, 0.00467738788574934, -0.00995078682899475, 0.00546775013208389, -0.0148225259035826, 0.0110261971130967, -0.0322623141109943, 0.0249417498707771, 0.0116092506796122, 0.0158720221370459, 0.00192893669009209, -0.0157813262194395, -0.00672455504536629, 0.00439233938232064, 0.00872637331485748, 0.0415393523871899, 0.00714564928784966, 0.0161570720374584, 0.00680877408012748, 0.00661442242562771, -0.0298782736063004, 0.00538677023723722, -0.0227909293025732, 0.0050110244192183, 0.0183208491653204, 0.00342382211238146, 0.00424009747803211, -0.0406323783099651, -0.0367194376885891, -0.0115833375602961, 0.00425953278318048, -0.0097888270393014, -0.0115962941199541, 0.00809149257838726, -0.0146800018846989, -0.0210806373506784, -0.0135657209903002, -0.0144079094752669, -0.010870716534555, 0.0182042382657528, 0.0092770354822278, -0.0219357833266258, -0.0151205314323306, 0.0120886508375406, -0.00286182295531034, -0.0130604077130556, 0.00568801490589976, -0.000854335899930447, 0.000325335975503549, 0.0259135067462921, -0.00649133324623108, 0.00626459019258618, -0.0150557477027178, -0.00731408735737205, -0.0289972145110369, -0.0114084212109447, 0.00284886616282165, 0.0209769830107689, 0.0202902760356665, -0.0234387665987015, -0.00801375228911638, 0.0157294981181622, 0.0125421369448304, 0.00912155397236347, -0.0158590655773878, -0.0219746530056, 0.0128077510744333, 0.0481213815510273, 0.00283105066046119, 0.00706143071874976, 0.00848667323589325, -0.0241384319961071, 0.0210806373506784, 0.013345455750823, 0.000433646346209571, -0.0101645728573203, 0.0146929584443569, 0.0051794620230794, 0.0201607085764408, 0.0148484390228987, 0.00484258634969592, 0.0189427733421326, 0.0220005679875612, 0.0105532752349973, 0.00128190882969648, 0.0325732789933681, -0.00356634636409581, -0.015405579470098, -0.0379891991615295, -0.00496243638917804, -0.0426795445382595, 0.0187095515429974, 0.00525072449818254, -0.025706198066473, -0.0315885655581951, -0.0111104156821966, -0.0257839392870665, -0.00886889733374119, 0.0206660218536854, -0.0144208669662476, 0.0159627199172974, -0.0273905768990517, -0.0108318459242582, 0.0169344767928123, -0.00820810347795486, 0.0144079094752669, -0.0146929584443569, -0.00762504944577813, -0.00308208772912621, -0.00828584376722574, 0.0497021041810513, 0.00997022166848183, -0.00456725573167205, -0.00419798819348216, 0.0405805520713329, 0.0228038858622313, 0.0166494287550449, 0.000357727869413793, -0.031562652438879, 0.00763152772560716, -0.0145374769344926, 0.0272091813385487, -0.00147059152368456, 0.0311739481985569, 0.0314589962363243, 0.0175952706485987, 0.012943796813488, 0.038637038320303, 0.00110213388688862, 0.0391034819185734, 0.0304224565625191, 0.0220394376665354, -0.00482315151020885, 0.00960095413029194, 0.00638767937198281, 0.0182949360460043, 0.00994430854916573, 0.0140710342675447, -0.0334025099873543, -0.00177669478580356, 0.0168826505541801, 0.0433014705777168, 0.0332729443907738, 0.0149650499224663, 0.0327028445899487, 0.0251749716699123, -0.0145763475447893, -0.00677638221532106, 0.00339790852740407, 0.00773518159985542, 0.00734000094234943, -0.0137859852984548, -0.0102487923577428, 0.00968517269939184, -0.0178284924477339, 0.0189686864614487, -0.0113371592015028, 0.0177118815481663, 0.0216766484081745, -0.0196813084185123, 0.0229334533214569, 0.00776757346466184, -0.00914098974317312, 0.0160145480185747, -0.0306815914809704, 0.0110780242830515, 0.0342317409813404, -0.0198756605386734, -0.0031355342362076, -0.0146929584443569, -0.0144986072555184, -0.00940012466162443, 0.00724930362775922, -0.0120497802272439, 0.0108188893646002, -0.00139689992647618, 0.028245722874999, 0.000125619772006758, -0.0165976006537676, 0.0307334195822477, 0.00276140798814595, 0.00282619171775877, -0.0204068869352341, -0.00483934720978141, 0.00459640845656395, -0.0193573888391256, -0.0141617311164737, 0.0169085636734962, -0.0125615727156401, 0.0148484390228987, -0.0354496762156487, 0.00696425512433052, -0.0453486368060112, 0.0293600037693977, 0.0109355002641678, -0.00315820868127048, 0.0120756942778826, -0.000780239468440413, -0.00682173063978553, -0.0351646281778812, -0.0118165593594313, 0.0275201443582773, -0.00180098868440837, -0.0171936117112637, -0.0328583270311356, -0.0321586616337299, -0.00693186325952411, 0.139518320560455, 0.0101386597380042, -0.00304159778170288, 0.00940012466162443, -0.0110261971130967, 0.00906972773373127, 0.00576899433508515, -0.0175434444099665, -0.0143301691859961, -0.0323918834328651, -0.00248445756733418, -0.010190486907959, -0.00490089179947972, -0.00310314237140119, 0.00444092741236091, 0.0077870087698102, 0.00458992971107364, -0.0119202127680182, -0.0275201443582773, -0.00745661137625575, -0.0221430920064449, 6.09878443356138e-05, 0.0230241511017084, 0.018826162442565, -0.0137730287387967, 0.0154444500803947, 0.0295932255685329, 0.0218580421060324, -0.0144856506958604, 0.00674399035051465, -0.028064327314496, 0.0170122180134058, 0.0151205314323306, 0.00162931170780212, -0.0381965078413486, -0.0126328347250819, -0.00759913586080074, -0.00902437884360552, 0.0191112104803324, 0.0248510520905256, 0.0077870087698102, 0.0105662327259779, -0.00095637037884444, -0.0305001977831125, 0.0192666929215193, -0.00964630302041769, 0.00719099817797542, -0.0125032672658563, 0.00548394583165646, 0.00261726416647434, 0.0107541056349874, -0.00541916210204363, -0.0208215024322271, 0.00456725573167205, 0.00409433385357261, -0.00823401659727097, -0.00925760064274073, -0.00201639463193715, -0.0279606729745865, -0.0179969295859337, -0.0120692159980536, -0.0102358348667622, 0.0144856506958604, -0.0272869225591421, 0.0027468316257, -0.0194869562983513, 0.00599249824881554, -0.0043826219625771, -0.00452514598146081, -0.0130085805431008, -0.0132806720212102, -0.0125097455456853, -0.0323141440749168, 0.0163902938365936, 0.017647098749876, 0.00997022166848183, 0.0446489714086056, -0.00612206617370248, -0.00225123600102961, 0.0178155358880758, -0.00510820001363754, -0.0433273836970329, -0.0013175398344174, -0.00355338957160711, -0.0313035175204277, -0.00873285159468651, -0.0168178658932447, -0.0200959239155054, -0.00202935142442584, 0.0260819438844919, -0.00700960354879498, 0.00777405221015215, 0.0504017695784569, -0.0187225081026554, -0.0302410628646612, 0.00027452121139504, 0.0162866394966841, 0.00692538451403379, 0.0066986414603889, -0.00277922349050641, 0.0188132058829069, 0.00446684053167701, -0.0233351122587919, 0.00567505788058043, -0.0102617489174008, -0.0105662327259779, 0.00248931627720594, 0.0256284587085247, 0.0012082172324881, 0.00102844228968024, 0.0285307709127665, -0.0241254754364491, 0.00375098013319075, -0.00266423239372671, 0.0255377609282732, -0.01567767187953, 0.0117193832993507, 0.00434051221236587, 0.0013304966269061, -0.0101062674075365, -0.0137730287387967, -0.0186058972030878, 0.0138507690280676, 0.0366157852113247, -0.00821458175778389, 0.00812388397753239, 0.0213009025901556, -0.0157554112374783, 0.0192666929215193, 0.00306427222676575, -0.0200052279978991, 0.0319772660732269, -0.0117776887491345, -0.0208474155515432, -0.00998317822813988, -0.00967869441956282, -0.00290069309994578, 0.0159238502383232, -0.0163902938365936, -0.0161052439361811, -0.00859680585563183, -0.0278829336166382, 0.00434375135228038, -0.0544701926410198, 0.032547365874052, -0.0305261109024286, 0.00377365434542298, -0.0116351647302508, -0.0122894803062081, 0.0310962088406086, -0.01705108769238, -0.0100220488384366, -0.0311221219599247, 0.00768983317539096, -0.0238404255360365, -0.0205105412751436, 0.0169992595911026, -0.0332470275461674, 0.0117712104693055, 0.0143819963559508, 0.0489506125450134, -0.0197590496391058, -0.0269759614020586, 0.0122894803062081, 0.00903733540326357, 0.0038935043849051, -0.0131834968924522, 0.022156048566103, -0.00272415741346776, 0.0313553437590599, 0.0280125010758638, 0.00751491682603955, -0.0256284587085247, 0.00509524345397949, 0.0185670275241137, -0.00881707109510899, -0.00460612587630749, -0.00304321735166013, -0.00556492572650313, -0.00923168659210205, -0.0145245203748345, -0.00567829702049494, 0.0047259759157896, 0.0199922695755959, -0.024319825693965, 0.00102034432347864, 0.0196165237575769, 0.0189427733421326, 0.0258357655256987, -0.00553253386169672, 0.0252397563308477, 0.00755378743633628, 0.0110132405534387, 0.000597630278207362, 0.0168826505541801, -0.0378337204456329, -0.0375745855271816, -0.00432755565270782, 0.0229852814227343, 0.0279347598552704, 0.0341799147427082, 0.0173490922898054, -0.0129114044830203, -0.00131106143817306, -0.00287477974779904, 0.0396994911134243, -0.00208765687420964, -0.0015807239105925, 0.0100090922787786, -0.0186318121850491, -0.0164291635155678, 0.00192893669009209, -0.0140969473868608, -0.0346204452216625, 0.00765096303075552, -0.00559731759130955, -0.00305941328406334, 0.0134879807010293, -0.000734081084374338, -0.00761209242045879, -0.0147836552932858, -0.0194610431790352, -0.0171806551516056, -0.0193703453987837, -1.61484922500676e-06, -0.0108642373234034, 0.00108512805309147, -0.00937421154230833, 0.0178932771086693, 0.00275169056840241, 0.00179127114824951, 0.0171936117112637, 0.0129049262031913, -0.0220264811068773, -0.0176989249885082, -0.00548070669174194, 0.0130085805431008, -0.00362789095379412, -0.030007841065526, 0.0179191902279854, 0.0176989249885082, -0.00331368972547352, -0.0167142115533352, -0.0139544233679771, 0.00137827463913709, -0.0121080856770277, -0.00981474108994007, 0.0230241511017084, -0.0101192239671946, -0.00557140400633216, -0.0283752903342247, 0.00229658442549407, -0.0132223665714264, 0.00479723792523146, -0.00371534912846982, -0.00397124513983727, 0.0117258615791798, 0.0046676704660058, 0.000234841150813736, -0.0107087567448616, 0.00173134612850845, 0.0451672412455082, -0.011978518217802, 0.00527015933766961, 0.0200570542365313, 0.0208992436528206, -0.0278829336166382, 0.000351856841007248, 0.0309148132801056, 0.0190723408013582, -0.0216636918485165, -0.00635204836726189, -0.0219228267669678, -0.0175045747309923, -0.00448627583682537, -0.0224151834845543, -0.0222078748047352, -0.0205753240734339, -0.0367712676525116, 0.00539972679689527, 0.0198627021163702, 0.00906324945390224, -0.0279088467359543, -0.00267880875617266, 0.0141487745568156, -0.00201153592206538, -0.0218062158674002, -0.0169603899121284, 0.0549366362392902, 0.0113825080916286, -0.0275201443582773, 0.0068152523599565, -0.000549852207768708, 0.0249676629900932, -0.0118100810796022, 0.0176730118691921, -0.00206336309202015, 0.00465471344068646, -0.0199663564562798, 0.00946490839123726, -0.00813036318868399, 0.0348795801401138, -0.0365121327340603, -0.00168275833129883, -0.0196553952991962, -0.00117420579772443, 0.00505961198359728, -0.00697721168398857, -0.0286603383719921, -0.0136045906692743, 0.00105759501457214, 0.009905437938869, -0.0027759843505919, -0.0143431257456541, -0.0198756605386734, -0.00558436056599021, 0.00752139557152987, -0.00250227306969464, -0.0355274192988873, 0.0346981845796108, -0.00260754651390016, -0.00184309820178896, 0.0278051923960447, -0.00835710577666759, 0.0032067964784801, -0.0306038521230221, 0.0208862870931625, 0.0254470631480217, 0.00229172571562231, -0.0115185538306832, -0.00294280261732638, -0.00219940883107483, -0.0408656001091003, -0.0410729087889194, 0.0270018745213747, 0.00713269272819161, -0.0126263564452529, -0.00467738788574934, 0.00097094668308273, -0.0137082450091839, 0.0203291457146406, 0.0129956239834428, 0.0164032503962517, -0.0265872571617365, -0.016260726377368, -0.0322364009916782, -0.0091345114633441, -0.0185411144047976, 0.00696425512433052, -0.0421353615820408, -0.00765744131058455, 0.0247214846313, 0.0241384319961071, -0.0291008688509464, 0.000723148812539876, 0.00412348657846451, -0.0170251745730639, -0.0267168246209621, -0.0403991565108299, 0.00510820001363754, 0.0288417339324951, 0.0247992258518934, -0.0100479619577527, 0.0458150804042816, 0.0207567196339369, 0.0359938591718674, 0.0085903275758028, 0.010890151374042, 0.0152889685705304, -0.0424981527030468, 0.0180228445678949, 0.00960743241012096, -0.00726226018741727, -0.00263184052892029, 0.0135786775499582, 0.00890776794403791, 0.0437160842120647, 0.0227131880819798, -0.0137341590598226, -0.0113112460821867, -0.0197331346571445, 0.00712621444836259, 0.0186836384236813, -0.00396476639434695, 0.0169992595911026, -0.0408656001091003, -0.0066403360106051, 0.00791657622903585, 0.0155221903696656, 0.00582082150503993, -0.00223989877849817, 0.0124384835362434, -0.0199793130159378, -0.0025330453645438, -0.0241513885557652, -0.0116869919002056, 0.00267071090638638, -0.0152241848409176, 0.00936773233115673, 0.0131316697224975, -0.0184633731842041, 0.0115962941199541, 0.00896607339382172, -0.0161570720374584, -0.0137730287387967, -0.00526044191792607, -0.0132029317319393, 0.00386759079992771, 0.00951025728136301, -0.00465471344068646, 0.0124190477654338, -0.0143301691859961, -0.00567181874066591, 0.00707438727840781, 0.0175564009696245, 0.0137471156194806, 0.0175564009696245, -0.000683063815813512, 0.0119331702589989, -2.43951380980434e-05, -0.00665977131575346, -0.0154574066400528, 0.00193055626004934, -0.0385852120816708, -0.00995078682899475, -0.0324955359101295, -0.00381576386280358, -0.011576859280467, 0.00573660247027874, -0.00111590034794062, -0.0172454379498959, -0.0284789446741343, -0.0236590318381786, -0.0109031079337001, 0.00849315151572227, 0.0164421200752258, 0.236331179738045, -0.0034626922570169, 0.00516326632350683, 0.0232832860201597, -0.014317212626338, 0.0210288111120462, 0.0110845025628805, 0.0113047668710351, -0.0255895871669054, 0.00794249027967453, -0.00205688457936049, -0.0185799840837717, -0.0124384835362434, 0.00132644758559763, 0.00448303669691086, -0.0133713698014617, -0.0379891991615295, -0.0137212015688419, -0.0282975491136312, 0.0103783598169684, -0.0060119335539639, -0.0127624021843076, -0.0075019602663815, -0.0222337879240513, -0.00373154506087303, 0.0107735404744744, -0.00362789095379412, 0.00482962979003787, 0.00120173883624375, 0.002549241296947, -0.0265613440424204, -0.0148095693439245, 0.0172843094915152, -0.0130798425525427, -0.00459640845656395, -0.0142265148460865, -0.00708734430372715, -0.0217155180871487, -0.0100479619577527, 0.0232444163411856, -0.00159853941295296, 0.00186577253043652, 0.00243586953729391, -0.00910859741270542, 0.00530255120247602, 0.0151464445516467, -0.0153537532314658, -0.0106180589646101, 0.0132029317319393, 0.0162995960563421, -0.0353201106190681, -0.00711325742304325, 0.0372636243700981, 0.0386888645589352, -0.0116351647302508, -0.0171288289129734, 0.0162348113954067, 0.0176859684288502, -0.00187710963655263, -0.0103589240461588, -0.00371210975572467, 0.00484258634969592, 0.00636176578700542, 0.0265095178037882, -0.0195776540786028, 0.0334802493453026, 0.0128012727946043, 0.0295154843479395, 0.00910859741270542, -0.0201607085764408, -0.00374450162053108, 0.00860328413546085, -0.00176859681960195, -0.0139025961980224, -0.00318898097611964, -0.0266390852630138, 0.0117647321894765, 0.0425758920609951, 0.0201607085764408, -0.000996860209852457, 0.00329749379307032, -0.0161182004958391, 0.00570097146555781, -0.002032590797171, 0.00606699986383319, -0.0150557477027178, 0.00116529804654419, -0.0189686864614487, -0.0141617311164737, -0.00252494728192687, 0.0135138938203454, -0.0155092338100076, -0.0161052439361811, -0.0281679816544056, 0.00621600262820721, 0.000927217653952539, 0.0109873265028, 0.0154185369610786, -0.0135527644306421, -0.00125194631982595, -0.0280125010758638, 0.0504795126616955, 0.0138378124684095, -0.0171029139310122, -0.00252656685188413, -0.0156128881499171, 0.00986656732857227, 0.00908916257321835, 0.00786474905908108, -0.0428091138601303, 0.00567181874066591, -0.0139025961980224, -0.000642573984805495, -0.0185540709644556, 0.00378661113791168, 0.0135786775499582, 0.0199533998966217, -0.00833767093718052, 0.0264965612441301, -0.00777405221015215, -0.0102164000272751, -0.0412802174687386, -0.0355533324182034, -0.00859680585563183, 0.0158331524580717, 0.00983417592942715, -0.00865511130541563, -0.0112011134624481, -0.00842188950628042, -0.0363825634121895, 0.0216766484081745, -0.0032780587207526, 0.0261337719857693, -0.0158979371190071, -0.00946490839123726, 0.0114148994907737, 0.0197590496391058, -0.0139932939782739, -0.0027759843505919, -0.000150521038449369, -0.00866806786507368, -0.00180908665060997, 0.0112140700221062, -0.0259782914072275, 0.0148743530735373, -0.0128919696435332, 0.0142265148460865, -0.0292045213282108, -0.0116610778495669, -0.00649457285180688, -0.0207437630742788, 0.0234517231583595, 0.0278570204973221, -0.0324177965521812, 0.00837654061615467, -0.0141617311164737, -0.00258325273171067, -0.0427054576575756, -0.014705915004015, 0.0316403917968273, -0.0433273836970329, 0.00943899527192116, 0.0288417339324951, -0.00690594967454672, -0.026872307062149, 0.00762504944577813, -0.16159662604332, 0.0361752547323704, 0.0169215202331543, -0.028453029692173, -0.00162040395662189, -0.0126263564452529, 0.0112399831414223, 0.015405579470098, -0.0136823318898678, -0.000774570915382355, 0.0164680331945419, 0.00175078131724149, -0.0359679460525513, 0.00321813370101154, -0.000672536494676024, -0.00222532241605222, -0.0123413074761629, 0.0223115291446447, -0.00549366325139999, 0.0121275214478374, 0.0306038521230221, -0.0279606729745865, 0.0130021022632718, -0.0297746192663908, 0.0106310164555907, -0.0175823140889406, -0.0332729443907738, 0.0106698861345649, -0.0139025961980224, -0.0292822625488043, -0.0172065682709217, -0.00484906509518623, 0.0136823318898678, 0.0211324654519558, 0.00250713177956641, 0.00444416655227542, 0.022959366440773, -0.00374450162053108, -0.0100026139989495, 0.0146800018846989, 0.0419539660215378, 0.028453029692173, -0.00114667264278978, -0.000111245877633337, -0.015003920532763, 0.0281679816544056, 0.0134879807010293, -0.00298329256474972, -0.00772222504019737, -0.00259620952419937, -0.00337523431517184, -0.024112518876791, -0.0136952884495258, 0.0244493931531906, 0.016092287376523, -0.00206984137184918, -0.0388443470001221, -0.000888347392901778, 0.00170057383365929, -0.0246048755943775, 0.01264579128474, -0.00838301982730627, 0.0200052279978991, -0.0162348113954067, -0.0170381311327219, -0.0277274530380964, -0.0142006017267704, -0.00272901612333953, -0.0281420685350895, 0.0131446262821555, -0.0163125526160002, -0.000989572028629482, -0.0100803542882204, -0.0386629514396191, -0.0065010511316359, 0.00413968274369836, -0.0126198781654239, 0.0100285271182656, -0.00667920615524054, 0.00408785557374358, 0.00348536670207977, 0.0299300998449326, -0.0213138591498137, -0.0178803205490112, 0.00573336333036423, 0.00090697273844853, 0.0182560663670301, 0.00556816486641765, -0.00585969164967537, -0.00908916257321835, 0.0149391368031502, -0.0272869225591421, 0.00794249027967453, -0.0106115806847811, 0.00378013285808265, 0.0138766830787063, 0.0334543362259865, 0.00840245466679335, 0.00555520784109831, -0.000171778214280494, 0.0124773532152176, -0.00443768780678511, 0.0038513948675245, 0.0382742509245872, 0.00965925958007574, 0.00728169549256563, 0.0288676470518112, 0.0273128356784582, -0.0021184291690588, -0.00415911804884672, -0.036071602255106, 0.0130604077130556, 0.0153537532314658, 0.016092287376523, 0.0190982539206743, 0.0273387487977743, 0.0123866563662887, 0.00328291743062437, 0.0269759614020586, -0.0147706987336278, 0.0534854792058468, 0.000226743184612133, -0.0379632860422134, 0.00507256900891662, -0.00456401659175754, -0.031199861317873, -0.11215365678072, -0.0128919696435332, 0.00142605265136808, 0.00871341675519943, -0.00337847345508635, 0.0440011359751225, -0.00568153616040945, 0.0343872234225273, 0.00056645309086889, 0.0387147776782513, -0.00838301982730627, -0.0129826664924622, -0.00157991412561387, -0.0013304966269061, 0.0113630723208189, 0.00367323961108923, -0.0123348291963339, 0.00746309012174606, -0.0121339997276664, 0.0321068353950977, 0.0132094100117683, -0.00672455504536629, 0.0245789606124163, -0.0195387843996286, -0.0101645728573203, 0.000703308789525181, -0.0285307709127665, 0.0293600037693977, -0.00839597638696432, 0.00760561414062977, -0.0153278391808271, -0.00465147430077195, 0.00356958550401032, -0.00998317822813988, -0.0140062505379319, -0.0236460752785206, -0.0213397722691298, -0.0179710164666176, 0.0273387487977743, -0.0277015380561352, -0.0034626922570169, -0.011674034409225, -0.00381252472288907, -0.0358642935752869, -0.0108966296538711, -0.00877172220498323, -0.00184309820178896, 0.00900494400411844, 0.0189298167824745, -0.00691890623420477, -0.0336875580251217, 0.0150946173816919, -0.0218580421060324, -0.0177637096494436, 0.00853850040584803, 0.0184245035052299, -0.0136693743988872, -0.0138637265190482, -0.00453162472695112, -0.000762828858569264, -0.0220783073455095, 0.00949729979038239, -0.0311480350792408, 0.0250583607703447, -0.00610910914838314, -0.00147868948988616, -0.0491579212248325, -0.00326348235830665, 0.0167919527739286, -0.0260042045265436, -0.0151075748726726, 0.0160534176975489, -0.0196683518588543, 0.0090762060135603, -0.0430682487785816, 0.00399391911923885, -0.0196424387395382, -0.00283590937033296, 0.0294118300080299, 0.00428544636815786, -0.014990963973105, -0.01539262291044, 0.0190852973610163, -0.000468872516648844, 0.0309407263994217, -0.00168599758762866, -0.0196035671979189, 0.0100155705586076, -0.0175434444099665, 0.00265451474115252, -0.000313189026201144, 0.0176859684288502, -0.00131996930576861, -0.00691242795437574, -0.00876524392515421, 0.0286603383719921, 0.00752139557152987, -0.0136564178392291, 0.0211454220116138, 0.00525396363809705, -0.00587588781490922, 0.00652372511103749, -0.0468257069587708, 0.00568801490589976, -0.0152371423318982, 0.0071003008633852, -0.0363566502928734, 0.0148095693439245, -0.00876524392515421, -0.026690911501646, 0.0122700454667211, 0.00317278504371643, -0.00389026524499059, 0.0233351122587919, 0.0234905946999788, -0.019020514562726, -0.0400881953537464, 0.00785179249942303, 0.0207437630742788, -0.0163514222949743, 0.0265872571617365, 0.0187743362039328, -0.0023921406827867, 0.00598601996898651, 0.0145115638151765, 0.00709382258355618, 0.0131511045619845, 0.000852716329973191, -0.000828017538879067, 0.0282198097556829, 0.0132158882915974, -0.0210676807910204, -0.00676342519000173, -0.030811158940196, -0.0189168602228165, 0.007845314219594, 0.00183176097925752, -0.0342317409813404, 0.012665226124227, 0.0120756942778826, 0.0083894981071353, 0.0031063815113157, -0.0322364009916782, -0.0255507174879313, -0.00797488167881966, -0.0328583270311356, -0.0113436374813318, -0.0175564009696245, 0.00408461643382907, -0.00371534912846982, -0.0131316697224975, 0.00906972773373127, -0.00238890131004155, 0.0227002315223217, -0.032003179192543, 0.00149407563731074, -0.0127624021843076, -0.0161829851567745, 0.00331207015551627, 0.0194869562983513, 0.00427896762266755, -0.0366676114499569, 0.035890206694603, -0.00776757346466184, 0.0141746886074543, 0.000442149204900488, 0.015003920532763, -0.0066986414603889, -0.00248121819458902, 0.00496567552909255, 0.0236590318381786, -0.0247214846313, -0.01785440556705, -0.0148873096331954, 0.0180098880082369, 0.0169863030314445, -0.00600545527413487, 0.00774813862517476, 0.0160145480185747, 0.010190486907959, 0.00299300998449326, 0.0257968958467245, 0.00748900324106216, -0.0138248559087515, -0.0385333858430386, 0.00842836778610945, 0.0140062505379319, -0.00449599325656891, -0.0105403186753392, 0.0176082272082567, -0.00320193776860833, -0.000241319532506168, -0.0392848774790764, -0.00870693847537041, -0.010300618596375, 0.009218730032444, 0.00805910024791956, -0.00175725971348584, 0.00498834997415543, 0.00702903885394335, -0.00140337832272053, 0.0143431257456541, 0.0103394892066717, -0.0296968780457973, -0.0108448024839163, 0.0161052439361811, -0.00455429870635271, 0.0131251914426684, -0.0104237077757716, 0.00367971789091825, -0.0340503491461277, 0.0281161554157734, 0.0301374085247517, 0.0193962603807449, 0.0223763138055801, 0.0138766830787063, -0.00737887108698487, 0.0272350963205099, 0.011674034409225, -0.0164032503962517, -0.00342058297246695, 0.0342835709452629, 0.0252267997711897, 0.0135527644306421, -0.0145504344254732, -0.0043243165127933, 0.0384038165211678, 0.0227131880819798, -0.00573012419044971, -0.00523452833294868, 0.0101710511371493, 0.0148613965138793, 0.0284271165728569, 0.00382872065529227, -0.0367453508079052, -0.0101580945774913, -0.00782587938010693, -0.0063261347822845, 0.000420689582824707, 0.0251231454312801, 0.000787932542152703, 0.0354755893349648, 0.0241384319961071, 0.00622248090803623, 0.0144856506958604, -0.00129324593581259, 0.00505637284368277, -0.0137471156194806, 0.0213138591498137, -0.00589208351448178, 0.0001859496551333, 0.017867362126708, -0.00331692886538804, 0.0102293565869331, -0.0108188893646002, 0.00590827967971563, 0.00821458175778389, -0.00236136838793755, 0.0198497455567122, -0.016493946313858, 0.0152500988915563, 0.0203680172562599, 0.0180228445678949, 0.00836358405649662, 0.0142653854563832, -0.0105208838358521, -0.0174009203910828, 0.0112594189122319, -0.0111687211319804, 0.0044636013917625, -0.0179191902279854, -0.00210385280661285, -0.00816275458782911, -0.0224670097231865, -0.0363307371735573, 0.0233351122587919, -0.00487821782007813, 0.0139673799276352, 0.0253693237900734, 0.0122117400169373, -0.016675341874361, 0.0126069206744432, 0.00286506209522486, -0.0116027723997831, -0.0280125010758638, 0.00997669994831085, 0.0248640105128288, -0.0222856160253286, -0.0276237986981869, -0.0102552706375718],id:"cb158327aa1ae0efca48a1dbc8f2dc06",source:"state_of_union.txt",text:"So let’s not abandon our streets. Or choose between safety and equal justice.
Let’s come together to protect our communities, restore trust, and hold law enforcement accountable.
That’s why the Justice Department required body cameras, banned chokeholds, and restricted no-knock warrants for its officers.
That’s why the American Rescue Plan provided $350 Billion that cities, states, and counties can use to hire more police and invest in proven strategies like community violence interruption—trusted messengers breaking the cycle of violence and trauma and giving young people hope.
We should all agree: The answer is not to Defund the police. The answer is to FUND the police with the resources and training they need to protect our communities.
I ask Democrats and Republicans alike: Pass my budget and keep our neighborhoods safe."})
(:Chunk{embedding:[-0.03516910597682, 0.00313730351626873, -0.00162409269250929, -0.00914448965340853, -0.00995327439159155, 0.00648006470873952, -0.0223720390349627, -0.0112447217106819, -0.0325862132012844, -0.00776172801852226, 0.0183020234107971, 0.00305740325711668, 0.0023073204793036, -0.00225024879910052, 0.0239243842661381, 0.0124448547139764, 0.0363953299820423, -0.00196326058357954, 0.0150668835267425, -0.033864613622427, -0.00117567356210202, 0.00104930088855326, 0.0134101789444685, 0.00384825165383518, -0.00638874992728233, 0.0078660873696208, 0.0159539375454187, -0.0305512044578791, 0.00630395812913775, -0.0178715419024229, 0.0051429602317512, -0.00901404023170471, -0.0315426178276539, -0.00930102821439505, -0.0238330699503422, 0.00648332573473454, -0.0127383656799793, -0.00554735260084271, 0.00114795309491456, -0.0298467800021172, 0.0400218181312084, 0.00635287631303072, 0.00309001561254263, -0.00206272816285491, -0.00997284241020679, 0.0160191636532545, -0.0173758342862129, 0.00862269289791584, -0.0275508724153042, 0.00744864996522665, 0.0221763662993908, -0.00724645378068089, -0.0280204899609089, -0.0286727361381054, -0.0230112411081791, -0.00263670459389687, -0.00958149414509535, 0.0139971999451518, -0.000715840025804937, -0.00877270940691233, 0.00582455703988671, 0.0304729361087084, -0.0409349612891674, 0.0112903788685799, -0.00507447449490428, -0.00264485762454569, -0.0269768964499235, 0.0340994223952293, 0.00273454166017473, 0.019893504679203, 0.0368127673864365, 0.0362127013504505, 0.0205196607857943, 0.00371780246496201, 0.023206913843751, -0.000129430074593984, -0.000253968319157138, 0.00324003235436976, -0.0067507466301322, -0.00827047973871231, 0.020989278331399, -0.00947713479399681, -0.0290119051933289, 0.00454289373010397, 0.0265855491161346, 0.0041808970272541, -0.000362811872037128, 0.00414176238700747, -0.000990598695352674, -0.0115512777119875, 0.00868139509111643, -0.00430156290531158, 0.00407001515850425, 0.00435374258086085, -0.0214067157357931, 0.0334993563592434, -0.0267029535025358, 0.0215763002634048, 0.00407653767615557, -0.0386651456356049, 0.0292206238955259, -0.0235591270029545, 0.00885097868740559, -0.012764454819262, -0.00979673583060503, -0.00815959833562374, -0.0196456518024206, -0.00304925022646785, -0.0193717069923878, -0.00977716874331236, -0.00239700428210199, 0.00539407506585121, 0.00102973345201463, -0.0297945998609066, 0.015980027616024, 0.00162409269250929, -0.00526688667014241, -0.0120991645380855, 0.00314871780574322, -0.0261681117117405, 0.00476465746760368, -0.0045852898620069, 0.0189934056252241, 0.00938582047820091, 0.00593217788264155, -0.0124644218012691, -0.0297163296490908, 0.00097836903296411, 0.0117404293268919, 0.00253397598862648, 0.0314121693372726, 0.0125361690297723, 0.0159539375454187, -0.0337341651320457, -5.38612548552919e-05, -0.00024194251454901, -0.00778781762346625, 0.042604710906744, -0.00298239500261843, -0.038091167807579, 0.0271073449403048, -0.00930755119770765, -0.0157582648098469, -0.0176628232002258, 0.0302642174065113, 0.0154321417212486, 0.0129796965047717, 0.022906880825758, 0.0269768964499235, 0.0180933047086, -0.0146624911576509, -0.00751387467607856, 0.0282552987337112, -0.0123078832402825, -0.014623356051743, -0.0242374632507563, -0.0200761333107948, 0.018380293622613, 0.00829004775732756, 0.00593870040029287, 0.00307860132306814, -0.0217197928577662, 0.00823134556412697, -0.000227470809477381, 0.018393337726593, 0.0169583968818188, -0.013012308627367, 0.00862269289791584, -0.00335580599494278, 0.00278019881807268, 0.043596126139164, 0.0325079448521137, -0.0204674806445837, 0.00847919844090939, -0.0216154344379902, 0.0294032525271177, 0.0121382987126708, 0.00460159592330456, -0.0433613173663616, -0.00997284241020679, -0.00769650330767035, 0.0119361029937863, 0.0122687481343746, 0.0411436818540096, -0.0307599231600761, 0.0314121693372726, 0.0213936697691679, 0.00124334404245019, -0.0105663863942027, -0.0425003543496132, 0.00735081313177943, -0.00256006582640111, -0.0041189338080585, -0.0103837568312883, -0.625738799571991, -0.01330581959337, -0.00437657115980983, -0.024720124900341, 0.00230895099230111, 0.00835527200251818, -0.00247527379542589, 0.00986848305910826, -0.0419785566627979, 0.0220589619129896, -0.026024617254734, 0.0110490480437875, 0.0018344420241192, -0.0371519364416599, 0.000364850129699335, -0.0319861471652985, 0.0116165019571781, -0.00810741819441319, 0.00583760207518935, 0.00352865108288825, -0.0320644155144691, 0.0163713749498129, -0.00485597178339958, -0.00198771990835667, 0.00176595617085695, 0.00866182800382376, -0.00562562234699726, -0.00678988127037883, -0.00616698618978262, 0.00217034877277911, -0.0149364341050386, 0.0267681777477264, -0.0291423536837101, 0.0301598571240902, 0.0482662059366703, 0.00576585531234741, -0.00810741819441319, 0.0204153005033731, 0.0199065487831831, 0.0105598634108901, -0.0131884152069688, 0.00559627125039697, 0.0272377952933311, 0.00289760297164321, -0.0005768301198259, -0.00286662136204541, 0.0305251143872738, -0.0122165689244866, 0.00934016332030296, -0.00576585531234741, -0.0189803596585989, 0.00365257798694074, 0.00488206185400486, 0.00484944926574826, 0.00356452469713986, 0.00890315882861614, -0.00575933279469609, -0.00371780246496201, 0.00312099745497108, -0.00760518899187446, -0.00289923371747136, 0.00565497344359756, -0.0106772677972913, -0.0251375623047352, -0.0438048429787159, 0.00360365933738649, 0.00416459096595645, 0.0143233230337501, 0.00309327687136829, -0.0249940678477287, -0.00648332573473454, 0.0154451867565513, -0.0353778265416622, -0.0195543374866247, 0.0145842218771577, -0.00502229435369372, 0.0249549336731434, -0.0164366010576487, -0.0122752711176872, 0.0235199928283691, -0.0107033578678966, -0.00328405876643956, -0.0153538724407554, 0.00288618868216872, 0.0253593269735575, -0.0111338403075933, -0.0134493131190538, -0.003995006904006, 0.0185107421129942, 0.015171242877841, 0.0100250216200948, 0.00632026419043541, -0.00962062925100327, -0.0465442799031734, -0.015471275895834, -0.00363627169281244, 0.000328772788634524, 0.00556365866214037, -0.016984486952424, 0.00991414021700621, -0.0324035845696926, -0.0118708778172731, 0.00347647140733898, 0.0320905074477196, 0.0243548676371574, 0.0146364010870457, -0.00250788615085185, 0.006101761944592, 0.0217328388243914, -0.0381955280900002, -0.0130840558558702, -0.00590608781203628, -0.0230634212493896, -0.000869117851834744, -0.0120795965194702, -0.0227764323353767, 0.0171540714800358, 0.0250071138143539, -0.0100772017613053, -0.00392978265881538, 0.00194043200463057, 0.0164496451616287, 0.0168409924954176, -0.0229199267923832, 0.00757257686927915, 0.0153408274054527, 0.0103380996733904, -0.00180019915569574, 0.000904176093172282, -0.00235460815019906, 0.0231938697397709, -0.0373084731400013, 0.0364475101232529, 0.00686815101653337, 0.01381457131356, 0.00512665417045355, 0.0110686151310802, -0.0161235220730305, 0.0109903458505869, -0.00772911589592695, 0.00107376009691507, -0.00124497467186302, 0.00783347524702549, -0.0112838568165898, -0.0293510723859072, -0.0276813227683306, -0.0158365350216627, 0.00503533938899636, -0.0214719399809837, -0.00820525549352169, -0.00862921494990587, -0.0120795965194702, 0.0115838898345828, 0.00714861648157239, -0.0158495791256428, 0.000140742471558042, -0.00442548934370279, -0.00457550585269928, -0.0019420626340434, -0.0129470843821764, 0.0151451537385583, 0.0331080108880997, -0.00800305884331465, 0.000688119558617473, -0.00486575532704592, -0.00424938322976232, 0.0251114722341299, 0.012712275609374, -0.00125312770251185, -0.0457876734435558, 0.00499294372275472, -0.034856028854847, -0.0138015262782574, 0.00214099767617881, 0.0234678126871586, 0.00632026419043541, -0.020689245313406, 0.0169062167406082, -0.00132242881227285, 0.00619959877803922, 0.00663008121773601, -0.0125622591003776, -0.0190325397998095, 0.0151321087032557, -0.00153522414620966, 0.0221763662993908, -0.00196326058357954, 0.00862921494990587, -0.0255810897797346, 0.0186411924660206, -6.36003596810042e-06, -0.0127057526260614, -0.0287510063499212, 0.00703773507848382, 6.83329635648988e-05, 0.0304468460381031, 0.0187977310270071, 0.0138406613841653, 0.0308642834424973, 0.0227242521941662, 0.0108403293415904, -0.00789869949221611, -0.000923743471503258, -0.0241591930389404, 0.00705077964812517, -0.034569039940834, -0.00595500646159053, -0.0234547685831785, 0.0105337733402848, 0.00618981523439288, -0.0112186316400766, -0.0186151023954153, -0.0126731405034661, -0.0299511384218931, -0.000905806722585112, 0.020389212295413, -0.00219806912355125, 0.0127383656799793, 0.0169192627072334, 0.00459181237965822, 0.00584086356684566, 0.00204805261455476, 0.0195152014493942, -0.0151451537385583, 0.00089031585957855, 0.0183150693774223, -0.00126617262139916, 0.0048624943010509, 0.00716818403452635, -0.00947061274200678, -0.0303946658968925, 0.016775768250227, 0.0334993563592434, 0.0229851510375738, 0.0219285115599632, -0.0228286124765873, 0.0191499441862106, -0.0153930066153407, 0.0415350273251534, 0.0105794304981828, 0.00464725308120251, 0.0158626232296228, 0.0054495157673955, -0.00666921585798264, 0.0165540054440498, -0.00388738652691245, 0.0521014146506786, -0.00632678670808673, -0.00575607130303979, -0.00269214552827179, 0.00461790198460221, -0.00603653723374009, -0.00651593785732985, 0.00106642232276499, 0.0235721729695797, -0.0383259765803814, 0.0123600624501705, 0.0190977640450001, 0.0278117712587118, 0.0313599891960621, 0.0236504413187504, 0.0151581978425384, 0.0145581318065524, -0.0246679447591305, -0.00470921630039811, 0.0222676806151867, -0.00190455850679427, -0.011962192133069, -0.0128362020477653, -0.0110490480437875, 0.00234156334772706, -0.0100511116907001, 0.0190194956958294, -0.0046766041778028, 0.0468051768839359, 0.0165670495480299, 0.00112186325713992, 0.00257963314652443, -0.0145581318065524, 0.0031128441914916, -0.0184324737638235, -0.0352212861180305, 0.0221241861581802, 0.0178584959357977, -0.00909230951219797, 9.20788006624207e-05, -0.0120926415547729, -0.036786675453186, 0.00693337572738528, 0.0335254482924938, -0.00548865040764213, 0.00580172846093774, 0.000634716940112412, -0.00909883249551058, 0.00741603737697005, -0.0116491140797734, 0.0437265746295452, 0.00613111304119229, 0.00186868489254266, -0.00998588744550943, -0.00249157985672355, -0.00133302784524858, -0.0290119051933289, -0.00232199602760375, 0.0299511384218931, 0.0248244851827621, -0.00310795241966844, -0.0344907715916634, 0.0163061507046223, -0.0185237880796194, 0.0215763002634048, 0.00590934930369258, 0.00862921494990587, -0.0118774008005857, -0.00716166151687503, 0.00909883249551058, -0.0378824509680271, 0.00206435867585242, 0.0167235881090164, -0.00319437496364117, -0.00519513990730047, -0.00508099654689431, -0.0334210880100727, 0.0158756691962481, 0.138171806931496, 0.0100445887073874, -0.020193537697196, 0.0102467853575945, -0.0208979640156031, -0.00396565580740571, -0.00965324137359858, -0.0159148033708334, 0.0336037166416645, 0.000909883237909526, -0.0113686490803957, 0.00707686971873045, -0.0016485519008711, -0.00182465836405754, 0.0224372632801533, 0.00305414223112166, 0.0113882161676884, 0.00434395857155323, -0.018393337726593, -0.0386390574276447, 0.0039330436848104, 0.0138406613841653, 0.012751410715282, 0.0219024214893579, 0.00882488861680031, -0.00885750167071819, 0.0289858151227236, 0.0149755692109466, 0.0286727361381054, -0.0142711438238621, -0.0351169258356094, 0.0388216860592365, 0.00857051275670528, -0.000843843328766525, -0.0341516025364399, -0.00766389118507504, -0.0151451537385583, 0.0032204648014158, 0.013005786575377, 0.00601696968078613, 0.0187064167112112, 0.0206240192055702, 0.00545277679339051, -0.00635939883068204, 0.014571176841855, -0.0176367331296206, -0.0155104110017419, 0.000591505609918386, 0.00504512339830399, -0.0235852170735598, 0.0152625571936369, -0.00584086356684566, -0.0344907715916634, -0.00891620386391878, 0.00586043065413833, 0.00608871690928936, -0.00235134712420404, 0.00114876835141331, -0.0195152014493942, -0.00246875127777457, -0.00407001515850425, -0.0163583308458328, 0.00880532152950764, 0.00113572343252599, -0.0203500762581825, -0.0161365680396557, -0.00166811922099441, -3.80646706616972e-05, -0.0323253124952316, 0.0011781194480136, 0.0214719399809837, -0.0156147703528404, -0.0159539375454187, 0.00776825053617358, 0.0308121033012867, 0.00602349219843745, 0.0301337670534849, 0.0117665184661746, 0.00450375908985734, -0.00172519078478217, 0.00227959989570081, -0.0380128994584084, -0.000386251951567829, 0.00310958293266594, 0.0219415575265884, -0.0129796965047717, -0.025711540132761, -0.0201152674853802, -0.0140885142609477, 0.0222546346485615, 0.00491467397660017, -0.00278998259454966, 0.0393434800207615, -0.0209370981901884, 0.0215632542967796, 0.0168409924954176, 0.00673117907717824, 0.0106642227619886, -0.000670182809699327, 0.0252941027283669, 0.00488532287999988, 0.0119817601516843, -0.0126927085220814, -0.00224535702727735, 0.000717470655217767, -0.0139841549098492, 0.00853137858211994, 0.0195021573454142, -0.00597131252288818, -0.0143494131043553, 0.0215893443673849, -0.0121970009058714, 0.0153147373348475, -0.0124644218012691, -0.00193064834456891, 0.00472552282735705, 0.0131753701716661, 0.0198804587125778, -0.00627460703253746, 0.00199587293900549, -0.0121970009058714, -0.00709643680602312, 0.0194760672748089, 0.0189542695879936, -0.012751410715282, 0.0140493800863624, 0.00441570580005646, -0.00769650330767035, 0.00298891752026975, -0.00700512249022722, 0.011949148029089, 0.0359518006443977, -0.0192934386432171, -0.030838193371892, -0.0143755031749606, -0.0036688840482384, -7.03712357790209e-05, 0.0254115052521229, 0.00528645422309637, -0.00388086400926113, -0.0040243580006063, -0.0163583308458328, 0.00495054759085178, -0.0295076109468937, 0.0207153353840113, -0.0279943998903036, 0.0122817931696773, 0.0263898745179176, -0.00824438966810703, 0.0175062846392393, -0.00385803543031216, -0.00492771901190281, -0.0246679447591305, -0.00984239298850298, -0.0332123674452305, -0.0407262444496155, 0.00113572343252599, -0.00775520550087094, 0.0157060846686363, 0.0128427250310779, 0.0277335029095411, -0.00511687016114593, -0.00209697103127837, -0.00859008077532053, 0.0217589288949966, 0.00657137902453542, 0.00422655418515205, 0.0271073449403048, -0.00992718525230885, 0.0213284455239773, 0.00859660282731056, -0.011407783254981, -0.00755953183397651, -0.00829656980931759, 0.0175062846392393, 0.020193537697196, 0.00669204443693161, 0.0133188646286726, -0.00718775158748031, -0.00680944882333279, -0.0171149354428053, 0.0119882822036743, 0.0092618940398097, 0.0143494131043553, -0.0140102449804544, -0.015171242877841, 0.0183150693774223, -0.00596805149689317, 0.0244983620941639, -0.0104881161823869, 0.018380293622613, -0.0159017592668533, 0.00759866647422314, -0.00873357430100441, 0.00664638727903366, -0.025515865534544, -0.029533701017499, -0.0151060186326504, 0.0111338403075933, -0.0027394334319979, 0.0133971339091659, 0.00748778460547328, -0.0156539045274258, -0.00733124557882547, 0.00290575623512268, 0.0193195287138224, -0.0315947979688644, 0.00671161198988557, 0.0286205559968948, -0.0249549336731434, -0.0104750711470842, -0.0181193947792053, -0.0302903074771166, -0.0330297388136387, 0.0184716079384089, -0.0102859204635024, 0.00471900030970573, 0.0131623251363635, -0.0126861855387688, -0.0398652777075768, -0.0273943338543177, -0.0149494791403413, -0.00826395768672228, 0.00310632190667093, -0.00166404270567, -0.00275410898029804, 0.00210349354892969, -0.0234286785125732, -0.00126943388022482, -0.00440918328240514, -0.00389064778573811, 0.00356452469713986, -0.000603327585849911, -0.020989278331399, -0.0141276493668556, 0.00718775158748031, 0.0371519364416599, 0.000919666956178844, -0.0334471762180328, 0.014114604331553, 0.0218502432107925, -0.00854442361742258, -0.00951626989990473, -0.0171932056546211, 0.00524079706519842, 0.0105142062529922, -0.0131558030843735, 0.0163452867418528, -0.0214067157357931, -0.0229721050709486, -0.0160322077572346, 0.00832265987992287, -0.00564518943428993, 0.0172975659370422, -0.00511034764349461, 0.00590934930369258, 0.012712275609374, -0.00155479146633297, -0.0101815611124039, -0.00557344267144799, -0.0384564287960529, 0.038691233843565, -0.0120730744674802, -0.0112708117812872, 0.0103380996733904, 0.0134232239797711, -0.0307860132306814, -0.00434069754555821, 0.0101946061477065, 0.0238852500915527, -0.0107881501317024, -0.00890315882861614, -0.0152495130896568, 0.00706382468342781, 0.0131949372589588, 0.0144929075613618, -0.0169975329190493, -0.0113882161676884, -0.000917221012059599, -0.00579520594328642, 0.00161104777362198, 0.0180019903928041, -0.0331340990960598, -0.0246679447591305, 0.00961410719901323, -0.0248897094279528, -0.0196326058357954, -0.00095961702754721, 0.0368388555943966, -0.00834874901920557, -0.0141667844727635, 0.0120208943262696, -0.0123600624501705, 0.0135797625407577, -0.00965976435691118, 0.000359754456439987, 0.00837483908981085, 0.0340472422540188, -0.0169062167406082, -0.0129927415400743, -0.00104767025914043, 0.00818568747490644, -0.0162931066006422, -0.00171540712472051, -0.00995327439159155, -0.00619633728638291, -0.00939234346151352, -0.00189640535973012, -0.0336298048496246, -0.0281770285218954, 0.0102141732349992, 0.0157452188432217, 0.00655181147158146, 0.00110800296533853, 0.0126274833455682, 0.0366040468215942, 0.00089194648899138, -0.0192803926765919, -0.0301598571240902, 0.0309686418622732, -0.00579846743494272, -0.00689424062147737, 0.00640505598857999, -0.0178193617612123, 0.00279650487937033, -0.031646978110075, 0.0242765974253416, 0.0290901735424995, -0.00112838565837592, 0.00781390722841024, -8.96328783710487e-05, 0.0110751381143928, -0.00355800217948854, -0.0119687151163816, 0.012503556907177, 0.00977716874331236, -0.0132014602422714, -0.0109642557799816, -0.00825743470340967, -0.00766389118507504, 0.0194760672748089, -0.00297913374379277, 0.00748778460547328, 0.0143755031749606, -0.0315165296196938, -0.00507121300324798, -0.0177150033414364, -0.0266899075359106, -0.0397609174251556, -0.00558648724108934, -0.0217589288949966, 0.0243157334625721, 0.00440592225641012, 0.0226981621235609, -0.0370997563004494, 0.0121448216959834, -0.030838193371892, -0.0245896764099598, -0.00349277770146728, 0.00424612173810601, 0.016175702214241, 0.0326644815504551, -0.0109968688338995, 0.0402827151119709, -0.00755300931632519, 0.00917057972401381, -0.0161626562476158, -0.0100576337426901, 0.00270845182240009, -0.00414176238700747, 0.0217197928577662, -0.00053891830611974, -0.00753996428102255, -0.000239496599533595, 0.00465051410719752, -0.000913144496735185, 0.00892272591590881, 0.0268986262381077, -0.0171018913388252, 0.00246712076477706, -0.00341124692931771, 0.0136449877172709, 0.00993370730429888, 0.00602023117244244, 0.0014088514726609, -0.0328471101820469, -0.0152364680543542, 0.00760518899187446, 0.0247853491455317, -0.00487227784469724, -0.00428851787000895, 0.0159148033708334, -0.0142450537532568, -0.00199424219317734, -0.0322731360793114, -0.00646701967343688, 0.0204413905739784, 0.000124436322948895, 0.0125231239944696, 0.0187455508857965, 0.00195021566469222, 0.012555736117065, 0.0074943071231246, -0.0139450207352638, -0.0298989582806826, 0.00213284464552999, 0.00811394117772579, 0.0183281134814024, -0.000629009795375168, -0.0105924755334854, 0.0506664738059044, 0.00746169500052929, -0.0157843548804522, -0.00529949925839901, 0.0117208613082767, 0.00324818538501859, -0.0131036229431629, -0.0220067817717791, 0.0215502101927996, 0.00908578746020794, 0.0017871541203931, 0.00131101452279836, -0.000442712014773861, -0.0337863452732563, 0.00682249385863543, -0.0385346971452236, -0.0162670165300369, -0.00333623844198883, 0.00661377515643835, 0.0123535403981805, 0.000449234474217519, -0.0358996242284775, -0.0194630213081837, -0.00216219574213028, 0.00262365979142487, 0.00824438966810703, 0.232095241546631, 0.000900099577847868, -0.011753473430872, 0.0233504083007574, -0.0028649908490479, 0.00101750378962606, 0.0294815208762884, -0.00416785245761275, -0.0195934716612101, -0.00384172913618386, -0.0168279483914375, -0.0159408934414387, -0.0190194956958294, 0.00855746772140265, 0.00336232827976346, -0.0167496781796217, -0.0506142936646938, -0.00409936625510454, -0.0129405613988638, 0.00815307535231113, 0.0284118372946978, 0.0123470174148679, 0.010351144708693, -0.00446462398394942, 0.0240809246897697, 0.0168801285326481, 0.0189151354134083, 0.0242896433919668, 0.0117795635014772, -0.00918362475931644, -0.0372302047908306, 0.0105468183755875, 0.0263116061687469, -0.0134101789444685, -0.0122491810470819, -0.0047059552744031, -0.00735733564943075, -0.0197239201515913, -0.00320578925311565, 0.0135928075760603, 0.0118904458358884, 0.00985543802380562, 0.00351234502159059, -0.00137460860423744, 0.00162246206309646, 0.0280726701021194, -0.0236765313893557, -0.0143233230337501, 0.0129014272242785, 0.0107751050963998, -0.0514491684734821, 0.0106055205687881, 0.0099989315494895, 0.028229208663106, 0.00772259337827563, 0.00812046322971582, 0.00998588744550943, 0.0144798625260592, -0.0212632212787867, 0.00384499039500952, 0.00183770328294486, 0.0144276823848486, -0.00303620542399585, 0.0498837791383266, -0.0126535734161735, 0.0412219502031803, -0.0256854500621557, 0.00125720421783626, 0.023806981742382, -0.0516317971050739, -0.0106250885874033, 0.0311251822859049, -0.0106250885874033, -0.000439450785052031, -0.0296641495078802, -0.0135928075760603, -0.00950322486460209, 0.0402566269040108, 0.00967280846089125, -0.0254636853933334, -0.0288553647696972, -0.0225285794585943, -0.00117159693036228, -0.00672465655952692, -0.0105924755334854, 0.0197369661182165, 0.00793783459812403, 0.028933634981513, -0.00731820054352283, -0.0260637514293194, -0.00567127950489521, -0.011453440412879, -0.0160974320024252, -0.0061637251637876, -0.00546256080269814, -0.0102663524448872, 0.0114860525354743, -0.00543973222374916, -0.00636592134833336, -0.0240026544779539, -0.0176758673042059, 0.0457615815103054, 0.0271073449403048, -0.00462768552824855, 0.0130514437332749, -0.00186216249130666, 0.0017806317191571, 0.0259072128683329, 0.0124448547139764, -0.0321687757968903, -0.00584086356684566, -0.00960758421570063, 0.00168605602812022, 0.00303131341934204, 0.00184259505476803, 0.0015026117907837, 0.0238591600209475, -0.014114604331553, 0.0148842548951507, 0.0139841549098492, 0.00578542239964008, -0.00510382512584329, 0.00589630426838994, 0.00759214395657182, 0.00162083143368363, -0.0148972999304533, -0.0196326058357954, 0.00874009728431702, 0.000788810080848634, -0.0453441441059113, 0.0120078502222896, 0.00459833443164825, 0.0366040468215942, -0.0274726040661335, -0.0272638853639364, 0.00841397419571877, 0.00319111370481551, 0.0201022233814001, 0.005048384424299, 0.0129927415400743, 0.0078660873696208, 0.00549843441694975, -0.0248375292867422, -0.021798063069582, 0.0156147703528404, -0.00255680456757545, 0.0215371642261744, -0.000170399274793454, -0.0127318426966667, -0.0216154344379902, -0.00355474092066288, 0.0224372632801533, -0.00287640513852239, -0.013012308627367, 0.00891620386391878, 0.00230405922047794, -0.0313078090548515, -0.0233504083007574, -0.0251114722341299, 0.0366562269628048, -0.0296641495078802, 0.0121839558705688, 0.0310730021446943, -0.0127383656799793, -0.0278117712587118, -0.0151973329484463, -0.163426771759987, 0.0153669165447354, 0.012712275609374, -0.0220720060169697, 0.00769650330767035, 0.00344712031073868, 0.0185498781502247, -0.00154011603444815, -0.00126046547666192, 0.0131166679784656, 0.0260898414999247, -0.00131835229694843, -0.0154843209311366, -0.00770302582532167, 0.00272149662487209, -0.0348038487136364, -0.023806981742382, 0.0276813227683306, 0.000997936469502747, 0.00978369079530239, 0.0194238871335983, -0.0127774998545647, 0.00678335875272751, -0.00687467353418469, 0.00661703618243337, -0.0257898084819317, -0.0129340393468738, 0.022293770685792, 0.00772259337827563, -0.0243548676371574, -0.0197630561888218, -0.0162278823554516, 0.01858901232481, 0.00263670459389687, -0.00595500646159053, 0.00521470699459314, 0.00532232783734798, 0.00813350826501846, -0.0175062846392393, 0.0394478403031826, 0.0288814548403025, 0.0166583638638258, 0.0021214303560555, -0.00130693800747395, 0.00726602086797357, 0.0253332369029522, 0.0070312125608325, 0.00462116347625852, 0.00991414021700621, -0.0152364680543542, 0.00840745121240616, -0.0013485187664628, -0.0287770964205265, 0.0161365680396557, 0.0234547685831785, 8.5963991296012e-05, -0.00829656980931759, 0.00705077964812517, 0.0173627901822329, -0.00894881598651409, 0.0137102119624615, -0.0109707787632942, 0.0190064497292042, -0.0170627571642399, -0.0147538054734468, -0.0274204239249229, -0.030342485755682, -0.00831613689661026, -0.0378563590347767, 0.00184911757241935, -0.0354560948908329, -0.0330036506056786, 0.00263507408089936, -0.0306294746696949, 0.0151973329484463, -0.00942495558410883, -0.0139450207352638, -0.000618410762399435, -0.00763127859681845, 0.00831613689661026, 0.00502555584535003, 0.0180150363594294, -0.00825091265141964, -0.00114224595017731, -0.00128818594384938, -0.00486575532704592, 0.00292858481407166, 0.0201674476265907, -0.0117404293268919, -0.0198804587125778, 0.00626482348889112, -0.0242244191467762, -0.026520324870944, -0.0277595911175013, -0.00664964830502868, 0.0230112411081791, 0.0140754701569676, 0.0112055875360966, 0.00627786805853248, -0.0031128441914916, 0.0068420609459281, -0.0143363680690527, -0.0357169918715954, 0.0185237880796194, 0.00395587226375937, 0.0213154014199972, 0.0119817601516843, 0.0248897094279528, 0.019384752959013, -0.0155104110017419, -0.0211588609963655, 0.0307338330894709, 0.014610311947763, 0.0103120096027851, 0.0160713419318199, 0.0143102779984474, 0.00872052926570177, 0.00437330966815352, -0.0116360699757934, 0.0177932716906071, 0.0318296067416668, -0.0114860525354743, 0.014414637349546, 0.022802522405982, -0.0225677136331797, -0.010853374376893, -0.122309178113937, -0.0261550657451153, 0.00573650421574712, 0.0080487160012126, -0.0198152344673872, 0.0351169258356094, -0.00250462489202619, 0.0335254482924938, 0.00354169611819088, 0.0373345650732517, -0.00380585575476289, -0.0342298708856106, -0.0261942017823458, 0.0133449537679553, 0.0138015262782574, 0.0085118105635047, -0.0159278493374586, -0.0263768304139376, -0.0225416235625744, 0.0177541375160217, -0.0170366670936346, -0.00695294281467795, 0.00558322621509433, -0.0110360030084848, -0.0295858811587095, 0.00378628843463957, -0.0156017253175378, 0.0156539045274258, 0.00866835005581379, -0.023611307144165, -0.0286466460675001, 0.00770954834297299, 0.004242860712111, -0.015980027616024, -0.00764432363212109, 0.00203500757925212, -0.0117665184661746, -0.0238461159169674, 0.0273421537131071, -0.0224633533507586, -0.012751410715282, 0.00291880103759468, 0.0189020913094282, -0.0251766983419657, -0.00321068125776947, -0.0128557700663805, -0.00508425803855062, 0.0221502762287855, 0.00652898289263248, -0.0165409594774246, -0.0401522666215897, -0.00141374336089939, -0.0106185656040907, -0.0296119712293148, -0.00516578881070018, 0.0150147043168545, -0.0177410934120417, -0.014610311947763, -0.0363953299820423, 0.0318817868828773, -0.016775768250227, -0.00425916677340865, 0.00590608781203628, 0.00270192930474877, 0.00344712031073868, 0.0146885812282562, -0.00728558842092752, -0.00188009918201715, 0.00922928191721439, -0.034856028854847, 0.00437983218580484, 0.00525384210050106, -0.0272638853639364, 0.0323514044284821, -0.0315947979688644, 0.0140232900157571, -0.0137493470683694, 0.0115838898345828, 0.0436222143471241, -0.016671409830451, -0.0138406613841653, -0.00975760072469711, 0.0160191636532545, -0.0209631882607937, 0.0106642227619886, 0.0139189306646585, 0.00133873498998582, 0.0290119051933289, -0.00625830097123981, -0.00536798499524593, 0.00178389297798276, 0.0186803266406059, 0.017780227586627, 0.00710295932367444, -0.0300815869122744, 0.0280987601727247, -0.014414637349546, -0.00179530726745725, 0.0120795965194702, 0.0186542365700006, -0.032951470464468, -0.00836831703782082, -0.0478487685322762, 0.0244200918823481, 0.00446788547560573, -0.00207740371115506, -0.0191108100116253, 0.00378954946063459, -0.0046766041778028, -0.0217067487537861, -0.00876618735492229, 0.00962062925100327, 0.00259104743599892, 0.0331080108880997, 0.0234939027577639, 0.0073703802190721, -0.0494663417339325, -0.0085183335468173, 0.0246549006551504, 0.0108859864994884, 0.00810089614242315, 0.0120535073801875, 0.0267420876771212, 0.0235982611775398, -0.0448223501443863, 0.00742255989462137, -0.0257637184113264, 0.00656159548088908, -0.0143494131043553, 0.0405436158180237, -0.0181976649910212, -0.0029269540682435, 0.000293510733172297, -0.0137754362076521, -0.0152495130896568, 0.00262365979142487, -0.00139417592436075, -0.0384303368628025, -0.00232851831242442, 0.0106185656040907, 0.0211458168923855, 0.0175062846392393, -0.00618003122508526, -9.17730576475151e-05, -0.0223329048603773, -0.015980027616024, 0.0203761663287878, -0.00727254338562489, -0.023402588441968, 9.51362017076463e-05, 0.000602919957600534, 0.0233764983713627, 0.00089031585957855, 0.00445484044030309, -0.0144537724554539, -0.0225155334919691, -0.0136188976466656, -0.031255628913641, 0.00330525683239102, 0.00259593920782208, 0.000768835016060621, -0.0156147703528404, 0.0385607853531837, -0.000590690353419632, 0.0151581978425384, -0.0162409264594316, 0.0032971038017422, -0.00390043132938445, -0.0162670165300369, 0.0112642897292972, 0.0259072128683329, -0.0262855160981417, 0.00863573793321848, -0.00541038112714887, 0.0195804256945848, 0.0102076502516866, 0.00478748604655266, 0.00256169633939862, 0.00956844910979271, 0.0263116061687469, -0.00125149707309902, 0.00438635470345616, 0.000918851641472429, -0.00701816752552986, -0.00496685365214944, 0.0240809246897697, 0.0250984281301498, 0.00437330966815352, 0.00311447493731976, 0.0179498121142387, -0.01331234164536, 0.000617187819443643, -0.049335889518261, -0.00607567187398672, -0.0169975329190493, 0.0148451197892427, 0.00580825097858906, 0.0322470441460609, -0.00280791916884482, -0.000763535557780415, 0.00586695317178965, -0.0105533413589001, 0.0401000864803791, -0.00811394117772579, 0.0115056205540895, -0.0106381326913834, -0.00723993126302958, 0.0354821868240833, -0.0171149354428053, -0.0073703802190721, -0.0254245512187481, 0.0145972669124603, 0.031646978110075, 0.0129862185567617, 0.0325079448521137, 0.00919666886329651, -0.0177150033414364, 0.011446918360889, -0.00770954834297299, -0.00304109719581902, -0.0172584298998117, 0.0208718739449978, 0.00767693622037768, -0.000383194565074518, 0.0104098469018936, -0.0238461159169674, 0.0212240871042013, 0.00482335966080427, -0.00910535454750061, -0.018393337726593, 0.0144276823848486, 0.018784686923027, 0.00990109518170357, -0.00221600593067706, -0.0381172597408295, 0.0143755031749606, -0.017884586006403, -0.00822482258081436, -0.00107783661223948, 0.0259202588349581, -0.0176758673042059, 0.0404653437435627, 0.0173758342862129, -0.00204805261455476, -0.0179367661476135, 0.00443527335301042, 0.0401000864803791, -0.00195184629410505, 0.00240189605392516, -0.00785956531763077, -0.0109120765700936, 0.0170627571642399, 0.00458855088800192, 0.00287314387969673, -0.0266116391867399, -0.0121970009058714, 0.00946408975869417, -0.0118904458358884, 0.00474182888865471, -0.0327427498996258, 0.0356126353144646, 0.0130449207499623, -0.0053582014515996, 0.0402044467628002, 0.00817916542291641, -0.0122230909764767, -0.00459507340565324, 0.0237939357757568, -0.02713343501091, -0.00693337572738528, -0.0228547006845474, 0.0125883491709828, 0.000265994080109522, -0.00474508991464972, -0.0188238210976124, 0.0130253536626697, 0.00175943376962095, 0.029429342597723, 0.0150668835267425, 0.0110490480437875, 0.0122491810470819, 0.0215763002634048, -0.00663660373538733, -0.02562022395432, -0.0513969883322716, 0.0111207952722907, 0.0143363680690527, -0.0136580327525735, -0.0118317436426878, -0.0244461819529533],id:"e3da7b37031255691596016b23ca591f",source:"state_of_union.txt",text:"And I will keep doing everything in my power to crack down on gun trafficking and ghost guns you can buy online and make at home—they have no serial numbers and can’t be traced.
And I ask Congress to pass proven measures to reduce gun violence. Pass universal background checks. Why should anyone on a terrorist list be able to purchase a weapon?
Ban assault weapons and high-capacity magazines.
Repeal the liability shield that makes gun manufacturers the only industry in America that can’t be sued.
These laws don’t infringe on the Second Amendment. They save lives.
The most fundamental right in America is the right to vote – and to have it counted. And it’s under assault.
In state after state, new laws have been passed, not only to suppress the vote, but to subvert entire elections.
We cannot let this happen."})
(:Chunk{embedding:[-0.0152089474722743, -0.0115241035819054, -0.0186785701662302, 0.00276689371094108, 0.00833492074161768, 0.0142176263034344, 0.0079240445047617, -0.000882895023096353, -0.0223829783499241, -0.00543595943599939, 0.019030749797821, 0.00193861906882375, -0.00442507304251194, -0.0216525327414274, -0.013643704354763, -0.00451311795040965, 0.0257221646606922, 0.0181176904588938, 0.0316961780190468, -0.0312787778675556, -0.0104545205831528, -0.0301309339702129, 0.0116219315677881, 0.00112012727186084, 0.0147393746301532, -0.021065566688776, 0.0301048457622528, -0.0316961780190468, 0.0136045729741454, -0.0338614284992218, 0.00288102589547634, -0.00277504581026733, -0.0240917019546032, -0.00622184202075005, -0.0198916327208281, 0.0176350735127926, 7.1651152211416e-06, 0.00829578936100006, 0.0342005640268326, -0.0276265442371368, 0.031409215182066, -0.000709250860381871, 0.00535443658009171, -0.00243917084299028, -0.0165785346180201, 0.00664576189592481, -0.00497943023219705, -0.0355310216546059, 0.00310766021721065, 0.0295830983668566, 0.0327396728098392, 0.0156785193830729, -0.0196698904037476, -0.0244830138981342, -0.0219525378197432, -0.00627075601369143, -0.0106958290562034, -0.00855014100670815, 0.0030196150764823, -0.0101284282281995, 0.00871970970183611, 0.0148437237367034, -0.00637184455990791, 0.0119415018707514, 0.0176742058247328, -0.0069392453879118, -0.0154306897893548, 0.0162002686411142, -0.0159133058041334, 0.0170089770108461, 0.0356614589691162, 0.0029168960172683, 0.0216134004294872, -0.00684793945401907, 0.0408267639577389, -0.0108719188719988, -0.0333396829664707, 0.0109110502526164, -0.0146350245922804, -0.0217699259519577, 0.00248482380993664, -0.0159654822200537, -0.0177655108273029, -0.00399463111534715, 0.0106827849522233, 0.00551748275756836, -0.0001763955806382, 0.00847840122878551, -0.0103436494246125, -0.00500877853482962, 0.00217177509330213, 0.0116806281730533, 0.0050903013907373, 0.0216134004294872, -0.0107480036094785, 0.0207264292985201, -0.00664250133559108, 0.0296352729201317, 0.0281482916325331, -0.0472703464329243, 0.0244438834488392, -0.00119349802844226, -0.0262569561600685, -0.0122675942257047, -0.031852699816227, -0.00941102486103773, -0.00905232410877943, 0.00478377472609282, 0.0047120344825089, 0.00229405960999429, -0.00594466365873814, 0.00716098817065358, 0.0156133016571403, -0.00782621651887894, -0.0119154145941138, -0.028957000002265, -0.0337831676006317, -0.0157698262482882, 0.00854361988604069, -0.0292700491845608, 0.030183108523488, -0.00328048900701106, 0.0135915288701653, -0.0134089170023799, 0.0158611312508583, 0.00762403896078467, -0.0375136658549309, -0.0151306847110391, 0.0108327874913812, -0.0146219814196229, 0.000192904000869021, 0.0119610670953989, 0.00356745021417737, -0.0214047022163868, 0.00305874622426927, 0.00244080135598779, -0.00326418434269726, 0.0501660481095314, 0.00326418434269726, -0.011191489174962, 0.00486529804766178, 0.0129197789356112, -0.0185611769556999, -0.0300265830010176, 0.00470225187018514, 0.00668489327654243, 0.0299744084477425, 0.0146350245922804, 0.00574574712663889, -0.00182611716445535, -0.00561857130378485, 0.012639339081943, 0.015287209302187, -0.00743490550667048, -0.0199829395860434, -0.00538052385672927, -0.00883058086037636, -0.00866101309657097, 0.0274961069226265, 0.00181959534529597, 0.00181796483229846, -0.0333135947585106, 0.00356092839501798, -0.00610770983621478, 0.0143350195139647, 0.0199307650327682, 0.000228672259254381, 0.00352179748006165, -0.0189785752445459, 0.0120262857526541, 0.0051946509629488, 0.0207655616104603, -0.0383223742246628, 0.0282265543937683, -0.0133958738297224, 0.000703136611264199, 0.0148306805640459, -0.0231525562703609, -0.0243917070329189, 0.000468350131995976, 0.0187959633767605, 0.0129328230395913, 0.0278352424502373, 0.0274961069226265, -0.0149872042238712, 0.0187959633767605, 0.0344614386558533, -0.0177263803780079, -0.0160437431186438, -0.0121567230671644, 0.0253438968211412, 0.00818491820245981, -0.00255819456651807, -0.0189264006912708, -0.635280072689056, -0.0300526712089777, 0.017739424481988, -0.0104153901338577, 0.0124502060934901, -0.00125708605628461, 0.00451311795040965, 0.0207786038517952, -0.00705663859844208, 0.0139958839863539, -0.0198655463755131, 0.0299483221024275, 0.00122366158757359, -0.015287209302187, -0.00877840630710125, -0.0178046431392431, 0.00854361988604069, -0.0160437431186438, 0.0226177647709846, -0.0225395038723946, -0.0327135846018791, 0.00488812429830432, -0.0206612106412649, -0.0136567475274205, 0.0114393197000027, 0.00126279261894524, -0.00513921538367867, 0.0142958890646696, -0.0132589153945446, 0.0132915237918496, -0.0336788184940815, 0.0304439812898636, -0.0114393197000027, 0.00377288856543601, 0.0495399497449398, 0.0167089719325304, -0.019852502271533, 0.0109567027539015, -0.00291363522410393, 0.0359223335981369, -0.0219003614038229, -0.00870666559785604, 0.0253438968211412, 0.00838057324290276, 0.000393552705645561, 0.00899362657219172, 0.00751968938857317, -0.0129263009876013, -0.00164758157916367, 0.00998494774103165, -0.0242090970277786, -0.0033391856122762, 0.00612075347453356, 0.0186524819582701, -0.0106697417795658, -0.00871318764984608, -0.00763056101277471, -0.0164741855114698, 0.0180785600095987, 0.0159393940120935, -0.000768762722145766, 0.0133436992764473, -0.0066979369148612, -0.0177655108273029, -0.0147524178028107, 0.0165524482727051, -0.00885014608502388, 0.00462072854861617, 0.0374614894390106, -0.0223177596926689, 0.0101479943841696, 0.0224742852151394, 0.000145416808663867, -0.0058337920345366, 0.02064816839993, -0.0270265340805054, 0.0117132375016809, -0.00747403688728809, 7.8109311289154e-05, 0.0118306307122111, 0.0169959329068661, -0.0193307548761368, 0.00566422427073121, 0.00463703321292996, 0.0181046482175589, 0.00297885364852846, -0.0152089474722743, -0.0153263406828046, 0.00241960515268147, 0.0209220852702856, 0.0218221005052328, 0.00389354256913066, 0.018991619348526, -0.0267917476594448, 0.00484247133135796, 0.0159915685653687, 0.00981537997722626, -0.00680228648707271, 0.0239090919494629, -0.0151176415383816, -0.0121632451191545, 0.00750012416392565, 0.0104806078597903, -0.011145836673677, -0.0032446188852191, 0.0203742496669292, -0.0177915990352631, -0.00305222440510988, 0.0230873376131058, -0.0317222625017166, -0.0183916091918945, -0.0315135642886162, -0.0306787677109241, 0.00109240936581045, 0.0065251081250608, -0.0271308831870556, 0.00915015116333961, 0.0219655800610781, -0.0278613306581974, 0.00610444881021976, 0.0134480483829975, 0.0167481023818254, 0.0104023460298777, -0.0253308545798063, -0.00435985485091805, 0.00755229871720076, 0.0147002432495356, -0.00992625113576651, -0.0363136455416679, 0.000490361358970404, -0.0101414723321795, -0.00910449866205454, 0.0157959125936031, 0.015300253406167, -0.00108262663707137, -0.00154649291653186, 0.0149741610512137, -0.0163307040929794, -0.00284678628668189, -0.0113675789907575, 0.00464681582525373, 0.0036685389932245, -0.00332451146095991, 0.0118958493694663, -0.0366266928613186, 0.00725229410454631, -0.0151698160916567, -0.0204655565321445, -0.0337309911847115, 0.00193046673666686, -0.0113741010427475, -0.00201688124798238, -0.0142045831307769, 0.0196568462997675, 0.00204786006361246, -0.00754577713087201, -0.0213655699044466, 0.00277015450410545, -0.00955450627952814, -0.0238438732922077, 0.0248743239790201, 0.0147524178028107, -0.0195133667439222, -0.0134871797636151, 0.0111001832410693, -0.005471829790622, 0.0406180620193481, 0.000551096047274768, -0.0244308393448591, -0.0411919839680195, 0.0220177546143532, -0.00404680613428354, -0.00525334756821394, 0.0158220008015633, 0.0160959176719189, 0.000254759652307257, -0.0174133311957121, 0.0123719433322549, 0.0248612817376852, 0.0296613611280918, -0.00465007685124874, -0.0159524381160736, -0.0183916091918945, -0.0103371273726225, 0.0204916428774595, 0.0163959227502346, -0.0205699056386948, 0.0301309339702129, -0.0109762689098716, 0.00335222925059497, -0.0148306805640459, 0.00575879076495767, -0.0032625540625304, 0.00381201948039234, 0.0132328271865845, 0.0244438834488392, -0.00462072854861617, -0.010154515504837, 0.00922841392457485, 0.00877188425511122, 0.0423659197986126, 0.0110545307397842, 0.0423920042812824, -0.031800527125597, -0.0135132670402527, -0.0258786883205175, 0.00827622413635254, -0.00877840630710125, 0.00676315557211637, 0.0184046514332294, -0.0143741508945823, -0.0144524127244949, -0.0175568126142025, -0.0299744084477425, 0.014465456828475, 0.0137741407379508, -0.0133045678958297, 0.00419028662145138, 0.00479355733841658, -0.0269482713192701, 0.0146350245922804, 0.0055761793628335, 0.0154698211699724, -0.0123589001595974, 0.00761751737445593, 0.0383745469152927, -0.0157567821443081, 0.000129010280943476, 0.0108588756993413, -0.00823709275573492, -0.0098740765824914, 0.0187307447195053, -0.0024946064222604, 0.0306787677109241, -0.0013549136929214, -0.0427050553262234, -0.00735664321109653, -0.0131284780800343, 0.0310961659997702, 0.0162393990904093, 0.00607510050758719, 0.0178046431392431, -0.00639467081055045, -0.00561204925179482, 0.01863943785429, -0.00328375003300607, 0.029765710234642, 0.00646641151979566, 0.00105980015359819, -0.000281866086879745, -0.00702402926981449, -0.00266906595788896, -0.00423267856240273, 0.00782621651887894, 0.0340440422296524, -0.00884362496435642, -0.00864144694060087, 0.0305222440510988, -0.000417398201534525, 0.0251091104000807, 0.0405919775366783, 0.0387658588588238, 0.00150899239815772, -0.0240134410560131, 0.00374354026280344, -0.00988711975514889, 0.00838709529489279, -0.00723925000056624, 0.0061109708622098, -0.01650027371943, -0.00810013432055712, -0.0154698211699724, 0.0206090360879898, 0.000560878834221512, 0.0314353033900261, 0.0101479943841696, -0.00886971224099398, 0.0265569612383842, -0.0140741458162665, -0.00710881315171719, 0.00953494012355804, -0.0347484014928341, 0.00652184709906578, 0.0137741407379508, -0.0115045383572578, -0.0118697611615062, -0.00446094339713454, -0.0162524431943893, -0.0142176263034344, 0.0265960916876793, -0.0127045577391982, -0.00566096324473619, -0.000995396869257092, 0.0079240445047617, 0.00347288348712027, -0.017400287091732, 0.034670140594244, -0.0116806281730533, 0.00903928000479937, 0.000692130997776985, 0.0203872937709093, 0.0131219560280442, -0.0154176466166973, -0.0112371426075697, 0.0324787981808186, 0.00251743290573359, -0.00308483373373747, -0.000744713412132114, 0.0312005169689655, -0.0262178257107735, 0.00645010685548186, -0.0180785600095987, -0.0217177513986826, -0.0128610823303461, 0.00903275795280933, -0.00296091847121716, -0.0144785000011325, -0.0206220801919699, 0.00980885792523623, -0.00613705813884735, -0.0136176161468029, -0.0315396524965763, -0.0190959684550762, 0.000868220871780068, 0.158402621746063, 0.0336527302861214, 0.00903928000479937, 0.0151567729189992, -0.0191220548003912, 0.00805448088794947, -0.0262569561600685, -0.0158611312508583, 0.0141132771968842, -0.0119610670953989, 0.00806752499192953, 0.0069914199411869, -0.0141393644735217, 0.0244569256901741, 0.015091554261744, -0.00193209713324904, 0.019030749797821, -0.00469246879220009, -0.00513921538367867, -0.0354266725480556, -0.0161480940878391, -0.00309135555289686, 0.00950233079493046, 0.0317744389176369, -2.62402445514454e-05, -0.0252786781638861, 0.0201525073498487, 0.014869811013341, 0.023139514029026, -0.0119154145941138, -0.0114262755960226, -0.00402397941797972, 0.00325603201054037, -0.00275711086578667, -0.0208568666130304, 0.0196698904037476, -0.0074218618683517, -0.00304081127978861, 0.00728490296751261, -8.34592574392445e-05, 0.0101871248334646, -0.000665636034682393, -0.00255819456651807, -0.0094762435182929, 0.0343570895493031, -0.0352701470255852, -0.00291526550427079, 0.0129067348316312, 0.000226226562517695, 0.00655445642769337, 0.0254873782396317, -0.000641994294710457, -0.0253308545798063, -0.00458485865965486, -0.0069914199411869, 0.0158220008015633, -0.013017606921494, 0.007337077986449, -0.000704767066054046, 0.0075262114405632, -0.0193698853254318, -0.00225655897520483, -0.0110936621204019, -0.0119088925421238, 0.00135817460250109, 0.00102311477530748, -0.0277048069983721, -0.0205438174307346, -0.0021750358864665, -0.00397832645103335, 0.0147654619067907, -0.0124697713181376, -0.0374875776469707, 0.0126915145665407, 0.00898058339953423, -0.00186198728624731, 0.0371223539113998, -0.00272287102416158, 0.0113806230947375, -0.0113871451467276, -0.00592835899442434, -0.0252656359225512, 0.00682837376371026, -0.0109240934252739, -0.00104594125878066, 0.000148372026160359, 0.0172959379851818, -0.00815883092582226, -0.01863943785429, 0.0244438834488392, 0.00317613943479955, -0.00153344927821308, 0.0111262714490294, -0.0254743341356516, -0.0230090767145157, -0.00211144797503948, 0.00684141740202904, 0.0166307091712952, -0.0193437989801168, -0.00289080874063075, 0.00136632693465799, -0.0117588900029659, -0.00356092839501798, -0.00505443150177598, -0.0123393349349499, 0.0091827604919672, 0.00945667829364538, 0.0271569713950157, -0.0110610527917743, -0.00619249371811748, -0.00127746677026153, -0.0319309644401073, 0.0110675748437643, 0.00995233841240406, -0.00731751229614019, 0.0211438275873661, -0.00547509035095572, 0.00632293056696653, -0.0108523536473513, -0.00453594466671348, 0.0175698567181826, -0.0247178003191948, 0.0412180721759796, -0.0004422627389431, -0.00604901323094964, 0.0131154339760542, -0.00544574204832315, 0.00609140517190099, 0.0210786089301109, 0.0147785050794482, 0.0327657610177994, 0.0266873985528946, -0.0154306897893548, -0.0361571200191975, -0.0210786089301109, -0.00534465350210667, -0.0129719534888864, 0.0271047968417406, 0.0128806475549936, -0.00746099278330803, -0.0151567729189992, -0.0198394581675529, 0.00641097547486424, -0.0327396728098392, 0.025226503610611, -0.0228003766387701, -0.00281906826421618, 0.021469920873642, -0.0231786444783211, 0.00513921538367867, -0.0221873242408037, 0.0112958392128348, -0.00991972908377647, -0.000415156333474442, 0.00192883622366935, 0.00258428184315562, 0.00971102993935347, -0.00282722059637308, 0.021130783483386, 0.0193568412214518, -0.000454083608929068, -0.00964581128209829, 0.00898058339953423, -0.00362614705227315, 0.0235308241099119, -0.00221253652125597, 0.00551748275756836, 0.0132654365152121, 0.000672973110340536, 0.0238699596375227, 0.0131936967372894, -0.00332940299995244, -0.0276787187904119, 0.00494355987757444, 0.00850448850542307, 0.0113154044374824, -0.0137350093573332, -0.0111132273450494, -0.0148437237367034, -0.0352701470255852, -0.0254612900316715, 0.00808056816458702, -0.00573922554031014, -0.00871318764984608, -0.00718707544729114, -0.00638814922422171, 0.0382180251181126, 0.00372397457249463, 0.0230351630598307, -0.00185546546708792, 0.031409215182066, -0.0104675646871328, 0.0137350093573332, -0.00625771237537265, -0.000277993734925985, -0.0178829040378332, -0.0262178257107735, 0.00186524819582701, 0.021913405507803, 0.00270493607968092, 0.00468594720587134, -0.0119154145941138, -0.00892840884625912, -0.0119349798187613, 0.0204133819788694, 0.00795013178139925, -0.00669141486287117, -0.00368810445070267, 0.0196568462997675, -0.0250047612935305, -0.000741044874303043, -0.0450007431209087, -0.00932624097913504, -0.0162524431943893, 0.0135393543168902, -0.0019842719193548, 0.0103762587532401, 0.00623814668506384, -2.90935513476143e-05, -0.0382701978087425, -0.0384528115391731, -0.0316961780190468, -0.00695228902623057, 0.00993929523974657, 0.0141654517501593, 0.0227742902934551, -0.00716098817065358, -0.0299483221024275, 0.0350092761218548, 0.0121371569111943, -0.00367506081238389, 0.000896753976121545, 0.00887623336166143, -0.0262178257107735, -0.0126654272899032, 0.0146350245922804, 0.020687298849225, -0.0119936764240265, -0.0375136658549309, 0.0219786241650581, 0.0150524228811264, -0.0337831676006317, 7.52560008550063e-05, 0.00256471638567746, -0.00150491623207927, 0.0217568818479776, -0.00830231141299009, -0.00375658390112221, -0.0134480483829975, -0.00958711467683315, -0.00163290742784739, -0.0240917019546032, 0.00117963913362473, 0.00346310087479651, 0.0279135052114725, -0.039261519908905, 0.00250438926741481, -0.0106632197275758, 0.00098561414051801, 0.00180002977140248, -0.0205438174307346, 0.0263743493705988, -0.0209090411663055, 0.00598053354769945, -0.0142958890646696, 0.0100045129656792, -0.0227612461894751, -0.0172959379851818, 0.00425224425271153, 0.0222916733473539, -0.0156263448297977, -0.0139828398823738, 9.79296091827564e-05, 0.0154306897893548, -0.00267721829004586, -0.0047479048371315, -0.0122088976204395, -0.0014576327521354, 0.0139828398823738, -0.00948276557028294, 0.0125545552000403, -0.0129002137109637, -0.0276004560291767, -0.0109306154772639, 0.00492399465292692, -0.00965233333408833, -0.00881101563572884, -0.00530226156115532, 0.0360266827046871, 0.00342723052017391, -0.00100273394491524, -0.0158741753548384, -0.00890232156962156, 0.0123654222115874, 0.0166307091712952, -0.01342196110636, 0.0323222726583481, 0.0329483710229397, -0.0216655749827623, 0.00359353772364557, -0.0450790077447891, 0.0156002584844828, -0.0335744693875313, -0.0163307040929794, -0.00953494012355804, -0.0312266033142805, 0.00130192376673222, -0.0111980112269521, -0.0185481328517199, -0.015091554261744, 0.0151437288150191, 0.013219784013927, 0.00645336741581559, -0.00812622159719467, -0.00903928000479937, -0.00384136778302491, 0.0228134207427502, -0.0042978972196579, -0.030965730547905, 0.0261656511574984, -0.0182220414280891, 0.000710066116880625, -0.00250112824141979, -0.0250438917428255, -0.0105719137936831, 0.0132328271865845, 0.013839359395206, -0.00710881315171719, -0.0220568869262934, -0.00264786998741329, -0.0113349696621299, 0.0261134747415781, -0.00575226917862892, -0.0200481582432985, -0.0100632095709443, 0.0151828601956367, -0.0125675993040204, 0.0138132721185684, 0.00494355987757444, -0.00225818948820233, 0.0233090817928314, 0.00203807721845806, 0.0296091847121716, 0.0138132721185684, -0.0156393889337778, -0.00542291579768062, -0.0222916733473539, -0.0216394886374474, -0.00836753007024527, -0.0206351242959499, -0.0224873293191195, 0.0113219264894724, 0.00579466111958027, 0.012189332395792, -0.0202829446643591, -0.00142746930941939, -0.0273395832628012, -0.016943758353591, -0.00115844304673374, -0.00196633697487414, 0.0166959278285503, 0.00136225076857954, 0.0294265728443861, 0.0291917864233255, -0.0308613795787096, 0.0255917273461819, 0.00123833573888987, -0.0251091104000807, 0.0203090310096741, -0.02687001042068, 0.0181437786668539, 0.0338614284992218, -0.0139306653290987, 0.0047805137000978, 0.0334179438650608, 0.00504464888945222, 0.0176089871674776, 0.0140741458162665, -0.00444463873282075, -0.00945667829364538, 0.0128741264343262, 0.00784578174352646, -0.0104414774104953, 0.0180263854563236, 0.00387723813764751, -0.0495921261608601, 0.00227123312652111, 0.00547835137695074, -0.0150393787771463, -0.0323222726583481, -0.00997190363705158, 0.00733055593445897, 0.00561857130378485, -0.00900014862418175, -0.0144132822751999, 0.0109306154772639, 0.00977624859660864, -0.0278091561049223, 0.0131806526333094, 0.0257482528686523, -0.00111686624586582, 0.0245873630046844, 0.0126980356872082, -0.0323744490742683, 0.0030196150764823, 0.0141784958541393, 0.0104284333065152, 0.00530878361314535, -0.0170872397720814, -0.0105719137936831, 0.0345397032797337, -0.0105523485690355, -0.00607183948159218, -0.0185481328517199, 0.00453594466671348, -0.0113741010427475, -0.00920232571661472, -0.0207786038517952, 0.0222916733473539, 0.00304407207295299, -0.028957000002265, -0.0101936468854547, -0.000528677250258625, -0.0291917864233255, 0.00429137516766787, -0.0122610721737146, 0.00165247300174087, -0.0232047308236361, 0.0220438428223133, 0.0126915145665407, -0.00819144025444984, -0.0104740867391229, -0.00339136039838195, 0.0110675748437643, 0.000443077995441854, 0.0158089566975832, 0.237916976213455, -0.00193535815924406, 0.00617292802780867, 0.0136828348040581, -0.0300265830010176, 0.0180916041135788, 0.00927406642585993, 0.00418702559545636, -0.0147915491834283, -0.00617618905380368, -0.0167481023818254, 0.00326418434269726, -0.018991619348526, 0.00360658136196434, 0.0291917864233255, -0.0144393695518374, -0.0498529970645905, -0.0195003226399422, -0.034722313284874, -0.015091554261744, 0.0096327681094408, 0.0162915736436844, 0.00476747006177902, -0.0113284485414624, 0.0114458417519927, 0.01549590844661, 0.0343831777572632, 0.0143219763413072, 0.0111849680542946, -0.0083544859662652, -0.0379310622811317, -0.00249786744825542, -0.0137219661846757, -0.00310113816522062, -0.0167220160365105, -0.0139176212251186, 0.00112012727186084, -0.00168915838003159, 0.00969798676669598, 0.00828274525702, -0.00823709275573492, 0.0330005474388599, -0.00362288602627814, -0.0255917273461819, 0.0168785396963358, 0.054105244576931, -0.00600009923800826, -0.0115436688065529, -0.00728490296751261, 0.0138132721185684, -0.0595314204692841, -0.00871970970183611, 0.0213394835591316, 0.0342266522347927, 0.015743738040328, -0.0201916377991438, 0.0313309542834759, 0.0127176018431783, -0.010324084199965, 0.0274700187146664, -0.0318266116082668, 0.0142176263034344, -0.00764360465109348, 0.038113672286272, 0.00103860418312252, 0.038818035274744, -0.0179872531443834, 0.013643704354763, 0.0458355396986008, -0.0188611820340157, -0.0316700898110867, 0.0105066951364279, -0.00445768237113953, -0.0120654171332717, -0.0281482916325331, -0.0185611769556999, 0.0297396220266819, 0.0217177513986826, 0.0141915390267968, 0.00027350996970199, -0.00600336026400328, -0.0066979369148612, 0.0170089770108461, -0.0126784704625607, -0.00236743036657572, -0.0322179235517979, 0.00577183440327644, -0.0056446585804224, -0.009495809674263, 0.00638488819822669, 0.0138002280145884, -0.0113741010427475, -0.00135165278334171, -0.0139958839863539, 0.000184955511940643, -0.00523378234356642, 0.00265439180657268, 0.023569954559207, -0.0216525327414274, 0.0247438866645098, -0.0255917273461819, 0.0402267538011074, 0.0162785295397043, -0.00416746037080884, -0.01136105787009, 0.00289896107278764, -0.0155741702765226, 0.0265047866851091, 0.00671750260517001, -0.0359745062887669, -0.0105197392404079, -0.0146089373156428, -0.00988711975514889, -0.014048058539629, -0.0148045923560858, 0.0159002635627985, -0.0245873630046844, -0.00195655412971973, 0.0242482274770737, 0.00175111589487642, -0.024365620687604, -0.0294526610523462, -0.00342396972700953, 0.000491584243718535, 0.00109403987880796, -0.0208307802677155, -0.0117523679509759, 0.00829578936100006, -0.0124762933701277, -0.0212090462446213, 0.00371745275333524, 0.0063685835339129, 0.000184751697815955, -0.00365549535490572, -0.0216003581881523, -0.00392289087176323, -0.000590634765103459, 0.00732403434813023, -0.0236351732164621, 0.00490442896261811, -0.00876536220312119, -0.0134741356596351, 0.00247667147777975, -0.00126605352852494, -0.00283700344152749, -0.0170089770108461, 0.0278352424502373, -0.0264004375785589, -0.0116675840690732, 0.0142437135800719, -0.00564791960641742, -0.00635553989559412, -0.00466312048956752, -0.0124306408688426, 0.0227090716362, -0.022748202085495, -0.0312526896595955, -0.0225134156644344, -0.0173481125384569, 0.021091653034091, -0.0349310114979744, 0.00264623947441578, 0.025656946003437, -0.00629684329032898, -0.00966537743806839, 0.0020788386464119, -0.163828790187836, 0.00965885538607836, 0.0101414723321795, 0.00341744790785015, 0.0109762689098716, -0.013017606921494, 0.00153018836863339, -0.021926449611783, -0.00763056101277471, -0.00211307848803699, 0.0178829040378332, 0.0174655057489872, -0.0348005741834641, -0.00907188933342695, -0.00169568019919097, -0.0024946064222604, -0.0224221106618643, 0.00553052639588714, 0.00379571504890919, 0.00348918815143406, 0.0301309339702129, -0.0120915044099092, 0.00206742552109063, -0.0427311398088932, 0.0215351395308971, -0.0104936519637704, -0.00519139040261507, 0.0167350601404905, 0.00164758157916367, -0.00728490296751261, -0.00209514331072569, -0.00139812100678682, 0.0315396524965763, 0.00180002977140248, 0.0087523190304637, -0.00711533520370722, -0.0201916377991438, -0.0125741213560104, -0.00425876630470157, 0.0310700796544552, 0.0432268008589745, 0.0253047663718462, 0.0143871940672398, -0.0106958290562034, -0.00364897330291569, -0.0061794500797987, -0.00669141486287117, 0.0115306256338954, -0.0166567973792553, -0.0129458662122488, -0.00343049154616892, -0.0165263600647449, -0.01136105787009, 0.00726533774286509, 0.0175437685102224, -0.00307015958242118, -0.0142437135800719, 0.012815429829061, -0.00979581382125616, 0.0052305213175714, -0.00438920315355062, -0.00872623175382614, 0.00418050400912762, 0.00500225648283958, -0.0177655108273029, 0.025239547714591, -0.0217438377439976, 0.0137219661846757, -0.0186655260622501, 0.00896753929555416, -0.0079044783487916, -0.0114914942532778, -0.0109110502526164, -0.0148045923560858, -0.00518486835062504, 0.023582998663187, -0.0291396118700504, 0.0105914799496531, -0.0075262114405632, 0.0175568126142025, -0.0120328078046441, 0.0426789671182632, -0.00412506842985749, 0.00136632693465799, -0.00920232571661472, -0.010937137529254, -0.00438920315355062, 0.0102197341620922, -0.00268210959620774, -0.0139306653290987, 0.0185090024024248, -0.0402267538011074, -0.000132475019199774, 0.00309787737205625, 0.00324624939821661, 0.0110219214111567, 0.00646641151979566, 0.000299393548630178, 0.00446746498346329, -0.00766969192773104, -0.000871481781359762, -0.0169959329068661, -0.00358049408532679, 0.038113672286272, -0.00108262663707137, 0.0245482325553894, 0.0125741213560104, 0.0325309745967388, -0.00313863880001009, 0.00595770729705691, -0.0199959836900234, -0.00024803398991935, 0.0277048069983721, 0.0306005068123341, 0.0204785987734795, 0.00183753040619195, -0.00686750467866659, -0.00144948053639382, 0.0132002187892795, -0.00765664828941226, 0.058696623891592, -0.00161497236695141, -0.00440876837819815, -0.00364897330291569, 0.0156263448297977, -0.00187177013140172, -0.12000198662281, -0.000540905690286309, 0.00306200725026429, 0.0123067256063223, -0.0069718542508781, 0.0185481328517199, 0.0155480829998851, 0.0315657407045364, -0.0154828652739525, 0.0477660074830055, -0.00825013685971498, -0.0258004274219275, 0.00544248148798943, -0.00483594974502921, 0.00504464888945222, 0.00271308841183782, -0.00922841392457485, -0.0167220160365105, -0.0032544017303735, 0.00431094085797668, -0.0183394346386194, 0.00875884015113115, 0.00505443150177598, -0.00956754945218563, -0.0177655108273029, -0.01863943785429, -0.0103045180439949, 0.0187437888234854, 0.00766969192773104, 0.00723925000056624, -0.0127176018431783, -0.00279135047458112, -0.0126589052379131, -0.00766969192773104, -0.0138002280145884, -0.000457344518508762, -0.023556912317872, -0.0202829446643591, 0.0253178104758263, -0.00967842061072588, -0.00483594974502921, -0.019474234431982, 0.0154046025127172, -0.00553378742188215, -0.00360658136196434, -0.000389680353691801, 0.0087327528744936, 0.0257352087646723, 0.022330803796649, -0.0209351293742657, -0.015717651695013, 0.0290352627635002, -0.000374598574126139, -0.0286961272358894, 0.0180002972483635, -0.0015668737469241, -0.0227351579815149, -0.00917623843997717, -0.0331570692360401, 0.0110806180164218, -0.00195003231056035, -0.00718707544729114, 0.00204949034377933, 0.007128378842026, 0.00418376503512263, 0.00545226410031319, -0.0144002381712198, -0.0212873090058565, -0.00684141740202904, -0.0383484587073326, 0.0132523933425546, 0.0142828449606895, -0.0176742058247328, 0.0246786698698997, -0.00875884015113115, -0.00769577967002988, -0.026896096765995, -0.00230221194215119, 0.0129980407655239, -0.0179220363497734, -0.0135002229362726, -0.0016100809443742, 0.0114719290286303, -0.0322961881756783, 0.0237264800816774, 0.0112240985035896, -0.0152480779215693, 0.025656946003437, 0.00457507558166981, -0.0090458020567894, 0.0213525276631117, 0.0378006249666214, 0.00782621651887894, -0.00778708513826132, -0.0283569917082787, 0.0110675748437643, -0.00521095562726259, -0.0163046177476645, 0.010115385055542, 0.00463703321292996, -0.0304700694978237, 0.00273428438231349, -0.0726272910833359, 0.0245221443474293, -0.0208959970623255, -0.01550895255059, -0.00332777248695493, 0.0273395832628012, 0.0014242083998397, -0.014048058539629, -0.0240656156092882, 0.0262439120560884, -0.00915667321532965, 0.0195394530892372, 0.00194351037498564, -0.00913710799068213, -0.0157306957989931, -0.00331798964180052, 0.0486529804766178, -0.00498595181852579, 0.0223568920046091, 0.0242873579263687, 0.000836426857858896, 0.0249656308442354, -7.37274458515458e-05, 0.00110300735104829, -0.0180263854563236, 0.00110382260754704, -0.0112436646595597, 0.00823057070374489, -0.0185350887477398, -0.0230090767145157, 0.0123393349349499, -0.00206090370193124, 0.0108001790940762, 0.022330803796649, 0.00495008192956448, -0.0326092354953289, 0.0137350093573332, 0.00490768998861313, 0.0200220700353384, -0.015091554261744, -0.00573922554031014, -0.0363136455416679, 0.00209188251756132, 0.021482964977622, -0.0134089170023799, 0.0107088731601834, 0.00761751737445593, -0.000534383812919259, -0.00204296852461994, -0.00430441880598664, -0.032635323703289, 0.0254743341356516, -0.00272124074399471, 0.0146871991455555, -0.008667535148561, -0.0196698904037476, 0.00410224171355367, -0.00336527312174439, 0.000606531801167876, -0.0251482427120209, 0.0278613306581974, 0.00228916830383241, 0.0050903013907373, 0.0178568176925182, 0.014674155972898, 0.0151698160916567, -0.00585661875084043, 0.0125545552000403, 0.0216525327414274, -0.0264265239238739, -0.0174133311957121, -0.00250438926741481, 0.0070435949601233, 0.0267656594514847, 0.0154437338933349, -0.0117393247783184, 0.0191350989043713, -0.00335549027658999, -0.0101871248334646, 0.0210264343768358, 0.0286700390279293, -0.0185090024024248, 0.00252558523789048, 0.0109762689098716, -0.00396202225238085, 0.0207916479557753, 0.0085957944393158, 0.00176579004619271, -0.000984798884019256, 0.00610770983621478, -0.0164480973035097, -0.000807078555226326, -0.000765909382607788, 0.0189133565872908, 0.0217438377439976, 0.00399463111534715, -0.0159002635627985, 0.0117523679509759, -0.00205275136977434, -0.0133958738297224, -0.00248645409010351, 0.00381201948039234, 0.0204394683241844, -6.30275389994495e-05, 0.00422289595007896, 0.0252917222678661, -0.0361049436032772, -0.0195264108479023, -0.0238177850842476, 0.0146611118689179, 0.0153393838554621, 0.0195264108479023, 0.0084392698481679, 0.0254091154783964, -0.0320353135466576, 0.0179220363497734, 0.002070686314255, -0.00825013685971498, -0.00583705306053162, 0.0382701978087425, 0.0226960275322199, -0.00661641359329224, 0.0215351395308971, 0.0151045974344015, 0.0254743341356516, -0.00774143263697624, 0.00314516061916947, -0.00139241432771087, -0.0154437338933349, 0.0146219814196229, 0.00710229156538844, -0.0113545358181, -0.0440094247460365, 0.0163828805088997, -0.00820448342710733, -0.0133567424491048, -0.0142176263034344, 0.0171915888786316, -0.0227090716362, 0.0393397808074951, 0.00306852906942368, -0.0208177361637354, 0.00853709783405066, -0.00194187997840345, 0.0241177901625633, 0.00899362657219172, 0.00971102993935347, 0.0106436545029283, 0.0138654466718435, 0.0361049436032772, -0.0151698160916567, -0.00373375741764903, -0.0124502060934901, -0.0365745164453983, 0.00135817460250109, 0.000120959884952754, 0.00816535204648972, -0.00424246164038777, 0.00830883346498013, 0.00389028177596629, -0.0147002432495356, 0.0218481868505478, 0.00536095816642046, -0.0108849629759789, 0.00511638913303614, 0.0307048559188843, -0.04134850949049, 0.00924145709723234, -0.0189785752445459, 0.020256856456399, 0.00855666305869818, -0.0162654872983694, 0.00464681582525373, 0.0328701101243496, -0.00826970208436251, 0.00160111347213387, 0.0192003175616264, 0.016161136329174, 0.0215220954269171, 0.000401297409553081, -0.0146480686962605, -0.0256830342113972, -0.03307880833745, 0.00354136293753982, 0.0288004763424397, -0.0159785244613886, 0.00509682344272733, -0.0179611667990685],id:"ded2a476140e4369c7565af24922a144",source:"state_of_union.txt",text:"Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections.
Tonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service.
One of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court.
And I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence."})
(:Chunk{embedding:[0.00567400502040982, 0.0152972564101219, -0.00745428912341595, -0.00968224741518497, -0.00493829324841499, 0.0188925284892321, -0.0171990022063255, 0.00211343681439757, -0.0182123407721519, -0.00703437812626362, 0.0173794608563185, -0.0150335105136037, 0.0170740708708763, 0.0153666632249951, -0.00874525494873524, -0.018406679853797, 0.0374796651303768, -0.000394100410630926, -0.0219186637550592, -0.0399505458772182, -0.0196837652474642, -0.0160468500107527, 0.00749593321233988, -0.00442815292626619, -0.0068365684710443, 0.00856479816138744, 0.0358139015734196, -0.0221268851310015, 0.00681227631866932, -0.00294978846795857, -0.0094046201556921, 0.0058891661465168, -0.0275822579860687, -0.0212245956063271, -0.0209192056208849, -0.030316885560751, -0.00418522953987122, -0.00232859770767391, 0.00631601782515645, -0.00657629314810038, 0.0232651550322771, -0.0253612399101257, 9.85793303698301e-05, -0.00761392479762435, -0.00368203013204038, 0.00395618705078959, -0.00951567105948925, -0.0190452225506306, -0.026929834857583, 0.0200724434107542, 0.0555531941354275, 0.0122850015759468, -0.0216271560639143, -0.0206138156354427, 0.000433358625741675, -0.0290953256189823, -0.00668387394398451, 0.00356750888749957, -0.0151862055063248, -0.00429628044366837, 0.0186565443873405, 0.0240702740848064, -0.0155471209436655, 0.01191714592278, -0.00627437373623252, -0.0148114087060094, -0.0290953256189823, 0.0256527494639158, 0.0178514253348112, 0.000270035787252709, 0.0277488343417645, 0.00671857735142112, 0.0168936122208834, -0.0150473918765783, 0.0410055294632912, -0.000769981590565294, -0.0200724434107542, -0.00117991538718343, -0.00855785701423883, -0.0052887974306941, 0.00136384344659746, -0.0258887317031622, -0.0136453751474619, 0.0104318400844932, 0.00468842871487141, 0.0185593757778406, -0.0118616204708815, -0.00319444737397134, -0.000737013353500515, -0.00353627582080662, -0.00604186113923788, 0.016851969063282, 0.0200169179588556, 0.0176015608012676, -0.0107649927958846, 0.00112699274905026, -0.0139230014756322, 0.0224322732537985, 0.0164216458797455, -0.0266799703240395, 0.0148946968838573, 0.0064583015628159, -0.0419494621455669, -0.019767053425312, -0.0121808918192983, -0.0303446482867002, -0.0156165277585387, -0.00106973212677985, 0.0134302135556936, -0.00331590929999948, -0.0123752309009433, 0.00719054322689772, 0.00482724234461784, -0.0145476628094912, -0.000585186004173011, -0.0347033962607384, 0.00195033079944551, -0.0200724434107542, 0.00760698411613703, -0.00163539743516594, 0.016851969063282, 0.0102097382768989, -0.0079748397693038, -0.0123266456648707, 0.0159357991069555, -0.00783602613955736, 0.0184760875999928, -0.00719748390838504, 0.00195553619414568, -0.0030070492066443, -0.00491747120395303, -0.00235462537966669, 0.01109120529145, -0.0160607304424047, -0.00526797538623214, -0.0231679864227772, -0.0395896323025227, 0.00900206062942743, -0.01157705206424, -0.00706908153370023, 0.0153111377730966, -0.000311896757921204, -0.0275128502398729, -0.000571304641198367, 0.0371187515556812, 0.0390899032354355, 0.0151029173284769, -0.00842598453164101, 0.0109107475727797, 0.0249586813151836, 0.0267632585018873, 0.00596204306930304, -0.00199197488836944, 0.0170740708708763, -0.00199197488836944, 0.013416332192719, -0.0121253663673997, -0.00693720858544111, 0.0107858153060079, -0.00406376738101244, -0.0143949678167701, -0.0249864440411329, -0.0203917138278484, 0.0167409181594849, 0.000755666405893862, 0.0240147486329079, -0.00110009755007923, 0.00708643300458789, -0.0123821711167693, 0.0198781043291092, 0.00764168752357364, 0.0230430532246828, -0.0116256373003125, 0.0331764444708824, 0.0064895348623395, -0.000859776569996029, 0.00495911529287696, -0.00790543295443058, -0.0185593757778406, 0.00850927270948887, -0.00609044590964913, 0.000622492108959705, 0.0256527494639158, 0.0364246815443039, -0.0420605130493641, -0.021599393337965, 0.0339815653860569, 0.00221060612238944, -0.0100986873731017, -0.0024691466242075, -0.00836351793259382, 0.0276933088898659, -0.00573994126170874, -0.0115492893382907, -0.633434116840363, -0.0199197474867105, 0.0188508834689856, -0.0298726819455624, -0.000389111810363829, 0.0110287386924028, -0.00429280987009406, 0.00769027229398489, -0.0300114955753088, 0.004747424274683, -0.0193506125360727, 0.0322047509253025, -0.00676369154825807, -0.00660752644762397, -0.0152833750471473, -0.0305389873683453, -0.000701876124367118, -0.00464678462594748, 0.0173794608563185, -0.00267736683599651, -0.0219741892069578, 0.0186426639556885, -0.000698405841831118, -0.0097169503569603, 0.0148114087060094, -0.00535473367199302, 0.0191007480025291, -0.0215161051601171, -0.0112994248047471, 0.000877562095411122, -0.0464192591607571, 0.00687127187848091, -0.0166715104132891, -0.0220297146588564, 0.0450588874518871, 0.0136731369420886, -0.0167131554335356, 0.0171990022063255, 0.00168484984897077, 0.0323990881443024, -0.017046308144927, -0.0049695260822773, 0.0171018335968256, 0.00891877245157957, 0.00824552681297064, 0.00932133197784424, 0.0161440186202526, 0.00699273403733969, -0.00898817926645279, 0.00651035690680146, -0.00201626727357507, 0.0165604595094919, 0.0106192389503121, -0.00711419573053718, -0.0040533565916121, -0.0088285431265831, 0.00271554058417678, -0.0231263414025307, -0.00179763580672443, -0.00311636482365429, 0.00839128065854311, 0.0246394108980894, -0.0265133939683437, -0.026638325303793, -0.0167825613170862, 0.0146587137132883, -0.00862726382911205, -0.0151167986914515, 0.0225849691778421, -0.00775967910885811, -0.0165465790778399, 0.0253334771841764, -0.0210996642708778, -0.0134024508297443, 0.0142977982759476, 0.0140409935265779, 0.0177681371569633, -0.015255612321198, -0.00130658282432705, 0.0215299855917692, -0.00128402560949326, -0.0134649174287915, 0.0159080363810062, 0.00952261127531528, 0.0206693410873413, -0.0129582472145557, -0.00864808633923531, 0.000163648190209642, -0.00450103031471372, 0.000972562644165009, 0.0115076452493668, 0.00969612877815962, 0.00261837104335427, -0.0417273603379726, -0.00361956399865448, 0.0126667385920882, -0.0171573590487242, 0.00478559825569391, 0.0305389873683453, -0.035064309835434, 0.0072807720862329, -0.0272907502949238, 0.0103346705436707, -0.0290120374411345, 0.0155610023066401, 0.00862032361328602, -0.017532154917717, 0.0241396818310022, 0.00917557720094919, -0.0241119191050529, -0.00716972118243575, -0.0224600359797478, -0.00864808633923531, -0.0235705450177193, 0.00455655576661229, -0.0228764768689871, -0.00128315796609968, 0.00153736036736518, 0.000324259832268581, -0.0189480539411306, 0.0178514253348112, 0.00335061270743608, 0.00063073419732973, -0.0283596143126488, 0.00605574250221252, -0.00529920822009444, 0.0130970608443022, -0.0317050218582153, -0.00489664915949106, -0.00568788638338447, -0.0117575097829103, -0.00816917885094881, 0.0277349520474672, 0.00217416766099632, 0.0201002061367035, 0.0211413074284792, 0.0127639081329107, -0.015699815005064, 0.0115007050335407, -0.0315384455025196, 0.00473007280379534, -0.0105706537142396, -0.011722806841135, -0.00356403854675591, -0.0213078837841749, -0.0331209190189838, -0.00440386077389121, 0.01031384896487, -0.0625216364860535, -0.0176293235272169, 0.00378267001360655, -0.00877301767468452, -0.00850927270948887, 0.0127639081329107, 0.00361956399865448, -0.0159635618329048, 0.0122988829389215, -0.000564363959711045, -0.00934909470379353, -0.0175182726234198, 0.0274017993360758, 0.0147003578022122, -0.0231818668544292, -0.011334128677845, 0.0106192389503121, -0.0115978745743632, 0.0282763261348009, 0.000263528898358345, 0.0172267649322748, -0.0451976992189884, 0.0226543750613928, -0.00806506909430027, 0.016851969063282, 0.00531308958306909, 0.0314273945987225, 0.00418869964778423, -0.00438650883734226, 0.0349254943430424, 0.020822037011385, 0.0298449192196131, -0.00108534866012633, -0.00838434044271708, -0.00386595819145441, 0.000242273075855337, 0.0312885791063309, 0.00452185235917568, 0.00485500507056713, 0.00757922139018774, -0.00858561974018812, 0.030899902805686, -0.0172267649322748, 0.0218770205974579, 0.00765556888654828, 0.0153250191360712, -0.0015443010488525, 0.0260553080588579, -0.00316841993480921, 0.00713501777499914, 0.0170879513025284, 0.0148808155208826, 0.00440386077389121, -0.00842598453164101, 0.00502852164208889, -0.0155748836696148, -0.014825290068984, -0.0476408191025257, 0.0178791880607605, -0.0276794265955687, -0.0124238152056932, 0.0219186637550592, 0.00523674208670855, -0.0302891228348017, -0.0263329353183508, -0.0234317313879728, 0.0177958998829126, 0.000219607420149259, -0.0210024937987328, 0.0320381745696068, 0.0026131656486541, -0.00300531391985714, 0.0106331203132868, 0.0316772572696209, 0.0305389873683453, 0.0062986658886075, -0.00145927770063281, 0.022085240110755, 0.00108881900086999, -0.0303724110126495, 0.0240286309272051, -0.00837739929556847, 0.00225572055205703, 0.0196976475417614, 0.0129443658515811, 0.0311497673392296, -0.00916169583797455, -0.0286511220037937, 0.0167131554335356, -0.00931439083069563, 0.0226543750613928, 0.00679145427420735, 0.0361192934215069, 0.00443509360775352, 0.00909228902310133, 0.024306258186698, 0.0207387488335371, -0.02432013861835, 0.0415052585303783, 0.019184036180377, 0.0224045105278492, 0.00882160291075706, -0.000434660003520548, -0.000850233191158623, -0.0102097382768989, 0.0158247482031584, 0.030316885560751, -0.0322325117886066, -0.00106279144529253, 0.000995987444184721, 0.00264439871534705, 0.0311775300651789, 0.021210715174675, 0.0269437152892351, -0.00706561096012592, -0.0227237828075886, -0.00945320446044207, 0.00748205184936523, -0.00660058576613665, -0.00706561096012592, -0.0105637134984136, -0.0206971038132906, -0.00399436056613922, -0.0269714780151844, 0.0295395292341709, 0.0102166794240475, 0.0151584427803755, 0.023251274600625, -0.00869667064398527, 0.0415330231189728, -0.00234074401669204, -0.0114660011604428, -0.0152833750471473, -0.0339538007974625, 0.0385068878531456, 0.00649647554382682, -0.0105775948613882, 0.00384860648773611, 0.000830712495371699, 0.00601756852120161, -0.0134579762816429, -0.00533738220110536, 0.00849539134651423, -0.0256111044436693, -0.0161856636404991, 0.013610671274364, 0.0140409935265779, -0.00492094131186604, 0.00978635717183352, -0.00937685742974281, 0.0268604271113873, -0.0292063765227795, -0.00611820863559842, 0.00187224813271314, -0.0274573247879744, -0.0119865527376533, 0.0123891122639179, -0.00953649263828993, -0.0020422947127372, 5.68810319236945e-05, 0.00814835727214813, -0.0110495612025261, 0.0172267649322748, 0.00192950875498354, -0.00197288789786398, -0.0232373923063278, -0.00656935246661305, -0.00850233156234026, -0.0233345627784729, 0.00135690276511014, 0.025375122204423, 0.00639236532151699, -0.00862032361328602, -0.028873223811388, -0.0464192591607571, 0.0118824420496821, 0.139479875564575, 0.0148114087060094, -0.0101680941879749, 0.0257360376417637, 0.000849365605972707, -0.0218076128512621, -0.00274677365086973, -0.00267389649525285, 0.0283734947443008, -0.0365912578999996, 0.00786378886550665, 0.00258713797666132, -0.00383472512476146, 0.00803036522120237, 8.10649580671452e-05, 0.0197392906993628, 0.00194165494758636, -0.0207387488335371, -0.00606962386518717, -0.0210580192506313, -0.00410888204351068, -0.0097169503569603, 0.0109385102987289, 0.010320789180696, -0.000283700239378959, -0.0122988829389215, 0.0175043921917677, 0.00564971240237355, 0.0106053575873375, 0.0150890359655023, -0.0120281968265772, 0.00957119651138783, 0.0220991224050522, 0.00798178091645241, -0.025763800367713, -0.000740917457733303, -0.0103069078177214, -0.0419217012822628, 0.0100986873731017, 0.00936297606676817, 0.0150473918765783, -0.0102930264547467, 0.00442815292626619, -0.0277071893215179, 0.022473918274045, -0.0116186961531639, -0.00668734405189753, 0.00209434982389212, 0.00205097068101168, 0.016851969063282, 0.0130068324506283, -0.0218492578715086, -0.0151445614174008, -2.81422835541889e-05, -0.0203361883759499, 0.0133955106139183, -0.00545190321281552, 0.00885630585253239, -0.0145615441724658, 0.00980717968195677, -0.0179624762386084, -0.0256943926215172, -0.0211413074284792, -0.0200030356645584, 0.00578852603211999, -0.00192083290312439, -0.0170324258506298, -0.00442121224477887, -0.00995293352752924, -0.01318034902215, 0.0110634425655007, -0.0400615967810154, -0.0326489545404911, 0.0171851217746735, 0.0141659257933497, 0.00424769567325711, 0.0154083073139191, 0.014436611905694, 0.00828022975474596, -0.00456002587452531, -0.0169352572411299, -0.0346756316721439, -0.00588222546502948, -0.0223906300961971, -0.00335061270743608, -0.0130415353924036, -0.00606962386518717, -0.00416440749540925, -0.0294840037822723, 0.0259720198810101, 0.0110217984765768, 0.01109120529145, 0.00549007719382644, -0.0188370030373335, -0.00412276340648532, 0.00339399208314717, 0.018115172162652, -0.000907493755221367, -0.00153822801075876, 0.00316668464802206, 0.0137564251199365, -0.0332874953746796, -0.025389002636075, -0.0130207138136029, 0.00424422509968281, -0.0232096295803785, 0.00662140781059861, 0.0114798825234175, -0.0115215266123414, -0.012548747472465, 0.0116603402420878, -0.0253195967525244, 0.00144713150803, 0.0160329677164555, -0.018601018935442, 0.00357097922824323, 0.00378267001360655, 0.0162411890923977, 0.0143533237278461, -0.018115172162652, -0.00446979701519012, 0.00075610022759065, 0.0422270894050598, 0.0237232409417629, 0.0102166794240475, 0.0086411451920867, 0.00889100972563028, -0.0367855988442898, 0.0129582472145557, -0.00702396687120199, -0.00574341183528304, 0.0238898172974586, 0.00571564910933375, -0.00735017890110612, -0.0103277303278446, -0.0123405270278454, -0.0111675523221493, 0.0177126117050648, -0.0155748836696148, 0.0130623579025269, -0.00853009428828955, -0.0192117989063263, -0.00853703543543816, -0.062799260020256, 0.00363344536162913, -0.0271796993911266, 0.0166437476873398, -0.00320312334224582, -0.00870361085981131, 0.00998763646930456, -0.0249864440411329, -0.0132983410730958, -0.0155610023066401, 0.000717492657713592, -0.00808589067310095, -0.015019629150629, 0.00842598453164101, -0.00385554716922343, 0.0389788523316383, 0.0315662063658237, -0.00804424658417702, -0.0152278495952487, -0.00311636482365429, 0.0116534000262618, 0.0288454610854387, 0.00435874611139297, -0.00595857296139002, 0.0148114087060094, -0.00938379764556885, 0.0373130887746811, 0.0073432382196188, -0.0104248998686671, -0.0138327730819583, -0.00293417205102742, 0.00180457648821175, 0.0101889166980982, -0.0110079171136022, -0.0148808155208826, -0.0179763585329056, -0.021599393337965, -0.00898123811930418, 0.0136661967262626, 0.00649994565173984, 0.0110079171136022, -0.0316772572696209, -0.00402212329208851, 0.0402281731367111, 0.00280576944351196, 0.0315106809139252, -0.0178791880607605, 0.0379238687455654, -0.0132497558370233, 0.00819000136107206, 0.00397353852167726, -0.0134649174287915, -0.024125799536705, -0.0511944480240345, 0.0039874198846519, 0.0166853927075863, 0.0110287386924028, 0.019558833912015, -0.000884502776898444, -0.0230430532246828, 0.00124064635019749, 0.010709467343986, 0.0283596143126488, -0.0113757727667689, -0.0142561541870236, 0.0298449192196131, -0.0220435969531536, 0.0220435969531536, -0.00704131880775094, -0.0264162234961987, -0.0457807183265686, 0.0237510036677122, -0.029261901974678, -0.00345645798370242, 0.00693373801186681, -0.000227741023991257, -0.018989697098732, -0.00917557720094919, -0.0148114087060094, -0.0163522399961948, -0.00209261476993561, 0.00891183130443096, 0.0171018335968256, -0.00198850454762578, -0.00237197708338499, 0.0140965189784765, 0.0133191626518965, -0.00698579335585237, 0.0264578685164452, 0.014242272824049, 0.00397006841376424, 0.00180284131783992, -0.000963019207119942, 0.0224322732537985, 0.00159201817587018, -0.0330653935670853, 0.0147975273430347, 0.0250280871987343, -0.00363344536162913, -0.0186704266816378, -0.0238342918455601, 0.00213252357207239, 0.00587181420996785, 0.000392148358514532, 0.00422340305522084, -0.00499381823465228, -0.0127014424651861, -0.0318715982139111, 0.00481683108955622, 0.0109385102987289, 0.00510486913844943, 0.000758702983148396, 0.00653117895126343, 0.0128333149477839, 0.000325778120895848, 0.00733629753813148, 0.0112022552639246, -0.0297338683158159, 0.0240008682012558, -0.000567400478757918, 0.0160329677164555, 0.00115302030462772, 0.0316494964063168, -0.0294007156044245, 0.00426504714414477, -0.00377572933211923, 0.0255416985601187, -0.00961284060031176, 0.00759310275316238, -0.0147003578022122, -0.00244832457974553, 0.00634378055110574, -0.021030256524682, -0.00943932309746742, 0.00102635286748409, 0.0116672813892365, -0.0137078408151865, 0.00547966593876481, -0.0050666956230998, -0.0347311571240425, -0.0107996966689825, 0.00303654698655009, -0.0147003578022122, -0.0134371547028422, -0.0172684099525213, 0.0366190224885941, 0.0106053575873375, -0.0051291617564857, -0.0151862055063248, 0.00330202793702483, 0.00526797538623214, -0.000598633545450866, -0.0180318839848042, 0.0106747644022107, 0.0109662730246782, -0.0208081547170877, 0.031482920050621, -0.0209747310727835, 0.02062769792974, -0.0155887650325894, -0.00897429790347815, -0.0254584103822708, -0.0134649174287915, 0.0236260704696178, -0.0204750020056963, -0.00037262769183144, -0.0150057477876544, 0.0129443658515811, 0.0131942303851247, 0.00217937305569649, -0.0216687992215157, -0.0241813249886036, 0.00188786466605961, 0.0194894261658192, -0.0124099338427186, -0.0117783322930336, 0.0249447990208864, -0.0061425007879734, -0.00393883511424065, 0.0209886133670807, -0.0215299855917692, -0.0126389758661389, -0.0191423930227757, 0.0205999352037907, 0.0260136649012566, -0.0210857819765806, -0.00273983296938241, 0.00791237410157919, 0.0229597650468349, -0.0320659354329109, -0.0221268851310015, -0.00931439083069563, 0.0119379675015807, -0.0108343996107578, 0.00917557720094919, -0.00304348766803741, -0.0112230777740479, 0.0295950546860695, 0.019184036180377, 0.0136523153632879, 0.0235566645860672, -0.0216826815158129, -0.0318160727620125, -0.0164494086056948, -0.0158525109291077, -0.0158386286348104, -0.0116464588791132, -0.0128541374579072, 0.0315662063658237, 0.0170740708708763, -0.0210024937987328, 0.00150786247104406, 0.000154972352902405, -0.0257082749158144, -0.0261941216886044, -0.0212662406265736, 0.0188508834689856, 0.0147836459800601, 0.00428586918860674, 0.0204611215740442, 0.0306500382721424, -0.00155731476843357, 0.0511666834354401, -0.000849799369461834, -0.00725995004177094, 0.0157414600253105, -0.0508890561759472, 0.031788308173418, 0.01157705206424, -0.0304556991904974, -0.00430322112515569, 0.000826374569442123, 0.00849539134651423, 0.0285123083740473, 0.0171712394803762, -0.0187120698392391, -0.0147558832541108, 0.00816223863512278, 0.0114521197974682, 0.0170601885765791, 0.00361262331716716, -0.00921028107404709, -0.0250142067670822, 0.0154915954917669, 0.0107372300699353, -0.0128819001838565, -0.014866934157908, 0.00434486521407962, 0.0216132737696171, 0.00441080145537853, -0.000454614462796599, -0.00214814022183418, 0.00150092178955674, 0.0215161051601171, 0.00409153010696173, 0.0321492254734039, 0.00808589067310095, -0.0330376327037811, 0.0161162558943033, 0.0215299855917692, -0.00415052613243461, -0.0195865966379642, -0.00437609804794192, 0.000563930138014257, 0.0153389004990458, 0.00387289887294173, -0.0234594941139221, 0.0310387164354324, -0.00600021705031395, 0.0031510682310909, -0.0101056285202503, 0.000554820522665977, -0.00446979701519012, -0.00807895045727491, -0.00612167874351144, 0.0185732562094927, 0.012548747472465, -0.0193089693784714, -0.0205305274575949, -0.00728771276772022, -0.011722806841135, 0.0103416116908193, -0.0010515128960833, -0.006586704403162, 0.00422340305522084, 0.00950178969651461, 0.0100501030683517, -0.0171990022063255, -0.0139230014756322, -0.00819000136107206, 0.00832187384366989, 0.00773191638290882, -0.00105758593417704, 0.218437045812607, 0.0111259082332253, 0.00833575520664454, 0.030899902805686, -0.0183927994221449, 0.0205999352037907, 0.0126736797392368, 0.0209747310727835, 0.00900206062942743, -0.00236677145585418, 0.00119206157978624, -0.0144227305427194, -0.0234733764082193, 0.0015816071536392, 0.0158247482031584, -0.00380349205806851, -0.0347866825759411, -0.0287344101816416, -0.0163383577018976, 0.0112230777740479, 0.0184622053056955, -0.0149641036987305, 0.00730853481218219, -0.0196698848158121, 0.0287621729075909, 0.0145060187205672, 0.0151723241433501, 0.00837045907974243, 0.0228764768689871, 0.0166715104132891, -0.0120212556794286, 0.00653117895126343, 0.0100501030683517, 0.0160329677164555, 0.00846762862056494, -0.0105498321354389, -0.0322325117886066, -0.0167270358651876, -0.0161579009145498, -0.0141451032832265, -0.0129096629098058, 0.0188370030373335, -0.00676716212183237, -0.0121253663673997, -0.00169439322780818, 0.0465025492012501, -0.00105758593417704, 0.0122988829389215, 0.00141069293022156, 0.0234872568398714, -0.0266522075980902, -0.000358095654519275, 0.0142145100980997, 0.0245838854461908, -0.0143116796389222, 0.000864114495925605, 0.0167270358651876, 0.00482377177104354, -0.0129721285775304, -0.0110842641443014, -0.00420605158433318, 0.0119449086487293, 0.00461208121851087, 0.0460028201341629, -0.0202390197664499, 0.0327044799923897, 0.0199613925069571, 0.00511875050142407, 0.0246116481721401, -0.0193644948303699, -0.0121461879462004, 0.000867584836669266, -0.020835917443037, -0.00362997502088547, -0.0140965189784765, -0.0206971038132906, 0.00602103909477592, 0.0243479013442993, 0.0260414276272058, 0.0164077654480934, 0.000428803818067536, 0.00303307664580643, 0.0051916278898716, 0.00838434044271708, 0.00337490509264171, -0.0332042090594769, 0.00654158974066377, 0.00716278050094843, 0.00230951094999909, -0.0133052812889218, 0.00504240300506353, -0.00480642030015588, -0.00556295411661267, -0.0183233916759491, -0.0103416116908193, -0.00109575968235731, -0.00175252137705684, 0.0196004770696163, -0.0184205621480942, 0.00131352350581437, -0.021030256524682, 0.0581351257860661, 0.0375351905822754, -0.00233553838916123, -0.00718360254541039, 0.00467454735189676, -0.00442815292626619, 0.0140409935265779, 0.00530961947515607, -0.0367855988442898, 0.0148808155208826, -0.0391731932759285, 0.000892744807060808, -0.010515128262341, 0.008863246999681, 0.0212384779006243, 0.00395618705078959, -0.0155054768547416, 0.0339260399341583, -0.000299967476166785, -0.0143116796389222, -0.0416995994746685, -0.0110079171136022, 0.0101125687360764, 0.00195206596981734, 0.0050666956230998, 0.00204923539422452, 0.0367855988442898, -0.0134926801547408, -0.0257360376417637, 0.0140201710164547, -0.0171712394803762, 0.026929834857583, -0.00747511116787791, -0.0182678662240505, -0.0210580192506313, -0.00274330331012607, -0.00280056381598115, -0.0298171564936638, 0.00971001014113426, -0.000531395722646266, 0.00189480534754694, 0.00289426301605999, -0.00122242711950094, 0.0227099005132914, -0.00353280548006296, 0.0223628673702478, -0.0071211364120245, -0.0155332395806909, -0.00211690715514123, -0.0176709685474634, 0.0296783428639174, 0.0049695260822773, -0.019767053425312, 0.00492094131186604, -0.0147558832541108, -0.0149918664246798, -0.0262774098664522, -0.0115909334272146, 0.0157553404569626, -0.0368966497480869, 0.0110565014183521, 0.0287621729075909, -0.0110009759664536, -0.00728771276772022, -0.00905758608132601, -0.178347691893578, 0.038062684237957, 0.0214605797082186, -0.00213425885885954, -0.00714195845648646, -0.0018930701771751, 0.0023910638410598, -0.0127361454069614, -0.0301225464791059, -0.00605227192863822, 0.0269575975835323, 0.00705520017072558, -0.0335651226341724, 0.00606615329161286, 0.00120594294276088, -0.00459819985553622, -0.032843291759491, -0.00469883950427175, 0.0244311895221472, 0.0105706537142396, 0.0187120698392391, -0.0225294437259436, 0.0106747644022107, -0.0485847517848015, 0.0114729423075914, -0.000191302460734732, 0.013173408806324, 0.01070252712816, 0.00281791551969945, -0.00700314482674003, -0.00871055200695992, 0.000540505396202207, 0.0230014100670815, 0.0068088062107563, 0.0112786032259464, -0.00616679340600967, 0.00677757291123271, -0.00676022144034505, -0.0136523153632879, 0.0188092403113842, 0.0438095666468143, 0.0374241396784782, 0.01075111143291, -0.000416440743720159, -0.00952261127531528, 0.00304348766803741, 0.00576770398765802, -0.0200030356645584, -0.0108899250626564, -0.0319826491177082, -0.0122155947610736, -0.0209330879151821, -0.025389002636075, 0.00327426521107554, 0.0145337814465165, 0.0180596467107534, -0.0247365795075893, -0.0132844597101212, 0.00581975933164358, -0.0134579762816429, 0.00236156606115401, 0.00314239226281643, 0.0209330879151821, 0.00362650468014181, -0.00777356047183275, -0.00477518700063229, -0.0042129922658205, 0.0228487141430378, -0.0192256812006235, 0.00252814218401909, -0.0349810197949409, 0.000880164850968868, -0.0138882985338569, -0.0342591926455498, 0.00463637337088585, 0.00170567189343274, -0.00745428912341595, 0.00763474684208632, 0.0107580525800586, 0.00961284060031176, 0.00157293130178005, -2.59190983342705e-05, -0.00599327636882663, -0.00285955960862339, 0.006805335637182, -0.00244311895221472, -0.00395618705078959, 0.00799566227942705, -0.00579893728718162, -0.0330653935670853, 0.0266522075980902, -0.0392842441797256, -0.003293352201581, -0.0107719339430332, 0.0173516981303692, 0.0224183928221464, 0.0338982753455639, -0.000648519664537162, 0.00830105226486921, -0.0249309185892344, 0.00557683547958732, -0.0169213749468327, -0.0143533237278461, 0.0218076128512621, 0.0134093919768929, 0.0182539857923985, 0.0364524461328983, 0.0309276655316353, 0.0282763261348009, -0.00694414926692843, -0.00577117456123233, 0.00803730636835098, 0.0118755018338561, 0.0224045105278492, 0.0107233487069607, 0.0234039686620235, 0.00583017012104392, -0.00437609804794192, -0.00095781369600445, -0.015449951402843, 0.0578019730746746, 0.00273636262863874, 7.68354875617661e-05, -0.0152417309582233, 0.018989697098732, -0.000809022865723819, -0.118935473263264, -0.0194200202822685, 0.0215577483177185, 0.00966836605221033, -0.0163800027221441, 0.0209053251892328, 0.0106331203132868, 0.0169907826930285, -0.0419217012822628, 0.0304001737385988, 0.0152694936841726, -0.0315106809139252, -0.00155818241182715, 0.0012579980539158, 0.0185871385037899, 0.0342036671936512, -0.00454961508512497, -0.0026600151322782, -0.00381737342104316, 0.0222101733088493, 0.00705520017072558, -0.00837045907974243, -0.00568441580981016, 0.00158247479703277, -0.00397353852167726, -0.0244867149740458, -0.0167686808854342, 0.0241674445569515, 0.00293590710498393, 0.00117384234908968, -0.0214883424341679, 0.00619455613195896, 0.017046308144927, -0.0213495288044214, -0.0146864764392376, 0.00276412535458803, -0.0314551554620266, -0.0105498321354389, 0.0160468500107527, -0.00916169583797455, -0.00805812794715166, -0.0229736473411322, 0.0177542567253113, -0.023348443210125, -0.0227099005132914, -0.00163800024893135, -0.00732241617515683, 0.00608003465458751, 0.0552478022873402, -0.00527144549414515, -0.0460861064493656, -0.0076625095680356, -0.0107858153060079, -0.0125695690512657, -0.00209782016463578, 0.0234456136822701, -0.0181984603404999, -0.00843292474746704, -0.0136453751474619, 0.0167825613170862, -0.0121878320351243, 0.0148391714319587, -0.0142145100980997, 0.00936297606676817, -0.0050007589161396, -0.0127292051911354, -0.0277488343417645, -0.00753757730126381, 0.00173950765747577, -0.0360082425177097, -0.000873224169481546, 0.0155193582177162, -0.0254861731082201, 0.0346756316721439, -0.0172684099525213, 0.0064270687289536, -0.0360637679696083, -0.0122502986341715, 0.0145199000835419, -0.0349810197949409, -0.0185316130518913, -0.0153805445879698, 0.0128680188208818, -0.0172822903841734, 0.0468079373240471, 0.0140548748895526, -0.00234768469817936, -0.00390760228037834, 0.0320937000215054, 0.0104526625946164, 0.016088493168354, 0.0267216134816408, -0.00389719125814736, -0.0181706976145506, 0.00891877245157957, 0.0181012898683548, 0.0214328169822693, -0.00790543295443058, 0.0060488018207252, 0.0219047833234072, -0.0171018335968256, -0.01031384896487, -0.0659642145037651, 0.0188231207430363, -0.00743346707895398, -0.00356403854675591, 0.0114451795816422, 0.00251773116178811, -0.00899511948227882, 0.0100570432841778, 0.0115492893382907, 0.0100431619212031, -0.0176848489791155, 0.0245700031518936, 0.00379655137658119, -0.00632989918813109, -0.0358971916139126, -0.00264439871534705, 0.0193228498101234, -0.00727383140474558, 0.0439206175506115, 0.0267493762075901, -0.00104804255533963, -0.00913393311202526, 0.0232373923063278, 0.018601018935442, -0.0126528572291136, 0.0172128845006227, -0.0237648840993643, 0.0014644832117483, -0.00200932659208775, -0.00213425885885954, -0.00404641591012478, -0.00664222985506058, -0.0157275777310133, -0.00101333914790303, -0.000535299885086715, -0.0227793082594872, 0.000391931447666138, -0.0120281968265772, 0.00712807709351182, 0.0207942742854357, -0.00676716212183237, -0.0326211899518967, -0.00540678901597857, -0.0156165277585387, 0.00471619144082069, -0.000250081327976659, -0.0243617836385965, -0.0105012468993664, 0.00205964641645551, 0.0114868236705661, -0.00889100972563028, 0.00896735675632954, -0.0238481722772121, -0.00476824631914496, 0.0101125687360764, -0.00978635717183352, 0.0117158656939864, 0.0172684099525213, -0.0158525109291077, -0.0260414276272058, 0.0235705450177193, -0.00420258101075888, -0.00622578896582127, 0.00057434116024524, 0.0203778333961964, -0.00399436056613922, -0.0304279364645481, 0.00146968872286379, 0.0256805121898651, -0.0168242063373327, -0.0598008893430233, -0.0168242063373327, -0.00964754354208708, 0.0208775624632835, 0.00104110187385231, -0.01279167085886, 0.00272421655245125, -0.00676716212183237, 0.00217069732025266, 0.0250280871987343, 0.0141173405572772, -0.00599674647673965, -0.00504587357863784, 0.034009326249361, -0.00659364508464932, 0.000539637811016291, 0.000753497472032905, 0.00378614035435021, -0.0038312547840178, 0.00576423387974501, 0.00650341622531414, 0.0066491705365479, -0.0149085782468319, -0.00333846663124859, -0.00379308103583753, 0.0147142391651869, 0.000332935684127733, 0.0238898172974586, 0.014672595076263, 0.00205270573496819, 0.00675328075885773, -0.0246671736240387, 0.0141451032832265, -0.00389719125814736, -0.0249586813151836, 0.0108899250626564, -0.0150473918765783, 0.00784296728670597, -0.00523674208670855, 0.0156859345734119, 0.00404294533655047, 0.00700314482674003, 0.0247643422335386, 0.0131595274433494, -0.0320104099810123, 0.0205027647316456, 0.0182539857923985, -0.0190729852765799, -0.0210441388189793, 0.01075111143291, 0.0220019519329071, -0.0161162558943033, -0.0107719339430332, -0.00164494093041867, 0.0155748836696148, -0.00184622057713568, 0.0200446806848049, -0.0157831031829119, 0.00718360254541039, 0.00543802184984088, 0.0080095436424017, -0.0166159849613905, -0.0264023430645466, -0.00784990750253201, -0.0310109537094831, -0.0179069507867098, 0.00853703543543816, 0.00440039020031691, -0.0152278495952487, 0.0481960736215115, 0.00716972118243575, -0.0145337814465165, 0.0156442895531654, 0.00424769567325711, 0.0138952387496829, -0.00130050966981798, 0.0170046631246805, -0.00994599238038063, 0.00252814218401909, 0.0369799360632896, -0.012986009940505, 0.0105220694094896, -0.00209782016463578, 0.000287821283563972, 0.00252814218401909, -0.00665264064446092, 0.0147836459800601, -0.0346478708088398, 0.0265689194202423, 0.00171261245850474, -0.00347728002816439, 0.00801648385822773, 0.00318230129778385, -0.0294007156044245, 0.00687821255996823, 0.0265550371259451, -0.0366745479404926, -0.00444203428924084, -0.0066804033704102, 0.0121461879462004, 0.0127083826810122, -0.033231969922781, -0.0159080363810062, 0.0284567829221487, -0.0178097821772099, -0.000538336404133588, 0.0166298672556877, 0.0231124609708786, 0.0133469253778458, -0.00258540292270482, -0.000526624033227563, -0.0314273945987225, -0.0268743094056845, 0.0130970608443022, 0.0145060187205672, -0.02266825735569, -0.00907840766012669, 0.000103188373032026],id:"782fb46f146c2029453b8532e5502691",source:"state_of_union.txt",text:"A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans.
And if we are to advance liberty and justice, we need to secure the Border and fix the immigration system.
We can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling.
We’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers.
We’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster.
We’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders."})
(:Chunk{embedding:[-0.00222215824760497, -0.00749109080061316, -0.0135250287130475, -0.0328256823122501, -0.00982915889471769, -5.26769072166644e-05, -0.0138429533690214, -0.00600082101300359, -0.0231952257454395, -0.0245199110358953, 0.0180554501712322, 0.0117102116346359, -0.0087959049269557, 0.000781149894464761, -0.00570607837289572, 0.00460990192368627, 0.0339649096131325, -0.0188900008797646, 0.0135316522791982, -0.0213274210691452, 7.30646279407665e-05, -0.0236191246658564, 0.0174196008592844, 0.0148497130721807, 0.00248543941415846, 0.00821966771036386, 0.0355280376970768, -0.027738893404603, 0.0358194708824158, -0.0218572951853275, -0.00725264754146338, 0.000823788170237094, -0.0111141027882695, -0.0159094613045454, -0.052113089710474, -0.0129554150626063, -0.00923305097967386, -0.00660355249419808, 0.0273414887487888, -0.0109418937936425, 0.020029230043292, -0.0377005226910114, -0.00150931242387742, 0.00858395546674728, -0.0117234578356147, 0.0151543905958533, -0.00639822613447905, -0.0230230167508125, -0.0035898950882256, 0.0256061516702175, 0.0308916438370943, 0.0102133173495531, -0.0354220643639565, -0.02932851575315, -0.0105246184393764, -0.0101338364183903, -0.0244536753743887, 0.0119685251265764, -0.0259903110563755, -0.00328356167301536, 0.00541464798152447, 0.0303882621228695, -0.0244271829724312, 0.00633861543610692, -0.00510003557428718, 0.00266923941671848, -0.0212876796722412, 0.0344682894647121, 0.0237515941262245, -0.00612997775897384, 0.0497551523149014, 0.0108491666615009, 0.00717979017645121, 0.00450392719358206, 0.0220162570476532, -0.0174063537269831, -0.0280568189918995, -0.0178567469120026, -0.00189595471601933, -0.0171679109334946, 0.00102166295982897, -0.00445425184443593, -0.0263744685798883, -0.00792161375284195, 0.0161081645637751, -0.00142237998079509, -0.00764342956244946, -0.00318255461752415, -0.0202941671013832, -0.0213009268045425, -0.0126374904066324, -0.00532523170113564, -0.00912045314908028, 0.024639131501317, -0.00240430235862732, 0.0112068308517337, -0.00645783683285117, 0.0229302886873484, 0.0136839915066957, -0.0427078306674957, 0.030361769720912, -0.00556367496028543, -0.0285337045788765, -0.0178699940443039, -0.0166645310819149, -0.0465229190886021, -0.0103855263441801, 0.00513646425679326, 0.0311565808951855, -0.00957746896892786, -0.00990201719105244, -0.0165188163518906, 0.00734537560492754, -0.0243477020412683, 0.0175785627216101, -0.0216850861907005, -0.0093125319108367, 0.00205988436937332, 0.00136608094908297, -0.00484503386542201, 0.0107564385980368, 0.0069877109490335, 0.0180819444358349, 0.0111008565872908, 0.00886213965713978, -0.00796135421842337, -0.0296199452131987, -0.000764591328334063, -0.0112598184496164, 0.00797460041940212, 0.0086236959323287, 0.000788601231761277, 0.000357250857632607, -0.00910720601677895, -0.0171281713992357, -0.0224798955023289, 4.18621020799037e-05, 0.0144523084163666, -0.00865019019693136, 0.00962383300065994, 0.02416224591434, 0.00163184572011232, -0.0232217200100422, 0.00984902959316969, 0.00406346982344985, 0.0121539803221822, 0.0164923220872879, -0.000640402198769152, 0.0206385850906372, 0.00327031500637531, 0.00851772166788578, -0.0286661721765995, 0.020241180434823, 0.00066151435021311, -0.0101470835506916, 0.029460983350873, -0.00346736167557538, 0.0186118166893721, 0.0018810520414263, 0.00317924283444881, 0.00403366424143314, -0.0220030099153519, -0.00781563855707645, 0.021923528984189, 0.00853096786886454, 0.0160684231668711, 0.0150616634637117, 0.0197907872498035, -0.00743148010224104, 0.0192609131336212, 0.00729901157319546, 0.0312625542283058, -0.0163731016218662, 0.0209432616829872, -0.00574581930413842, 0.0190092232078314, -0.00925954524427652, 0.0196450706571341, -0.0309181362390518, 0.0248378347605467, -0.00882902275770903, 0.00210293661803007, 0.0135780163109303, 0.0387072823941708, -0.02618901245296, 0.0160551760345697, 0.0204398818314075, 0.0147967264056206, -0.0204796232283115, -0.0226521044969559, 0.00270732399076223, 0.0358989499509335, -0.00496094347909093, 0.000574995880015194, -0.629490077495575, -0.0142006184905767, 0.0213406682014465, -0.02932851575315, 0.00555705139413476, -0.000320408056722954, -0.00861044973134995, 0.00816668011248112, -0.0128958038985729, 0.00587166426703334, -0.0221619717776775, 0.0270235650241375, 0.000122222845675424, -0.00704732164740562, -0.0182011649012566, -0.0351836197078228, 0.00590809294953942, -0.00808719918131828, -0.00289940321817994, 0.00500068394467235, -0.0154193276539445, -0.00315606081858277, 0.0027950843796134, -0.00831239577382803, 0.0154590681195259, 0.0190622098743916, -0.00060107558965683, -0.0112531948834658, -0.0214996300637722, -0.0179362278431654, -0.0308121629059315, -0.00432178331539035, -0.0392636507749557, -0.00803421158343554, 0.049013327807188, 0.0141343837603927, -0.0228375606238842, 0.0115777431055903, 0.01208112295717, 0.0392106622457504, -0.0207180660218, -0.0106703341007233, 0.0107630621641874, 0.00462977262213826, 0.00162439444102347, 0.0104716308414936, 0.0494107343256474, 0.00857733190059662, 0.0118493027985096, 0.0185455828905106, -0.0226653516292572, 0.00527886766940355, 0.00232150964438915, -0.0147702321410179, 9.86269005807117e-05, 0.00924629811197519, 0.010511371307075, -0.0184925962239504, 0.00417937990278006, 0.0053318552672863, -0.00770966382697225, 0.018174672499299, -0.00431515974923968, -0.00626244628801942, -0.0350246578454971, 0.019512603059411, 0.00732550537213683, 0.0247980933636427, 0.0165585558861494, -0.00893499702215195, -0.0318719111382961, 0.0355545319616795, -0.00397736532613635, -0.0355015434324741, 0.00733875203877687, 0.0130547657608986, 0.00448074517771602, 0.00306167709641159, -0.0100079914554954, 0.0176977850496769, -5.2521671022987e-05, -0.0315274931490421, 0.0108359195291996, 0.00686186598613858, 0.0280568189918995, -0.0121009927242994, -0.0329581499099731, -0.00686848908662796, 0.00921980384737253, 0.0264936909079552, 0.0105378655716777, 0.0347862169146538, -0.0013279962586239, -0.0611474364995956, -0.00430191308259964, -6.2715531385038e-05, -0.0371441543102264, 0.00184959080070257, 0.00358327152207494, -0.0068155019544065, -0.00763680646196008, -0.0279243495315313, -0.00705394521355629, 0.0112465713173151, 0.0111074801534414, 0.0226256120949984, -0.0361109003424644, 0.0324547700583935, 0.0135117825120687, -0.0390781946480274, -0.0190489627420902, 0.000748446735087782, -0.0122665790840983, -0.020029230043292, -0.00569614348933101, -0.0227713268250227, 0.0150484163314104, 0.0164525825530291, -0.0101205902174115, -0.0152868591248989, 0.0183733738958836, 0.0134058073163033, 0.00920655764639378, -0.0303352754563093, 0.0194596163928509, 0.00461652548983693, 0.00620614690706134, -0.00723940087482333, -0.00444431649520993, 0.0112995589151978, 0.00755732506513596, -0.000408375402912498, 0.0348392017185688, 0.00841174647212029, 0.00906746555119753, 0.0187442861497402, 0.0158299803733826, -0.00853096786886454, 0.0169692095369101, -0.0116969645023346, -0.00581205356866121, 0.00195722142234445, -0.0082130441442132, -0.030149819329381, -0.0208637807518244, -0.0385218262672424, -0.0102464351803064, -0.00687511265277863, -0.0287191607058048, -0.01869129948318, -0.0146907512098551, -0.0290105901658535, -0.0227713268250227, 0.021062484011054, 0.00851772166788578, -0.00674926768988371, -0.00635848566889763, -0.0111604668200016, -0.01869129948318, -0.00217910599894822, 0.000428866624133661, 0.0197113063186407, -0.0175653174519539, 0.00685524241998792, -0.00998812168836594, -0.00989539362490177, -0.00415950920432806, -0.0064412783831358, 0.00627569295465946, -0.0339914038777351, 0.00965694990009069, -0.0209300145506859, 0.00198205932974815, 0.0117896925657988, 0.0403763838112354, 0.00753083173185587, -0.0140946432948112, 0.0238575674593449, 0.0020251115784049, 0.0233541876077652, 0.00670621544122696, -0.0293020214885473, -0.0116307297721505, -0.0166777782142162, 0.0199629962444305, 0.00937876664102077, 0.00915357004851103, -0.00254339422099292, 0.0254471898078918, 0.020890275016427, -0.00351703749038279, 0.0171546638011932, 0.0123791769146919, 0.0105047486722469, 0.00500068394467235, 0.0129355443641543, -0.0145185422152281, 0.00997487455606461, 0.0147702321410179, -0.00354353105649352, 0.019724553450942, -0.0156975109130144, -0.00306167709641159, -0.0223871693015099, 0.012577879242599, -0.0218440480530262, 0.00548419402912259, -0.012922297231853, -0.00694134691730142, 0.0075043379329145, -0.0036759995855391, -0.0128891803324223, -0.0266261585056782, -0.0260697919875383, 0.0295139718800783, 0.00764342956244946, -0.00768317002803087, 0.0167175196111202, -0.0100676026195288, 0.00346736167557538, 0.00494438502937555, -0.00693472335115075, 0.0180157087743282, -0.00590809294953942, -0.00558354519307613, 0.0108690364286304, -0.0162936188280582, -0.0175653174519539, 0.0206120908260345, -0.0126772308722138, -0.0123195657506585, 0.0180819444358349, 0.000496756692882627, 0.0386013053357601, 0.00108541338704526, -0.00566964969038963, 0.0208770278841257, -0.0329316556453705, 0.0216188505291939, -0.0136177567765117, 0.0106769576668739, 0.00395418331027031, 0.0229700300842524, 0.00137767195701599, 0.00552062271162868, -0.0171546638011932, 0.0454896651208401, 0.0237383469939232, 0.00702745141461492, -0.00903434865176678, -0.00422905525192618, 0.0196053311228752, -0.0142933456227183, 0.0216585919260979, 0.0117698218673468, -0.0189429894089699, 0.014836466871202, 0.0287191607058048, 0.0355545319616795, 0.0249703023582697, 0.0270368102937937, 0.0256193988025188, -0.00142320792656392, -0.0143065927550197, -0.0277653876692057, 0.0142403589561582, -0.00129322323482484, -0.00154574122279882, -0.0183071400970221, -0.00165254389867187, -0.00678900815546513, -0.0083852531388402, 0.0170619357377291, -0.00682874862104654, 0.0162803735584021, 0.0273149944841862, -0.00549744069576263, 0.0172473918646574, -0.00604387326166034, -0.0083653824403882, -0.0136707443743944, -0.0131276240572333, 0.0124851511791348, 0.024678872898221, -0.019207926467061, -0.00285800686106086, -0.0131210004910827, 0.0141873713582754, 0.00941850710660219, -0.00268579786643386, 0.00393100129440427, -0.00456684967502952, 0.0255664121359587, 0.0175123289227486, 0.0118824206292629, -0.0187442861497402, 0.0235528908669949, -0.00993513409048319, 0.0271030459553003, -0.0234601628035307, 0.00522256875410676, 0.00528880301862955, -0.0124719049781561, -0.00543782999739051, 0.030361769720912, -0.000824616116005927, -0.0193006526678801, -0.0197113063186407, 0.0266923923045397, -0.0085574621334672, 0.0216188505291939, -0.0217778142541647, -0.0100808488205075, -0.011908913962543, -0.0204398818314075, -0.00967682059854269, -0.0450392737984657, -0.0103722801432014, 0.0262684933841228, -0.0131938578560948, -0.0105643589049578, -0.0332495830953121, -0.0392106622457504, 0.0156047837808728, 0.137979134917259, 0.0215526167303324, -0.00709368567913771, 0.0175653174519539, 0.00860382616519928, -0.00970993749797344, -0.015353093855083, -0.0240827649831772, 0.00745797390118241, -0.0129487914964557, 0.0190887041389942, -0.00591802829876542, 0.00525568565353751, -0.00223374925553799, 0.00385483191348612, 0.0386542938649654, 0.00688173621892929, -0.0115578724071383, -0.015353093855083, -0.0196450706571341, -0.00976954866200686, -0.0155385490506887, 0.0138694467023015, 0.0154988085851073, -0.00195556553080678, -0.00321401585824788, 0.0201219581067562, 0.00963708013296127, 0.00141658447682858, -0.0106438398361206, -0.0118360565975308, 0.0269838236272335, -0.00413632765412331, 0.0230495110154152, -0.00915357004851103, 0.00110776745714247, 0.00645121373236179, -0.0334350392222404, 0.00369918160140514, 0.0142271118238568, 0.0100278621539474, 0.0210757311433554, 0.00941188354045153, -0.010875659994781, 0.0245464034378529, -0.00367931136861444, -0.0216320976614952, -0.00996162742376328, -0.00387801392935216, -0.00789511948823929, 0.0213009268045425, -0.00831239577382803, -0.0353425815701485, 0.00499406084418297, -0.00285966275259852, 0.0365083068609238, 0.00331502291373909, 0.0060968603938818, -0.00144721788819879, -0.00438470579683781, -0.00296398159116507, -0.012922297231853, -0.00423899060115218, 0.00610348396003246, 0.00361307710409164, -0.00898798462003469, -0.0240297764539719, 0.00723277730867267, -0.0167572591453791, 0.000897473772056401, -0.0047953580506146, -0.0112929353490472, -0.0260300505906343, 0.00123609625734389, 0.0203868951648474, 0.0187310390174389, 0.0176050569862127, 0.0175653174519539, 0.0121142398566008, -0.0204398818314075, 0.000734372006263584, -0.0489868335425854, -0.0268116146326065, -0.0150351691991091, -0.00190920161549002, -0.0238973088562489, -0.00911382958292961, -0.0108690364286304, -0.0164260882884264, 0.0362433679401875, 0.00242086104117334, 0.00376872741617262, 0.00683537218719721, -0.0175653174519539, 0.00520269852131605, 0.0178170073777437, 0.0275799315422773, 0.00960396323353052, -0.0178434997797012, 0.00860382616519928, -0.00425223726779222, -0.0170221962034702, -0.0164393354207277, 0.0174858365207911, 0.00315606081858277, -0.0243212077766657, 0.00996162742376328, 0.0133859375491738, -0.0155782904475927, -0.00323885376565158, 0.0272885020822287, -0.0235263966023922, 0.00598426256328821, 0.0171414185315371, 0.00485828053206205, 0.00939201284199953, -0.00142320792656392, 0.0154855623841286, 0.00446749851107597, -0.00798784755170345, 0.0152206253260374, -0.0175653174519539, 0.0294874776154757, 0.0167440120130777, -0.00613660085946321, 0.00892837345600128, 0.00497087882831693, -0.0344417989253998, -0.00133710342925042, 0.0104650072753429, 0.00100427644792944, 0.0351571254432201, -0.00466951308771968, -0.00608030194416642, 0.000960396253503859, -0.0183733738958836, -0.00843824073672295, 0.0239635426551104, -0.0221884660422802, 0.00825940817594528, -0.00837200600653887, 0.000647025590296835, 0.00726589467376471, -0.0580741688609123, 0.0207842998206615, -0.0385218262672424, 0.0282422732561827, 0.00315771671012044, -0.000808885495644063, 0.00781563855707645, -0.0026179077103734, -0.00550737604498863, -0.00921980384737253, 0.00774940429255366, -0.00434165354818106, -0.0100808488205075, -0.00119056017138064, -0.0316334664821625, 0.0264804437756538, 0.0178832411766052, 0.0216718390583992, -0.023128991946578, -0.0173931084573269, 0.0143993208184838, 0.0269705764949322, -0.0078686261549592, 0.0155782904475927, 0.00963045656681061, -0.0154723152518272, 0.0120943700894713, 0.00803421158343554, 0.00391113106161356, -0.0147967264056206, 0.0164658278226852, 0.0214598886668682, 0.0281362999230623, -0.0268646012991667, -0.00622601713985205, -0.0198835153132677, -0.0154325747862458, -0.0136972377076745, -0.00919993408024311, -0.007246024440974, 0.003278594231233, -0.014147630892694, -0.0176183041185141, 0.0272355135530233, -0.00366275268606842, 0.0312360618263483, -0.0174328479915857, 0.0246921200305223, -0.0226653516292572, 0.0352631025016308, -0.00749771436676383, -0.0124719049781561, -0.0142800994217396, -0.0237250998616219, -0.0130348959937692, 0.000332413008436561, 0.0166777782142162, 0.0299643632024527, -0.0110015049576759, -0.00488146254792809, -0.00101917912252247, 0.00148778629954904, 0.0158299803733826, -0.0294344909489155, 0.00456684967502952, 0.0209565088152885, -0.0203339066356421, 0.0139489276334643, -0.0161743983626366, -0.0229037962853909, -0.058180145919323, 0.0199629962444305, 0.000843244488351047, -0.00249703042209148, 0.0172208994626999, -0.00140747730620205, -0.0313950218260288, -0.0204928703606129, -0.026400962844491, -0.0116174835711718, -0.0168367400765419, 0.0266658999025822, 0.0119022903963923, -0.00298385182395577, -0.0225196368992329, 0.00890850368887186, -0.00195722142234445, 0.0021873852238059, 0.0161743983626366, 0.0106637105345726, 0.00759706553071737, 0.00137932773213834, 0.00516626983880997, 0.0312625542283058, -0.00521925697103143, -0.0606175623834133, 0.0175785627216101, 0.0215526167303324, -0.00648764241486788, -0.00518614007160068, -0.0134124308824539, 0.022228205576539, 0.00824616104364395, -0.00505698332563043, 0.00565971480682492, -0.0149954287335277, -0.0120943700894713, -0.0176447983831167, 0.0174990817904472, -0.0153001062572002, 0.00919331051409245, -0.0189827289432287, -0.0211817063391209, -0.00517620472237468, -0.0166645310819149, -0.0172208994626999, 0.0015672673471272, -0.0250497851520777, 0.0323752909898758, -0.00477548781782389, 0.0292490348219872, 0.00765667669475079, -0.00247384840622544, -0.0212611872702837, -0.013631003908813, 0.0106703341007233, 0.0212876796722412, -0.0348392017185688, -0.0161743983626366, -0.0116506004706025, 0.0160816702991724, 0.0160949174314737, -0.0256193988025188, -0.0117764454334974, -0.0108160488307476, -0.00497419061139226, 0.0022734897211194, 0.0207180660218, -0.0197510458528996, -0.0046132137067616, -0.0271295383572578, 0.0120678758248687, -0.0107763083651662, 0.000719469273462892, -0.00463308393955231, 0.0353425815701485, 0.00809382274746895, 0.00193569529801607, 0.0112664420157671, 0.00233972398564219, 0.0109485173597932, -0.00976292509585619, -0.00928603857755661, -0.00542127154767513, 0.00865681376308203, -0.0120480060577393, 0.0311300866305828, -0.0108028026297688, 0.0116506004706025, -0.00766992336139083, -0.02244015596807, -0.0190224703401327, -0.0229965224862099, 0.00336801051162183, -0.0110346218571067, -0.0189429894089699, -0.0141078904271126, 0.0188105199486017, -0.0167307648807764, -0.000216503132833168, -0.0280038304626942, 0.00122119358275086, 0.0153001062572002, 0.00205988436937332, -0.00344086810946465, -0.0204796232283115, 0.0407208018004894, -0.0130084017291665, 0.000481440045405179, 0.0131210004910827, -0.0310770981013775, 0.00543451821431518, -0.00496094347909093, 0.00599088566377759, 0.0218175537884235, -0.0204001422971487, 0.00323719787411392, -0.00739173963665962, 0.00812031608074903, -0.0379124693572521, -0.010014615021646, 0.0139224343001842, -0.000146439735544845, -0.00137353222817183, 0.00380846811458468, -0.00642471993342042, -0.00704732164740562, 0.0203868951648474, 0.019340394064784, 0.0179494749754667, 0.0127235949039459, -0.0221222322434187, -0.0186780523508787, -0.0222017131745815, 0.0109750116243958, -0.0206120908260345, -0.0105776060372591, -0.00755070196464658, 0.0470262989401817, 0.0104915015399456, -0.00648101884871721, -0.00904759485274553, -0.0057524424046278, -0.0376210398972034, -0.0417805500328541, -0.00868330709636211, 0.0125911263749003, 0.0237383469939232, 0.00531860813498497, 0.0221752189099789, 0.0171281713992357, -0.000820890418253839, 0.0448273234069347, -0.0116108600050211, -0.00554711651057005, 0.0236588660627604, -0.0310241114348173, 0.0347597226500511, 0.0384158529341221, -0.0167572591453791, 0.0110743623226881, 0.0102596813812852, 0.00757719529792666, 0.0139489276334643, 0.0168102458119392, -0.0172208994626999, -0.00780901545658708, 0.000775768363382667, 0.00143231509719044, 0.0100543554872274, 0.00668303342536092, -0.003795221215114, -0.0216585919260979, -0.0118360565975308, 0.0439530313014984, -0.0140946432948112, -0.0076964171603322, -0.0139356814324856, -0.00292424112558365, 0.0114254038780928, 0.00986227672547102, 0.00899460818618536, 0.0166777782142162, 0.0252087470144033, -0.0214333962649107, 0.0248378347605467, 0.021367160603404, -0.00459003169089556, 0.0128759332001209, 0.00937876664102077, -0.0181614253669977, -0.0113392993807793, 0.00425886083394289, 0.0142800994217396, 0.0173268727958202, -0.00684199575334787, -0.0247716009616852, 0.027394475415349, -4.1939718357753e-05, 0.00168234936427325, -0.0198702681809664, -0.000521594542078674, -0.00278183748014271, -0.00897473748773336, -0.0118493027985096, 0.0171546638011932, 0.00950461160391569, -0.012253331951797, -0.0138429533690214, -0.0142006184905767, -0.0174063537269831, -0.00679563172161579, -0.00734537560492754, -0.0149689354002476, -0.00682874862104654, 0.00347067345865071, 0.0118559263646603, -0.0140549028292298, -0.00269738887436688, -0.00888863299041986, 0.000784875592216849, 0.0130481421947479, 0.00630549853667617, 0.236111775040627, 0.00813356321305037, 0.00581867666915059, 0.0276859067380428, 0.00338788074441254, -0.00224699615500867, 0.0245993919670582, 0.00292092934250832, -0.0105047486722469, -0.00418931478634477, -0.0302028078585863, -0.000125120597658679, -0.0333025678992271, 0.0044509400613606, -0.00432178331539035, -0.0285072103142738, -0.0533847846090794, -0.00487815076485276, -0.0311300866305828, -0.00461652548983693, 0.00207644305191934, 0.0169294681400061, 0.00827265530824661, -0.024122504517436, 0.0281627923250198, 0.0264274571090937, 0.000875947647728026, 0.019724553450942, 0.0210889782756567, 0.00411976873874664, -0.0250497851520777, -0.000519524735864252, -0.00723277730867267, 0.0190224703401327, 0.000668137741740793, -0.00765005312860012, -0.00159541692119092, -0.0247980933636427, -0.0240165311843157, -0.00754407839849591, 0.00325044454075396, 0.0208637807518244, -0.00112929358147085, -0.00972980819642544, 0.0189164951443672, 0.053967647254467, -0.0221752189099789, 0.000462397700175643, 0.0088820094242692, 0.010339162312448, -0.0347332283854485, -0.00262784282676876, -0.00052780396072194, 0.0355015434324741, 0.00461652548983693, -0.0047291237860918, 0.0196715649217367, -0.000203566756681539, -0.0147172454744577, 0.0233939290046692, 0.0170486904680729, 0.0197377987205982, -0.00600413279607892, 0.0193933807313442, 0.00171049893833697, 0.0336734801530838, -0.00990201719105244, 0.0237118527293205, 0.0248245876282454, -0.022267946973443, -0.00175023940391839, 0.000551399949472398, -0.00163432955741882, 0.0201749447733164, -0.0246258843690157, -0.000454946333775297, 0.0320573672652245, 0.0289046168327332, 0.00108044582884759, 0.00286131864413619, -0.0137369781732559, -0.0254339426755905, -0.00615315977483988, -0.00840512290596962, 0.00477879960089922, 0.00684199575334787, 0.0086236959323287, 0.0155915366485715, -0.0314745046198368, 0.0186515580862761, 0.00942513067275286, -0.0112863117828965, -0.000282116408925503, -0.00845811050385237, -0.00280005182139575, 0.00629556318745017, 0.0134256780147552, 0.00591802829876542, -0.0135184051468968, 0.0170751828700304, 0.000956256641075015, 0.0551068745553493, 0.0291695538908243, -0.00890850368887186, -0.00237118522636592, -0.00267751864157617, 0.00252683577127755, 0.0157107580453157, 0.0151941310614347, -0.0293550081551075, -0.00876941159367561, -0.0208637807518244, -0.000671035493724048, 0.00873629469424486, -0.0130481421947479, 0.0127964522689581, 0.0159359555691481, -0.01869129948318, 0.00413632765412331, 0.013975421898067, -0.00300868973135948, -0.00764342956244946, -0.00947811733931303, 0.00415288610383868, -0.00129405118059367, -0.0311565808951855, -0.00859057903289795, -0.00214930064976215, -0.00587166426703334, -0.0274209696799517, -7.89118712418713e-05, -0.0154193276539445, 0.0176845379173756, 0.000254794780630618, -0.0128958038985729, -0.0111472206190228, 0.0165718030184507, 0.0102596813812852, -0.0129819083958864, 0.0212876796722412, -0.0176580455154181, -0.00114668009337038, -0.0172473918646574, 0.00237615290097892, 0.00773615762591362, -0.0117433285340667, 0.0109948813915253, -0.0123593062162399, -0.0140681499615312, -0.0190622098743916, -0.0287456549704075, 0.00347398524172604, 0.00430853618308902, -0.0242152325809002, 0.00708706211298704, -0.00828590150922537, -0.0494107343256474, -0.00914694648236036, 0.00259803747758269, 0.0279243495315313, -0.0405883342027664, 0.0120082655921578, 0.028295261785388, -0.0174063537269831, 0.00257319957017899, -0.003278594231233, -0.167228177189827, 0.0137899657711387, 0.025672385469079, -0.0251160189509392, 0.00959071610122919, -0.0147834792733192, 0.0266526527702808, -0.00680225482210517, -0.00968344416469336, 0.00634192721918225, 0.0156975109130144, 0.0181481782346964, -0.053623229265213, 0.0128891803324223, 0.00259969336912036, 0.012425540946424, -0.02274483256042, 0.0159227084368467, 0.000200151553144678, 0.0085574621334672, 0.00996162742376328, -0.0232084728777409, -0.000958740420173854, -0.0219765156507492, 0.0119155375286937, -0.0318189226090908, -0.00354684283956885, 0.0164525825530291, -0.00467613618820906, -0.027262007817626, -0.00911382958292961, -0.00221056723967195, 0.00814018677920103, 0.00101917912252247, 0.00717316661030054, 0.00184296735096723, 0.000829169701319188, -0.0156710185110569, -0.025367708876729, 0.0158697199076414, 0.0379654578864574, 0.0220427513122559, 0.019380135461688, 0.000501724251080304, -0.00330343213863671, 0.0197377987205982, 0.00194894208107144, -0.00856408569961786, -0.00392106641083956, -0.0253809560090303, 0.00596770364791155, -0.00787524972110987, -0.0285337045788765, 0.000291016622213647, 0.0338324420154095, 0.0160684231668711, -0.0211154706776142, 0.00076955888653174, -0.00608030194416642, -0.00993513409048319, 0.0231157448142767, -0.00134538277052343, 0.0336999744176865, -0.00511659402400255, -0.00045577427954413, 0.00652407109737396, -0.00234469166025519, 0.0056663379073143, -0.00940525997430086, 0.0125315152108669, -0.0116241071373224, -0.00817992724478245, -0.0214201491326094, -0.0396610535681248, 0.00442444626241922, -0.00396742997691035, -0.0231024976819754, 0.0108425430953503, 0.00115413137245923, -0.00570276705548167, 0.0150351691991091, 0.0143728274852037, -0.0118294330313802, 0.0153795871883631, 0.0134919118136168, -0.00464301928877831, 0.0174990817904472, 0.0283217541873455, -0.0121937207877636, -0.0249173156917095, 0.030838655307889, -0.0316069722175598, -0.0235396437346935, -0.0138297062367201, 0.000813025108072907, 0.0143065927550197, 0.0211154706776142, 0.0166645310819149, 0.00783550925552845, -0.0202676728367805, 0.0181481782346964, -0.019896762445569, -0.0227978210896254, 0.0164790749549866, 0.0186780523508787, 0.0343093276023865, 0.0133329499512911, 0.0145317893475294, 0.027950843796134, -0.00356340128928423, -0.0257253739982843, 0.018174672499299, 0.00464301928877831, 0.0221619717776775, 0.00538153108209372, 0.00529542658478022, -0.0188900008797646, 0.000117565752589144, 0.00176679797004908, 0.00899460818618536, 0.0346007607877254, 0.0155120557174087, 0.011200207285583, -0.0137767186388373, 0.0162141378968954, 0.00636179745197296, -0.117102108895779, -0.019896762445569, 0.00185787002556026, 0.0156710185110569, -0.0181879177689552, 0.0341503657400608, -0.0282687675207853, 0.0353160910308361, -0.0214598886668682, 0.0145450364798307, -0.00908733624964952, -0.0191814322024584, -0.0196583177894354, -0.000155753921717405, 0.0265599247068167, -0.00157803040929139, -0.0400584600865841, -0.0121341105550528, -0.0135250287130475, 0.0211287178099155, 0.00457347324118018, -0.00700758118182421, 3.51351882272866e-05, -0.00952448137104511, 0.00322395097464323, -0.00109866017010063, -0.0193006526678801, 0.0160286836326122, 0.00395418331027031, -0.00197212398052216, -0.0363228507339954, -0.000214226325624622, 0.0387072823941708, -0.0252882279455662, 0.00422574346885085, 0.000439215713413432, -0.022400414571166, -0.00266758352518082, 0.0133925601840019, -0.0241489987820387, 0.00959733966737986, -0.0060107558965683, 0.0153398467227817, -0.0377535074949265, -0.00737849297001958, -0.00954435206949711, 0.00674926768988371, 0.0161876454949379, 0.030706187710166, -0.0182938929647207, -0.0416215881705284, 0.0158167332410812, -0.0181216839700937, -0.0216983333230019, 0.0101338364183903, 0.00840512290596962, -0.0152736129239202, -0.00320408074185252, -0.0213406682014465, 0.00959733966737986, -0.0155782904475927, 0.00205657281912863, 0.00152918265666813, 0.0188105199486017, 0.010014615021646, -0.0151146501302719, -0.0123593062162399, -0.00951123517006636, -0.00837862957268953, -0.0328786708414555, -0.0116108600050211, 0.00626244628801942, -0.0144390612840652, 0.025539917871356, -0.0234469156712294, 0.00685524241998792, -0.00898798462003469, -0.0205723512917757, 0.0338589362800121, -0.0191151984035969, -0.0280038304626942, -0.0236588660627604, 0.00763018289580941, -0.0123526835814118, 0.0244271829724312, 0.00988214649260044, -0.00227680150419474, -0.00949798803776503, 0.0129819083958864, 0.00827265530824661, 0.0134058073163033, 0.0123725533485413, 0.00607699016109109, -0.0132534690201283, -0.00666647497564554, 0.00967682059854269, 0.00279839616268873, -0.0153663400560617, 0.0218043066561222, 0.0364288240671158, -0.0297259204089642, -0.00395418331027031, -0.0550538897514343, 0.0178434997797012, -0.0204796232283115, -0.0135250287130475, -0.0145450364798307, 0.000799778266809881, -0.00428535463288426, 0.00940525997430086, 0.00592133961617947, 0.0197377987205982, -0.022572623565793, 0.026745380833745, 0.0184528548270464, 0.0104120206087828, -0.0308651495724916, 0.00919993408024311, 0.0387337766587734, 0.00478211091831326, 0.0236323717981577, 0.000496342719998211, 0.00722615420818329, -0.0146377636119723, -0.00476224068552256, 0.00712680257856846, -0.0394226126372814, -0.000123775214888155, -0.0248775761574507, 0.0156312771141529, -0.00310472934506834, -0.0149027006700635, -0.00435821199789643, 0.000855249469168484, -0.00061266659758985, 0.00220228801481426, 0.0155517961829901, -0.00941188354045153, -0.00133296381682158, 0.0085375914350152, 0.0189694818109274, 0.0192211717367172, -0.0066432929597795, -0.0141343837603927, -0.00157720246352255, -0.0222149603068829, -0.00729901157319546, -0.00904759485274553, -0.0038813257124275, 0.00456684967502952, 0.0165188163518906, 0.00784875545650721, 0.00360645353794098, 0.0162273850291967, -0.0214201491326094, -0.000643299892544746, 0.0112730655819178, -0.0402174219489098, 0.0180554501712322, 0.0181349311023951, -0.0171016771346331, -0.0273414887487888, 0.0421779565513134, 0.00369586981832981, 0.00675257947295904, -0.0103325396776199, 0.019896762445569, -0.00482847495004535, -0.00250034197233617, 0.0076964171603322, 0.00638829125091434, 0.000364495237590745, -0.0279773380607367, -0.00373229873366654, -0.00893499702215195, 0.0013950583525002, 0.00404028780758381, -0.00511328224092722, -0.00912045314908028, 0.00978941842913628, 0.00945824757218361, 0.0165188163518906, 0.00336966617032886, -0.0145715298131108, -0.0173798613250256, 0.0255531650036573, -0.00517289293929935, 0.0193536411970854, -0.00483178673312068, 0.0137502253055573, -0.0175653174519539, -0.00333489337936044, -0.0176845379173756, 0.00331667880527675, -0.012769958935678, 0.0104848779737949, 0.0140284094959497, 0.00765667669475079, 0.00083703501150012, 0.0123791769146919, -0.0123195657506585, -0.0169692095369101, 0.0219102818518877, -0.0312625542283058, 0.00739836320281029, -0.030149819329381, -0.0123858004808426, -0.00799447111785412, -0.0182409062981606, 0.00237615290097892, -0.00748446770012379, 0.0293815024197102, 0.00890850368887186, 0.0192874073982239, 0.00859057903289795, 0.000976126932073385, -0.0116638476029038, 0.00759706553071737, 0.00605711992830038, -0.00927279144525528, -0.0035037905909121, 0.0505499616265297, 0.0172076523303986, 0.000737683672923595, 0.00880915205925703, -0.00591802829876542, 0.0356869995594025, 0.00145880877971649, 0.00113840075209737, -0.00822629127651453, 0.0247848480939865, 0.0297789089381695, 0.000579135492444038, 0.00727251823991537, -0.0275269448757172, -0.00154325750190765, -0.0219500232487917, -0.0192874073982239, -0.000350627437001094, 0.00334648438729346, -0.0162008926272392, 0.0343358218669891, 0.0436351075768471, -0.026016803458333, 0.0157769918441772, 0.00839187670499086, 0.0397935248911381, -0.00413301587104797, -0.000161963384016417, -0.00756394863128662, -0.0106703341007233, 0.0315539836883545, -0.00569283170625567, 0.00792823731899261, -0.00601406767964363, 0.000962880090810359, -0.0104782544076443, -0.0276859067380428, -0.00467613618820906, -0.0237648412585258, 0.012061252258718, 0.00111107912380248, -0.00574250752106309, 0.0144523084163666, -0.000571684155147523, -0.0182673987001181, -0.0309976171702147, 0.0262552481144667, -0.0361638888716698, -0.0209565088152885, -0.00622601713985205, 0.0276594124734402, 0.00793485995382071, 0.0127169713377953, -0.00251358887180686, 0.00870317686349154, 0.0134521713480353, 0.0238310750573874, 0.0420719794929028, 0.00924629811197519, 0.0018810520414263, 0.0049013327807188, 0.0102464351803064, -0.025327967479825, -0.0465759076178074, 0.0100874723866582, 0.00442113447934389, -0.00648764241486788, -0.0141873713582754, -0.0144788017496467],id:"373f6842f0d8f57188f2b422a269989e",source:"state_of_union.txt",text:"We can do all this while keeping lit the torch of liberty that has led generations of immigrants to this land—my forefathers and so many of yours.
Provide a pathway to citizenship for Dreamers, those on temporary status, farm workers, and essential workers.
Revise our laws so businesses have the workers they need and families don’t wait decades to reunite.
It’s not only the right thing to do—it’s the economically smart thing to do.
That’s why immigration reform is supported by everyone from labor unions to religious leaders to the U.S. Chamber of Commerce.
Let’s get it done once and for all.
Advancing liberty and justice also requires protecting the rights of women.
The constitutional right affirmed in Roe v. Wade—standing precedent for half a century—is under attack as never before.
If we want to go forward—not backward—we must protect access to health care. Preserve a woman’s right to choose. And let’s continue to advance maternal health care in America."})
(:Chunk{embedding:[-0.0234966222196817, -0.0110952565446496, -0.00875625666230917, -0.00943596567958593, 0.0173259265720844, -0.00798325426876545, -0.00340687693096697, -0.00639726500958204, -0.031613152474165, 0.00921605993062258, 0.0309734251350164, -0.00899615418165922, -0.00643724808469415, 0.00304036680608988, 0.0138607416301966, 0.0187786389142275, 0.0328659489750862, -0.00936932768672705, -0.00389166967943311, -0.0153134530410171, -0.00631396751850843, -0.00846304837614298, 0.0225503593683243, 0.00424818368628621, -0.0313732549548149, 0.00211909413337708, 0.0312399789690971, -0.0185920521616936, 0.0102622797712684, -0.0305469408631325, -0.00305869244039059, -0.00324194738641381, -0.025362491607666, -0.00345185771584511, -0.0209776982665062, -0.0158465597778559, -0.0139940176159143, -0.0172592885792255, 0.0252158865332603, -0.0381703488528728, 0.0343853011727333, -0.0126879094168544, 0.0204845760017633, 0.00729688070714474, -0.0222838073968887, -0.00434814114123583, -0.034331988543272, -0.0382769703865051, -0.0210709925740957, 0.021110974252224, 0.0154867125675082, 0.00181755633093417, -0.0333190895617008, -0.0482193864881992, 0.00379171245731413, -0.0038416909519583, 0.0111085847020149, 0.00254224659875035, 0.00180422863923013, 0.00826979801058769, 0.00257723149843514, 0.0162463877350092, -0.012767874635756, 0.00694369804114103, -0.00936266407370567, -0.00220905570313334, -0.0334523655474186, 0.023416655138135, 0.0333990566432476, 0.0127412201836705, 0.0534704737365246, 0.0121414763852954, -0.00360512547194958, 0.00934267230331898, 0.0253891460597515, -0.00153184519149363, -0.0225903429090977, -0.0199114885181189, -0.00394831225275993, -0.0261888038367033, 0.0203513000160456, -0.0138607416301966, -0.0178190488368273, -0.0161664225161076, 0.00459470227360725, 0.0114884218201041, -0.0265886336565018, 0.00436480063945055, -0.00610405718907714, -0.0246028155088425, 0.00203579640947282, 0.0228302404284477, 0.0151135390624404, 0.0243495907634497, -0.00218906416557729, 0.00600076792761683, -0.00176424579694867, 0.0375839322805405, 0.0170593746006489, -0.0441944412887096, 0.048405971378088, -0.0145671060308814, -0.0216973908245564, -0.0155666787177324, -0.0335056781768799, -0.00367509550414979, -0.0244295559823513, 0.00518445018678904, 0.0174858588725328, 0.0202046949416399, -0.00971584673970938, -0.00255890609696507, 0.0191917959600687, -0.0140073448419571, -0.000599743623752147, -0.00834309961646795, -0.0150469010695815, 0.0156466439366341, -0.00803656410425901, -0.00250226352363825, 0.0276415161788464, 0.012014864012599, 0.0241363476961851, -0.00577419809997082, -0.00147936760913581, -0.00616736337542534, -0.0247094370424747, -0.00287043955177069, 0.0045647150836885, -0.0051278080791235, 0.043501403182745, 0.00898282695561647, 0.00315365171991289, -0.0233900006860495, -0.0101223392412066, 0.00118032877799124, -0.00781665835529566, 0.000373798538930714, -0.000997073715552688, -0.0126412622630596, 0.00763007160276175, 0.0159798357635736, -0.0240563824772835, -0.00722357863560319, 0.00587082374840975, 0.00571089191362262, 0.046966589987278, -0.00101040140725672, 0.0226436536759138, 0.0104222111403942, -0.00141689425799996, 0.0148469861596823, 0.0144071746617556, 0.0160997845232487, -0.000714694440830499, -0.0121281482279301, -0.0332124680280685, 0.0114284474402666, 0.0119149060919881, -0.00437146471813321, -0.013101065531373, -0.0161930769681931, 0.0058841509744525, 0.00436480063945055, -0.00052644161041826, 0.0178856868296862, -0.0098357954993844, 0.00204912410117686, -0.017419220879674, -0.00431482214480639, 0.0260955113917589, 0.0525908507406712, -0.0324927754700184, 0.0191251579672098, -0.0111552309244871, 0.0249626617878675, -0.000150768886669539, 0.0145271234214306, -0.0430216081440449, 0.0191917959600687, 0.00451806839555502, 0.00641725677996874, 0.0180189628154039, 0.0331325009465218, -0.0183388274163008, -0.00233233626931906, 0.0184721034020185, 0.00279713748022914, -0.0180056355893612, -0.013647498562932, 0.0162197332829237, 0.0439012311398983, 0.0196449346840382, -0.0130544193089008, -0.607740163803101, -0.0288676582276821, 0.017712427303195, -0.0173392537981272, 0.00925604347139597, -0.00940264668315649, -0.00582750886678696, 0.0332657806575298, -0.0315598398447037, 0.0171260125935078, -0.0176191348582506, 0.0212042685598135, 0.00857633352279663, -0.0282279327511787, -0.00723024224862456, -0.0232567247003317, 0.00648389477282763, -0.0223504453897476, 0.0111618945375085, -0.0172726158052683, 0.00331191741861403, -0.00148020056076348, 0.00553763285279274, -0.0126212714239955, 0.0268018748611212, 0.0024806063156575, 0.00632063113152981, -0.0157665926963091, -0.00904946494847536, -0.00651721376925707, -0.0245894882827997, 0.0313466005027294, -0.0227769296616316, 0.00500119524076581, 0.0581618025898933, -0.0148736415430903, -0.0176457893103361, 0.0161530952900648, 0.00841640215367079, 0.0182855166494846, -0.00244728708639741, -0.0149935903027654, -0.00497120805084705, -0.000992908840999007, 0.00266885897144675, 0.00828312523663044, 0.0233900006860495, -0.00257223378866911, 0.0215241312980652, 0.0183521546423435, -0.0230834651738405, -0.000292375014396384, 0.00668714102357626, 0.0102422880008817, -0.0143538638949394, -0.00236232345923781, 0.00677043898031116, -0.0303603541105986, 0.0126012796536088, 0.0027421610429883, -0.00924937892705202, 0.00566091341897845, -0.0133742820471525, -0.00383502710610628, -0.026881841942668, -0.0120215276256204, -0.0112152053043246, -0.00122864136938006, -0.0025439125020057, 0.00555762415751815, -0.0204312652349472, 0.0154200745746493, -0.00664049433544278, -0.00916941370815039, 0.0156199894845486, 0.0349983721971512, 0.00647723115980625, -0.0214308388531208, -0.008582997135818, -0.003411874640733, 0.00134359230287373, -0.0179923083633184, -0.00826979801058769, -0.000558511237613857, 0.0433414727449417, 0.0123547185212374, -0.0180456191301346, 0.0154600571841002, 0.0286277607083321, 0.00368175935000181, 0.026082182303071, 0.00247394246980548, 0.00423152418807149, -0.0404360480606556, -0.00462468946352601, 0.000720525335054845, 0.0124480118975043, 0.0181255843490362, 0.0224970486015081, 0.00146020913962275, -0.00835642777383327, -0.00306868809275329, 0.00938931945711374, -0.00311533478088677, -0.00470132334157825, 0.00911610294133425, -0.0170993562787771, 0.0121947871521115, 0.0151268662884831, -0.0184587761759758, 0.00431482214480639, -0.0431282296776772, -0.0272683426737785, -0.0193117447197437, 0.00656386045739055, -0.0393165238201618, -0.0156866274774075, 0.00764339929446578, 0.0130211003124714, -0.000972084410022944, 0.0127945300191641, 0.00914275832474232, 0.0100623648613691, -0.0433681271970272, 0.0155666787177324, 0.0109619805589318, 0.0192317776381969, -0.0277481377124786, -0.0216440800577402, 0.00754344183951616, 0.0103555731475353, -0.0167794935405254, 0.0191518124192953, 0.00621067825704813, 0.0148603143170476, -0.00717026786878705, 0.00906279217451811, -0.0127278920263052, 0.00824314262717962, -0.0101956417784095, -0.0129611259326339, 0.00214908132329583, -0.00458137458190322, 0.0120615102350712, -0.0184054654091597, -0.0264287013560534, -0.0142205869778991, -0.00673045590519905, -0.0272150319069624, -0.010222296230495, -1.82051076080825e-06, -0.0105954706668854, -0.0202180240303278, 0.00884955003857613, 0.00539102870970964, -0.00669713690876961, 0.00273882923647761, 0.0110619375482202, -0.0168594587594271, 1.91064154932974e-05, 0.0124946581199765, 0.0334523655474186, -0.00412823539227247, -0.00506783369928598, -0.00761674391105771, 0.00465800892561674, 0.00571755552664399, -0.0031403242610395, 0.00741682946681976, -0.0214041825383902, 0.0134809035807848, -0.0335056781768799, 0.00622067414224148, -0.015833230689168, 0.022323789075017, -0.0109952995553613, -0.010588807053864, 0.00134109333157539, 0.0183254983276129, 0.0344386100769043, 0.01343425642699, 0.00698368111625314, -0.025362491607666, 0.00825647078454494, 0.0356380976736546, 0.00691704312339425, -0.00184087967500091, 0.0230967923998833, 0.0165662504732609, 0.00928269792348146, -0.0155400233343244, 0.0145671060308814, -0.000774252344854176, 0.0126945730298758, -0.0111752226948738, 0.0244828667491674, -0.013320972211659, 0.0075567695312202, 0.0309467706829309, 0.00734352739527822, 0.0273749642074108, -0.0319863259792328, 0.0244162287563086, -0.00230068317614496, -0.0160198174417019, -0.0436080247163773, 0.0122347697615623, -0.0319863259792328, 0.0106687722727656, 0.020631181076169, -0.00653387326747179, -0.033239122480154, -0.0199114885181189, -0.0355048216879368, -0.00918274093419313, 0.00461136177182198, -0.00857633352279663, 0.0234699659049511, -0.0137141374871135, 0.0119548896327615, 0.0116683449596167, 0.00943596567958593, 0.00119698827620596, -0.00411490770056844, -0.0178457051515579, 0.0018941902089864, 0.0196049530059099, 0.0258289575576782, 0.000710529566276819, -0.0114417755976319, -0.00826979801058769, 0.00693037081509829, 0.0167661663144827, 0.0227502733469009, -0.00725023401901126, -0.0295340400189161, -0.00174258835613728, -0.0212709065526724, 0.00925604347139597, -0.0151135390624404, 0.0164729580283165, 0.00705031910911202, -0.000880456937011331, 0.00832977239042521, 0.0308134946972132, -0.000585166504606605, 0.0589614622294903, 0.0278814136981964, 0.00323361763730645, 0.00286710774526, 0.00803656410425901, 0.00376838911324739, 0.00348850875161588, 0.01146843098104, 0.0248960237950087, -0.0255624055862427, -0.0143671911209822, 0.0462468974292278, 0.0481660738587379, 0.0356914103031158, 0.00950926821678877, 0.021843995898962, -0.00398163124918938, 0.00346851721405983, 0.012134812772274, 0.00321529223583639, -0.0056509175337851, -0.00113118311855942, -0.0256956815719604, -0.0149935903027654, -0.0176857728511095, -0.0129278069362044, 0.0238564684987068, -0.0377438627183437, 0.00944263022392988, 0.0129744531586766, -0.0173259265720844, 0.0102023053914309, -0.00413823081180453, 0.0117016639560461, 0.00222904700785875, -0.0326527059078217, 0.0138074308633804, 0.0224970486015081, -0.0244562122970819, -0.00440145190805197, -0.00697701750323176, 0.011555059812963, -0.00811653025448322, 0.0193250719457865, -0.0140073448419571, 0.00743682077154517, 0.0147403655573726, 0.0117016639560461, 0.0155800059437752, -0.00219073006883264, 0.032945916056633, -0.00987577810883522, 0.00890952441841364, -0.0257489923387766, 0.00775002036243677, 0.0125013226643205, -0.0145271234214306, -0.00934933684766293, 0.0165529232472181, 0.00640059728175402, -0.0342520251870155, -0.0267352368682623, 0.0170193910598755, -0.0336656086146832, 0.0267752204090357, 0.00205911975353956, -0.0194316934794188, -0.00369175500236452, -0.0116483541205525, 0.0017742415657267, -0.0343586467206478, -0.0212709065526724, 0.0187120009213686, -0.0194450207054615, -0.00470465561375022, -0.0432081967592239, -0.028334554284811, 0.00947594922035933, 0.145324543118477, 0.00517445476725698, -0.00990909710526466, 0.00595078943297267, -0.0136008523404598, 0.0189518984407187, 0.00889619719237089, -0.0212842337787151, 0.00268218666315079, -0.0333723984658718, 0.00399162713438272, -0.00717026786878705, -0.00439145602285862, -0.0300671458244324, 0.00867629051208496, 0.0230034999549389, -0.00835642777383327, -0.0308401491492987, -0.0236432254314423, -0.0147403655573726, -0.0165129415690899, 0.00972251035273075, -0.011101920157671, 0.0321462564170361, 0.0117616383358836, 0.000318822043482214, 0.0302270781248808, 0.00555762415751815, 0.0179923083633184, -0.00687706004828215, -0.0470998659729958, 0.0220439098775387, 0.00778333935886621, 0.0185387413948774, -0.0271084103733301, -0.00902280956506729, -0.00259222509339452, -0.0064472439698875, 0.00484459567815065, -0.0155666787177324, 0.0335323326289654, 0.0341720581054688, 0.00315531785599887, -0.0134809035807848, -0.00883622281253338, -0.00611072080209851, -0.0203646272420883, 0.00738351000472903, 0.00612404849380255, -0.0104955127462745, 0.0151135390624404, -0.00311033707112074, -0.0296673178672791, -0.0106154615059495, -0.00700367242097855, 0.0192850884050131, -0.00205911975353956, -0.0068437410518527, -0.00727022532373667, -0.00553096877411008, 0.023723192512989, -0.00528107583522797, -0.0141939325258136, -0.0228835511952639, -0.00584416836500168, -0.00586749147623777, -0.026881841942668, 0.0106887640431523, -0.00965587235987186, -0.00695036211982369, -0.00675377948209643, -0.0350783355534077, -0.0156199894845486, 0.0119882086291909, 0.0200047809630632, 0.0125946160405874, 0.0422752611339092, 0.00796326249837875, 0.0113551458343863, -0.00910943932831287, -0.00119365635327995, -0.0360645838081837, 0.00461469404399395, -0.0166995283216238, -0.0008034065249376, -0.0180056355893612, 0.023230068385601, 0.00019033529679291, -0.0159398522228003, 0.0349983721971512, 0.00224570673890412, 0.0133676184341311, 0.0269351527094841, -0.025362491607666, -0.00263553997501731, 0.0159798357635736, -0.00116783403791487, 0.0137407928705215, -0.0128678325563669, 0.00635728240013123, 0.0088562136515975, -0.0247360914945602, -0.00778333935886621, -0.0094826128333807, -0.0044780857861042, -0.012348054908216, 0.0348650962114334, 0.0305469408631325, -0.00986911449581385, -0.00786330550909042, 0.0155266961082816, -0.0351583026349545, -0.0160198174417019, 0.0141672771424055, -0.000775085296481848, 0.0109486524015665, -0.00554096465930343, 0.00598410842940211, -0.0221771858632565, -0.0198315214365721, -0.0146070886403322, -0.0162863712757826, 0.00219239597208798, -0.00509782088920474, -0.00105621514376253, 0.00259722303599119, 0.012801194563508, -0.00417154980823398, 0.0106154615059495, 0.0151135390624404, -0.0164862852543592, 0.0348384417593479, 0.00402161432430148, 0.00864963605999947, -0.0208310950547457, 0.00521443737670779, -0.0212175957858562, 0.0286810714751482, -0.00299038831144571, -0.020138056948781, 0.00609406130388379, -0.0209243874996901, -0.00782998558133841, -0.045927032828331, -2.847740870493e-05, -0.0341987125575542, 0.00386834633536637, 0.00976249296218157, -0.0272683426737785, 0.0343053340911865, -0.00836309138685465, -0.0116683449596167, -0.00897616241127253, 0.00715027656406164, -0.0240030717104673, -0.00757676083594561, 0.00251559121534228, 0.000867962255142629, 0.000161389340064488, 0.00172093091532588, 0.0409691520035267, 0.00568090472370386, -0.0145404506474733, 0.0146337440237403, 0.0147137101739645, -0.00764339929446578, 0.0020507900044322, 0.00421486468985677, -0.00397163536399603, 0.008249806240201, 0.012887823395431, 0.00339021743275225, -0.0282812435179949, -0.0180856008082628, -0.0062373336404562, 0.0094826128333807, -0.0217373743653297, -0.00394164817407727, -0.0159665085375309, 0.00289542879909277, -0.00775668397545815, -0.0107287466526031, -0.0169927347451448, 0.0127145648002625, -0.0248826965689659, -0.00396830355748534, 0.0302004218101501, 0.0110752657055855, 0.0399562530219555, -0.0122614251449704, 0.0369175523519516, 0.00191084982361645, 0.016073128208518, 0.012468003667891, -0.0123347267508507, -0.0238031577318907, -0.0337722301483154, -0.00360512547194958, 0.00791661534458399, 0.00325694098137319, 0.0152867985889316, 0.00773669267073274, -0.0196449346840382, -0.0164729580283165, -0.00715694017708302, 0.0422752611339092, -0.0234033279120922, 0.0118349408730865, -0.000912943040020764, -0.0303070433437824, 0.0256157163530588, -0.00992908887565136, -0.0282279327511787, -0.0584283545613289, 0.00795659888535738, -0.0202180240303278, -0.00883622281253338, 0.0147936753928661, 0.0201513860374689, -0.0310000814497471, -0.0267618931829929, 0.00961588881909847, -0.00394164817407727, -0.0146737266331911, 0.000420237018261105, 0.0119415614753962, -0.000310075789457187, -0.025908924639225, -0.00734352739527822, -0.00053810328245163, -0.00170260551385581, 0.010255616158247, 0.012887823395431, -0.00910943932831287, 0.017712427303195, 0.0309201143682003, 0.0133076440542936, -0.0117216557264328, -0.0520844012498856, 0.0185120869427919, 0.00136025180108845, -0.0137541200965643, -0.0169927347451448, -0.00397829944267869, -0.0163263529539108, 0.0158065762370825, 0.00179256696719676, 0.00354515109211206, -0.00576087040826678, -0.00551764108240604, -0.0303070433437824, 0.0055476282723248, -0.0139407068490982, 0.00869628228247166, 0.0199248157441616, -0.0282545872032642, 0.00317364325746894, -0.0292141772806644, -0.00637061009183526, -0.0160331465303898, -0.0305735971778631, 0.0312666334211826, -0.0185120869427919, 0.0119882086291909, -0.0149269523099065, 0.0145404506474733, -0.00972251035273075, -0.00286377570591867, -0.000513113976921886, 0.0247094370424747, -0.045927032828331, 0.0112751796841621, 0.00277881207875907, 0.00306035834364593, 0.0235499329864979, 0.010435538366437, -0.0196182802319527, -0.0199781265109777, -0.0230168271809816, 0.00340021308511496, 0.0115017499774694, 0.0168994423002005, -0.0130544193089008, -0.0143938465043902, 0.0126745812594891, -0.0288410037755966, -0.00632063113152981, -0.00990243349224329, 0.0352382697165012, -0.00868295505642891, -0.00573088321834803, -0.00470132334157825, 0.00663716252893209, 0.0244428832083941, 0.0195249859243631, -0.00671379640698433, 0.0251359213143587, 0.011135240085423, -0.00844305753707886, -0.000710529566276819, -0.0106354532763362, 0.0228302404284477, -0.0320929475128651, -0.00184254569467157, -0.00844305753707886, -0.0103888921439648, 0.000728022132534534, 0.00543767539784312, -0.0215907692909241, -0.0185120869427919, 0.0117483111098409, 0.0210843198001385, 0.0068437410518527, -0.00144271657336503, -0.0114750945940614, -0.0230034999549389, 0.00616069976240396, -0.0131143936887383, -0.0396897010505199, 0.0302537325769663, -0.00205911975353956, 0.0135275507345796, -0.00450474070385098, 0.0115284053608775, -0.0102756069973111, -0.0106287896633148, 0.0087296012789011, 0.00761007983237505, -0.0254424568265676, 0.0229768436402082, 0.00102372898254544, 0.0134275928139687, -0.0129677895456553, -0.0031819730065763, 0.0308934599161148, 0.000123801248264499, -0.00828978978097439, 0.000854634621646255, 0.0242829527705908, 0.00757009722292423, -0.00468799564987421, 0.0254691112786531, 0.00696368981152773, 0.00825647078454494, -0.00320529635064304, -0.0213775280863047, -0.0117749664932489, 0.0033802215475589, -0.0324128083884716, -0.0137274647131562, -0.0112951714545488, 0.0336656086146832, 0.0210310090333223, -0.00110286183189601, -0.00490123825147748, -0.0107354102656245, -0.00536104151979089, -0.0284944847226143, -0.00860965251922607, 0.0145537778735161, 0.0324394665658474, 0.00256390403956175, 0.0114017920568585, 0.0415822230279446, 0.00873626489192247, 0.00823647901415825, -0.0348384417593479, -0.0309201143682003, 0.00240064039826393, -0.0358779951930046, 0.00734352739527822, 0.0145137952640653, 0.00456138327717781, -0.00501785473898053, -0.00734352739527822, 0.00290209264494479, -0.00534771382808685, 0.00839641038328409, 0.00921605993062258, -0.00611405307427049, 0.0057142237201333, 0.00604408280923963, 0.0150868836790323, 0.0131477126851678, 0.00215074722655118, -0.0393165238201618, 0.0030470306519419, 0.0156066613271832, 0.0110552739351988, -0.00469799153506756, -0.0116350259631872, 0.0212175957858562, -0.00701700011268258, 0.016073128208518, -0.0231501031666994, -0.00344519386999309, 0.00484459567815065, -0.00250226352363825, 0.0248293858021498, 0.0295073855668306, -0.0089561715722084, 0.0310000814497471, -0.0158199034631252, 0.00480461260303855, -0.0100756930187345, 0.0147936753928661, -0.0013977357884869, 0.00359179778024554, 0.00152851326856762, -0.00934267230331898, 0.0369442068040371, -0.0113551458343863, -0.0197648834437132, 0.00703032780438662, 0.00156016636174172, 0.00709030218422413, -0.00664382660761476, 0.00425817957147956, 0.0144071746617556, 0.00496454443782568, -0.0170060638338327, -0.0110952565446496, -0.0125346416607499, -0.0186720173805952, -0.00412157131358981, -0.0489124245941639, -0.00231401086784899, -0.00204579206183553, -0.0113884648308158, -0.00725023401901126, -0.00810986664146185, -0.0314798764884472, -0.0108220400288701, -0.00774335628375411, 0.0147270374000072, 0.0028271246701479, 0.25290521979332, -0.00828978978097439, 0.0161397662013769, -0.00837641954421997, -0.00886954180896282, -0.000505200703628361, 0.0310800466686487, -0.0119948722422123, 0.000711362576112151, 0.00827646162360907, -0.0198048669844866, -0.00478462129831314, 0.0133009804412723, 0.00297706061974168, 0.00347851286642253, -0.0243629179894924, -0.0527507811784744, 0.00626398902386427, -0.0138340862467885, 0.00238564680330455, 0.00703032780438662, 0.00691037904471159, 0.0275882054120302, -0.012008199468255, 0.00835642777383327, 0.0279080700129271, 0.00945595744997263, 0.00379837630316615, 0.0099624078720808, 0.00477129360660911, -0.0284145195037127, 0.00756343314424157, 0.0151535216718912, 7.47076483094133e-05, 0.0196582619100809, -0.0212442521005869, -0.00578752579167485, -0.0223504453897476, 0.0129144787788391, 0.0194850042462349, -0.00327193457633257, 0.0154733853414655, -0.00498786754906178, -0.027294997125864, 0.0139540350064635, 0.0315331853926182, -0.0079765897244215, -0.00903613679111004, 0.0170860290527344, 0.0273483078926802, -0.0439811982214451, -0.0156866274774075, -0.00211576209403574, 0.0422752611339092, -0.0134609118103981, 0.00526441633701324, 0.019045190885663, 0.0214308388531208, -0.0123147359117866, 0.0296939723193645, 0.0223504453897476, 0.0198848322033882, -0.0241096932440996, 0.0261088386178017, -0.00347518105991185, 0.0204312652349472, 0.00527441175654531, 0.0210176818072796, 0.042408537119627, -0.0360379256308079, -0.00340354489162564, -0.00261721457354724, -0.0084763765335083, 0.00176757771987468, -0.0169660802930593, -0.00162263971287757, 0.00366843165829778, 0.0269351527094841, 0.00502118654549122, 0.00798991788178682, -0.00486125517636538, -0.011128575541079, 0.020138056948781, -0.00184754352085292, 0.0104222111403942, -0.00173925643321127, 1.72972922882764e-05, 0.0118682598695159, -0.025122594088316, 0.00996907148510218, 0.00870961043983698, -0.0332924351096153, -0.00046938267769292, -0.0016851129475981, -0.00986245088279247, 0.0122081143781543, -0.00803656410425901, -0.00552763696759939, -0.0174325481057167, 0.00665049022063613, -0.0112818432971835, 0.0267885476350784, 0.0244562122970819, -0.00196749228052795, 0.00761007983237505, -0.0142339151352644, -0.00125029881019145, -0.00154683867003769, 0.0109486524015665, -0.0397963188588619, 0.00633729062974453, -0.0037783847656101, -0.00500785931944847, -0.00490123825147748, -0.00916941370815039, 0.0117416474968195, 0.00683041336014867, -0.00168261397629976, 0.0190851744264364, 0.0164196472615004, -0.00597078073769808, -0.0327859856188297, -0.0102156326174736, 0.00964920874685049, 0.0218040123581886, -0.00415822258219123, -0.0137274647131562, -0.0141939325258136, 0.00508116092532873, -0.0344919227063656, 0.0193650554865599, -0.0139007242396474, 0.0152601432055235, -0.0271617211401463, -0.0314798764884472, -0.0061973505653441, -0.00176257977727801, 0.0139407068490982, -0.0269218236207962, 0.0256290435791016, -0.0183921381831169, -0.00449141347780824, 0.00174092245288193, -0.0146870547905564, 0.0353182330727577, -0.0309467706829309, 0.0211243033409119, -0.0116416895762086, 0.00572755141183734, -0.0121081573888659, -0.0243762452155352, 0.0340654365718365, -0.000362969818525016, -0.000195333166630007, 0.020511232316494, 0.0257090087980032, -0.0150335729122162, -0.0310533922165632, -0.00275882054120302, 0.0315331853926182, -0.0326527059078217, -0.00229901727288961, 0.0183254983276129, -0.0226303264498711, 0.00516445888206363, -0.00606740638613701, -0.167714968323708, 0.0177923943847418, -2.82691653410438e-05, -0.0200714189559221, 0.000342770130373538, -0.00775668397545815, -0.00197582202963531, 0.00441477913409472, -0.00640059728175402, -0.00252891890704632, 0.00264053791761398, 0.00395497586578131, -0.0317997373640537, 0.0143405357375741, 0.00939598307013512, -0.0164329744875431, -0.0213108900934458, 0.00807654764503241, 0.00387501018121839, 0.00620068237185478, 0.0157532654702663, -0.0168727859854698, -0.000598077662289143, -0.0218040123581886, 0.00444809859618545, 0.0133276358246803, -0.0167261827737093, 0.037557277828455, -0.00379504426382482, -0.00777667528018355, -0.0279080700129271, 0.00876958388835192, 0.0347584746778011, 0.0178590323776007, 0.00876958388835192, 0.023603243753314, -0.00581418117508292, -0.00731020839884877, -0.0287876930087805, 0.0240697097033262, 0.0368375852704048, 0.0315864980220795, -0.0145004680380225, 0.0183254983276129, -0.0226169973611832, 0.00673711998388171, -0.00716360425576568, 0.00279880361631513, 0.005171122495085, 0.0101489946246147, -0.0131210573017597, -0.0358779951930046, 0.00306369038298726, 0.00634395470842719, 0.0266152881085873, -0.014100638218224, -0.00839641038328409, -0.00221405341289937, 0.0154467299580574, -0.00436813244596124, 0.00643058447167277, -0.0029087564907968, 0.0199514701962471, -0.00605741050094366, -0.0145271234214306, -0.00682374928146601, -0.0271750502288342, -0.0173925645649433, -0.0396630428731441, 0.00727688893675804, -0.00246727862395346, -0.0142738977447152, -0.0120948292315006, -0.0565091744065285, 0.017165994271636, -0.0139140514656901, -0.0271350666880608, 0.020391283556819, 0.0120415184646845, 0.0192850884050131, 0.00239897449500859, -0.00242396374233067, -0.0129811177030206, 0.0083497641608119, -0.000891285657417029, 0.0101489946246147, -0.0072835530154407, 0.0246427990496159, -0.00955591443926096, -0.0246827807277441, 0.011675008572638, -0.011801621876657, -0.0165262687951326, -0.0161397662013769, -0.00474130641669035, 0.0107420748099685, 0.0241096932440996, 0.0251492485404015, -0.00084672134835273, -0.0237098634243011, 0.0169127695262432, -0.0153134530410171, -0.0175258405506611, 0.024149676784873, 0.0074101653881371, 0.00578419398516417, 0.00788329634815454, 0.0168461315333843, 0.017165994271636, -0.00579418987035751, -0.0302004218101501, 0.0262954253703356, -0.00473464280366898, 0.0291875228285789, 0.0122680887579918, 0.0258156303316355, -0.000604741449933499, -0.00492789316922426, -0.00299871806055307, 0.0188719313591719, 0.0465401038527489, 0.0185920521616936, 0.00814984925091267, 0.000479794893180951, 0.00440811552107334, -0.0225370321422815, -0.113231591880322, -0.0232034139335155, 0.0157932490110397, 0.00577419809997082, -0.00595078943297267, 0.0450740642845631, 0.00167095230426639, 0.0432081967592239, -0.0130744110792875, 0.0409158430993557, -0.00765006290748715, -0.0133809465914965, -0.0243362635374069, 0.0016634555067867, 0.0279347244650126, 0.0117349829524755, -0.0409958064556122, -0.0263753905892372, -0.0238431412726641, 0.0235899146646261, -0.0207777842879295, -0.0100423730909824, 0.0156066613271832, -0.00706364680081606, -0.000884621811565012, -0.021470820531249, -0.0295340400189161, 0.0264020469039679, -0.00695036211982369, 0.00545766670256853, 0.0029620670247823, 0.00653720553964376, 0.0255890600383282, -0.0114884218201041, -0.00472464691847563, 0.00735685508698225, -0.0363044813275337, -0.000165866586030461, 0.011341817677021, -0.011561724357307, -0.00159848330076784, -0.0283612087368965, 0.00733019970357418, -0.0296140071004629, -0.0139540350064635, -0.0202446784824133, 0.0102622797712684, -0.0103755639865994, 0.0317464284598827, -0.0106354532763362, -0.0314798764884472, 0.000965420622378588, -0.0216840635985136, -0.00691704312339425, -0.0271350666880608, 0.00158182380255312, -0.0135542051866651, -0.0181522406637669, -0.0263487361371517, -0.00326193892396986, -0.0120881656184793, -0.00878291204571724, -0.00106621091254056, 0.00975582934916019, -0.00735019100829959, -0.000904613290913403, -0.00836975499987602, -0.00187586469110101, 0.0149402795359492, -0.0437146462500095, -0.020564541220665, 0.0157266110181808, -0.0115817151963711, 0.0188852604478598, -0.0306002516299486, 0.00877624843269587, -0.0164463017135859, -0.0130277639254928, 0.0344919227063656, -0.013227678835392, -0.0311333574354649, -0.00278547592461109, 0.000772586383391172, 0.0127345556393266, 0.00536437332630157, 0.0302004218101501, -0.0152068324387074, 0.00359846162609756, -0.0146603994071484, 0.0120881656184793, 0.00311366887763143, 0.0152334878221154, 0.0140473283827305, -0.0143938465043902, 0.00794993434101343, 0.000400245568016544, -0.00504117831587791, -0.0139007242396474, 0.0255090948194265, 0.0212575793266296, -0.0112885078415275, 0.0084763765335083, -0.0583217330276966, 0.0110286185517907, -0.017165994271636, -0.00749013107270002, -0.0155933341011405, 0.0135342143476009, 0.0164196472615004, -0.0109686441719532, 0.00808987487107515, 0.0161797497421503, 0.00187753071077168, 0.022390428930521, 0.0058841509744525, -0.0276148617267609, -0.0398496314883232, -0.00900948140770197, 0.0557095184922218, -0.00135192205198109, 0.0258556138724089, 0.0218306668102741, 0.00624066544696689, -0.00513113988563418, -0.00477462541311979, -0.00325860688462853, -0.00756343314424157, -0.00370841473340988, -0.0205378867685795, 0.0204979032278061, -0.00850303191691637, -0.011348482221365, -0.0120481830090284, -0.00834309961646795, 0.00703032780438662, 0.0283612087368965, -0.00415155850350857, -0.0288143493235111, 0.00408492051064968, 0.0123080713674426, 0.00331358355470002, 0.0138207580894232, -0.0129011515527964, -0.0273749642074108, -0.0176191348582506, -0.0211642850190401, -0.00063431216403842, 0.0221771858632565, -0.010555487126112, 0.00767005421221256, 0.00158182380255312, 0.0140073448419571, 0.00990243349224329, 0.0321995690464973, -0.0376372449100018, 0.005294403526932, -0.00879623927175999, -0.035371545702219, 0.0109419887885451, 0.0206978190690279, -0.00956257898360491, -0.0173125993460417, 0.0295073855668306, -0.00125196482986212, 0.00453139608725905, -0.0108486954122782, 0.0125013226643205, 0.00736351870000362, -0.0162197332829237, -0.0107887210324407, 0.0432348512113094, -0.0168994423002005, -0.0105821425095201, -0.0196449346840382, 0.00542767951264977, 0.0180856008082628, 0.0115950433537364, 0.00998906325548887, -0.00314365606755018, 0.0072835530154407, 0.00328692817129195, 0.0254424568265676, 0.0144071746617556, -0.000950427027419209, -0.00384835479781032, 0.0173259265720844, -0.000189502316061407, 0.00555429235100746, 0.0103822285309434, 0.0191384851932526, -0.0208444222807884, 0.0100157186388969, -0.0219905991107225, -0.00307202013209462, -0.00679709436371922, 0.0245894882827997, 0.016619561240077, 0.0215241312980652, 0.0123280631378293, 0.0264287013560534, 0.0108287036418915, -0.0154067473486066, 0.00892285257577896, -0.0108486954122782, 4.86771059513558e-05, -0.000139003081130795, -0.00986245088279247, 0.00440145190805197, -0.0182855166494846, 0.000771336897742003, -0.0141406217589974, 0.0172992721199989, 0.006050746422261, 0.0196182802319527, 0.0325194299221039, 0.0210043545812368, -0.011675008572638, 0.00524442456662655, 0.00912276655435562, -0.0156999547034502, -0.0167928207665682, 0.0358779951930046, 0.0262954253703356, -0.0122680887579918, 0.00837641954421997, -0.0189918801188469, 0.0350250266492367, 0.00651388196274638, 0.018925242125988, -0.00256890174932778, 0.00121614674571902, 0.0268551856279373, 0.0019574963953346, -0.0361978597939014, -0.0257756467908621, 0.0164862852543592, -0.00980914011597633, -0.00666381791234016, -0.0274815857410431, 0.0131210573017597, 0.00794327072799206, 0.0357713736593723, 0.00516779068857431, 0.000688872183673084, 0.0188985876739025, 0.0163663364946842, 0.0243762452155352, -0.00866962689906359, -0.00469132792204618, -0.00993575248867273, 0.000521027250215411, 0.029853904619813, -0.0113818012177944, -0.000423360674176365, -0.0304403193295002, 0.0111752226948738, -0.00418154569342732, -0.0196316074579954, 0.0262287873774767, -0.0323061905801296, 0.0212442521005869, 0.0173792373389006, 0.00938931945711374, 0.0221905130892992, -0.0132876532152295, -0.0132543342188001, -0.0198315214365721, 0.00503784650936723, -0.00511448038741946, -0.00195249868556857, -0.0312133226543665, -0.0088762054219842, 0.0051911142654717, -0.0197249017655849, -0.0150735564529896, 0.0251492485404015, -0.00788995996117592, 0.0188586041331291, 0.0254557840526104, 0.0106287896633148, 0.0149002969264984, -0.00904946494847536, 0.00328026432543993, -0.0123813739046454, -0.0400895290076733, 0.0211509577929974, -0.00692370673641562, -0.0014118964318186, -0.00163013639394194, -0.0327060185372829],id:"af6e227eab2e50bef4023f7a5bd8abeb",source:"state_of_union.txt",text:"And for our LGBTQ+ Americans, let’s finally get the bipartisan Equality Act to my desk. The onslaught of state laws targeting transgender Americans and their families is wrong.
As I said last year, especially to our younger transgender Americans, I will always have your back as your President, so you can be yourself and reach your God-given potential.
While it often appears that we never agree, that isn’t true. I signed 80 bipartisan bills into law last year. From preventing government shutdowns to protecting Asian-Americans from still-too-common hate crimes to reforming military justice.
And soon, we’ll strengthen the Violence Against Women Act that I first wrote three decades ago. It is important for us to show the nation that we can come together and do big things.
So tonight I’m offering a Unity Agenda for the Nation. Four big things we can do together.
First, beat the opioid epidemic."})
(:Chunk{embedding:[-0.00312390434555709, 0.0051458328962326, -0.00338791939429939, -0.01988803781569, -0.000603872817009687, 0.0135647961869836, 0.00926184374839067, 0.0022400279995054, -0.0145749403163791, 0.0182744301855564, 0.0138927651569247, -0.000439068448031321, -0.0118987141177058, 0.0169231984764338, -0.00445053866133094, 0.00120692572090775, 0.0473324805498123, -0.0201766509562731, -0.0153883034363389, -0.00786469597369432, -0.0253979153931141, 0.000946190441027284, 0.0170675050467253, -0.0102851064875722, -0.0231283716857433, 0.0156900342553854, 0.0427146777510643, -0.0129810115322471, 0.00362077727913857, -0.0234563406556845, -0.0164378043264151, -0.00231710076332092, -0.021029369905591, -0.0142863281071186, -0.00888795871287584, -0.00117002928163856, -0.00550331920385361, 0.00296483933925629, -0.00103474210482091, -0.0193501692265272, 0.0265917237848043, -0.0269459299743176, -0.00351254758425057, -0.0144699905067682, 0.00271886261180043, 0.00362405693158507, -0.01988803781569, -0.0243484154343605, -0.0381231121718884, 0.0188122987747192, 0.0254635103046894, -0.000872397446073592, -0.0201504118740559, -0.0248731654137373, 0.00695294188335538, -0.00298287766054273, 0.00206456449814141, 0.0293335430324078, 0.00300583546049893, -0.00818610470741987, 7.03339674146264e-06, -0.00859278626739979, -0.034581046551466, 0.0203340761363506, -0.0154407788068056, 0.0137222213670611, -0.0107114659622312, 0.0200061071664095, 0.0247026216238737, 0.0210818443447351, 0.0431344769895077, 0.0119052734225988, 0.020478380843997, -0.0208194702863693, 0.012961333617568, 0.0179726984351873, -0.00675616040825844, -0.00755640491843224, 0.01844497397542, 0.00168904010206461, 0.0229840651154518, -0.0205964501947165, -0.0434755645692348, -0.00849439576268196, 0.0166608225554228, -0.00886172149330378, 0.0035256661940366, 0.0154014220461249, 0.0167788919061422, -0.015860578045249, -0.0237187147140503, 0.0186417549848557, 0.0158343408256769, 0.0204259064048529, 0.0224724337458611, 0.0283102802932262, 0.0078450171276927, 0.0174217112362385, 0.00417832471430302, -0.036338958889246, -0.00415208702906966, 0.000810903264209628, -0.0249256398528814, -0.0162934977561235, -0.00729402946308255, -0.00358798028901219, 0.00683487299829721, 0.0132696237415075, 0.0146142970770597, 0.0125021766871214, -0.0226036198437214, -0.00623796973377466, 0.000339037913363427, -0.0169231984764338, 0.00143732398282737, 0.0171330980956554, 0.00174643471837044, 0.0104818874970078, 0.01195118855685, -0.0212130323052406, 0.0137222213670611, 0.00891419593244791, 0.027077117934823, -0.00913065578788519, -0.000389873108360916, -0.00548692047595978, -0.0256996471434832, 0.00952421873807907, -0.00739242043346167, -0.00152751547284424, 0.0154932532459497, 0.0142207341268659, 0.0310127437114716, -0.00379788060672581, -0.0132630644366145, 0.0337676852941513, 0.000628880457952619, -0.00202520820312202, -0.0258045978844166, 0.00485394056886435, 0.0253979153931141, 0.0109344851225615, -0.0235481709241867, -0.0209113005548716, -0.00808115489780903, 0.0235481709241867, 0.0305929444730282, -0.0113411666825414, 0.0169494356960058, 0.00915689300745726, 0.0160573609173298, -0.0273657292127609, 0.00174315494950861, 0.00111509440466762, -0.00555579410865903, 0.00547708151862025, -0.0239942092448473, 0.00578865222632885, -0.00507367961108685, -0.00833697058260441, -0.00405697617679834, -0.0254766289144754, 0.00220231153070927, 0.00774662662297487, 0.00338463974185288, 0.0123972268775105, -0.00109787611290812, 0.01427320856601, 0.00568370195105672, 0.00123234337661415, 0.0127842295914888, 0.0435018017888069, -0.00648722611367702, 0.0152439968660474, -0.0314587838947773, 0.0273657292127609, 0.0051425532437861, 0.0338463969528675, -0.015847459435463, -0.0041225696913898, 0.0100030535832047, 0.00106999871786684, 0.0152177596464753, 0.0397236011922359, -0.0150340972468257, -0.00795652717351913, 0.0303568057715893, -0.00782533921301365, -0.00132581451907754, -0.0282053295522928, 0.0121545298025012, 0.0370736122131348, -0.0176840852946043, -0.0164902787655592, -0.6313796043396, -0.0252142529934645, 0.0230103023350239, -0.0054508438333869, 0.00817954540252686, -0.0009978455491364, 0.0152177596464753, 0.0267622675746679, -0.0179858170449734, 0.0248600468039513, 0.00309602706693113, 0.0216459520161152, -0.00640523387119174, -0.029963243752718, 0.0151521656662226, -0.00928152166306973, -0.0116297788918018, -0.0260144975036383, -0.00140862667467445, -0.0102916657924652, -0.0162016656249762, 0.0218427330255508, -0.0121676484122872, -0.0174479484558105, 0.00939303077757359, 0.00671680411323905, 0.00353550538420677, -0.0168838426470757, -0.00473915133625269, -0.0102391904219985, -0.0099768154323101, 0.0228922329843044, 0.00224986695684493, 0.012974452227354, 0.0575126372277737, 0.00217607407830656, -0.00317145977169275, 0.0330067947506905, 0.0359191596508026, 0.0192583370953798, -0.00918969046324492, 0.0190222002565861, 0.0213573388755322, 0.00311242532916367, -0.00437182607129216, -0.00952421873807907, 0.0188910122960806, -0.0026385101955384, 0.00785157643258572, 0.0196912568062544, 0.013381133787334, 0.0141551401466131, -0.00511303590610623, -0.00254831882193685, 0.0147717222571373, -0.00418488401919603, -0.0116560170426965, -0.0196387805044651, 0.00690702628344297, -0.0121414111927152, 0.00320097710937262, 0.0191402677446604, -0.0250961855053902, -0.0218558516353369, -0.0294122565537691, -0.00583128817379475, -0.016424685716629, 0.0180120542645454, 0.00515239220112562, 0.0149553846567869, -0.00490641547366977, 0.00501792505383492, -0.0169363170862198, -0.0212392695248127, -0.000594443758018315, 0.00989810284227133, 0.00997025612741709, -0.00955701526254416, -0.0208588261157274, 0.0272345412522554, 0.0105868382379413, -0.0232857968658209, -0.0235875267535448, -0.0140239521861076, 0.0280216671526432, -0.00570993963629007, 0.0005542675498873, 0.00258931494317949, 0.0079827643930912, 0.0232726763933897, 0.0268934536725283, 0.018733587116003, 0.00819266494363546, -0.0454696156084538, 0.00903226528316736, -0.00101260410156101, -0.0142863281071186, 0.0188910122960806, 0.0339513458311558, 0.0292023550719023, -0.00249092420563102, -0.0146405342966318, 0.00705789215862751, 0.0183137860149145, 0.0131909111514688, 0.00528357969596982, -0.0233907457441092, 0.0236662402749062, 0.044367641210556, -0.036627572029829, 0.000806803640443832, -0.00884860288351774, -0.031143931671977, 0.00587392412126064, 0.0143519211560488, -0.0263424664735794, 0.00489001721143723, -0.00265654851682484, -0.00636915722861886, -0.00181858788710088, 0.0153489476069808, 0.0146274156868458, 0.00990466214716434, -0.0134467268362641, 0.012672720476985, -0.00863870233297348, 0.00885516218841076, -0.0117150507867336, 0.00515895150601864, 0.00993090029805899, -0.00543116591870785, -0.0266966726630926, 0.0183269046247005, 0.0121676484122872, 0.0213966947048903, -0.0207932312041521, -0.00153325486462563, -0.0138927651569247, 0.00731370784342289, -0.0169625543057919, -0.00751704862341285, 0.0028172533493489, 0.016411567106843, 0.00978003442287445, -0.011531388387084, -0.0318261086940765, 0.0118659166619182, 0.00599527265876532, -0.027680579572916, -0.0137222213670611, 0.00249092420563102, -0.00956357456743717, -0.021042488515377, 0.0112690133973956, -0.00359781947918236, -0.0183531437069178, 0.0144699905067682, -0.0039028306491673, -0.00711692636832595, -0.00876989029347897, 0.00363717577420175, 0.013827171176672, 0.00395858520641923, -0.000447267666459084, -0.00671352446079254, -0.0068742292933166, 0.0089994678273797, 0.0219345632940531, 0.0090847397223115, -0.00564762530848384, 0.00158081040717661, -0.0265786051750183, -0.000503842311445624, 0.00378476176410913, 0.0241122785955667, 0.0281790923327208, -0.00989154353737831, 0.00497200945392251, 7.29730963939801e-05, 0.0239023771136999, -0.00781222060322762, -0.00145700213033706, 0.00466043874621391, 0.0110131977126002, 0.00429311348125339, -0.000881416548509151, 0.0109738409519196, 0.00283529167063534, 0.00671352446079254, 0.00398154323920608, 0.0117281703278422, 0.0245451964437962, -0.00444725900888443, 0.0197962056845427, 0.0152177596464753, 0.0142338527366519, -0.00716284196823835, -0.00710380775853992, 0.0202553626149893, 0.0263687036931515, 0.0173954740166664, -0.00998337473720312, 0.0220263954252005, -0.00192353792954236, 0.00312882382422686, -0.0345285721123219, -0.0190746746957302, -0.0474111922085285, -0.000582144886720926, -0.00348630989901721, -0.0168313663452864, -0.0230234209448099, -0.0102260718122125, -0.0196781381964684, -0.0201110560446978, 0.0129022989422083, 0.00300091598182917, 0.0173298791050911, -0.00498184841126204, -0.00147504033520818, 0.00608382420614362, -0.0112362168729305, 0.0142469713464379, -0.0149553846567869, -0.010809856466949, 0.0212786253541708, 0.0142207341268659, 0.0346335209906101, 0.0031271839980036, 0.00693982327356935, 0.00212031928822398, 0.00526062212884426, 0.0196387805044651, 0.0369686596095562, -0.0209637749940157, -0.0141289029270411, 0.0059460774064064, -0.0162672605365515, 0.0421636886894703, 0.013413930311799, 0.01195118855685, 0.0191140305250883, 0.00253683980554342, 0.0221182256937027, 0.0251093041151762, -0.00911753717809916, 0.0426622033119202, 0.0252929665148258, 0.000306855945382267, 0.0263687036931515, -0.00345351314172149, 0.0102719878777862, -0.00409633247181773, 0.00896667130291462, 0.00588376307860017, -0.0321147218346596, 0.00159884861204773, 0.0381493493914604, 0.0202553626149893, 0.0421374514698982, 0.00484410161152482, 0.0301469061523676, -0.00225642649456859, -0.0208194702863693, 0.00973411835730076, 0.0164640415459871, -0.0202553626149893, -0.00530981738120317, -0.00347647094167769, -5.8880676078843e-05, -0.0164902787655592, -0.00639211479574442, -0.00499168736860156, -0.019861800596118, 0.0117412889376283, 0.0274182055145502, -0.021895207464695, -0.000587474380154163, -0.00494249211624265, 0.0105146849527955, 0.00732026714831591, -0.021921444684267, 0.0239679720252752, 0.0202160067856312, -0.00974723696708679, -0.0243090596050024, 0.00917001161724329, -0.00491953454911709, -0.00254503916949034, -0.0191271491348743, -0.010803297162056, 0.00778598291799426, -0.003240333404392, 0.0118790352717042, -0.00295828003436327, -0.0275493916124105, 0.0243746526539326, 0.0104950070381165, 0.011820001527667, -0.00939303077757359, -0.00615597749128938, 0.0125743299722672, -0.0365750975906849, -0.00126923981588334, 0.0101604778319597, -0.0159130543470383, -0.00793028902262449, -0.0268278606235981, -0.0125218546018004, -0.0237580705434084, 0.0440003164112568, 0.0105278035625815, -0.000681765493936837, 0.00996369682252407, -0.00950454082340002, 0.0220919884741306, -0.0251880157738924, 0.00449317460879683, 0.0163853298872709, -0.00606742547824979, -0.0126399239525199, -0.0304879937320948, -0.0173298791050911, 0.00744489533826709, 0.130347982048988, -0.0117740854620934, -0.00256307749077678, 0.00382083840668201, 0.0249256398528814, 0.00704477308318019, 0.0106721101328731, -0.019612543284893, -0.00594935705885291, -0.0306454189121723, 0.0272607803344727, -0.00807459559291601, 0.00653970101848245, -0.0059460774064064, 0.0100096128880978, 0.0157556291669607, -0.011964307166636, -0.0114395571872592, -0.0225249081850052, -0.0189303681254387, 0.0213048625737429, -0.00180054956581444, 0.0188516564667225, 0.0418226011097431, 0.0247550960630178, -0.00934711564332247, 0.0195600688457489, 0.0322196707129478, 0.0188385359942913, 0.00231546093709767, -0.0224199574440718, 0.016398448497057, -0.00756952352821827, 0.00603790860623121, -0.027391966432333, 0.00505072204396129, -0.00599855231121182, -0.00903226528316736, 0.0110197570174932, 0.0119249513372779, 0.0205964501947165, 0.0226692147552967, 0.0078056612983346, -0.0161754284054041, 0.00886828079819679, 0.00695294188335538, -0.0193764064460993, 0.00167100178077817, 0.00503760296851397, -0.0225642640143633, 0.0142076155170798, 0.00420784158632159, -0.0242303460836411, -0.0139190023764968, 0.0130334859713912, 0.011085350997746, 0.00781877990812063, -0.00596247566863894, -0.0337939225137234, -0.00221379054710269, -0.0153227094560862, -0.0301731433719397, -0.00665776990354061, -0.03688994795084, -0.0103179030120373, -0.00392578821629286, -0.00591328041628003, 0.0083828866481781, -0.00061207206454128, 0.0144175151363015, 0.0127645516768098, -0.0294122565537691, -0.0137878153473139, 0.0193501692265272, 0.013387693092227, 0.00842880178242922, 0.0232202019542456, 0.0116822542622685, 0.00714972335845232, 0.0172511674463749, -0.00989154353737831, -0.057355210185051, 0.00283037219196558, -0.0160311218351126, 0.0179071053862572, -0.00845503993332386, -0.00235481699928641, -0.0129285361617804, -0.0313538312911987, 0.0378344990313053, -0.00467355782166123, -0.00389955099672079, 0.0298845320940018, -0.0189959611743689, -0.017303641885519, 0.00800900161266327, 0.0215278826653957, 0.0168576035648584, -0.0082057835534215, -0.020740756765008, 0.00657905731350183, -0.0112230973318219, -0.0301469061523676, -0.0061658164486289, -0.00565746473148465, -0.0163066163659096, 0.00940614938735962, 0.0319835320115089, -0.00848783645778894, -0.0324033312499523, 0.0332691706717014, -0.00763511750847101, -0.00635603815317154, 0.00478506693616509, 0.0221051070839167, -0.00621829135343432, 0.01844497397542, 0.00303207291290164, -0.0147323654964566, -0.020163532346487, -0.0282578058540821, -0.0151128098368645, 0.0307241324335337, 0.0216459520161152, -0.00808115489780903, -0.0142469713464379, 0.022183820605278, -0.0235875267535448, 0.00770727032795548, -0.00260407361201942, -0.0313013568520546, 0.0392513237893581, -0.0223937202244997, -0.036601334810257, -0.0215147640556097, -0.00424719788134098, -0.0163459721952677, 0.00174151512328535, 0.011098469607532, 0.00031054561259225, -0.00361421797424555, -0.00841568317264318, -0.0168707240372896, -0.0349746085703373, 0.0420062653720379, -0.0333478823304176, 0.00151685636956245, 0.00195797462947667, -0.00677583878859878, 0.0121807670220733, -0.0106983473524451, 0.00538197066634893, -0.0277592930942774, 0.0211212001740932, -0.00912409648299217, 0.00338791939429939, 0.00972099974751472, -0.000361790764145553, 0.00365685392171144, 0.00922248698771, 0.0296483933925629, -0.0193370506167412, -0.0143781593069434, -0.0176840852946043, 0.0133024211972952, -0.00272050243802369, -0.00126596016343683, 0.0116363381966949, -0.0133089805021882, 0.0249649975448847, 0.0163197349756956, 0.0105802789330482, -0.00237777503207326, -0.0188254173845053, 0.0268934536725283, 0.00511631555855274, -0.0062543679960072, -0.00343055534176528, -0.0202684812247753, -0.0130203673616052, -0.0264605358242989, 0.00484410161152482, -0.00779910199344158, 0.0170543864369392, -0.0300157181918621, -0.002882847096771, 0.0353681705892086, 0.0142469713464379, 0.0224199574440718, -0.0189303681254387, 0.015847459435463, -0.00660529499873519, 0.0234956964850426, 0.02076699398458, -0.00887484010308981, -0.025620935484767, -0.0313013568520546, -0.0154538974165916, 0.00461780279874802, 0.00602150987833738, 0.0297533441334963, -0.00232038041576743, -0.0159917660057545, -0.00427343556657434, -0.0089601119980216, 0.024768216535449, -0.00464404048398137, 0.00612646015360951, -0.0228397585451603, -0.0339251086115837, 0.0236531216651201, 0.00325673166662455, -0.00556235341355205, -0.0236662402749062, 0.0346597582101822, -0.00851407367736101, -0.0163066163659096, 0.0279167182743549, 0.0023515373468399, -0.0048309825360775, -0.0138140525668859, -0.0310914572328329, -0.0100620873272419, -0.0105343628674746, -0.00304519175551832, 0.0137878153473139, 0.00955045595765114, -0.00147995993029326, 0.000984726822935045, 0.012974452227354, -0.000651018403004855, 0.0185761619359255, -0.000117453884740826, -0.00930775888264179, 0.0108360946178436, -0.0101473592221737, 0.0204521436244249, 0.000368145148968324, -0.0449186265468597, 0.0256734099239111, 0.0155326100066304, -0.012685839086771, -0.0205308571457863, -0.0163853298872709, -0.0274444427341223, 0.0307503696531057, -0.00294188153930008, 0.0139714777469635, -0.00852719321846962, -0.0539968088269234, -0.0215934757143259, 0.0154276601970196, -0.0121348509564996, 0.0227479264140129, 0.00140944658778608, -0.000732190674170852, 0.00486705917865038, 0.00261719222180545, -0.0124103454872966, -0.015847459435463, -0.0086059058085084, 0.0373884625732899, -0.0187729429453611, 0.0102129532024264, 0.0113739632070065, 0.000562056782655418, -0.021029369905591, -0.00798932369798422, -0.0133548956364393, 0.0234956964850426, -0.0340825356543064, -0.0122004449367523, -0.00209900131449103, 0.00131269579287618, 0.0123053956776857, -0.00256471731700003, -0.0125087359920144, 0.00204488635063171, -0.0236137639731169, 0.00843536201864481, 0.0139977149665356, 0.0245058406144381, -0.0211999136954546, 6.69261644361541e-05, 0.00487689860165119, -0.0123250735923648, -0.0198093242943287, -0.009661965072155, 0.0376245975494385, -0.0157293919473886, -0.0199929866939783, 0.00454564951360226, 0.00305995042435825, 0.0205702129751444, 0.0039487462490797, -0.00808115489780903, 0.00384379620663822, 0.0146536529064178, -0.0219476819038391, 0.0149291465058923, -0.00629372429102659, 0.0168576035648584, -0.0266310796141624, 0.00832385197281837, -0.021016251295805, -0.0208063498139381, -0.0157425105571747, 0.00539836892858148, -0.04554832726717, -0.00632324162870646, 1.23308636830188e-05, 0.00351254758425057, 0.00164066476281732, -0.00060182303423062, -0.000262170186033472, 0.000593623786699027, -0.00116183003410697, -0.0111968601122499, -0.0568304620683193, 0.0460468418896198, 0.00650690402835608, -0.0081205116584897, -0.00562794739380479, -0.0183662623167038, -0.0174873042851686, -0.023928614333272, 0.0347122326493263, 0.0152046410366893, -0.0120233418419957, 0.00851407367736101, -0.00805491767823696, 0.0191402677446604, -0.0224199574440718, -0.00250404304824769, 0.0221051070839167, -0.0082057835534215, -0.0159130543470383, 0.00776630500331521, 0.0169494356960058, -0.0121807670220733, -0.00118314800783992, 0.0136303901672363, 0.0313538312911987, -0.0166477039456367, -0.00112247373908758, -0.00964884646236897, -0.017028147354722, -0.0137878153473139, -0.0237711891531944, -0.0208719447255135, -0.0193632878363132, 0.0304092820733786, 0.0196781381964684, -0.0108360946178436, -0.0167920105159283, -0.00858622696250677, -0.0250961855053902, -0.00815986748784781, -0.005765694193542, 0.015414540655911, 0.0176053736358881, 0.0188385359942913, -0.00815986748784781, 0.0153095908463001, 0.00760887982323766, 0.0148504339158535, -0.00913065578788519, -0.0050113657489419, 0.0086452616378665, -0.024217227473855, 0.00852719321846962, -0.0162016656249762, -0.0148241966962814, 0.00422751996666193, 0.0023285795468837, -0.000366710301022977, -0.000428819417720661, 0.014260089956224, -0.00542460661381483, -0.0175266619771719, -0.00825169868767262, -0.0100555280223489, 0.0142469713464379, -0.012252920307219, 0.0101211220026016, -0.0320884808897972, 0.00121020548976958, 0.0270246416330338, 0.0191533863544464, -0.00594279728829861, -0.0130859613418579, 0.0155326100066304, -0.00206948420964181, 0.0209637749940157, -0.00998993404209614, 0.0134204896166921, -0.00351582723669708, -0.0117806447669864, 0.00861246511340141, 0.00369621021673083, -0.00574273662641644, 0.01311219856143, 0.0209900140762329, -0.00315342145040631, -0.00680207600817084, 0.00354206468909979, 0.00324525288306177, -0.0129088582471013, 0.0219870395958424, -0.0178546290844679, 0.0210556071251631, -0.0158343408256769, -0.0329543203115463, 0.0131515553221107, 0.0223018899559975, 0.0157425105571747, 0.00460140453651547, 0.00269590481184423, 0.0116822542622685, 0.00209736148826778, -0.0160835981369019, -0.0297271069139242, -0.00869117770344019, -0.0318261086940765, -0.000889615796040744, -0.0456270426511765, 0.00222198967821896, -0.0132040297612548, -0.00450301356613636, -0.00926184374839067, -0.026526128873229, -0.00925528351217508, 0.00832385197281837, -0.00437510572373867, 0.00947174336761236, 0.0147586027160287, 0.222074344754219, 0.00458500580862164, 0.00527046108618379, 0.0167395360767841, 0.0136435087770224, 0.0223674830049276, 0.0395136997103691, 0.00751048931851983, -0.0168969612568617, 0.00972755905240774, -0.00509663764387369, -0.0145093463361263, -0.0139321209862828, 0.00238433433696628, -0.0139321209862828, -0.00823858007788658, -0.0474111922085285, -0.00813363026827574, -0.0216590706259012, 0.0112230973318219, 0.00825825799256563, 0.027391966432333, 0.00684143230319023, -0.014260089956224, 0.00650362437590957, 0.0154538974165916, -0.0158081036061049, 0.0125612113624811, 0.00668072747066617, -0.0171330980956554, -0.0163722094148397, -0.0161098353564739, 0.00911097787320614, 0.0112034194171429, -0.0112558947876096, -0.0309340320527554, -0.0174085926264524, -0.0369948968291283, 0.0127186365425587, -0.00186450348701328, 0.0147848408669233, 0.0272083040326834, 0.00243024993687868, -0.0287300813943148, -0.00214327708818018, 0.0192058626562357, -0.0153358280658722, -0.00939303077757359, 0.00510975625365973, 0.014994740486145, -0.0430820025503635, -0.0190877933055162, 0.022774163633585, 0.0366800464689732, -0.00236301636323333, 0.000409961183322594, 0.019612543284893, 0.0267229098826647, -0.0136041520163417, 0.0179464612156153, 0.0110131977126002, 0.0102588692680001, -0.0109935197979212, 0.019586306065321, -0.0358666852116585, 0.00417176494374871, -0.0107770599424839, 0.0116428984329104, 0.0191665049642324, -0.0301469061523676, -0.000251716177444905, 0.017277404665947, -0.020163532346487, -0.00346335209906101, -0.00771383009850979, -0.0208194702863693, 0.00498184841126204, 0.0403270646929741, 0.0142076155170798, 0.0185892805457115, -0.0179202239960432, -0.0200454629957676, 0.0104294130578637, 0.00264342990703881, -0.000372039794456214, -0.00287792761810124, 0.00985874701291323, 0.0277068167924881, -0.0308815576136112, 0.00297467852942646, 0.00747113302350044, -0.0191140305250883, -0.0179071053862572, -0.0161885470151901, 0.0039487462490797, 0.0298582930117846, 0.0116232195869088, 0.011524829082191, -0.00600511161610484, -0.0128695014864206, -0.0151259284466505, 0.0668007135391235, 0.00840912386775017, 0.00213343813084066, 0.02446648478508, -0.0271295923739672, 0.000599773251451552, -0.00382083840668201, 0.00433246977627277, -0.0467814914882183, 0.0236924774944782, -0.027654342353344, 0.00472931237891316, 0.000715382280759513, -0.00299271661788225, 0.0191533863544464, 0.013118757866323, -0.000745719415135682, 0.00537869101390243, 0.0177759174257517, -0.000739160052035004, -0.0335315465927124, -0.012679279781878, 0.0139583591371775, -0.000768677215091884, -0.00502120470628142, -0.0249649975448847, -0.0165952295064926, 0.000624780834186822, -0.0486705936491489, 0.013407371006906, -0.00550331920385361, 0.0102195125073195, -0.01339425239712, -0.0130662834271789, -4.51918140242924e-06, 0.00764823611825705, 0.00625764764845371, -0.00956357456743717, 0.00855343043804169, -0.00869773700833321, 0.000825661874841899, -0.00556235341355205, -0.00136271095834672, -0.00529669877141714, -0.0270246416330338, 0.00848783645778894, -0.0201110560446978, 0.0113411666825414, -0.0106852287426591, -0.0233645085245371, 0.0183006674051285, -0.00406025582924485, -0.0167395360767841, 0.0141682587563992, -0.0106983473524451, -0.0183793809264898, -0.0296746306121349, -0.00209572166204453, 0.0200979374349117, -0.0440527908504009, 0.0271295923739672, 0.0260013788938522, -0.020163532346487, -0.0189172495156527, 0.000547708186786622, -0.164771601557732, 0.0155194913968444, 0.00788437388837337, 0.000578455219510943, 0.00842880178242922, -0.0265523660928011, 0.0020383270457387, 0.00223674834705889, -0.0118659166619182, 0.0118659166619182, 0.00793684832751751, -0.00624780869111419, -0.0201766509562731, 0.0001213485156768, 0.00204324652440846, -0.0131843518465757, -0.00506384065374732, 0.0102129532024264, 0.024204108864069, -0.00570993963629007, 0.0208325888961554, -0.0114329978823662, -0.0114920325577259, -0.0160967167466879, 0.0142207341268659, -0.0179464612156153, -0.0106917880475521, 0.0128629421815276, -0.000587474380154163, -0.0217377822846174, -0.0300681944936514, 0.00560170970857143, 0.027077117934823, 0.0202028881758451, 0.0123972268775105, 0.0201241746544838, -0.00814674887806177, -0.0104884468019009, -0.0123906675726175, 0.02076699398458, 0.0285201799124479, 0.0180776491761208, 0.0127907888963819, -0.00566730368882418, -0.0263424664735794, 0.0211999136954546, 0.0190615560859442, -0.0130728427320719, -0.015414540655911, -0.00589360203593969, -0.00317965913563967, -0.0160573609173298, -0.0101604778319597, -0.00553283607587218, 0.0135385589674115, -0.00338791939429939, -0.00766135472804308, -0.00665776990354061, 0.000382288824766874, -0.0134860835969448, -0.0142338527366519, -0.00455220928415656, 0.0170412678271532, 0.00451285298913717, -0.0154407788068056, -0.0442102141678333, -0.0186417549848557, -0.0121545298025012, -0.053314633667469, 0.00634947884827852, -0.0260800905525684, -0.0219476819038391, -0.0128432642668486, -0.0319310575723648, -0.00240893196314573, 0.000869937648531049, 0.00156195217277855, 0.00823202077299356, -0.00426359660923481, 0.0254372730851173, 0.002484364900738, 0.0203340761363506, -0.00800244230777025, -0.009937459602952, 0.00261883204802871, -0.00384707585908473, 0.00225150678306818, 0.0110459942370653, 0.000901094696018845, -0.0176578480750322, 0.0228135213255882, -0.0165821108967066, 0.00331904576160014, 0.00359781947918236, -0.00137746962718666, 0.0378082618117332, 0.0173561163246632, 0.0241122785955667, 0.00766135472804308, -0.0148241966962814, 0.0212130323052406, 0.0120430197566748, -0.00743833603337407, 0.0174610670655966, 0.0236006453633308, -0.0151915224269032, -0.00609038351103663, 0.019586306065321, 0.00722187664359808, 0.014994740486145, -0.0368112362921238, 0.0346597582101822, 0.00755640491843224, 0.0133745744824409, 0.0307241324335337, 0.0407993383705616, 0.00592311937361956, -0.00704477308318019, 0.00181530823465437, 0.00212195911444724, 0.0453646667301655, 0.00319113791920245, -0.00455220928415656, 0.0260276161134243, -0.0170806236565113, -0.0223806016147137, -0.128563836216927, -0.0297533441334963, 0.00793684832751751, 0.00422096066176891, 0.00104540109168738, 0.0465715937316418, -0.00741209834814072, 0.0284152310341597, -0.0170543864369392, 0.0269196927547455, -0.00203176774084568, -0.0287300813943148, -0.0215541198849678, -0.0103310225531459, 0.0209768936038017, 0.0124365827068686, -0.0220919884741306, -0.00230234209448099, -0.0253323223441839, 0.0390676632523537, 0.00763511750847101, -0.0177234429866076, 0.0190222002565861, -0.00873709283769131, -0.00876989029347897, 0.0014611016958952, -0.0152308782562613, 0.0286776050925255, -0.0152833536267281, 0.00175791361834854, 0.0126530425623059, -0.0157293919473886, 0.0223150085657835, 0.00777286430820823, 0.00287464796565473, 0.000491543498355895, -0.0248731654137373, -0.0241516344249249, 0.0137878153473139, -0.0336627326905727, 0.00834352988749743, 0.00842880178242922, 0.0305142309516668, -0.0315374955534935, -0.00731370784342289, -0.0234301015734673, -0.0128826210275292, 0.0072743515484035, 0.00748425163328648, -0.00313210347667336, -0.0415602251887321, -0.0160442404448986, -0.0312488824129105, -0.0196256618946791, -0.0199798680841923, -0.0199405122548342, -0.00302551360800862, -0.00724155455827713, -0.0122988354414701, 0.0078450171276927, -0.00127087975852191, -0.00115691043902189, -0.0139321209862828, 0.0267097912728786, 0.00129793712403625, -0.0134598463773727, -0.0199011564254761, 0.0109148072078824, 0.0125940078869462, -0.0175004228949547, -0.0308553203940392, 0.00811395235359669, -0.030251856893301, 0.0189434867352247, -0.0428983382880688, 0.0374146997928619, -0.0017054385971278, -0.0152177596464753, 0.0338463969528675, -0.0122922761365771, -0.0261588040739298, -0.00867149885743856, 0.0162934977561235, -0.0116888135671616, 0.0248862840235233, 0.00789093319326639, -0.0234301015734673, 0.0149553846567869, -0.022774163633585, 0.00439478410407901, -0.00133319385349751, 0.0290186926722527, -0.000510811631102115, -0.0011995465029031, 0.00681519508361816, 0.0140370717272162, -0.00066413712920621, -0.00457188719883561, 0.0254110340029001, 0.0159261729568243, -0.00699229817837477, -0.00123890268150717, -0.04667654260993, 0.0185761619359255, 0.00260079372674227, 0.00480146566405892, -0.0132040297612548, 0.0121742077171803, 0.00998337473720312, -0.0121282916516066, 0.00590344099327922, 0.00240729213692248, -0.0252142529934645, 0.0342137217521667, 0.0297271069139242, 9.97230599750765e-05, -0.0310389827936888, -0.0172642860561609, 0.0462042652070522, -0.0147848408669233, 0.00732682645320892, 0.00876333098858595, 0.0168313663452864, 0.0130794020369649, 0.01311219856143, 0.0140239521861076, 0.00783845782279968, 0.000944550614804029, -0.00178579101338983, 0.0203603133559227, -0.00907818041741848, -0.00333708408288658, -0.00534589402377605, -0.0309077948331833, 0.0091831311583519, 0.0147586027160287, -0.00741209834814072, -0.0163328535854816, 0.0184843298047781, 0.00471619376912713, 0.00301731447689235, 0.0331904590129852, -0.0127186365425587, -0.0251224227249622, -0.0210031326860189, -0.032009769231081, 0.01223324239254, -0.0202028881758451, -0.0277855303138494, 0.00100686470977962, -0.0011856077471748, 0.000104437611298636, 0.025647172704339, 0.0142994467169046, -0.0363127216696739, -0.0313013568520546, -0.0117872040718794, -0.02446648478508, -0.020163532346487, 0.00364045542664826, -0.010803297162056, -0.0338988713920116, 0.0118462387472391, -0.00438494514673948, -0.000692424480803311, -0.0131515553221107, 0.0101080033928156, 0.00544428452849388, -0.0157818663865328, 0.00397498393431306, 0.0251880157738924, -0.0220001582056284, -0.0270246416330338, -0.00679551670327783, -0.00104540109168738, 0.0206882823258638, -0.000988006475381553, 0.00649378541857004, -0.0236531216651201, 0.0135779147967696, -0.0109935197979212, 0.0135123208165169, 0.0132105899974704, -0.0272345412522554, -0.0145880589261651, 0.0250174719840288, 0.00601495057344437, 0.0105606000870466, -0.0038601947017014, 0.0206882823258638, -0.00770071102306247, -0.0113411666825414, -0.0182350743561983, -0.000521880574524403, 0.00779254222288728, 0.0123972268775105, 0.034581046551466, 0.0299107693135738, -0.00123890268150717, -0.00522126583382487, 0.0213573388755322, -0.00294516119174659, 0.011531388387084, -0.0190353188663721, -0.00270738382823765, -0.010357259772718, -0.0021514764521271, 0.00466699805110693, -0.00924216490238905, -0.0212130323052406, -0.0186811126768589, 0.0246370285749435, 0.00357158202677965, -0.000937171280384064, 0.023075895383954, 0.000818282540421933, -0.00866493955254555, 0.0153095908463001, -0.0054114880040288, -0.0182219557464123, -5.68308714719024e-05, 0.0226167384535074, 0.0151784028857946, -0.00770727032795548, 0.00633636023849249, -0.0096226092427969, 0.0454696156084538, 0.0165952295064926, -0.00751048931851983, -0.0141682587563992, -0.0080221202224493, 0.023941732943058, -0.0189697239547968, -0.0175004228949547, -0.060503713786602, 0.00486377952620387, -0.00261227274313569, -0.0532359220087528, -0.000999485375359654, 0.00415536668151617, 0.00279921502806246, 0.0419800281524658, 0.00445709796622396, -0.0048342626541853, 0.00125612108968198, 0.00798932369798422, 0.0172249302268028, -0.0205964501947165, 0.0243746526539326, -0.00782533921301365, 0.00664465129375458, 0.0368374735116959, -0.0142994467169046, 0.0198355633765459, -0.0219870395958424, -0.00121184531599283, -0.00414224807173014, -0.00783189851790667, 0.0407468639314175, -0.0164771601557732, 0.0283889938145876, 0.0104818874970078, 0.000928152119740844, 0.0113674039021134, 0.00621501170098782, -0.01932393014431, -0.0113214887678623, 0.0154801346361637, -0.0179726984351873, -0.00183334643952549, -0.0262637548148632, -0.0109148072078824, -0.00652986206114292, -0.0224593132734299, -0.0186942312866449, 0.0159917660057545, -0.0190353188663721, -0.0111181475222111, 0.0200454629957676, -0.0048801782540977, 0.016424685716629, 0.00222198967821896, 0.0199667494744062, -0.02678850479424, -0.0335577838122845, 0.00823858007788658, 0.0108754504472017, -0.00616909610107541, -0.0265654847025871, -0.034030057489872],id:"7f89b83c52b8e23813bf3c523f4ee172",source:"state_of_union.txt",text:"There is so much we can do. Increase funding for prevention, treatment, harm reduction, and recovery.
Get rid of outdated rules that stop doctors from prescribing treatments. And stop the flow of illicit drugs by working with state and local law enforcement to go after traffickers.
If you’re suffering from addiction, know you are not alone. I believe in recovery, and I celebrate the 23 million Americans in recovery.
Second, let’s take on mental health. Especially among our children, whose lives and education have been turned upside down.
The American Rescue Plan gave schools money to hire teachers and help students make up for lost learning.
I urge every parent to make sure your school does just that. And we can all play a part—sign up to be a tutor or a mentor.
Children were also struggling before the pandemic. Bullying, violence, trauma, and the harms of social media."})
(:Chunk{embedding:[-0.00908626057207584, -0.00292435172013938, 0.00864447560161352, -0.0378220528364182, 0.0161284431815147, 0.00843347422778606, -0.00635642604902387, -0.0124359121546149, -0.0124029433354735, -0.0149151822552085, 0.00922473054379225, 0.0137151107192039, 0.00216606422327459, -0.0297512393444777, -0.00313205644488335, 0.0029902895912528, 0.0331800170242786, -0.00745759112760425, 0.0117171881720424, -0.0158251281827688, -0.0307798720896244, 0.0172098260372877, 0.00914560444653034, 0.0228936839848757, -0.0100687369704247, -0.0129370419308543, 0.0243970714509487, -0.0122512858361006, 0.0173680782318115, -0.016181193292141, -0.00486292969435453, -0.0192802809178829, -0.0312546268105507, -0.0211792960762978, -0.0248586367815733, -0.00360351335257292, -0.0093500129878521, -0.0210737939924002, 0.0238563790917397, -0.0235398765653372, 0.0268763415515423, -0.0187000259757042, -0.00168801355175674, 0.0109193380922079, -0.0248058866709471, 0.0158383157104254, -0.00985773559659719, -0.0147305559366941, -0.0107083357870579, 0.00871700793504715, 0.0317821316421032, 0.00946870166808367, -0.0227090585976839, -0.0196363460272551, -0.00776749989017844, 0.00818290933966637, 0.000205747259315103, 0.0154163120314479, -0.00110281351953745, 0.00194682041183114, -0.0166427586227655, 0.0311755016446114, -0.0260850843042135, 0.0197682213038206, -0.00689711794257164, -0.00621795607730746, -0.0197682213038206, 0.0181725211441517, 0.00317491614259779, 0.00151987164281309, 0.0519327931106091, 0.014374490827322, 0.0134183894842863, -0.0142953647300601, 0.0194912813603878, 0.00624433159828186, -0.00966651551425457, -0.00670919474214315, -0.000735621142666787, -0.0169724486768246, 0.0239750687032938, -0.0368461720645428, -0.0377165526151657, -0.00693008722737432, 0.0166955087333918, 0.00758946733549237, 0.013939299620688, 0.0227618087083101, 0.000712954963091761, -0.0229200590401888, 0.00514646340161562, 0.00191385135985911, 0.00132535444572568, 0.0169988237321377, -0.00103357865009457, 0.0240410063415766, 0.0030727123375982, 0.0168273858726025, -0.00139458931516856, -0.0112094655632973, 0.0104511780664325, -0.000377701275283471, -0.0232497490942478, -0.0183439608663321, -0.00384748401120305, 0.0014300310285762, -0.00634323852136731, 0.00352109083905816, 0.0163921937346458, -0.00606959592550993, -0.00468489713966846, -0.0120534719899297, 0.000771887076552957, -0.0270609669387341, -0.00205891509540379, 0.00582232791930437, -0.0106094293296337, 0.0116050932556391, -0.008960978128016, -0.01201390940696, 0.0167614482343197, 0.011169902049005, 0.00576628092676401, 0.010991869494319, 0.00791256409138441, -0.0110841831192374, -0.00905329175293446, -0.00644873920828104, 0.0131150744855404, -0.00699602486565709, 0.00765540543943644, 0.00407167337834835, 0.0291709844022989, -0.0260323341935873, -0.0202297884970903, 0.0268235914409161, -0.00786640681326389, 0.0214694235473871, -0.0268763415515423, -0.00411453330889344, 0.00723340176045895, 0.0104775531217456, -0.0312018766999245, -0.0156141258776188, 0.00326887797564268, 0.0239750687032938, 0.0177241433411837, 0.0223002415150404, 0.00547945033758879, 0.036898922175169, 0.00509700970724225, -0.0114864045754075, 0.00350460642948747, -0.0145459296181798, 0.0100951129570603, -0.00701580662280321, -0.0110709955915809, 0.0284324791282415, -0.0102797392755747, -0.0102269882336259, -0.0137282982468605, 0.00266224797815084, -0.00280401483178139, 0.0162866935133934, 0.0157328136265278, 0.022010114043951, -0.000333193107508123, -0.00288149202242494, -0.00737846549600363, 0.00870382040739059, 0.0192275289446115, 0.0290127340704203, -0.0112094655632973, 0.00493216468021274, -0.0387715622782707, 0.0242124442011118, -0.00935660675168037, 0.015007495880127, -0.0190297160297632, -0.0318085066974163, 0.00892141554504633, 0.00363318552263081, 0.0115259680896997, 0.0367934219539165, 0.000258394662523642, 0.00795872043818235, 0.0232101865112782, -0.00133194820955396, -0.0173548888415098, -0.0408815778791904, 0.00694327475503087, 0.0206649787724018, 0.00130886991973966, -0.00381451519206166, -0.633849084377289, -0.0145327420905232, 0.0331536419689655, 0.00313865020871162, -0.0157196260988712, -0.00606959592550993, 0.00214133760891855, 0.00902032293379307, -0.0253333915024996, 0.0276939738541842, -0.0199264734983444, 0.0134645458310843, -0.00925769936293364, -0.0344196520745754, 0.0165504459291697, -0.0163921937346458, -0.00382440583780408, -0.0288544818758965, 0.0159833785146475, -0.00650478666648269, -0.0266785267740488, 0.00520910462364554, -0.00169295899104327, -0.018132958561182, 0.00797190796583891, 0.00759606109932065, 0.0013789291260764, 0.00212155608460307, -0.0192011538892984, 0.0106423981487751, -0.017170263454318, 0.0413035824894905, 0.000980003969743848, 0.00642895791679621, 0.0510096624493599, -0.0126798832789063, -0.00903351046144962, 0.0286962315440178, 0.00309743895195425, -0.00309084518812597, -0.033259142190218, -0.016840573400259, 0.0257026441395283, 0.0113347470760345, 0.0039035314694047, 0.015996566042304, 0.0186209008097649, -0.00884888414293528, 0.00714108860120177, 0.00996323674917221, -0.0129831982776523, -0.0120864408090711, -0.0154163120314479, -0.00542669976130128, 0.0107478993013501, -0.0207836665213108, -0.0168669484555721, -0.0259927716106176, -0.00413761148229241, -0.00324744801037014, -0.0109589006751776, 0.0217199865728617, -0.00609926786273718, -0.0281159766018391, -0.0108929630368948, 0.00538384029641747, -0.00753671675920486, 0.0359230376780033, 0.0175263285636902, -0.021350733935833, -0.000853073259349912, 0.0411453321576118, -0.0129172606393695, -0.00840709917247295, 0.0160888787358999, 0.0150338709354401, 0.0250300765037537, 0.0102467695251107, -0.027904974296689, 0.00998301804065704, 0.00418706517666578, -0.0205331034958363, -0.000271994387730956, -0.000356065371306613, 0.0208496060222387, -0.0163394436240196, -0.00825544167309999, 0.00483655463904142, 0.0132733257487416, -0.0130755119025707, 0.0131348557770252, 0.0217199865728617, 0.00396946957334876, -0.0337338969111443, -0.0150206834077835, 0.00665974104776978, -0.00266554486006498, -0.00528163649141788, 0.000186687044333667, 0.0100753307342529, 0.00341558991931379, 0.00722680799663067, 0.00964673422276974, 0.00947529543191195, -0.00386726553551853, 0.00880272686481476, -0.0178692061454058, 0.0192407164722681, 0.0268367789685726, -0.0435454770922661, 0.000676276918966323, -0.000399131153244525, -0.00739165302366018, -0.0116974068805575, -0.00142508570570499, -0.0290391091257334, 0.0213111713528633, 0.0121985357254744, -0.0299886167049408, -0.00145310931839049, 0.00430905027315021, 0.00649819290265441, 0.0130886994302273, 0.00182483496610075, 0.0269950293004513, 0.00451016146689653, 0.0242520086467266, -0.0250828266143799, -0.0174999535083771, -0.00142755836714059, 0.00474094459787011, -0.0201242864131927, 0.0171438883990049, -0.00115638819988817, 0.0106621794402599, 0.0085125993937254, -0.00410464219748974, -0.0389561876654625, 0.0147569309920073, -0.00957420188933611, -0.00200121919624507, 0.0136755472049117, -0.00789937563240528, 0.011354529298842, -0.0456554926931858, -0.0157196260988712, -0.00358373206108809, -0.00607948657125235, -0.0360021665692329, -0.00634983228519559, 0.0130557296797633, -0.00246773078106344, -0.00228640111163259, 0.0152448723092675, -0.00154624681454152, -0.00413101771846414, 0.00986432936042547, -0.00741802854463458, -0.00163114198949188, -0.0123633807525039, 0.0158646907657385, 0.0257685817778111, 0.00104511773679405, -0.009547826834023, 0.000560473243240267, -0.00831478554755449, -0.0134315770119429, 0.0262301489710808, 0.0107544930651784, -0.00440466031432152, -0.00572012411430478, -0.0289863590151072, 0.000537394953425974, 0.0140052381902933, 0.0171834509819746, 0.0183703359216452, 0.00357054430060089, 0.00931704416871071, -0.0224321186542511, 0.0190033409744501, 0.00641577038913965, -0.0156009383499622, -0.0151525596156716, 0.00429256586357951, 0.0247267615050077, 0.011354529298842, 0.00312711112201214, 0.028537979349494, 0.0135041084140539, 0.00130722147878259, -0.022524431347847, 0.0234080012887716, -0.0304633695632219, 0.0153635609894991, 0.0107017420232296, 0.0104445843026042, 0.0233552511781454, 0.00069564621662721, 0.032204132527113, 0.024146506562829, -0.00395628204569221, -0.0252542663365602, 0.0177900809794664, -0.00581903103739023, 0.0209155436605215, -0.0363714173436165, -0.0133128883317113, -0.0202297884970903, 0.0139788622036576, 0.00555198220536113, 0.00268697482533753, -0.0283797290176153, -0.0226167440414429, -0.022643119096756, -0.015785563737154, 0.0219046138226986, -0.00130062771495432, 0.0122974431142211, 4.21642798755784e-05, 0.0155481873080134, 0.0166823212057352, -0.0216672364622355, 0.00437169149518013, -0.00110198929905891, -0.0254652667790651, 0.0224321186542511, 0.00691689923405647, 0.0136623596772552, 0.0170911382883787, -0.0122183170169592, -0.0117435632273555, 0.0280368514358997, -0.00652786483988166, 0.0374264270067215, 0.011051214300096, -0.0177900809794664, -0.00432223780080676, -0.0170911382883787, 0.0356856621801853, 0.00406178273260593, 0.00576298404484987, 0.0392726920545101, 0.0126798832789063, 0.0151921221986413, 0.0174076408147812, 0.0180406458675861, 0.0350790321826935, 4.97626060678158e-05, -0.0240146312862635, -0.00353757524862885, -0.00438817590475082, 0.0232629366219044, 0.00606629904359579, -0.000617344805505127, 0.0310172494500875, -0.00771474977955222, -0.00782025046646595, -0.0043519102036953, 0.0344987772405148, 0.0321777574717999, 0.0220628660172224, 0.0212847962975502, 0.00654764659702778, -0.0140052381902933, -0.00327217485755682, 0.0073586842045188, -0.00656083412468433, 0.00956760812550783, -0.00200781296007335, -0.0126535082235932, -0.00535746477544308, -0.0151657471433282, 0.00882250815629959, -0.0253993291407824, 0.00991048570722342, 0.0178164560347795, 0.00248751230537891, 0.00598717341199517, 0.00105583271943033, 0.0166031960397959, -0.0243047587573528, -0.0410925820469856, 0.00935660675168037, 0.0113611230626702, -0.00710811978206038, -0.0019600079394877, 0.00962035823613405, -0.0036793421022594, -5.89321134611964e-05, -0.0157328136265278, -0.0157328136265278, -0.0146514307707548, 0.00764881167560816, -0.00189406995195895, 0.0135832345113158, 0.000740566523745656, 0.00908626057207584, -0.0170383863151073, 0.0104313967749476, 0.0127128520980477, -0.00321118207648396, 0.0119809405878186, -0.0477918833494186, -0.00618169037625194, 0.00359032582491636, -0.00257652858272195, -0.03112274967134, -0.0241069439798594, 0.00483655463904142, -0.0277994740754366, 0.0568122081458569, 0.00604981416836381, -0.000821752706542611, 0.0107940556481481, 0.0166955087333918, 0.0237376913428307, -0.0264147743582726, -0.0089016342535615, 0.0087895393371582, 0.0176318287849426, -0.012238098308444, -0.0240410063415766, -0.0390616878867149, 0.00405189208686352, 0.156774267554283, 0.00507393153384328, -0.00963354669511318, 0.0111633082851768, -0.00432223780080676, 0.00482666399329901, -0.00489260209724307, -0.0181857086718082, 0.00693668099120259, -0.00678502349182963, 0.0108599932864308, 0.0034386683255434, -0.00159240339417011, -0.0218123011291027, 0.0190297160297632, 0.0278785992413759, 0.00677842972800136, -0.0223398040980101, -0.00619817478582263, -0.018132958561182, -0.011169902049005, -0.000890987634193152, 0.00625751912593842, 0.0211661085486412, 0.0133128883317113, -0.0125809758901596, 0.0326525121927261, 0.0344987772405148, 0.0066960072144866, 0.0022056270390749, -0.0224453061819077, 0.0192934684455395, 0.00632016034796834, -0.000649489578790963, -0.0217463634908199, 0.0243706963956356, -0.0188978388905525, 0.00989070441573858, 0.0185022111982107, 0.00346174673177302, 0.0113017782568932, 0.0364505425095558, 0.0102665517479181, -0.0317821316421032, 0.0205067284405231, -0.0180274583399296, -0.0249377638101578, 0.0117105944082141, 0.00776749989017844, -0.0117171881720424, 0.0254652667790651, 0.00278258486650884, -0.0122117232531309, -0.0195704083889723, -0.00950826425105333, 0.00790597032755613, 0.00154542259406298, 0.0135700469836593, -0.0422530919313431, -0.00038326479261741, -0.0194121561944485, -0.0140316132456064, -0.0177637059241533, -0.0231574364006519, -0.0206913538277149, -0.0185549613088369, -0.00851919315755367, -0.00486622657626867, -0.00300347735174, -0.0160361286252737, 0.0108599932864308, -0.00681139854714274, -0.0346306525170803, 0.00125776790082455, 0.00936320051550865, 0.0016847166698426, 0.0322568863630295, 0.0131941996514797, 0.00936979427933693, 0.00204078201204538, 0.0035936227068305, -0.0429915972054005, 0.0193989686667919, -0.00967310927808285, 0.0119281895458698, -0.0298567395657301, -0.0141371134668589, 0.0137019231915474, -0.0126666957512498, 0.0172757636755705, -0.00180010823532939, 0.00655094347894192, -0.000558824802283198, -0.0308326240628958, 0.0139524871483445, 0.00989070441573858, 0.00624433159828186, 0.0109984632581472, 0.0097456406801939, -0.0101610505953431, 0.00363318552263081, -0.0174603909254074, -0.0292764864861965, -0.00590145355090499, 0.025201516225934, 0.00568385841324925, -0.0235398765653372, -0.00421014335006475, 0.0156932510435581, -0.0426487177610397, 0.0363977923989296, -0.0145591171458364, -0.0340503975749016, -0.0139920497313142, 0.00669930409640074, -0.016959261149168, 0.010616023093462, -0.00802465807646513, -0.00853897538036108, -0.014598679728806, 0.00501458719372749, -0.0259795840829611, 0.0365296676754951, 0.0135172959417105, -0.00125776790082455, 0.0108533995226026, 0.00837413035333157, -0.0371626727283001, 0.00696964981034398, 0.0054893409833312, -0.0166823212057352, 0.0355537869036198, -0.0293556116521358, -0.0146382432430983, -0.0187527760863304, -0.0162603184580803, -0.0129831982776523, 0.0161020662635565, 0.0103456769138575, -0.00239849579520524, 0.00315348641015589, -0.0210342314094305, -0.0097983917221427, -0.0440993532538414, 0.0174999535083771, -0.0353427827358246, 0.00120831443928182, 0.00540032470598817, 0.0076356241479516, 0.0336283966898918, -0.0410662069916725, 0.00242157420143485, -0.0192011538892984, 0.0226958710700274, -0.00636631669476628, -0.0253465790301561, 0.0219573639333248, 0.00440795719623566, 0.0179483313113451, 0.012824947014451, 0.0127985719591379, -0.0265334639698267, 0.00375517085194588, 0.0246080737560987, 0.025953209027648, -0.011202871799469, 0.0110248383134604, 0.0142162395641208, 0.00429586274549365, 0.00307765766046941, 0.0179351437836885, 0.00637291045859456, 0.00247267610393465, -0.012646914459765, 0.0413035824894905, 0.00353757524862885, -0.0216012988239527, -0.0105566782876849, -0.0284324791282415, -0.02360581420362, -0.00638280156999826, -0.00684436783194542, -0.0132073871791363, 0.0118358768522739, -0.0194912813603878, 0.00836094189435244, 0.0287226065993309, 0.0229991860687733, 0.0232761241495609, -0.00521899526938796, 0.00830159801989794, -0.0236453786492348, 0.00476731965318322, 0.0146646182984114, 0.012976604513824, -0.0170383863151073, -0.0327580124139786, -0.00400243839249015, -0.00527833914384246, 0.00229134666733444, 0.0263224616646767, 0.0137414857745171, -0.0141634894534945, -0.00230123731307685, -0.0169065110385418, 0.0285116042941809, -0.00280566327273846, 0.000448378617875278, -0.00885547790676355, -0.0275884717702866, -0.00885547790676355, -0.0175131410360336, -0.0186736509203911, -0.0260191466659307, 0.0240937564522028, -0.0135832345113158, -0.029592989012599, 0.00503766536712646, 0.0146909933537245, -0.00915219914168119, -0.0277203489094973, 0.0026193882804364, -0.00749056041240692, 0.00579265598207712, 0.0142821772024035, 0.014479991979897, 0.00677183596417308, 0.00148937525227666, 0.023183811455965, 0.00929066818207502, 0.0103456769138575, 0.00940935686230659, 0.00783343799412251, -0.0260982718318701, 0.0196099709719419, 0.0251223891973495, 0.0209682937711477, 0.00144651555456221, -0.0293028615415096, 0.00458269333466887, 0.0114798108115792, -0.013530483469367, -0.0125743821263313, -0.0312546268105507, -0.0308326240628958, 0.0195176564157009, 0.00276115513406694, -0.00753671675920486, -0.0121062221005559, -0.0234211888164282, -0.00771474977955222, -0.00291940639726818, -0.000222540853428654, 0.0155086247250438, -0.00173581868875772, -0.00656083412468433, 0.0118556581437588, -0.00559154478833079, 0.00797850172966719, -0.0169724486768246, -0.0167218837887049, 0.0304369945079088, -0.0340240225195885, 0.00829500425606966, 0.00235893297940493, 0.0193594060838223, -0.0181988961994648, -0.0110446205362678, -0.0268235914409161, 0.0238563790917397, -0.0167482607066631, -0.0107544930651784, -0.00278588174842298, -0.0102797392755747, 0.0250960141420364, -0.0214826110750437, -0.00262763048522174, -0.0122578795999289, -0.0207836665213108, -0.0154954371973872, 0.0115919057279825, 0.00939616933465004, -0.0175263285636902, -0.0131150744855404, 0.0112292468547821, -0.00719383917748928, -0.0221024286001921, -0.0181725211441517, 0.0245685111731291, 0.00544977840036154, -0.00702240038663149, 0.00857194419950247, -0.010616023093462, 0.00867085065692663, 0.000684107071720064, -0.0112622156739235, 0.00427937833592296, 0.0190692786127329, -0.017288951203227, 0.0134975146502256, -0.000528740580193698, -0.000831231300253421, -0.0131216682493687, -0.00258147390559316, 0.00664985040202737, -0.0281951017677784, 0.00376176461577415, -0.0305161215364933, -0.0477918833494186, -0.0220233015716076, 0.0255312062799931, 0.0175131410360336, 0.0165768209844828, 0.0186077114194632, -0.0165108833462, 0.0197022836655378, -0.0068509615957737, -0.0151525596156716, -0.0134381707757711, 0.0282742269337177, -0.00371231115423143, -0.00413431460037827, -0.0033348158467561, -0.00119924789760262, -0.000584375811740756, -0.0280632264912128, 0.0207309164106846, 0.0141503009945154, -0.00364307616837323, -0.0020506726577878, 0.00958738941699266, 0.0142294270917773, -0.0107940556481481, -0.0204407889395952, -0.00813675299286842, 0.0103984270244837, -0.0127260396257043, 0.0132667319849133, 0.000586436362937093, -0.00594101659953594, 0.0160756912082434, 0.0196363460272551, 0.0369780473411083, -0.00225013541057706, -0.0301204919815063, 0.00268038106150925, -0.0113874981179833, -0.0076949680224061, -0.0173680782318115, -0.0125743821263313, -0.0127392271533608, 0.0134777333587408, 0.0224453061819077, -0.00445741089060903, -0.00938298180699348, 0.0104248030111194, -0.0348944067955017, 0.00720702670514584, -0.00570693658664823, 0.0112358406186104, 0.0113743105903268, 0.0087895393371582, -0.0108797755092382, 0.0133656384423375, -0.00959398318082094, 0.0100885182619095, -0.00844006799161434, -0.0245289467275143, -0.00229134666733444, -0.0146909933537245, 0.0155218122527003, -0.00362659175880253, -0.0250960141420364, 0.00557835726067424, 0.0107478993013501, 0.00630367593839765, 0.00339251174591482, 0.017288951203227, 0.00529482401907444, -0.00269521703012288, -0.0222606789320707, 0.005420105997473, 0.00308754830621183, -0.0127853844314814, 0.0211265459656715, -0.0396155677735806, 0.00793234538286924, 0.0122908493503928, -0.0069103054702282, -0.00526185473427176, -0.00620476854965091, 0.0126271331682801, -0.0118688456714153, 0.0139524871483445, -0.0183967109769583, 0.0111962780356407, 0.00483655463904142, 0.000932198890950531, 0.0192539058625698, 0.0104313967749476, 0.00568715529516339, 0.00991048570722342, 0.0154690621420741, -0.0259663965553045, -0.0109984632581472, 0.0232629366219044, 0.0165240708738565, 0.00759606109932065, 0.0115721244364977, -0.0256630815565586, 0.0168537609279156, -0.00977861043065786, -0.00955442059785128, -0.0135436719283462, 0.019939661026001, -0.00857194419950247, -0.0118820331990719, -0.000280442676739767, 0.00473105348646641, -0.0118160955607891, -0.0308589991182089, -0.0122315045446157, -0.0268367789685726, -0.00348152802325785, -0.00360681023448706, -0.0241333190351725, 0.000436427333625033, -0.0237113162875175, 0.0217463634908199, 0.017288951203227, -0.00679161725565791, -0.029197359457612, 0.0310436245054007, 0.00664655352011323, 0.0241728816181421, 0.0151789346709847, 0.233789876103401, -0.00250399671494961, -0.00312216579914093, 0.0153767485171556, -0.00450027082115412, -0.0107017420232296, 0.0225376188755035, 0.0172362010926008, 0.00647511472925544, -0.00435850396752357, -0.022735433652997, -0.00892800930887461, -0.0157328136265278, 0.00628389418125153, 0.00743780983611941, -0.0298567395657301, -0.02381681650877, -0.00519921351224184, -0.00582562480121851, 0.00672238226979971, 0.00228145578876138, -0.0065311617217958, 0.00139046821277589, -0.0245948862284422, 0.0120073156431317, 0.0042826752178371, 0.00739165302366018, 0.0034551527351141, 0.0087301954627037, 0.000774771848227829, -0.0220628660172224, -0.0118886269629002, 0.00430905027315021, -0.0037485770881176, -0.0126139456406236, -0.0260323341935873, -0.00378813990391791, -0.0139920497313142, 0.00405189208686352, 0.00353098148480058, 0.0293028615415096, 0.0337338969111443, -0.00870382040739059, -0.00530141778290272, 0.0318612568080425, 0.0279313493520021, 0.00164597807452083, -0.00791915785521269, -0.00741802854463458, 0.0179483313113451, -0.0344196520745754, -0.00694327475503087, 0.0215749237686396, 0.0290918592363596, -0.0238300040364265, 0.00818950310349464, 0.00593112595379353, 0.0110446205362678, -0.0213243588805199, 0.0211661085486412, 0.00403870455920696, 0.026493901386857, 0.000159796691150405, 0.0603992380201817, 0.00337437866255641, 0.00576957780867815, -0.0099368616938591, 0.00561792030930519, 0.0116314683109522, -0.0136623596772552, -0.00874338299036026, 0.0269686542451382, -0.0232101865112782, 0.0168141983449459, -0.0263883993029594, -0.0108929630368948, 0.0222474914044142, 0.0246740113943815, 0.0156273134052753, -0.00913901068270206, -0.0141107384115458, -0.0166691336780787, 0.0151393720880151, 0.00679821101948619, -0.00964673422276974, -0.00654434971511364, 0.0178164560347795, -0.00483325775712729, -0.035369161516428, -0.00838731788098812, 0.00658061541616917, -0.010991869494319, -0.0112160593271255, -0.0171570759266615, 0.00144074601121247, 0.030252369120717, 0.0248454492539167, 0.00793893914669752, -0.00962035823613405, -0.00509041594341397, -0.00723340176045895, 0.0414618328213692, 0.0127326333895326, 0.0246080737560987, -0.00280731171369553, -0.0183703359216452, 0.00642895791679621, 0.0205594785511494, -0.0215749237686396, -0.0237376913428307, -0.0161284431815147, -0.022972809150815, -0.00086131552234292, -0.00799828302115202, 0.00418706517666578, 0.012495256960392, -0.0182912088930607, -0.0154558746144176, 0.0250564515590668, -0.016959261149168, 0.00458269333466887, -0.0175131410360336, 0.0177505183964968, 0.00572671787813306, 0.00197484390810132, -0.00759606109932065, -0.0234080012887716, -0.00878294557332993, 0.0119215957820415, -0.0333382673561573, 0.0243970714509487, -0.00603003287687898, 0.011532561853528, -0.000685755512677133, -0.0231310613453388, -0.0227749962359667, 0.0232101865112782, 0.00967310927808285, -0.00449037970975041, 0.0305952467024326, -0.00821587909013033, -0.0223661791533232, 0.000677925359923393, -0.00340569927357137, -0.00302820396609604, -0.0243706963956356, 0.0364505425095558, -0.0107083357870579, -0.00333976116962731, -0.00400573527440429, -0.037136297672987, 0.0158383157104254, -0.00244135549291968, -0.0137282982468605, 0.027456596493721, -0.0130095733329654, -0.0298567395657301, -0.0269422791898251, -0.00927748065441847, 0.00679161725565791, -0.0470533780753613, 0.0217067990452051, 0.0395891927182674, -0.00371231115423143, -0.0265994016081095, -0.0132799195125699, -0.166163831949234, 0.0114666232839227, -0.0157723762094975, 0.00297545362263918, -0.00206880574114621, -0.019306655973196, -0.00647511472925544, -0.0236321911215782, -0.00758287357166409, 0.0156141258776188, 0.0368461720645428, -0.00111847382504493, -0.00823566038161516, 0.0159833785146475, 0.00891482178121805, 0.0101808318868279, -0.0115127805620432, 0.0195572208613157, 0.0181988961994648, -0.00453983340412378, 0.0241992566734552, -0.00371560803614557, -0.00913901068270206, -0.0159438159316778, 0.0059542041271925, 0.00156273134052753, -0.0222738664597273, 0.0347889065742493, 0.00318810390308499, -0.0277467239648104, -0.00876975804567337, 0.00318315834738314, 0.0353164076805115, 0.0222343038767576, 0.000328865920891985, -0.00793893914669752, 0.0105500845238566, 0.00269521703012288, -0.0126535082235932, 0.0203352887183428, 0.0347625315189362, 0.0255839563906193, 0.00279742106795311, -0.00436839461326599, -0.00171274039894342, 0.0140711758285761, -0.00851919315755367, -0.0142162395641208, -0.015337185934186, -0.0122842555865645, -0.00171768572181463, -0.0191088411957026, 0.00704218167811632, 0.0228673089295626, -0.00832797307521105, -0.0156405009329319, -0.0269159041345119, 0.0112819969654083, 0.0122974431142211, -0.0122183170169592, -0.01556137483567, -0.00722680799663067, 0.0106687732040882, -0.0020852901507169, 0.00269192014820874, -0.0286171045154333, -0.0260323341935873, -0.0130886994302273, -0.051669042557478, 0.00656742788851261, -0.0153635609894991, -0.0100093930959702, -0.0125282257795334, -0.0305161215364933, 0.0024479494895786, -0.00180010823532939, -0.00819609686732292, -0.00503436848521233, -0.0188582763075829, 0.0496908985078335, 0.0117633445188403, 0.00158251274842769, -0.013352450914681, -0.00905988551676273, -0.0102665517479181, -0.00341888680122793, -0.0107808681204915, 0.0134909208863974, -0.0242783837020397, -0.0200187861919403, 0.0109325256198645, -0.0334173925220966, -0.0186077114194632, -0.00842028670012951, 0.020717728883028, 0.0160756912082434, 0.0187527760863304, 0.0215749237686396, 0.0175395160913467, -0.0159438159316778, 0.000905823719222099, -0.00480688223615289, -0.0187000259757042, 0.0208627935498953, -0.00179681135341525, -0.0124161308631301, -0.0154822496697307, 0.0303842443972826, -0.0135041084140539, 0.000537807063665241, -0.039246316999197, 0.0422267131507397, 0.0386133119463921, 0.0137942358851433, 0.0375055521726608, 0.0039463909342885, 0.00310238427482545, -0.0170779507607222, 0.00728615233674645, 0.00644873920828104, 0.0482666380703449, 0.00398595398291945, -0.0138997370377183, -0.000514728773850948, -0.00167235336266458, -0.0104248030111194, -0.130926549434662, -0.0298039894551039, 0.00732571538537741, -0.0112292468547821, -0.0104907406494021, 0.0264147743582726, 0.0147173684090376, 0.019425343722105, -0.0146118672564626, 0.0262960866093636, -0.0125150382518768, -0.022313429042697, -0.0276675969362259, -0.00348152802325785, 0.0185681488364935, -0.00404859520494938, -0.0265466514974833, -0.0193989686667919, -0.0158515032380819, 0.0311755016446114, -0.00467830337584019, -0.0435982272028923, -0.00355405989103019, -0.0180010832846165, -0.00604981416836381, -0.0123699745163321, -0.0159042533487082, 0.0314128771424294, 0.0227222461253405, -0.015112997032702, 0.00797850172966719, -0.00945551320910454, 0.021232046186924, -0.00482996087521315, -0.0077213435433805, 0.00160064571537077, -0.0337075218558311, -0.0167482607066631, 0.0144272409379482, -0.0229068715125322, -0.0119479708373547, -0.0129172606393695, 0.0152976233512163, -0.0460774973034859, -0.00991048570722342, -0.0115919057279825, -0.0168669484555721, 0.011756750755012, 0.0150206834077835, -0.00187099166214466, -0.0309908743947744, -0.0162207558751106, -0.00233585480600595, -0.0165768209844828, -0.000905823719222099, -0.0109523069113493, -0.0120996283367276, -0.00264906045049429, -0.0100027993321419, -0.0110116507858038, 0.005067337770015, 0.00782684423029423, -0.0182120837271214, 0.0236453786492348, -0.00863788183778524, 0.0169196985661983, -0.0104973344132304, -0.0188187137246132, 0.0142030520364642, -0.00940276309847832, -0.0106489919126034, 0.0186209008097649, -0.003123814240098, 0.0231706239283085, -0.0338393971323967, -0.006600396707654, -0.0242256317287683, -0.0125480070710182, 0.00989070441573858, -0.021561736240983, -0.00890822801738977, -0.00424640905112028, 0.0113743105903268, -0.013530483469367, 0.0122183170169592, 0.0110050570219755, 0.00348152802325785, 0.00832137931138277, -0.0102072069421411, -0.0224848687648773, 0.0363186672329903, 0.0178164560347795, 0.0160361286252737, -0.0176186412572861, -0.0158910658210516, 0.0105896480381489, -0.00110034085810184, -0.0131084807217121, 0.0116446558386087, 0.0169460736215115, -0.0102995205670595, 0.0169196985661983, -0.055546198040247, 0.0191879663616419, -0.0182648338377476, 0.0170779507607222, -0.010029174387455, -0.00502447783946991, 0.00672238226979971, -0.015785563737154, -0.011354529298842, 0.0366351716220379, -0.0112226530909538, 0.0412244573235512, 0.0117040006443858, 0.0131941996514797, -0.0400639474391937, -0.022313429042697, 0.0250037014484406, -0.033259142190218, 0.0120534719899297, 0.02360581420362, 0.0245421342551708, 0.00730593362823129, -0.00339910550974309, 0.0209419187158346, 0.000208838100661524, 0.0144008658826351, -0.0163526311516762, 0.0183703359216452, -0.000262309738900512, -0.0102533642202616, 0.0178823936730623, -0.0149811208248138, -0.0236585661768913, 0.0180670209228992, -0.0113281533122063, -0.0418574623763561, -0.000297133257845417, 0.0175263285636902, 0.00161548180039972, 0.0362395420670509, -0.0219309888780117, -0.0235135015100241, 0.00180999899748713, -0.0333910174667835, -0.0036101071164012, 0.0148492446169257, -0.0143481157720089, 0.0149547457695007, -0.00470138154923916, 0.0114798108115792, 0.0119215957820415, 0.00201275828294456, -0.0275884717702866, -0.0202825386077166, 0.00714768236503005, -0.0237640663981438, -0.00702899415045977, 0.0154822496697307, -0.00315183796919882, -0.0193725936114788, 0.0191879663616419, -0.0104116154834628, 0.00749056041240692, -0.0081433467566967, 0.00780046917498112, 0.0228013712912798, 0.00935660675168037, -0.000871206226292998, 0.0199924111366272, -0.0213375464081764, 0.00310403271578252, -0.0090401042252779, 0.0115061867982149, 0.00378154614008963, 0.0216012988239527, 0.0121062221005559, -0.000634653551969677, 0.0136755472049117, -0.000655259180348366, 0.0165504459291697, 0.0167878232896328, -0.00439806655049324, -0.0152712482959032, 0.0320195071399212, 0.013049135915935, 0.00798509549349546, 0.00209023547358811, 0.0126930708065629, -0.00503107160329819, 0.00132617866620421, -0.0330481417477131, 0.00418047094717622, 0.017803268507123, -0.000257570442045107, 0.0139656746760011, 0.0258477088063955, -0.00162619666662067, 0.026493901386857, 0.00380132743157446, -0.00604981416836381, 0.0236453786492348, -0.0218254886567593, 0.0116314683109522, 0.0107017420232296, -0.00417717406526208, -0.00333976116962731, -0.00649489602074027, -0.0104841468855739, -0.00373538956046104, 0.0563902035355568, 0.00952804554253817, 0.0260850843042135, 0.022076053544879, 0.015337185934186, -0.031966757029295, 0.0210474189370871, 0.00185285869520158, -0.00961376447230577, -0.0217859260737896, 0.0248586367815733, 0.0163921937346458, -0.00798509549349546, 0.0123699745163321, -0.0281951017677784, 0.0302259940654039, 0.00728615233674645, 0.0147437434643507, -0.0202561635524035, -0.00323590892367065, 0.0181197710335255, 0.0135964220389724, -0.0226035565137863, -0.0260587092489004, -0.00149679335299879, 0.00274137360975146, -0.0191747788339853, -0.0235926266759634, 3.85840503440704e-05, -0.00799168925732374, 0.0437301024794579, 0.0195967834442854, 0.011202871799469, -0.00822247285395861, 0.00954123307019472, 0.0204276014119387, -0.00259466143324971, 0.00672897603362799, -0.00308754830621183, -0.000726966769434512, 0.0283533539623022, 0.00282709300518036, 0.0131084807217121, -0.0145854922011495, 0.00601684534922242, 0.00384418712928891, -0.0256762690842152, 0.0245289467275143, -0.0233288761228323, 0.0244102589786053, 0.0239223167300224, 0.00516624469310045, 0.0345251522958279, -0.00675864797085524, -0.01858133636415, -0.00631026970222592, 0.0207309164106846, -0.00400903215631843, -0.000349883688613772, -0.0196759086102247, 0.00326228397898376, -0.00723999598994851, -0.0196363460272551, -0.00512008788064122, 0.0245948862284422, -0.0108072431758046, -0.0162735059857368, 0.0241069439798594, 0.00474424147978425, 0.0246871989220381, -0.00590475043281913, 0.0157460011541843, -0.0329426415264606, -0.0283269789069891, 0.0155877508223057, 0.0135964220389724, 0.00621465919539332, -0.00664325663819909, -0.00861810054630041],id:"080a609a0a8c5f4881ee65f8bb848835",source:"state_of_union.txt",text:"As Frances Haugen, who is here with us tonight, has shown, we must hold social media platforms accountable for the national experiment they’re conducting on our children for profit.
It’s time to strengthen privacy protections, ban targeted advertising to children, demand tech companies stop collecting personal data on our children.
And let’s get all Americans the mental health services they need. More people they can turn to for help, and full parity between physical and mental health care.
Third, support our veterans.
Veterans are the best of us.
I’ve always believed that we have a sacred obligation to equip all those we send to war and care for them and their families when they come home.
My administration is providing assistance with job training and housing, and now helping lower-income veterans get VA care debt-free.
Our troops in Iraq and Afghanistan faced many dangers."})
(:Chunk{embedding:[-0.00438266154378653, 0.00235989456996322, -0.00215898011811078, -0.014057207852602, -0.0224888082593679, 0.0420898944139481, 0.00126422918401659, -0.00909904483705759, -0.0207316558808088, -0.000372245267499238, 0.0117415823042393, 0.0175987519323826, 0.0128653412684798, 0.0253629069775343, 0.0011280159233138, 0.0137984026223421, 0.0399922095239162, 0.0202140472829342, 0.0178303141146898, -0.00867678411304951, -0.0357696004211903, 0.00469595193862915, 0.017925662919879, 0.00454611703753471, 0.00734870508313179, -0.0147518953308463, 0.0180618762969971, -0.0285502970218658, 0.00228157197125256, -0.0220801681280136, 0.00809106696397066, -0.0150515642017126, -0.0412181280553341, -0.0259350035339594, -0.00360284047201276, 0.0160050578415394, -0.0078050191514194, -0.0129947438836098, 0.00521356193348765, -0.0288227237761021, 0.018143605440855, 0.00695709185674787, 0.00604786816984415, -0.00176055624615401, -0.0404825769364834, -3.84962040698156e-05, 5.36871739313938e-05, -0.0156100383028388, -0.0263708848506212, 0.0103658279404044, 0.0325822085142136, 0.00963708758354187, -0.0135259758681059, -0.0242595802992582, -0.0134987328201532, -0.00521015701815486, -0.00038012009463273, 0.00564944464713335, 0.00150600774213672, 0.000305628491332754, -0.00151281838770956, 0.0254037715494633, -0.00464487168937922, -0.00441671442240477, -0.0233060866594315, -0.019110718742013, -0.00561198592185974, 0.016522666439414, -0.0273380000144243, 0.00664039608091116, 0.0647830218076706, 0.0121093578636646, -0.000963708735071123, -0.00866997335106134, 0.0270110871642828, 0.00717843836173415, -0.0176668576896191, -0.00572776701301336, 0.00864273030310869, -0.00959622394293547, 0.0261120796203613, -0.0284413266927004, -0.0198871344327927, 0.0308659225702286, 0.033917099237442, -0.0262346714735031, -0.00743043283000588, 0.0226931273937225, -0.00479811197146773, -0.0249270256608725, -0.0199824832379818, 0.00535318069159985, -0.000879426777828485, 0.0033167926594615, 0.0158416014164686, 0.0331543050706387, -0.00820684805512428, 0.0305934958159924, 0.0129606910049915, -0.054784968495369, -0.0255127418786287, -0.00130594451911747, -0.00361986714415252, -0.00907180272042751, -0.0181163623929024, 0.00107267929706722, -0.0167406089603901, -0.00982097536325455, 0.0267522819340229, -0.0161276496946812, -0.000688728236127645, 5.37935920874588e-05, 0.0229383111000061, -0.034707136452198, 0.00521696731448174, -0.00812512077391148, 0.0121093578636646, -0.000550386670511216, 0.00990270357578993, -0.0292041208595037, 0.0349795632064342, 0.00446098390966654, 0.00860186666250229, -0.0276104267686605, -3.71393944078591e-05, 0.00458357576280832, -0.0519517324864864, 0.00811831001192331, 0.0245320070534945, -0.00896283145993948, 0.0137643488124013, -0.00692303851246834, 0.02947654761374, -0.0151605345308781, 0.00548939406871796, 0.00425325892865658, -0.0149970790371299, -0.00225603184662759, -0.032990850508213, -0.0133965732529759, 0.0196828152984381, 0.0194103885442019, -0.0111286221072078, -0.000626155291683972, -0.00787312630563974, 0.0215898007154465, 0.0337808877229691, 0.029040664434433, -0.00214365613646805, -0.00576863111928105, 0.00531231658533216, -0.0152286412194371, 0.0173399467021227, -0.0116530433297157, 0.00328784738667309, -0.0166997443884611, -0.0185250025242567, 0.0319011434912682, -0.0121774645522237, -0.013750727288425, -0.00710352091118693, -0.00175715098157525, 0.0095894131809473, -0.0026425370015204, 0.00813874136656523, 0.0119867660105228, -0.00505691673606634, -0.0119595229625702, 0.00307501410134137, -0.0102909114211798, 0.0136349461972713, 0.0283323563635349, -0.0323915109038353, 0.0265888273715973, -0.0163455903530121, 0.0152286412194371, 0.000933060771785676, 0.013553217984736, -0.0150107005611062, -0.0040898029692471, -0.00578565802425146, 0.0153648545965552, 0.0423895642161369, 0.0230881460011005, -0.0078050191514194, -0.0194512512534857, 0.0167950931936502, 0.0156100383028388, -0.00901050679385662, -0.0142751485109329, -0.00235648918896914, 0.0267386604100466, -0.0164818037301302, -0.0310838632285595, -0.63551652431488, -0.013859698548913, -0.00386164570227265, 0.0139005621895194, 0.00621132412925363, 0.0107608465477824, 0.0195874646306038, -0.00290474761277437, -0.0105360951274633, 0.0157462526112795, 0.00594911351799965, 0.0164273176342249, 0.009534927085042, -0.00617046002298594, -0.00649737194180489, -0.0130424182862043, -0.0244094152003527, 0.00271745445206761, 0.00910585559904575, -0.0150515642017126, -0.00931698642671108, 0.0054212873801589, 0.00687536364421248, -0.000469510036054999, 0.0150651857256889, 0.0146974101662636, 0.00151877768803388, 0.00561539130285382, -0.00942595675587654, 0.009534927085042, 0.0029490168672055, 0.0346526503562927, 0.00962346605956554, 0.00409661373123527, 0.0553298220038414, -0.017748586833477, -0.0197917856276035, 0.0291223935782909, 0.0101478872820735, -0.0125043764710426, -0.0143841188400984, -0.0145203322172165, 0.0124294590204954, -0.0199552420526743, -0.00406596530228853, 0.0149562144652009, 0.00660634273663163, 0.0125997252762318, 6.49673384032212e-05, -0.0111694866791368, 0.00448482111096382, 0.00544512458145618, -0.00815917365252972, 0.00587419653311372, 0.00349727529101074, -0.0133080342784524, 0.00969838351011276, -0.0320101156830788, -0.0119527131319046, -0.0176941007375717, -0.0048253545537591, 0.028250627219677, -0.00014419449144043, -0.0244775209575891, -0.0039910483174026, 0.0286047831177711, -0.0276240464299917, 0.0143841188400984, 0.00242459587752819, -0.0208951123058796, 0.0178030710667372, 0.0238236971199512, 0.00796166434884071, 0.00468914117664099, 0.0316014736890793, 0.00371181103400886, 0.027283513918519, -0.00821365881711245, -0.022052925080061, 0.0269429814070463, 0.00652461452409625, -0.0195193588733673, -0.0402646362781525, -0.0107267936691642, 0.0229383111000061, 0.00632370030507445, -0.0295855179429054, 0.0112239718437195, -0.000621898623649031, -0.0107608465477824, 0.0300214011222124, 0.00790717918425798, -0.0109719773754478, -0.0293675772845745, 0.0155283100903034, 0.00887429341673851, 0.020295774564147, 0.00236159726046026, 0.0135259758681059, 0.00969838351011276, -0.0165499094873667, 0.00518972473219037, 0.00805701408535242, 0.010256857611239, 0.00595251889899373, -0.00755302468314767, 0.00643267063423991, -0.010719982907176, 0.0299941580742598, -0.00809106696397066, -0.00543150352314115, 0.0272698923945427, -0.00406596530228853, 0.0119595229625702, 0.00544852996245027, -0.0256217122077942, -0.00532934349030256, 0.0207997635006905, -0.0160459205508232, -0.0145067116245627, 0.0278283674269915, 0.00674255611374974, 0.0141116930171847, -0.0276921540498734, 0.00779820838943124, 0.0205682013183832, 0.00926931202411652, -0.0109243029728532, -0.00445757852867246, -0.0211130529642105, 0.0162366200238466, -0.00548939406871796, 0.0203775018453598, 0.00102926138788462, -0.00571755133569241, -0.0078050191514194, -0.0137643488124013, -0.0237828344106674, 0.000417791568906978, -0.0156100383028388, -0.00151281838770956, 0.0128449099138379, 0.0166588798165321, -0.00614321744069457, -0.0146293034777045, -0.00452568521723151, -0.0148200020194054, -0.00475724786520004, -0.0245864912867546, 0.0091943945735693, 0.0124975657090545, 0.000204745549126528, -0.0117552038282156, -0.0017980148550123, 0.0363144539296627, -0.000876021455042064, -0.0111694866791368, 0.00234797596931458, -0.000270298158284277, -0.00728059839457273, 0.0167950931936502, 0.0221346523612738, -0.020609064027667, -0.0127495601773262, 0.0167678520083427, -0.0280054435133934, 0.00233265198767185, 0.00176906958222389, 0.0274878330528736, -0.0143160121515393, 0.0109311137348413, -0.0315197445452213, -0.0110537055879831, 0.00113908329512924, -0.00749853951856494, -0.0182253327220678, -0.000182291638338938, -0.0250496175140142, -0.00987546052783728, 0.0187020786106586, 0.00865635182708502, -0.0193286594003439, -0.0137166744098067, 0.00350749120116234, 0.0255808476358652, 0.0111422436311841, -0.00185590551700443, 0.0139346150681376, 0.000201872288016602, 0.0333994887769222, -0.0284958127886057, -0.000518887361977249, -0.00105480139609426, 0.033127062022686, 0.0206635501235723, 0.00473341066390276, -0.0113533744588494, 0.020254909992218, -0.00649737194180489, 0.0160459205508232, 0.0110332733020186, -0.0193286594003439, 0.0308659225702286, -0.00215216935612261, 0.017353568226099, -0.036423422396183, -0.00378672825172544, -0.0192877966910601, 0.0398559980094433, -0.0158552229404449, -0.0110605163499713, 0.000520589994266629, -0.0110332733020186, 0.00286388350650668, -0.0131718209013343, 0.017353568226099, 0.0207861419767141, 0.00768923806026578, -0.000833880505524576, -0.00128891784697771, 0.0380579829216003, -0.0154465828090906, -0.0062555936165154, 0.020609064027667, -0.00847246404737234, 0.0197645425796509, 0.00897645298391581, 0.0108698178082705, 0.0226250216364861, 0.0114963985979557, 0.00980735383927822, 0.0311383493244648, 0.00217770924791694, 0.0172718409448862, 0.0065518575720489, 0.0147110307589173, -0.0115849366411567, -0.0153512330725789, 0.0378400422632694, 0.00657569477334619, 0.00653823604807258, 0.0268612522631884, -0.000293496996164322, 0.0186067298054695, 0.0124975657090545, 0.00796166434884071, 0.0313835330307484, -0.0142751485109329, -0.0109992204234004, 0.0178711786866188, -0.00598657224327326, 0.0105156628414989, -0.0183343030512333, 0.0191788263618946, 0.015133292414248, -0.01954660192132, 0.00742362206801772, 0.0194921158254147, 0.0251313447952271, 0.0165499094873667, 0.00557452719658613, 0.000136532500619069, 0.00413066660985351, -0.0129470694810152, 0.0144249834120274, 0.00635094288736582, -0.019900755956769, 0.0130764720961452, -0.0207588989287615, -0.00105905800592154, -0.000897304795216769, 0.00701498240232468, -0.00233605713583529, -0.025172209367156, 0.028114415705204, 0.0208951123058796, -0.012517997995019, -0.01247713342309, 0.00335425138473511, 0.0234559215605259, -0.0165362879633904, -0.0391204468905926, 0.00950087420642376, 0.010808520950377, 0.00052314403001219, -0.018320681527257, -0.00616364972665906, 0.021044947206974, -0.0176123734563589, 0.00643948139622808, -0.00796166434884071, 0.0226250216364861, -0.0114282919093966, 0.0252403151243925, 0.0161004066467285, 0.00759388878941536, 0.0232924651354551, -0.0137779703363776, 0.0122660035267472, -0.0152831263840199, 0.000309672323055565, -0.00611597485840321, -0.00282301963306963, 0.011046894825995, 0.00296604353934526, -0.00128295854665339, -0.0322825387120247, -0.00598657224327326, 0.00842478964477777, -0.0100865913555026, 0.0453862547874451, -0.017789451405406, -0.00907180272042751, 0.0167814716696739, -0.00545874610543251, 0.00182355486322194, -0.0109379235655069, -0.00259315967559814, 0.00632029492408037, 0.00608192151412368, -0.0134714907035232, -0.0122728142887354, -0.027283513918519, 0.012150221504271, 0.13850162923336, 0.0240552593022585, -0.000752578198444098, -0.00897645298391581, 0.0016141269588843, -0.00944638904184103, 0.00368116307072341, -0.036423422396183, 0.0202685315161943, 0.000371606787666678, -0.001891661551781, -0.00912628788501024, -0.00357559788972139, 0.00675958255305886, -0.0036845684517175, -0.019900755956769, 0.0226658843457699, -0.0166588798165321, -0.0181708484888077, -0.0123681630939245, -0.0140844499692321, 0.0190970972180367, -0.0131786316633224, 0.0358240865170956, 0.0082817655056715, -0.025172209367156, 0.0165771525353193, 0.027678532525897, 0.0296400040388107, 0.00993675645440817, -0.0163183473050594, 0.00875170156359673, -0.00587079115211964, 0.0266569331288338, -0.00892196781933308, 0.00615343358367682, 0.00452227983623743, -0.0118369311094284, 0.0200505908578634, -0.00539745017886162, 0.0322280563414097, -0.00531572196632624, 0.00978011172264814, -0.00882661901414394, 0.0410546734929085, -0.00747810723260045, -0.0108698178082705, 0.00297966483049095, -0.00956217013299465, -0.00833625067025423, 0.0469935722649097, -0.00179631228093058, 0.000932209426537156, -0.0481922477483749, 0.00757345650345087, -0.00574138853698969, 0.0366141200065613, -0.00993675645440817, -0.00820684805512428, 0.0526328012347221, -0.00582311628386378, -0.0118777956813574, -0.0132603598758578, 0.000325847620842978, -0.0205818228423595, -0.0258124116808176, -0.0189745053648949, -0.00916715152561665, -0.00864954106509686, -0.0197917856276035, 0.00851332768797874, -0.0104135032743216, -0.0121297901496291, -0.00186101358849555, 0.0145339537411928, -0.0160867851227522, 0.032200813293457, -0.0142479063943028, 0.00678341975435615, -0.01699941419065, -0.00585716962814331, -0.0242050942033529, 0.00800933875143528, -0.0242732018232346, 0.00686174258589745, 0.0243821721524, 0.00619429768994451, 0.00483557023108006, -0.026139322668314, 0.0383576527237892, 0.011271646246314, 0.0131241464987397, -0.0136145139113069, 0.0111422436311841, 0.0127495601773262, 0.0131513895466924, 0.0112171610817313, -0.00409661373123527, -0.00890153553336859, -0.00873126927763224, -0.000261146342381835, -0.00110332737676799, -0.0238100755959749, -0.0122115174308419, 0.0247090831398964, -0.0226114001125097, 0.00838392600417137, 0.0164954252541065, 0.00529529014602304, -0.0301303714513779, 0.0223525948822498, -0.036505151540041, 0.00265275314450264, -0.00955535937100649, -0.0121366009116173, 0.0121366009116173, 0.00946001056581736, 0.00967114046216011, -0.0216442849487066, -0.00154516904149204, 0.0160322990268469, -0.01234773080796, 0.0421988666057587, 0.000147919083246961, -0.015092427842319, -0.00309374346397817, -0.00313631002791226, -0.0319556295871735, -0.0185250025242567, 0.00821365881711245, -0.00870402716100216, 0.0216987710446119, 0.00296774622984231, -0.0272290278226137, -0.0130424182862043, -0.0225841570645571, -0.0145067116245627, 0.012150221504271, 0.00363689381629229, -0.0121842753142118, -0.0104747992008924, 0.00174182688351721, -0.00868359487503767, -0.0114146703854203, 0.012517997995019, -0.0201731827110052, -0.0263708848506212, 0.0217260140925646, 0.000869636482093483, -0.0040898029692471, -0.0226250216364861, -0.00377991772256792, -0.0163319688290358, 0.00175374560058117, -0.0154738249257207, -0.0316014736890793, -0.00296944892033935, 0.0102704791352153, 0.0249951314181089, 0.00660974811762571, 0.0107404151931405, -0.0206771716475487, 0.0130287976935506, -0.00738956872373819, 0.00517610367387533, 0.00517950905486941, -0.0139278052374721, -0.0095894131809473, -0.020295774564147, 0.00136298383586109, -0.00356197659857571, 0.00624537747353315, -0.0261257011443377, -0.00304096075706184, 0.0102636683732271, 0.0152286412194371, -0.0198871344327927, -0.0283323563635349, -0.0181844681501389, -0.0376493409276009, -0.0247635692358017, -0.0131445787847042, -0.00214706128463149, 0.0175851304084063, -0.032200813293457, -0.00891515705734491, 0.0264526139944792, 0.00409320835024118, -0.00652120914310217, -0.00536680221557617, 0.0120344404131174, -0.00897645298391581, 0.00783226173371077, -0.00908542424440384, 0.00933060795068741, 0.00524080498144031, -0.0272971354424953, 0.0217260140925646, -0.0145339537411928, -0.0146020604297519, 0.0040898029692471, -0.00660293735563755, -0.00901050679385662, 0.000882832100614905, 0.0117415823042393, 0.0171901118010283, -0.0140844499692321, -0.0174216739833355, -0.017748586833477, -0.0233741942793131, -0.0108970599249005, -0.0104611776769161, 0.0106178224086761, -0.0232924651354551, -0.0033355220220983, -0.0147655159235001, -0.000704052217770368, 0.0219303332269192, -0.00668466510251164, -0.0283595994114876, -0.000219005363760516, -0.00582992704585195, 0.00616364972665906, -0.0143841188400984, 0.0184160321950912, 0.00894921086728573, -0.0123000564053655, -0.0290134232491255, 0.0259213820099831, 0.0087380800396204, -0.000927952758502215, 0.0238236971199512, 0.0289861802011728, -0.0197645425796509, 0.00526804756373167, 0.0270383302122355, 0.00191379617899656, -0.0114895878359675, -0.0227884761989117, 0.0158960856497288, -0.00834306143224239, -0.0131786316633224, -0.0039910483174026, -0.0223798379302025, -0.0276104267686605, -0.00855419225990772, -0.0168632008135319, 0.00864273030310869, 0.00263913162052631, -0.0375403724610806, -0.00609894841909409, -0.00574138853698969, -0.0324187539517879, 0.0127699924632907, 0.0117415823042393, -0.00160646496806294, -0.00412045093253255, -0.0315742306411266, -0.00628964696079493, 0.00227986928075552, 0.000342448620358482, 0.0176396165043116, -0.0247908122837543, -0.00076109153451398, 0.00197168672457337, 0.0114078596234322, -0.0206771716475487, 0.0131922531872988, 0.00452909059822559, 0.0313562899827957, -0.0127359386533499, 0.0197645425796509, 0.00169244967401028, -0.0101955616846681, 0.0163319688290358, 0.00770966988056898, -0.0183615460991859, -0.00716481683775783, 0.00450525339692831, -0.00384802441112697, 0.000815576815512031, -0.00329976598732173, -0.0044473628513515, 0.000789185520261526, -0.0108630070462823, -0.00347854592837393, -0.0144930901005864, -0.0118709849193692, 0.0174080543220043, -0.0247635692358017, -0.0155146894976497, -0.00193422811571509, -0.0169313065707684, -0.00305287935771048, 0.0197372995316982, -0.024028018116951, -0.00452568521723151, 0.0274469703435898, -0.0307024661451578, 0.00628964696079493, -0.0192877966910601, 0.00880618672817945, -0.00881299749016762, 0.004767463542521, -0.017748586833477, -0.0231698732823133, 0.00243651447817683, -0.0149834575131536, -0.0241233669221401, -0.0109583558514714, -0.0057992790825665, 0.0194103885442019, 0.0183070600032806, -0.00440649874508381, 0.0203093960881233, 0.00566647108644247, 0.012872152030468, -0.0211266744881868, -0.0238645616918802, 0.0381941944360733, 0.0128108561038971, -0.00468914117664099, 0.00171373295597732, -0.00302223139442503, -0.0159505717456341, -0.0100797805935144, -0.0035960297100246, -0.00464487168937922, -0.00725335581228137, -0.00786631554365158, -0.00483216485008597, 0.0046278452500701, 0.00108544935937971, -0.0115781258791685, -0.0234967861324549, -0.016168512403965, -0.0224751867353916, 0.0344074666500092, 0.0429071746766567, -0.00297285430133343, 0.0256217122077942, -0.0022645452991128, -0.00450184801593423, -0.01502432115376, -0.00227816659025848, -0.0121978968381882, 0.00885386113077402, -0.0140980714932084, -0.0389842316508293, 0.0147110307589173, -0.0225705355405807, 0.0317104458808899, 0.00189336412586272, 0.00129913387354463, -0.0351702608168125, -0.0122523820027709, -0.0326366946101189, 0.0230881460011005, -0.0061772707849741, -0.00531912734732032, -0.00679363589733839, 0.0084792748093605, -0.00446098390966654, 0.0417084954679012, -0.00589122297242284, 0.00447801081463695, -0.0129675017669797, -0.0299669150263071, 0.0198735129088163, -0.00731465173885226, 0.00988227128982544, 0.00370840565301478, -0.015487446449697, -0.00501945847645402, 0.00426687998697162, 0.015133292414248, 0.00421580020338297, 0.00574479391798377, -0.0131786316633224, -0.0107540357857943, -0.00809787772595882, -0.00631007878109813, -0.00715800607576966, 0.0105156628414989, 0.00492070382460952, -0.0322825387120247, -0.00621132412925363, -0.0130492290481925, -0.00325038866139948, -0.000490793376229703, -0.0114827770739794, 0.0418447107076645, 0.00553706847131252, 0.00871764775365591, -0.0021947359200567, -0.00839073583483696, -0.00169159832876176, -0.00392634700983763, 0.0209904611110687, 0.00984140764921904, -0.0219030901789665, 0.0199143774807453, 0.0181708484888077, -0.0346798934042454, -0.0186748374253511, -0.00986864976584911, -0.0105497166514397, -0.0065348306670785, -0.016563531011343, -0.0168087147176266, 0.0105156628414989, 0.000862400163896382, 0.0133148450404406, -0.0296944882720709, -0.000964560080319643, -0.00731465173885226, -0.00728740869089961, 0.000414386246120557, 0.0399649664759636, -0.0146020604297519, -0.0365596376359463, -0.0159505717456341, -0.0146701671183109, -0.0324732400476933, -0.00823409110307693, -0.0467756316065788, 0.00496497284621, -0.0473477244377136, -0.020295774564147, 0.00453249597921968, -0.0029592327773571, -0.0257987901568413, 0.0169449280947447, 0.0122455712407827, -0.00542469276115298, 0.0190426129847765, 0.220229580998421, 0.00212152139283717, -0.0187701862305403, 0.0214263442903757, -0.0271064359694719, -0.0013357411371544, 0.0236057564616203, 0.00400466937571764, -0.00845884252339602, -0.019069854170084, 0.00192912016063929, -0.00636115856468678, -0.00231562531553209, 0.00127614790108055, -0.00158688437659293, 0.00570733519271016, -0.0481377616524696, 0.00440649874508381, -0.0216442849487066, 0.00280599296092987, -0.0016984089743346, -0.00910585559904575, -0.00633391598239541, -0.0138120232149959, 0.0271609220653772, 0.0205000936985016, -0.0136008933186531, 0.0136349461972713, 0.00878575444221497, -0.00765518471598625, -0.0224207006394863, 0.00646672397851944, -0.0120548726990819, 0.00104203133378178, 0.0271473005414009, -0.0125656723976135, -0.0079820966348052, -0.0130900936201215, 0.00621472951024771, 0.0207452774047852, 0.00216068257577717, 0.0292313639074564, -0.0163728334009647, 0.0196010861545801, -0.0159914363175631, 0.0301303714513779, 0.00192741747014225, -0.00574479391798377, 0.008697216399014, 0.00588441221043468, -0.035715114325285, -0.0102841006591916, 0.0163728334009647, 0.00178439356386662, 0.00193252554163337, -0.00633051060140133, 0.0333177596330643, 0.0100252954289317, -0.00218962808139622, 0.0261529441922903, -0.00155793910380453, 0.00355516583658755, -0.0175034031271935, 0.0519789755344391, -0.00141491508111358, 0.00189847219735384, -0.0104475561529398, 0.00296604353934526, 0.00900369603186846, -0.0161957554519176, -0.00799571815878153, -0.00521696731448174, -0.023632999509573, -0.00589462835341692, -0.0204319879412651, -0.0132263069972396, 0.000816428160760552, 0.00622835103422403, 0.00861548818647861, -0.0143023915588856, 0.00732146203517914, -0.0169040635228157, -0.0040898029692471, 0.00666423328220844, -0.00864954106509686, -0.0253629069775343, 0.0218077413737774, 0.00785269401967525, -0.0185794867575169, 0.000601466628722847, 0.0044882264919579, 0.00350068043917418, -0.00345811387524009, -0.00669828662648797, 0.00342916860245168, 0.015773493796587, 0.0117347715422511, 0.0254173930734396, -0.0148608656600118, 0.00395699497312307, -0.0294493045657873, 0.0396652966737747, 0.0102500468492508, -0.00308352755382657, -0.00480151688680053, 0.00211300794035196, -0.00310225668363273, 0.0438606664538383, 0.0230609029531479, -0.00811149924993515, -0.00574479391798377, -0.023156251758337, -0.00873126927763224, 0.00894921086728573, 0.0202276669442654, 0.00654164142906666, -0.0327456668019295, -0.0128449099138379, 0.0133897624909878, -0.028114415705204, 0.0242187157273293, -0.0453317686915398, 0.0281416568905115, 0.0139278052374721, -0.0104407453909516, -0.00296263815835118, -0.043806180357933, 0.0086359204724431, 0.00741000100970268, -0.0480015501379967, 0.00674255611374974, -0.041299857199192, -0.00107012537773699, -0.00967114046216011, -0.0132535491138697, -0.0121570322662592, -0.00703541422262788, 0.0119322808459401, -0.00586738577112556, 0.0373224318027496, 0.00704222498461604, -0.0391476899385452, 0.0405370630323887, -0.0115917474031448, -0.0016039110487327, -0.0290134232491255, 0.0361782386898994, 0.00398083217442036, 0.00276853423565626, -0.024341307580471, -0.0400194525718689, 0.0124975657090545, -0.0115236407145858, -0.0147110307589173, 0.00719887018203735, -0.0375948585569859, -0.0326366946101189, -0.0113193206489086, -0.0278556104749441, 0.0146974101662636, -0.0355516597628593, 0.0149698359891772, 0.0316559597849846, -0.0241097453981638, -0.0228838268667459, 0.0108834384009242, -0.17467987537384, 0.0359602980315685, 0.0324459969997406, -0.0115508837625384, 0.0206363070756197, 0.0214672088623047, 0.0239190459251404, -0.00933741871267557, 0.00290474761277437, -0.00348535645753145, 0.0146429240703583, -0.0073078409768641, -0.0210994333028793, -0.000149515326484106, 0.0016933010192588, -0.00878575444221497, -0.00042992306407541, 0.0305934958159924, 0.0319828726351261, 0.00582311628386378, 0.0211811605840921, -0.0115100191906095, 0.000915182754397392, -0.0281688999384642, 0.0183615460991859, 0.0104339346289635, -0.00156304705888033, 0.0115100191906095, 0.00475043710321188, 0.00822046957910061, -0.00837711524218321, -0.0231153890490532, 0.0298579446971416, 0.00220495206303895, -0.00394337344914675, 0.00179971754550934, -0.0134442476555705, 0.00576182035729289, -0.0182934403419495, 0.0199961047619581, 0.0263572633266449, 0.0102500468492508, -0.00125826988369226, -0.00557452719658613, -0.0183479245752096, 0.0144522255286574, -0.000268169824266806, 0.00306139281019568, 0.0126065360382199, -0.0244094152003527, 0.000622749968897551, -0.0240688808262348, -0.00042907174793072, 0.033208791166544, 0.00851332768797874, -0.00872445851564407, 0.0054996102117002, -0.00304606882855296, -0.00112886726856232, -0.0116734756156802, -0.0231017675250769, -0.0358785688877106, -0.0103045320138335, 0.00174097565468401, -0.00240927189588547, -0.0268748737871647, -0.0155691746622324, 0.00548258330672979, -0.0333994887769222, 0.00885386113077402, -0.0218486059457064, -0.0373496748507023, 0.02240707911551, -0.0428526885807514, 0.00634072674438357, 0.00286728888750076, -0.00674596102908254, -0.00872445851564407, -0.0149970790371299, 0.0365596376359463, 0.00243821716867387, 0.0357968434691429, -0.0252266936004162, -0.0142615269869566, -0.00528166862204671, 0.0219167117029428, -0.0118164997547865, -0.00693325465545058, 0.00557452719658613, -0.0316014736890793, 0.0119390916079283, -0.0334812179207802, -0.0148336226120591, -0.0280599296092987, 0.00734870508313179, 0.0308659225702286, 0.0220801681280136, 0.00600019376724958, 0.00363008305430412, -0.0177622083574533, 0.0136758107692003, 0.000724484212696552, -0.0413271002471447, 0.0295855179429054, 0.0163047257810831, -0.0114146703854203, -0.00342065514996648, 0.00736232614144683, 0.0103385858237743, 0.00495475716888905, -0.00706265680491924, -0.00329636060632765, 0.0217668768018484, 0.00786631554365158, -0.00383099773898721, 0.0032367673702538, 0.0213718581944704, -0.0100525375455618, 0.0156781449913979, -0.0125043764710426, 0.0697411820292473, 0.000447801052359864, -0.0177622083574533, 0.000791313825175166, 0.00477767968550324, -0.027637667953968, -0.104175895452499, -0.00203809072263539, 0.00786631554365158, 0.00871083699166775, -0.0127904238179326, 0.022842962294817, -0.00766880577430129, 0.00834306143224239, -0.00166690966580063, 0.0150788072496653, -0.00856100302189589, -0.0152695057913661, -0.000466956058517098, 0.00071256555384025, 0.00811831001192331, -0.0141116930171847, 0.000139086492708884, -0.0249270256608725, -0.00619429768994451, 0.0286320243030787, 0.0101819401606917, 0.0113806175068021, 0.0150788072496653, -0.0115100191906095, 0.0205682013183832, -0.0268748737871647, -0.0309204086661339, 0.0163455903530121, 0.011074136942625, -0.011796067468822, 0.019110718742013, -0.000610831310041249, 0.0126950750127435, -0.0124498913064599, -0.00717843836173415, 0.00556090613827109, 0.00140299648046494, -0.00755983544513583, 0.0197236780077219, -0.00641564419493079, -0.00270383292809129, 0.0105701480060816, 0.0151877775788307, -0.0282233860343695, 0.0284140836447477, -0.0107267936691642, -0.0292858481407166, 0.0216034222394228, -2.57927240454592e-05, -0.00483557023108006, 0.0260167308151722, 0.00209087342955172, -0.00553366309031844, -0.0103794494643807, 0.000256464001722634, -0.0203775018453598, 0.0116189904510975, 0.0321190841495991, -0.00195976812392473, -0.0163455903530121, 0.0186067298054695, -0.00274469703435898, -0.0273652411997318, 0.0161276496946812, -0.00556090613827109, -0.00605127355083823, -0.0215080715715885, -0.0263572633266449, -0.00635775364935398, -0.0394201129674911, -0.00794804282486439, -0.000796847511082888, -0.00922844745218754, 0.00881980825215578, -0.0259486250579357, -0.0130015546455979, -0.00557793257758021, -0.00477767968550324, 0.00197509210556746, -0.0365596376359463, -0.0121638430282474, 0.0087380800396204, 0.0229246895760298, -0.0183343030512333, 0.0236466210335493, 0.0225160494446754, -0.00829538702964783, 0.00153410178609192, 0.0158279798924923, -0.00336616998538375, -0.000939020072109997, 0.0259213820099831, 0.0018967695068568, -0.0391476899385452, -0.00434520281851292, -0.00613981205970049, -0.00674596102908254, -0.0182934403419495, 0.00135191646404564, 0.0166588798165321, -0.0335084609687328, -0.0172718409448862, -0.0606966242194176, 0.0453317686915398, -0.00243481178767979, -0.00016473290452268, 0.00399445369839668, -0.0117279607802629, 0.00700817164033651, 0.000200808121007867, 0.00586738577112556, 0.0308386795222759, -0.00758026726543903, 0.0430433861911297, -0.000740233866963536, 0.000541873334441334, -0.0282233860343695, -0.00237692124210298, 0.0086359204724431, 0.00821365881711245, 0.019151583313942, 0.00659272121265531, -0.00323506467975676, -0.0119322808459401, 0.0196147076785564, 0.026493476703763, -0.0215898007154465, 0.00295071955770254, 0.000905818131286651, 0.0103590181097388, -0.0105292843654752, -0.0177758298814297, 0.00871764775365591, -0.00669147586449981, -0.00631688954308629, -0.00142172584310174, -0.0143568767234683, -0.0287954807281494, -0.0158416014164686, -0.00412385631352663, 0.0046278452500701, 0.039801511913538, -0.00343768182210624, -0.0195193588733673, -0.0207861419767141, -0.0239599104970694, 0.0178984217345715, 0.0167406089603901, -0.00517950905486941, 0.0215489361435175, -3.28295209328644e-05, 0.0094327675178647, -0.00590484449639916, 0.000683620222844183, 0.00240756920538843, -0.0295310318470001, 0.00127359386533499, 0.0215489361435175, -0.000983289442956448, 0.0230881460011005, -0.0104747992008924, -0.026575205847621, 0.0273380000144243, 0.0156509019434452, 0.034707136452198, 0.00921482592821121, 0.0441058501601219, 0.0144930901005864, 0.00206703599542379, 0.0156917665153742, 0.0035347337834537, -0.0250768586993217, -0.0134714907035232, -0.00132211984600872, 0.0150788072496653, 0.000550812343135476, 0.00344619527459145, -0.00409320835024118, -0.00687536364421248, 0.0168632008135319, 0.0108153317123652, 0.0226522628217936, 0.00214876397512853, -0.00279066897928715, -0.0425530187785625, 0.0221074111759663, 0.0222708657383919, 0.0134170055389404, -0.033127062022686, 0.0094940634444356, 0.0292313639074564, 0.0161548908799887, -0.0141253136098385, 0.0119459023699164, 0.00673574535176158, 0.0130083654075861, 0.0246545989066362, 0.0254310145974159, 0.00758026726543903, -2.88388982880861e-05, 0.0312473196536303, 0.00351770711131394, 0.00157922238577157, 0.00296263815835118, 0.00380716030485928, -0.0174489170312881, -0.0142342848703265, 0.0148744871839881, -0.0325277224183083, -0.0130492290481925, -0.00988227128982544, 0.0222027599811554, 0.0170130357146263, 0.0161140281707048, 0.00832943990826607, 0.0310293789952993, -0.0150651857256889, -0.00311417551711202, -0.00824771262705326, -0.00285537028685212, 0.00156730366870761, 0.0212765093892813, 0.0223253518342972, -0.0277466382831335, 0.00467211427167058, -0.021480830386281, 0.0204864721745253, 0.0086359204724431, 0.0204183664172888, -0.00180312292650342, -0.00516929291188717, 0.0122047076001763, 0.014343255199492, -0.00284685683436692, -0.0308386795222759, 0.00529529014602304, 0.00338149396702647, -0.0211675390601158, 0.0105905802920461, 0.0366958491504192, 0.00230200402438641, 0.0536680221557617, 0.00880618672817945, 0.00158773572184145, -0.0149698359891772, -0.012517997995019, 0.0218894686549902, -0.00314312078990042, 0.014057207852602, 0.00303074484691024, 0.000290304480586201, 0.0238509401679039, -0.0346798934042454, 0.0291223935782909, -0.0236466210335493, -0.0135736502707005, -0.000627432309556752, 0.0173671897500753, 0.00441671442240477, 0.0192741751670837, 0.00319760595448315, 0.00318739004433155, 0.00839073583483696, 0.0295582748949528, 0.0398559980094433, -0.0172582194209099, 0.00333041395060718, 0.00543490890413523, -0.0118369311094284, -0.0213037524372339, -0.0263436418026686, 0.0105769587680697, -0.0182389542460442, -0.0532866232097149, -0.00770285911858082, 0.0350612923502922, -0.00732146203517914, -0.0221891384571791, -0.00890153553336859, 0.0351430177688599, 0.0187429431825876, 0.00473000528290868, 0.00482194917276502, -0.0232107378542423, -0.0251041017472744, 0.0180210135877132, -0.00161242438480258, 0.000545278657227755, -0.023592134937644, -0.00837711524218321],id:"9f06e4a274b6e939bdba891f0eef3a6e",source:"state_of_union.txt",text:"One was stationed at bases and breathing in toxic smoke from “burn pits” that incinerated wastes of war—medical and hazard material, jet fuel, and more.
When they came home, many of the world’s fittest and best trained warriors were never the same.
Headaches. Numbness. Dizziness.
A cancer that would put them in a flag-draped coffin.
I know.
One of those soldiers was my son Major Beau Biden.
We don’t know for sure if a burn pit was the cause of his brain cancer, or the diseases of so many of our troops.
But I’m committed to finding out everything we can.
Committed to military families like Danielle Robinson from Ohio.
The widow of Sergeant First Class Heath Robinson.
He was born a soldier. Army National Guard. Combat medic in Kosovo and Iraq.
Stationed near Baghdad, just yards from burn pits the size of football fields.
Heath’s widow Danielle is here with us tonight. They loved going to Ohio State football games. He loved building Legos with their daughter."})
(:Chunk{embedding:[-0.00538698118180037, 0.00803210586309433, -0.00955980736762285, -0.0231223255395889, -0.0110541526228189, 0.0344766788184643, -0.0128353582695127, -0.0151169039309025, -0.0365847758948803, 0.0148100294172764, 0.00626424187794328, 0.0272184312343597, 0.0122149381786585, 0.0107472781091928, -0.0104937730357051, 0.000652942166198045, 0.0528357811272144, -0.000281232118140906, 0.0133156841620803, -0.00931297335773706, -0.0248835179954767, -0.00765184825286269, 0.0112943146377802, 0.0216413214802742, 0.0030687446705997, -0.00417949678376317, 0.0277254413813353, -0.0392532497644424, 0.013916090130806, -0.0177987199276686, 0.00281357206404209, 0.00504675088450313, -0.045844379812479, -0.0174651611596346, -0.0109540848061442, 0.0089594004675746, -0.0178520884364843, 0.0071982080116868, 0.0174251329153776, -0.0295666884630919, 0.0133690536022186, -0.0071581806987524, 0.00852577388286591, 0.0083856787532568, -0.0553975142538548, -0.00612081168219447, -0.0210142303258181, -0.0318882614374161, -0.0129754533991218, 0.0168113838881254, 0.0451772585511208, 0.0141295688226819, -0.0240296050906181, -0.0318348929286003, -0.0111542204394937, -0.0173717644065619, 0.0151969576254487, 0.0224018376320601, 0.0135024767369032, 0.00293865660205483, -0.0132956700399518, 0.0103269936516881, -0.0155305173248053, 0.00197633844800293, -0.030554024502635, -0.010673894546926, -0.0238294694572687, 0.0336227677762508, -0.00372919207438827, 0.0221083052456379, 0.0508344247937202, 0.0135291619226336, 0.0061775166541338, 0.00272184330970049, 0.00739167211577296, 0.00724490638822317, -0.0200535804033279, -0.00345567357726395, 0.00635096756741405, -0.00486662890762091, 0.0337828770279884, -0.0322351641952991, -0.0131889311596751, 0.0123083349317312, 0.0309809800237417, -0.00991338025778532, -0.0245899856090546, 0.023068955168128, 0.00707812653854489, -0.0175051875412464, 0.00742502836510539, -0.00435961876064539, -0.00651107588782907, 0.0257240869104862, 0.0143697308376431, 0.0145431822165847, 0.0103203225880861, 0.0227087121456861, -0.000343774474458769, -0.054970558732748, -0.00121081992983818, -0.00105237937532365, -0.00749841099604964, -0.00515015423297882, -0.0240696333348751, 0.00537030352279544, -0.0197600480169058, 0.0071581806987524, 0.0294065810739994, -0.0204805359244347, -0.0029036330524832, 0.008999427780509, 0.0272317752242088, -0.00903278309851885, 0.00150101643521339, -0.0215879529714584, 0.00621420796960592, 0.000206910946872085, -0.00583395082503557, -0.0227887649089098, 0.0119280777871609, 0.00512013398110867, 0.0171716287732124, 0.0083856787532568, 0.00928628817200661, -0.0233358033001423, -0.0324753262102604, -0.00106405385304242, 0.0255506355315447, 0.00811216048896313, 0.0186392888426781, 0.00586730660870671, 0.0416015051305294, -0.0333025529980659, -0.00146849441807717, 0.0225886292755604, -0.0161842927336693, 0.00171782996039838, -0.026457916945219, -0.00423953775316477, 0.00927961710840464, 0.00874592270702124, -0.00595736736431718, -0.00917954929172993, -0.0120014604181051, 0.0280189737677574, 0.00815218687057495, 0.018986189737916, 0.00266847363673151, 0.0198534447699785, 0.00756512302905321, -0.0252304188907146, 0.0113276708871126, -0.018692659214139, -0.00290196528658271, -0.00303205335512757, -0.024750092998147, 0.0253104735165834, -0.00117329449858516, -0.00532360514625907, -0.00149017584044486, -0.0046631577424705, 0.0123216770589352, 0.0101268580183387, 0.0204004812985659, 0.0284459292888641, -0.0058706421405077, -0.0104670878499746, -0.0189728476107121, 0.00397269008681178, 0.00988002400845289, 0.0357308648526669, -0.021721376106143, 0.0325820632278919, -0.0304739698767662, 0.0180655661970377, -0.0121882539242506, 0.0239362102001905, -0.0231089815497398, -0.00751842465251684, 0.0159307885915041, 0.0375721082091331, 0.0405074320733547, 0.0145832085981965, -0.0198267605155706, -0.00904612615704536, 0.0205205623060465, 6.30635404377244e-05, -0.0119480909779668, -0.0165178515017033, 0.0130688501521945, 0.0238694977015257, -0.0055204052478075, -0.0286060385406017, -0.631040692329407, -0.0280723441392183, 0.0188794508576393, 0.0218814853578806, 0.00168364017736167, 0.0144764697179198, 0.00157356564886868, -0.00661447923630476, -0.0248034633696079, 0.0212810784578323, 0.00362245319411159, 0.0117813115939498, 0.0132889989763498, -0.0241096597164869, -0.0054603642784059, -0.00503674428910017, -0.0154638048261404, -0.014756659977138, -0.00202470435760915, -0.0131222195923328, -0.0170782320201397, 0.0057872524484992, 0.00193464348558336, -0.0196132827550173, 0.000349403271684423, 0.029860220849514, 0.00975994300097227, -0.00582727929577231, 0.0124084027484059, 0.00526356464251876, -0.012721948325634, 0.0276453886181116, 0.00565716437995434, 0.0122683076187968, 0.0473920926451683, -0.023068955168128, 0.009493094868958, 0.0104070473462343, 0.017998855561018, 0.00548704899847507, -0.0329556502401829, 0.00532026961445808, 0.0211209692060947, -0.00862584169954062, -0.0138627206906676, 0.0035890971776098, 0.0177586935460567, 0.00226153153926134, 0.0132623147219419, 0.00854578707367182, 0.0071781943552196, -0.0114744370803237, 0.00223985011689365, 0.00736498739570379, 0.00600740127265453, -0.00695804506540298, 0.0105471424758434, -0.031247828155756, -9.27711589611135e-05, -0.00839902088046074, 0.0132289584726095, 0.0182923879474401, 0.00431292084977031, -0.0377855896949768, -0.00418283278122544, 0.0197733901441097, -0.0157573372125626, 0.0204671937972307, -0.00147183006629348, -0.0180121976882219, 0.0134357651695609, 0.0275119636207819, -0.00176119268871844, -0.00743837049230933, 0.0538498014211655, -6.56694683129899e-05, 0.021387817338109, 0.00145265040919185, -0.00485995784401894, 0.0272184312343597, -0.00827226880937815, -0.0320750549435616, -0.0332491807639599, 0.00833230931311846, 0.0309276096522808, -0.0229889005422592, -0.0224285218864679, 0.0153970932587981, 0.00538698118180037, 0.019012875854969, 0.0230022426694632, 0.00155855540651828, -0.0149834798648953, -0.0255506355315447, 0.00316714472137392, 0.0151702733710408, 0.0218681413680315, 0.00118997250683606, -0.00186959945131093, -0.0175985842943192, -0.0128487013280392, -0.00822557043284178, 0.004746547434479, -0.00624089268967509, 0.0183857847005129, 0.00392265617847443, -0.0268715303391218, 0.00186459603719413, 0.0233224611729383, -0.0110274674370885, 0.00279689393937588, -0.00540365930646658, -0.00767853297293186, -0.0118413520976901, 0.00632761837914586, -0.0178921166807413, 0.0204805359244347, 0.015090218745172, -0.0184524953365326, -0.0173584222793579, 0.0285259839147329, 0.0108540169894695, 0.00793870911002159, -0.00714483857154846, 0.0136759281158447, 0.020040238276124, -0.00853911601006985, -0.00571386935189366, -0.0158774182200432, -0.00987335294485092, 0.00365580897778273, -0.0268715303391218, 0.0257240869104862, -0.00849908869713545, 0.0068513061851263, -0.00218314514495432, 0.0040894360281527, -0.00292531424202025, 0.00412612734362483, -0.0260176192969084, 0.0029770159162581, 0.00651774695143104, 0.012234952300787, 0.0191329568624496, -0.0276987571269274, -0.0152103006839752, -0.0253771860152483, 0.00154437916353345, -0.0224552061408758, -0.00240829749964178, 0.001294209738262, -0.00433960556983948, -0.000136133850901388, 0.0139294331893325, 0.0340497232973576, 0.000623338797595352, 0.0275920182466507, -0.00678459461778402, -0.0303672309964895, -0.0252837892621756, 0.0192263536155224, -0.0010840673930943, -0.00098483357578516, -0.0218281149864197, 0.0109941121190786, -0.00887934677302837, -0.000372335460269824, 0.0265379715710878, 0.0110007831826806, -0.0112209320068359, 0.0124817853793502, -0.0278054960072041, 0.00491666281595826, 0.00825892575085163, 0.0109207285568118, 0.00785865541547537, 0.000308750750264153, -0.0234558843076229, -0.0117546264082193, 0.0170515477657318, 0.0119681051000953, -0.0135024767369032, 0.021054258570075, 0.0125351557508111, 0.0174518190324306, 0.00700474344193935, -0.00451305601745844, 0.0178654324263334, -0.00514681870117784, 0.0214278437197208, -0.0302871763706207, 0.0114544238895178, -0.00752509571611881, 0.0278855506330729, 0.0136625850573182, -0.00371584971435368, -0.00244498904794455, -0.00294532789848745, 0.0163977704942226, 0.00222317222505808, 0.0137026123702526, -0.029166417196393, 0.013582531362772, -0.00586063554510474, 0.0101602133363485, -0.00772523134946823, -0.0117813115939498, -0.0193731188774109, 0.0322351641952991, -0.0189328212291002, -0.0156906247138977, -0.00501673063263297, -0.0212944205850363, 0.0201469771564007, -0.0137026123702526, 0.0227887649089098, 0.00808547530323267, -0.00159024354070425, -0.00432626297697425, -0.0124617721885443, -0.000436962582170963, -0.0114811081439257, -0.00485995784401894, -0.014770002104342, -0.00965987518429756, 0.01357586029917, 0.000974826805759221, 0.00544702215120196, 0.0231756940484047, 0.00307041266933084, -0.000732579443138093, 0.0113877113908529, 0.0186392888426781, 0.0245099309831858, 0.000501589674968272, -0.0125284837558866, 0.00377255468629301, -0.00582727929577231, 0.0507810562849045, 0.00935967173427343, 0.00213811453431845, 0.0157973635941744, -0.00112909788731486, 0.0312745124101639, 0.00354239880107343, 0.000549955759197474, 0.0316480994224548, -0.00483994418755174, -0.0250703115016222, 0.000854745507240295, 0.00224318564869463, -0.00112909788731486, -0.00724490638822317, 0.000348360917996615, 0.017958827316761, -0.0375987961888313, -0.00663782842457294, 0.0407209098339081, 0.0382659137248993, 0.0198667868971825, 0.0179054588079453, -0.00636764522641897, 0.00893271621316671, -0.00573721854016185, 0.00543367955833673, 0.00792536698281765, -0.0237494166940451, 0.0147966863587499, -0.0126085383817554, -0.0077919433824718, -0.0135358329862356, -0.0097132446244359, 0.0210008881986141, -0.0413346588611603, 0.0240162629634142, 0.0283925607800484, -0.0202270299196243, -0.00447302917018533, -0.00679460121318698, 0.00643102172762156, -0.0156505983322859, -0.0279656052589417, 0.0257907994091511, 0.00795205123722553, -0.0144231002777815, -0.0206273011863232, 0.00816552992910147, 0.0227754227817059, -0.0175852421671152, 0.00297368038445711, 0.00610079802572727, 0.00480992393568158, 0.00215979595668614, 0.0161976348608732, 0.00733163161203265, 0.0134357651695609, 0.004416324198246, -0.0204004812985659, -0.0102536100894213, -0.00253171450458467, 0.0071381670422852, -0.00831896718591452, 0.01120091881603, 0.0193330924957991, 0.0170515477657318, 0.00448303576558828, -0.0221883598715067, -0.011541148647666, -0.00844571925699711, -0.0193998031318188, 0.0113943824544549, -0.0174785032868385, -0.00596070336177945, -0.0155305173248053, 0.0107739623636007, 0.00278021604754031, 0.0207206979393959, -0.00845239032059908, -0.0031904939096421, -0.0130888633430004, 0.0121015282347798, -0.0204138234257698, -0.0126885930076241, -0.0116478875279427, 0.125951960682869, 0.0327154882252216, 0.00010851098340936, -0.00288528716191649, 0.00417949678376317, -0.00638432335108519, 0.00143513851799071, -0.0339696705341339, 0.00075259298318997, 0.0146365780383348, 0.0184524953365326, -0.0110674947500229, 0.00227153836749494, 0.0270716659724712, 0.00637765228748322, 0.00528357783332467, 0.0101001728326082, -0.0184791814535856, -0.0233224611729383, -0.0230956394225359, -0.00789868179708719, 0.000294157536700368, 0.0226286575198174, 0.0264178905636072, 0.0077919433824718, -0.0159841571003199, 0.0181322786957026, 0.0120014604181051, 0.0329556502401829, 0.0227087121456861, -0.00695137400180101, 0.0242964532226324, 0.00890603102743626, 0.031541358679533, -0.00749841099604964, 0.00547037133947015, 0.0157439950853586, 0.00598405255004764, 0.038986399769783, 0.00620420137420297, 4.16427828895394e-05, -0.00745838414877653, 0.00341397849842906, 0.00245332811027765, 0.0324486419558525, -0.0201069489121437, -0.0220149084925652, 0.0129821244627237, 0.00390931405127048, -0.0171049162745476, 0.0401872135698795, 0.00723823485895991, -0.0346901565790176, -0.0344499945640564, 0.0121682398021221, 0.0127953318879008, 0.0143030192703009, -0.0182790458202362, -0.029166417196393, 0.0465648658573627, 0.0137292975559831, -0.0197066776454449, -0.0321017391979694, -0.00847240444272757, -0.0155972288921475, -0.00661781476810575, -0.0293532107025385, -0.00473320530727506, -0.00927961710840464, -0.0176119264215231, 0.00513681210577488, -0.0311144031584263, 0.00145014864392579, 0.0130955344066024, 0.0116812437772751, -0.0154638048261404, 0.0228554774075747, -0.0192263536155224, 0.000140094867674634, -0.0185725763440132, 0.00625423528254032, -0.00468984246253967, 0.0036925005260855, -0.0237093884497881, -0.00501673063263297, -0.00282691442407668, -0.00599072361364961, -0.0123683754354715, -0.0262844655662775, 0.0538231134414673, -0.000659196404740214, 0.00817887205630541, -0.00631094025447965, -0.00871256645768881, 0.0227754227817059, 0.014930110424757, 0.017625268548727, 0.0144097581505775, -0.00518684601411223, -0.00850575976073742, 0.00917954929172993, -0.0162109769880772, -0.0193197503685951, -0.00953979324549437, 0.013902748003602, -0.0266847368329763, 0.00976661406457424, 0.00678459461778402, 0.0143830729648471, -0.037305261939764, 0.030180437490344, -0.0203204266726971, -0.0136759281158447, -0.0252704452723265, -0.00247834506444633, 0.0208007525652647, -0.00277020921930671, 0.00144431134685874, -0.0307408180087805, 0.00689800456166267, 0.0150501914322376, -0.00849241763353348, 0.0217080339789391, -0.0132022732868791, -0.0157173108309507, -0.0103736920282245, -0.000345442269463092, -0.0277788117527962, -0.0143030192703009, -0.0108540169894695, 0.00672788918018341, 0.0114811081439257, -0.0121548976749182, -0.0409077033400536, -0.0138760637491941, -0.012721948325634, -0.00201636552810669, 0.0212677363306284, 0.00159191130660474, -0.0212810784578323, 0.000485745607875288, 0.0015485486947, -0.0161309242248535, -0.0146766053512692, 0.0191863253712654, -0.0292197875678539, -0.0283925607800484, 0.00544368661940098, 0.00823891256004572, -0.00606744224205613, -0.0176119264215231, -0.0106071829795837, -0.00847240444272757, 0.0133290262892842, -0.0296734273433685, -0.0132489716634154, 0.0138226943090558, 0.00713149597868323, 0.0287127774208784, 0.0120348166674376, 0.0174785032868385, -0.00720487907528877, 0.0132089452818036, -0.0135358329862356, 0.0156372562050819, 0.00884599052369595, 0.00554708996787667, -0.000933965784497559, 0.0153437238186598, 0.0134757924824953, 0.0128953997045755, 0.00458310358226299, -0.0225219186395407, -0.0152903543785214, 0.0219348538666964, -0.00617418112233281, -0.0208541229367256, -0.0208140946924686, -0.0146232359111309, -0.0266180261969566, -0.035277221351862, 0.0107672912999988, -0.00824558362364769, 0.000387762585887685, -0.0176119264215231, -0.0104737589135766, 0.0200802646577358, 0.00118913862388581, -0.00920623447746038, -0.00875926483422518, -0.0128420293331146, 0.00592734711244702, -0.0139561174437404, -0.0145698664709926, -0.012715277262032, -0.00766519084572792, -0.0340497232973576, 0.00191296206321567, -0.00795205123722553, -0.018319072201848, 0.00593735417351127, 0.00961317680776119, 0.00172783678863198, -0.0137960091233253, 0.011694585904479, 0.0280723441392183, -0.0185859203338623, -0.0264979433268309, -0.0135491751134396, -0.0319949984550476, -0.0145298391580582, -0.0159974992275238, -0.00163110462017357, -0.0197467058897018, 0.0147166326642036, -0.0170782320201397, -0.00251170084811747, 0.016317717730999, 0.00394266983494163, -0.0262711234390736, -0.00312044634483755, -0.021054258570075, 0.000304998218780383, -0.0107205929234624, 0.0175452139228582, 0.00911950878798962, 0.000311877869535238, -0.0238961819559336, 0.0179454851895571, 0.0121749117970467, 0.00662782182916999, 0.0156105710193515, 0.0287394616752863, -0.0192663799971342, 0.020373797044158, 0.0182790458202362, 0.0347702130675316, -0.0126018673181534, -0.032208476215601, -0.00742502836510539, -0.00326554477214813, -0.00905946828424931, -0.0132756568491459, -0.0284459292888641, -0.0414947681128979, 0.00973992887884378, -0.0123216770589352, 0.0191596411168575, -0.0211876817047596, -0.0319949984550476, 0.0101602133363485, -0.00910616666078568, -0.0276720728725195, 0.031541358679533, 0.0275386497378349, -0.00722489273175597, -0.0256974026560783, -0.0188794508576393, -0.00626424187794328, -0.0133223552256823, -0.000510762562043965, 0.0265246294438839, -0.0183991268277168, 0.000878094637300819, -0.00988002400845289, 0.011694585904479, -0.016931464895606, 0.0187060013413429, -0.0125084705650806, 0.031247828155756, -0.00302871759049594, 0.00324886664748192, 0.0129020707681775, -0.0224952343851328, 0.0099800918251276, -0.00837900768965483, -0.0100534744560719, -0.00316881248727441, -0.0149567956104875, 0.00587397767230868, 0.00855245813727379, 0.00418616831302643, -0.00256507028825581, -0.0242430828511715, -0.00046448121429421, -0.000494501553475857, -0.0105538135394454, -0.011207589879632, 0.0288195163011551, -0.00685797724872828, -0.00329389725811779, -0.0163577441126108, -0.0273251701146364, -0.00345567357726395, 0.0130354939028621, -0.00551706925034523, -0.0102869663387537, 0.0241096597164869, -0.0390931405127048, 0.00820555631071329, -0.0132356295362115, 0.0214278437197208, -0.012728619389236, 0.0171449445188046, -0.0111942468211055, -0.0434160679578781, 0.00853911601006985, -0.0118880504742265, -0.0497937202453613, -0.0259375646710396, 0.00728493323549628, 0.00591734051704407, -0.00215145689435303, -0.0151702733710408, 0.00972658675163984, 0.0120815150439739, 0.0110875079408288, -0.0300736986100674, -0.0280189737677574, 0.0423219949007034, 0.002965341322124, -0.0043562832288444, 0.0222017019987106, -0.00663782842457294, -0.0144631275907159, -0.0123883895576, 0.0139294331893325, 0.00333725987002254, 0.0143030192703009, -0.00174951809458435, -0.0123683754354715, 0.00293698883615434, -0.0108406748622656, -0.0188394244760275, -0.023442542180419, -0.0170115195214748, -0.0218948274850845, 0.0238294694572687, 0.0231890361756086, 0.00698472978547215, 0.0326087474822998, 0.00301871099509299, -0.0125151416286826, -0.0104737589135766, -0.0267781335860491, -0.00620086584240198, -0.0013959453208372, -0.00216980278491974, -0.0113143287599087, -0.021027572453022, -0.00260843313299119, 0.0221483316272497, 0.0203871391713619, 0.0243097953498363, -0.0380524359643459, -0.00247834506444633, -0.0172116551548243, 0.0159307885915041, -0.0159708149731159, 0.0165712218731642, -0.00391598511487246, 0.0116745727136731, -0.0095331221818924, 0.0236426778137684, -0.00717152329161763, 0.00617084559053183, -0.00417949678376317, -0.0516616515815258, 0.0336761400103569, -0.0155438594520092, 0.00670454045757651, 0.00446635810658336, -0.0269515849649906, 0.010020119138062, 0.00204471801407635, 0.029166417196393, 0.000765518401749432, 0.00737165845930576, -0.0100935017690063, -0.0160908959805965, 0.00450304942205548, 0.00331057514995337, -0.0128553723916411, 0.0172116551548243, -0.0119947893545032, -0.0351171158254147, 0.00379256834276021, 0.00305873807519674, 0.00427622906863689, -0.0020864128600806, 0.0129354260861874, 0.0366648286581039, 0.0133757246658206, 0.0069113471545279, 0.00869922433048487, -0.0184925235807896, -0.0154904900118709, -0.0202537160366774, 0.0239762365818024, 0.0372518934309483, -0.0102135827764869, 0.0353572778403759, 0.0154104353860021, -0.00588064873591065, -0.0202270299196243, -0.0106005119159818, -0.00182123330887407, -0.018652630969882, 0.00765851978212595, -0.0233758296817541, 0.00434961216524243, 0.00305707030929625, 0.00141929450910538, -0.0113410130143166, -0.00455308333039284, -0.0180789101868868, -0.0223084408789873, -0.00980664137750864, 0.0367715694010258, -0.00679126568138599, -0.0180255398154259, -0.0293798949569464, 0.00248835165984929, -0.0296734273433685, -0.0136492429301143, -0.0561446882784367, 0.000333350733853877, -0.0304739698767662, -0.0187460277229548, -0.0122549654915929, -0.00912617985159159, -0.0270983502268791, 0.0134290941059589, -0.0136759281158447, 0.00627424893900752, 0.0196266248822212, 0.226500049233437, -0.0116345454007387, -0.0188394244760275, 0.020360454916954, -0.0067078759893775, -0.00313879223540425, 0.00981998350471258, -0.0147166326642036, -0.00544035062193871, 0.0049500185996294, -0.0193998031318188, -0.0158507339656353, 0.00316214142367244, 0.00404273765161633, -0.00618418771773577, 0.0101402001455426, -0.0464314445853233, 0.0127819888293743, -0.0278054960072041, -0.00853911601006985, -0.0129954665899277, -0.00845239032059908, 0.0084257060661912, 0.00294699566438794, 0.0263912044465542, 0.00438296794891357, 0.000360035483026877, 0.00771856028586626, 0.0165578797459602, -0.000352738861693069, -0.0216146372258663, 0.00209475192241371, 0.00498003931716084, 0.0081188315525651, 0.0111742336302996, -0.0182390175759792, -0.00333058880642056, -0.025443896651268, 0.025764113292098, 0.00437296135351062, 0.0149034261703491, 0.0284192450344563, -0.0266180261969566, -0.00444300891831517, 0.00016302707081195, 0.0314613059163094, 0.0143297035247087, -0.0143163613975048, 0.00242831115610898, 0.00500672403723001, -0.0450438372790813, -0.0164244566112757, 0.0257507711648941, 0.0254172123968601, 0.00383593095466495, 0.0165979061275721, 0.0417882986366749, 0.0033022363204509, -0.030233807861805, 0.0447236187756062, -0.00420618150383234, 0.0160108432173729, -0.0265246294438839, 0.0313011966645718, -0.00726491957902908, 0.0138360364362597, -0.0233358033001423, 0.018665973097086, 0.00501339510083199, -0.0185192078351974, -0.0108139896765351, 0.00361244636587799, -0.0303138606250286, -0.0147433169186115, -0.0285793542861938, -0.0177987199276686, 0.0140094868838787, 0.00911283772438765, -0.00146182323805988, 0.00837233662605286, -0.00771856028586626, 0.00185959262307733, -0.00477323215454817, -0.00194131466560066, -0.0131689179688692, -0.0182123333215714, 0.00595736736431718, -0.00120498263277113, -0.022415179759264, -0.00301370746456087, -0.000801376008894295, -0.0175852421671152, -0.0175985842943192, -0.00263511785306036, 0.0259108804166317, 0.0130555080249906, 0.00052410492207855, 0.0115945180878043, 0.00321551086381078, 0.00043154222657904, -0.0149968219920993, 0.0123216770589352, 0.0011974775698036, 0.00793870911002159, 0.00862584169954062, 0.00880596321076155, -0.00571720488369465, 0.0231890361756086, 0.0226553417742252, -0.0209074914455414, 0.00217480608262122, 0.00221983669325709, -0.00490332068875432, -0.0158240497112274, 7.35915018594824e-05, 0.0128086740151048, -0.0208541229367256, -0.00224318564869463, 0.00964653212577105, -0.00445301551371813, 0.0141695952042937, -0.0436829142272472, -0.00170198595151305, 0.0217614024877548, 0.00530692702159286, -0.00367582263424993, -0.038692869246006, -0.0106872376054525, 0.00788533966988325, -0.0387462377548218, -0.00107823021244258, -0.0094463974237442, 0.000906447181478143, -0.0179721713066101, -0.0228821616619825, -0.00841236300766468, -0.00119414203800261, -0.000161671981913969, -0.00678125862032175, 0.0310610346496105, 0.00592734711244702, -0.0189995337277651, 0.015944130718708, 0.00800542160868645, 0.00453306967392564, -0.0230289287865162, 0.0143030192703009, -0.0157573372125626, -0.0145164970308542, -0.0196266248822212, -0.0401605293154716, 0.0019846772775054, -0.0104670878499746, 0.00391932064667344, 0.0247634369879961, -0.043816339224577, -0.0224285218864679, -0.0144631275907159, -0.0170915741473436, 0.0180255398154259, -0.0198801290243864, 0.0222817547619343, 0.039706889539957, -0.0203070845454931, -0.0231089815497398, 0.00161442661192268, -0.168861016631126, 0.0225619450211525, 0.00655110320076346, -0.0042128530330956, 0.0041928393766284, 0.0018912807572633, 0.0199601836502552, -0.0128620434552431, -0.000964820035733283, 0.0162643473595381, 0.0242831110954285, -0.00557377468794584, -0.0310343485325575, 0.00229321955703199, 0.0116545585915446, -0.00722489273175597, 0.00234992476180196, 0.0349303223192692, 0.0425354726612568, -0.00943972542881966, 0.0151169039309025, -0.00502340169623494, 0.0126952640712261, -0.0272184312343597, 0.00775858713313937, -0.00479324581101537, -0.00659446557983756, 0.00212143664248288, -0.000400062592234462, 0.00670454045757651, -0.0233891718089581, -0.00747839780524373, 0.019679993391037, 0.00329723278991878, -0.00484327971935272, 0.00384927331469953, -0.0081588588654995, -0.00513014057651162, -0.0138226943090558, 0.0113943824544549, 0.0239495523273945, 0.0193064082413912, 0.000833898026030511, -0.010673894546926, -0.0338362455368042, 0.00244165351614356, -0.00166696216911077, 0.0171849709004164, 0.0326621197164059, -0.00896607153117657, 0.00733830267563462, -0.0134824635460973, 0.00192463665734977, 0.0265646558254957, -0.000672538764774799, -0.0219748802483082, 0.00102736242115498, 0.000878928520251065, -0.0046431440860033, 0.00851910281926394, -0.0105938408523798, -0.0160908959805965, -0.00361244636587799, 0.0128020029515028, 0.00101902335882187, -0.0399470515549183, -0.0362378731369972, 0.0011858029756695, -0.0291397329419851, 0.0100801596418023, -0.0134357651695609, -0.0275119636207819, 0.00907281041145325, -0.0184524953365326, 0.00636764522641897, -0.0124417589977384, -0.006197530310601, 0.000342523620929569, -0.00824558362364769, 0.00859248545020819, 0.0099000371992588, 0.0311410892754793, -0.0103003084659576, -0.015103560872376, -0.0156105710193515, 0.020373797044158, -0.00886600371450186, 0.0104470746591687, -0.0169181227684021, -0.0233358033001423, 0.0224818903952837, -0.0361845046281815, -0.0129354260861874, -0.0198401026427746, -0.0043762968853116, 0.0306874476373196, 0.0242297407239676, 0.0196266248822212, 0.0213611330837011, -0.00387929356656969, -0.00573388300836086, 0.000362120219506323, -0.0402405820786953, 0.0351704843342304, 0.00426955800503492, 0.00502673722803593, -0.00723823485895991, 0.00413279887288809, 0.0173450782895088, 0.0067078759893775, -0.0306874476373196, 0.0144097581505775, 0.0100401323288679, 0.000387345644412562, 0.00700474344193935, -0.0184524953365326, 0.0158507339656353, -0.0105004440993071, 0.0063409605063498, -0.0134557783603668, 0.0666051059961319, 0.0185058657079935, -0.0136759281158447, 0.0108807012438774, 0.00694470293819904, -0.035917654633522, -0.121895879507065, -0.0241763722151518, 0.0124951284378767, 0.0102869663387537, -0.00733163161203265, 0.0122082671150565, 0.00925960391759872, 0.0197333637624979, -0.0149434525519609, 0.0337828770279884, 0.000836399733088911, -0.0109407426789403, -0.0106271961703897, -0.00076134892879054, 0.0398936830461025, -0.00854578707367182, -0.0192530378699303, -0.014609893783927, -0.0163444019854069, 0.0323152169585228, 0.00566717097535729, -0.00809214636683464, 0.0184925235807896, -0.0287127774208784, -0.0155305173248053, -0.0155972288921475, -0.00310210068710148, 0.0225619450211525, 0.00880596321076155, -0.00545702874660492, 0.0114344097673893, -0.00677458755671978, 0.00892604421824217, -0.00964653212577105, -0.00819221418350935, -0.00624422868713737, -0.00546369981020689, -0.0133623825386167, 0.0306874476373196, -0.0286860931664705, -0.0106538813561201, 0.0177987199276686, 0.0167446732521057, -0.0182256754487753, 0.0110808368772268, -0.00847240444272757, -0.0250035990029573, 0.0209608618170023, 0.0150235071778297, -0.010360348969698, -0.00911950878798962, -0.00934632960706949, -0.00596070336177945, -0.0162510052323341, -0.00390931405127048, -0.0324486419558525, 0.0122015960514545, 0.0252437610179186, -0.0173183940351009, 1.65346336871153e-05, 0.0104404035955667, -0.00353906326927245, -0.0167046450078487, 0.0199068132787943, -0.00614749640226364, -0.0252037346363068, -0.0149034261703491, -0.010193569585681, 0.0199334993958473, -0.0313812494277954, -0.00399270374327898, -0.0173851065337658, -0.0170115195214748, 0.0240029208362103, -0.0189461633563042, -0.00362578872591257, -0.00812550261616707, 0.00349570065736771, -0.00263011432252824, -0.0285259839147329, -0.00775858713313937, 0.000441549025708809, 0.00617084559053183, -0.00215312466025352, 0.0392265655100346, 0.0128020029515028, -0.00495669012889266, 0.00222817552275956, -0.00232991110533476, 0.00115578272379935, -0.00237827724777162, 0.0272718016058207, 0.00336894812062383, -0.0246300119906664, -0.00759847881272435, 0.00935967173427343, -0.00915953610092402, -0.0289796255528927, -0.0069113471545279, 0.0163043737411499, -0.0178520884364843, -0.0153837511315942, -0.0572120770812035, 0.0256040059030056, 0.000104393613582943, 0.00486662890762091, -0.0071781943552196, -0.0144097581505775, 0.0280456580221653, -0.00633762497454882, 0.0125885251909494, 0.0280189737677574, 0.00552707631140947, 0.0510745868086815, 0.00581060163676739, 0.00232324004173279, -0.0120615009218454, 0.00269349059090018, 0.00794538017362356, 0.0196533091366291, -0.00118830474093556, 0.0260976739227772, -0.00197633844800293, -0.0148500567302108, 0.0159974992275238, 0.00678459461778402, 0.0006929692463018, 0.00211643311195076, 0.00488330703228712, 0.00984666775912046, -0.0140228290110826, -0.0101602133363485, 0.0242163985967636, -0.0185192078351974, 0.00771856028586626, 0.00482326606288552, -0.000981498043984175, -0.0178921166807413, -0.0276453886181116, -0.00295199896208942, -0.0114944502711296, 0.0285793542861938, 0.00327888713218272, -0.0325020104646683, -0.0118346810340881, -0.00882597640156746, 0.00443967338651419, 0.00204638577997684, -0.015623914077878, 0.0203204266726971, -0.00355574116110802, 0.0294065810739994, -0.00951310899108648, 0.00369917158968747, -0.00897941365838051, -0.00563047965988517, -0.000417782925069332, 0.00905946828424931, 0.00911950878798962, -0.00695804506540298, -0.0109474137425423, -0.0211876817047596, 0.0228287931531668, 0.0123016638681293, 0.0114744370803237, 0.0147966863587499, 0.0357575491070747, 0.00606410671025515, 9.22499675652944e-05, -0.0143964160233736, -0.00426288694143295, -0.025777455419302, -0.00514014763757586, 0.00680460780858994, -0.00330056832171977, -0.00326387700624764, 0.0133023411035538, -0.000509511679410934, -0.00853911601006985, 0.0189328212291002, 0.012715277262032, 0.0282858218997717, -0.00269682635553181, 0.016317717730999, -0.0285526681691408, 0.0288728848099709, 0.0136625850573182, 0.0382125452160835, -0.0279656052589417, 0.0248034633696079, 0.0143697308376431, 0.0135358329862356, -0.00782529916614294, 0.00240662973374128, 0.0177586935460567, 0.000426330370828509, 0.0360777638852596, 0.0144764697179198, 0.00267681269906461, 0.0120815150439739, 0.0101268580183387, 0.0226820260286331, 0.00424954434856772, -0.00353572773747146, -0.0131689179688692, 0.00771188922226429, -0.0181189365684986, 0.00444634445011616, -0.00928628817200661, -0.0172383394092321, -0.020013552159071, 0.0351171158254147, 0.0422152541577816, 0.0117212710902095, 0.0119681051000953, 0.0193330924957991, -0.0187460277229548, 0.0160908959805965, 0.011694585904479, 0.0041928393766284, 6.57215859973803e-05, 0.0377322174608707, 0.0301270689815283, -0.000983165809884667, 0.0119881182909012, -0.0288195163011551, 0.0100801596418023, 0.00827226880937815, 0.0118146678432822, -0.006197530310601, -0.0022698703687638, 0.0114877792075276, 0.00617084559053183, -0.0171983130276203, -0.0577991418540478, 0.000277271086815745, 0.0112943146377802, -0.0282591376453638, 0.00995340663939714, 0.017638610675931, -0.0171182584017515, 0.0510479025542736, 0.00425955140963197, -0.00146932830102742, -0.0039693545550108, -0.00128503690939397, 0.0271784048527479, 0.0134024089202285, 0.00657778792083263, -0.00611080462113023, -0.0340764112770557, 0.0155972288921475, -0.0224418640136719, 0.0230289287865162, -0.0405074320733547, 0.00412279181182384, 0.00823891256004572, 0.00871256645768881, 0.0233091171830893, 0.0216279793530703, 0.0114544238895178, 0.025817483663559, 0.013902748003602, 0.00701808603480458, 0.0158107075840235, -0.0277521274983883, -0.00823891256004572, 0.0264312326908112, 0.00451305601745844, 0.013902748003602, -0.016984835267067, 0.00431625638157129, -0.0307941865175962, -0.0259775910526514, 0.00737832998856902, 0.0219748802483082, 0.00197133491747081, -0.0173183940351009, -0.00120414874982089, 0.0265513136982918, 0.0278855506330729, -0.00805879104882479, 0.00185125367715955, -0.0353572778403759, -0.0304739698767662, 0.00498671038076282, 0.0321817919611931, -0.00213978230021894, -0.0231356676667929, -0.0100534744560719],id:"5a0ba7ea08a9ed5ab4fe28c6931cd433",source:"state_of_union.txt",text:"But cancer from prolonged exposure to burn pits ravaged Heath’s lungs and body.
Danielle says Heath was a fighter to the very end.
He didn’t know how to stop fighting, and neither did she.
Through her pain she found purpose to demand we do better.
Tonight, Danielle—we are.
The VA is pioneering new ways of linking toxic exposures to diseases, already helping more veterans get benefits.
And tonight, I’m announcing we’re expanding eligibility to veterans suffering from nine respiratory cancers.
I’m also calling on Congress: pass a law to make sure veterans devastated by toxic exposures in Iraq and Afghanistan finally get the benefits and comprehensive health care they deserve.
And fourth, let’s end cancer as we know it.
This is personal to me and Jill, to Kamala, and to so many of you.
Cancer is the #2 cause of death in America–second only to heart disease."})
(:Chunk{embedding:[0.00366203510202467, -0.00581127358600497, 0.00316887674853206, -0.0232450943440199, 0.01702063344419, 0.00121873465832323, 0.00494491402059793, -0.00417185435071588, -0.0309756863862276, 0.00883020367473364, 0.0148747274652123, 0.00387862510979176, -0.000907178444322199, -0.0180202797055244, -0.0101230787113309, 0.0112293530255556, 0.0362538136541843, -0.00935668312013149, -0.00263073411770165, -0.00942332670092583, -0.0259108152240515, -0.00934335496276617, 0.0206993296742439, 0.0184734519571066, -0.00444175861775875, -0.000141616459586658, 0.0343078374862671, -0.0279900785535574, 0.0141949681565166, -0.0287897940725088, 0.0176204200834036, -0.00927004683762789, -0.0113226529210806, -0.00404523266479373, -0.0149013847112656, -0.0046983347274363, -0.00639773206785321, 0.00524147553369403, 0.0215123742818832, -0.0313222296535969, 0.0054680616594851, -0.00982318446040154, 0.0111027313396335, -0.0110760740935802, -0.0188733097165823, -0.0101963859051466, 0.00612449552863836, -0.0121956765651703, -0.00138700834941119, 0.0346810407936573, 0.0181002505123615, 0.0114092892035842, -0.0302825979888439, -0.0395593121647835, -0.0150746563449502, 0.00493158539757133, -0.00182935153134167, 0.0207259859889746, 0.012655514292419, 0.00771060027182102, 0.00631109625101089, 0.0105962436646223, -0.0287631377577782, 0.0188466534018517, -0.011002765968442, 0.00861028116196394, -0.0115492390468717, 0.0180869214236736, 0.0103629929944873, 0.0381464771926403, 0.0507020279765129, 0.0174604766070843, -0.0112693384289742, -0.00854363851249218, 0.00859695300459862, -0.0064143929630518, -0.00503488210961223, -0.00809712987393141, 0.00118957832455635, 0.00594789162278175, 0.0272969901561737, -0.00434179417788982, 0.00568465143442154, -0.0130287148058414, 0.0108095016330481, -0.0153278997167945, -0.00865693110972643, 0.00134035816881806, -0.0164475031197071, -0.00891683902591467, 0.0240181535482407, 0.0210325438529253, 0.00642438931390643, 0.0220988336950541, -0.00290896883234382, 0.0304158851504326, 0.0113159883767366, 0.0218589175492525, 0.0153012424707413, -0.0402790568768978, 0.00028635683702305, 0.0133219445124269, -0.027456933632493, -0.018060265108943, -0.0130687011405826, -0.0155278285965323, 0.0112959956750274, 0.0264839455485344, 0.0224986914545298, -0.0115425754338503, -0.00825040880590677, 0.00300560123287141, 0.0140883391723037, -0.0250711124390364, 0.00480829551815987, -0.0181002505123615, -0.0225120205432177, 0.0196330398321152, -0.000680175551678985, 0.0130087221041322, 0.0377199612557888, 0.0205393861979246, 0.0157144293189049, 0.0159410163760185, -0.000478996866149828, -0.0149680273607373, -0.0547006092965603, -0.0225386768579483, 0.0252310559153557, 0.00574129819869995, 0.0177137199789286, -0.0067242830991745, 0.0329483188688755, -0.00553803704679012, -0.0122956410050392, 0.00623445678502321, -0.00243080500513315, -0.0121290339156985, -0.0274302773177624, -0.0272969901561737, -0.0170073043555021, 0.0249778125435114, -0.000998812611214817, -0.0046983347274363, -0.0201395284384489, 0.024444667622447, 0.0364404171705246, -0.00640106434002519, 0.0125288916751742, 0.0159410163760185, -0.00257408758625388, -0.0125222280621529, 0.0146881267428398, -0.00734406337141991, 0.00817710161209106, -0.00990982074290514, -0.0101830568164587, 0.0307357721030712, -0.0109361233189702, 0.00434179417788982, 0.00939000491052866, 0.0143948970362544, 0.00894349627196789, -0.000630609807558358, 0.00235583167523146, 0.0285498797893524, -0.0114292819052935, -0.00852364487946033, -0.0308157429099083, 0.0139817101880908, 0.0108694806694984, 0.0246979109942913, -0.00100797601044178, 0.0128287859261036, -0.0273769628256559, 0.024351367726922, -0.0133152799680829, 0.0165008176118135, -0.0423583164811134, -0.000152550084749237, 0.00367869599722326, -0.00591457029804587, 0.0253776703029871, 0.0167140755802393, -0.00433513009920716, 0.0100297778844833, 0.0338280089199543, -0.00572463730350137, -0.00942332670092583, -0.0034287846647203, 0.0303092561662197, 0.00845033768564463, -0.0290030520409346, -0.0051581715233624, -0.633801996707916, -0.0296961404383183, 0.0246046110987663, -0.00967657007277012, 0.00213590962812304, 0.0133952517062426, -0.00685090478509665, 0.0056013478897512, -0.0142349535599351, 0.00919007603079081, -0.0123622845858335, -0.00220921682193875, -0.00364537443965673, -0.0271370466798544, -0.0333481803536415, -0.00239581731148064, -0.0113026602193713, -0.00777057884261012, -0.00128621072508395, -0.00663431501016021, -0.0320952907204628, 0.0112226884812117, -0.0147814266383648, -0.0295895114541054, -0.00498156761750579, 0.021072531118989, 0.0172605477273464, 0.00913676153868437, -0.0156877730041742, 0.00496490672230721, -0.0122156701982021, 0.0211924873292446, -0.00415852572768927, 0.0101897213608027, 0.0504887700080872, 0.00931669771671295, -0.00304725323803723, 0.0128021286800504, 0.0130553720518947, 0.0269771032035351, -0.0127754714339972, -0.00368202803656459, 0.0176470782607794, -0.0087635600939393, -0.0401724278926849, -0.00386862875893712, 0.0107961725443602, -0.0190732385963202, 0.011469267308712, 0.00427515106275678, -0.0106095727533102, 0.0134152444079518, -0.0346543826162815, 0.00159859994892031, 9.94439178612083e-05, -0.00657100416719913, 0.012975400313735, -0.0288164522498846, 0.00296728149987757, 0.00463835569098592, 0.013541866093874, 0.0071974485181272, -0.0147014549002051, -0.0249111689627171, -0.030949030071497, 0.00881687458604574, -0.0184467937797308, 0.00933002587407827, 0.012082383967936, -0.00764395715668797, -0.0169539898633957, 0.0180469360202551, -0.0157144293189049, -0.0010754520772025, 0.0280700493603945, 0.00432180147618055, 0.0236849375069141, -0.023698266595602, -0.0287098232656717, 0.0159276872873306, 0.0292163100093603, -0.0198729559779167, -0.0146881267428398, 0.00656433962285519, 0.0197796560823917, -0.0135818524286151, -0.0219922047108412, 0.0123822772875428, 0.0445975251495838, 0.00936334766447544, 0.0171405915170908, 0.00283399550244212, -0.0148747274652123, -0.0302825979888439, 0.00614115642383695, 0.00392527505755424, -0.000418185081798583, -0.00797050818800926, 0.00980319175869226, -0.0189266242086887, 0.000281983375316486, -0.0191532112658024, 0.0111827030777931, 0.0052014896646142, 0.0437711514532566, -0.00460503436625004, -0.0168340317904949, -0.00121790159028023, 0.030175969004631, -0.0356673561036587, -0.0235516522079706, -0.00661765411496162, -0.0230051781982183, 0.000155257468577474, 0.0196330398321152, -0.01636753231287, -0.00650436105206609, 0.0141683109104633, 0.0157277584075928, -0.0161276161670685, 0.0175937637686729, 0.000871357799042016, -0.00040777210961096, -0.0272703338414431, 0.0283632799983025, -0.0029922726098448, 0.00795051548629999, -0.0349742695689201, -0.0190732385963202, -0.0178736634552479, 0.0123356273397803, -0.0227119494229555, -0.00420517614111304, -0.00143032625783235, 0.0300693418830633, 0.00649436470121145, -0.0121356984600425, -0.0292696245014668, 0.00172105664387345, -0.0180869214236736, -0.0282566510140896, 0.00430180830881, -0.00776391429826617, 0.000125892867799848, -0.0108694806694984, -0.0157277584075928, -0.0152345998212695, -0.0145548405125737, -0.00462169526144862, -0.00236249598674476, -0.00767727848142385, -0.00297561194747686, 0.0018476783297956, 0.0142616108059883, 0.0220588464289904, -0.00485494546592236, 0.0129087576642632, -0.0121157048270106, -0.0237782374024391, -0.0216989740729332, 0.0179269779473543, 0.0206593442708254, -0.000360705482307822, -0.00555802974849939, -0.00522814691066742, -0.000244704919168726, 0.00151862832717597, 0.0406255982816219, -0.0171405915170908, -0.0307091139256954, 0.00282899709418416, -0.00845700222998857, -0.00391861097887158, 0.0214723888784647, 0.0202728137373924, 0.0148747274652123, -0.0124022699892521, -0.0175271201878786, -0.00347543461248279, 0.00495824217796326, -0.00163108843844384, 0.0140350246801972, 0.00671428674831986, 0.00871024560183287, 0.0269637759774923, 0.00350209185853601, 0.0163408741354942, 0.00685090478509665, 0.00173438515048474, 0.00569798005744815, -0.0209259148687124, 0.0337213799357414, -0.00248578540049493, 0.0275635626167059, 0.00178936566226184, -0.0105362655594945, -0.0224320478737354, -0.0134752234444022, 0.0268571469932795, 0.0142216254025698, 0.0182601939886808, -0.00303059234283864, 0.0375866778194904, -0.00757731404155493, 0.00242414069361985, -0.0177936926484108, 0.00338380062021315, -0.0262040439993143, 0.0085702957585454, -0.00272070220671594, -0.00907011795789003, -0.00960992649197578, -0.0220988336950541, 0.00599120976403356, 0.0132219800725579, -0.000992148299701512, -0.00819042976945639, -0.00486827408894897, -0.0226319767534733, 0.0143682397902012, 0.00170106370933354, 0.0236182939261198, 0.000602286483626813, -0.0281500220298767, 0.00673761172220111, 0.00599787384271622, 0.0220588464289904, 0.0603519380092621, 0.00508819613605738, -0.0135951805859804, 0.0210458729416132, 0.00884353183209896, -0.00965657737106085, 0.0311889443546534, 0.0092367259785533, -0.0113559747114778, -0.0132686300203204, -0.00801715813577175, 0.0279900785535574, 0.0192065257579088, 0.0110827377066016, -0.00931669771671295, 0.000760147231630981, 0.00996979884803295, -0.00378199270926416, -0.00418518297374249, 0.0369202457368374, 0.0128087932243943, -0.0272170193493366, 0.00145365134812891, -0.0319886617362499, 0.0158743727952242, 0.00925671868026257, 0.0142882680520415, 0.00414186529815197, -0.0146348122507334, -0.00871691014617682, 0.0227519348263741, 0.0197929833084345, 0.0224453769624233, 0.0468367300927639, 0.0106229009106755, 0.0200862139463425, -0.00351208844222128, -0.0265772454440594, -0.0260574296116829, 0.0143149252980947, -0.00329383229836822, -0.0106828799471259, 0.0012970402603969, 0.00386862875893712, -0.015421200543642, 0.0259907860308886, -0.0263773165643215, -0.00520482147112489, 0.0266305599361658, -0.0127221569418907, -0.0033254879526794, 0.00928337592631578, 0.00210925238206983, -0.00683757616207004, -0.0262706875801086, 0.0260307732969522, 0.0114159537479281, -0.0102097140625119, -0.0244979821145535, 0.00928337592631578, 0.0171672478318214, -0.0046983347274363, 0.00479163462296128, -0.0157277584075928, 0.0133885871618986, 0.00789053644984961, 0.018233535811305, -0.0118691259995103, -0.0140750110149384, 0.026803832501173, 0.00427848333492875, 0.00254743034020066, 0.00685090478509665, -0.00636441074311733, 0.0102630285546184, 0.0125555489212275, -0.0119024477899075, 0.0253643430769444, -0.00173271913081408, -0.00200428953394294, -0.0266572181135416, 0.00751733547076583, -0.0462502725422382, 0.0155544858425856, -0.0139417247846723, 0.0159543436020613, 0.0156744439154863, 0.0171405915170908, 0.00845700222998857, -0.00224087224341929, -0.0141683109104633, 0.0128087932243943, 0.0139017384499311, -0.00451506627723575, -0.0218722466379404, -0.00729074887931347, -0.00173438515048474, 0.110040992498398, 0.017966965213418, -0.0146348122507334, -0.00958993379026651, 0.0119557622820139, 0.026510601863265, -0.00535810086876154, -0.0243113823235035, 0.00829039420932531, -0.026044100522995, -0.00763062853366137, 0.0154878431931138, 0.00690421927720308, -0.0154345287010074, 0.00151612923946232, 0.0285232216119766, 0.00320553034543991, -0.0157677438110113, -0.00769060710445046, 0.00457504484802485, -0.00441510183736682, -0.0214990451931953, 0.0231118071824312, 0.0286565087735653, 0.0252177268266678, -0.00769060710445046, 0.0219522193074226, -0.00564466556534171, 0.0255509428679943, 0.0034354489762336, -0.0139683820307255, 0.0201795138418674, -0.00313222291879356, 0.0153012424707413, -0.0211791582405567, -0.00905012525618076, 0.00484828138723969, -0.00918341148644686, 0.018433466553688, -0.000371326692402363, 0.00928337592631578, 0.0153945432975888, -0.00730407750234008, 0.00567132281139493, 0.00388528942130506, -0.0101497350260615, -0.00388528942130506, 0.0133952517062426, -0.00465834885835648, -0.0213524308055639, 0.026044100522995, -0.0189799387007952, -0.0376133322715759, 0.00386862875893712, 0.00211258442141116, 0.0218589175492525, 0.00356540270149708, -0.0129887294024229, -0.0038353072013706, 0.00115875585470349, -0.00778390746563673, -0.0187666807323694, 0.00601120246574283, -0.0137417959049344, -0.0229518637061119, -0.0142749398946762, 0.00630776397883892, 0.00215590232983232, -0.0153545569628477, -0.00739737786352634, 0.012655514292419, -0.0306824576109648, -0.0177270490676165, 0.0336147509515285, -0.00423516519367695, -0.0136484950780869, 0.0246712546795607, -0.0197929833084345, 0.00307557638734579, -0.00310223363339901, 0.00507153570652008, -0.0170739479362965, 0.00800382904708385, -0.0346010662615299, -0.00381531426683068, -0.00160109915304929, 0.0115225818008184, -0.0182735230773687, -0.0244713257998228, 0.0295628532767296, -0.0126954996958375, -0.0120757194235921, 0.0319086872041225, -0.0207526441663504, -0.0177137199789286, 0.0149280419573188, 0.00736405607312918, 0.0108961379155517, -0.0205393861979246, -0.0046550165861845, -0.00937667582184076, -0.0123489554971457, -0.0362271592020988, -0.000952162488829345, 0.00476164557039738, -0.0132819581776857, 0.0168740190565586, 0.0214057452976704, -0.00871691014617682, -0.0362538136541843, 0.0305491704493761, -0.0128687713295221, 0.0138350958004594, -0.0137817813083529, 0.025777529925108, 0.00221921340562403, 0.00399858271703124, 0.00301892985589802, -0.0159276872873306, 0.00554470112547278, -0.0241381097584963, 0.0056313369423151, 0.0170339625328779, 0.0230185072869062, -0.0238448809832335, 0.00206926651299, 0.00913676153868437, 0.0037986533716321, -0.015607800334692, -0.0104762865230441, -0.0208326149731874, 0.0362271592020988, -0.0256975572556257, -0.0332148931920528, 0.0096499128267169, -0.0251777414232492, -0.0161409452557564, 0.00878355279564857, 0.00393527187407017, -0.00721077714115381, -0.0075373281724751, -0.00224087224341929, -0.00657433597370982, -0.0301226563751698, 0.0140350246801972, -0.0307890865951777, 0.000218255969230086, 0.0111960312351584, -0.00671428674831986, 0.0207659713923931, -0.0075973067432642, -0.0136351669207215, -0.0259774588048458, -0.00218089367263019, -0.0236449521034956, 0.0138350958004594, 0.0188199952244759, -0.0122156701982021, 0.0420117750763893, 0.0266838744282722, 0.0415852591395378, -0.0181269068270922, -0.00844367314130068, -0.00537476129829884, 0.021632332354784, 0.00121373636648059, 0.00658433279022574, 0.00334214861504734, 0.000144011457450688, 0.021539032459259, 0.00715746264904737, 0.0202728137373924, -0.00584126263856888, -0.0518749430775642, 0.0350009277462959, -0.0317487455904484, -0.0189399532973766, -0.030655799433589, -0.0263106729835272, -0.0224320478737354, -0.0352941565215588, 0.0144082261249423, -0.00709081999957561, -0.00773059297353029, -0.0212458018213511, -0.0107695162296295, 0.0416385717689991, 0.00620113499462605, 0.0173538476228714, -0.0262040439993143, 0.0333215221762657, -0.00531145045533776, 0.0159410163760185, 0.0226453058421612, 0.0221654754132032, -0.0275635626167059, -0.0194997545331717, -0.0157944019883871, 0.0053214468061924, -0.000725159596186131, 0.0255909282714128, -0.00379532133229077, -0.0106895444914699, -0.0121356984600425, 0.00501822121441364, 0.0172738768160343, -0.0193797964602709, -0.00915008969604969, 0.00388195714913309, -0.0472632460296154, 0.0104029793292284, -0.0164208449423313, -0.0219655465334654, -0.0261907167732716, -0.00311223021708429, 0.00310889794491231, -0.00830372329801321, 0.0138217667117715, 0.0128954285755754, -0.0290030520409346, 0.0110894022509456, -0.0147547693923116, -0.021165831014514, -0.0250711124390364, 0.0092233968898654, 0.0178603362292051, -0.00405856128782034, -0.0227785930037498, -0.00471166335046291, 0.00526480050757527, -0.0028606525156647, 0.0317487455904484, 0.0257908571511507, -0.0137817813083529, -0.000833871075883508, 0.00127704732585698, 0.0437711514532566, -0.0125355562195182, -0.0518749430775642, 0.0114159537479281, -0.00472499197348952, 0.00219089002348483, -0.00743069918826222, -0.040252398699522, -0.0168207045644522, 0.0208326149731874, 0.00720411306247115, -0.00528146093711257, -0.00653101829811931, -0.0372667908668518, -0.0292696245014668, -0.00178769964259118, -0.00570797687396407, 0.0139550529420376, 0.00185267662163824, -0.030469199642539, -0.00104629574343562, -0.0288964230567217, 0.0033321522641927, -0.0117358397692442, -0.0195930544286966, 0.0384930223226547, -0.0295361969619989, 0.00323218759149313, -0.00151446310337633, -0.00931669771671295, -0.0196463689208031, -0.0087635600939393, -0.00625444948673248, 0.0341478958725929, -0.0239648390561342, -0.010436300188303, -0.00240914593450725, 0.0102830212563276, 0.000437761482317001, -0.0129620721563697, -0.0084370095282793, 0.00971655547618866, -0.0397992245852947, 0.00875023193657398, 0.0150346709415317, 0.0112093593925238, -0.0289497375488281, -0.00747068505734205, 0.0140616819262505, 0.00251910695806146, -0.0307890865951777, 0.00453839125111699, 0.0237115938216448, 0.00425515836104751, -0.0186600517481565, -0.000488160294480622, -0.0188999678939581, -0.0022608651779592, 0.0113559747114778, -0.00243413704447448, -0.00635441392660141, 0.017580434679985, -0.0348409824073315, 0.0264572873711586, -0.00313222291879356, 0.00800382904708385, -0.0166740901768208, 0.00616781366989017, -0.0117425043135881, -0.023791566491127, 0.0184734519571066, -0.00411520805209875, -0.0565666146576405, -0.0372667908668518, 0.0147014549002051, 0.027643533423543, 0.0425715744495392, 0.00326384301297367, 0.0090168034657836, 0.0116625325754285, -0.00531478272750974, 0.000286773341940716, -0.038093164563179, 0.0241247806698084, -0.0065610078163445, 0.0204594135284424, 0.0112226884812117, -0.0134618943557143, 0.0125822061672807, -0.0116691971197724, 0.00667096860706806, 0.0119291050359607, -0.0113559747114778, 0.00815710891038179, -0.00384863582439721, 0.00407522218301892, -0.00788387190550566, 0.00372534617781639, 0.0026890467852354, -0.0071974485181272, -0.0163941886276007, -0.0142882680520415, 0.0343078374862671, 0.00967657007277012, -0.0019176536006853, 0.00379198906011879, 0.00231417967006564, -0.0094433194026351, -0.0151146417483687, -0.0042418297380209, -0.0203394573181868, -0.0161009598523378, -0.0241514388471842, -0.012735485099256, -0.00620446726679802, 0.0232717506587505, 0.0231251362711191, -0.0110094305127859, -0.0147680984809995, -0.00750400684773922, -0.0243247114121914, 0.00422183657065034, 0.00606451695784926, 0.0194197818636894, 0.0309756863862276, 0.0235783085227013, 0.0123023055493832, 0.0106162363663316, 0.000156819412950426, 0.0163542032241821, 0.00222754362039268, -0.0224453769624233, 0.0177137199789286, -0.0373201034963131, -0.000642272352706641, 0.0153812142089009, -0.0388662219047546, -0.0204460863023996, 0.0290030520409346, 0.00763062853366137, -0.00559801561757922, 0.0264439601451159, -0.00348543119616807, -0.00468167383223772, 0.0051581715233624, -0.00960992649197578, -0.0269237887114286, 0.0049515780992806, 0.00194764288607985, -0.0324951484799385, -0.00892350357025862, 0.0170472897589207, -0.00291396700777113, -0.0155544858425856, -0.0137284668162465, 0.00164441706147045, 0.00100381078664213, 0.0122556556016207, -0.00805714353919029, -0.0119490977376699, -0.00765728577971458, -0.00806380808353424, 0.0129154222086072, 0.0104163074865937, 0.0025574266910553, 0.0245912820100784, 0.0220855046063662, -0.00981651991605759, 0.0112093593925238, -0.00320886261761189, -0.00152445957064629, -0.00919007603079081, -5.8729183365358e-05, 0.007477349601686, 0.00199595908634365, -0.00595788797363639, -0.000997979543171823, -0.0112093593925238, 0.0220455192029476, -0.00137534574605525, -0.0250177979469299, -0.020219499245286, 0.0442776381969452, -0.0203261282294989, 0.00376533204689622, -0.0100630996748805, 0.00237415847368538, -0.0221788045018911, -0.0119690904393792, -0.0158877018839121, 0.00862360931932926, -0.00971655547618866, 0.00109127978794277, -0.00150613277219236, -0.0117225116118789, -0.0224986914545298, 0.0180069506168365, 0.0109627805650234, -0.000153591390699148, 0.0193797964602709, 0.234583511948586, 0.00102297076955438, 0.0151146417483687, 0.0135152088478208, -0.0166740901768208, 0.00921673327684402, 0.00735072745010257, 0.0105695864185691, -0.00639773206785321, 0.00828373059630394, -0.0204727426171303, -0.00512151792645454, -0.0192198529839516, 0.00113459781277925, 0.000125059828860685, -0.00558135472238064, -0.0359605848789215, 0.00559468334540725, -0.0255509428679943, -0.00243080500513315, 0.00819042976945639, 0.00680758664384484, -0.00517483241856098, 0.00326384301297367, 0.00290896883234382, 0.0122623201459646, 0.00651435740292072, -0.00610450282692909, 0.0202461574226618, -0.00817043706774712, -0.0371868163347244, -0.0111227240413427, -0.0199795849621296, 0.0141283255070448, 0.0177537072449923, -0.0191532112658024, 0.000264906091615558, -0.0225386768579483, 0.00944998394697905, -0.00136368325911462, -0.00403190404176712, 0.0356673561036587, -0.0120957121253014, 0.0011304325889796, 0.0217389613389969, 0.0252177268266678, -0.00775725021958351, -0.00771726435050368, 0.0279900785535574, 0.0138884102925658, -0.0529945492744446, -0.0326017774641514, 0.020032899454236, 0.0206193570047617, -0.0119824195280671, 0.00352541706524789, 0.0288164522498846, 0.0100764278322458, 0.000473582127597183, 0.0421717166900635, -0.0026607234030962, 0.0162742305546999, -0.0139417247846723, 0.0312422588467598, 0.00098048581276089, 0.013688481412828, -0.0125555489212275, 0.000753066386096179, 0.0421184040606022, -0.00935668312013149, -0.0144082261249423, -0.0217522885650396, -0.0219255611300468, -0.0112760029733181, -0.0138617530465126, -0.0145015260204673, 0.0357206724584103, 0.0262307021766901, 0.0112693384289742, 0.0116225471720099, 0.00697752647101879, 0.00731074204668403, 0.0197929833084345, 0.00887018907815218, 0.00108628161251545, -0.0287098232656717, -0.00057979446137324, 0.0210192166268826, -0.00925671868026257, -0.0135885160416365, 0.00507819978520274, -0.00634441757574677, -0.0152879143133759, 0.00654101464897394, 0.00778390746563673, 0.0106495581567287, 0.0156344585120678, -0.00668429723009467, -0.000476497749332339, -0.00534477224573493, -0.0100830923765898, 0.0328150354325771, 0.00800382904708385, 0.0243380386382341, 0.00123706145677716, -0.02595080062747, -0.016647431999445, 0.0129420785233378, 0.0272036902606487, -0.0272436756640673, 0.0272170193493366, -0.0185001082718372, 0.000261990469880402, 0.00470499880611897, -0.00261907163076103, 0.0134285734966397, -0.00702417688444257, -0.0191532112658024, 0.00929670408368111, 0.000763062853366137, -0.0187666807323694, -0.0381198190152645, -0.0177936926484108, 0.0287364795804024, 0.00648103607818484, -0.00485827773809433, -0.0250977706164122, -0.0264173019677401, 0.00269237905740738, -0.0565133020281792, -0.00474165240302682, -0.0119490977376699, 0.0048915995284915, -0.0116891898214817, -0.0147814266383648, -0.0250977706164122, -0.00764395715668797, 0.0117558324709535, -0.00709748407825828, 0.0171539187431335, -0.0290030520409346, 0.00971655547618866, 0.00124789099209011, 0.0245379693806171, -0.00971655547618866, -0.022845234721899, 0.0192198529839516, -0.022472033277154, -0.00705083413049579, -0.00743069918826222, -0.0278034768998623, 0.0155944721773267, -0.0116958543658257, -0.0327883772552013, 0.0181135796010494, -0.000943832099437714, -0.0136751523241401, -0.0173805058002472, 0.0083637023344636, 0.0114492746070027, -0.0425715744495392, 0.00387862510979176, 0.0409988015890121, 0.00123539543710649, -0.0137151386588812, -0.0152079425752163, -0.169006749987602, 0.0218455903232098, 0.0202461574226618, -0.0293229389935732, 0.0195530690252781, 0.00292063131928444, 0.0149946846067905, -0.00574129819869995, -0.00105379312299192, 0.0113159883767366, 0.000630193273536861, 0.0111893666908145, -0.0260974150151014, 0.00842368043959141, 0.0241914242506027, 0.00976320542395115, -0.018233535811305, 0.0489959642291069, 0.0178470071405172, 0.00884353183209896, 0.00613782415166497, -0.0256309136748314, 0.0226586349308491, -0.0226453058421612, 0.00308557297103107, -0.00395859684795141, -0.0158743727952242, -0.00270903971977532, -0.0185534227639437, -0.0169406607747078, -0.0169406607747078, 0.01636753231287, 0.0259774588048458, 0.00247079087421298, 0.00757731404155493, -0.00611449917778373, -0.00200928770937026, 0.00608450965955853, -0.0235916376113892, 0.0194730963557959, 0.0380398482084274, 0.0225520059466362, 0.0155944721773267, -0.00669429358094931, -0.0220321901142597, 0.0257642008364201, 0.0142082972452044, -0.0120623903349042, -0.00805714353919029, -0.0092233968898654, 0.0120357340201735, -0.0169006753712893, 0.00497157080098987, -0.00105462619103491, 0.0181802213191986, -0.0034954275470227, -0.000102463680377696, 0.00506487116217613, 0.0122889773920178, -0.00334881292656064, -0.0175404492765665, 0.000260116124991328, 0.0156744439154863, -0.00248411949723959, -0.00212258100509644, -0.0213124454021454, -0.0155411576852202, 0.026244031265378, -0.00571797322481871, 0.0110894022509456, -0.0297761112451553, -0.000203157149371691, 0.00493491720408201, -0.035267498344183, 0.00293562607839704, -0.005408083088696, -0.023698266595602, 0.0176070928573608, 0.00895682536065578, 0.00848365947604179, 0.00165691261645406, 0.00812378711998463, -0.00454172352328897, -0.0194730963557959, 0.00911010429263115, -0.0188466534018517, 0.00840368773788214, 0.035267498344183, -0.000806797354016453, -0.0300160273909569, -0.0031772069633007, -0.00468833791092038, 0.001510297995992, -0.000842201465275139, -0.0042118402197957, 0.0307091139256954, 0.00319553399458528, -0.00982984900474548, 0.0090168034657836, -0.0364670716226101, 0.0150346709415317, 0.00246745860204101, -0.0169806480407715, 0.0195130836218596, 0.0142216254025698, 0.00358539563603699, -0.0214057452976704, 0.0186600517481565, 0.000466501311166212, 0.000379448814783245, -0.0349476113915443, 0.0168873462826014, 0.0209925584495068, 0.0129220858216286, 0.00755732087418437, 0.021165831014514, 0.0120290694758296, -0.0167407318949699, -0.0149147128686309, -0.00179103179834783, 0.0560867860913277, -0.00101297430228442, -0.0111293885856867, 0.00899014621973038, -0.00126038654707372, -0.014341582544148, -0.116971872746944, -0.0245379693806171, 0.0164208449423313, -0.00055813550716266, -0.0117558324709535, 0.0394793376326561, 0.0100497705861926, 0.0139683820307255, -0.045610498636961, 0.0305491704493761, 0.000568131916224957, -0.0311089716851711, -0.012508898973465, -0.00372867821715772, 0.0237115938216448, 0.000640189740806818, -0.00116791937034577, -0.0361738428473473, -0.0220988336950541, 0.0249911416321993, 0.00199429295025766, 0.000266572169493884, 0.00518149649724364, -0.0314821749925613, -0.000712247507181019, -0.000831371988169849, -0.0197529979050159, 0.0251244269311428, 0.0134219089522958, 0.00871024560183287, -0.0245246402919292, -0.00919007603079081, 0.00613116007298231, -0.0244713257998228, -0.000905512366443872, -0.0159143581986427, -0.0285765361040831, 0.000609783863183111, 0.0153678860515356, -0.0358806140720844, -0.00693754060193896, 0.0105895791202784, 0.0129287503659725, -0.0216989740729332, 0.0143149252980947, -0.0140483537688851, -0.00507153570652008, 0.00916341878473759, 0.0264839455485344, -0.0133152799680829, -0.0327084064483643, -0.0146614694967866, -0.00360205653123558, -0.0064577111043036, -0.00577128771692514, -0.0271637048572302, 0.00233250646851957, -0.0107628516852856, -0.0106095727533102, -0.0228585638105869, -0.00378865702077746, -0.00129537412431091, -0.00025011965772137, 0.00174937990959734, 0.0202461574226618, -0.0178070217370987, -0.00775725021958351, 6.22695952188224e-05, 0.0176604073494673, -0.000226378091610968, -0.0209525730460882, 0.00902346801012754, -0.0214857179671526, 0.0135152088478208, -0.0137684531509876, -0.00273902900516987, -0.016647431999445, -0.00959659833461046, 0.0338013507425785, -0.00670428993180394, -0.013688481412828, -0.00751067092642188, 0.00777724292129278, 0.00338879879564047, 0.0276168771088123, 0.00265072705224156, 0.000333631731336936, -0.000909677532035857, 0.00585792353376746, -0.00199929135851562, 0.0297761112451553, 0.00593456299975514, -0.012175683863461, -0.031215600669384, 0.00933002587407827, 0.0168873462826014, 0.0229118783026934, -0.00221088295802474, -0.00172605481930077, 0.0324951484799385, -0.0342545248568058, 0.0115492390468717, -0.0632309168577194, 0.0165674611926079, -0.000673927774187177, -0.00417518662288785, -0.0181935504078865, -0.0131753291934729, 0.00650769332423806, 0.0026673877146095, -0.00203261291608214, 0.0077439215965569, -0.0143815688788891, 0.00371868186630309, -0.0115025890991092, 0.00680425483733416, -0.016074301674962, -0.00789053644984961, 0.0245646256953478, -0.0154611859470606, 0.0239648390561342, 0.00735072745010257, 0.0124222636222839, 0.0250711124390364, 0.0080238226801157, 0.00395526457577944, 0.00402857176959515, 0.00298227625899017, 0.00194930902216583, 0.0292962808161974, -7.29428938939236e-05, -0.0269371178001165, -0.012502234429121, -0.0175404492765665, -0.0143015971407294, 0.030175969004631, -0.00687756203114986, -0.0204460863023996, -0.0144748687744141, 0.0109494524076581, 0.0213924162089825, 0.0432913191616535, 0.00949663389474154, -0.041105430573225, 0.00360538857057691, -0.0213524308055639, -0.015421200543642, 0.00385196786373854, -0.00355207431130111, 0.0094299903139472, -0.0124822417274117, 0.00490159587934613, 0.00773059297353029, 0.0247112400829792, -0.0262173730880022, -0.00817043706774712, -0.0138217667117715, -0.0248845126479864, 0.0119291050359607, -0.00112210225779563, -0.0146348122507334, -0.0277235060930252, 0.0230718217790127, 0.0172205623239279, -0.0151679562404752, -0.00184434617403895, -0.000550638127606362, -0.00803715083748102, -0.00559801561757922, 0.0111827030777931, 5.85079078518902e-06, -0.0196730270981789, -0.00873023830354214, 0.00522814691066742, 0.0168873462826014, 0.0141016682609916, 0.0103163430467248, -0.00273902900516987, -0.0194730963557959, -0.00220255251042545, 0.00223754020407796, 0.0174338202923536, 0.0017993621295318, -0.00886352453380823, -0.0124289272353053, 0.0419318042695522, 0.023884866386652, 0.0127688068896532, 0.00674760807305574, 0.0156877730041742, -0.016167601570487, 0.00248578540049493, -0.0108494870364666, -0.00300560123287141, 0.0203394573181868, 0.00718411989510059, 0.0144615406170487, 0.0219655465334654, 0.023884866386652, 0.00586125580593944, 0.0126288570463657, 0.0229118783026934, 0.0238582100719213, -0.0114825963973999, 0.00873023830354214, -0.0168073754757643, -0.0204994007945061, 0.00641772523522377, -0.0246046110987663, -0.00821042247116566, -0.0126888351514935, 0.0172605477273464, 0.0198462978005409, 0.0273236483335495, 0.0139017384499311, 0.0228585638105869, -0.0226319767534733, -0.000651852285955101, 0.00908344704657793, -0.0154745150357485, -0.0241514388471842, 0.0421717166900635, 0.0334281511604786, 0.000828456308227032, 0.0137151386588812, -0.0184601228684187, 0.0114226173609495, 0.020686000585556, 0.0252843704074621, -0.0128554431721568, 0.020686000585556, 0.00350542413070798, -0.0197529979050159, -0.00258908211253583, -0.0472365878522396, -0.00729741342365742, -0.00853697396814823, -0.0252577140927315, 0.0133019518107176, -0.00477497419342399, -0.00245912838727236, 0.0515550598502159, 0.0137551240622997, -0.00783722195774317, -0.0102163786068559, 0.00318387127481401, 0.00933002587407827, 0.0231517925858498, 0.000675593852065504, -0.00771060027182102, -0.011615882627666, 0.0429980903863907, -0.0157677438110113, 0.0181002505123615, -0.0196730270981789, -0.00541474716737866, 0.0134885516017675, -0.00488826725631952, 0.0495824255049229, -0.0120890475809574, -0.0090901106595993, 0.0196063835173845, 0.0237249229103327, -0.00347543461248279, 0.00392527505755424, -0.0311889443546534, -0.0152479279786348, 0.0161809306591749, -0.00463502341881394, 0.0247112400829792, -0.0284432508051395, -0.0030006030574441, -0.00419184751808643, -0.0159010309726, -0.0122223338112235, 0.0189399532973766, 0.00694420514628291, 0.000992981367744505, -0.00984317716211081, 0.029909398406744, 0.00825040880590677, 0.00636774254962802, 0.0267371889203787, -0.0170872770249844, -0.0305225141346455, -0.00232584215700626, 0.0140750110149384, 0.0019726341124624, -0.0268438179045916, 0.0028889758978039],id:"58ad5c123c18fe300d17aa46046e78b9",source:"state_of_union.txt",text:"Last month, I announced our plan to supercharge
the Cancer Moonshot that President Obama asked me to lead six years ago.
Our goal is to cut the cancer death rate by at least 50% over the next 25 years, turn more cancers from death sentences into treatable diseases.
More support for patients and families.
To get there, I call on Congress to fund ARPA-H, the Advanced Research Projects Agency for Health.
It’s based on DARPA—the Defense Department project that led to the Internet, GPS, and so much more.
ARPA-H will have a singular purpose—to drive breakthroughs in cancer, Alzheimer’s, diabetes, and more.
A unity agenda for the nation.
We can do this.
My fellow Americans—tonight , we have gathered in a sacred space—the citadel of our democracy.
In this Capitol, generation after generation, Americans have debated great questions amid great strife, and have done great things.
We have fought for freedom, expanded liberty, defeated totalitarianism and terror."})
(:Chunk{embedding:[0.00740108219906688, -0.0298877470195293, -0.0252242293208838, -0.0152272926643491, -0.00313531490974128, -0.000788257166277617, -0.00407413812354207, -0.00291953049600124, -0.0150082875043154, 0.00950739532709122, 0.0180357098579407, 0.021668616682291, -0.00599043210968375, -0.0197233371436596, 0.00529154855757952, 0.0163738485425711, 0.0240261424332857, -0.0177522916346788, -0.00352018419653177, -0.0147506343200803, -0.00201774504967034, -0.0318201445043087, 0.0192209128290415, 0.0147377513349056, 0.00868934765458107, -0.0124059915542603, 0.0271566268056631, -0.0226734634488821, 0.0328249931335449, -0.013230481185019, -0.00868290569633245, -0.0198263991624117, -0.0300938710570335, -0.0272081568837166, -0.0266670845448971, 0.00101128802634776, -0.0150727005675435, -0.00247991015203297, 0.01797129586339, -0.0291920844465494, -0.000950900604948401, -0.0123222544789314, -0.010531566105783, -0.015871424227953, -0.0188215523958206, 0.00648319348692894, -0.00170373043511063, -0.0155493589118123, -0.00613536220043898, 0.0213465504348278, 0.0236783102154732, -0.000768128025811166, -0.0190276745706797, -0.0230857077986002, -0.0215655565261841, -0.00532053457573056, -0.0254174675792456, 0.00590991554781795, -0.0126507626846433, -0.0289344321936369, -0.00885038077831268, 0.0234206579625607, -0.021063132211566, -0.00303708482533693, -0.018963260576129, -0.0204834137111902, -0.041739784181118, 0.023562366142869, -0.00765229389071465, 0.00565226282924414, 0.043208409100771, 0.027646167203784, 0.00992608163505793, 0.00484709721058607, 0.028547951951623, 0.0120195122435689, -0.022261219099164, -0.0126378796994686, -0.0113367317244411, -0.00947518926113844, 0.000184986798558384, -0.01536900177598, -0.0074654957279563, 0.00920465309172869, 0.00698239635676146, -0.004019386600703, 0.0158843081444502, 0.0238329023122787, -0.0315624922513962, -0.0268989726901054, 0.0145316291600466, 0.00814827624708414, 0.0124510815367103, 0.0181001238524914, -0.0135525474324822, 0.023059943690896, -0.0121354563161731, 0.0087730847299099, 0.0360456556081772, -0.0360971838235855, 0.00341390212997794, 0.00533985858783126, 0.0080774212256074, -0.0182289499789476, -0.00332050304859877, -0.0176492296159267, -0.000385674327844754, -0.00724004907533526, 0.00581651646643877, -0.00506610190495849, -0.00153303530532867, -0.00932059716433287, 0.00448316195979714, -0.0335464216768742, 0.0162579044699669, -0.0196846891194582, -0.0211790762841702, -0.015575123950839, 0.0170050971210003, -0.00645098695531487, 0.0142868589609861, 0.0109051633626223, 0.0150469355285168, -0.000884071865584701, -0.0131853921338916, -0.00990031659603119, -0.0321808606386185, -0.0102094998583198, -0.012270724400878, -0.00758143933489919, 0.0121225733309984, 0.0173786953091621, 0.0147119862958789, -0.0108922803774476, -0.0133206602185965, 0.0101515278220177, -0.0170823931694031, 0.026254840195179, -0.01797129586339, -0.0237298402935266, 0.00585194351151586, 0.013629843480885, 2.46707786573097e-05, 0.00982946157455444, 0.0185381341725588, 0.0165026746690273, 0.0298104528337717, 0.00159261759836227, 0.00822557229548693, -0.00546868471428752, 0.032438512891531, 0.0282130036503077, 0.0264351982623339, 0.0161161944270134, 0.0187442563474178, 0.026061600074172, -0.0133077772334218, 0.0146991033107042, 0.000285229907603934, 0.00743973022326827, 0.0106217451393604, 0.00650895899161696, 0.000853475532494485, -0.0183835420757532, -0.00286477920599282, 0.0159100722521544, 0.017069511115551, -0.00252983043901622, -0.00595500506460667, 0.0222483370453119, -0.00883105676621199, 0.0319489724934101, -0.0160260163247585, 0.0291920844465494, 0.0039807390421629, 0.0381326451897621, 0.00191146321594715, -0.00307251210324466, -0.0377719290554523, 0.00903073791414499, -0.0213851984590292, 0.0271823909133673, 0.0536433532834053, 0.00552343623712659, 0.00265704654157162, -0.00211597536690533, 0.0317686162889004, -0.00438654236495495, 0.00955248530954123, -0.0109695764258504, 0.00041788094677031, 0.000703714729752392, 0.0161033123731613, 0.00479556666687131, -0.643926382064819, -0.0102932369336486, 0.00133254914544523, -0.00426737777888775, 0.00839948747307062, -0.00162160361651331, 0.00135831441730261, -0.00332694430835545, 0.000163146687555127, 0.00500168884173036, -0.0203159395605326, 0.00725937308743596, -0.0140163227915764, -0.0325415730476379, -0.0259070098400116, 0.00184060866013169, -0.00268120155669749, -0.0224673412740231, -0.00406769663095474, -0.0260358359664679, -0.00629317434504628, 0.0125412596389651, -0.00450570695102215, -0.0208827760070562, 0.0064574284479022, 0.00591957755386829, 0.00771670741960406, -0.0115170888602734, -0.016670148819685, -0.0196846891194582, -0.0198392812162638, 0.0146089252084494, 0.00999693665653467, 0.00401294557377696, 0.0436979494988918, -0.00111998536158353, -0.0547770261764526, 0.00897920690476894, 0.0228280555456877, 0.0201742295175791, -0.0134623693302274, -0.00186637393198907, 0.00119889166671783, 0.0121354563161731, 0.0121547803282738, -0.00470860861241817, 0.0172112211585045, -0.00976504851132631, 0.0230084136128426, 0.0134752513840795, -0.00617723073810339, -0.0143383890390396, -0.00821913033723831, 0.0144800981506705, 0.0072078425437212, -0.0163094345480204, 0.012483287602663, -0.0115815019235015, -0.00314175616949797, -0.00214335089549422, 0.00384547095745802, 0.0224673412740231, -0.00888258684426546, -0.0146604552865028, -0.0349892787635326, 0.0268732085824013, -0.0133979562669992, 0.0213336683809757, 0.0276976972818375, -0.00443485239520669, 0.00300326780416071, 0.0269505027681589, -0.0292178504168987, -0.0294497385621071, 0.0157039500772953, 0.0122514003887773, 0.0228667035698891, -0.00865714065730572, -0.00772958993911743, 0.0210373681038618, 0.00867002364248037, -0.020560709759593, -0.00464097457006574, -0.0115042068064213, 0.00919177103787661, -0.013977674767375, -0.0110855204984546, 0.0145831601694226, 0.0121032493188977, 0.0243224427103996, 0.00733022764325142, -0.00562649732455611, 0.0121096912771463, -0.0255720596760511, 0.0126572037115693, 0.00739464117214084, -0.011079078540206, -0.0116845639422536, 0.0178295876830816, 0.00351052219048142, -0.0143512720242143, -0.0162321384996176, 0.0154849449172616, 0.00334626832045615, 0.030944125726819, 0.0142610939219594, 0.00749126076698303, 0.00550411222502589, 0.0145960422232747, -0.0314594320952892, -0.00442841090261936, -0.00551377423107624, -0.0275431051850319, 0.00165058951824903, 0.012483287602663, -0.0272339228540659, 0.0102288238704205, 0.0208956580609083, -0.00943010021001101, 0.00227378774434328, -0.00415465468540788, 0.0177522916346788, 4.29253923357464e-05, -0.017262751236558, 0.00757499830797315, 0.0108729563653469, 0.0119422161951661, -0.0133850732818246, -0.00748481974005699, 0.00456367852166295, 0.00581007497385144, 0.00518204597756267, 0.0284706559032202, 0.00482777319848537, 0.00175687135197222, 0.0115557368844748, 0.0181903019547462, -0.0282387677580118, 0.0114462347701192, -0.00751058477908373, -0.0113753797486424, 0.0236911941319704, -0.0181387718766928, -0.00859916862100363, -0.0433372333645821, -0.0252242293208838, -0.00444129342213273, -0.0275946352630854, -0.0464805997908115, -0.00265221553854644, -0.0101386457681656, -0.00293724425137043, -0.016476908698678, 0.00572633789852262, 0.00213046814315021, -0.00358781800605357, -0.00249279267154634, -0.00695018982514739, 0.00848322454839945, -0.0204576477408409, 0.00733666913583875, 0.0102481478825212, -0.0274142790585756, -0.0187957864254713, 0.0231114737689495, -0.00261356751434505, -0.0289344321936369, 0.0207153018563986, 0.0138617316260934, -0.0233948919922113, 0.0250052232295275, 0.0074461717158556, -9.30972746573389e-05, 0.00725937308743596, 0.0292178504168987, 0.0118005070835352, -0.0107119232416153, -0.0297846868634224, 0.00107892195228487, 0.0112916426733136, 0.0104735940694809, 0.00680848071351647, -0.0232918318361044, -0.00787774007767439, 0.0181645359843969, -0.0074654957279563, 0.0154849449172616, 0.00311115989461541, 0.00713698798790574, -0.00161033123731613, -0.0231758877635002, 0.00504033686593175, -0.000224641204113141, 0.0028502861969173, 0.00973284244537354, 0.0275431051850319, 0.00910803396254778, -0.00642844242975116, 0.00990031659603119, 0.0206766538321972, -0.00414821319282055, -0.00410312414169312, 0.0212434902787209, -0.00769094191491604, 0.000430763611802831, -0.0195043329149485, 0.00311438064090908, -0.0164511445909739, 0.0205220617353916, 0.00190985284280032, -0.00820624828338623, -0.0272081568837166, -0.0317686162889004, -0.0214367303997278, 0.0258039478212595, 0.0273112170398235, -0.00187925656791776, 0.0146862212568521, -0.0195558629930019, 0.012624996714294, 0.000801139802206308, 0.000800334615632892, -0.00656693102791905, 0.00380038167349994, -0.0216428525745869, 0.000844618713017553, 0.00731090363115072, 0.00980369653552771, 0.019761985167861, -0.00999693665653467, -0.0205220617353916, 0.0148536954075098, 0.0170566290616989, 0.00801944918930531, 0.0045958855189383, -0.00327058276161551, 0.0139647927135229, -0.0162836704403162, 0.023163003847003, 0.00995828863233328, -0.0087730847299099, -0.00824489630758762, 0.0297589208930731, -0.00338491634465754, 0.0118133900687099, 0.000482294213725254, 0.0279295854270458, -0.00729158008471131, -0.013423721306026, -0.00323354522697628, -0.0154978279024363, -0.00832863338291645, -0.00863781664520502, -0.00697595486417413, 0.0314594320952892, -0.0152917057275772, -0.00218521943315864, 0.0098423445597291, 0.00140984496101737, 0.0392147861421108, 0.00504033686593175, 0.0208956580609083, 0.00147345312871039, -0.0039195460267365, 0.0031691319309175, -0.0215913206338882, 0.0148794604465365, -0.00327541376464069, -0.016876270994544, -0.000996795017272234, -0.00273595284670591, 0.0133593082427979, 0.0459395311772823, 0.00222708820365369, 0.0209085401147604, -0.0109631353989244, -0.00344610889442265, 0.014222445897758, -0.0133593082427979, -0.0225317552685738, -0.00835439842194319, -0.0235752500593662, 0.0049115102738142, 0.00966198742389679, -0.00449282396584749, -0.004592664539814, -0.00738175818696618, -0.00823845434933901, -0.00261034700088203, 0.007884182035923, -0.0160388983786106, -0.00369087909348309, -0.00133254914544523, -0.000249198754318058, 0.007839092053473, 0.0171854551881552, 0.0274915751069784, -0.00714342948049307, 0.00325125874951482, -0.0117683010175824, 0.0115364128723741, -0.0324127487838268, 0.00684068724513054, 0.00109583046287298, 0.015175761654973, -0.006515400018543, 0.000185288736247458, -0.010583097115159, 0.0296043287962675, -0.0163738485425711, 0.00398718006908894, -0.00488896574825048, -0.0288313701748848, -0.00636080838739872, 0.0132433641701937, -0.0233691278845072, -0.022261219099164, -0.00411600666120648, 0.0417913161218166, -0.0029613992664963, 0.0117425350472331, -0.0339844301342964, -0.0275946352630854, 0.0165284406393766, 0.125734657049179, 0.0174044594168663, -0.0106475101783872, -0.00317235244438052, -0.0107634542509913, 0.0128568848595023, -0.00813539326190948, -0.0380553491413593, 0.0171983372420073, 0.0051498394459486, 0.0135654304176569, 1.25618416859652e-05, -0.0107892192900181, -0.0040612556040287, -0.0154076488688588, 0.00818048231303692, 0.000855891034007072, -0.0117876250296831, -0.0215655565261841, 0.0132691292092204, -0.0406834073364735, 0.0132948951795697, -0.0116459159180522, 0.00467962259426713, -0.0224802233278751, -0.0246960390359163, 0.00965554639697075, 0.0198779292404652, 0.0080580972135067, -0.00305801909416914, -0.0115428538993001, 0.0191436186432838, 0.00677627371624112, 0.0146733382716775, -0.0140163227915764, 0.00966842845082283, -0.0129985939711332, 0.0224158111959696, 0.0216042045503855, -0.0133721902966499, -0.0016876271693036, 0.00120855355635285, -0.000200788170332089, -0.0287025440484285, 0.017468873411417, 0.00673118466511369, 0.016670148819685, 0.0171081591397524, -0.00619655475020409, -0.0192209128290415, 0.0503453947603703, -0.0167216788977385, -0.0226219333708286, -0.0125863486900926, -0.0100162606686354, 0.0221323929727077, 0.0134623693302274, 0.00140420882962644, -0.0241163205355406, -0.0116394739598036, -0.0421777963638306, -0.0204447656869888, 0.00872799567878246, -0.0170437451452017, -0.00658303406089544, -0.0205349437892437, -0.0355303473770618, 0.007839092053473, -0.0261260140687227, 0.00693730683997273, 0.0137071395292878, -0.0208054799586535, -0.0182031840085983, 0.00933348014950752, 0.0249150451272726, -0.00189213920384645, -0.012831118889153, -0.00645098695531487, -0.00432534981518984, -0.01536900177598, 0.0109889004379511, -0.0192209128290415, -0.000213167601032183, -0.0212048422545195, -0.000806373369414359, 0.0232145357877016, 0.00725293206050992, -0.00409346213564277, -0.0139519097283483, 0.0152917057275772, -0.016567088663578, -0.00445417640730739, 0.028754074126482, 0.00800656713545322, 0.00252016843296587, -0.00917888805270195, -0.0203803516924381, 5.62672403248143e-06, -0.0139519097283483, 0.00382936769165099, 0.00720140151679516, -0.0343966744840145, -0.0051691634580493, -0.0104349460452795, 0.0159487202763557, 0.00860561057925224, -0.00634470488876104, 0.0289344321936369, -0.0308668296784163, -0.0239359643310308, 0.0304288193583488, -0.0245414488017559, 0.0122063104063272, -0.01228360645473, -0.0154076488688588, 0.0116072678938508, -0.0210244841873646, 0.0262033101171255, -0.00710478145629168, -0.0206637699157, -0.00107570132240653, -0.0272081568837166, 0.0167474448680878, 0.02266058139503, -0.00831575039774179, 0.031356368213892, -0.0197491031140089, -0.0056844693608582, 0.0147377513349056, -0.00141387083567679, -0.00682136323302984, 0.0241678506135941, -0.00763296987861395, -0.0139132617041469, 0.0188988465815783, -0.0348089188337326, -0.0161934904754162, 0.00671830214560032, -0.0154334148392081, -0.00276010786183178, -0.0186927244067192, -0.023755606263876, -0.0159358382225037, -0.0431053452193737, 0.0199165772646666, -0.0339328981935978, -0.0111499335616827, -0.00728513859212399, -0.00416109571233392, 0.0110468724742532, -0.000489138124976307, -0.027852289378643, -0.0326188690960407, -0.00529476907104254, -0.00418364070355892, -0.0201226994395256, -0.0223900452256203, -0.0246702749282122, 0.0244641527533531, 0.0199036933481693, 0.0145573941990733, 0.0074654957279563, 0.013423721306026, 0.0225961674004793, 0.0130694480612874, -0.00904361996799707, 0.004792345687747, 0.00479878718033433, -0.0115686198696494, 0.016876270994544, 0.0014203122118488, 0.0104735940694809, -0.00963622238487005, -0.00209504086524248, 0.00343966763466597, 0.00808386318385601, -0.0192209128290415, -0.0161934904754162, -0.0396527983248234, -0.00527222454547882, -0.0159358382225037, 0.00894055888056755, -0.00490828976035118, 0.0228280555456877, -0.0311244819313288, -0.0296816248446703, 0.029346676543355, -0.00283257267437875, 0.00632216036319733, 0.00335270958021283, 0.0190405566245317, 0.0087537607178092, 0.0164124965667725, 0.0235881321132183, 0.00212241662666202, -0.0232274178415537, -0.0111885815858841, -0.0234721880406141, 0.0114075867459178, 0.0160002503544092, 0.0123544614762068, 0.0198263991624117, -0.0289344321936369, 0.0180743578821421, -0.000447269500000402, 0.00606450764462352, -0.00139615719672292, -0.0046731811016798, 0.0132047161459923, -0.0163094345480204, 0.0152917057275772, -0.0116201499477029, -0.00242998986504972, -0.0448831506073475, 0.0324642769992352, -0.0105702141299844, -0.00450248597189784, -0.00256847823038697, 0.0054461401887238, -0.0308152977377176, -0.0132433641701937, -0.0132047161459923, -0.00932059716433287, 0.0245414488017559, 0.0199036933481693, 0.0165155567228794, -0.00437365984544158, -0.0298362169414759, 0.0121676633134484, 0.00939145218580961, 0.000586965761613101, 0.0261904280632734, -0.0129535049200058, 0.00207249633967876, 0.0034364468883723, 0.00688577629625797, 0.0315109603106976, -0.0125477006658912, -0.0201742295175791, 0.0184737201780081, 0.00177941599395126, 9.68714884947985e-05, 0.00882461480796337, -0.011323849670589, -0.0123866675421596, 0.0245800968259573, -0.00820624828338623, -0.0229955296963453, -0.0268989726901054, -0.00556208426132798, -0.0217845607548952, -0.00100404152181, -0.00230438401922584, 0.00211597536690533, -0.000353266426827759, -0.0224286932498217, 0.0209214240312576, -0.00551699474453926, -0.0181130059063435, -0.0178553536534309, -0.0347573906183243, 0.0263836663216352, -0.0211146641522646, -0.0261260140687227, -0.00712410546839237, 0.0121032493188977, -0.0345512665808201, -0.00660879956558347, 0.00988743361085653, 0.0231114737689495, -0.0416367240250111, -0.0108793983235955, 0.0013816641876474, 0.0375658087432384, 0.00963622238487005, 0.0206122398376465, -0.0222869850695133, 0.002020965795964, -0.0234335400164127, 0.00603552162647247, 0.0111756986007094, -0.00257330923341215, -0.0279038194566965, -0.0266155544668436, 0.0161934904754162, -0.000873604672960937, -0.0188215523958206, -0.00135267828591168, -0.00985522754490376, -0.0035040806978941, -0.026460962370038, 0.00430602580308914, -0.0128633258864284, 0.00309988763183355, -0.00440264539793134, -0.0107892192900181, -0.0144028030335903, 0.0354272872209549, -0.0122127523645759, 0.00321261072531343, -0.0147506343200803, 0.0204447656869888, -0.0146991033107042, -0.00924330111593008, 0.00102175516076386, -0.00270696682855487, 0.0264867283403873, -0.00518526649102569, -0.0268989726901054, -0.00698239635676146, 0.019362622871995, 0.0167474448680878, 0.0146475732326508, 0.0140936188399792, -0.00719496002420783, 0.0167860928922892, 0.00979081355035305, 0.00776823796331882, -0.0103962989524007, 0.0313048399984837, 0.0076651768758893, -0.00678915670141578, 0.00991964060813189, -0.00453147199004889, 0.00487286224961281, 0.0160517822951078, 0.00490184826776385, 0.0259327739477158, -0.0120066301897168, 0.0176749955862761, 0.00813539326190948, 0.0137329045683146, -0.0154720628634095, -0.0122964894399047, -0.0138359656557441, -0.00654116552323103, 0.00666033010929823, 0.0147248692810535, -0.00227217748761177, -0.00997117068618536, -0.000902590632904321, 0.00409990316256881, 0.0242193825542927, 0.00337525433860719, -0.00399684207513928, -0.00881817378103733, 0.00398395955562592, -0.0131467441096902, -0.0433887653052807, -0.0294497385621071, -0.000283619592664763, 0.0451923348009586, 0.0137586705386639, -0.00506932288408279, -0.0286510139703751, 0.000269126612693071, -0.0306864716112614, -0.0116459159180522, -0.0161161944270134, 0.0253401715308428, 0.0363290719687939, 0.0246445089578629, 0.016077546402812, 0.0269762687385082, -0.00950095430016518, 0.00351052219048142, -0.00655082752928138, 0.00760720483958721, 0.0273112170398235, -0.0343451462686062, 0.0108085433021188, 0.0346800945699215, -0.00944298226386309, 0.0157812461256981, 0.0217201486229897, 0.0068922177888453, -0.0111177265644073, 0.0223642811179161, -0.00676339119672775, -0.00543325766921043, -0.00346221216022968, -0.00567480735480785, 0.00925618410110474, 0.0127344997599721, -0.000743570446502417, -0.013629843480885, -0.0100742327049375, -0.00657659256830812, -0.000155900197569281, 0.00813539326190948, 0.0131467441096902, 0.00579397194087505, -0.00752990879118443, -0.00364579004235566, -0.00455401698127389, 0.00709189893677831, 0.000905811320990324, -0.00423517124727368, 0.017468873411417, -0.00231243576854467, -0.0205349437892437, 0.0242580305784941, 0.01033188495785, -0.0188473165035248, -0.0255591776221991, 0.0205864738672972, -0.00684068724513054, -0.00448316195979714, -0.0106861582025886, -0.0366124920547009, 0.0279038194566965, 0.00173432670999318, 0.0044960449449718, -0.00559751130640507, 0.0106281861662865, 0.000138287199661136, -0.00372630660422146, -0.0255978256464005, 0.0102867959067225, 0.0235881321132183, -0.0242580305784941, -0.0191822666674852, -0.0234335400164127, -0.0406061112880707, 0.0158327762037516, -0.017868235707283, 0.00700816139578819, -0.00535918259993196, 0.000940433470532298, 0.0249279271811247, -0.00885038077831268, -0.0173915773630142, -0.0048116696998477, 0.0202386435121298, 0.00783265102654696, 0.0297589208930731, 0.238277494907379, -0.00770382443442941, -0.000958147109486163, 0.0242580305784941, -0.000112723188067321, 0.0149181084707379, 0.0163996126502752, 0.0216428525745869, -0.0176363475620747, -0.000467801233753562, -0.0131274200975895, 0.00836083944886923, -0.0201484654098749, -0.00296784052625299, 0.00249762367457151, -0.020354587584734, -0.0434918254613876, -0.0240003764629364, -0.0164897926151752, -0.0196589231491089, -0.00406447611749172, -0.0123544614762068, 0.0110404314473271, -0.00855407956987619, 0.0130952140316367, 0.00834795739501715, 0.0142095629125834, -0.00856696255505085, 0.00621265778318048, 0.00590991554781795, -0.0290117282420397, -0.0119228921830654, 0.0210888981819153, 0.0143512720242143, -0.00732378661632538, -0.0128053538501263, 0.0339586660265923, -0.0216299686580896, -0.00950739532709122, -0.00340424035675824, 0.0208312440663576, 0.0140936188399792, -0.00924330111593008, -0.0256880037486553, 0.0244383867830038, 0.0191436186432838, 0.000985522754490376, -0.000413452537031844, -0.0111434925347567, 0.0405803471803665, -0.027646167203784, -0.0121934283524752, 0.0194656848907471, 0.0168505068868399, 0.000894539000000805, -0.0225446373224258, 0.0234335400164127, -0.00186637393198907, 0.010183734819293, -0.00773603143170476, -0.00515305995941162, 0.0147248692810535, -0.0211404282599688, 0.0339586660265923, -0.00127940822858363, 0.0376688688993454, -0.0100613497197628, 0.0311760120093822, 0.0284964218735695, -0.00434467382729053, -0.0227765254676342, -0.0130630070343614, -0.0334175936877728, -0.000731492938939482, -0.0268732085824013, -0.00542037514969707, 0.0188859645277262, 0.0189117304980755, 0.00454435497522354, -0.00434467382729053, -0.010930928401649, -0.023768488317728, 0.0087344367057085, -0.0223385151475668, 0.00254110270179808, -0.0105895381420851, 0.0139003796502948, -0.0150340525433421, -0.01536900177598, 0.00157168332953006, -0.0265124943107367, -0.00242032785899937, -0.0029308027587831, 0.00318040419369936, -0.0206508878618479, 0.00598399108275771, 0.0195558629930019, 0.0129857109859586, 0.0108536323532462, -0.00550411222502589, -0.000962978054303676, 0.0132691292092204, 0.0244899168610573, 0.0066345646046102, -0.00366189330816269, -0.0177909396588802, -0.0071885185316205, 0.015961604192853, -0.0011843986576423, -0.0482584051787853, 0.00270857708528638, -0.0175848174840212, -0.0017681437311694, -0.0154849449172616, 0.0101901758462191, -0.000695260532665998, -0.00898564793169498, -0.0219005048274994, 0.0179068837314844, -0.0128955328837037, -0.0113947037607431, -0.0344739705324173, 0.00464419508352876, 0.0155493589118123, 0.0230084136128426, -0.0319747366011143, 1.32223294713185e-05, 0.0228409375995398, -0.000409829313866794, -0.0336752459406853, -0.000988743384368718, -0.00780688598752022, 0.0317686162889004, -0.000912252638954669, -0.00846390146762133, 0.00309666688553989, -0.0079035060480237, -0.00221742619760334, -0.0211017802357674, 0.0141451498493552, -0.0179584138095379, -0.0133721902966499, -0.00173593708314002, -0.00784553401172161, -0.000207732737180777, -0.000607900030445307, 0.0261002480983734, -0.0243482086807489, 0.0114719998091459, 0.00912091601639986, -0.0186283122748137, 0.00285350694321096, 0.00402582809329033, -0.00441230740398169, 0.0137844355776906, 0.00600653560832143, -0.0311502479016781, -0.00501779234036803, -0.023163003847003, 0.0375658087432384, -0.0243482086807489, 0.00359425926581025, 0.0359683595597744, -0.012831118889153, -0.01536900177598, -0.00116587977390736, -0.161909148097038, 0.0277749933302402, 0.0174817554652691, -0.00664744758978486, 0.0114140277728438, -0.0196846891194582, 0.011929334141314, 0.0117232110351324, -0.00752990879118443, -0.000313410710077733, 0.0175848174840212, 0.0204189997166395, -0.0293724425137043, 0.000901785504538566, 0.00224641198292375, -0.00219810218550265, -0.0483614690601826, 0.0129019739106297, 0.0109695764258504, 0.0131145380437374, -0.00272145983763039, -0.0245414488017559, 0.0121998693794012, -0.0219778008759022, 0.0249408110976219, 0.00428026029840112, -0.00461198855191469, 0.0374885126948357, -0.00792927108705044, -0.007884182035923, -0.00786485802382231, -0.0122320763766766, 0.0104091810062528, 0.0135138994082808, 0.00321261072531343, 0.00687933526933193, -0.00695663085207343, -0.00116426951717585, -0.0205993577837944, 0.0281614735722542, 0.0332114733755589, 0.0122385174036026, 0.00322549347765744, -0.0111628165468574, -0.0100613497197628, 0.0262161921709776, 0.00787129905074835, 0.00473115313798189, 0.0183062460273504, -0.0199938733130693, 0.00343966763466597, -0.0151628786697984, -0.00724004907533526, 0.0102481478825212, 0.0234206579625607, 0.0157425981014967, -0.0281614735722542, 0.00751058477908373, 0.0250954013317823, -0.00667965412139893, 0.000732700689695776, -0.0101708518341184, 0.0191049706190825, -0.0124575225636363, -0.0018808669410646, -0.00199520052410662, -0.0105702141299844, 0.021269254386425, -0.0175976995378733, 0.00433823233470321, 0.00256686797365546, -0.0225832853466272, -0.00380038167349994, -0.028754074126482, 0.00428026029840112, -0.0161161944270134, -0.0346027985215187, 0.00996472965925932, -0.00319811794906855, 0.00765873538330197, -0.0186154283583164, 0.0142482109367847, 0.00485031772404909, -0.00863781664520502, 0.0154591798782349, -0.00191468384582549, -0.0126636447384953, 0.0206380058079958, -0.0166572667658329, -0.0190147906541824, 0.0181258879601955, -0.025752417743206, -0.0102481478825212, -0.016670148819685, 0.0077231484465301, 0.0185896642506123, 0.00861849263310432, 0.0205349437892437, 0.00196460401639342, -0.0256364736706018, -0.0184093061834574, -0.0127022927626967, -0.023459305986762, 0.0312275439500809, -0.0115557368844748, 0.0348089188337326, 0.0154720628634095, 0.0254045855253935, 0.0198006331920624, 0.00542359566316009, -0.0152659397572279, -0.00747193675488234, 0.044805858284235, 0.0341905541718006, 0.00803233217447996, 0.0068728937767446, 0.00679559772834182, 0.00506610190495849, -0.00179229862987995, 0.0216943826526403, 0.0348346866667271, 0.0151628786697984, -0.029552798718214, 0.00664744758978486, 0.00969419442117214, -0.0327992253005505, -0.118829563260078, -0.041920144110918, -0.000725454243365675, 0.0203159395605326, 0.031047185882926, 0.0447285622358322, -0.00507576391100883, 0.00838660541921854, -0.00771026592701674, 0.0239746123552322, 0.0027037460822612, -0.0170566290616989, -0.00106684444472194, 0.00669897813349962, 0.0265382584184408, -0.0189117304980755, 0.00180840201210231, -0.0271308608353138, -0.0313048399984837, 0.0114848827943206, -0.0123222544789314, -0.0216428525745869, -0.0125477006658912, -0.0244899168610573, -0.0230985917150974, -0.0111048445105553, -0.0237298402935266, 0.02266058139503, 0.0197491031140089, -0.00421906774863601, -0.00890191085636616, 0.00832863338291645, 0.00193239748477936, -0.0128568848595023, -0.00324964849278331, 0.0168505068868399, -0.0583326406776905, 0.0113624976947904, 0.017868235707283, -0.0260873660445213, 0.0190663225948811, -0.00281163840554655, 0.00821268931031227, -0.0544163137674332, 0.00855407956987619, -0.0193110927939415, -0.0058809295296669, 0.0116716809570789, -0.00624164380133152, -0.0270277988165617, -0.0196331590414047, 0.0144543331116438, -0.0106797171756625, -0.0125605836510658, -0.0171468071639538, 0.00222708820365369, -0.0224931072443724, -0.00314336665906012, -0.0292178504168987, 0.00393242901191115, -0.00456367852166295, -0.0134494863450527, -0.00533663760870695, -0.00719496002420783, 0.0171339251101017, 0.0180357098579407, -0.0198779292404652, 0.00847678352147341, 0.0223256330937147, -0.0277492273598909, 0.0153174707666039, 0.0245414488017559, -0.0112529946491122, 0.0171983372420073, -0.0205735918134451, 0.015871424227953, -0.0267701465636492, -0.0267186164855957, 0.028444891795516, 0.0147506343200803, -0.0281099416315556, -0.00455079600214958, -0.00843813549727201, -0.0150855826213956, 0.00803233217447996, 0.0173400472849607, -0.00885682180523872, -0.00155880069360137, 0.0101515278220177, -0.00140420882962644, 0.0254174675792456, 0.0302226971834898, 0.0158971901983023, -0.0115170888602734, -0.0217459127306938, 0.0348862148821354, 0.0133979562669992, -0.00194366986397654, 0.0180228278040886, 0.0314851962029934, -0.0215655565261841, -0.0181130059063435, -0.0600846782326698, 0.0352469310164452, 0.00466996058821678, -0.0118520380929112, -0.0200840514153242, -0.0135783134028316, -0.0200454033911228, -0.0402453988790512, 0.000878435675986111, 0.0161161944270134, -0.011929334141314, 0.00384869170375168, 0.0121418973430991, 0.0112916426733136, -0.0401681028306484, -0.00596466707065701, 0.0168247409164906, 0.00260229525156319, 0.00475369766354561, 0.0192209128290415, -0.00785841606557369, 0.0145445121452212, 0.0133979562669992, 0.0275173410773277, -0.0174817554652691, 0.0112852016463876, -0.0104607120156288, 0.0172498691827059, 0.00358781800605357, -0.0121805453673005, 0.0217974428087473, -0.0036232452839613, -0.00511441193521023, 0.030944125726819, -0.00129148561973125, -0.0237298402935266, -0.00438332185149193, 0.00999693665653467, 0.0168505068868399, 0.0258812438696623, -0.00795503612607718, -0.0224415753036737, -0.00115702301263809, -0.00686001125723124, -3.79685916414019e-05, 0.0142610939219594, -0.0263836663216352, -0.0117683010175824, 0.0194270368665457, -0.000343000545399264, -0.00374563038349152, 0.0235366020351648, -0.0372823886573315, -0.00646709045395255, -0.00273917336016893, -0.0215526726096869, 0.01267652772367, 0.020354587584734, 0.0180743578821421, -0.0311244819313288, 0.037540040910244, -0.0148536954075098, 0.0207281839102507, 0.0308410637080669, 0.0331341773271561, 0.00586482649669051, -0.00280036614276469, 0.014570277184248, 0.00287444121204317, -0.00529154855757952, 0.0117360940203071, -0.00193722848780453, 0.0150727005675435, 0.0305576454848051, 0.0165026746690273, -0.00893411785364151, 0.00698239635676146, 0.00756211532279849, 0.00516594247892499, 0.00992608163505793, 0.0245156828314066, 0.00525290053337812, -0.0245028007775545, 0.0355045832693577, 0.00818048231303692, 0.0262806061655283, -0.00971351843327284, 0.0126056727021933, -0.013030800037086, -0.00483743520453572, -0.0137844355776906, -0.00161596736870706, 0.00952671933919191, 0.0100677907466888, -0.0122063104063272, -0.000862332351971418, 2.17268916458124e-05, 0.0204318836331367, 0.00547834672033787, -0.0091273570433259, -0.00406769663095474, -0.0265382584184408, 0.0153174707666039, -0.027852289378643, -0.0102223828434944, 0.00242837960831821, -0.0158585421741009, -0.00607739016413689, -0.0122063104063272, 0.0332630015909672, -0.00834151543676853, 0.0229439996182919, 0.0342420823872089, 0.0176749955862761, -0.0207410659641027, 0.00207410659641027, 0.00375207187607884, 0.00320133846253157, -0.0126185556873679, 0.0536948852241039, 0.00909515097737312, -0.00182611565105617, 0.0194012708961964, -0.0173529293388128, 0.0191951487213373, -0.00139857269823551, 0.0216299686580896, 0.00727869709953666, 0.0114462347701192, 0.00775535544380546, 0.0119164511561394, 0.0135783134028316, -0.0269505027681589, -0.00567158684134483, 0.0117038870230317, -0.0104929180815816, -0.00879884976893663, 0.0153045877814293, -0.00885682180523872, 0.0483872331678867, 0.0396012663841248, -0.0136813744902611, 0.0244770348072052, 0.0138746136799455, 0.035839531570673, -0.00203706906177104, 0.0103512089699507, 0.0137586705386639, -0.00872799567878246, 0.0394724383950233, 0.00360714201815426, -0.00588415050879121, -0.00566192483529449, -0.00909515097737312, 0.0126185556873679, 0.00779400300234556, 0.0186540763825178, -0.0175976995378733, 0.00924330111593008, 0.0127087337896228, -0.00437043886631727, 0.0224029291421175, -0.00461843004450202, -0.00998405367136002, -0.023768488317728, 0.0297589208930731, -0.0356591753661633, -0.00094929029000923, -0.0319232083857059, -0.00314014591276646, 0.0121805453673005, -0.0300423391163349, 0.00171017181128263, 0.00538172712549567, 0.00725293206050992, -0.00242676911875606, -0.00382614694535732, 0.00523035600781441, 0.023047061637044, -0.0114269107580185, 0.013977674767375, -0.0253272894769907, -0.0078197680413723, -0.000132349101477303, 0.016567088663578, -0.0145316291600466, 0.00992608163505793, -0.0170308630913496],id:"7976548fd1be1c02078fb360088b12f5",source:"state_of_union.txt",text:"And built the strongest, freest, and most prosperous nation the world has ever known.
Now is the hour.
Our moment of responsibility.
Our test of resolve and conscience, of history itself.
It is in this moment that our character is formed. Our purpose is found. Our future is forged.
Well I know this nation.
We will meet the test.
To protect freedom and liberty, to expand fairness and opportunity.
We will save democracy.
As hard as these times have been, I am more optimistic about America today than I have been my whole life.
Because I see the future that is within our grasp.
Because I know there is simply nothing beyond our capacity.
We are the only nation on Earth that has always turned every crisis we have faced into an opportunity.
The only nation that can be defined by a single word: possibilities.
So on this night, in our 245th year as a nation, I have come to report on the State of the Union."})
(:Chunk{embedding:[-0.0131197338923812, -0.0261375680565834, -0.0198069773614407, -0.0126930242404342, -0.00412061577662826, -0.0147883603349328, 0.000860584492329508, -0.000714898167643696, -0.0171193424612284, -0.00542940478771925, 0.00941945984959602, 0.0126102296635509, -0.0110116600990295, -0.0151704885065556, 0.00481799943372607, 0.00880168564617634, 0.0266725476831198, -0.0146100344136357, 0.00318599375896156, -0.00972516182810068, 0.0288634151220322, -0.00922202691435814, 0.0127821881324053, 0.0251695103943348, -0.00486576557159424, 0.00569370994344354, 0.028506763279438, -0.0291436426341534, 0.037626888602972, -0.0309269074350595, -0.00824759993702173, -0.0369645319879055, -0.051230650395155, -0.0156799927353859, -0.0230168551206589, -0.00969968736171722, -0.0302900280803442, -0.00438810512423515, 0.012864981777966, -0.0157691556960344, 0.0168136395514011, -0.00598667468875647, 0.0126675488427281, -0.00616181688383222, -0.0451420769095421, 0.000176833797013387, -0.0198579281568527, -0.0132343731820583, -0.0224818754941225, 0.030111700296402, 0.0131706846877933, 0.00726043526083231, -0.0415500700473785, -0.0247873812913895, -0.00974426884204149, -0.00467151682823896, -0.0430276319384575, 0.0125210667029023, -0.0240995511412621, -0.0369390584528446, 0.0032528662122786, 0.0254115238785744, -0.021717619150877, 0.0130560463294387, -0.00747697474434972, -0.024023124948144, -0.0293729193508625, 0.0279972590506077, 0.00450911233201623, 0.0106613766402006, 0.0458299070596695, 0.037703312933445, 0.00627963989973068, 0.0206349212676287, 0.0143680199980736, -0.0125465421006083, -0.00952136050909758, 0.00389452301897109, -0.00577331986278296, -0.0065662357956171, -0.0049135317094624, -0.0273858532309532, -0.0178835988044739, -0.0147374104708433, 0.00561728421598673, 0.00316847953945398, -0.0067063495516777, 0.000856604019645602, -0.0343660600483418, -0.0289653167128563, 0.00975063722580671, 0.0336527563631535, 0.0163423493504524, 0.0227238889783621, -0.0085724089294672, 0.0232843440026045, -0.0266470722854137, 0.0200617294758558, 0.0259337667375803, -0.0298314727842808, 0.026978250592947, -0.0133107984438539, -0.00349965738132596, -0.00521604949608445, -0.00592935550957918, -0.0114511074498296, -0.00457598501816392, -0.000993533292785287, -0.007534293923527, -0.017437782138586, -0.0125529104843736, -0.0165334120392799, 0.0183676276355982, -0.0364040769636631, 0.0137056643143296, -0.0149029986932874, -0.0288124643266201, -0.0131452092900872, 0.0257809143513441, 0.0062223207205534, 0.0349010415375233, 0.00533068832010031, 0.00686556985601783, -0.00231983652338386, 0.000318042089929804, 0.00955320429056883, -0.0404546372592449, -0.00179441028740257, -0.00931755919009447, -0.00862972810864449, 0.0133107984438539, 0.0229276902973652, 0.00491990055888891, -0.00722222262993455, -0.000362225662684068, 0.0150176379829645, -0.0149666871875525, 0.0101263970136642, -0.00482118409126997, -0.011775916442275, -0.0105403689667583, -0.000851827382575721, 0.00917107611894608, 0.00163837464060634, 0.0168136395514011, 0.00642293784767389, 0.0379325896501541, -0.00521604949608445, 0.00228799250908196, 0.00440084282308817, 0.0250421334058046, 0.014393494464457, 0.0190427210181952, 0.0205712337046862, 0.0154634537175298, 0.00382446614094079, -0.0145081337541342, 0.0152723900973797, 0.00576376682147384, 0.000470097264042124, 0.0226347260177135, 0.011349206790328, 0.018813444301486, -0.00943856593221426, -0.0238193236291409, 0.0255006868392229, 0.00152134778909385, 0.000917903729714453, -0.0175906345248222, 0.0220487955957651, 0.0225837752223015, 0.0211571641266346, 0.00147198955528438, 0.0207495596259832, -0.0229149535298347, 0.0221379585564137, -0.0223799739032984, -0.0108524402603507, -0.0403527356684208, 0.0134254368022084, -0.00736870523542166, 0.00447408435866237, 0.0443778187036514, 0.0111517738550901, 0.0109161287546158, 0.0213609654456377, 0.0573192276060581, 0.00764893228188157, 0.0177180096507072, -0.000554881989955902, -0.00387860112823546, 0.00645159743726254, 0.017132081091404, -0.00257936515845358, -0.644420981407166, -0.0112536754459143, 0.0158328451216221, -0.0134509121999145, 0.00735596753656864, -0.0176161099225283, -0.0114256329834461, 0.0046269353479147, -0.00888448022305965, 0.0278444066643715, -0.0257427021861076, 0.00462056649848819, -0.0021096661221236, -0.0432823859155178, -0.00940035376697779, -0.000353070528944954, -0.00741328671574593, -0.02705467492342, -0.017310407012701, -0.0146737219765782, -0.00682098791003227, 0.0192719977349043, -0.0137056643143296, -0.0150176379829645, 0.0228512659668922, -0.0114765828475356, 0.00401553045958281, -0.023373506963253, -0.0153870284557343, 0.0107569079846144, -0.0168773289769888, -0.000268086791038513, 0.00551538355648518, -0.00861062202602625, 0.0313599854707718, 0.00253000692464411, -0.0391808748245239, 0.00456006312742829, 0.0173231437802315, 0.0158710572868586, 0.00115673383697867, 0.0157182067632675, 0.00198069773614407, -0.0166990011930466, 0.00187720474787056, 0.00326719600707293, 0.00645159743726254, -0.0109161287546158, 0.0221889093518257, 0.0119606116786599, 0.0104193622246385, -0.010495787486434, 0.00126341124996543, 0.000796100357547402, 0.00630829948931932, -0.000207185119506903, 0.015081325545907, -0.0144189698621631, -0.0169155411422253, 0.00467788567766547, 0.00923476461321115, 0.00330859329551458, -0.0084386644884944, 0.0128012942150235, -0.0139858918264508, 0.0164697244763374, -0.0131069971248507, 0.00474157370626926, 0.0261375680565834, 0.00868704728782177, 0.00191223307047039, 0.00569689413532615, -0.0143425446003675, -0.0181001387536526, 0.019539488479495, 0.0253987871110439, 0.0121644139289856, 0.0017259456217289, -0.0118905557319522, 0.00972516182810068, 0.0069802082143724, -0.0191446226090193, -0.00654712971299887, -0.0057414760813117, 0.0166225768625736, 0.00869341660290956, -0.0293729193508625, 0.00199502753093839, 0.00780815258622169, 0.00415882840752602, -0.00167977181263268, 0.0097378995269537, 0.00948314741253853, -0.0236027836799622, 0.0292710196226835, -0.0082985507324338, -0.0145590836182237, -0.00591980246827006, 0.0245198924094439, 0.0134381745010614, -0.0128586133942008, -0.00884626712650061, 0.0230678040534258, 0.0164060369133949, 0.0250293966382742, 0.0416774488985538, 0.00685283215716481, 0.0184058416634798, 0.0180491879582405, -0.0261375680565834, 0.00613952614367008, -0.00885900482535362, -0.00484984368085861, -0.0101200276985765, 0.0102919861674309, -0.0246217921376228, 0.00339457206428051, 0.0230041164904833, -0.00067947170464322, 0.00106120179407299, 0.00257777306251228, 0.0137438774108887, 0.0083686076104641, -0.0313090346753597, 0.0111963553354144, 0.0149921625852585, 0.0225582998245955, -0.00713305920362473, 0.00100945529993623, 0.00117424805648625, 0.0185459554195404, 0.0103174606338143, 0.0233989823609591, 0.00252045388333499, 0.0160748586058617, -0.000714102061465383, 0.00320350797846913, -0.0170174408704042, 0.0262904185801744, 0.00253319134935737, -0.00429257331416011, 0.00811385549604893, 0.0015691138105467, -0.0186096429824829, -0.021819518879056, -0.0343915373086929, -0.0127694504335523, -0.0325573198497295, -0.0490143075585365, -0.00604080967605114, -0.000997513765469193, -0.00169569381978363, -0.0123618468642235, -0.00810111779719591, 0.0205967091023922, -0.00474475836381316, 0.00408877152949572, -0.00145606754813343, 0.0228385273367167, -0.0165206752717495, 0.0215392913669348, 0.0131706846877933, -0.012877719476819, -0.0037671469617635, -0.00495174434036016, 0.00366206164471805, -0.0321497172117233, 0.0231442302465439, 0.0206731352955103, -0.0146355098113418, 0.0178708620369434, -0.0011264820350334, 0.00562365306541324, -0.00942582823336124, 0.0273349024355412, 0.00610131351277232, -0.01878796890378, -0.00962326116859913, 0.00477023329585791, 0.00804379861801863, 0.0107760149985552, 0.0117950234562159, -0.00423843832686543, -0.00835586991161108, 0.0161258094012737, 0.00443268707022071, 0.0322770923376083, 0.00127455673646182, 0.0056013623252511, 0.0092729777097702, 0.00399960810318589, 0.00117902469355613, -0.0219723712652922, 0.0228767413645983, -0.00729227950796485, 0.00116151047404855, -0.0105594750493765, -0.0100881839171052, 0.0222780723124743, 0.0152341770008206, 0.00662355497479439, -0.0116294343024492, 0.031767588108778, -0.012049775570631, 7.16490321792662e-05, -0.0328375473618507, 0.00776993995532393, -0.0242396648973227, 0.0232843440026045, 0.00349328853189945, -0.0186988059431314, -0.0515108779072762, -0.00610768236219883, -0.0110944546759129, 0.00433078594505787, 0.0257044900208712, 0.00714579690247774, 0.00928571447730064, -0.01509406324476, 0.00621276721358299, -0.0117886541411281, 0.0147628858685493, 0.00805653631687164, -0.00957867968827486, -0.0340603590011597, 0.00147676619235426, 0.0205330215394497, 0.028608663007617, -0.00343596935272217, -0.00425117602571845, -0.00329585559666157, 0.0117122288793325, 0.0264687463641167, 0.0168645903468132, -0.00325445830821991, -0.0146227721124887, 0.0204820707440376, -0.0172467194497585, 0.0276151299476624, 0.0089226933196187, 0.0025220459792763, -0.00726043526083231, 0.0107951210811734, -0.0157436802983284, 0.024023124948144, 0.00834950059652328, 0.0399706065654755, -0.0129350386559963, -0.0038690478540957, -0.00646751932799816, -0.0292200688272715, 0.00740691786631942, -0.00848324596881866, 0.00745149934664369, 0.00107234716415405, -0.0208769366145134, 0.00727317295968533, 0.00621276721358299, 0.0148265734314919, 0.0470781922340393, 0.0205075461417437, 0.0318694896996021, 0.0227621030062437, 0.00142581574618816, -0.00134859408717602, 0.00595801509916782, -0.0165716260671616, -0.0133872237056494, -2.29003253480187e-05, -0.0128140319138765, -0.00140272884164006, 0.0218322575092316, 0.0327611230313778, -0.0140368416905403, 0.0125847551971674, -0.00892906170338392, 0.000166783036547713, 0.0155908297747374, -0.00185013725422323, 0.0017641584854573, -0.0101009216159582, -0.0510523244738579, 0.00288506783545017, 0.0256790146231651, -0.00810748618096113, 0.00537845399230719, -0.0173231437802315, 0.00335317477583885, -0.0358436219394207, 0.0205584969371557, -0.0133617492392659, 0.0117377042770386, -0.014227906242013, 0.00970605574548244, 0.01052126288414, 0.00642293784767389, 0.03482461348176, 0.0016558887436986, 0.0334234796464443, -0.0195649638772011, 0.0175014715641737, -0.0150049002841115, 0.00425754487514496, 0.00145686371251941, 0.0173231437802315, -0.0168518535792828, -0.00027147022774443, -0.0238065849989653, 0.0293219685554504, 0.00495811318978667, 0.0244434662163258, -0.00598985934630036, -0.0267234984785318, 0.00478297099471092, 0.0234881453216076, -0.0126930242404342, -0.0245835799723864, -0.00224181869998574, 0.0461865589022636, 0.0114702144637704, 0.0126038612797856, -0.0265196952968836, -0.015068587847054, 0.0207495596259832, 0.13827945291996, 0.0084322951734066, 0.00261757802218199, 0.00740054901689291, -2.78635125141591e-05, 0.0171575546264648, 0.00526700029149652, -0.0325573198497295, 0.00502817006781697, -0.0193738993257284, -0.0235645715147257, -0.00866794120520353, 0.00853419583290815, -0.0151195386424661, -0.0158965326845646, 0.0123682152479887, 0.00418111914768815, -0.0121262008324265, -0.0122917899861932, 0.00724769802764058, -0.0227493643760681, 0.00802469160407782, 0.005811532959342, 0.0171066056936979, -0.015055850148201, -0.00492308475077152, 0.0204948075115681, 0.00429575750604272, 0.00882716104388237, -0.00701842084527016, -0.0309523828327656, 0.00544851087033749, 9.31437461986206e-05, -0.0131324715912342, -0.0238957498222589, 0.0102028222754598, 0.00796737242490053, 0.00922839529812336, 0.00379580655135214, -0.0100244963541627, 0.0032146533485502, -0.00116151047404855, -2.10966609301977e-05, -0.0230041164904833, 0.0199980419129133, -0.00522878719493747, -0.00569370994344354, 0.00252841482870281, -0.00230550672858953, -0.0243797786533833, 0.0245071537792683, -0.00600896589457989, -0.0197687651962042, -0.0121262008324265, -0.0182784646749496, 0.0132471099495888, -0.00938124675303698, 0.00544214202091098, -0.0113555761054158, -0.00831128843128681, -0.0246345307677984, -0.0132343731820583, -0.00473838951438665, -0.00329904002137482, 0.00473520485684276, -0.0325063690543175, -0.0443778187036514, 0.0112664122134447, -0.0140113662928343, -0.0052542625926435, 0.00395502662286162, -0.00362066458910704, 0.00467151682823896, 0.00606946926563978, 0.0334744304418564, 0.00868704728782177, -0.00807564239948988, -0.0212335884571075, -0.00361429573968053, -0.0148647865280509, 0.0068400944583118, -0.0248383320868015, 0.00179441028740257, -0.0313599854707718, -0.0151322763413191, 0.0054612485691905, -0.00110498734284192, -0.00968058034777641, -0.0129159325733781, 0.028481287881732, -0.0106486389413476, -0.00740691786631942, 0.00986527558416128, -0.00572873838245869, 0.00863609649240971, -0.00274654640816152, 0.00249179429374635, 0.00105562910903245, -0.0192337855696678, 0.00415882840752602, 0.00864883419126272, -0.0334234796464443, -0.000962485384661704, -0.00771898915991187, 0.0205712337046862, 0.0152596523985267, 0.00169728603214025, 0.0223927106708288, -0.0263413693755865, -0.0139858918264508, 0.0227111522108316, -0.0235645715147257, 0.0047033610753715, -0.0174505207687616, -0.0216539297252893, 0.0267744474112988, 0.00627327105030417, 0.0103556737303734, -0.0038372038397938, -0.026978250592947, -0.010534000582993, -0.0319204404950142, 0.0176543220877647, -0.00205234671011567, 0.00747697474434972, 0.0192847363650799, -0.0172721929848194, -0.00736233638599515, 0.000105682323919609, -0.00313822762109339, -0.0250548720359802, 0.0068400944583118, -0.0106995888054371, -0.0217303559184074, 0.00396458012983203, -0.0222271233797073, -0.0238193236291409, 0.0241122879087925, -0.0323025695979595, -0.00161767599638551, -0.0215775053948164, -0.0242269262671471, -0.013565550558269, -0.0427219308912754, 0.0135018620640039, -0.0294238701462746, -0.0130560463294387, 0.00237078685313463, 0.0048339213244617, 0.00851508975028992, -0.0136929266154766, -0.0319204404950142, -0.0167372152209282, -0.00236601033248007, 0.0111899869516492, -0.0201381556689739, -0.0226602014154196, 0.00186605926137418, 0.007878209464252, 0.0123682152479887, 0.0259974543005228, 0.00096407753881067, 0.0112409377470613, 0.0342132113873959, 0.00924113299697638, -0.0198961403220892, -0.0202655307948589, -0.00674456264823675, -0.0219723712652922, 0.00269241142086685, 0.00111931713763624, 0.0145972967147827, -0.00927934609353542, -0.00985890720039606, 0.00149029993917793, 0.0109734479337931, -0.0081584369763732, -0.0221124850213528, -0.0381363928318024, -0.0175651591271162, 0.00446453085169196, -0.00971242506057024, -0.012463747523725, 0.0235773082822561, -0.0151450140401721, -0.0349010415375233, 0.0228640027344227, -0.0146482465788722, 0.0115211643278599, -0.00244084373116493, 0.0433842875063419, 0.0183931030333042, 0.0127184996381402, 0.0173995699733496, -0.00602807197719812, -0.0237046852707863, 0.00461738230660558, -0.0161258094012737, 0.0124892229214311, 0.0149794248864055, 0.0386204235255718, 0.0309523828327656, -0.0215010792016983, 0.0162786599248648, 0.00912649463862181, 0.0215520299971104, -0.00624461146071553, -0.00519694341346622, 0.0141260055825114, -0.0120306685566902, 0.00379580655135214, -0.0162149723619223, -0.0130305709317327, -0.0352067425847054, 0.0266725476831198, -0.0179982371628284, -0.0153360776603222, 0.00543577363714576, 0.0143043315038085, -0.0339075066149235, -0.00710758427157998, -0.0117631796747446, -0.00646115047857165, -0.00715853460133076, 0.0121198324486613, 0.00278316694311798, -0.00997991394251585, -0.0288379397243261, 0.00523515604436398, 0.028506763279438, 0.00961689278483391, 0.00966147426515818, -0.015756418928504, -0.00143218459561467, 0.00845140125602484, 0.0102601414546371, 0.0186351183801889, 0.015909269452095, -0.0153615530580282, 0.020189106464386, 0.00432123290374875, 0.0013509823475033, 0.0040059769526124, -0.0234626699239016, -0.0011225015623495, 0.00557270273566246, 0.00251726945862174, -0.00187242811080068, -0.0282774847000837, -0.000860584492329508, -0.030009800568223, 0.0177816972136497, -0.0126229673624039, -0.0042193322442472, -0.032913975417614, -0.0109861856326461, 0.0238320603966713, -0.00819664914160967, -0.0130433086305857, -0.0224818754941225, -0.0224309246987104, 0.0272075273096561, -0.0138967279344797, -0.0217940434813499, -0.0175778958946466, 0.00377670023590326, -0.0383911430835724, -0.0105021558701992, -0.00153647374827415, 0.0261885188519955, -0.0483774282038212, -0.024201450869441, 0.0071266908198595, 0.0213864408433437, 0.0229786410927773, -0.00630511483177543, -0.018838919699192, -0.00855330284684896, -0.0155144045129418, 0.000958504853770137, 0.0119733493775129, 0.00912649463862181, -0.011775916442275, -0.00598030583932996, 0.00833676289767027, -0.0115466397255659, -0.00583382369950414, -0.0026573829818517, 0.00264146109111607, 0.0102537730708718, -0.0204438585788012, 0.0118714487180114, -0.00389452301897109, 0.0103556737303734, -0.00203005596995354, -0.00989075098186731, -0.00015533909026999, 0.0219086818397045, -0.0124573791399598, 0.00318440143018961, -0.0173358824104071, 0.0128076625987887, -0.0215392913669348, -0.0107569079846144, 0.00467788567766547, -0.00582745485007763, 0.0312326103448868, -0.00475112721323967, -0.0309269074350595, -0.011635803617537, 0.0114128952845931, 0.0306466799229383, 0.0113874198868871, -0.00328630232252181, 0.00724132917821407, 0.0183803662657738, 0.0020029884763062, -0.00786547176539898, -0.0253096241503954, 0.0470272414386272, 0.00820301845669746, 0.00629556179046631, -0.0014504948630929, -0.00907554477453232, 0.0097378995269537, 0.0104066245257854, 0.012877719476819, 0.0216666683554649, 0.000320430408464745, 0.0188771318644285, -0.00798647943884134, 0.0138457780703902, -0.0108715472742915, -0.0171193424612284, 0.00109145359601825, 0.00112409377470613, -0.00527655333280563, 0.0109288664534688, 0.0228257905691862, -0.0269272997975349, -0.00366206164471805, -0.000923476414754987, 0.0136801889166236, -0.00859788432717323, -0.00847050826996565, -0.015043112449348, -0.00880805496126413, -0.00586885213851929, -0.0370664335787296, -0.020291006192565, 0.00819664914160967, 0.0324044711887836, 0.0210807379335165, 0.00320350797846913, -0.0153360776603222, -0.00311593688093126, -0.0314873605966568, 0.00965510588139296, -0.0104766814038157, 0.0367862060666084, 0.0182912033051252, 0.0188516564667225, 0.0122281014919281, 0.0333725288510323, 0.00908828154206276, -0.0117504419758916, -0.0235773082822561, -0.00926660839468241, 0.0080183232203126, -0.0181256141513586, 0.00639427825808525, 0.0214501284062862, -0.0192719977349043, 0.00793552864342928, 0.0162149723619223, -0.00546761741861701, -0.0111645115539432, 0.0305702555924654, 0.00385631015524268, 0.00945130363106728, -0.0069101513363421, -0.00292805721983314, 0.00126341124996543, 0.00370982778258622, 0.00813296157866716, -0.0102091915905476, 0.00638472521677613, -0.0015523957554251, 0.000576376682147384, 0.0175269450992346, 0.0118268672376871, 0.0126229673624039, 0.00106995890382677, -0.00276087620295584, -0.00530839711427689, -0.00260961707681417, -0.0069865770637989, -0.017985500395298, 0.00834313221275806, 0.00373848737217486, -0.0166353136301041, 0.0230678040534258, 0.00235964148305357, -0.00237397127784789, -0.0137438774108887, 0.0238193236291409, -0.0156799927353859, -0.00933666527271271, 0.00253000692464411, -0.00951499212533236, 0.0187370181083679, -0.0144571829587221, 0.00203005596995354, -0.000379142817109823, 0.00824123155325651, 0.0145336082205176, 0.00275928387418389, -0.0215775053948164, 0.00548353930935264, 0.0162277109920979, -0.0208514612168074, -0.0044931904412806, -0.0203292202204466, -0.0447854213416576, 0.0164951998740435, -0.0182147771120071, -0.00750881899148226, -0.00595164624974132, -0.00793552864342928, 0.0166990011930466, -0.0172085054218769, -0.0339075066149235, -0.00890995562076569, 0.0246727429330349, 0.00471928296610713, 0.0198197159916162, 0.228054106235504, -0.00894179940223694, -0.00329585559666157, 0.0270037241280079, 0.012451009824872, 0.00931755919009447, 0.00661081774160266, 0.00519057456403971, -0.0144953960552812, -0.00690378248691559, -0.0305193047970533, 0.015030374750495, -0.0184950046241283, -0.000299134728265926, 0.00477660214528441, -0.00617137039080262, -0.0366333536803722, -0.0103684114292264, -0.0132216354832053, 0.0141769554466009, -0.00535934790968895, -0.0131197338923812, 0.00468743918463588, -0.00530839711427689, 0.0164060369133949, 0.00523515604436398, 0.00657897349447012, -0.00771898915991187, 0.00178008049260825, -1.31076683373976e-06, -0.0308250077068806, -0.0127503434196115, 0.0161130726337433, 0.0141514800488949, -0.0152851277962327, -0.0163678247481585, 0.0108078587800264, -0.0196541268378496, -0.00502817006781697, -0.00657897349447012, 0.00853419583290815, 0.0181001387536526, -0.0066999807022512, -0.0217558313161135, 0.00503772310912609, 0.0293983947485685, -0.00053099897922948, -0.0055981776677072, 0.00690378248691559, 0.0441740192472935, -0.0222525987774134, -0.00905006937682629, 0.0287105645984411, 0.0267999228090048, -0.0022832159884274, -0.0164060369133949, 0.0408877171576023, 0.00620958302170038, 0.0118778180330992, -0.00132471101824194, 0.00538482284173369, 0.0295002963393927, -0.0120051940903068, 0.0157691556960344, 0.00727954180911183, 0.0318949669599533, -0.000950543850194663, 0.0192083101719618, 0.0280227325856686, -0.0177562236785889, -0.0013509823475033, -0.00964236818253994, -0.011998824775219, 0.00128968257922679, -0.021717619150877, 0.0116549097001553, -0.00249338638968766, 0.0310542844235897, 0.0134126991033554, -0.0167372152209282, -0.0143298069015145, -0.00856604054570198, 0.00350602599792182, -0.0205712337046862, 0.0177944358438253, 0.0031430043745786, 0.0210807379335165, -0.00805653631687164, -0.0130560463294387, 0.00690378248691559, -0.010546738281846, -0.0164060369133949, 0.00661081774160266, -0.00925387069582939, -0.00665539922192693, 0.0181765630841255, 0.0146864596754313, 0.00562683772295713, -0.00620321417227387, -0.00361748016439378, 0.00442950241267681, 0.011998824775219, 0.0131069971248507, 0.0202782694250345, 0.00740054901689291, -0.0106167942285538, -0.00743876211345196, 0.0125210667029023, -0.00319873122498393, -0.0280991587787867, 0.0035601609852165, -0.0279972590506077, 0.00313026667572558, -0.00921565759927034, 0.010909759439528, -0.000739975308533758, -0.0053243194706738, -4.49547951575369e-05, 0.0170047041028738, -0.00578287336975336, 0.00654076086357236, -0.0206221845000982, -0.014227906242013, 0.00370982778258622, 0.009807956404984, -0.00608857581391931, -0.00953409820795059, 0.00726043526083231, 0.0106295319274068, -0.036174800246954, 0.0205584969371557, -0.00275450735352933, 0.0381363928318024, -0.00852145813405514, -0.0112282000482082, -0.00666813692077994, -0.00945767294615507, -0.0052542625926435, -0.0257936529815197, 0.0306721553206444, -0.00988438259810209, -0.0101518724113703, -0.0111199300736189, -0.0205330215394497, 0.0192210469394922, -0.00454732542857528, 0.0169028025120497, 0.000289382500341162, -0.00904370006173849, -0.00354742328636348, -0.0141132678836584, 0.0180491879582405, 0.00185650610364974, -0.00764893228188157, 0.0378306917846203, -0.00481481524184346, -0.0272584762424231, 0.000611007038969547, -0.0160621218383312, 0.0187115427106619, -0.0166225768625736, -0.000687034626025707, 0.024201450869441, -0.0206731352955103, -0.00668087461963296, 0.00589114287868142, -0.158761516213417, 0.0425945557653904, 0.00256981211714447, -0.00661718659102917, -0.00918381381779909, -0.0191446226090193, 0.0239339619874954, 0.00197751331143081, -0.00321942986920476, 0.00263350014574826, 0.0125974928960204, 0.0238065849989653, -0.0228130519390106, 0.00994170177727938, -0.00923476461321115, 0.0101072899997234, -0.0371173843741417, 0.021144425496459, 0.00782089028507471, 0.00621595187112689, -0.00692288903519511, -0.00350602599792182, 0.0207622982561588, -0.0394356288015842, 0.021692143753171, 0.00788457784801722, -0.0129223009571433, 0.0513070784509182, -0.0229404289275408, -0.0105976881459355, -0.0318440161645412, -0.00326082715764642, 0.0230805426836014, 0.00668724300339818, -0.00944493524730206, 0.000563241017516702, -0.0239721741527319, -0.00619684532284737, -0.0251440349966288, 0.0444287694990635, 0.0445306710898876, 0.0105849504470825, 0.0118650803342462, -0.00811385549604893, -0.00468425452709198, 0.0262904185801744, -0.00116947141941637, 0.0161003340035677, 0.0107250642031431, -0.0212590638548136, -0.0256408005952835, -0.0231314934790134, -0.00161369552370161, 0.0108205964788795, 0.0147374104708433, 0.0193866360932589, -0.0162531845271587, -0.000666336040012538, 0.0132725853472948, 4.71689490950666e-05, 0.00961689278483391, -0.0162531845271587, -0.00463967304676771, -0.0175269450992346, 0.000823167792987078, -0.0145590836182237, -0.0105594750493765, -0.00392955169081688, -0.0341113097965717, 0.00308409286662936, -0.020341956987977, -0.0245071537792683, -0.0230805426836014, -0.0409896150231361, 0.00776357110589743, -0.0127057619392872, -0.0337291806936264, 0.0131961600854993, 0.00576058216392994, 0.0101518724113703, -0.0116039589047432, 0.0101900845766068, 0.00339138763956726, -0.00125545030459762, -0.00053099897922948, 0.00140034058131278, -0.00657897349447012, 0.0201381556689739, -0.0169410165399313, -0.0175524204969406, 0.0179218109697104, -0.0221124850213528, -0.0200999416410923, -0.0433842875063419, 0.0237683728337288, 0.0119415055960417, 0.0136419758200645, 0.0330923013389111, 0.00961689278483391, -0.014393494464457, 0.0086424658074975, -0.00613952614367008, -0.0365569293498993, 0.00745786819607019, -0.00486576557159424, 0.0147119350731373, 0.000546124880202115, 0.0192719977349043, 0.0106422696262598, 0.0144062321633101, -0.0320478156208992, 0.0166735257953405, 0.0341877341270447, 0.024876544252038, 0.00755976932123303, 0.0164187736809254, -0.0076744076795876, 0.00108906533569098, -0.00625098031014204, 0.0272075273096561, 0.055485013872385, 0.0144699206575751, -0.028634138405323, -0.00474794255569577, 0.00491671590134501, -0.0371173843741417, -0.123809531331062, -0.0357671976089478, 0.00646115047857165, 0.0215902421623468, 0.0301881264895201, 0.0314618870615959, -0.00845777057111263, 0.0334489531815052, -0.00464285723865032, 0.0242396648973227, 0.015043112449348, -0.0278953574597836, -0.0133617492392659, 0.00628282409161329, 0.0368116833269596, -0.00847050826996565, -0.017310407012701, -0.0172085054218769, -0.0112090930342674, 0.00132311880588531, -0.00795463472604752, -0.0243033524602652, -0.0106613766402006, -0.0151704885065556, -0.0133617492392659, -0.0141896931454539, -0.0277679804712534, 0.0255643762648106, 0.0149921625852585, -0.00027326145209372, -0.0108588095754385, 0.00919018313288689, 0.0103811491280794, -0.00382765056565404, -0.0172339808195829, 0.0125019606202841, -0.0593062937259674, 0.0101072899997234, 0.00719674723222852, -0.0213354900479317, 0.00559499347582459, -0.0159856956452131, -0.00151975557673723, -0.0652165412902832, -0.00897364318370819, -0.0262649431824684, -0.00305543327704072, 0.0171066056936979, -0.00541985128074884, -0.0230295918881893, -0.0203674323856831, -0.00729227950796485, -0.0202655307948589, -0.011349206790328, -0.0185332167893648, 0.00966147426515818, -0.00531476596370339, -0.0204565953463316, -0.03757593780756, 0.00382446614094079, -0.00583063904196024, -0.03482461348176, -0.0125911235809326, 0.000963281490840018, 0.0101200276985765, 0.017310407012701, -0.0135910259559751, -0.00673182494938374, 0.0219851080328226, -0.00839408207684755, 0.000813614577054977, 0.0170938670635223, -0.0221761725842953, 0.0208005104213953, -0.0393592044711113, -0.00105005642399192, -0.0276660807430744, -0.0385694727301598, 0.032964926213026, 0.0139476787298918, -0.0311052333563566, 0.00189790327567607, 0.00322261429391801, -0.00190745654981583, 0.0121516762301326, 0.0198706649243832, -0.00303473463281989, 0.00664266152307391, 0.00225296407006681, 0.0110498731955886, 0.0290162675082684, 0.0231060180813074, 0.00287551456131041, -0.00919018313288689, -0.019615912809968, 0.0101900845766068, -0.0163168739527464, -0.00620639836415648, 0.0176033712923527, 0.00638154055923223, -0.0189280826598406, -0.0096678426489234, -0.0564021207392216, 0.0235645715147257, -0.012476485222578, -0.00556633388623595, -0.0220870096236467, -0.00777630833908916, -0.0168645903468132, -0.022571038454771, -0.00229595345444977, 0.00362066458910704, 0.00199661985971034, 0.00103254220448434, 0.0140368416905403, 0.0184313151985407, -0.0292455442249775, 0.0161258094012737, 0.0287615153938532, 0.00557270273566246, 0.0149794248864055, 0.0206603966653347, -0.00964873656630516, 0.0141387423500419, 0.000501145201269537, 0.0252841487526894, -0.0162531845271587, 0.0176288466900587, -0.0069101513363421, 0.0219214204698801, -0.0158328451216221, -0.0283539108932018, -0.0030793163459748, -0.0121389385312796, -0.0121962577104568, 0.0322006680071354, -0.00205871555954218, -0.030162651091814, 0.00601533427834511, 0.0260101910680532, 0.0213482286781073, 0.020991574972868, -0.00357608287595212, -0.0342641621828079, 0.00310479151085019, -0.0116676473990083, -0.0068464633077383, 0.0110753485932946, -0.00792916025966406, 0.00270674121566117, 0.00763619504868984, -0.00609812885522842, 0.0123618468642235, 0.0166862644255161, -0.0176797974854708, -0.00775720225647092, 0.00518738990649581, -0.0426455065608025, 0.0193993747234344, 0.0179472863674164, 0.00733686098828912, -0.0242906156927347, 0.0394356288015842, -0.00776357110589743, 0.0205457583069801, 0.00981432572007179, 0.0226219892501831, 0.0294748209416866, -0.00610449770465493, 0.0176288466900587, -0.00370027450844646, -0.000558066356461495, 0.0183803662657738, -0.000380535988369957, 0.0159856956452131, 0.0107123265042901, 0.0214628670364618, -0.00848324596881866, 4.87362704006955e-05, 0.00639427825808525, 0.00612678844481707, 0.000662355509120971, 0.0213227532804012, 0.00543895782902837, -0.0240358635783195, 0.037703312933445, 0.000510300335008651, 0.0292455442249775, -0.00359518942423165, 0.00602807197719812, -0.0279208328574896, 0.00899911858141422, -0.020189106464386, -0.00648025702685118, 0.00479252450168133, 0.00260802474804223, -0.00431167986243963, 0.017284931614995, -0.00248542544431984, 0.0154634537175298, 0.00219086813740432, 0.00776993995532393, 0.0106231635436416, -0.0286596138030291, -0.00475749606266618, -0.0233607701957226, -0.0116740157827735, 0.00317803281359375, -0.0276151299476624, 0.0126611804589629, -0.0217813067138195, 0.0106932204216719, 0.0131452092900872, 0.0274877548217773, 0.0219468958675861, 0.0181638263165951, -0.0229276902973652, -0.0161258094012737, 0.00084227422485128, -0.00880805496126413, -0.00565868150442839, 0.039155401289463, 0.0104575743898749, -0.00336272804997861, 0.0162531845271587, -0.0266470722854137, 0.00961052346974611, 0.0176288466900587, 0.0105722127482295, 0.0145972967147827, 0.00349328853189945, 0.0304938293993473, 0.0153233399614692, 0.016482463106513, -0.0195522252470255, -0.0122726839035749, -0.000955320487264544, 0.00373211852274835, -0.0101837161928415, 0.0241122879087925, -0.0101009216159582, 0.0251695103943348, 0.0275387037545443, 0.00545169552788138, 0.0326592214405537, 0.00852145813405514, 0.0271565765142441, -0.00182147766463459, 0.0126420743763447, 0.000163598626386374, 0.00238830107264221, 0.0165716260671616, -0.0140750547870994, -0.00454732542857528, -0.00890358630567789, -0.0188898704946041, 0.0098780132830143, 0.0154889291152358, -0.00133028370328248, -0.0220360588282347, 0.0102282976731658, 0.0205457583069801, 0.0024185529910028, 0.0193738993257284, -0.00675729988142848, -0.00429257331416011, -0.0249147582799196, 0.0134254368022084, -0.0266980230808258, 0.00601533427834511, -0.0397668071091175, -0.00596438394859433, 0.0147756226360798, -0.0298314727842808, -0.00359837361611426, 0.00253956019878387, -0.00374804064631462, -0.00724132917821407, -0.0212845392525196, -0.00349965738132596, 0.0275641791522503, -0.00380535982549191, 0.0239466987550259, -0.0146609842777252, -0.0110562425106764, 0.0306721553206444, 0.0134126991033554, -0.0156545173376799, 0.00993533246219158, -0.0167372152209282],id:"ef7aeffe04f01ecd8cd2e2d913d08c41",source:"state_of_union.txt",text:"And my report is this: the State of the Union is strong—because you, the American people, are strong.
We are stronger today than we were a year ago.
And we will be stronger a year from now than we are today.
Now is our moment to meet and overcome the challenges of our time.
And we will, as one people.
One America.
The United States of America.
May God bless you all. May God protect our troops."})
May God bless you all. May God protect our troops."})
Amen to that! 😂 if that is the final part of your output then you on are on the right track. Finally let's make our query
query = "What did the president say about Ketanji Brown Jackson"
docs_with_score = db.similarity_search_with_score(query, k=2)
for doc, score in docs_with_score:
print("-" * 80)
print("Score: ", score)
print(doc.page_content)
print("-" * 80)
--------------------------------------------------------------------------------
Score: 0.607930839061737
Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections.
Tonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service.
One of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court.
And I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Score: 0.659593164920807
A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans.
And if we are to advance liberty and justice, we need to secure the Border and fix the immigration system.
We can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling.
We’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers.
We’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster.
We’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.
--------------------------------------------------------------------------------
Working with vectorstore
Above, we created a vectorstore from scratch. However, often times we want to work with an existing vectorstore. In order to do that, we can initialize it directly.
NOTE: FalkorDB does not support index names for any index type it has. Indexes are represented in FalkorDBVector by their Node labels or Relation typesnode_label = "Chunk" # default node label
store = FalkorDBVector.from_existing_index(
OpenAIEmbeddings(),
host=host,
port=port,
node_label=node_label
)
Database name: ZeCf
We can also initialize a vectorstore from existing graph using the from_existing_graph
method. This method pulls relevant text information from the database, and calculates and stores the text embeddings back to the database
# first we create sample data in graph
result = store.query(
"MERGE (p:Person {name: 'Tomaz', location:'Slovenia', hobby:'Bicycle', age: 33}) RETURN p"
)
As usual we check if our sample data was created in the graph 🧐
print(result[0][0])
(:Person{age:33,hobby:"Bicycle",location:"Slovenia",name:"Tomaz"})
(:Person{age:33,...,name:"Tomaz"})
Perfect!
# Now we initialize from existing graph
existing_graph = FalkorDBVector.from_existing_graph(
embedding=OpenAIEmbeddings(),
host=host,
port=port,
node_label="Person",
text_node_properties=["name", "location"],
embedding_node_property="embedding",
)
Database name: ZeCf
Making index for node label: Person
Making index for node label: Person
If your output contains that and no errors you on the right track. Let's make our search now
result = existing_graph.similarity_search("Slovenia", k=1)
result[0]
Docs_and_scores: [(Document(metadata={'hobby': 'Bicycle', 'age': 33}, page_content='\nname: Tomaz\nlocation: Slovenia'), 0.496724128723145)]
Document(metadata={'hobby': 'Bicycle', 'age': 33}, page_content='\nname: Tomaz\nlocation: Slovenia')
Document...location: Slovenia')
Nice! You are getting the hang of this
FalkorDB also supports relationship vector indexes, where an embedding is stored as a relationship property and indexed. A relationship vector index cannot be populated via LangChain, but you can connect it to existing relationship vector.
# First we create sample data and index in graph
embedding = OpenAIEmbeddings().embed_query("example text")
embedding_dimension = len(list(embedding))
embedding_node_property = "embedding"
relation_type = "FRIEND"
store.query(
"MERGE (p1:Person {name: 'Tomaz'}) "
"MERGE (p2:Person {name:'Leann'}) "
f"MERGE (p1)-[:`{relation_type}`"
"{text:'example text', embedding:vecf32($embedding)}]->(p2)",
params={f"{embedding_node_property}": embedding},
)
[]
As usual we check if our data was created
result = store.query(
"MATCH (p:Person)"
"OPTIONAL MATCH (p)-[r:FRIEND]->(f:Person)"
"RETURN p, r, f"
)
for person in result[0]:
print(person)
(:Person{age:33,embedding:[0.00747425435110927, 0.000132322296849452, -0.0107339518144727, -0.0228112936019897, 0.0113068679347634, 0.0612691305577755, -0.0376939512789249, 0.00152613082900643, 0.010694439522922, -0.0291858110576868, 0.00997664779424667, 0.0075664478354156, 0.00821180175989866, -0.0169504247605801, 0.00377993145957589, -0.0147114405408502, 0.00925885606557131, -0.00408285250887275, 0.0157123971730471, -0.0242600478231907, -0.0172401741147041, 0.00277403509244323, 0.0178065057843924, -0.0109051680192351, -0.000319178652716801, -0.0101610347628593, 0.0217708237469196, -0.0154621582478285, 0.0200981721282005, -0.0233117714524269, 0.001980512868613, -0.0227717813104391, -0.0192947722971439, -0.0190181918442249, -0.0120905125513673, -0.0101478649303317, 0.00521222222596407, -0.00995689257979393, 0.0207303557544947, -0.032583799213171, 0.0191498957574368, 0.000761419127229601, -0.00137878593523055, -0.0334003679454327, -0.01348658464849, 0.0242337062954903, 0.0049323495477438, 0.000565919617656618, -0.0227586105465889, -0.00474137719720602, 0.0102532282471657, 0.0353232622146606, -0.000846204173285514, -0.00345725426450372, -0.0274999886751175, -0.0126765994355083, -0.00443516345694661, 0.0104046892374754, -0.0165421385318041, 0.00573574937880039, 0.0148694859817624, 0.0201771948486567, -0.0173191968351603, 0.0282902177423239, -0.0134734138846397, -0.0271048732101917, -0.0156333744525909, -0.00694743497297168, -0.00642390782013535, -0.00016576299094595, 0.019307941198349, 0.00977250561118126, 0.0213625393807888, -0.0121827060356736, 0.0168582312762737, -0.00187844154424965, -0.0121234385296702, -0.0035461550578475, -0.0120905125513673, 0.00226367847062647, 0.0224952008575201, -0.0550526604056358, -0.0121629498898983, 0.0346910767257214, 0.0323994122445583, -0.00599915953353047, 0.0081722903996706, 0.0188996568322182, -0.0425933711230755, -0.00538014620542526, -0.00343091320246458, 0.0168977417051792, 0.00508381007239223, 0.0245102867484093, -0.0104112746194005, 0.0105561502277851, -0.0217181425541639, 0.00666097644716501, -0.0160416606813669, -0.0212703458964825, -7.79425608925521e-05, -0.003684445284307, -0.0138158462941647, -0.0136446300894022, -0.0238122511655092, -0.0195054989308119, -0.00591355096548796, -0.00826448388397694, 0.0128675708547235, 0.00024982777540572, -0.0252083223313093, 0.0232722610235214, 0.0108459005132318, -0.0135787781327963, -0.0115373516455293, -0.00262751337140799, 0.0199401248246431, -0.010654928162694, -0.00388529524207115, -0.00709889549762011, 0.0240624900907278, 0.0243390705436468, -0.0145665649324656, -0.0268809758126736, 0.0214283913373947, 0.00648976024240255, 0.00900861714035273, -0.0138948699459434, -0.00326463580131531, -0.0222186204046011, -0.00196404964663088, 0.0131507366895676, -0.00684207072481513, 0.00854106433689594, 0.00192947720643133, 0.0141977909952402, -0.0302921328693628, -0.018820634111762, -0.0333740264177322, -0.019861102104187, 0.0118139320984483, 0.00206776731647551, 0.00219124066643417, 0.015528011135757, -0.000241184650803916, 0.0297916550189257, 0.00198545167222619, -0.0111488215625286, 0.0164499450474977, 0.0241678543388844, 0.0148036340251565, 0.00166689045727253, -0.000466317753307521, 0.00276415701955557, 0.000318149715894833, -0.0066906102001667, 0.027262918651104, 0.0171216409653425, -0.00602220790460706, -0.0189259983599186, -0.0192157477140427, 0.0255112443119287, 0.00649305293336511, -0.0242337062954903, 0.0052023446187377, 0.0360871478915215, -0.00300781126134098, 0.00307695637457073, 0.015844102948904, -0.00550197344273329, 0.00746108405292034, 0.0270785335451365, -0.0243390705436468, 0.0226269066333771, -0.00364493392407894, 0.0209410823881626, -0.0234171357005835, -0.00309506570920348, -0.0119324661791325, -0.0212571751326323, -0.0219157002866268, 0.0066840248182416, -0.0110632134601474, 0.0251688119024038, 0.0140529153868556, -0.0111883338540792, 0.00244641909375787, -0.0141187682747841, 0.00250733247958124, -0.0084357000887394, -0.00605513388291001, 0.0085739903151989, 0.00385895441286266, 0.00273781619034708, -0.662528455257416, -0.0218893587589264, -0.0154226468876004, -0.000845381000544876, 0.00865959841758013, 0.042830441147089, -0.00603537820279598, 0.00343420589342713, -0.0203484110534191, -0.00102482899092138, -0.0306872483342886, 0.0230483617633581, -0.026499031111598, 0.00739523163065314, -0.00786936935037374, -0.0130980545654893, 0.0124263595789671, 0.0149485087022185, 0.00784961320459843, 0.0163709223270416, -0.0186889283359051, 0.00443187076598406, 0.0170689579099417, 0.00370090850628912, 0.0200323183089495, -0.0172796864062548, 0.0217576529830694, -0.0326364822685719, 0.00353956990875304, 0.0194264762103558, -0.0189655087888241, 0.00259623327292502, 0.0112936971709132, -0.0158704426139593, 0.0368246957659721, -0.0107405362650752, -0.0257351417094469, 0.0327945277094841, -0.00169405457563698, 0.0302131101489067, -0.00864642858505249, -0.00970006734132767, 0.00728986784815788, -0.0105429794639349, 0.00444833375513554, -0.00617696112021804, -0.0152777712792158, 0.0024003223516047, -0.0219683814793825, -0.0201771948486567, 0.00179777224548161, -0.0224820300936699, -0.00703304307535291, 0.000338728597853333, -0.00113266240805387, 0.00252379570156336, 0.0226137358695269, 0.0236015226691961, 0.0111224809661508, 0.00132198818027973, -0.00933787878602743, -0.00929836742579937, -0.00833692215383053, -0.0143690072000027, 0.0105429794639349, 0.00635147001594305, -0.0199664663523436, 0.0018916119588539, 0.026222450658679, -0.0199664663523436, 0.0171348098665476, 0.0186889283359051, -0.00354286259971559, -0.00972640886902809, 0.0146587584167719, 0.0147641217336059, 0.0119719775393605, -0.0121234385296702, -0.00220770388841629, -0.00208093784749508, 0.0223898366093636, 0.00478747393935919, -0.00620000949129462, -0.0200454890727997, 0.0259722117334604, -0.00245135789737105, -0.0150670437142253, 0.017569437623024, 0.0210596174001694, 0.0211386401206255, 0.0273419432342052, 0.0174113903194666, 0.00769156776368618, 0.0166475027799606, -0.00671695126220584, -0.00583782093599439, 0.00222581322304904, 0.00335024413652718, 0.012037830427289, -0.0221000872552395, -0.00211880309507251, -0.00673670694231987, 0.00621976517140865, -0.0130387879908085, 0.0106878550723195, -0.00320536852814257, -0.0326364822685719, 0.00914690736681223, 0.0196372047066689, -0.0193869657814503, -0.0119522223249078, -0.0099239656701684, -0.027052192017436, -0.0180699154734612, -0.0169635936617851, -0.0240361485630274, 0.0143031552433968, -0.00521551491692662, 0.0060847676359117, -0.0229034870862961, 0.0170821286737919, -0.00383590604178607, 0.0213888790458441, -0.000910410308279097, 0.0105166379362345, 0.0244180932641029, 0.00121168536134064, -0.00747425435110927, -0.0213625393807888, -0.00556453317403793, 0.00782985799014568, 0.00359225180000067, 0.0207698661834002, -0.0282638762146235, -0.0087122805416584, -0.0273946244269609, 0.0202562175691128, 0.0221132561564445, 0.0140660861507058, -0.00923910085111856, -0.0285536274313927, -0.0195713527500629, -0.0166211612522602, -0.000477018766105175, 0.00714499223977327, -0.019584521651268, 0.013249515555799, 0.00670707318931818, -0.00985152833163738, -0.00374371255747974, 0.0115834483876824, -0.0149616794660687, -0.0154358176514506, -0.0117151532322168, 0.00194264762103558, -0.0169899351894855, -0.000639592064544559, -0.018399178981781, -0.0143294958397746, 0.000448619888629764, 0.00162902532611042, 0.0238254219293594, 0.000140862539410591, -0.000812043203040957, -0.000561803812161088, 0.00223733740858734, -0.0119456369429827, 0.0169899351894855, 0.0098712844774127, -0.0278424210846424, 0.0180962570011616, -0.0044944304972887, 0.000240361492615193, 0.00727669708430767, -0.0268151219934225, 0.000256413040915504, -0.0074281576089561, 0.00861350167542696, 0.00540319457650185, -0.00692767929285765, -0.0146850990131497, -0.0234171357005835, -0.0170294474810362, -0.00900861714035273, 0.0219947230070829, 0.0129926912486553, 0.0142636438831687, 0.0316355228424072, -0.0164499450474977, 0.0574233457446098, -0.00889666751027107, -0.00636793300509453, -0.000605842680670321, 0.00557441078126431, 0.00143640686292201, 0.0191235560923815, 0.0128741562366486, 0.021520584821701, -0.00562050752341747, -0.00016792377573438, -0.0122551433742046, 0.0334793925285339, 0.0301340874284506, -0.0137895056977868, 0.0119258807972074, -0.0283955819904804, 0.0130519578233361, -0.0227191001176834, 0.0215732660144567, 0.0162918996065855, 0.0140002332627773, -0.0453328341245651, -0.00989103969186544, -0.0014973203651607, 0.00119275273755193, 0.0158967841416597, 0.00262422068044543, -0.00647658947855234, -0.00720425928011537, -0.00563697097823024, 0.0236937161535025, -0.0100425006821752, 0.00901520252227783, -0.0164499450474977, -0.0330579355359077, 0.00886374153196812, 0.0196240339428186, 0.0113332085311413, -0.00608806032687426, -0.0364822633564472, -0.00176319968886673, 0.014461200684309, 0.0175430960953236, 0.00805375631898642, 0.00980543158948421, 0.00028666399884969, 0.0155806923285127, -0.014974850229919, 0.0306082237511873, 0.00132939661853015, -0.00268184160813689, 0.011794175952673, 0.0295809265226126, -0.029054107144475, 0.0096012894064188, -0.00950909592211246, 0.0311877261847258, 0.00529124541208148, 0.0072964527644217, 0.0222317911684513, -0.00313622364774346, -0.0038161501288414, -0.0330052524805069, -0.00181423535104841, 0.016739696264267, -0.0297126304358244, -0.0165684800595045, 0.022692758589983, 0.00249416194856167, 0.0305292010307312, 0.0263278149068356, 0.0116558857262135, 0.00694743497297168, -0.0159758068621159, 0.00696719065308571, -0.00485332636162639, -0.012314410880208, -0.00835667736828327, 0.00308189517818391, -0.0336637794971466, -0.00251885666511953, -1.49840079757269e-05, 0.00679597398266196, 0.00717791821807623, 0.00778376124799252, 0.00339798699133098, -0.02282446436584, 0.00307695637457073, 0.0169109124690294, 0.0021303272806108, -0.0250239353626966, -0.0358237400650978, 0.000990256434306502, 0.0131507366895676, 0.000149505664012395, -0.0286326501518488, -0.0157387387007475, -0.00228178780525923, -0.0389846563339233, 0.00288269156590104, 0.0146192470565438, -0.0051364921964705, -0.0148036340251565, 0.00239538331516087, 0.000779116933699697, 0.00656549073755741, 0.0168977417051792, -0.0377466306090355, 0.0136973122134805, -0.000884892477188259, -0.000742486503440887, 0.00189984356984496, -0.0113529646769166, -0.0254849027842283, 0.0405124351382256, 0.000207641045562923, 0.000189120037248358, -0.0126502579078078, 0.00384578388184309, 0.00290573993697762, -0.00436931103467941, 0.00596623308956623, -0.00298640923574567, -0.00347371748648584, -0.0057423347607255, 0.00546904699876904, -0.000333583884639665, 0.00390505092218518, 0.0309769976884127, -0.0139343813061714, -0.0224820300936699, -0.0233776234090328, -0.0264068376272917, 0.0121827060356736, 0.0796024575829506, 0.0202298760414124, 0.00666097644716501, 0.0111488215625286, 0.00751376617699862, -0.0084422854706645, -0.0267097596079111, 0.0162918996065855, -0.0170821286737919, 0.00108491932041943, -0.0141582796350121, 0.0135524366050959, 0.0108195599168539, 0.00323500228114426, -0.0115768630057573, -0.0166343320161104, 0.0130585432052612, 0.000701328739523888, 0.00908763986080885, -0.00271147512830794, -0.00345725426450372, 0.00174179766327143, 0.00279543711803854, 0.0174640733748674, 0.0301867686212063, 0.00281848548911512, 0.0240888316184282, -0.00958811864256859, 0.0336110964417458, -0.0154094761237502, 0.00787595473229885, 0.00228837318718433, -0.00431333621963859, 0.00660500209778547, -0.00651610130444169, 0.01660799048841, 0.0175299253314734, 0.0197820793837309, -0.000168952727108262, -0.00759937427937984, 0.0221000872552395, 0.0225742235779762, 0.00939056091010571, -0.0159362964332104, 0.00945641379803419, -0.00612757168710232, 0.00318561284802854, 0.0230878740549088, 0.00840935949236155, -0.0256297793239355, 0.0358237400650978, 0.00802083034068346, 0.00696719065308571, -0.0146719282492995, -0.0217971652746201, 0.0231273844838142, 0.0050047873519361, 0.00784961320459843, -0.0200059786438942, -0.01332195289433, -0.00989103969186544, -0.026775611564517, -0.0175167545676231, -0.00700011663138866, -0.00445162644609809, -0.0239834673702717, 0.00247440626844764, -0.0160021483898163, -0.0361398309469223, -0.0508907847106457, -0.00137137749698013, -0.0028678746894002, -0.0361134894192219, 0.0257878247648478, 0.0107932183891535, 0.00241843168623745, -0.00964738614857197, -0.0189523380249739, -0.0116558857262135, 0.0183069854974747, -0.00292549561709166, -0.0367193333804607, -0.00346713210456073, -0.0131046399474144, 0.00495869060978293, -0.0103585924953222, 0.0174772441387177, 0.0109512647613883, 0.0102203022688627, 0.0123605076223612, 0.0103388363495469, 0.020822549238801, 0.0086530139669776, -0.0160153191536665, -0.00242830952629447, 0.0044944304972887, 0.00274110864847898, -0.000816158950328827, -0.0144085185602307, -0.00258800177834928, 0.00441540777683258, -0.0358237400650978, -0.00789570994675159, 0.0096539705991745, 0.0239307843148708, 0.0161075126379728, 0.0277370568364859, 0.0113266231492162, -0.0155016696080565, -0.014974850229919, 0.0448850393295288, 0.0111817484721541, 0.0275790113955736, 0.00819204654544592, 0.0062823249027133, 0.0270785335451365, 0.000475372478831559, 0.0227059293538332, -0.0119983190670609, -0.022969339042902, -0.0114714987576008, -0.0246419906616211, 0.0323203876614571, 0.0396958626806736, 0.00410590087994933, 0.011175163090229, -0.0047347922809422, -0.0161997061222792, -0.00761912995949388, -0.0085739903151989, -0.00818546116352081, -0.00980543158948421, -0.0078430287539959, -0.0182147920131683, -0.00902837235480547, -0.02352249994874, -0.00719767436385155, 0.0269731692969799, 0.0129992756992579, -0.00473808450624347, -0.0170689579099417, 0.0102466428652406, -0.0204801168292761, 0.00341774290427566, -0.030371155589819, -0.0281058307737112, 0.0101807909086347, -0.00360212964005768, 0.0150275323539972, 0.0174904149025679, -0.0208752304315567, 0.0278687626123428, -0.00370420096442103, -0.0158836133778095, 0.00922593008726835, -0.0296336077153683, -0.0140924267470837, 0.00633829971775413, -0.00943007227033377, 0.0172270033508539, 0.027816079556942, 0.00499490927904844, 0.0165289677679539, 0.0163182411342859, -0.0197030566632748, 0.00110961403697729, 0.00278720539063215, 0.0212571751326323, -0.0260380636900663, 0.00568965263664722, 0.0533668361604214, 0.0324257537722588, 0.0143163250759244, -0.0134339025244117, -0.0156992264091969, 0.0116229597479105, 0.00279543711803854, 0.00462942803278565, -0.00336670712567866, -0.0385895445942879, 0.00288433791138232, -0.00869252532720566, -0.00338481669314206, 0.0103124957531691, 0.0167660377919674, -0.00183399103116244, 0.0426987372338772, 0.00959470402449369, 0.0237595681101084, 0.00114665599539876, -0.00618025381118059, -0.0264463499188423, 0.0133548798039556, -0.010305910371244, 0.0190840438008308, -0.0215732660144567, -0.0121827060356736, -0.00427053216844797, -0.00335682928562164, 0.00315104029141366, -0.0147772924974561, 0.004896130412817, -0.00607159687206149, -0.010240058414638, -0.00636464031413198, 0.0315301604568958, -0.0028086076490581, 0.00681572966277599, 0.00917324796319008, -0.0177801642566919, -0.0127358660101891, 0.0113068679347634, -0.0217181425541639, -0.0133153675124049, 0.019163066521287, -0.0155411809682846, -0.00956836249679327, 0.0211254693567753, -0.0274999886751175, -0.0316091813147068, -0.000378651660867035, -0.00084785046055913, 0.0263804960995913, 0.0220078937709332, 0.0301604270935059, -0.000307448673993349, -0.0100227445363998, -0.018886486068368, 0.0172533448785543, 0.0174904149025679, 0.013631459325552, -0.0092522706836462, 0.00405980413779616, -0.00998981855809689, -0.0233249422162771, 0.0194528177380562, -0.0172270033508539, 0.0171743221580982, -0.0088439853861928, 0.00732279382646084, 0.0116493003442883, 0.0169240832328796, -0.0391953848302364, 0.00757303321734071, -0.0161338541656733, 0.0112607711926103, -0.0161733645945787, -0.0139738926663995, -0.0229166578501463, -0.0115900337696075, -0.0149221681058407, 0.0249844249337912, -0.00508381007239223, -0.000897239777259529, 0.00555136241018772, -0.0110895549878478, 0.0330315940082073, -0.00504759140312672, 0.0323994122445583, 0.00772449374198914, -0.0191498957574368, -0.00568306772038341, -0.00435943296179175, -0.00202002422884107, -0.00612427899613976, 0.0183464959263802, -0.0151328956708312, -0.00633829971775413, -0.00443187076598406, 0.0249844249337912, -0.00543941324576735, -0.0241020005196333, -0.00493564223870635, -0.0103322509676218, 0.0154358176514506, 0.0142373023554683, 0.0117085678502917, 0.00642390782013535, 0.0109907761216164, -0.004013707395643, 0.00586086930707097, 0.00141006580088288, -0.0118139320984483, -0.00673012156039476, -0.00672024395316839, -0.00209246203303337, -0.0136051187291741, -0.0191367249935865, -0.0185703951865435, -0.0235093291848898, 0.00208093784749508, -0.0180040635168552, 0.029475562274456, 0.000722730765119195, 0.0253531988710165, -0.00474796257913113, -0.00213197339326143, 0.0285272877663374, -0.0143821779638529, 0.0185572244226933, -0.00113677815534174, -0.00825789850205183, -0.0202035363763571, -0.0153699647635221, 0.00284482631832361, -0.00721084466204047, 0.0301604270935059, -0.0166343320161104, -0.0119127109646797, -0.0104968827217817, 0.00738864624872804, 0.00998323317617178, 0.0138290170580149, -0.0177538245916367, 0.0277897398918867, -0.00841594487428665, 0.0180172342807055, -0.0295545849949121, -0.0192816015332937, 0.0221132561564445, 0.00474796257913113, 0.00479405932128429, -0.0307926107198, -0.00940373167395592, 0.016186535358429, -0.00110220559872687, 0.0267492700368166, 0.0277897398918867, -0.0271838959306479, -0.0273946244269609, 0.0137895056977868, 0.0255375858396292, 0.00573574937880039, -0.00051200290909037, -0.00488954549655318, -0.0260248929262161, -0.0177011415362358, 0.01332195289433, -0.00566001934930682, -0.0104837119579315, 0.00570282340049744, 0.0209542531520128, -0.00359554449096322, 0.0121958758682013, 0.00771790882572532, -0.0286589916795492, 0.00646012648940086, 0.0148563152179122, -0.0422509387135506, -0.0365349464118481, -0.00638110376894474, 0.0125119676813483, 0.0115044256672263, -0.0149616794660687, 0.00812619365751743, -0.00226532481610775, -0.0265648830682039, 0.00148908887058496, 0.00545916892588139, 0.015528011135757, 0.0227849520742893, 0.0141977909952402, -0.0101742055267096, -0.00849496759474277, -0.00674987724050879, -0.000772943254560232, -0.00742157269269228, -0.0111158955842257, 0.012347336858511, 0.00387871009297669, 0.0118402726948261, -0.00831716600805521, -0.0426987372338772, -0.0149880200624466, 0.0150275323539972, -0.00308024883270264, -0.0209805946797132, -0.0121168531477451, -0.0268546342849731, 0.0161601938307285, -0.00532417139038444, -0.0233381129801273, -0.0179250407963991, 0.00647658947855234, 0.0125975757837296, -0.033690121024847, 0.0167660377919674, -0.0110237020999193, -0.00975933484733105, -0.00632512895390391, 0.00761254457756877, -0.00610452331602573, -0.0149880200624466, 0.0288960598409176, 0.00894934963434935, 0.00528466003015637, -0.00964738614857197, -0.0241678543388844, 0.0248263776302338, 0.0101412795484066, 0.0100029893219471, 0.0280268080532551, 0.00648317486047745, 0.0144875422120094, 0.000244065682636574, 0.00354944774881005, -0.0221000872552395, -0.010345421731472, -0.00475784065201879, -0.0135392667725682, 0.0216918010264635, -0.00524514866992831, 0.0257088020443916, -0.0431992150843143, 0.0035461550578475, -0.0156728867441416, -0.0317408852279186, -0.00294360518455505, 0.0121892904862761, 0.0273156017065048, -0.0377729721367359, -0.0214547328650951, -0.00400382978841662, -0.00888349767774343, 0.0135524366050959, 0.000961445970460773, -0.0158572737127542, -0.0168977417051792, 0.00883740093559027, 0.0103651778772473, -0.0173982214182615, -0.0213361978530884, -0.00347042479552329, 0.00368773797526956, 0.00476113287732005, -0.00540977995842695, 0.211254701018333, -0.0138290170580149, -0.0221659392118454, 0.0252083223313093, 0.0219683814793825, 0.0225873943418264, 0.0150538729503751, 0.0167001839727163, 0.00877154804766178, 0.00670048827305436, -0.0170426182448864, 0.00447796750813723, -0.00908105447888374, -0.00276744971051812, 0.00349018047563732, -0.0237595681101084, -0.0250371061265469, -0.0308716353029013, -0.0335320755839348, -0.0127885481342673, -0.0118534434586763, 0.00524185597896576, -0.01262391731143, -0.0108854118734598, 0.00586086930707097, 0.00184057629667222, -0.0239044446498156, -0.00240855384618044, 0.0172665156424046, 0.00951568130403757, -0.0134404879063368, -0.0172270033508539, 0.00786936935037374, -0.00835009198635817, -0.00633171433582902, -0.00892959348857403, -0.00137467018794268, -0.0116822272539139, 0.0370881073176861, 0.0108393151313066, -0.00107421830762178, -0.0154226468876004, -0.0140134040266275, -0.00998981855809689, -0.00409602327272296, 0.0300550647079945, -0.000523115508258343, -0.00507393246516585, 0.00203154841437936, 0.0136841414496303, -0.0112015036866069, -0.0106088314205408, 0.0150275323539972, 0.016739696264267, -0.00567318964749575, 0.0195976924151182, 0.0122683141380548, 0.00769156776368618, -0.00883081555366516, -0.00788254011422396, 0.00012697177589871, 0.0250634476542473, 0.0191894080489874, 0.0147246103733778, -0.0169372539967299, 0.00379310175776482, 0.00713840685784817, 0.0381944291293621, 0.0326101407408714, -0.00949592515826225, 0.0311087034642696, -0.0191894080489874, 0.0100029893219471, -9.70809342106804e-05, -0.0245102867484093, -0.0238385908305645, 0.0236805453896523, 0.0128083042800426, -0.00782327260822058, 0.0235883519053459, -0.0160284899175167, -0.00338481669314206, 0.0178855285048485, -0.00917324796319008, -0.0161470230668783, -0.0229956805706024, 0.00783644337207079, 0.000674164562951773, -0.00904154311865568, -0.0149485087022185, -0.0169109124690294, -0.0190708730369806, 0.0102927396073937, -0.00605184119194746, 0.0102993249893188, 0.0158045906573534, -0.0189786795526743, 0.0478352271020412, 0.00239373696967959, -0.00279214442707598, -0.00204801163636148, 0.0285799689590931, 0.0297126304358244, 0.00970665272325277, 0.000648646731860936, 0.0016710062045604, 0.0159231256693602, 0.00793522130697966, 0.0310560222715139, -0.0155148403719068, 0.00220276485197246, -0.016331410035491, -0.00450430857017636, 0.00641732243821025, -0.00769156776368618, 0.0103256665170193, -0.0196372047066689, -0.00703304307535291, 0.0173850506544113, -0.00499161658808589, 0.0491786189377308, -0.00795497745275497, -0.00794839207082987, 0.0148826567456126, -0.00127753778360784, -0.0252214930951595, -0.0351652167737484, -0.00128823879640549, -0.0180040635168552, -0.0355076491832733, 0.0208488889038563, 0.0211518108844757, 0.0125712351873517, 0.00208752299658954, -0.00622635055333376, -0.013045372441411, 0.0056106299161911, 0.00676963338628411, -0.00861350167542696, 0.00869911070913076, -0.00355932558886707, -0.0139343813061714, 0.0162655580788851, 0.00263574486598372, -0.0122353872284293, -0.00765205593779683, 0.0317935682833195, -0.00623952085152268, -0.0160811711102724, -0.024839548394084, -0.0236805453896523, -0.0288960598409176, -0.00797473359853029, 0.0153567939996719, 0.0115768630057573, -0.00376017554663122, -0.0350071676075459, -0.0393270924687386, -0.0259326994419098, 0.0235620103776455, -0.0245893094688654, 0.00987786985933781, 0.0454908795654774, -0.014974850229919, -0.0295282434672117, -0.0103520071133971, -0.169109120965004, 0.0324784331023693, 0.0500742122530937, 0.00173850497230887, 0.00544270593672991, 0.0136841414496303, 0.0186757575720549, 0.0101742055267096, 0.0206513330340385, 0.027816079556942, 0.0407231636345387, 0.0176352895796299, -0.0121892904862761, -0.000983671168796718, -0.00485332636162639, -0.0101676201447845, -0.00441540777683258, -0.010694439522922, 0.0434362851083279, 0.0140529153868556, 0.00103141414001584, -0.0175562668591738, 0.0184255186468363, 0.0104112746194005, -0.0138553585857153, 0.0186230763792992, 0.00794180668890476, 0.0268678050488234, 0.0128807416185737, -0.00660829478874803, -0.0195581819862127, -0.012419774197042, 0.033690121024847, 0.00368773797526956, -0.0130782993510365, 0.0123670920729637, -0.0102927396073937, -0.00757303321734071, -0.0128873270004988, 0.0092522706836462, 0.011557106859982, 0.00642720051109791, 0.000695566646754742, -0.0261302571743727, 0.00313128461129963, 0.0112410150468349, 0.013763165101409, -0.030371155589819, -0.0080340001732111, -0.0166870132088661, 0.0219947230070829, -0.0171348098665476, 0.00807351153343916, 0.00723718572407961, 0.0323994122445583, 0.00507722469046712, 0.0181884504854679, 0.00690792314708233, 0.00647988216951489, 0.00845545623451471, -0.0180172342807055, -0.0116361305117607, 0.0176616311073303, -0.00997006241232157, 0.00325805065222085, -0.013802676461637, 0.00376346823759377, 0.00862008705735207, -0.0165157970041037, 0.00592013634741306, -0.017437731847167, -0.00410590087994933, -0.00044656201498583, -0.00692109391093254, -0.00193606235552579, 0.0151592371985316, -0.0288697201758623, 0.000715733971446753, 0.00266702473163605, 0.011451743543148, -0.00129482406191528, 0.0305028613656759, -0.00426394678652287, 0.013763165101409, -0.0158836133778095, 0.00217313133180141, -0.0142241315916181, -0.00162573263514787, -0.0109841907396913, -0.027816079556942, 0.0344013273715973, -0.00240361480973661, -0.0182016212493181, -0.00365481176413596, 0.0294228810817003, 0.012900497764349, -0.00496527552604675, 0.0188996568322182, -0.000892300857231021, -0.0224425196647644, 0.00106927938759327, -0.00647658947855234, -0.038536861538887, 0.0069606052711606, 0.0280794892460108, 0.0217049717903137, -0.00993713643401861, 0.0310823619365692, 0.00921934470534325, 0.0160943418741226, -0.015528011135757, 0.0242337062954903, 0.0199664663523436, 0.0211649816483259, -0.0106812696903944, 0.0116822272539139, 0.0151197258383036, -0.0350861921906471, 0.0146587584167719, -0.0128609864041209, 0.038536861538887, -0.0148299746215343, 0.00139607221353799, 0.0053406348451972, -0.0110302874818444, -0.00137549336068332, -0.0692241117358208, -0.0107998037710786, 0.0219552107155323, 0.0440421253442764, -0.0164499450474977, 0.0128280594944954, -0.00431333621963859, 0.0155016696080565, -0.00111290661152452, 0.00106269412208349, -0.00494551984593272, -0.0316882058978081, -0.000788583245594054, -0.0271048732101917, 0.000146624617627822, -0.029607268050313, -0.0209937654435635, -0.00381944281980395, -0.0143163250759244, 0.0218235068023205, -0.0291067883372307, -0.0286063104867935, -0.00175332184880972, 0.0145665649324656, 0.00396102573722601, -0.00293537345714867, -0.0194923281669617, 0.0192157477140427, 0.0229956805706024, 0.00284317997284234, -0.013802676461637, -0.0235356707125902, 0.0103585924953222, -0.024352241307497, -0.0119785629212856, 0.00646671187132597, -0.0129926912486553, -0.0115966182202101, 0.0131046399474144, -0.00916666258126497, -0.000554807018488646, -0.0161338541656733, 0.0169504247605801, -0.0398275703191757, -0.0033601219765842, -0.0157123971730471, -0.0198347624391317, 0.0223766677081585, 0.00458662398159504, -0.0376149266958237, -0.0274473056197166, -0.0341115742921829, -0.0187547821551561, -0.0211254693567753, 0.0163050703704357, -0.0308452937752008, -0.00274604768492281, 0.0374041981995106, -0.0462284274399281, -0.0043265069834888, 0.0178065057843924, 0.00966055598109961, 0.00824472866952419, 0.0312667489051819, 0.015290942043066, 0.0118863694369793, -0.0270258504897356, -0.0185703951865435, 0.0119258807972074, -0.0141714503988624, -0.0119127109646797, 0.0305292010307312, -0.00586745422333479, -0.014079256914556, -0.0370617657899857, -0.0107273664325476, -0.0132692707702518, -0.0223108138889074, 0.0136051187291741, -0.0186625886708498, -0.0184386894106865, -0.0304238386452198, -0.0198215916752815, -0.0291067883372307, 0.0162655580788851, 0.0174245610833168, 0.016331410035491, -0.00641073705628514, 0.0115373516455293, -0.0320833213627338, -0.00656878296285868, 0.0179118700325489, 0.00774424942210317, -0.015567522495985, -0.0441211499273777, 0.0145797356963158, 0.00614732736721635, 0.0152119193226099, -0.00696719065308571, -0.0217049717903137, -0.00829740986227989, -0.032030638307333, -0.0795497745275497, 0.0229825098067522, -0.00694743497297168, -0.0107471216470003, 0.009061299264431, -0.0225083716213703, 0.0232854299247265, 0.00272958446294069, -0.0164104346185923, 0.00504100602120161, -0.0213888790458441, -0.0192420892417431, -0.0216654594987631, 0.00637781107798219, -0.00522210029885173, -0.0203484110534191, 0.0200059786438942, 0.0182411316782236, 0.0178855285048485, 0.0142241315916181, 0.006588539108634, 0.0173060279339552, 0.00632512895390391, 0.0153963053599, -0.0201640240848064, 0.00432979920879006, -0.00214020512066782, 0.0221000872552395, -0.0257614832371473, 0.00943007227033377, 0.0155411809682846, -0.0158704426139593, -0.00970665272325277, 0.0278951022773981, -0.00332225672900677, -0.00208587665110826, 0.00310658989474177, 0.00615391274914145, -0.0129795204848051, 0.0229561682790518, -0.0280004665255547, 0.00131046399474144, 0.0165026262402534, 0.00185210048221052, -0.0236278641968966, 0.0105693200603127, 0.00659183133393526, 0.0075005954131484, 0.0264331791549921, 0.0283165592700243, 0.0130124464631081, 0.00894934963434935, -0.0110302874818444, -0.0218366757035255, 0.0101544493809342, -0.0128017188981175, 0.0119456369429827, 0.0321886837482452, -7.58846726967022e-06, -0.0126173319295049, 0.0282111950218678, 0.020822549238801, 0.00121415476314723, -0.00875179190188646, 0.0276580341160297, 0.00996347796171904, -0.00055274908663705, 0.0167133547365665, -0.00672353664413095, -0.0161997061222792, -0.0321623422205448, -0.00527478242293, 0.00537356082350016, 0.0204537753015757, 0.0222844742238522, -0.00757961859926581, -0.0050047873519361, 0.00397419603541493, -0.0153831355273724, 0.0421455763280392, 0.0184123478829861, 0.0144743714481592, -0.0169372539967299, 0.0281585138291121, 0.0413026660680771, 0.0165157970041037, -0.0171743221580982, -0.000555630133021623, -0.0138421878218651, 0.0188074633479118, -0.0184123478829861, -0.00135326816234738, -0.00284976535476744, -0.0256824605166912, -0.00784961320459843, 0.00792863685637712, -0.0239834673702717, -0.0109578501433134, 0.0158572737127542, 0.0230220202356577, 0.00713840685784817, -0.004998201970011, -0.00758620351552963, -0.039722204208374, -0.015844102948904, -0.00426394678652287, -0.0331633016467094, -0.0218893587589264, 0.00382602796889842, 0.00881105940788984, 0.0318989343941212, 0.00186691735871136, 0.0147904632613063, 0.0163182411342859, -0.0198084209114313, 0.0347701013088226, 0.0220210626721382, -0.0232590902596712, -0.00967372674494982, 0.0319252721965313, -0.00947616901248693, -0.00698036095127463, 0.0304501783102751, -0.0101281087845564, 0.0161470230668783, 0.00215337541885674, 0.00604525627568364, -0.0307399295270443, 0.00392480660229921, 0.00178295548539609, 0.0130848847329617, -0.0137499943375587, -0.00487966742366552, -0.00575550505891442, -0.0170031059533358, 0.013526096008718, -0.00258800177834928, -0.00380956497974694, -0.0112344305962324, 0.0761254504323006, 0.013802676461637, -0.00498173898085952, -0.00734254950657487, 0.0120049035176635, 0.0269995089620352, 0.0110697988420725, 0.0263409856706858, 0.00773107912391424, -0.0491259358823299, -0.0287643559277058, -0.0109183378517628, 0.0106615135446191, -0.0116624711081386, -0.0248790606856346, -0.0172270033508539, -0.0187547821551561, 0.0188733153045177, -0.0157914198935032, -0.00122485577594489, 0.00999640394002199, 0.00305390800349414, 0.00957494787871838, 0.0171874929219484, -0.0215337555855513, -0.00374371255747974, 0.0373251773416996, 0.0167133547365665, -0.00387871009297669, -0.0170031059533358, 0.0211386401206255, 0.000185827419045381, -0.0256034377962351, -0.0084422854706645, -0.00724377110600471, -0.0245893094688654, -0.0122748985886574, 0.00995689257979393, 0.018820634111762, 0.00704621337354183, -0.000835914688650519, 0.0179118700325489, -0.0307135879993439, -0.00926544144749641, 0.0300814043730497, -0.00173685874324292, 0.00784961320459843, -0.0207040142267942, -0.0159231256693602],hobby:"Bicycle",location:"Slovenia",name:"Tomaz"})
()-[:FRIEND{embedding:[-0.0188128929585218, 0.00192952749785036, 0.00203634053468704, -0.0177516527473927, -0.00975100509822369, 0.0293288175016642, -0.0199292618781328, -0.0139408363029361, -0.0235126707702875, -0.0169522762298584, 0.00764230685308576, 0.0396380051970482, -0.0166904125362635, -0.0059470790438354, 0.00109052762854844, 0.00699109164997935, 0.0230027232319117, -0.0107226595282555, 0.0225892532616854, -0.000574551231693476, -0.0133688692003489, 0.00167110865004361, -0.00769054517149925, 0.0103160804137588, 0.00740800704807043, -0.0261175315827131, 0.0117149883881211, -0.018688851967454, -0.0116598587483168, -0.015450001694262, 0.00949603132903576, -0.0152708319947124, -0.0118252467364073, -0.0122042614966631, -0.011742552742362, 0.00882758852094412, -0.00354206119664013, -0.00928240548819304, 0.0364680700004101, -0.0115564912557602, -0.000494441424962133, -0.00136531295720488, 0.00742178969085217, -0.0172554887831211, -0.0274268537759781, -0.0135273654013872, 0.00882758852094412, -0.00223446171730757, -0.00970965810120106, 0.0154775669798255, 0.0319474600255489, 0.0127762285992503, -0.00976478680968285, -0.00138340226840228, -0.0162769425660372, 0.00314409611746669, -0.0183856394141912, -4.01895158574916e-05, 0.0196673981845379, 0.00784215051680803, -0.0165801532566547, 0.00386939174495637, -0.0112119326367974, -0.00223101605661213, -0.0101438015699387, -0.0129691809415817, -0.0201222151517868, 0.00532687408849597, 0.00245842477306724, -0.00176586222369224, 0.0199016965925694, 0.0177240874618292, 0.00257385172881186, -0.0111568029969931, 0.0165388062596321, 0.00371778593398631, -0.020135996863246, 0.0104676866903901, 0.000103044520074036, 0.0118459202349186, 0.0197087451815605, -0.0480452328920364, -0.00851059425622225, 0.0346212349832058, 0.0105365980416536, 0.00160391966346651, 0.00355928903445601, 0.0155740426853299, -0.0146368443965912, -0.00945468433201313, 0.0179997347295284, 0.01216980535537, 0.00678435619920492, 0.0267239548265934, -0.020797548815608, 0.0231681112200022, -0.00169867323711514, 0.041981004178524, -0.000400764576625079, -0.015022749081254, 0.00419327663257718, 0.00467221299186349, -0.0107019860297441, -0.0115496004000306, -0.028074624016881, 0.0160839892923832, 0.00778702134266496, -0.0100611075758934, 0.00520627852529287, 0.00981302559375763, -0.0226719472557306, 0.0358340814709663, -0.00213798531331122, -0.014691973105073, -0.00356962578371167, 0.003164769615978, -0.0131621332839131, -0.0199843905866146, -0.0146781913936138, 0.00237228511832654, -0.013968400657177, 0.0266136974096298, 0.0322506725788116, -0.00674300920218229, 0.00744246318936348, -0.00189507158938795, -0.016139118000865, -0.00939955562353134, -0.0100817810744047, -0.0122387167066336, 0.0504157952964306, 0.0122938463464379, 0.0197225268930197, 0.00130329246167094, -0.0138512505218387, 0.0275784600526094, -0.0173657462000847, 0.016993623226881, -0.0226168185472488, -0.00959939882159233, 0.00355584337376058, 0.0205770321190357, -0.000399472482968122, 0.00144456140697002, 0.0066430876031518, 0.0128795960918069, 0.00412781070917845, -0.0137272095307708, 0.0167731065303087, -0.0168282352387905, 0.0199154801666737, -0.00576101755723357, 0.0161253362894058, -0.00282021099701524, 0.00746313668787479, 0.0170625355094671, 0.00406234432011843, 0.0110258711501956, -0.0066672065295279, -0.0152708319947124, 0.0108053535223007, 0.00802132114768028, 0.00675334595143795, -0.00560596631839871, 0.0227132942527533, 0.0381495133042336, 0.0113635389134288, -0.000706344901118428, 0.0106330746784806, -0.01771030575037, -0.0269306898117065, 0.0338218584656715, -0.0238434467464685, 0.026434525847435, -0.0179446060210466, 0.0105297071859241, 0.0222860425710678, 0.0262277908623219, -0.0159461665898561, -0.0238985754549503, -0.024601474404335, 0.00927551370114088, 0.019019627943635, 0.0160839892923832, -0.0145128024742007, -0.017048753798008, -0.00181582313962281, 0.00315443286672235, 0.00107157684396952, 0.00247392989695072, 0.0212661493569613, 0.0338218584656715, 0.00630197441205382, -0.00244636507704854, -0.710507154464722, -0.017572483047843, -0.00145145261194557, -0.0109707415103912, 0.0429182052612305, 0.0408508516848087, 0.00120595470070839, 0.000263371883193031, -0.0120733287185431, 0.00101644755341113, -0.0242155697196722, -0.00261864438652992, -0.00273234862834215, -0.0140235302969813, 0.00945468433201313, -0.013444671407342, -0.0004048561968375, 0.0131896985694766, -0.00286672660149634, 0.00813158042728901, -0.00900675822049379, 0.00786282401531935, -0.0209491550922394, 0.018633721396327, 0.00127572775818408, -0.000752860272768885, -0.00622617173939943, -0.0240364000201225, -0.00572311645373702, 0.0240639634430408, -0.0257040616124868, -0.000125871520140208, 0.0168971475213766, 0.00285466690547764, 0.0538613796234131, 0.0128244664520025, -0.0147333201020956, -0.00855883210897446, 0.0171314477920532, 0.0202738214284182, -0.0333532616496086, -0.0119630703702569, -0.00137478834949434, -0.0141682447865605, 0.0099439574405551, 0.00580925587564707, 0.0106330746784806, 0.00206735078245401, 0.000343481719028205, 0.00731153087690473, 0.00908945221453905, -0.00479625398293138, 0.00690839719027281, -0.00295286602340639, -0.0144025441259146, 0.000556461920496076, 0.0457022376358509, -0.0352276600897312, 0.00371089484542608, 0.0271787717938423, -0.00627785548567772, 0.0110534355044365, -0.0174346584826708, -0.015312178991735, 0.00390384742058814, 0.0169247128069401, -0.00180031801573932, 0.019874133169651, 0.0124936904758215, -0.0418156161904335, 0.0343455895781517, 0.011411776766181, -0.0251665506511927, -0.0244085229933262, 0.0219690483063459, 0.0199016965925694, 0.0108398096635938, -0.0182064697146416, -0.0295768994837999, 0.0270960777997971, 0.0125901661813259, -0.00729085737839341, -0.0171038825064898, -0.0204943381249905, 0.0218863543123007, -0.0137616656720638, -0.0377911739051342, 0.00237917620688677, -0.0036833300255239, 0.0189782809466124, 0.0259797088801861, 0.00531653733924031, -0.00750448368489742, -0.0192814916372299, -0.00647080829367042, -0.00220861984416842, -0.00756650418043137, 0.0163458548486233, 0.0171452295035124, -0.0109914150089025, 0.0109087210148573, 0.011411776766181, -0.0252216812223196, 0.0079455180093646, 0.0118321375921369, 0.00347659504041076, -0.00826940312981606, 0.0117976823821664, 0.0241604410111904, -0.0247117336839437, 0.00185889296699315, -0.00312514533288777, -0.00873111188411713, -0.0206321608275175, -0.00797997415065765, -0.0283089242875576, 0.00153931498061866, 0.00356273469515145, 0.00468599516898394, -0.00364887434989214, 0.0202738214284182, -0.00474801566451788, -0.00933064334094524, 0.0026479319203645, 0.0154775669798255, 0.00802132114768028, -0.00751826586201787, -0.0283364895731211, -0.0113773206248879, -0.00908945221453905, -0.0098474808037281, -0.00267894216813147, 0.0388386324048042, -0.0266136974096298, 0.0127900103107095, -0.00766987167298794, 0.0146781913936138, -0.00766987167298794, 0.0218863543123007, -0.0143474144861102, -0.031092956662178, -0.00381081667728722, -0.00651215529069304, -0.00593329686671495, 0.00647080829367042, -0.00913769099861383, -0.0302108861505985, 0.00848992075771093, 0.0109431771561503, 0.00212420290336013, -0.0316166840493679, -0.00778702134266496, -0.0131414597854018, 0.00742868054658175, 0.00289945956319571, -0.0174070931971073, -0.00279953749850392, -0.01016447506845, -0.0184683334082365, -0.013244828209281, 0.0145128024742007, 0.00298904487863183, -0.00362130952998996, 0.0148573610931635, -0.00624339934438467, 0.00207424210384488, -0.017903259024024, 0.0199154801666737, 0.00959250796586275, -0.0357238240540028, -0.00876556802541018, -0.012755555100739, -0.0072701838798821, 0.001438531675376, 0.0077043273486197, -0.00402444275096059, -0.0166490655392408, -0.0104125570505857, 0.0161804668605328, -0.0193366222083569, 0.0120664378628135, 0.00674645509570837, 0.000754152366425842, 0.0224789939820766, 0.0122869554907084, 0.0145679321140051, -0.0106537481769919, 0.0159599483013153, -0.0169247128069401, -0.000760612834710628, 0.0050064348615706, 0.00538889458402991, -0.0239674877375364, 0.0199843905866146, -0.00236022565513849, 0.00206218240782619, -0.00143680884502828, 0.0250287279486656, 0.0211421083658934, 0.0119906347244978, 0.0357238240540028, 0.012466125190258, 0.0233748462051153, -0.00673611834645271, 0.000128886400489137, -0.052152369171381, -0.000814880768302828, -0.0245739109814167, 0.0167593248188496, 0.00861396174877882, -9.65302097029053e-05, -0.0321955420076847, -0.00816603563725948, 0.00715303374454379, 0.0138857066631317, 0.0180135164409876, -0.0105986185371876, 0.00594363361597061, -0.00812468864023685, 0.00138167943805456, 0.00377291534096003, 0.00412781070917845, 0.0191023219376802, -0.00176069384906441, -0.010826027020812, -0.00716681638732553, 0.0210594143718481, 0.0312583446502686, -0.00106985401362181, -0.00831075012683868, 0.00436555594205856, 0.00244119670242071, 0.00838655326515436, 0.00664997845888138, 0.0273992903530598, 0.00210180669091642, 0.0161666832864285, -0.0164698958396912, 0.0538889467716217, -0.00166507880203426, -0.0181789044290781, 0.0195020101964474, 0.0270960777997971, -0.00683259451761842, 0.0092686228454113, 0.0108467005193233, 0.0301557574421167, 0.0147333201020956, -0.00366610218770802, 0.0142785031348467, 0.00554739125072956, 0.000969932123553008, -0.00878624152392149, 0.00207768753170967, 0.0132379364222288, -0.00224307575263083, 0.00147384882438928, 0.0234161932021379, 0.0198327861726284, 0.0309826973825693, 0.0142509387806058, -0.000472045096103102, 0.00595397036522627, -0.0040933545678854, 0.0149814020842314, -0.0130449840798974, 0.00934442598372698, -0.0174622237682343, -0.0253319386392832, 0.00498576089739799, -0.0223687365651131, 0.00233955192379653, 0.0188128929585218, -0.00375913293100893, 0.0210456307977438, 0.00221895659342408, -0.00566798681393266, -0.0121008940041065, 0.0049581965431571, -0.00411058263853192, -0.0145954973995686, -0.0149676203727722, 0.0147608853876591, -0.000761474249884486, 0.000571105687413365, 0.0103436456993222, -0.0450958125293255, 0.00636054947972298, -0.00397965032607317, -0.00915836449712515, 0.0121560227125883, -0.00227064033970237, 0.00338700972497463, -0.0112670622766018, 0.0175449177622795, 0.0294115114957094, 0.00111550802830607, 0.000954426999669522, -0.00424151495099068, -0.0354481749236584, 0.00957872532308102, 0.0120526552200317, -0.0137685565277934, -0.0153535259887576, 0.0382046438753605, -0.0148160140961409, -0.000683948572259396, 0.000817464955616742, -0.00294080656021833, 0.00210180669091642, 0.00358340819366276, -0.0120871113613248, -0.00838655326515436, -0.0131276780739427, 0.020797548815608, 0.00309585779905319, -0.0148435793817043, -0.00943401083350182, 0.0251941159367561, 0.0127693368121982, 0.00947535783052444, -0.00873800273984671, -0.0153397433459759, 0.0173657462000847, 0.0421739555895329, 0.030431404709816, -0.00290807359851897, -0.00634676730260253, -0.00423462362959981, -0.015119225718081, -0.0175311360508204, -0.0233748462051153, 0.0139615098014474, -0.0124936904758215, 0.00791106279939413, -0.0084003359079361, 0.0183167289942503, 0.012624622322619, 0.0231818947941065, -0.0149538377299905, -0.00670166220515966, -0.00567143270745873, -0.01108100079, -0.0114806881174445, 0.00842790026217699, 0.0121560227125883, 0.0260348375886679, 0.0103712100535631, 0.0322506725788116, -0.023154329508543, 0.0058506028726697, 0.0298249814659357, 0.00639845104888082, -0.0233610644936562, -0.0122180432081223, 0.0150916613638401, 0.00494096847251058, 0.0201497804373503, 0.00200188462622464, 0.0306519214063883, -0.0215831436216831, 0.00248082098551095, 0.011411776766181, -0.0159186013042927, 0.0193366222083569, 0.0210318490862846, 0.0046928864903748, 0.00253250473178923, -0.00502710836008191, -0.0186612866818905, 0.00284949853084981, 0.0213901903480291, -0.0195295736193657, -0.0343180224299431, 0.00288395443931222, -0.0127693368121982, 0.0116047291085124, -0.0193228386342525, -0.00353172444738448, 0.00897230301052332, -0.0180962104350328, 0.00596430711448193, -0.0249735973775387, -0.0200946498662233, -0.00197087437845767, -0.0225203409790993, -0.00815225392580032, -0.0135824950411916, -0.0233334992080927, -0.0214728843420744, -0.0245049986988306, -0.00218622363172472, -0.0166352838277817, -0.000474198604933918, -0.00413470156490803, 0.00187612092122436, -0.00687049608677626, 0.0176827404648066, 0.0283916182816029, 0.0133688692003489, -0.00186750688590109, -0.0128864869475365, -0.0178205650299788, 0.0103643191978335, -0.0105572715401649, -0.00779391266405582, -0.00189334875904024, -0.0115702738985419, -0.0171038825064898, 0.0159875135868788, -0.0035024369135499, -0.0224514305591583, -0.00224824412725866, 0.0207424201071262, 0.0122938463464379, -0.00370400352403522, -0.0121560227125883, -0.0161942485719919, 0.00890339072793722, -0.0128244664520025, 0.00289773684926331, -0.0178343467414379, 0.00398309575393796, -0.0186475049704313, -0.016332071274519, -0.0212799310684204, 0.00977856945246458, 0.00504778185859323, 0.0167041942477226, -0.00137823389377445, -0.0161666832864285, 0.0291909947991371, -0.0128520308062434, 0.00908256135880947, 0.00445858668535948, 0.00406234432011843, -0.000830816628877074, 0.00612969510257244, -0.00248426664620638, 0.012721098959446, 0.00868287310004234, 0.0195295736193657, 0.0153535259887576, -0.0327468365430832, 0.015450001694262, -0.0364956334233284, 0.0153948729857802, 0.0152570493519306, 0.00334049435332417, 0.0383149012923241, 0.00336289079859853, -0.0151054430752993, 0.00485138315707445, -0.0176138300448656, -0.00937888212502003, 0.0130036370828748, -0.0170625355094671, -0.0103298630565405, -0.025318156927824, -0.0383975952863693, -0.00436211051419377, 0.0165388062596321, -0.0010844977805391, -0.00489273015409708, -0.0143336327746511, -0.00219311472028494, 0.0037556872703135, -0.0157945603132248, -0.0103643191978335, -0.0269444733858109, -0.0149676203727722, 0.00667754327878356, -0.00694285333156586, 0.022961376234889, 0.00558873824775219, -0.00875178538262844, -0.0152019197121263, -0.0129002695903182, -0.00722883688285947, -0.020659726113081, 0.00465153949335217, -0.00791106279939413, 0.0220517423003912, 0.00762163335457444, 0.0333808250725269, -0.00654316553846002, 0.00778702134266496, -0.000821341236587614, -0.0026479319203645, 0.0139270536601543, -0.00214659934863448, -0.0163872018456459, -0.027550894767046, 0.0175449177622795, -0.00935131683945656, 0.0127142081037164, 0.0238434467464685, -0.0109018301591277, 0.0117012057453394, 0.00243947398848832, 0.0269996020942926, 0.0084003359079361, -0.00365231977775693, -0.00517871370539069, 0.00278230966068804, 0.00804888550192118, -0.0242982637137175, 0.0134171070531011, -0.0130725484341383, 0.00975789595395327, 0.0460881404578686, 0.00534065626561642, -0.00561630306765437, -0.00754583068192005, 0.0124178873375058, -0.00858639739453793, 0.00667409785091877, -0.0212799310684204, 0.00181410030927509, -0.0169660598039627, -0.0172968357801437, -0.0199843905866146, 0.0124247781932354, 0.0183580759912729, 0.0256351511925459, 0.0207010731101036, -0.0108604831621051, 0.00469633191823959, -0.000396242248825729, 0.00685326801612973, -0.00831075012683868, -0.00571622513234615, 0.0126108406111598, -0.00557151064276695, -0.00715992506593466, 0.0217898786067963, 0.00520283309742808, -0.0116185117512941, -0.00492374040186405, 0.0249598156660795, -0.0129209430888295, 0.015215702354908, -0.0186475049704313, -0.01400285679847, -0.00437589269131422, -0.0064501347951591, 0.0331327430903912, 0.00877245888113976, 0.00802821200340986, 0.00845546461641788, 0.000899297592695802, -0.00945468433201313, -0.0017761989729479, -0.0159737300127745, 0.00743557186797261, 0.0209353733807802, 0.0113979941233993, -0.00738044269382954, 0.0143474144861102, 0.00797308329492807, 0.0143336327746511, -0.00769054517149925, -0.0405200757086277, 0.0163045078516006, 0.0185096804052591, 0.0107915718108416, -0.0181513410061598, -0.00780769484117627, -0.0407405942678452, 0.0235677994787693, 0.00144628423731774, -0.00106813129968941, -0.0174346584826708, -0.00502366246655583, -0.0300730634480715, 0.0114531237632036, -0.0209353733807802, 0.0231129825115204, 0.0147195383906364, -0.00154448335524648, -0.0125832753255963, 0.00528552709147334, 0.000276077480521053, -0.00718059856444597, 0.00287534040398896, 0.0401066057384014, -0.00362475519068539, 0.00772500084713101, 0.00234472053125501, 0.0116391852498055, -0.0173519644886255, -0.00590228661894798, 0.00791795365512371, 0.0188128929585218, -0.0399136543273926, -0.0124454516917467, -0.00731153087690473, 0.0166904125362635, 0.00923416670411825, -0.00479969941079617, -0.0175311360508204, -0.0174070931971073, -0.00169350486248732, 0.00389351067133248, 0.00112670625094324, -0.0138857066631317, -0.0187991112470627, -0.000906188797671348, 0.00490651279687881, -0.0183718577027321, -0.0101231280714273, -0.00133171852212399, -0.00451371585950255, -0.0108742658048868, -0.0320852845907211, -0.00156257266644388, 0.0205494668334723, 0.0217898786067963, 0.00973033159971237, -0.0275371130555868, 0.00889649987220764, 0.028074624016881, -0.00937888212502003, 0.0146368443965912, -0.0298249814659357, 0.00469977781176567, -0.0167455412447453, 0.0227408595383167, -0.0165388062596321, -7.16035583536723e-06, 0.0142371561378241, -0.019019627943635, -0.0185785926878452, -0.00892406422644854, -0.0120526552200317, 0.0237607527524233, 0.0210731960833073, 0.00876556802541018, -0.00410713721066713, 0.0072219455614686, -0.0026479319203645, 0.00461019249632955, -0.022630600258708, 0.0217209663242102, -0.00606422917917371, -0.001635791384615, 0.00479280855506659, -0.0122456084936857, -0.00703243864700198, 0.00492374040186405, -0.000124687096104026, 0.00153070106171072, -0.0343180224299431, -0.021707184612751, -0.0201497804373503, -0.0023481659591198, 0.00661207688972354, -0.00121284578926861, -0.0157256480306387, -0.000452232983661816, -0.0132930660620332, 0.010591727681458, 0.0122111523523927, -0.000619343831203878, 0.00526140769943595, 0.00866909138858318, -0.0276749357581139, 0.00988193694502115, -0.00616759667173028, -0.00756650418043137, -0.0341526344418526, -0.00638811429962516, -0.0252078976482153, -0.0181789044290781, -0.024987380951643, 0.0417329221963882, 0.00777323916554451, -0.0259659271687269, -0.0148297967389226, -0.0086897648870945, -0.0357238240540028, -0.00528897251933813, -0.0154775669798255, 0.0127348816022277, 0.0293563827872276, 0.0203151684254408, -0.0114324502646923, 0.026434525847435, -0.00871732924133539, 0.00200533028692007, -0.0136996451765299, -0.00612624967470765, -0.0147333201020956, 0.00342835672199726, -0.00130156963132322, 0.0168144535273314, -0.0144852381199598, -0.0162907242774963, 0.0375155285000801, 0.00729774869978428, -0.0123076289892197, 0.0240915287286043, 0.0114669064059854, -0.00382459908723831, -0.00169695052318275, 0.0129553982988, -0.00964074581861496, 0.0108949393033981, 0.00766987167298794, -0.0166352838277817, -0.0240226164460182, 0.00820049177855253, -0.00481692748144269, -0.021183455362916, 0.00532342819496989, 0.00293046981096268, 0.000608145724982023, 0.00518560502678156, -0.0199843905866146, 0.00732531305402517, -0.0126177314668894, -0.013968400657177, 0.016593936830759, -0.0101231280714273, -0.0241190940141678, 0.0316993780434132, -0.00367988459765911, 0.00478936266154051, -0.0112739531323314, 0.0256213676184416, -0.0242293514311314, 0.00269272457808256, 0.00101903174072504, -0.0351725295186043, -0.00755272153764963, -0.00716681638732553, -0.00226202630437911, -0.0474112443625927, 0.00848992075771093, -0.0102127129212022, -0.00674645509570837, 0.00870354659855366, 0.00650181854143739, 0.00640878779813647, -0.0212799310684204, -0.0355859994888306, -0.00766298035159707, 0.0191987976431847, 0.00923416670411825, 0.00159186020027846, -0.0096269641071558, -0.00125763844698668, 0.00353516987524927, 0.0130449840798974, -0.00924794934689999, -0.0212523657828569, 0.0227959882467985, 0.0061124674975872, -0.00639845104888082, 0.0346763655543327, 0.204309388995171, -0.00436900136992335, 0.00151519593782723, 0.0189507156610489, -0.0199981741607189, -0.0102816252037883, 0.0146644087508321, 0.00345764425583184, 0.00251183123327792, 0.00288912281394005, -0.0154913486912847, 0.0210869777947664, -0.0184269864112139, -0.00336978188715875, 0.0355584360659122, -0.0019209134625271, -0.0160012952983379, -0.0263518318533897, -0.0168420188128948, -0.0251941159367561, -0.00547847989946604, -0.00383493583649397, -0.00711857806891203, -0.011901049874723, 0.0228649005293846, -0.020990502089262, -0.0111912591382861, 0.0104539040476084, 0.0223549529910088, 0.0347039289772511, -0.0172279234975576, -0.0200119558721781, 0.0246979519724846, 0.00910323485732079, -0.0342628955841064, 0.000746830482967198, 0.0197638738900423, 0.00601254543289542, 0.0246703866869211, 0.0241604410111904, 0.00658106664195657, -0.00622961716726422, 0.00633987598121166, -0.00962007232010365, -0.00468944106251001, 0.0107777891680598, 0.00392452115193009, -0.0289980415254831, 0.00329053332097828, -0.0116047291085124, -0.0220103953033686, -0.00916525535285473, 0.0258970148861408, 0.0192401446402073, 0.0236504934728146, -0.0015462061855942, 0.0263518318533897, 0.00483415555208921, -0.010688204318285, 0.0152708319947124, -0.00758717767894268, 0.0334359556436539, -0.0124523434787989, 0.0240501817315817, 0.000919109734240919, 0.0141682447865605, -0.00871732924133539, -0.0217623133212328, -0.00479625398293138, 0.00411402806639671, 0.0147746670991182, 0.00302350055426359, -0.0260348375886679, 0.00354550662450492, -0.0154775669798255, -0.0136582981795073, 0.00248254369944334, -0.00395208550617099, 0.0086897648870945, 0.0136445155367255, -0.0132379364222288, 0.00685326801612973, -0.0069325165823102, -0.0248633399605751, -0.016993623226881, -0.0365783274173737, 0.00301144109107554, 0.00315960124135017, -0.011018980294466, 0.00798686500638723, -0.0226719472557306, -0.0236091464757919, -0.00612624967470765, -0.0210456307977438, 0.0061848247423768, -0.0130794392898679, -0.00298043084330857, 0.0355859994888306, -0.0108191361650825, 0.000972516310866922, -0.0209629368036985, 0.0441310480237007, 0.0156016079708934, 0.0153535259887576, -0.00634332140907645, -0.001475571654737, -0.00200016191229224, 0.0175862647593021, -0.00979924295097589, 0.00168316811323166, 0.00579202780500054, 0.00783525966107845, 0.00104401214048266, -0.0126039488241076, -0.00371778593398631, 0.0237607527524233, -0.00230681896209717, -0.0309826973825693, 0.000559907522983849, -0.00403822539374232, -0.00644668890163302, -0.0116322943940759, -0.00142561073880643, 0.00951670482754707, -0.0124454516917467, -0.0102747334167361, -0.0152846137061715, -0.0167317595332861, 0.000165711084264331, -0.0312032159417868, -0.00246531586162746, -0.00550259882584214, 0.0205219034105539, -0.0115633821114898, -0.0119286142289639, 0.00585749419406056, -0.00360752712003887, -0.00456884549930692, -0.00367988459765911, 0.0171452295035124, -0.00602288218215108, -0.00242569157853723, 0.0144576737657189, 0.0100266514346004, 0.0148987080901861, -0.0166077185422182, 0.0183580759912729, 0.00325780035927892, -0.012266281992197, -0.0222033485770226, -0.0307346154004335, -0.00453094393014908, -0.00829696841537952, 0.00175897101871669, 0.0197087451815605, -0.025318156927824, -0.0195157919079065, -0.014691973105073, 0.0036109727807343, 0.00185717013664544, -0.0163872018456459, -0.00656383903697133, 0.0239674877375364, -0.025511110201478, -0.00422084145247936, -0.0166628472507, -0.182588428258896, 0.0119492877274752, -0.00853815861046314, -0.00792484451085329, -0.000802390568424016, -0.00910323485732079, 0.0188128929585218, -0.00986815430223942, 0.0071254693903029, 0.0183994229882956, -0.00627785548567772, -0.0170625355094671, -0.0281021893024445, -0.0034541985951364, 0.00463431142270565, 0.0200946498662233, -0.012755555100739, -0.00352655607275665, 0.0107019860297441, 0.0214728843420744, 0.0245049986988306, -0.006787802092731, 0.011315300129354, -0.0140166385099292, 0.0109156128019094, -0.00610213074833155, 0.00853126775473356, 0.0301557574421167, -0.00706344889476895, 0.0120733287185431, -0.00659140339121222, -0.000873025041073561, -0.00223101605661213, 0.00131621339824051, 0.0124178873375058, -0.00278403237462044, 0.0215555783361197, -0.00149624515324831, -0.0120664378628135, 0.0211421083658934, 0.0249046869575977, 0.0372123159468174, -0.0058747217990458, -0.00317166070453823, -0.00590917794033885, 0.0109018301591277, 0.00364887434989214, -0.0114186676219106, 0.00623650848865509, 0.000417992501752451, 0.0148297967389226, -0.0323609337210655, 0.000871732947416604, -0.00813158042728901, 0.00138598645571619, 0.00262725842185318, 0.00190368562471122, -0.0140993325039744, 0.0131828067824244, 0.0177654344588518, -0.00320611661300063, -0.0261450968682766, 0.00848992075771093, 0.00920660234987736, -0.00909634400159121, -0.00791106279939413, -0.015312178991735, 0.0271925553679466, -0.00817981828004122, 0.00395897682756186, 0.014884926378727, -0.0331051796674728, 0.00675334595143795, -0.00360063603147864, 0.0237056221812963, -0.00858639739453793, -0.036605890840292, 0.0184821169823408, -0.00694974465295672, -0.0125350374728441, -0.0200257394462824, 0.0421463921666145, 0.00390729308128357, 0.0251527689397335, -0.00711857806891203, 0.0116529678925872, -0.0173933114856482, -0.00335427676327527, -0.0106744216755033, -0.000388489686883986, 0.0419258736073971, -0.0200946498662233, -0.0288050882518291, -0.0109569597989321, 0.0171727947890759, 0.0140855507925153, 0.00802821200340986, 0.0127969020977616, 0.00060039316304028, -0.00651904614642262, -0.0114048859104514, -0.015739431604743, -0.0146092791110277, 0.00763541599735618, 0.0221620015799999, 0.00448959693312645, 0.0123696494847536, 0.0162493772804737, 0.0149538377299905, -0.00588850444182754, -0.0165112428367138, -0.00631575705483556, 0.0125488191843033, 0.0064776991494, 0.00572656188160181, 0.0236091464757919, -0.00373501377180219, -0.0136031685397029, 0.0133068487048149, -0.000862257555127144, 0.0277989786118269, -0.00749070104211569, 0.00389006524346769, 0.0176000464707613, 0.00724261905997992, -0.0223962999880314, -0.0771259665489197, -0.029907675459981, 0.015022749081254, 0.0216107070446014, -0.00806266814470291, 0.0188955869525671, 0.000231500220252201, 0.0199154801666737, -0.00041863854858093, 0.0102402782067657, -0.00425529712811112, -0.0157807786017656, -0.0184132046997547, -0.0184958986938, 0.0226443838328123, 0.00411058263853192, -0.0101438015699387, -0.00278058694675565, -0.00778013048693538, 0.0249598156660795, -0.0276611540466547, 0.00540267676115036, -0.0105779450386763, -0.0212799310684204, -0.00389006524346769, 0.0129416165873408, -0.0170211885124445, 0.0240364000201225, 0.00749759236350656, -0.00596775254234672, 0.0216107070446014, -0.0110465446487069, 0.0237056221812963, -0.0238847937434912, -0.00754583068192005, -0.000146652702824213, -0.0373501367866993, -0.0032388495747, 0.00873800273984671, -0.0186061579734087, 0.00806955900043249, 0.0111981499940157, 0.00888271722942591, -0.022299824282527, 0.000654230418149382, -0.0231956765055656, -0.00841411761939526, 0.0341802015900612, -0.0166904125362635, -0.0146644087508321, -0.0305967926979065, 0.0193090569227934, -0.015119225718081, -0.01400285679847, 0.0183442924171686, 0.0108122453093529, 0.0264758728444576, 0.017517352476716, 0.00452405260875821, -0.00719438074156642, 0.000809712393674999, -0.0132792834192514, -0.0211696717888117, 0.0207424201071262, 0.00923416670411825, 0.00716681638732553, -0.0263380501419306, -0.0018123775953427, 0.0120113082230091, -0.00929618719965219, 0.00724951038137078, 0.0250011626631021, -0.0191298872232437, 0.0232232417911291, -0.0240364000201225, -0.00410713721066713, -0.0325814485549927, -0.023939922451973, -0.00114479556214064, -0.00975100509822369, -0.0294942054897547, -0.018633721396327, -0.0132655017077923, -0.00669477134943008, 0.0242155697196722, 0.0170901007950306, -0.00446547800675035, 0.00509946560487151, 0.00189334875904024, -0.030762180685997, 0.00231887842528522, 0.0326641425490379, -0.0158496890217066, -0.0257867556065321, -0.0187577642500401, -0.0124247781932354, -0.000163449920364656, -0.00519249634817243, 0.00109655736014247, -0.00915836449712515, -0.0326365791261196, -0.0029494205955416, -0.0430008992552757, 0.0323058031499386, 0.00392796657979488, -0.0144714554771781, -0.000566367991268635, -0.00287878606468439, -0.011411776766181, -0.0212385840713978, -0.00207941047847271, 0.00331809814088047, -0.0107846800237894, 0.0123627576977015, -0.011708096601069, -0.018302945420146, -0.0258143208920956, -0.0118183558806777, 0.00988882780075073, 0.00631231116130948, 0.0129622900858521, 0.00753893936052918, 0.013479127548635, -0.0150089673697948, 0.0221344362944365, 0.00791795365512371, -0.0103298630565405, 0.0131001127883792, -0.0198327861726284, 0.0162218138575554, -0.00101472472306341, -0.0111705856397748, 0.0168282352387905, -0.0208802428096533, -0.000944951607380062, 0.0161804668605328, -0.00129037152510136, -4.00818425987381e-05, -0.0163458548486233, 0.0383975952863693, -0.0113704297691584, 0.0254284162074327, -0.000408301799325272, -0.0103091895580292, 0.00103367539122701, -0.0211696717888117, -0.00660518603399396, 0.0131965894252062, -0.0257454086095095, -0.0170074068009853, 0.0269031263887882, 0.0023826218675822, 0.00902054086327553, -0.00729774869978428, -0.0259659271687269, -0.0414297096431255, 0.0027926464099437, -0.0209767203778028, -0.00337839592248201, -0.00724261905997992, -0.00299076759256423, -0.0112601704895496, 0.0189507156610489, 0.00358685362152755, 0.00260313926264644, -0.00327675114385784, -0.00324746361002326, -0.00403822539374232, -0.0205632504075766, 0.0166077185422182, 0.00441034836694598, -0.0287775229662657, -0.0220103953033686, -0.00443446775898337, 0.00228269980289042, 0.0228511188179255, 0.0287499595433474, 0.00967520195990801, 0.0113842124119401, 0.0167455412447453, 0.0030562337487936, 0.0324436277151108, 0.00155137456022203, 0.0233886297792196, -0.0230027232319117, 0.00213626259937882, 0.0220103953033686, 0.0119286142289639, -0.0272063370794058, -0.00482381880283356, -0.0257040616124868, 0.0148435793817043, -0.0120871113613248, 0.00534410215914249, 0.00950292311608791, -0.00427941605448723, 0.00916525535285473, -0.00292185577563941, 0.000729171850252897, 0.00563697656616569, 0.0149538377299905, 0.0212937127798796, 0.0190471932291985, 0.00289601390250027, -0.00206045969389379, -0.0252768099308014, -0.0128589225932956, -0.00287361769005656, -0.0428079441189766, -0.0455092824995518, 0.0212799310684204, 0.0313410386443138, -0.00587127637118101, -0.00293046981096268, 0.0176965240389109, 0.0223825182765722, -0.0323609337210655, 0.0199016965925694, -0.0111154559999704, -0.0116598587483168, -0.026627479121089, 0.0232645887881517, 0.00418293988332152, -0.0032733054831624, 0.0257591921836138, -0.00968898460268974, 0.0147471027448773, 0.0105434888973832, 0.00584026612341404, -0.0208251141011715, 0.00764919817447662, -0.00509257428348064, -0.00121715280693024, 9.84145153779536e-05, -0.0108398096635938, -0.0273579433560371, 0.000171094812685624, -0.007511374540627, -0.0085450503975153, 0.0437727086246014, 0.00769743649289012, 0.0636744052171707, -0.0020104986615479, -0.011646076105535, 0.00221378821879625, -0.011646076105535, 0.0187026336789131, 0.00901365000754595, 0.0122593902051449, 0.00246876152232289, 0.000857089180499315, 0.0200395211577415, 0.000890683673787862, 0.0111154559999704, -0.00956494361162186, -0.0301833227276802, -0.00699453707784414, -0.011349756270647, 0.0385629832744598, -0.00954427011311054, 0.0116874231025577, 0.0168971475213766, 0.015546478331089, 0.0382046438753605, 0.0151605727151036, -0.00899297650903463, -0.00321989902295172, 0.0135135836899281, -0.0225479062646627, -0.00147643301170319, -0.0255248919129372, 0.00569210620597005, -0.00767676299437881, -0.0161804668605328, -0.0185372456908226, 0.0140855507925153, -0.0034300796687603, -0.0128451399505138, -0.0106950951740146, 0.00294080656021833, 0.001672831363976, -0.00930996984243393, 0.016070207580924, -0.00439312076196074, -0.012659078463912, 0.0178205650299788, 0.00107674521859735, -0.0226030368357897, -0.00367299327626824, -0.0260761845856905],text:"example text"}]->()
(:Person{name:"Leann"})
...(:Person{name:"Leann"})
Nice! our data was created successfully. Next we...
# Create a vector index
store.create_new_index_on_relationship(
relation_type=relation_type,
embedding_node_property=embedding_node_property,
embedding_dimension=embedding_dimension
)
relationship_vector = FalkorDBVector.from_existing_relationship_index(
OpenAIEmbeddings(),
host=host,
port=port,
relation_type=relation_type,
text_node_property="text"
)
Database name: ZeCf
relationship_vector.retrieve_existing_relationship_index()
(1536, 'RELATIONSHIP', 'FRIEND', 'embedding')
relationship_vector.similarity_search("Example")
Docs_and_scores: [(Document(metadata={'text': 'example text'}, page_content='example text'), 0.508674323558807)]
[Document(metadata={'text': 'example text'}, page_content='example text')]
Add documents
We can add documents to the existing vectorstore
store.add_documents([Document(page_content="foo")])
Database name: ZeCf
Metadatas: [{}]
['acbd18db4cc2f85cedef654fccc4a4d8']
docs_with_score = store.similarity_search_with_score("foo")
docs_with_score[0]
(Document(metadata={'text': 'foo', 'id': 'acbd18db4cc2f85cedef654fccc4a4d8'}, page_content='foo'),
0.00301193865016103)
Customize response with retrieval query
You can also customize responses by using a custom Cypher snippet that can fetch other information from the graph. Under the hood, the final Cypher statement is constructed like so;
read_query = (
"CALL db.idx.vector.queryNodes($entity_label, $entity_property, $k, vecf32($embedding)) "
"YIELD node, score "
) + retrieval_query
The retrieval query must return the following three columns:
text
: Union[str, Dict] = Value used to populate page_content of a documentsource
: Float = Similarity scoremetadata
: Dict = Additional metadata of a document
retrieval_query = """
RETURN "Name:" + node.name AS text, score, {foo:"bar"} AS metadata
"""
retrieval_example = FalkorDBVector.from_existing_index(
OpenAIEmbeddings(),
host=host,
port=port,
node_label='Person',
retrieval_query=retrieval_query,
)
retrieval_example.similarity_search("Foo", k=1)
Database name: ZeCf
Docs_and_scores: [(Document(metadata={'foo': 'bar'}, page_content='Name:Tomaz'), 0.658456861972809)]
[Document(metadata={'foo': 'bar'}, page_content='Name:Tomaz')]
Here is an example of passing all node properties except for embedding as a dictionary to text column
Hybrid search (vector + keyword)
FalkorDB integrates both vector and keyword indexes, which allows you to use a hybrid search approach
# The FalkorDBVector Module will connect to FalkorDB and create a vector and keyword indices if needed.
hybrid_db = FalkorDBVector.from_documents(
docs,
OpenAIEmbeddings(),
host=host,
port=port,
search_type="hybrid",
)
Database name: ZeCf
Metadatas: [{'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}, {'source': 'state_of_union.txt'}]
To load the hybrid search from existing indexes you have to provide the label of node that is being searched
node_label = 'Chunk' #default node label
store = FalkorDBVector.from_existing_index(
OpenAIEmbeddings(),
node_label=node_label,
host=host,
port=port,
search_type="hybrid",
)
Database name: ZeCf
Retriever options
This section shows how to use FalkorDBVector
as a retriever
retriever = store.as_retriever()
retriever.invoke(query)[0]
Docs_and_scores: [(Document(metadata={'text': 'A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.', 'id': '782fb46f146c2029453b8532e5502691', 'source': 'state_of_union.txt'}, page_content='A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.'), 1.0), (Document(metadata={'text': 'Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \n\nTonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \n\nOne of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \n\nAnd I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.', 'id': 'ded2a476140e4369c7565af24922a144', 'source': 'state_of_union.txt'}, page_content='Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \n\nTonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \n\nOne of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \n\nAnd I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.'), 0.921675468142135)]
Document(metadata={'text': 'A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.', 'id': '782fb46f146c2029453b8532e5502691', 'source': 'state_of_union.txt'}, page_content='A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.')
Question Answering with Sources
This section goes how to do question-answering with sources over an Index. It does this by using
RetrievalQAWithSourcesChain
, which does the lookup of documents from an Index.
from langchain.chains import RetrievalQAWithSourcesChain
from langchain_openai import ChatOpenAI
chain = RetrievalQAWithSourcesChain.from_chain_type(
ChatOpenAI(temperature=0), chain_type="stuff", retriever=retriever
)
chain.invoke(
{"question": "What did the president say about Justice Breyer"},
return_only_outputs=True,
)
Docs_and_scores: [(Document(metadata={'text': 'A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.', 'id': '782fb46f146c2029453b8532e5502691', 'source': 'state_of_union.txt'}, page_content='A former top litigator in private practice. A former federal public defender. And from a family of public school educators and police officers. A consensus builder. Since she’s been nominated, she’s received a broad range of support—from the Fraternal Order of Police to former judges appointed by Democrats and Republicans. \n\nAnd if we are to advance liberty and justice, we need to secure the Border and fix the immigration system. \n\nWe can do both. At our border, we’ve installed new technology like cutting-edge scanners to better detect drug smuggling. \n\nWe’ve set up joint patrols with Mexico and Guatemala to catch more human traffickers. \n\nWe’re putting in place dedicated immigration judges so families fleeing persecution and violence can have their cases heard faster. \n\nWe’re securing commitments and supporting partners in South and Central America to host more refugees and secure their own borders.'), 1.0), (Document(metadata={'text': 'Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \n\nTonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \n\nOne of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \n\nAnd I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.', 'id': 'ded2a476140e4369c7565af24922a144', 'source': 'state_of_union.txt'}, page_content='Tonight. I call on the Senate to: Pass the Freedom to Vote Act. Pass the John Lewis Voting Rights Act. And while you’re at it, pass the Disclose Act so Americans can know who is funding our elections. \n\nTonight, I’d like to honor someone who has dedicated his life to serve this country: Justice Stephen Breyer—an Army veteran, Constitutional scholar, and retiring Justice of the United States Supreme Court. Justice Breyer, thank you for your service. \n\nOne of the most serious constitutional responsibilities a President has is nominating someone to serve on the United States Supreme Court. \n\nAnd I did that 4 days ago, when I nominated Circuit Court of Appeals Judge Ketanji Brown Jackson. One of our nation’s top legal minds, who will continue Justice Breyer’s legacy of excellence.'), 0.831299587099252)]
{'answer': 'The president honored Justice Stephen Breyer for his service.\n',
'sources': 'state_of_union.txt'}
Related
- Vector store conceptual guide
- Vector store how-to guides