Notebooks
M
MongoDB
Geospatialqueries Vectorsearch Spritzes

Geospatialqueries Vectorsearch Spritzes

advanced_techniquesagentsartificial-intelligencellmsmongodb-genai-showcasenotebooksgenerative-airag

Open In Colab

View Article

First install your Google Maps library and install OpenAI, since we will need the Google Maps library for our Google Places API and we will need OpenAI to embed our documents.

[ ]
Collecting googlemaps
  Downloading googlemaps-4.10.0.tar.gz (33 kB)
  Preparing metadata (setup.py) ... done
Requirement already satisfied: requests<3.0,>=2.20.0 in /usr/local/lib/python3.10/dist-packages (from googlemaps) (2.32.3)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests<3.0,>=2.20.0->googlemaps) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests<3.0,>=2.20.0->googlemaps) (3.7)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests<3.0,>=2.20.0->googlemaps) (2.0.7)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests<3.0,>=2.20.0->googlemaps) (2024.7.4)
Building wheels for collected packages: googlemaps
  Building wheel for googlemaps (setup.py) ... done
  Created wheel for googlemaps: filename=googlemaps-4.10.0-py3-none-any.whl size=40716 sha256=aa9beccb8d49bbfcafd19079f1c0a481c60a44b4f47d62b4a571907d6daaede5
  Stored in directory: /root/.cache/pip/wheels/17/f8/79/999d5d37118fd35d7219ef57933eb9d09886c4c4503a800f84
Successfully built googlemaps
Installing collected packages: googlemaps
Successfully installed googlemaps-4.10.0
Collecting openai==0.28
  Downloading openai-0.28.0-py3-none-any.whl.metadata (13 kB)
Requirement already satisfied: requests>=2.20 in /usr/local/lib/python3.10/dist-packages (from openai==0.28) (2.32.3)
Requirement already satisfied: tqdm in /usr/local/lib/python3.10/dist-packages (from openai==0.28) (4.66.5)
Requirement already satisfied: aiohttp in /usr/local/lib/python3.10/dist-packages (from openai==0.28) (3.10.1)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests>=2.20->openai==0.28) (3.3.2)
Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests>=2.20->openai==0.28) (3.7)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests>=2.20->openai==0.28) (2.0.7)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests>=2.20->openai==0.28) (2024.7.4)
Requirement already satisfied: aiohappyeyeballs>=2.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (2.3.4)
Requirement already satisfied: aiosignal>=1.1.2 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (1.3.1)
Requirement already satisfied: attrs>=17.3.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (24.2.0)
Requirement already satisfied: frozenlist>=1.1.1 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (1.4.1)
Requirement already satisfied: multidict<7.0,>=4.5 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (6.0.5)
Requirement already satisfied: yarl<2.0,>=1.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (1.9.4)
Requirement already satisfied: async-timeout<5.0,>=4.0 in /usr/local/lib/python3.10/dist-packages (from aiohttp->openai==0.28) (4.0.3)
Downloading openai-0.28.0-py3-none-any.whl (76 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 76.5/76.5 kB 3.5 MB/s eta 0:00:00
Installing collected packages: openai
Successfully installed openai-0.28.0

Let's now pass in our imports. We are going to be including the getpass library since we will need it to write in our secret keys.

[ ]

Write in your secret keys, we will need to write in our Google API Key and our OpenAI API Key.

[ ]
Put in Google API Key here··········
Put in OpenAI API Key here··········

Now, let's set ourselves up for Vector Search success. First, set your key and then establish our embedding function. For this tutorial, we are using OpenAI's "text-embedding-3-small" embedding model. We are going to be embedding the reviews of our spritz locations so we can make some judgements on where to go!

[ ]

When using Nearby Search in our Google Maps API, we are required to set up three parameters: location, radius, and keyword. For our location, we can find our starting coordinates (the very middle of West Village) by right clicking on Google Maps and copying the coordinates to our clipboard. That is how I got the coordinates shown below.

For our radius, we have to have it in meters. Since I'm not very savvy with meters, let's write a small function to help us make that conversion.

Our keyword will just be what we're hoping to find from the Google Places API, aperol spritzes!

We can then make our API call using the places_nearby method.

[ ]

Before we can go ahead and print out our locations, let's think about our end goal. We want to achieve a couple of things before we insert our documents into our MongoDB Atlas cluster. We want to:

  1. Get detailed information about our locations, so we need to make another API call to get our place_id, the location name, our formatted_address, the geometry, some reviews (only up to 5), and the location rating. You can find more fields to return (if your heart desires!) from the Nearby Search documentation

  2. Then, we want to embed our reviews for each location using our embedding function. We want to make sure that we have a field for these so our vectors are stored in an array inside of our cluster. We are choosing to embed here just to make things easier for ourselves in the long run. Let's also join all the five reviews together into one string to make things a bit easier on ourselves with the embedding.

  3. While we're creating our dictionary with all the important information we want to portray, we need to think about how our coordinates are set up. MongoDB Geospatial Queries requires GeoJSON format. This means we need to make sure we have the proper format, or else we won't be able to use our Geospatial Queries operators later. We also need to keep in mind that the longitude and latitude is stored in a nested array underneath geometry and location inside of our Google Places API. So, we unfortunatly can't just access it out, we need to work some magic first. Here is an example output of what I copied from the documentation:

	{
  "html_attributions": [],
  "results":
    [
      {
        "business_status": "OPERATIONAL",
        "geometry":
          {
            "location": { "lat": -33.8587323, "lng": 151.2100055 },
            "viewport":
              {
                "northeast":
                  { "lat": -33.85739847010727, "lng": 151.2112436298927 },
                "southwest":
                  { "lat": -33.86009812989271, "lng": 151.2085439701072 },
              },


With all this in mind, let's get to it:

[ ]

Let's print out our output and see what our spritz locations in the West Village neighborhood of NYC are! Let's also check and make sure we can see an embedding field.

[ ]
Name: Bar Pisellino, Address: 52 Grove Street, 7th Ave S at, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0034603, 40.7329348]}, Rating: 4.3, Reviews: ['this place gets sooo busy in the summer even on a weeknight so come knowing there will likely be a line or wait time. wait was longer than expected and the drinks are definitely pricey too on avg of 18-20 per drink. the aperol spritz was great and i love the ambience and location of this bar but indoor seating is limited. overall a cute bar to come with friends on a nice warm day and enjoy a drink or two. wish they had happy hours!', 'Came for a martini on the 4th of July. Was pretty busy but grateful they were open! I believe our server was Benji who was doing a good job! Was the only server tending to the outside area so waited a little bit but not bad at all consider it was a holiday. Just had a martini with vodka and it was delicious. Came served with a little side car!', 'Love the interior and atmosphere here. Sets you back into Italy right away. Lovely pastry and coffee and even their iced tea is fab', 'I’ve been to Bar Pisellino for early breakfast a few times, which has been fantastic. The space itself is beautiful and probably one of my favorite parts of visiting, and the coffee and food are delicious too. It’s a great place to visit early and sit inside for a bit while sipping a cappuccino and indulging in a panino or cornetto.\n\nPost-work/pre-dinner drinks are a different story. The place gets packed very early, the cocktails are a little too sweet, but worst of all is the crowd it attracts. Everyone seems to be bothered by the presence of others near them and it’s just a weird, negative kind of vibe. So I wouldn’t come for drinks again, nor would I recommend the place for drinks, but early breakfast is really nice.', 'Great little bar in the center of west village. A place to people watch. On a perfect sunny summer day, makes up three quintessential New York City scene. Expect a wait'], Embedding: [-0.08015689253807068, -0.027776896953582764, -0.03631417080760002, -0.030532443895936012, -0.009884294122457504, -0.044679224491119385, -0.022462626919150352, -0.0014369746204465628, 0.021404694765806198, -0.07779499143362045, -0.044630017131567, 0.015167809091508389, -0.032968148589134216, 0.002987738698720932, -0.031565774232149124, 0.01602891832590103, -0.010917624458670616, -0.0007888367981649935, 0.021084854379296303, 0.02812134101986885, 0.026300711557269096, 0.032845135778188705, -0.06386964023113251, 0.0014869497390463948, -0.0360681414604187, 0.027678484097123146, -0.03675702586770058, -0.02974514476954937, 0.02834276854991913, -0.0016745482571423054, 0.023852702230215073, -0.019215019419789314, -0.012732102535665035, -0.05516014248132706, 0.013199561275541782, -0.027186421677470207, 0.02104794979095459, 0.019128907471895218, -0.00715335039421916, 0.01703764498233795, 0.010259491391479969, 0.039020512253046036, 0.01543844398111105, -0.061064887791872025, -0.007768427953124046, -0.029277686029672623, 0.04258796200156212, 0.016668599098920822, 0.03075387142598629, 0.010954529047012329, -0.015905901789665222, 0.018587639555335045, -0.038749877363443375, -0.009853539988398552, -0.02684197947382927, -0.034099891781806946, 0.008112871088087559, -0.021786043420433998, 0.09501716494560242, 0.06982359290122986, 0.10412030667066574, 0.011391233652830124, 0.036092743277549744, -0.02745705656707287, -0.059687115252017975, 0.01915351115167141, -0.0024679983034729958, 0.019953111186623573, 0.02042056992650032, -0.04982127249240875, 0.03063085675239563, 0.020359063521027565, 0.006895017810165882, -0.04344907030463219, -0.024480082094669342, 0.025181269273161888, 0.04236653447151184, -0.06229504197835922, 0.00015607589739374816, -0.018440021201968193, -0.010782307013869286, -0.0016530206194147468, -0.05835854634642601, 0.04175145551562309, 0.046942710876464844, -0.056783948093652725, -0.03779035806655884, 0.02772769145667553, -0.014565033838152885, -0.010862267576158047, 0.04135780781507492, -0.03439512848854065, 0.044310178607702255, 0.008684893138706684, 0.027653880417346954, -0.015106301754713058, -0.059687115252017975, -0.005584903061389923, -0.03798718377947807, 0.022536437958478928, 0.044310178607702255, -0.02206897735595703, 0.01134817861020565, -0.0006619771011173725, 0.018120180815458298, 0.006347598973661661, 0.019239621236920357, -0.01536463387310505, 0.002607928356155753, -0.011637264862656593, -0.04677048698067665, 0.015376935712993145, -0.06618233025074005, 0.016188837587833405, -0.057817280292510986, 0.05309348553419113, 0.06696963310241699, 0.00674739945679903, -0.029794350266456604, 0.01602891832590103, -0.002208127873018384, 0.047730010002851486, -0.01741899363696575, 0.011551153846085072, -0.005960100330412388, -0.056144267320632935, -0.0204082690179348, -0.023877305909991264, -0.013371783308684826, -0.054766494780778885, 0.011778732761740685, -0.02935149520635605, 0.01751740463078022, -0.028588799759745598, 0.023668179288506508, -0.016410265117883682, -0.02018684148788452, 0.008242037147283554, -0.007897594012320042, -0.039266541600227356, 0.03493639826774597, -0.0016653221100568771, 0.012904324568808079, -0.023766592144966125, -0.004797603935003281, -0.02243802510201931, -0.02168763056397438, 0.009379930794239044, -0.011366630904376507, -0.014663445763289928, -0.012338452972471714, 0.02696499414741993, 0.0026125414296984673, -0.042046692222356796, -0.03299275413155556, -0.020703505724668503, 0.01930112950503826, 0.039783209562301636, -0.004231732804328203, 0.017824944108724594, -0.04194828122854233, -0.020076127722859383, -0.032820530235767365, -0.015044794417917728, -0.010763854719698429, 0.04713953286409378, -0.07139819115400314, -0.01639796420931816, -0.05619347468018532, -0.020506681874394417, 0.018747560679912567, 0.00730711966753006, 0.04832048341631889, 0.05953949689865112, 0.004480839241296053, -0.037101469933986664, -0.009748977608978748, 0.03983241319656372, 0.02193366177380085, -0.01285511814057827, 0.0126090869307518, 0.0547172874212265, 0.04546652361750603, -0.02647293172776699, -0.02042056992650032, 0.022991593927145004, -0.05407760664820671, 0.016311854124069214, -0.012732102535665035, 0.03200862929224968, 0.019497955217957497, 0.015327729284763336, -0.010259491391479969, -0.03311577066779137, -0.015622966922819614, -0.04426097124814987, -0.002417254261672497, 0.009865841828286648, -0.01728367619216442, 0.08178069442510605, -0.020949536934494972, -0.013630115427076817, 0.034468937665224075, -0.0035705245099961758, 0.05545538291335106, 0.0014592711813747883, 0.03840543329715729, 0.03200862929224968, 0.03843003883957863, 0.009164653718471527, 0.015844395384192467, -0.005520320031791925, 0.021995168179273605, -0.009625962004065514, 0.023618973791599274, -0.005271213594824076, -0.025661030784249306, 0.030187999829649925, -0.015955109149217606, 0.032943546772003174, -0.012584484182298183, 0.03823321312665939, 0.002936994656920433, 0.005634109489619732, 0.03451814502477646, 0.045417316257953644, 0.02671896293759346, 0.011145203374326229, 0.009441438131034374, 0.022019771859049797, 0.020506681874394417, 0.033952273428440094, -0.03589591756463051, 0.003312191925942898, -0.0035551474429666996, 0.02257334254682064, -0.01450352557003498, 0.005511093884706497, -0.029425304383039474, -0.014774159528315067, 0.02268405631184578, -0.007288667373359203, 0.015598363243043423, -0.01078845839947462, 0.027260230854153633, -0.02091263234615326, -0.0013577834470197558, 0.002477224450558424, -0.027555469423532486, 0.013580909930169582, -0.006876565515995026, -0.04704112187027931, 0.0049482979811728, 0.004896016325801611, -0.03621575981378555, 0.012067819014191628, 0.00604928657412529, 0.0048468103632330894, -0.0005873989430256188, -0.023249926045536995, 0.011434289626777172, 0.014786461368203163, 0.004530045203864574, -0.03815940394997597, -0.031221330165863037, -0.039143528789281845, 0.0011471194447949529, 0.016976136714220047, -0.027801500633358955, 0.014786461368203163, -0.01410987600684166, -0.009601358324289322, 0.01980549283325672, 0.057423628866672516, 0.024418573826551437, 0.003058472415432334, 0.025562617927789688, -0.0007373240659944713, -0.014577334746718407, 0.011680320836603642, -0.015586062334477901, -0.08079656958580017, 0.056045856326818466, 0.01751740463078022, 0.032451484352350235, 0.010388657450675964, 0.06593629717826843, 0.011145203374326229, -0.011231313459575176, 0.007165652234107256, -0.014036066830158234, 0.0021604595240205526, 0.03466576337814331, 0.014601938426494598, 0.028047529980540276, -0.023643575608730316, 0.07120136171579361, -0.04322764277458191, 0.04384271800518036, -0.004634608514606953, 0.024270955473184586, -0.015659870579838753, 0.01904279738664627, -0.0220812801271677, 0.041160982102155685, 0.05516014248132706, -0.03867606818675995, 0.014934079721570015, -0.05171570926904678, 0.0027924515306949615, -0.055504586547613144, 0.02217969298362732, -0.016570186242461205, -0.03478877991437912, -0.0069565256126224995, 0.0032045533880591393, 0.03365703672170639, 0.023016197606921196, -0.023729687556624413, 0.0008472691406495869, 0.015303126536309719, -0.003745821537449956, 0.0033429458271712065, 0.05206015333533287, 0.017320580780506134, -0.04285859689116478, 0.05481570214033127, 0.0064460113644599915, 0.051125235855579376, -0.03879908472299576, 0.01424519345164299, -0.0700204148888588, -0.007356326095759869, 0.045958586037158966, -0.004296315833926201, -0.10795839130878448, -0.038257814943790436, -0.015118603594601154, 0.01505709532648325, 0.010985283181071281, 0.022708658128976822, -0.001968247815966606, -0.023483656346797943, -0.01826779916882515, 0.022007470950484276, -0.03264831006526947, -0.014257495291531086, 0.013150355778634548, 0.0021097154822200537, -0.02846578322350979, -0.03579750657081604, -0.006772002670913935, -0.03833162412047386, 0.0024049526546150446, 0.05432363972067833, 0.04071812704205513, 0.012572182342410088, 0.005806331057101488, -0.046696677803993225, 0.008285093121230602, 0.05516014248132706, -0.009041638113558292, 0.010197984054684639, 0.03075387142598629, 0.021626122295856476, 0.017160659655928612, 0.0025049028918147087, 0.021207869052886963, -0.052109360694885254, -0.018698353320360184, -0.00469919154420495, 0.004437783733010292, 0.03633877635002136, 0.018120180815458298, -0.031344346702098846, 0.012141628190875053, -0.007854538969695568, 0.006772002670913935, 0.039020512253046036, 0.015450744889676571, 0.00400107866153121, -0.021638423204421997, 0.01563526876270771, 0.03375544771552086, -0.02232731133699417, -0.008149775676429272, 0.00995810329914093, -0.03574829921126366, -0.01675470918416977, 0.03884829208254814, 0.00041940592927858233, -0.041776057332754135, -0.04763159528374672, 0.020199142396450043, -0.004834508523344994, -0.007577754091471434, 0.010474768467247486, 0.015844395384192467, -0.03338640183210373, 0.0014139092527329922, 0.016471773386001587, -0.043941132724285126, -0.02962212823331356, -0.0031768749468028545, 0.014478922821581364, 0.0035551474429666996, -0.01059778407216072, -0.027752293273806572, -0.044949859380722046, 0.024492383003234863, -0.032722119241952896, -0.054372843354940414, 0.014663445763289928, 0.05481570214033127, -0.02393881417810917, -0.006322996225208044, 0.00440702959895134, 0.029671335592865944, 0.0466228686273098, 0.053733162581920624, 0.008082117885351181, 0.005323495250195265, -0.024541590362787247, -0.05269983410835266, -0.015487649478018284, 0.021589217707514763, 0.03417370095849037, -0.05811251699924469, -0.0703156515955925, 0.004554648417979479, 0.012590634636580944, -0.003118442604318261, 0.02242572233080864, 0.018415417522192, -0.04276018217206001, -0.013433290645480156, -0.026423726230859756, 0.020457474514842033, 0.01725907251238823, -0.0039457217790186405, -0.006796605419367552, -0.054274432361125946, -0.004357823636382818, 0.027555469423532486, -0.004646909888833761, 0.011643415316939354, 0.057029981166124344, 0.03363243490457535, 0.00415484793484211, -0.03643718734383583, -0.022979293018579483, -0.030975298956036568, -0.02130628190934658, 0.04760699346661568, 0.03857765719294548, 0.0547172874212265, -0.012209286913275719, -0.003874987829476595, -0.024640001356601715, -0.034985605627298355, -0.010585482232272625, -0.031442757695913315, -0.03328799083828926, 0.009410684928297997, 0.003416755236685276, 0.02069120481610298, -0.07287437468767166, 0.054668083786964417, 0.028810227289795876, -0.04170224815607071, -0.031959421932697296, -0.04787762835621834, 0.041259393095970154, 0.01814478449523449, 0.007700769230723381, -0.045195888727903366, 0.004628457594662905, -0.009269217029213905, 0.0014369746204465628, -0.007516246289014816, -0.01815708540380001, 0.008069816045463085, 0.003625881392508745, -0.007448587566614151, 0.020506681874394417, -0.08015689253807068, 0.0126090869307518, 0.012264643795788288, -0.013679321855306625, -0.007959102280437946, -0.017468199133872986, -0.00040210687438957393, 0.007805332541465759, -0.011335876770317554, -0.027555469423532486, 0.025033650919795036, -0.01615193299949169, -0.04512207955121994, 0.006581328343600035, -0.02077731490135193, 0.01303964201360941, -0.011575757525861263, 0.001968247815966606, 0.018599942326545715, -0.012455318123102188, 0.02342214807868004, -0.07380928844213486, -0.006753550376743078, 0.03678163141012192, -0.015167809091508389, -0.012492222711443901, 0.01109599694609642, 0.03515782579779625, 0.001104832859709859, -0.02434476464986801, 0.011932502500712872, 0.0023542088456451893, 0.030212603509426117, -0.02925308234989643, 0.001235536765307188, -0.012522976845502853, -0.016065822914242744, 0.007030335254967213, -0.014577334746718407, 0.04945222660899162, 0.01525392010807991, -0.04497446119785309, 0.004816056229174137, -0.03628956899046898, -0.022474929690361023, -0.004419331438839436, -0.012080120854079723, -0.03001577779650688, 0.003367549041286111, -0.007067239843308926, 0.012012462131679058, -0.04160383716225624, 0.027678484097123146, -0.015167809091508389, -0.0388236865401268, 0.008967828936874866, -0.02003922313451767, -0.01829240284860134, -0.01615193299949169, -0.020580491051077843, -0.005858612712472677, 0.04364589601755142, 0.03159037604928017, -0.017578912898898125, 0.021453900262713432, 0.0015100151067599654, 0.00016280330601148307, 0.01519241277128458, -0.017357485368847847, -0.038257814943790436, 0.002732481574639678, 0.04903397336602211, -0.024640001356601715, 0.0016299552517011762, 0.016484074294567108, -0.01033945195376873, 0.015733681619167328, -0.01444201823323965, -0.020998744294047356, -0.005864763166755438, 0.03545306250452995, -0.0015868997434154153, 0.04194828122854233, 0.006316845305263996, 0.033583227545022964, -0.028195150196552277, 0.016828518360853195, 0.002729406114667654, 0.0017268299125134945, 0.034493543207645416, 0.012178532779216766, 0.026276107877492905, -0.02043287269771099, -0.026177695021033287, 0.02622690238058567, -0.041923679411411285, -0.003988777287304401, -0.043818116188049316, 0.041037965565919876, 0.019977714866399765, 0.06987279653549194, 0.0021004893351346254, 0.014675747603178024, 0.02785070613026619, 0.01499558798968792, 0.010567029938101768, -0.01600431464612484, -0.0033952274825423956, -0.009792032651603222, -0.010296395979821682, -0.018206292763352394, -0.006821208633482456, 0.014159082435071468, -0.002086650114506483, -0.008082117885351181, -0.038479242473840714, -0.012633690610527992, -0.03503480926156044, 0.0322546623647213, -0.030581649392843246, 0.029671335592865944, -0.014589636586606503, 0.0035459212958812714, 0.01494638156145811, -0.03427211567759514, 0.025267381221055984, 0.022770166397094727, 0.04435938596725464, -0.03444433584809303, -0.058653783053159714, 0.018317006528377533, -0.03127053752541542, -0.02005152404308319, 0.011323575861752033, -0.0162749495357275, -0.05648871138691902, -0.007221009116619825, -0.019559461623430252, 0.026448329910635948, 0.0044623869471251965, 0.025291984900832176, 0.002523355185985565, -0.052995070815086365, -0.006765851750969887, 0.011803335510194302, 0.01393765490502119, 0.02824435569345951, 0.0018898254493251443, 0.01096067950129509, 0.000746165809687227, -0.0036504846066236496, -0.008568028919398785, 0.02166302688419819, -0.019227320328354836, 0.009656716138124466, 0.011329726316034794, 0.02696499414741993, 0.02317611686885357, -0.010825362987816334, 0.004720719065517187, 0.01777573861181736, 0.02203207276761532, 0.01335948146879673, -0.016434868797659874, -0.0023296058643609285, 0.00036366452695801854, -0.019977714866399765, 0.051863327622413635, -0.005981627851724625, 0.000681198260281235, 0.025907061994075775, 0.010234888643026352, 0.0014831054722890258, -0.005428058560937643, 0.01890747994184494, 0.0216999314725399, 0.019005892798304558, 0.012510675005614758, 0.004797603935003281, 0.005652561783790588, 0.05058396980166435, 0.010745402425527573, 0.030163398012518883, -0.050214920192956924, -0.03200862929224968, 0.05324110388755798, 0.018132483586668968, 0.04084113985300064, 0.015672173351049423, 0.0360681414604187, 0.0559474416077137, -0.01021028496325016, -0.01059778407216072, -0.004151772707700729, -0.0034721121191978455, -0.014626541174948215, -0.00989044550806284, -0.008684893138706684, -0.007706920150667429, 0.009478343650698662, 0.014097575098276138, 0.01599201373755932, 0.00015588368114549667, -0.0030800001695752144, -0.005864763166755438, 0.007085692137479782, 0.028022928163409233, 0.05156809091567993, 0.002935457043349743, 0.012258493341505527, -0.01564756967127323, 0.0027601600158959627, -0.012436865828931332, 0.02434476464986801, -0.0022465703077614307, -0.032328471541404724, -0.05156809091567993, 0.021527709439396858, -0.010776156559586525, -0.011415837332606316, 0.06460773199796677, 0.021786043420433998, -0.017984863370656967, 0.006482915952801704, -0.034222908318042755, -0.012867419980466366, -0.017689626663923264, -0.03400148078799248, 0.023114610463380814, 0.04135780781507492, -0.003582826117053628, -0.02370508387684822, 0.004736096132546663, -0.017566611990332603, 0.002305002650246024, -0.00856187753379345, 0.007977554574608803, -0.019251924008131027, -0.042661771178245544, 0.026645153760910034, -0.025931663811206818, 0.011077544651925564, -0.010265642777085304, -0.0035551474429666996, 0.045564934611320496, 0.007110294885933399, -0.003502866020426154, 0.02420944720506668, -0.009152351878583431, 0.009619810618460178, 0.03259910270571709, 0.021835248917341232, 0.008082117885351181, -0.06362360715866089, -0.023495957255363464, -0.01789875328540802, -0.0392911471426487, -0.025808649137616158, -0.012978133745491505, 0.012867419980466366, -0.01787414960563183, 0.027309438213706017, 0.02384040132164955, -0.021626122295856476, 0.008555727079510689, -0.042661771178245544, 0.009976555593311787, 0.005535697098821402, 0.025414999574422836, -0.01942414604127407, -1.2878183952125255e-05, 0.030532443895936012, -0.03077847510576248, -0.027063407003879547, 0.019608668982982635, -0.005877065006643534, -0.01727137342095375, -0.0100134601816535, -0.019338034093379974, 0.008998583070933819, -0.0014692662516608834, 0.01739438995718956, 0.00990274641662836, -0.017455898225307465, -0.0037273692432790995, -0.0008864803239703178, -0.012387659400701523, 0.005612581502646208, -0.007190254982560873, 0.030655458569526672, -0.011182107962667942, 0.014577334746718407, -0.03227926418185234, -0.027063407003879547, 0.028022928163409233, 0.04470382630825043, -0.04512207955121994, -0.04298160970211029, -0.005787878762930632, 0.04199748858809471, 0.0032599105034023523, 0.03843003883957863, 0.009669017046689987, -0.02787530981004238, 0.008967828936874866, 0.027924515306949615, -0.027776896953582764, 0.005009805783629417, -0.027284834533929825, 0.008401957340538502, -0.024480082094669342, 0.003625881392508745, -0.027038803324103355, -0.000763464835472405, 0.01952255703508854, 0.006452162284404039, -0.059933144599199295, -0.013384085148572922, -0.004812981002032757, 0.03592052310705185, 0.009576755575835705, 0.043301451951265335, -0.006913470104336739, -0.006464463658630848, -0.07508864998817444, -0.02849038690328598, -0.03658480569720268, -0.008629536256194115, 0.0019344185711815953, -0.0063783531077206135, -0.0002483375137671828, 0.017812643200159073, -0.014134479686617851, -0.001668397570028901, -0.007300969213247299, -0.04664747416973114, -0.008272791281342506, -0.02030985616147518, 0.005277364514768124, 0.0687902569770813, 0.019362637773156166, -0.019743986427783966, 0.02115866355597973, -0.03328799083828926, -0.03314037248492241, -0.021847549825906754, 0.02846578322350979, -0.022105883806943893, 0.0013085772516205907, -0.006353749893605709, -0.01661939173936844, -0.01575828343629837, -0.010007309727370739, 0.007860689423978329, -0.0022404196206480265, 0.054372843354940414, 0.03439512848854065, -0.0014531203778460622, -0.010062666609883308, -0.007663864642381668, -0.008611083962023258, 0.009859691374003887, 0.00435167271643877, 0.0044623869471251965, -0.006239960435777903, -0.02824435569345951, -0.05889981612563133, 0.026522139087319374, 0.0004613080818671733, -0.0126090869307518, 0.03166418522596359, 0.027924515306949615, 0.02849038690328598, -0.024640001356601715, 0.009822786785662174, -0.06810137629508972, 0.026669757440686226, 0.03808559477329254, -0.0062522622756659985, -0.03542846068739891, 0.0171237550675869, 0.01505709532648325, -0.0617537759244442, 0.04974746331572533, 0.010936076752841473, -0.023618973791599274, -0.007011882495135069, 0.006058512721210718, 0.0069257719442248344, -0.04598318785429001, -0.01574598252773285, -0.00222196732647717, 0.011225163005292416, 0.010942227207124233, -0.002348058158531785, 0.02241342142224312, 0.004265562165528536, 0.007633110973984003, -0.0035612983629107475, -0.005151273682713509, 0.033337198197841644, -0.020248349756002426, 0.026669757440686226, -0.02230270765721798, -0.0007492412114515901, -0.03584671393036842, -0.00030849978793412447, 0.047828420996665955, -0.008235886693000793, 0.006692042574286461, 0.03286973759531975, 0.038380831480026245, 0.027284834533929825, 0.00485296081751585, 0.01663169451057911, -0.00570176774635911, 0.0308768879622221, 0.0012070895172655582, -0.017431294545531273, 0.021269377321004868, 0.005486490670591593, -0.01866144873201847, -0.024123337119817734, 0.010985283181071281, -0.03993082791566849, 0.017332881689071655, -0.043424468487501144, 0.028195150196552277, 0.018858274444937706, -0.033091165125370026, 0.03665861487388611, -0.003958023153245449, 0.005424982868134975, -0.00394264655187726, 0.01968247815966606, 0.019067401066422462, 0.007061088923364878, -0.00869104452431202, 0.011163655668497086, -0.00914005097001791, 0.021343186497688293, -0.004889865405857563, -0.0009995008585974574, -0.022388817742466927, -0.01728367619216442, -0.004757624119520187, -0.008863265626132488, -0.01612733118236065, 0.006390654481947422, 0.01915351115167141, 0.034321319311857224, 0.027653880417346954, 0.0007019570912234485, 0.0015622966457158327, -0.011637264862656593, 0.019338034093379974, -0.02293008752167225, -0.020863426849246025, -0.026423726230859756, -0.008426561020314693, -0.0010417874436825514, 0.009681318886578083, 0.0027478584088385105, 0.010480919852852821, 0.012492222711443901, 0.027063407003879547, 0.021466203033924103, -0.04908318072557449, -0.025009049102663994, -0.024529287591576576, -0.02696499414741993, -0.011108298785984516, 0.01228924747556448, -0.000202014489332214, -0.0020143785513937473, -0.06116329878568649, 0.025365794077515602, -0.029917366802692413, -0.016484074294567108, -0.017295977100729942, 0.028145942836999893, 0.017677325755357742, 0.01852613314986229, -0.04490065202116966, 0.08365052938461304, -0.002677124459296465, 0.01084381528198719, -0.005877065006643534, 0.0014731104020029306, -0.006784304045140743, 0.0018037145491689444, 0.005280439741909504, 0.026792772114276886, -0.0030507841147482395, -0.01450352557003498, -0.026423726230859756, 0.025661030784249306, -0.023348338901996613, 0.013507100753486156, 0.01248607225716114, 0.014257495291531086, 0.007872991263866425, 0.06652677804231644, 0.03136894851922989, 0.0027863008435815573, -0.002315766643732786, 0.0008218972361646593, 0.009115447290241718, -0.0063414485193789005, -0.016164235770702362, -0.0039026662707328796, 0.025611823424696922, -0.02657134458422661, 0.031565774232149124, 0.03412449732422829, -0.014171384274959564, 0.002131243236362934, 0.007614658679813147, -0.005240459926426411, -0.0016945382812991738, 0.016582487151026726, -0.002434168942272663, -0.038479242473840714, -0.004988277796655893, -0.025661030784249306, 0.035231634974479675, -0.011391233652830124, 0.03680623322725296, -0.013113451190292835, -0.012682897038757801, 0.0014684973284602165, -0.007682316936552525, 0.01210472360253334, -0.0022496457677334547, -0.0038165554869920015, 0.0004051822470501065, 0.019067401066422462, 0.025759443640708923, 0.011169806122779846, -0.010665442794561386, -0.01254757959395647, 0.03405068814754486, 0.011354329064488411, 0.032476089894771576, 0.007823784835636616, 0.011378932744264603, 0.05461887642741203, -0.013962257653474808, -0.0097059216350317, 0.04135780781507492, 0.03793797641992569, 0.0032691366504877806, 0.009884294122457504, -0.010745402425527573, -0.004889865405857563, -0.008408108726143837, 0.02947450987994671, -0.014097575098276138, -0.0064091067761182785, -0.007602356839925051, 0.016410265117883682, -0.0013939192285761237, 0.016791613772511482, 0.024160241708159447, 0.06751089543104172, -0.007756126578897238, -0.010936076752841473, 0.03692924976348877, -0.028711814433336258, -0.018981289118528366, 0.00444700988009572, 0.016213441267609596, -0.002903165528550744, 0.014860270544886589, -0.020100729539990425, 0.016447169706225395, 0.014589636586606503, -0.0015630655689164996, -0.006033909507095814, 0.014700350351631641, 0.009638262912631035, -0.003244533436372876, 0.006012381985783577, -0.02834276854991913, 0.015032492578029633, -0.0008910934557206929, 0.03001577779650688, 0.00830969586968422, -0.006095417309552431, 0.000891862262506038, 0.0047945287078619, -0.003985701594501734, -0.018698353320360184, -0.017111454159021378, 0.0022803996689617634, -0.017947958782315254, 0.012928927317261696, -0.011870994232594967, -0.01787414960563183, -0.0006062356987968087, 0.004763774573802948, 0.010745402425527573, -0.03129513934254646, 0.022019771859049797, 0.006261488422751427, 0.004068737383931875, -0.01739438995718956, 0.00494522275403142, -0.0076208095997571945, 0.03628956899046898, -0.018968988209962845, 0.006532122381031513, 0.0028739492408931255, 0.009865841828286648, 0.047336358577013016, 0.02080191858112812, -0.03375544771552086, 0.011471194215118885, 0.00365355983376503, -0.0011655717389658093, -0.008592631667852402, -0.010216436348855495, -0.02066660113632679, -0.006562876049429178, -0.007313270587474108, -8.779269410297275e-05, -0.011914050206542015, 0.020494379103183746, -0.03756893053650856, -0.012086271308362484, -0.004803754854947329, -0.02193366177380085, -0.016213441267609596, -0.02054358646273613, -0.0008726411033421755, -0.018427720293402672, -0.012141628190875053, 0.038503848016262054, 0.0129904355853796, 0.009970405139029026, 0.008082117885351181, 0.025685634464025497, -0.0023096157237887383, 0.003758123144507408, 0.04411335289478302, 0.004031832795590162, -0.0005635647103190422, -0.020974140614271164, -0.018944384530186653, 0.022720960900187492, -0.01890747994184494, -0.007793031167238951, -0.01787414960563183, 0.0013062707148492336, 0.005012881010770798, 0.03956178203225136, 0.01904279738664627, 0.025390395894646645, -0.004726869985461235, 0.02053128555417061, -0.03545306250452995, -0.008414259180426598, 0.07380928844213486, -0.026423726230859756, 0.021490804851055145, 0.010450165718793869, 0.01228924747556448, 0.004413180518895388, -0.006870415061712265, -0.007454738486558199, 0.01538923755288124, 0.011551153846085072, 0.008863265626132488, -0.03402608260512352, -0.014823365956544876, -0.018243197351694107, 0.03828242048621178, -0.039783209562301636, 0.0015945882769301534, -0.003327568992972374, 0.028293561190366745, -0.01028409507125616, -0.0011002197861671448, 0.013150355778634548, 0.02077731490135193, 0.01625034585595131, 0.02141699567437172, -0.01410987600684166, 0.0035459212958812714, -0.011378932744264603, 0.006415257696062326, 0.025562617927789688, 0.011784883216023445, 0.017824944108724594, -0.00415484793484211, -0.010856117121875286, 0.006482915952801704, -0.005471113603562117, 0.0025356567930430174, 0.0054465108551084995, -0.017369786277413368, 0.015413840301334858, -0.026497535407543182, -0.016951534897089005, -0.010413261130452156, 0.02632531337440014, 0.02092493511736393, -0.007706920150667429, -0.01538923755288124, 0.016287250444293022, -0.01802176795899868, -0.002466460457071662, -0.009853539988398552, 0.01792335696518421, 0.010622386820614338, 0.009226161055266857, -0.023028498515486717, -0.04435938596725464, -0.004929845687001944, -0.03323878347873688, -0.007676166482269764, -0.01927652582526207, -0.026792772114276886, 0.01070849783718586, -0.008850963786244392, 0.00485296081751585, 0.02684197947382927, 0.025390395894646645, 0.02772769145667553, -0.024111036211252213, -0.011895597912371159, -0.02293008752167225, 0.027383247390389442, 0.004450085107237101, -0.02962212823331356, -0.00425018509849906, 0.03001577779650688, -0.01519241277128458, 0.014466620981693268, 0.021121758967638016, 0.03943876549601555, -0.05835854634642601, 0.010351752862334251, 0.022290406748652458, 0.03515782579779625, -0.02154001221060753, 0.009564453735947609, -0.026030076667666435, 0.003336795140057802, 0.015463046729564667, -0.021134059876203537, 0.0050620874390006065, -0.01449122466146946, 0.0375935323536396, -0.014724954031407833, -0.03159037604928017, 0.04716413840651512, -0.004859111737459898, -0.010511673055589199, 0.018833670765161514, -0.01927652582526207, -0.00495137320831418, 0.005532621406018734, -0.012553730048239231, 0.002303465036675334, -0.030581649392843246, 0.029695939272642136, -0.018968988209962845, -0.006987279746681452, -0.0531918965280056, -0.06942994147539139, -0.0047945287078619, 0.03668321669101715, 0.020395968109369278, 0.019707079976797104, -0.008807908743619919, -0.004646909888833761, -0.02632531337440014, -0.015032492578029633, -0.018981289118528366, -0.010665442794561386, -0.04428557679057121, 0.006710494868457317, 0.015659870579838753, -0.014466620981693268, -0.02167532779276371, 0.019239621236920357, 0.00614462373778224, 0.029917366802692413, 0.027284834533929825, -0.018230894580483437, 0.009435287676751614, -0.016299551352858543, 0.004182526376098394, -0.02735864371061325, 0.016213441267609596, 0.006178452633321285, -0.02081421948969364, -0.00015424989396706223, 0.0035520722158253193, -0.002337294165045023, -0.0191781148314476, -0.0030907641630619764, 0.00794064998626709, -0.0020743487402796745, -0.03872527554631233, -0.007590055465698242, -0.030852284282445908, -0.006101568229496479, 0.016459472477436066, -0.006784304045140743, 0.01461423933506012, -0.020063824951648712, 0.01140353549271822, 0.01928882859647274, -0.0026617476250976324, 0.005443435162305832, -0.02241342142224312, -0.010936076752841473, -0.0023203797172755003, -0.008475767448544502, -0.021466203033924103, -0.007811483461409807, -0.03552687168121338, -0.001494638156145811, -0.05191253498196602, 0.02558722160756588, 0.013531703501939774, -0.018046371638774872, 0.012953530997037888, -0.015487649478018284, 0.016816217452287674, 0.00914620142430067, -0.0071718026883900166, -0.013826940208673477, 0.004911393392831087, -0.0013470195699483156, 0.06263948231935501, -0.004757624119520187, 0.0018160161562263966, -0.0100134601816535, -0.004231732804328203, -0.004422406665980816, 0.02900705114006996, 0.011840240098536015, 0.004157923627644777, 0.03375544771552086, -0.009595207870006561, 0.02329913340508938, -0.016840819269418716, -0.009226161055266857, -0.005692541599273682, -0.04864032194018364, -0.00367201236076653, -0.003066160948947072, 0.012135477736592293, -0.005757124628871679, 0.019756287336349487, 0.01638566330075264, -0.012123175896704197, -0.008371204137802124, -0.009066241793334484, -0.050977617502212524, -0.005369625985622406, 0.029966572299599648, 0.023618973791599274, -0.027899911627173424, 0.01090532261878252, 0.028170546516776085, -0.024553891271352768, 0.004453160800039768, 0.017591213807463646, -0.016238044947385788, 0.024270955473184586, -0.032722119241952896, 0.01140968594700098, -0.002769386162981391, -0.010019611567258835, -0.01826779916882515, 0.032943546772003174, 0.02433246374130249, -0.008094418793916702, -0.009970405139029026, -0.02797372080385685, -0.034591954201459885, -0.03769194334745407, -0.019867001101374626, -0.02459079585969448, 0.012516825459897518, -0.030704665929079056, 3.2507803553016856e-05, 0.003758123144507408, -0.017800340428948402, 0.029646731913089752, 0.021982867270708084, -0.020014619454741478, -0.030335618183016777, -0.0071718026883900166, 0.03781495988368988, -0.0014554269146174192, 0.002506440505385399, 0.0068519627675414085, -0.03456735238432884, 0.01404836867004633, -0.02799832448363304, -0.0011686470825225115, -0.01776343584060669, 0.0007776885177008808, 0.009232312440872192, 0.007916046306490898, -0.01235690526664257, 0.016557885333895683, -0.05447125807404518, 0.002947758650407195, 0.004733020905405283, 0.001954408595338464, 0.016828518360853195, 0.017468199133872986, -0.008426561020314693, -0.006439860910177231, 0.012867419980466366, -0.019719382748007774, -0.06495217978954315, -0.009810484945774078, -0.011520400643348694, -0.0007734598475508392, -0.003101527923718095, -0.023495957255363464, -0.00925691518932581, -0.007952950894832611, 0.002045132452622056, -0.0027017276734113693, -0.025267381221055984, 0.024049527943134308, 0.00750394444912672, -0.01992850936949253, -0.004191752523183823, -0.007221009116619825, 0.0066612884402275085, -0.003822706174105406, 0.03360782936215401, 0.0068827164359390736, 0.025058254599571228, 0.044187162071466446, 0.0029938893858343363, -0.034714970737695694, -0.022007470950484276, -0.007239461410790682, -0.007909895852208138, 0.034862589091062546, -0.006249186582863331, -0.0023726611398160458, 0.008721797727048397, -0.012233889661729336, -0.020113032311201096, -0.011563455685973167, 0.004816056229174137, 0.05107602849602699, 0.002212740946561098, -0.007737674284726381, 0.0017114529618993402, 0.011028338223695755, 0.055406175553798676, 0.017480500042438507, -0.009712073020637035, -0.006685891654342413, -0.001662246766500175, -0.002217354252934456, -0.005575676914304495, 0.0017314429860562086, -0.02595626749098301, -0.022905483841896057, 0.04453160613775253, -0.009976555593311787, -0.004216355737298727, 0.02922847867012024, -0.021367790177464485, -0.044580813497304916, 0.001493100426159799, 0.017357485368847847, 0.0032906641718000174, -0.0038503846153616905, -0.012424563989043236, 0.011926351115107536, 0.02030985616147518, -0.029080860316753387, -0.005194328725337982, -0.009835087694227695, 0.011292821727693081, -0.011311274021863937, -0.03766734153032303, 0.011870994232594967, -0.0236927829682827, -0.023225324228405952, 0.003104603383690119, -0.014429716393351555, 0.017542008310556412, -0.00674739945679903, -9.480841981712729e-05, 0.002897014608606696, -6.847541953902692e-05, -0.007836086675524712, -0.009435287676751614, 0.009324573911726475, -0.014921778813004494, -0.014097575098276138, -0.013593210838735104, 0.003158422652631998, -0.0002277708554174751, -0.022659452632069588, 0.020494379103183746, 0.05294586345553398, 0.010265642777085304, 0.014528129249811172, -0.0016822367906570435, -0.02182294800877571, -0.011858693324029446, -0.0015092462999746203, 0.044630017131567, -0.02444317750632763, -0.03695385158061981, 0.011280519887804985, -0.005901667755097151, -0.01764042116701603, -0.02380349673330784, -0.009115447290241718, -0.007811483461409807, 0.0322546623647213, 0.004659211728721857, 0.0036443336866796017, -0.03350941836833954, 0.004037983249872923, 0.005145122762769461, -0.010007309727370739, -0.030581649392843246, -0.024996746331453323, -0.03742131218314171, 0.00014848353748675436, -0.02343445084989071, -0.01626264676451683, -0.003312191925942898, 0.018612243235111237, 0.02370508387684822, 0.0014277484733611345, -0.012375357560813427, 0.01140968594700098, 0.016545582562685013, 0.00307384948246181, 0.0010848428355529904, -0.0018559962045401335, 0.021466203033924103]
Name: Bar Six, Address: 502 6th Ave, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.9972827, 40.73646720000001]}, Rating: 4.4, Reviews: ['Neighborhood gem frequented by long-standing customers on Sundays. It has a homely vibe elevated by cozy interiors. Loved the baked eggs, wished I asked for extra merguez sausage. Cocktails are pretty standard at reasonable prices.\n\nService was pretty quick and servers were attentive. It can be a bit noisy at peak times but nothing too unpleasant.', 'Great food & service! Stopped in a couple weeks ago for a turkey burger and it did not disappoint. Great tasting tea and food with a cozy atmosphere. Would absolutely love to come back if I am ever in the area again! Check came with a cute postcard as well to commemorate my visit!', 'Solid spot! Burger was pretty good! Fries could be better. French brassiere vibes inside! Bread with butter would be a nice addition!', 'The staff here is very friendly and honest. The food is very fresh and the bartender was very attentive. Let me also say I left my backpack with computer there last night and when I went to get it in the morning they held it for me. I thought for sure my laptop would have been missing, but surely it was there safe and sound. As for the food I highly recommend the shrimp cocktail and risotto dish.', "Great spot for brunch. Can't wait to go back to try their French onion soup. A friend of mine comes here regularly and I see why. I had the Norwegian for brunch. It was delicious. The coffee, service, and ambiance were all great as well. Definitely looking forward to visiting this place again."], Embedding: [-0.028846994042396545, -0.01293163001537323, -0.04588601738214493, -0.030472176149487495, 0.0033392426557838917, 0.0012506288476288319, 0.0012831642525270581, 0.055814869701862335, -0.00835445523262024, -0.007694224361330271, -0.0019870398100465536, -0.0473080538213253, 0.00876075029373169, -0.04215317592024803, -0.06673406809568405, 0.07582493126392365, -0.02628225088119507, 0.01565507985651493, -0.005443727131932974, 0.025418873876333237, 0.05713532865047455, 0.0075355153530836105, -0.04547972232103348, -0.008525860495865345, 0.012569773010909557, 0.04545433074235916, -0.04390532523393631, -0.0064689889550209045, 0.004799367859959602, -0.040680356323719025, 0.057846348732709885, -0.01628991775214672, -0.0014140993589535356, -0.010036773048341274, 0.003935989458113909, -0.007243490312248468, 0.015477325767278671, -0.003923292737454176, 0.044616345316171646, 0.0396646149456501, 0.01978152059018612, 0.035576265305280685, 0.06140143424272537, -0.05921759456396103, -0.04215317592024803, 0.010328797623515129, 0.015680473297834396, -0.006951465271413326, 0.00037991025601513684, 0.022765254601836205, -0.0028615277260541916, 0.02295570634305477, -0.059065233916044235, 0.013915627263486385, 0.007008600514382124, -0.07419975101947784, -0.0008173526148311794, -0.03750617057085037, 0.059014447033405304, 0.05358024314045906, 0.07821191847324371, -0.019794218242168427, 0.04982200637459755, -0.028262943029403687, -0.01617564633488655, -0.018461059778928757, 0.0011625452898442745, 0.013902930542826653, 0.016899360343813896, -0.010614474304020405, 0.05464676767587662, -0.024136502295732498, -0.012131734751164913, -0.037785496562719345, 0.021381309255957603, -0.024199986830353737, 0.031462520360946655, -0.0448702797293663, -0.011027118191123009, -0.046546246856451035, -0.08882639557123184, -0.028288336470723152, -3.536240546964109e-05, -0.013826750218868256, 0.040858108550310135, -0.07861821353435516, -0.07567256689071655, 0.027755074203014374, -0.025952136144042015, 0.0421023890376091, 0.03263062238693237, 0.002166381338611245, 0.07267613708972931, -0.007770404685288668, 0.06724193692207336, -0.055002275854349136, -0.052462927997112274, -0.004266104660928249, -0.05967467650771141, 0.024669766426086426, 0.061553794890642166, -0.06104592606425285, -0.015934407711029053, -0.06561674922704697, 0.0744536817073822, -0.010938241146504879, 0.042178571224212646, 0.018346788361668587, -0.023615935817360878, -0.050939321517944336, -0.07506312429904938, -0.036744363605976105, -0.0328337699174881, 0.03151330724358559, -0.0028345470782369375, 0.03887741640210152, 0.023273123428225517, -0.008678222075104713, 0.004989818669855595, 0.02407301962375641, 0.012506288476288319, 0.00529136648401618, -0.014537767507135868, 0.019159380346536636, 0.026713941246271133, -0.06490573287010193, -0.052666075527668, -0.003491603536531329, -0.013522027991712093, -0.03588098660111427, 0.025469660758972168, -0.017254870384931564, -0.010430372320115566, 0.006837194319814444, 0.024428527802228928, -0.03179263696074486, 0.007662482559680939, -0.03956304118037224, -0.014220348559319973, -0.005313585512340069, 0.0437275730073452, -0.026460006833076477, 0.03712526708841324, -0.03539850935339928, -0.03293534368276596, -0.02841530367732048, -0.05081235244870186, 0.030878471210598946, 0.008640131913125515, 0.024263469502329826, 0.02384447678923607, -0.011814316734671593, -0.005335805006325245, -0.03809022158384323, -0.043118130415678024, -0.012918933294713497, -0.018918141722679138, 0.04466713219881058, -0.03306230902671814, 0.04834918677806854, -0.06825767457485199, 0.023501666262745857, -0.05327552184462547, 0.002867876086384058, -0.03463670611381531, 0.035119183361530304, -0.06546439230442047, -0.005148528143763542, -0.045606691390275955, 0.0035773064009845257, 0.00866552535444498, -0.015528112649917603, 0.051066286861896515, 0.057541623711586, -0.005342153366655111, 0.014563160948455334, 0.05601801723241806, -0.009554296731948853, 0.02272716537117958, -0.01988309435546398, -0.02701866254210472, -0.0013561705127358437, 0.039283715188503265, 0.03908056393265724, 0.004399420227855444, 0.02765350043773651, -0.013064945116639137, -0.03125937283039093, -0.022689074277877808, 0.04202621057629585, 0.006040473934262991, 0.017356444150209427, 0.01867690496146679, -0.03915674611926079, -0.01630261354148388, -0.03468749299645424, 0.021038498729467392, 0.012715784832835197, -0.011617517098784447, 0.048273004591464996, -0.01896892860531807, -0.0015728087164461613, 0.01635340042412281, -0.013001461513340473, 0.020949620753526688, -0.0032138621900230646, 0.03021824173629284, 0.037252236157655716, 0.01651845872402191, -0.027094842866063118, 0.04387993365526199, 0.0009816166711971164, -0.02719641663134098, -0.022028842940926552, 0.017204083502292633, -0.030599143356084824, -0.024250773712992668, 0.03506839647889137, -0.013090338557958603, 0.03595716878771782, -0.004726361483335495, 0.04527657479047775, 0.04667321592569351, -0.027221810072660446, 0.03334163874387741, 0.04075653478503227, 0.015172604471445084, -0.025012576952576637, 0.015972498804330826, -0.04685097187757492, -0.014182258397340775, 0.009916153736412525, -0.02353975549340248, 0.003520171158015728, 0.015439235605299473, 0.022473229095339775, -0.014880578964948654, -0.022130418568849564, -0.0331638865172863, -0.011611168272793293, -0.014258438721299171, -0.02505066804587841, 0.043118130415678024, 0.03687133267521858, 0.024809429422020912, -0.028313729912042618, -0.0043613300658762455, -0.015413842163980007, 0.00805608183145523, 0.016505761072039604, 0.00928131677210331, -0.044616345316171646, 0.012226960621774197, -0.0023028713185340166, -0.010995376855134964, -0.009262272156774998, -0.027882041409611702, -0.021584458649158478, 0.005408811382949352, -0.04367678612470627, 0.003393203718587756, 0.021889179944992065, 0.027069449424743652, -0.004773974418640137, -0.04662242904305458, -0.015096424147486687, 0.03456052765250206, -0.002445709425956011, -0.0069387685507535934, 0.01651845872402191, -0.07338715344667435, -0.011763529852032661, 0.03387490287423134, 0.04669861122965813, 0.026713941246271133, 0.00867187324911356, -0.04593680426478386, 0.009636825881898403, 0.029075535014271736, 0.03694751486182213, -0.02963419072329998, -0.056221164762973785, 0.005564346443861723, 0.00013272061187308282, 0.013763265684247017, -0.018473757430911064, 0.04707951098680496, 0.0018600723706185818, 0.027171023190021515, 0.042889587581157684, -0.006176963914185762, -0.0036566611379384995, 0.01197302620857954, 0.02522842213511467, -0.01571856439113617, -0.009414632804691792, 0.03717605397105217, 0.019095897674560547, 0.04834918677806854, -0.04098507761955261, 0.022536713629961014, 0.007840236648917198, 0.013471241109073162, 0.00203623971901834, -0.0226763766258955, -0.007230793591588736, -0.04278801381587982, 0.0356016606092453, 0.02968497760593891, 0.033646360039711, -0.06642934679985046, 0.0323512926697731, -0.007281580474227667, -0.01368708536028862, 0.004643832799047232, -0.011077906005084515, 0.03405265510082245, 0.031056225299835205, -0.02976115792989731, -0.023273123428225517, 0.028973961248993874, 0.0003650312719400972, 0.02493639662861824, 0.031868815422058105, -0.01481709536164999, -0.048044465482234955, 0.051929667592048645, -0.018918141722679138, -0.03275758773088455, -0.0393345020711422, 0.027120236307382584, -0.04024866595864296, 0.05439283326268196, 0.03468749299645424, -0.03067532368004322, -0.03712526708841324, -0.014918669126927853, 0.00983362551778555, 0.05091392621397972, 0.04273722693324089, 0.04713029786944389, -0.03148791566491127, -0.025126848369836807, 0.0025298255495727062, -0.0009189265547320247, -0.011731787584722042, 0.012417411431670189, 0.027120236307382584, 0.002737734466791153, 0.024314256384968758, -0.03410344198346138, 0.021774908527731895, -0.01675969734787941, -0.016785090789198875, -0.038014039397239685, 0.0143854059278965, 0.003196404315531254, 0.05952231585979462, -0.043397456407547, 0.010576384142041206, 0.008183049038052559, -0.010227223858237267, 0.020454447716474533, 0.007681527640670538, 0.003859808901324868, -0.015210694633424282, -0.0145885543897748, 0.05566250905394554, -0.0344589538872242, 0.011065209284424782, 0.020251300185918808, 0.060741204768419266, -0.007021297235041857, 0.0021854264196008444, -0.05840500444173813, 0.023793689906597137, 0.006907026749104261, 0.002099723322317004, 0.009586038999259472, 0.04900941625237465, 0.027932828292250633, -0.008379848673939705, 0.029532616958022118, -0.011585774831473827, 0.031411733478307724, -0.032859161496162415, 0.0020298913586884737, -0.07729775458574295, -0.029608797281980515, -0.013242700137197971, -0.022981099784374237, -0.04598759114742279, -0.05005054920911789, -0.0019759300630539656, -0.016658123582601547, 0.018588026985526085, -0.014969456009566784, -0.003093243343755603, -0.027120236307382584, 0.00605951901525259, 0.043524425476789474, -0.04019787907600403, -0.030370602384209633, -0.028085188940167427, 0.056627459824085236, 0.017788132652640343, -0.00867187324911356, 0.0013395060086622834, -0.029964305460453033, 0.012430108152329922, -0.01640418730676174, -0.03550008311867714, 0.028720024973154068, 0.01133818831294775, -0.028288336470723152, 0.001717234030365944, 0.035982560366392136, 0.0012942738831043243, 0.004662877880036831, 0.03423041105270386, -0.004167704842984676, -0.006615001708269119, -0.040680356323719025, 0.007548212073743343, 0.01168100070208311, -0.004986644722521305, -0.016328006982803345, -0.0736410915851593, -0.04146755114197731, 0.015693170949816704, -0.021838393062353134, -0.0695781335234642, -0.03171645477414131, 0.0055262562818825245, 0.01502024382352829, -0.04380375146865845, -0.027678893879055977, 0.01524878479540348, -0.02691708877682686, -0.0320211797952652, -0.027729680761694908, -0.038064826279878616, -0.04443858936429024, -0.022930312901735306, 0.019933881238102913, -0.03854730352759361, 0.029329469427466393, 0.006951465271413326, -0.004726361483335495, -0.04012169688940048, -0.034712888300418854, 0.01769925467669964, -0.02684090845286846, -0.04286419227719307, 0.01098902802914381, 0.04476870596408844, 0.010481159202754498, 0.016048679128289223, -0.002326677553355694, -0.03171645477414131, 0.031056225299835205, 0.0027424958534538746, -0.004412116948515177, -0.03651582449674606, 0.03699830174446106, 0.008087823167443275, -0.06267111003398895, 0.061960089951753616, 0.0017743693897500634, -0.0368967279791832, -0.027120236307382584, 0.029938912019133568, 0.016328006982803345, -0.009649522602558136, -0.03293534368276596, -0.021838393062353134, 0.020403660833835602, 0.020784562453627586, -0.011547684669494629, 0.04255947098135948, -0.030065881088376045, -0.013204609975218773, -0.019502192735671997, -0.01319191325455904, -0.03468749299645424, -0.055002275854349136, 0.009960592724382877, 0.03125937283039093, -0.0076751792803406715, 0.0035741322208195925, 0.0021140072494745255, 0.0344589538872242, -0.012398366816341877, -0.012087296694517136, -0.006672136951237917, -0.0007102239178493619, -0.008170352317392826, -0.05850657820701599, 0.04052799567580223, -0.0045676520094275475, -0.02279064804315567, -0.04057878255844116, -0.005405636969953775, 0.040274057537317276, -0.01481709536164999, 0.012461850419640541, -0.07359030842781067, -0.008043385110795498, 0.01490597240626812, -0.011230266653001308, 0.0047295354306697845, -0.009687612764537334, 0.009230529889464378, 0.022054236382246017, 0.013230003416538239, -0.009617780335247517, -0.04634309932589531, 0.027805861085653305, -0.03463670611381531, 0.01606137678027153, -0.0003920118324458599, -0.0015799505636096, 0.02394605241715908, 0.004500994458794594, 0.013699782080948353, -0.020632201805710793, -0.000524930830579251, 0.009313059039413929, -0.01189049705862999, -0.04662242904305458, 0.026460006833076477, -0.0058309780433773994, -0.03867426887154579, -0.005069173406809568, -0.005897635594010353, -0.01565507985651493, -0.01490597240626812, 1.9305492969579063e-05, 0.01791509985923767, -0.04789210483431816, 0.010874757543206215, -0.005592913832515478, -0.022803345695137978, -0.00299484352581203, 0.0023330259136855602, -0.014512374065816402, 0.01377596240490675, -0.011312794871628284, 0.011427066288888454, -0.03499221429228783, -0.023615935817360878, -0.001980691449716687, 0.034763675183057785, -0.008449680171906948, 0.01090015098452568, -0.009141652844846249, 0.03618570789694786, 0.004885070491582155, 0.03090386465191841, 0.021038498729467392, -0.00020890105224680156, -0.004678748548030853, -0.011357233859598637, -0.0029012050945311785, -0.006373763550072908, 0.006456292234361172, 0.0006753078778274357, 0.02018781565129757, 0.004986644722521305, 0.011154086329042912, 0.0055579980835318565, 0.042889587581157684, 0.01612485945224762, -0.02326042763888836, 0.05515463650226593, -0.009859018959105015, 0.013395060785114765, 0.003045630408450961, 0.015490022487938404, 0.04365139082074165, -0.038775842636823654, -0.011522291228175163, -0.02805979549884796, 0.03237668797373772, 0.0033075008541345596, 0.041086651384830475, 0.03880123794078827, 0.030751504004001617, 0.033849507570266724, 0.0005384211544878781, 0.007592650596052408, -0.003910596016794443, -0.0043613300658762455, -0.00867187324911356, 0.019172077998518944, 0.002083852421492338, -0.04314352199435234, 0.029710371047258377, -0.0034122487995773554, -0.012976068072021008, 0.00892580859363079, -0.003523345338180661, -0.05225978046655655, 0.005523081868886948, -0.013610905036330223, 0.01809285394847393, 0.01728026382625103, -0.020632201805710793, 0.01885465905070305, -0.004313717596232891, 0.007725966162979603, 0.018765781074762344, 0.0074783796444535255, -0.002531412523239851, -0.03915674611926079, 0.004316891543567181, 0.0008919459651224315, -0.004129614681005478, -0.019616464152932167, 0.00020116397354286164, -0.021597154438495636, 0.002558393171057105, 0.013648995198309422, 0.007484728004783392, 0.003374158637598157, 0.04202621057629585, -0.011827013455331326, -0.037023693323135376, -0.029075535014271736, 0.011782574467360973, -0.0015736022032797337, 0.022803345695137978, 0.03984237089753151, -0.005516733508557081, -0.03844572976231575, 0.026866301894187927, -0.015540809370577335, -0.005754797253757715, -0.035525478422641754, 0.00286311493255198, 0.006811800878494978, 0.01463934127241373, 0.005961119197309017, 0.004910464398562908, -0.016899360343813896, 0.005288192071020603, 0.019527586176991463, 0.03199578449130058, -0.009560645557940006, -0.010252617299556732, 0.001672795508056879, -0.008951202034950256, 0.034078050404787064, -0.004167704842984676, -0.01258881762623787, 0.031818028539419174, 0.03651582449674606, 0.03473827987909317, 0.014931365847587585, 0.054900702089071274, -0.026485400274395943, 0.00720540015026927, 0.00937019381672144, 0.029126321896910667, -0.0023980967234820127, 0.04598759114742279, 0.005846848711371422, 0.02574898861348629, 0.008570299483835697, -0.032503653317689896, 0.07333637028932571, -0.03219893202185631, 0.059979397803545, 0.0004146279243286699, 0.023895263671875, 0.010855712927877903, 0.012093644589185715, 0.016328006982803345, 0.02691708877682686, 0.004354981705546379, 0.00044438589247874916, 0.01380135677754879, -0.00571035873144865, -0.026536187157034874, -0.012303140945732594, -0.03278298303484917, 0.0019013368291780353, -0.010595429688692093, 0.01919747143983841, -0.00983362551778555, 0.011242963373661041, -1.8797127268044278e-05, 0.04520039260387421, -0.02732338383793831, 0.010576384142041206, -0.006983207073062658, -0.013445847667753696, 0.0003430103533901274, 0.01630261354148388, -0.05177730694413185, 0.006005558185279369, -0.0196672510355711, 0.005523081868886948, -0.03362096846103668, -0.026256857439875603, 0.005592913832515478, 0.011579426936805248, -0.0034662100952118635, 0.012284096330404282, -0.0011276291916146874, -0.05733847618103027, 0.0033551135566085577, -0.021838393062353134, 0.031640276312828064, 0.0039582084864377975, 0.003013888606801629, -0.07414896041154861, -0.00997328944504261, 0.0004908083355985582, -0.021076587960124016, -0.034941427409648895, 0.016848573461174965, -0.006887981202453375, -0.042534079402685165, 0.033138491213321686, -0.004720013123005629, 0.02579977549612522, 0.03217354044318199, -0.018130945041775703, 0.03151330724358559, -0.01472821831703186, -0.003491603536531329, 0.0226763766258955, 0.003904247423633933, -0.01773734577000141, 0.012099993415176868, -0.01380135677754879, -0.015058333985507488, -0.03704908862709999, -0.012080947868525982, 0.013306183740496635, -0.05398653820157051, -0.03682054579257965, -0.02093692496418953, 0.001890227198600769, -0.014626644551753998, 0.020949620753526688, 0.0025488706305623055, -0.05276765301823616, 0.028516877442598343, -0.03506839647889137, 0.011350885964930058, 0.016899360343813896, 0.02488560974597931, 0.011490549892187119, -0.018537240102887154, 0.040908895432949066, -0.015274178236722946, -0.010658913291990757, 0.03984237089753151, -0.014512374065816402, 0.014715521596372128, -0.003259887918829918, 0.009522555395960808, 0.011395324021577835, 0.019057806581258774, 0.003294804133474827, -0.05144719034433365, -0.024847520515322685, 0.016543852165341377, 0.026002923026680946, -0.00910356268286705, 0.0069705103524029255, 0.03346860781311989, 0.029024748131632805, -0.016886664554476738, -0.016975540667772293, 0.025964833796024323, -0.013204609975218773, 0.010906499810516834, 0.05652588605880737, -0.008741705678403378, 0.024136502295732498, 0.0037201447412371635, -0.004577174782752991, -0.005215186160057783, 0.030827684327960014, -0.004288323689252138, -0.010366887785494328, -0.009401936084032059, -0.0016101053915917873, -0.0456828698515892, 0.000734427070710808, -0.005345327313989401, -0.015096424147486687, -0.0352715440094471, -0.011909541673958302, -0.024441223591566086, 0.04657164216041565, 0.03727762773633003, -0.024847520515322685, -0.059420742094516754, 0.0043518077582120895, 0.009306710213422775, 0.018638813868165016, 0.015363055281341076, 0.007510121911764145, 0.03547469154000282, -0.005757971666753292, -0.03643964231014252, -0.02053062804043293, -0.0323512926697731, 0.005085044540464878, -0.0007693431107327342, 0.04466713219881058, 0.036160316318273544, 0.008138610050082207, 0.0004487503902055323, 0.016137557104229927, 0.016328006982803345, 0.027678893879055977, 0.011084253899753094, 0.011782574467360973, -0.013712478801608086, 0.02620607055723667, -0.0006780852563679218, 8.996830729302019e-05, -0.0007058593910187483, -0.030776897445321083, -0.013839446939527988, -0.021305128931999207, 0.000447956845164299, -0.017254870384931564, 0.02498718351125717, -0.016048679128289223, -0.006640395149588585, 0.005735752172768116, -0.009573342278599739, 0.004713664762675762, -8.927395538194105e-05, 0.004818412940949202, 0.04276261851191521, -0.005745274946093559, -0.039283715188503265, -0.008481422439217567, 0.007725966162979603, 0.02348896861076355, 0.002093374961987138, -0.009427329525351524, -0.007764056324958801, 0.01641688495874405, -0.040858108550310135, -0.012995113618671894, 0.013953717425465584, 0.001672795508056879, 0.029532616958022118, -0.002780586015433073, 0.013547421433031559, -0.008100519888103008, -0.019286347553133965, -0.03524614870548248, 0.008716312237083912, 0.002982146805152297, 0.002679012017324567, -0.033900294452905655, 0.011534987948834896, 0.008449680171906948, -0.028720024973154068, 0.020365571603178978, 0.006129351444542408, -0.030192848294973373, -0.015667777508497238, -0.012398366816341877, -0.011027118191123009, -0.002448883606120944, 0.02696787565946579, -0.008310016244649887, 0.01429652888327837, 0.0056341784074902534, -0.021038498729467392, 0.036338068544864655, 0.006894329562783241, -0.014398102648556232, 0.0109318932518363, 0.008043385110795498, 0.037658531218767166, 0.0002696073497645557, 0.017953190952539444, -0.019679946824908257, 0.0042534079402685165, -0.02129243314266205, 0.012569773010909557, 0.02070838212966919, -0.012791965156793594, -0.03428119793534279, 0.026053709909319878, 0.01612485945224762, 0.03405265510082245, -0.00119270000141114, -0.0009459071443416178, -0.008208442479372025, 0.05180269852280617, -0.010741442441940308, -0.0019172077300027013, 0.03171645477414131, 0.002345722634345293, -0.021724121645092964, -0.016505761072039604, 0.012487243860960007, -0.019337134435772896, 0.04994897544384003, -0.03834415599703789, 0.0075355153530836105, 0.01014469563961029, -0.002009259071201086, -0.00884962733834982, 0.02643461339175701, -0.0015743958065286279, -0.026307644322514534, 0.049491893500089645, 0.012138083577156067, 0.016226433217525482, -0.01700093410909176, -9.081144526135176e-05, -0.0023933355696499348, 0.017419926822185516, 0.017356444150209427, -0.005367546807974577, 8.233042171923444e-05, 0.004789845086634159, -0.01728026382625103, -0.006453118287026882, -0.0023393742740154266, -0.026129890233278275, 0.02510145492851734, 0.030599143356084824, 0.02157176099717617, -0.0027155152056366205, -0.01792779751121998, -0.01502024382352829, 0.04707951098680496, -0.02691708877682686, -0.009300362318754196, -0.049618858844041824, -0.006326150614768267, -0.0067419689148664474, -0.02028939127922058, -0.00720540015026927, 0.018778478726744652, -0.007808494847267866, 0.03867426887154579, 0.019870398566126823, -0.023285821080207825, -0.029354862868785858, 0.00892580859363079, -0.021140072494745255, -0.024631675332784653, -0.0003328926395624876, -0.010969983413815498, -0.014334619045257568, -0.03496682271361351, 0.010036773048341274, -0.006735620554536581, 0.004085176158696413, 0.00018301160889677703, -0.011388976126909256, -0.006849891040474176, 0.022003449499607086, -0.04987279325723648, 0.0762312263250351, 0.0018664207309484482, 0.0026313993148505688, 0.014893275685608387, 0.007827539928257465, 0.0007987042772583663, -0.03179263696074486, -0.01797858439385891, 0.03217354044318199, -0.0011704807402566075, -0.01463934127241373, -0.002859940752387047, 0.041213616728782654, -0.0029472308233380318, 0.0012704675318673253, -0.02139400690793991, 0.02945643663406372, 0.024149199947714806, 0.013915627263486385, 0.02742495760321617, 0.011846058070659637, 0.00433593662455678, -0.03080229088664055, -0.045606691390275955, -0.010722396895289421, -0.016035983338952065, 0.008157655596733093, 0.006989555433392525, -0.018245214596390724, 0.038598090410232544, 0.027805861085653305, -0.023069975897669792, 0.019235560670495033, 0.030243635177612305, -0.010881106369197369, -0.04035023972392082, 0.011750833131372929, 0.031157799065113068, 0.01519799791276455, -0.029481830075383186, -0.03298613056540489, 0.014080684632062912, -0.040908895432949066, 0.03669357672333717, -0.013001461513340473, 0.04205160215497017, -0.019184773787856102, 0.013560118153691292, -0.004234362859278917, -0.016251826658844948, -0.00997963733971119, 0.004650181159377098, 0.02191457338631153, 0.01802937127649784, -0.020340178161859512, 0.013674388639628887, -0.033773329108953476, 0.03961382806301117, 0.0014839314389973879, 0.01983230747282505, 0.0036280935164541006, 0.008030688390135765, 0.03483985364437103, -0.005789713468402624, 0.026079103350639343, -0.0035773064009845257, 0.03651582449674606, 0.004726361483335495, -0.018994322046637535, -0.016137557104229927, 0.006875284481793642, -0.0401470921933651, 0.024492010474205017, -0.030726110562682152, 0.007281580474227667, 0.023400092497467995, 0.017356444150209427, 0.008430635556578636, 0.005618307273834944, 0.02581247314810753, 0.03623649477958679, 0.009059123694896698, -0.04037563130259514, 0.013560118153691292, -0.06536281853914261, 0.007795798126608133, -0.006300757173448801, -0.004951728507876396, -0.027805861085653305, 0.005005689803510904, -0.004574000369757414, -0.008748053573071957, 0.00264568324200809, 0.010354191064834595, -0.02059411257505417, 0.001026055309921503, -0.011934935115277767, 0.025469660758972168, -0.012563424184918404, -0.00562465563416481, 0.004447033163160086, 0.015058333985507488, 0.029329469427466393, 0.007548212073743343, -0.005399288609623909, -0.025012576952576637, -0.013153822161257267, 0.004415291361510754, -0.004973948001861572, -0.01420765183866024, 0.0009760618559084833, -0.019502192735671997, 0.002459993353113532, -0.02355245314538479, 0.021038498729467392, -0.02296840213239193, 0.021647941321134567, -0.01307764183729887, -0.05520542711019516, 0.0038978990633040667, -0.00907182041555643, -0.012995113618671894, 0.03565244749188423, 0.006475337315350771, 0.01032244972884655, 8.074333163676783e-05, -0.026358433067798615, 0.015528112649917603, 0.00633567338809371, 0.012607863172888756, 0.02568550407886505, -0.0009403523290529847, -0.01895623281598091, 0.0014386993134394288, 0.000535246916115284, 0.004259756300598383, 0.0034503391943871975, -0.0008816298795863986, -0.01752150058746338, 0.015401145443320274, 0.023679420351982117, 0.006342021748423576, 0.011325491592288017, 0.019819611683487892, 0.010157392360270023, 0.014601251110434532, -0.015147211030125618, -0.007897372357547283, 0.025609323754906654, -0.02488560974597931, 0.0034820809960365295, -0.009643173776566982, 0.0008816298795863986, 0.026129890233278275, 0.003869331441819668, -0.00876075029373169, -0.022054236382246017, -0.02098771184682846, 0.003175772028043866, 0.012176173739135265, 0.016683517023921013, 0.005278669763356447, 0.015629686415195465, -0.006088086869567633, -0.01524878479540348, -0.001279990072362125, 0.0066340467892587185, 0.019756127148866653, -0.034814462065696716, 0.013179216533899307, 0.008119565434753895, 0.03991854935884476, 0.008106868714094162, 0.006621350068598986, 0.020835349336266518, 0.017889706417918205, 0.003418597159907222, -0.013572814874351025, 0.07521548867225647, 0.014220348559319973, 0.01802937127649784, -0.021419400349259377, 0.010652564465999603, 0.005504036787897348, 0.006465815007686615, -0.007072084117680788, 0.011077906005084515, -0.03346860781311989, 0.027526531368494034, -0.015261481516063213, 0.018003977835178375, 0.014677431434392929, 0.04517500102519989, 0.002067981520667672, -0.05388496443629265, -0.0012942738831043243, 0.009433677420020103, 0.003242430044338107, -0.0030170627869665623, 0.02800900861620903, 0.010087559930980206, 0.01965455338358879, -0.03217354044318199, -0.017369139939546585, -0.02563471719622612, 8.952193456934765e-05, -0.003109114244580269, 0.03321467339992523, -0.006526124197989702, 0.029126321896910667, -0.018829265609383583, -0.04042641818523407, 0.00028032020782120526, 0.00048049225006252527, 0.011382627300918102, 0.006284886505454779, 0.0026869475841522217, 0.00694511691108346, -0.027221810072660446, -0.013103035278618336, -0.022536713629961014, 0.009693960659205914, 0.01781352609395981, 0.019870398566126823, -0.010119302198290825, -0.007180006243288517, -0.027678893879055977, 0.00019878333841916174, 0.020035455003380775, 0.0216225478798151, 0.016035983338952065, -0.003967731259763241, -0.023095369338989258, -0.018816567957401276, 0.018638813868165016, -0.0607919916510582, -0.036845941096544266, -0.0267393346875906, -0.014766308479011059, 0.00814495887607336, -0.011287401430308819, -0.0024028581101447344, 0.0020949621684849262, -0.006354718469083309, 0.005875416565686464, -0.014347315765917301, -0.01594710536301136, -0.0036725320387631655, 0.010595429688692093, 0.01659463904798031, -0.014093381352722645, -0.012544378638267517, 0.021851088851690292, 0.001269674045033753, -0.011846058070659637, 0.0038661572616547346, 0.0034852551762014627, -0.02464437298476696, -0.024669766426086426, 0.07318400591611862, 0.005240579601377249, 0.005672268569469452, 0.024288862943649292, -0.01411877479404211, -0.03021824173629284, -0.011293750256299973, 0.021762212738394737, 0.019641857594251633, -0.014080684632062912, 0.034890640527009964, -0.010823970660567284, -0.014233045279979706, 0.033316247165203094, -0.0008018784574232996, -0.024847520515322685, 0.005751623306423426, -0.025266513228416443, -0.027577318251132965, 0.0425848662853241, -0.0009728876757435501, -0.00160613760817796, 0.0030440434347838163, -0.010608126409351826, -0.0068054525181651115, -0.02296840213239193, -0.04136597737669945, -0.01919747143983841, 0.017419926822185516, -0.00030710239661857486, 0.01583283394575119, -0.008538557216525078, 0.013103035278618336, -0.03351939469575882, -0.03692211955785751, -0.016150252893567085, 0.005488165654242039, 0.004113743547350168, -0.025304602459073067, 0.006748317275196314, 0.023984141647815704, -0.012569773010909557, -0.012157128192484379, -0.006862587761133909, -0.01284910086542368, 0.0275519248098135, 0.03613492101430893, -0.0014283832861110568, 0.010563687421381474, 0.0023044582922011614, -0.0035392162390053272, 0.003109114244580269, -0.004739058203995228, 0.012442804872989655, 0.02243513986468315, -0.001449808944016695, 0.008436983451247215, -0.017356444150209427, 0.01150959450751543, -0.0046882713213562965, 0.022879526019096375, -0.03623649477958679, -0.012461850419640541, 0.0010165327694267035, -0.04936492443084717, -0.0006261079688556492, 0.027247203513979912, 0.005043779965490103, 0.021190859377384186, -0.033544786274433136, -0.026688547804951668, -0.006303931586444378, 0.0063293250277638435, 0.0015450345817953348, -0.0026679025031626225, 0.02940564975142479, 0.009382890537381172, 0.008424286730587482, -0.013293487019836903, -0.012995113618671894, -0.011484201066195965, -0.02517763525247574, -0.02400953508913517, -0.0035392162390053272, -0.00015751892351545393, -0.005456423852592707, 0.022752558812499046, -0.01943870820105076, 0.008557602763175964, 0.008138610050082207, -0.024961790069937706, -0.0401470921933651, 0.00962412916123867, -0.007313322275876999, 0.03306230902671814, -0.017039025202393532, -0.0012157128658145666, 0.0010879519395530224, -0.0009689199505373836, -0.009427329525351524, 0.011776226572692394, 0.019210167229175568, -0.017838919535279274, 0.01739453338086605, -0.0060753901489079, -0.027983615174889565, -0.010106604546308517, -0.0005927790189161897, -0.029888125136494637, -0.04603837803006172, -0.009763793088495731, 0.0074148960411548615, 0.012360276654362679, -0.02272716537117958, 0.03501760959625244, 0.010747790336608887, -0.0034947777166962624, 0.009916153736412525, 0.013052248395979404, -0.022663680836558342, -0.012417411431670189, 0.03450974076986313, 0.0022362133022397757, -0.008443332277238369, 0.0058055841363966465, -0.01307764183729887, 0.009287665598094463, 0.011788923293352127, 0.03443355858325958, 0.007979901507496834, -0.00806242972612381, -0.041213616728782654, -0.01773734577000141, 0.027729680761694908, 0.023704813793301582, -0.013395060785114765, 0.022409746423363686, 0.03989315778017044, 0.006300757173448801, -0.010538293980062008, -0.028618451207876205, -0.0267393346875906, -0.03324006497859955, -0.022397048771381378, -0.0015172604471445084, 0.013852143660187721, -0.013750568963587284, -0.022473229095339775, -0.028212156146764755, 0.019870398566126823, 0.02262558974325657, -0.012766571715474129, 0.0026440960355103016, 0.014080684632062912, -0.011585774831473827, 0.030548356473445892, -0.00884962733834982, 0.002445709425956011, 0.008862324059009552, -0.02319694310426712, 0.017407231032848358, -0.039232928305864334, 0.030167454853653908, 0.0010554165346547961, 0.01773734577000141, 0.009249575436115265, 0.0021489232312887907, -0.018651511520147324, -0.011255660094320774, -0.040451813489198685, -0.03514457494020462, 0.04202621057629585, 0.021432096138596535, -0.011287401430308819, -0.015909014269709587, -0.009300362318754196, -0.016035983338952065, -0.009313059039413929, -0.04296576976776123, -0.052462927997112274, -0.010887454263865948, -0.0036534869577735662, -0.00247110310010612, 0.036617398262023926, -0.013255396857857704, 0.01515990775078535, -0.00442481366917491, -0.01954028196632862, 0.0019092722795903683, 0.00997328944504261, -0.008798840455710888, 0.014360012486577034, 0.0070022521540522575, -0.013928323984146118, 0.028846994042396545, -0.021724121645092964, 0.018714994192123413, 0.030294422060251236, -0.017356444150209427, -0.02012433297932148, 0.0339764766395092, 0.0021155942231416702, -0.04713029786944389, 0.002202884294092655, 0.001243487000465393, 0.012937977910041809, 0.00011179082503076643, 0.0038471121806651354, 0.011001724749803543, -0.018765781074762344, -0.011706394143402576, -0.04692715033888817, 0.01110964734107256, 0.019845005124807358, 0.03344321250915527, 0.021254342049360275, -0.007135567720979452, -0.025647414848208427, 0.006767362356185913, 0.021609852090477943, -0.00028984277741983533, -0.01345854438841343, -0.01797858439385891, -0.0031202237587422132, 0.03707448020577431, -0.011484201066195965, 0.021762212738394737, -0.00424705957993865, -0.01551541592925787, 0.03306230902671814, -0.00988441240042448, -0.026180677115917206, -0.026460006833076477, -0.008284622803330421, -0.043295882642269135, 0.027221810072660446, 0.030065881088376045, 0.010385933332145214, 0.0038820281624794006, 0.0023346131201833487, -0.017496107146143913, 0.01815633848309517, -0.012836404144763947, -0.06627698242664337, 0.05225978046655655, -0.0010133585892617702, -0.002053697593510151, -0.02981194481253624, -0.026053709909319878, -0.03532233089208603, -0.006811800878494978, 0.025558536872267723, 0.003932815045118332, 6.1778814597346354e-06, 0.028567664325237274, -0.013179216533899307, 0.028796205297112465, 0.01884196139872074, -0.01345854438841343, -0.0024060322903096676, -0.015578899532556534, 0.02765350043773651, -0.012087296694517136, 0.013153822161257267, 0.03585559502243996, 0.004707316402345896, 0.00023588162730447948, 0.02459358610212803, 0.02813597582280636, -0.004529561847448349, 0.012544378638267517, 0.002839308464899659, -0.0019013368291780353, 0.00858299620449543, -0.027729680761694908, 0.0279582217335701, -0.038648877292871475, 0.00501521211117506, 0.009046426974236965, 0.00762439239770174, -0.04547972232103348, 0.015540809370577335, -0.013483937829732895, -0.011776226572692394, 0.029380256310105324, -0.01700093410909176, 0.015578899532556534, 0.010201830416917801, -0.020454447716474533, 0.004951728507876396, -0.001598202157765627, -0.03222432732582092, -0.03311309963464737, -0.0169882383197546, 0.013852143660187721, -0.019210167229175568, -0.01255072746425867, 0.018130945041775703, -0.0033646360971033573, 0.014753611758351326, -0.0023044582922011614, -0.03318927809596062, 0.008310016244649887, 0.023514362052083015, 0.0030995917040854692, -0.01197302620857954, 0.01449967734515667, -0.03004048764705658]
Name: Stafili Wine Cafe, Address: 796 Greenwich St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0065965, 40.7373928]}, Rating: 4.5, Reviews: ['This Greek restaurant in West Village is a real gem. The food is outstanding, with fresh and flavorful dishes, I loved tuna tartare and Stafili salad a lot!. The orange wine is a must-try, as well. The service is friendly and attentive, making for a great dining experience.10/10', 'This place is great. You really couldn’t ask for more. Awesome wines (love the unique focus on Greek wine), yummy food, the place itself is so cute with fun details (like the wine cork ceiling) and the service was just perfect. 10/10 would recommend!', 'fantastic wine and cool vibe. come here on a date, for a girls night out, friends catch up, anything. low key and great wine. greek wine focus giving some diversity from other wine bars. cheese board is a nice compliment to any bottle.', 'The atmosphere here is very modern and cozy. Lots of wood panelling and BEAUTIFUL ceiling with at least 15K corks! Solid service, pretty good appetizers/light snacks. Bring the important Greeks in your life here.', "They have amazing selection of wines and happy hour on a red, white, and rose, and sparkling. The ambiance interior was nice with outdoor seating during great weather. Great explanation of the wine flight we received, however, felt rushed when we didn't finish our wines yet and gave us our check. We received a look that seemed judgmental prior to leaving, possibly due to the time we took in calculating the tip. I may be wrong, but I didn't appreciate the person's vibe."], Embedding: [-0.047181304544210434, -0.018142888322472572, -0.04610399156808853, -0.02827940136194229, -0.004327605478465557, -0.035330887883901596, 0.005634456407278776, 0.015669971704483032, -0.002705518389120698, -0.011715752072632313, 0.002860075794160366, -0.012793062254786491, -0.03278451785445213, -0.037999678403139114, 0.0042694550938904285, 0.03569815307855606, -0.02219504490494728, 0.0005539579433389008, 0.026394108310341835, 0.009622341953217983, 0.0429210290312767, 0.013001179322600365, -0.04791583493351936, 0.049458347260951996, -0.014531449414789677, 0.029087383300065994, -0.05011942237615585, 0.011868778616189957, 0.02232970856130123, -0.022023655474185944, 0.04860139638185501, -0.019660916179418564, 0.06165154278278351, -0.034057702869176865, -0.01722472533583641, -0.002980967052280903, 0.047205787152051926, 0.008906175382435322, 0.025145405903458595, -0.0052518886514008045, 0.013478623703122139, 0.08344259858131409, 0.05553045868873596, -0.009922274388372898, 0.0535227432847023, -0.02146051451563835, 0.00265961023978889, 0.0722777396440506, -0.00688009662553668, -0.0022005292121320963, -0.019416073337197304, 0.011623935773968697, -0.05445314943790436, 0.032098956406116486, -0.04044811427593231, -0.033543530851602554, -0.01197895873337984, 0.019244683906435966, 0.05812579765915871, 0.027422448620200157, 0.039248380810022354, -0.021619662642478943, 0.025659577921032906, -0.008067586459219456, -0.05322893336415291, 0.02749590203166008, -0.01991800218820572, 0.040227752178907394, 0.022109350189566612, -0.03469429537653923, 0.04850345849990845, 0.06292472779750824, 0.0063659255392849445, -0.006163930054754019, 0.012193196453154087, -0.039982911199331284, 0.030409537255764008, -0.03373940661549568, -0.0024132367689162493, -0.008502183482050896, -0.03540433943271637, 0.020579079166054726, -0.041256096214056015, 0.034841202199459076, 0.058811359107494354, -0.06821334362030029, -0.043239325284957886, 0.01695539802312851, -0.026810340583324432, 0.04975215718150139, 0.014176427386701107, -0.0007597793592140079, 0.02306423895061016, -0.0013259794795885682, -0.02654101327061653, -0.028695635497570038, -0.005016227252781391, -0.004798928741365671, -0.05411037057638168, 0.00042809321894310415, 0.039028022438287735, -0.04059501737356186, -0.021827779710292816, -0.003000860568135977, 0.05009493976831436, 0.01649019680917263, 0.025439219549298286, -0.009353013709187508, -0.005386552773416042, -0.03594299778342247, -0.06326750665903091, 0.0009510631789453328, -0.020493384450674057, 0.026883793994784355, -0.02847527526319027, 0.017383873462677002, 0.042039595544338226, -0.03540433943271637, -0.03714272752404213, -0.010473172180354595, -0.019256925210356712, 0.03846488147974014, -0.041745781898498535, -0.04676507040858269, -0.0017215544357895851, -0.03212343901395798, -0.03376388922333717, 0.0025019925087690353, 0.003700194414705038, -0.02379876933991909, 0.023676346987485886, -0.04764650762081146, 0.017457326874136925, -0.015572033822536469, -0.007290209177881479, 0.011666783131659031, -0.020493384450674057, -0.010926132090389729, -0.0014032581821084023, 0.03844039887189865, 0.01686970330774784, -0.0213258508592844, 0.0339597649872303, -0.02317441813647747, 0.012395191937685013, -0.0135153504088521, -0.08300188183784485, 0.04015430063009262, -0.026908278465270996, 0.015155800618231297, 0.02450881339609623, 0.020615804940462112, -0.02524334378540516, -0.055873241275548935, -0.01462938729673624, -0.005490610841661692, 0.017163515090942383, 0.007871711626648903, -0.044439058750867844, -0.0002679886529222131, -0.0589582659304142, 0.02431293949484825, -0.01600050926208496, 0.013160327449440956, -0.010718015022575855, 0.038269009441137314, -0.04725475609302521, 0.009053081274032593, -0.027667293325066566, 0.024055853486061096, -0.003632862353697419, -0.028132494539022446, 0.024974016472697258, 0.08638071268796921, 0.013772435486316681, -0.04678955301642418, 0.05058462545275688, 0.029577070847153664, 0.02852424420416355, 0.0021806356962770224, -0.02749590203166008, 0.06165154278278351, 0.03545330837368965, -0.0028814994730055332, -0.06390409916639328, 0.00038448048871941864, -0.046201929450035095, -0.008973507210612297, -0.00299473968334496, 0.016698313876986504, -0.007020881399512291, 0.021864507347345352, -0.021595178171992302, -0.01249925047159195, -0.020089393481612206, -0.015988267958164215, 0.00785334873944521, 0.07315918058156967, -0.031021645292639732, 0.055873241275548935, -0.013576560653746128, 0.0012188605032861233, 0.007069850340485573, -0.04884623736143112, 0.049409378319978714, -0.031805142760276794, 0.025316797196865082, 0.011299517937004566, -0.019844548776745796, -0.01164229866117239, 0.0334211103618145, 0.00855727307498455, 0.024104822427034378, 0.02339477650821209, 0.0058946022763848305, -0.026908278465270996, -0.023725315928459167, 0.03550227731466293, 0.03763241320848465, 0.031144067645072937, -0.057391270995140076, 0.05719539523124695, 0.029797429218888283, -0.022268498316407204, 0.017506295815110207, 0.015767907723784447, -0.016918672248721123, 0.004266394302248955, 0.0315113328397274, -0.021827779710292816, -0.00096713105449453, -0.0034951381385326385, -0.038293492048978806, -0.02876908704638481, -0.008459336124360561, -0.026614466682076454, -0.039738066494464874, -0.014457996934652328, 0.012695125304162502, 0.010791468434035778, 0.00032193068182095885, -0.02094634436070919, 0.0448308065533638, -0.011868778616189957, 0.014384543523192406, -0.023100964725017548, -0.026369623839855194, -0.012891000136733055, 0.016649344936013222, 0.022648004814982414, -0.025194374844431877, -0.06831128150224686, -0.004526540637016296, -0.026859309524297714, 0.0025647336151450872, -0.033837344497442245, -0.016122931614518166, -0.006935186218470335, -0.007277966942638159, -0.04451251029968262, 0.0033696559257805347, -0.013711224310100079, -0.020530110225081444, 0.0011760129127651453, -0.04576121270656586, -0.018412215635180473, 0.059105172753334045, 0.014592660591006279, 0.003850160865113139, 0.012493128888309002, -0.03388631343841553, -0.034571874886751175, 0.026124779134988785, 0.03050747513771057, 0.017322663217782974, -0.022892847657203674, 0.014653871767222881, 0.009132655337452888, -0.007896196097135544, 0.000174259563209489, -0.008973507210612297, -0.05915414169430733, -0.02295405976474285, 0.015278222039341927, -0.0004961902741342783, 0.022513341158628464, -0.006494468543678522, 0.021582936868071556, 0.028352854773402214, -0.006776038091629744, 0.017163515090942383, -0.0012295724591240287, 0.008489941246807575, -0.02700621634721756, 0.017457326874136925, 0.011348486877977848, 0.014151942916214466, 0.00021289889991749078, 0.017126789316534996, -0.028867024928331375, 0.010822073556482792, -0.008404246531426907, 0.024410877376794815, -0.02263576351106167, 0.011311760172247887, -0.0037705868016928434, -0.037583447992801666, 0.010687409900128841, 0.01673503965139389, 0.028548728674650192, 0.006690342910587788, -0.003755284007638693, -0.0053375838324427605, 0.014115216210484505, 0.0020949405152350664, -0.005527337547391653, 0.016539165750145912, 0.0017001306405290961, -0.019354863092303276, -0.0434596873819828, -0.003712436417117715, -0.025708546862006187, 0.04243134334683418, 0.07183702290058136, 0.00010176299838349223, -0.049923550337553024, 0.04855242744088173, -0.004015429876744747, 0.0135153504088521, -0.021754326298832893, 0.014384543523192406, -0.054404180496931076, 0.048919692635536194, 0.038538336753845215, -0.041035737842321396, -0.05974176526069641, 0.00022877546143718064, 0.05792992562055588, 0.04752408340573311, 0.045491885393857956, 0.031339943408966064, -0.020628048107028008, -0.026149263605475426, 0.03344559296965599, 0.00017445084813516587, 0.01010590698570013, 0.042994484305381775, 0.03599196672439575, 0.02072598598897457, 0.005655880086123943, -0.0497276745736599, -0.005371249746531248, -0.02010163478553295, -0.025586124509572983, 0.053130995482206345, 0.035037074238061905, -0.0033849587198346853, 0.015180284157395363, -0.06365925818681717, 0.023027513176202774, -0.02059132233262062, -0.0067393118515610695, 0.0010076832259073853, 0.007834985852241516, -0.017775623127818108, 0.013539834879338741, -0.001342812436632812, 0.015400643460452557, -0.015461854636669159, -0.013331717811524868, 0.019305894151329994, 0.042994484305381775, -0.06341441720724106, 0.011960594914853573, -0.005582427140325308, 0.02796110510826111, 0.011415818706154823, 0.0067148273810744286, -0.01041808258742094, -0.01274409331381321, 0.02007715031504631, 0.011446423828601837, 0.016771765425801277, -0.009965122677385807, 0.03888111561536789, -0.01863257586956024, -0.04629986733198166, -0.057831987738609314, -0.012138106860220432, 0.03388631343841553, 0.005637516733258963, -0.013099116273224354, -0.05200471729040146, 0.008728663437068462, 0.01880396530032158, -0.011379092000424862, 0.016318805515766144, 0.015914814546704292, -0.01096285879611969, -0.004021550994366407, 0.0486258789896965, -0.03302936255931854, -0.07555864006280899, -0.011525997892022133, -0.001029872102662921, 0.015669971704483032, -0.026320654898881912, -0.00032958202064037323, -0.03946873918175697, 0.006065992638468742, -0.025365766137838364, -0.011636178009212017, 0.04228443652391434, 0.048968661576509476, 0.014347817748785019, -0.006561800371855497, 0.020419931039214134, -0.014384543523192406, 0.004599993582814932, 0.028352854773402214, -0.010032454505562782, 0.020554594695568085, -0.016367774456739426, -0.03376388922333717, -0.011244428344070911, 0.033592499792575836, 0.019354863092303276, -0.048723816871643066, -0.04387591779232025, -0.03956667706370354, -0.02007715031504631, -0.016233110800385475, 0.004303121007978916, -0.04240686073899269, -0.034571874886751175, -0.041256096214056015, -0.0034431088715791702, -0.043704528361558914, 0.008997991681098938, -0.01029566116631031, -0.02352944016456604, -0.05479593202471733, -0.051612965762615204, -0.02366410568356514, 0.019514011219143867, 0.03298039361834526, 0.022892847657203674, 0.024606751278042793, 0.0014935440849512815, 0.01633104868233204, -0.0018822328420355916, 0.017481811344623566, -0.03638371452689171, -0.026834825053811073, 0.01649019680917263, 0.006433257833123207, -0.030874740332365036, 0.0025830967351794243, 0.00687397550791502, -0.014298848807811737, -0.026834825053811073, -0.006353683769702911, -0.0679195299744606, 0.02301527000963688, 0.044928744435310364, -0.03219689428806305, -0.032833486795425415, 0.016673829406499863, 0.05944795161485672, -0.041990626603364944, -0.002257149200886488, -0.02344374544918537, 0.02072598598897457, -0.03907699137926102, -0.021693116053938866, -0.050437718629837036, 0.025145405903458595, 0.02277042716741562, 0.008465456776320934, 0.025561640039086342, 0.028108010068535805, 0.036065418273210526, -0.02399464324116707, -0.00433984724804759, -0.005401855334639549, -0.12996281683444977, 0.007510568015277386, -0.01140969805419445, -0.035820573568344116, -0.006898459978401661, -0.0003175311430823058, -0.020015940070152283, -0.038758695125579834, -0.011556603945791721, -0.012131985276937485, 0.002410176210105419, -0.04113367572426796, -0.011495392769575119, 0.012291133403778076, -0.003889947896823287, 0.02798558957874775, -0.017347147688269615, 0.015584276057779789, 0.047230273485183716, 0.0148742301389575, 0.044953230768442154, -0.023700831457972527, -0.02820594795048237, 0.005306978709995747, 0.015853604301810265, -0.04735269397497177, -0.01597602479159832, 0.02263576351106167, -0.0053375838324427605, 0.023186661303043365, 0.005909905303269625, 0.0007345299236476421, 0.028108010068535805, -0.027300028130412102, 0.02548818662762642, 0.013184811919927597, -0.03300487622618675, 0.027789713814854622, -0.017640959471464157, 0.034816715866327286, 0.008453214541077614, -0.028842540457844734, -0.023003028705716133, -0.031854111701250076, -0.004232728388160467, -0.020579079166054726, -0.021558452397584915, -0.013356202282011509, 0.009965122677385807, 0.003951158840209246, 0.02426397055387497, -0.02945464849472046, -0.006427136715501547, 0.032613128423690796, 0.003504319814965129, 0.028793571516871452, -0.023051995784044266, -0.011311760172247887, -0.037044789642095566, 0.02192571759223938, -0.0005784422974102199, 0.013478623703122139, 0.0339597649872303, -0.010258934460580349, 0.013172569684684277, 0.008863327093422413, -0.03883214667439461, -0.0027621383778750896, -0.006482226308435202, -0.043190356343984604, 0.027569355443120003, 0.030091241002082825, 0.02401912771165371, 0.04057053476572037, 0.0535227432847023, -0.007810501381754875, 0.011838173493742943, -0.018571363762021065, 0.007333057001233101, 0.014311091043055058, 0.021423788741230965, -0.003840979188680649, 0.04779341071844101, -0.014360059052705765, 0.027348997071385384, 0.021509483456611633, 0.011660662479698658, 0.007057608105242252, -0.05009493976831436, 0.01768992841243744, 0.01638001762330532, 0.0062435041181743145, -0.02341926097869873, 0.008049223572015762, -0.0002327924157725647, -0.02195020206272602, -0.027814198285341263, -0.020481141284108162, 0.009928395971655846, -0.00014652340905740857, 0.018130647018551826, 0.03276003524661064, 0.036310262978076935, 0.0467405840754509, 0.039517708122730255, 0.008912296034395695, 0.01022832840681076, -0.003984824754297733, -0.016147416085004807, 0.029332228004932404, -0.015498580411076546, -0.002748365979641676, 0.006176172289997339, -0.0070882136933505535, 0.0010635381331667304, -0.01559651829302311, 0.033323172479867935, -0.024570025503635406, 0.003997066989541054, -0.028548728674650192, 0.034082185477018356, 0.0006113431300036609, -0.02461899444460869, 0.03525743633508682, -0.010209965519607067, 0.0026810341514647007, 0.029307743534445763, 0.014213153161108494, -0.05058462545275688, -0.03244173526763916, -0.009193865582346916, 0.020983070135116577, -0.017236968502402306, -1.9307710772409337e-06, -0.012352344579994678, -0.033078331500291824, 0.013148085214197636, 0.021778810769319534, -0.014115216210484505, 0.009781490080058575, 0.048185162246227264, -0.01597602479159832, -0.01462938729673624, -0.028377339243888855, -0.010007970035076141, 0.0012907832860946655, -0.03021366335451603, 0.04485529288649559, -0.0032135683577507734, 0.018081678077578545, -0.017041092738509178, -0.012174832634627819, -0.02673688903450966, -0.014923199079930782, -0.0171145461499691, 0.022807152941823006, 0.02181553840637207, 2.1830266632605344e-05, 0.0106629254296422, -0.011813689023256302, -0.001955685904249549, -0.010344629175961018, 0.008704178966581821, -0.0339597649872303, -0.023333566263318062, 0.02119118720293045, -0.014274364337325096, 0.010503777302801609, 0.0027407146990299225, 0.012805304490029812, 0.008404246531426907, -0.023431504145264626, 0.00620065676048398, -0.015669971704483032, 0.0224154032766819, -0.006586284842342138, 0.006500589661300182, -0.007277966942638159, 0.022427646443247795, -0.02747141756117344, -0.003697133855894208, -0.02827940136194229, 0.03351904824376106, -0.021864507347345352, -0.006971912924200296, 0.042725156992673874, 0.009854942560195923, 0.04933592304587364, 0.003293142421171069, 0.039811521768569946, 0.007363662123680115, 0.010026332922279835, -0.03848936781287193, -0.023517198860645294, 0.00967130996286869, 0.008385882712900639, -0.026149263605475426, -0.009175502695143223, -0.010534383356571198, -0.018106162548065186, -0.007908438332378864, 0.013307233341038227, -0.02602684311568737, 0.028156979009509087, 0.010387476533651352, 0.012150349095463753, 0.010050817392766476, 0.04652022570371628, 0.01697988249361515, 0.029038414359092712, -0.006286351475864649, 0.013209296390414238, -0.010583351366221905, 0.04255376383662224, -0.07266949117183685, 0.024447603151202202, -0.017041092738509178, 0.005258009769022465, 0.0009916153503581882, 0.004168457351624966, 0.014898714609444141, 0.0023780404590070248, 0.0033696559257805347, 0.02201141230762005, -0.028401821851730347, -0.088584303855896, 0.006215959321707487, -0.0210565235465765, 0.011789204552769661, 0.015265979804098606, -0.06145566701889038, -0.024949532002210617, -0.013698983006179333, -0.01817961409687996, -0.0019021263578906655, -0.02366410568356514, 0.02901393175125122, -0.002408646047115326, 0.014580418355762959, 0.03173169121146202, -0.024594509974122047, 0.007388146594166756, -0.021105492487549782, -0.019354863092303276, 0.020640289410948753, -0.023835495114326477, -0.015229253098368645, 0.006904581096023321, 0.0011132719228044152, 0.020934101194143295, 0.013674498535692692, 0.018277551978826523, -0.013845888897776604, -0.031168552115559578, -0.004413300659507513, 0.0033421111293137074, -0.03518398106098175, 0.01893862895667553, -0.01589033007621765, 0.028891509398818016, -0.04328829422593117, 0.027887651696801186, -0.05024184659123421, -0.010626198723912239, 0.005738514941185713, -0.025169890373945236, 0.009432587772607803, 0.009193865582346916, 0.0008110434282571077, -0.005205980502068996, -0.053179964423179626, 0.006965791806578636, -0.01473956648260355, -0.012517613358795643, 0.028695635497570038, -0.0168452188372612, 0.0016251474153250456, -0.010063059628009796, -0.01008142251521349, 0.0015065514016896486, 0.030629897490143776, 0.004749959800392389, -0.00343392719514668, -0.009310166351497173, -0.030385052785277367, -0.011905505321919918, 0.022537825629115105, 0.0007850288529880345, 0.018595848232507706, 0.016992125660181046, -0.024484330788254738, -0.006494468543678522, -0.020224057137966156, -0.00828794576227665, 0.010020212270319462, 0.053620681166648865, -0.023480473086237907, -0.01880396530032158, -0.016416743397712708, 0.029111867770552635, -0.02752038650214672, 0.04350865259766579, -0.0402032695710659, -0.027936620637774467, -0.010307902470231056, -0.017947014421224594, -0.018877418711781502, 0.0018256128532812, 0.011305639520287514, -0.008294066414237022, -0.013258264400064945, 0.033102814108133316, -0.04331278055906296, -0.01221155934035778, 0.03126648813486099, -0.01109752245247364, -0.06101495027542114, 0.014054005034267902, 0.0039450377225875854, 0.02368858829140663, 0.015143558382987976, 0.023590652272105217, 0.014347817748785019, 0.010583351366221905, -0.03621232509613037, -0.03094819374382496, -0.0035594094078987837, 0.01475180871784687, 0.005723211914300919, 0.012854273431003094, 0.014249879866838455, 0.025439219549298286, -0.015510822646319866, 0.030042272061109543, 0.022452130913734436, -0.0009923805482685566, 0.0020934101194143295, -0.03285796940326691, 0.022978544235229492, 0.025830967351794243, 0.05146606266498566, -0.012174832634627819, 0.024729173630475998, -0.0385873056948185, 7.101411756593734e-05, -0.008789874613285065, 0.02629617042839527, -0.023786526173353195, -0.0019327318295836449, -0.0049825613386929035, 0.016233110800385475, 0.02388446405529976, -0.010901647619903088, -0.002151560503989458, -0.012670640833675861, 0.051661934703588486, 0.028303885832428932, -0.0660097524523735, -0.018008224666118622, 0.018485669046640396, -0.01782459206879139, 0.031095098704099655, 0.0002714317524805665, 0.019256925210356712, -0.020248541608452797, -0.0033574136905372143, -0.00853278860449791, 0.0312420055270195, -0.005655880086123943, 0.006044568959623575, 0.00019415307906456292, -0.015547549352049828, 0.03351904824376106, -0.016392258927226067, 0.02771626226603985, -0.05797889456152916, 0.00015149678802117705, -0.010901647619903088, -0.013711224310100079, 0.008636847138404846, -0.003608378116041422, 0.00366040738299489, -0.002679503755643964, 0.023211143910884857, 0.003547167405486107, -0.0505356565117836, -0.029870882630348206, -0.008863327093422413, 0.01388261467218399, -0.045198071748018265, -0.018265310674905777, 0.027202090248465538, -0.027642808854579926, 0.022721458226442337, -0.001955685904249549, 0.008832721970975399, 0.03153581544756889, 0.00047476644976995885, 0.006249625235795975, 0.025390250608325005, 0.030311601236462593, -0.027104152366518974, 0.036016449332237244, -0.033568017184734344, 0.01363777182996273, -0.02646755985915661, -0.00742487283423543, 0.030311601236462593, -0.02872011810541153, -0.026345139369368553, 0.013894856907427311, 0.008655210956931114, 0.021913474425673485, -0.01274409331381321, -0.0028616059571504593, -0.009995727799832821, 0.04962973669171333, -0.01176472008228302, -0.02876908704638481, -0.0047560809180140495, 0.017481811344623566, -0.02928325906395912, -0.019465042278170586, -0.008373640477657318, -0.07071074843406677, 0.019061051309108734, -0.041500940918922424, -0.0019235501531511545, 0.006206777412444353, -1.568527295603417e-05, 0.02727554365992546, -0.021888991817831993, -0.0067393118515610695, -0.009040839038789272, 0.017432842403650284, -0.0019648675806820393, 0.017947014421224594, 0.01233398076146841, -0.013845888897776604, -0.03596748039126396, 0.027153121307492256, 0.031878598034381866, -0.018326520919799805, -0.03594299778342247, 0.018767239525914192, 0.00787783320993185, -0.012285012751817703, 0.006359804887324572, 0.0008301718044094741, 0.03320075199007988, 0.016698313876986504, 0.0418437197804451, 0.00899187009781599, -0.007908438332378864, -0.02426397055387497, -0.0025494308210909367, -0.03944425657391548, -0.010613957419991493, -0.028108010068535805, 0.005640577524900436, 0.039738066494464874, 0.011660662479698658, -0.019281409680843353, 0.024447603151202202, -0.0007880893535912037, 0.025120923295617104, 0.04064398631453514, -0.011929989792406559, -0.006136385258287191, -0.018057193607091904, 0.010020212270319462, -0.015168041922152042, 0.061063919216394424, -0.012829788960516453, 0.0012854273663833737, -0.040521565824747086, 0.019489526748657227, 0.0014231516979634762, 0.00013313353701960295, -0.01462938729673624, 0.002752956934273243, 0.014213153161108494, -0.0028922115452587605, -0.026198232546448708, 0.05401243269443512, -0.0031278731767088175, 0.003675709944218397, 0.013197054155170918, 0.02646755985915661, -0.004263333976268768, 0.01085267961025238, -0.002044441644102335, 0.005573245696723461, -0.023835495114326477, -0.024496572092175484, -0.021533967927098274, 0.04654471203684807, -0.0448308065533638, 0.0003437370469328016, -0.024692445993423462, -0.006384288892149925, 0.016012752428650856, 0.009175502695143223, 0.02896496281027794, 0.009040839038789272, 0.017922529950737953, 0.0005378901259973645, 0.007033123634755611, 0.02651652880012989, -0.02578200027346611, -0.005683424882590771, 0.05308202654123306, 0.009885548613965511, -0.0007988012512214482, -0.009353013709187508, -0.029160836711525917, 0.0006809704354964197, 0.03195204958319664, -0.018130647018551826, -0.025169890373945236, 0.005943571217358112, -0.013784677721560001, 0.01735938899219036, -0.010307902470231056, -0.01762871816754341, 0.02034647762775421, -0.012493128888309002, 0.03564918413758278, 0.011758599430322647, -0.011605571955442429, -0.03437599912285805, -0.028303885832428932, 0.009916153736412525, -0.040472596883773804, -0.019648674875497818, 0.024986257776618004, 0.01668607071042061, 0.018375489860773087, 0.019734369590878487, -0.016282079741358757, 0.020358720794320107, 0.02727554365992546, -0.007461599539965391, 0.03471877798438072, 0.011887142434716225, -0.010999585501849651, 0.03790174424648285, 0.01746957004070282, 0.024325182661414146, 0.03045850619673729, 0.044292151927948, 0.01891414448618889, -0.0006327669252641499, -0.013233779929578304, 0.021387062966823578, -0.044243182986974716, -0.00632307818159461, 0.01028341893106699, -0.025059711188077927, 0.04287206009030342, -0.0064516207203269005, 0.011066917330026627, 0.011721872724592686, 0.03520846739411354, 0.037583447992801666, 0.0010933784069493413, -0.009824337437748909, 0.010773105546832085, -0.018681542947888374, 0.017298178747296333, -0.014678355306386948, 0.020738227292895317, 0.012842031195759773, -0.002685624873265624, -0.019416073337197304, -0.03293142467737198, 0.01874275505542755, 0.017518537119030952, -0.02651652880012989, 0.0017353268340229988, 0.012866515666246414, 0.03317626565694809, 0.009634584188461304, -0.028646666556596756, -0.0037063155323266983, 0.009371377527713776, 0.02089737541973591, -0.010381355881690979, -0.019305894151329994, -0.03608990088105202, 0.00011467465083114803, 0.007773774676024914, -0.024631235748529434, 0.009071444161236286, -0.0034522905480116606, 0.02152172662317753, -0.01874275505542755, -0.017812350764870644, -0.007198392879217863, -0.026565497741103172, 0.0011653010733425617, 0.005068256054073572, -0.05817476660013199, -0.0007620747783221304, -0.020468899980187416, -0.01484974566847086, 0.008851084858179092, 0.003421685192734003, 0.025145405903458595, -0.00686785439029336, 0.001397137064486742, -0.011470908299088478, 0.026100296527147293, 0.029650524258613586, 0.0366775244474411, 0.005640577524900436, -0.030164694413542747, 0.019526252523064613, -0.01771441288292408, -0.01682073436677456, -0.005824210122227669, 0.016612617298960686, 0.006525074131786823, -0.0007815856952220201, 0.003201326122507453, 0.025635093450546265, -0.008447093889117241, -0.015278222039341927, -0.021668631583452225, -0.010063059628009796, -0.0009717218345031142, -0.0037093760911375284, 0.04725475609302521, -0.05234749615192413, -0.023725315928459167, -0.02108100801706314, -0.012572702951729298, 0.0073575410060584545, 0.04282309114933014, 0.006555679254233837, -0.017420601099729538, -0.029136352241039276, 0.0030192239210009575, 0.043973855674266815, 0.04128057882189751, 0.015853604301810265, 0.003075843909755349, -0.011201580986380577, -0.03895456716418266, -0.0056773037649691105, 0.014029520563781261, 0.01836324669420719, -0.016147416085004807, 0.005472247954457998, -0.0008753148140385747, 0.027814198285341263, 0.02170535922050476, 0.007945165038108826, -0.015449612401425838, 0.020419931039214134, -0.03474326431751251, 0.0009648356353864074, 0.07732151448726654, 0.011483150534331799, 0.005698727909475565, 0.01622086763381958, -1.3545285582949873e-05, 0.0207871962338686, -0.06263091415166855, 0.021778810769319534, 0.03692236915230751, 0.0011017948854714632, 0.00016976440383587033, -0.006078234873712063, -0.00408276217058301, 0.001847036648541689, 0.014078489504754543, -0.0024453725200146437, -0.030629897490143776, -0.00674543296918273, -0.0002234195126220584, -0.025806482881307602, 0.015400643460452557, 0.013405170291662216, 0.020248541608452797, 0.0023321323096752167, -0.006359804887324572, -0.015131316147744656, -0.008636847138404846, 0.0060874163173139095, -0.016881944611668587, -0.0002934293879661709, 0.05646086484193802, -0.007137182168662548, -0.011544361710548401, -0.009273439645767212, 0.019416073337197304, 0.03861178830265999, 0.015829119831323624, 0.011746357195079327, 0.0010122740641236305, -0.0056007904931902885, 0.007981891743838787, -0.01874275505542755, -0.009824337437748909, 0.022599035874009132, 0.022244013845920563, 0.004012369550764561, -0.005974176339805126, 0.005573245696723461, -0.008942901156842709, 0.007798259146511555, 0.0012066183844581246, 0.02130136638879776, -0.011281155049800873, 0.006586284842342138, -0.016257595270872116, -0.009481556713581085, 0.014384543523192406, -0.0679195299744606, -0.018950872123241425, -0.012346222996711731, 0.018546879291534424, -0.019893517717719078, -0.013723466545343399, 0.017383873462677002, 0.01961194910109043, 0.037558961659669876, 0.011795326136052608, 0.0032319314777851105, -0.019244683906435966, -0.011923868209123611, -0.0021377881057560444, -0.01746957004070282, -0.008134918287396431, 0.029675008729100227, 0.00016192176553886384, 0.022721458226442337, -0.009475436061620712, 0.009285681881010532, -0.013919341377913952, -0.055089741945266724, 0.0005566359614022076, 0.030409537255764008, 0.018167372792959213, 0.012285012751817703, 0.002601460088044405, 0.0003108362143393606, 0.005077437963336706, 0.02820594795048237, -0.015743423253297806, 0.011244428344070911, -0.00021309018484316766, 0.026834825053811073, 0.008783753030002117, -0.006555679254233837, 0.016673829406499863, 0.0028524245135486126, -0.012125864624977112, 0.03498810902237892, -0.014298848807811737, -0.01953849568963051, 0.04350865259766579, -0.019820064306259155, -0.0017016609199345112, 0.008361398242413998, -0.0015807695453986526, -0.042015109211206436, -0.012939968146383762, -0.031854111701250076, -0.05450211837887764, -0.019465042278170586, 0.030899224802851677, 0.013148085214197636, -0.006922944448888302, 0.01983230747282505, -0.016698313876986504, -0.009469314478337765, 0.007345298770815134, -0.018926387652754784, 0.019624190405011177, -0.010338508524000645, 0.005585487931966782, 0.006684222258627415, -0.006494468543678522, -0.02404361218214035, 0.052641309797763824, 0.04213753342628479, 0.03719169646501541, 0.029748460277915, -0.002122485311701894, 0.01387037243694067, -0.030385052785277367, 0.001372652710415423, 0.0026733828708529472, -0.005117224995046854, -0.002475977875292301, 0.006488347426056862, -0.01646571233868599, -0.007167787756770849, 0.02130136638879776, -0.012878757901489735, -0.02676137164235115, 0.017041092738509178, -0.030336083844304085, -0.03792622685432434, 0.009255076758563519, -0.019501768052577972, -0.0005673478590324521, 0.012842031195759773, 0.02303975448012352, 0.012805304490029812, -0.03344559296965599, -0.03618783876299858, 0.025194374844431877, -0.0006289412267506123, 0.016747280955314636, -0.036040931940078735, 0.018020465970039368, -0.0050590746104717255, -0.03391079604625702, -0.00853278860449791, -0.0007827334338799119, -0.001492779003456235, -0.013894856907427311, -0.022831637412309647, 0.004134791437536478, 0.001032932661473751, -0.02423948608338833, 0.014421270228922367, -0.03574712201952934, -0.00632307818159461, -0.005775241181254387, -0.021962443366646767, 0.010815952904522419, -0.0029564828146249056, -0.03743654116988182, 0.04434112086892128, -0.0031921444460749626, 0.03300487622618675, 0.009891669265925884, 0.0031263427808880806, 0.012817546725273132, -0.004578569903969765, 0.020285267382860184, -0.018865175545215607, 0.018571363762021065, -0.034082185477018356, -0.007700321730226278, -0.007204513996839523, -0.009199987165629864, -0.027153121307492256, -0.036285776644945145, 0.01165454089641571, 0.0023948734160512686, 0.0060353875160217285, -0.014421270228922367, 0.03714272752404213, 0.0073820254765450954, 0.008691936731338501, -0.018816206604242325, 0.005919086746871471, -0.06424687802791595, -0.0011216884013265371, 0.011825931258499622, 0.01811840385198593, -0.0072351195849478245, -0.005652819760143757, -0.01586584560573101, -0.0014912487240508199, 0.02157069370150566, -0.0052610705606639385, 0.010148754343390465, 0.013686740770936012, -0.004798928741365671, 0.015559791587293148, 0.020150603726506233, 0.019465042278170586, -0.013907099142670631, 0.010118149220943451, 0.036334745585918427, -0.009389740414917469, 0.009193865582346916, -0.001308381324633956, -0.05011942237615585, -0.051906779408454895, -0.013662256300449371, -0.016392258927226067, 0.01462938729673624, -0.021533967927098274, -0.0049886819906532764, -0.008226734586060047, 0.003388019045814872, 0.02203589677810669, 0.024031369015574455, -0.035281918942928314, -0.010320144705474377, -0.007994133979082108, 0.012309497222304344, -0.017812350764870644, 0.016122931614518166, 0.0024208880495280027, -0.011887142434716225, -0.0239089485257864, -0.013417412526905537, 2.929033689724747e-05, -0.007681958377361298, 0.013246022164821625, 0.003969522193074226, -0.007614626549184322, -0.015192526392638683, -0.014690597541630268, -0.022941816598176956, -0.029821913689374924, -0.03146236389875412, -0.025096438825130463, -0.036775462329387665, -0.0028524245135486126, -0.015682213008403778, -0.03271106630563736, 0.002339783823117614, -0.045418430119752884, -0.04358210787177086, -0.015351674519479275, -0.025806482881307602, 0.003632862353697419, 0.049899064004421234, 0.017971498891711235, -0.006228201556950808, -0.014323333278298378, -0.05866445600986481, -0.012805304490029812, -0.010754741728305817, 0.028181463479995728, 0.0047560809180140495, 0.0029993304051458836, 0.0068005225621163845, 0.0252678282558918, 0.028328370302915573, -0.009432587772607803, 0.008263461291790009, 0.02083616517484188, -0.0026335958391427994, 0.04931144043803215, 0.016184141859412193, -0.022868363186717033, -0.018975354731082916, -0.018546879291534424, 0.02195020206272602, 0.014139700680971146, -0.036040931940078735, 0.01085267961025238, 0.0013833646662533283, 0.014200910925865173, -0.0029350591357797384, 0.015302706509828568, -0.01139745581895113, 0.06174948066473007, -0.02239091880619526, 0.012487008236348629, 0.008520546369254589, -0.009328529238700867, -0.002645837841555476, 0.012988937087357044, 0.01768992841243744, -0.01795925572514534, 0.02232970856130123, 0.0049886819906532764, -0.023945674300193787, 0.03562470152974129, -0.01622086763381958, -0.01893862895667553, 0.04333726316690445, -0.02007715031504631, 0.005943571217358112, 0.006684222258627415, -0.0024377210065722466, -0.02083616517484188, 0.01749405451118946, 0.05127018690109253, -0.022892847657203674, 0.001518793636932969, -0.013454139232635498, -0.02225625514984131, 0.039517708122730255, -0.026369623839855194, -0.028793571516871452, 0.020089393481612206, 0.003458411665633321, 0.01611068844795227, -0.025635093450546265, -0.009965122677385807, -0.010197723284363747, -0.027324512600898743, 0.013943825848400593, -0.023358050733804703, 0.010020212270319462, -0.01978333853185177, -0.03626129403710365, 0.00011343130609020591, 0.031119583174586296, 0.012101380154490471, 0.01811840385198593, -0.010803710669279099, 0.008863327093422413, -0.011856536380946636, -0.0053834919817745686, -0.003250294830650091, 0.014127458445727825, 0.0036236809100955725, 0.03366595506668091, 0.04487977549433708, 0.024386392906308174, 0.02401912771165371, 0.011464787647128105, 0.00927956122905016, 0.013454139232635498, -0.01475180871784687, 0.006623011082410812, -0.0396646149456501, -0.03320075199007988, 0.016477953642606735, -0.01448248140513897, -0.03520846739411354, -0.014531449414789677, 0.007075971458107233, 0.016894187778234482, 0.047940317541360855, 0.009206107817590237, -0.009812095202505589, -0.0019327318295836449, 0.035575732588768005, -0.01475180871784687, -0.012670640833675861, -0.02898944728076458, -0.01746957004070282, -0.042749639600515366, -0.05327790230512619, -0.016588132828474045, -0.003978703636676073, -0.00040552171412855387, 0.014041762799024582, 0.0017154333181679249, 0.04654471203684807, -0.0510743111371994, 0.01096285879611969, 0.039762552827596664, -0.013209296390414238, 0.029870882630348206, 0.03143788129091263, -0.003005451522767544]
Name: 3 Sheets, Address: 134 W 3rd St, New York, NY 10012, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.00101579999999, 40.7306537]}, Rating: 4.3, Reviews: ['Always love coming here. Great food and always a very helpful bartender to get things going. Love the specials on weekdays too!', "I bn here a few times already and it never disappoints me!!! Just walked in for a quick beer but Erin's hospitality and energy made me get a Jack too!!! Great service & smile!!! She's awesome; I'm glad they hired her!!!! I'll definitely be back here again!!! Thanks Ms ERIN!!!!!!", 'Perfect NYC stop! Our server was upbeat and so much fun. The nachos were bomb and prices were not bad at all. Music was loud but such a great selection. I would totally come back!!', "A spot I've been to before and it's still cool. Love the drinks and food. The music is a little loud so it's hard to hear people around me. Good place. 8.5/10. They have drink specials so you can save $ that way. Food is $10-$20 so it depends.", 'Nice place for happy hour, variety of cocktails and beers. In front of the legendary Jazz Club Blue Note. It worth it.\nGreat ambient for an afternoon or a night'], Embedding: [-0.030179861932992935, -0.029329383745789528, -0.0685243234038353, -0.015369374305009842, 0.006512240972369909, -0.0015392154455184937, -0.010503417812287807, 0.05579143762588501, -0.019354477524757385, -0.0022082084324210882, 0.004000289831310511, 0.010965107008814812, -0.018224554136395454, 0.0006781052798032761, -0.03217241168022156, 0.02602466382086277, -0.03900054469704628, 0.013668416067957878, 0.01679088920354843, 0.04062860831618309, 0.011390346102416515, 0.04164918139576912, -0.032269611954689026, 0.0021337915677577257, 0.016183404251933098, 0.03280419856309891, -0.023679770529270172, -0.023290980607271194, 0.026826543733477592, -0.034893948584795, 0.015053481794893742, -0.015551620163023472, 0.011080529540777206, -0.009094052948057652, -0.03834446147084236, -0.04026411473751068, 0.05166053771972656, -0.003508226713165641, 0.015126380138099194, -0.005175773520022631, 0.012805786915123463, 0.009069752879440784, 0.07902166992425919, -0.0012954621342942119, -0.01976756751537323, -0.04373893141746521, -0.0601167306303978, 0.038393061608076096, 0.014445996843278408, 0.053653087466955185, -0.05175773426890373, 0.02575737051665783, -0.04264545813202858, 0.012234751135110855, 0.008662737905979156, -0.032828498631715775, 0.02197881229221821, -0.004954041447490454, 0.0637616440653801, -0.006773459259420633, 0.0540904775261879, -0.009191250428557396, 0.047067947685718536, 0.02030215412378311, -0.0433744378387928, -0.008802459575235844, -0.014373098500072956, 0.013449721038341522, 0.01788436248898506, 0.001349376398138702, 0.022233955562114716, 0.03917064145207405, -0.04427351802587509, -0.018285302445292473, 0.011560441926121712, -0.00370869692414999, -0.0013060930650681257, -0.032561205327510834, -0.012902984395623207, -0.03234250843524933, -0.02304798737168312, -0.018649794161319733, -0.06823273003101349, 0.02247695066034794, 0.024384453892707825, -0.029280783608555794, -0.07610573619604111, -0.022756393998861313, -0.029620975255966187, 0.02539287880063057, 0.002700271550565958, 0.003514301497489214, -0.010643139481544495, 0.015150679275393486, 0.022440500557422638, -0.04181927815079689, -0.012131478637456894, 0.004185572732239962, 0.020375052466988564, -0.018018009141087532, 0.04162488132715225, 0.002369191963225603, -0.0008702224586158991, -0.07168325036764145, 0.050542764365673065, -0.025903167203068733, 0.001817899290472269, -0.015685265883803368, -0.01351046934723854, -0.024955490604043007, -0.05384748429059982, -0.030179861932992935, -0.020909639075398445, -0.0034353286027908325, -0.05034836754202843, 0.07727210968732834, 0.04386042803525925, 0.009081902913749218, -0.028624700382351875, 0.03678930178284645, -0.01685163751244545, 0.007520666345953941, -0.016645092517137527, -0.0048325443640351295, -0.011779136955738068, -0.022999387234449387, -0.0374939851462841, -0.005212222691625357, -0.005039089359343052, -0.0362304151058197, 0.02318163402378559, -0.018321752548217773, -0.018601195886731148, -0.004735346883535385, -0.0054248422384262085, -0.0065608397126197815, -0.01784791424870491, -0.06818412989377975, -0.012392696924507618, -0.005543301813304424, 0.05336149409413338, 0.02804151363670826, 0.020484399050474167, -0.03423786163330078, 0.0021337915677577257, -0.005713397637009621, -0.04184357821941376, 0.021602172404527664, -0.02195451408624649, 0.004018514417111874, 0.020277854055166245, 0.03892764821648598, -0.03788277506828308, -0.05093155428767204, -0.017361925914883614, -0.04483240470290184, -0.019585320726037025, 0.027409730479121208, -0.01821240410208702, 0.02731253206729889, -0.023303130641579628, 0.04495390132069588, -0.03353317826986313, -0.006870657205581665, 0.0024284219834953547, 0.03715379163622856, -0.07975064963102341, -0.00950106792151928, -0.03892764821648598, 0.022404052317142487, 0.018236704170703888, 0.024226507171988487, 0.07124585658311844, 0.02536858059465885, 0.031735025346279144, -0.04417632147669792, 0.032099515199661255, 0.0017784127267077565, -0.0006029289797879755, -0.03953513503074646, 0.013729164376854897, 0.002724570920690894, 0.05545124411582947, -0.007387019228190184, -0.05929055064916611, 0.0409201979637146, -0.061040107160806656, 0.024445202201604843, 0.015393673442304134, 0.033921971917152405, 0.042596857994794846, 0.05652041733264923, -0.009197325445711613, -0.0026167421601712704, -0.028697598725557327, -0.02383771724998951, 0.022100308910012245, 0.025344280526041985, -0.018054459244012833, 0.05627742409706116, -0.008444043807685375, 0.032634101808071136, 0.05462506413459778, -0.004024588968604803, 0.025878867134451866, -0.009033303707838058, 0.005227409768849611, -0.00047839456237852573, 0.035574331879615784, -0.039316438138484955, 0.05078575760126114, -0.0004890255513601005, -0.022719943895936012, -0.004811282269656658, -0.0023783042561262846, -0.019318027421832085, -0.04237816482782364, 0.0831039696931839, -0.01854044757783413, 0.005746809300035238, -0.03525843843817711, 0.002808100078254938, 0.04288845136761665, -0.04847731441259384, 0.036473408341407776, 0.04121179133653641, -0.024420902132987976, -0.015940411016345024, 0.022792842239141464, -0.002645597793161869, -0.014288051053881645, 0.02821161039173603, -0.0010479118209332228, 0.014749739319086075, -0.020277854055166245, 0.022306853905320168, -0.05034836754202843, -0.0324397087097168, -0.022161059081554413, 0.0012582535855472088, 0.01406935602426529, -0.0008626289200037718, 0.01874699257314205, 0.049279194325208664, 0.019609620794653893, -0.01920868083834648, -0.010175376199185848, 0.011110903695225716, 0.005136286839842796, 0.03691079840064049, 0.031273335218429565, -0.02420220896601677, 0.05336149409413338, -0.018929237499833107, 0.0003276623028796166, -0.011815586127340794, 0.03644910827279091, 0.004109636880457401, -0.00880853459239006, 0.01811520755290985, -0.004136973991990089, 0.03506404161453247, 0.01734977588057518, -0.03452945500612259, -0.03348458185791969, -0.015673117712140083, 0.011517918668687344, 0.030422857031226158, 0.003143735695630312, 0.01608620584011078, -0.07007948309183121, -0.029815370216965675, 0.012672140263020992, 0.021711518988013268, 0.016645092517137527, -0.021662920713424683, -0.02337602898478508, -0.03217241168022156, 0.006220648065209389, -0.020678794011473656, -0.0277499221265316, -0.04682495445013046, 0.016268452629446983, 0.009823034517467022, 0.0217236690223217, -0.03214811533689499, -0.014737589284777641, 0.0029493405018001795, 0.03275559842586517, -0.003155885264277458, -0.04930349439382553, -0.00632392056286335, 0.012502044439315796, -0.028454603627324104, -0.0019712892826646566, -0.022719943895936012, 0.058026980608701706, -0.040482811629772186, 0.011129127815365791, 0.0029736398719251156, 0.016960985958576202, 0.04893900454044342, -0.009580040350556374, 0.00012349034659564495, -0.0022537698969244957, 0.07537675648927689, 0.013133828528225422, 0.011627266183495522, 0.01259924191981554, 0.02913498692214489, -0.034553755074739456, 0.01854044757783413, 0.018953535705804825, 0.004431603942066431, -0.01761706918478012, -0.02364332228899002, 0.058950357139110565, 0.00963471457362175, -0.03224531188607216, -0.008103852160274982, -0.03635191172361374, -0.045342691242694855, 0.02251339890062809, 0.022404052317142487, 0.03919494152069092, 0.02307228557765484, 0.03341168165206909, 0.0029538965318351984, 0.019050734117627144, -0.029062088578939438, 0.033460281789302826, -0.07241223007440567, 0.011317448690533638, 0.05049416422843933, -0.014931985177099705, -0.015648817643523216, -0.021274128928780556, -0.0349668450653553, 0.041600581258535385, 0.025004088878631592, 0.04692215099930763, -0.056034430861473083, -0.02416575886309147, 0.0006940517923794687, 0.04417632147669792, -0.058124177157878876, 0.018394650891423225, 0.006257097236812115, -0.012854386121034622, 0.018929237499833107, -0.03725098818540573, -0.039122045040130615, -0.03394626826047897, -0.027069538831710815, 0.03523413836956024, 0.0553540475666523, -0.02420220896601677, -0.0099323820322752, -0.035112641751766205, 0.024408753961324692, 0.0004085337568540126, 0.0048689935356378555, 0.023922765627503395, -0.022756393998861313, 0.033751875162124634, 0.010126776993274689, -0.025149885565042496, -0.01694883592426777, -0.003231820883229375, -0.007660387549549341, -0.021747969090938568, 0.020204955711960793, -0.007593564223498106, -0.0007498644990846515, -0.047894127666950226, 0.015150679275393486, 0.013947859406471252, -0.0036084617022424936, 0.031103240326046944, 0.06147749722003937, -0.020180657505989075, -0.014215152710676193, 0.041236091405153275, -0.013036631047725677, 0.018455399200320244, -0.00284303049556911, -0.007708986289799213, -0.03606031835079193, -0.009744062088429928, 0.012963732704520226, -0.0049996026791632175, -0.07323841005563736, -0.05452786758542061, 0.027992915362119675, 0.0090211546048522, 0.0038787927478551865, 0.018601195886731148, 0.06385883688926697, -0.04198937490582466, 0.0047201598063111305, 0.04512399807572365, -0.02692374214529991, -0.024384453892707825, -0.03936503827571869, 0.03943793475627899, -0.012745038606226444, -0.007806184235960245, -0.0016113542951643467, -0.0384659580886364, -0.020703094080090523, 0.02251339890062809, -0.020654495805501938, 0.030009767040610313, 0.01967036910355091, 0.0004343518812675029, 0.011050154455006123, 0.030471455305814743, -0.02397136390209198, -0.00865666288882494, 0.03715379163622856, 0.009871633723378181, -0.02026570402085781, -0.013546918518841267, -0.006074851378798485, -0.0373481884598732, -0.016535745933651924, 0.01556376926600933, -0.009640789590775967, -0.0627896636724472, -0.007034678012132645, -0.004386042710393667, -0.014579643495380878, -0.02009560912847519, 0.01402075681835413, -0.030471455305814743, -0.0024572773836553097, -0.011098753660917282, -0.000734677363652736, 0.005676948931068182, -0.007958055473864079, -0.04208657145500183, -0.010959031991660595, 0.00044308448559604585, 0.019147932529449463, -0.029450880363583565, 0.005904755555093288, 0.005549376830458641, 0.0011777618201449513, -0.011736612766981125, -0.016645092517137527, -0.0022765505127608776, -0.04174637794494629, -0.015272176824510098, -0.009865558706223965, -0.04194077476859093, 0.057929784059524536, 0.027701321989297867, -0.015223577618598938, 0.0048872181214392185, -0.014774038456380367, -0.03280419856309891, -0.040482811629772186, -0.026996640488505363, 0.0180423092097044, -0.011542217805981636, -0.01255064271390438, -0.03887904807925224, 0.036303311586380005, 0.055305447429418564, -0.0013751945225521922, -0.02483399212360382, 0.006639812607318163, 0.043981924653053284, -0.014555344358086586, -0.02969387359917164, -0.02151712402701378, 0.036765001714229584, 0.025271382182836533, 0.04036131501197815, -0.012307649478316307, 0.005573676433414221, -0.011748762801289558, -0.045342691242694855, 0.015393673442304134, -0.02222180739045143, -0.0709056630730629, 0.027871418744325638, 0.031273335218429565, 0.008450118824839592, -0.0372752882540226, -0.038538858294487, 0.008182824589312077, 0.008559465408325195, -0.0114207211881876, -0.03917064145207405, 0.007702911738306284, -0.007405243813991547, -0.036667805165052414, 0.04300994798541069, 0.012720738537609577, -0.018090907484292984, -0.023655472323298454, 0.020107759162783623, 0.05326429754495621, -0.005409655161201954, 0.022865740582346916, -0.06317845731973648, -0.019706817343831062, 0.03659490495920181, -0.0039911773055791855, 0.010959031991660595, 0.039122045040130615, 0.012854386121034622, -0.0065790642984211445, 0.0051271747797727585, -0.005300308112055063, 0.019925512373447418, 0.007241223007440567, -0.048185721039772034, 0.005197035614401102, -0.001271922024898231, -0.0114753944799304, 0.03248830512166023, -0.013911410234868526, 0.047626834362745285, -0.007976279594004154, -0.017787165939807892, -0.03397056832909584, -0.006348219700157642, -0.029256485402584076, 0.0013463390059769154, -0.023424627259373665, -0.029620975255966187, 0.0023843792732805014, 0.00041726636118255556, -0.012216526083648205, -0.022027410566806793, 0.02141992561519146, 0.028065813705325127, -0.077077716588974, -0.008595914579927921, 0.02222180739045143, -0.00047004164662212133, -0.015004883520305157, 0.013546918518841267, 0.0022902190685272217, -0.02069094404578209, 0.015260026790201664, -0.012842236086726189, -0.009488917887210846, -0.02536858059465885, -0.019257279112935066, 0.016183404251933098, -0.014239451847970486, 0.021347027271986008, -0.001866498147137463, 0.017762865871191025, 0.013461871072649956, 0.021626470610499382, 0.02214890904724598, -0.01648714765906334, -0.0210918840020895, -0.026705047115683556, 0.011779136955738068, 0.0019819203298538923, 0.017459122464060783, -0.024262957274913788, 0.012161852791905403, -0.029280783608555794, 0.007071127183735371, 0.017167530953884125, 0.024420902132987976, 0.025004088878631592, 0.029450880363583565, 0.013789912685751915, 0.00024223470245487988, 0.035744424909353256, 0.015673117712140083, -0.013984307646751404, 0.0271181371062994, -0.042499661445617676, -0.05627742409706116, 0.009142651222646236, 0.027628423646092415, 0.0336303785443306, 0.00883890874683857, -0.005555451847612858, 0.013352523557841778, 0.015782464295625687, -0.008535166271030903, 0.02721533551812172, 0.013923559337854385, -0.01837035082280636, 0.025976065546274185, -0.012878685258328915, -0.0013524137903004885, -0.054479267448186874, -0.004987453110516071, -0.005509890150278807, 0.011129127815365791, -0.018418949097394943, -0.005415730178356171, -0.04373893141746521, 0.01761706918478012, -0.019852614030241966, -0.007052902597934008, 0.02036290243268013, -0.007721136324107647, 0.0019469899125397205, -0.008978630416095257, 0.029985466971993446, -0.0006230519502423704, 0.008201049640774727, 0.011791286990046501, -0.04400622472167015, 0.031735025346279144, -0.01830960251390934, -0.0099323820322752, 0.002549918834120035, -0.014555344358086586, -0.07041967660188675, 7.730011020612437e-06, 0.0507371611893177, -0.017799314111471176, 0.022428352385759354, 0.030349958688020706, 0.013000181876122952, -0.03508834168314934, -0.011633340269327164, -0.0009590671979822218, 0.0010122221428900957, 0.024955490604043007, 0.024117160588502884, -0.019573170691728592, -0.010624915361404419, 0.004018514417111874, -0.028163012117147446, -0.031467732042074203, -0.028430305421352386, -0.015126380138099194, 0.01934232749044895, -0.003875755239278078, -0.007332345936447382, 0.021444225683808327, -0.02583026885986328, 0.013364673592150211, -0.015369374305009842, 0.00016610922466497868, -0.016547895967960358, -0.009677238762378693, 0.006384668871760368, -0.045707181096076965, 0.0008800941286608577, -0.015332925133407116, 0.0030753936152905226, 0.03156492859125137, -0.014239451847970486, -0.02138347737491131, -0.00758141465485096, 0.03827156499028206, -0.02536858059465885, 0.04179497808218002, 0.031273335218429565, 0.020375052466988564, -0.008085627108812332, 0.029062088578939438, 0.010813235305249691, -0.009780511260032654, -0.01734977588057518, -0.04162488132715225, 0.055208250880241394, 0.0240685623139143, 0.0204965490847826, -0.003359392751008272, 0.03552573174238205, 0.011256699450314045, 0.0061659743078053, -0.009671163745224476, 0.007939830422401428, -0.02612186223268509, -0.012696439400315285, -0.01529647596180439, -0.005834894720464945, -0.03897624835371971, 0.007818333804607391, -0.02042365074157715, 0.013133828528225422, 0.025976065546274185, 0.006354294717311859, 0.0069374805316329, 0.02519848383963108, -0.00981696043163538, 0.04364173114299774, -0.021504973992705345, 0.012277274392545223, -0.015636667609214783, -0.023351728916168213, -0.010284723713994026, 0.021577872335910797, -0.09933596849441528, -0.024056412279605865, -0.0028551802970469, 0.018977835774421692, -0.013680565170943737, -0.015174979344010353, 0.021395627409219742, 0.005029976833611727, -0.012805786915123463, 0.02702093869447708, -0.05360449105501175, -0.032464005053043365, -0.030908843502402306, 0.016730140894651413, -0.023327428847551346, 0.0056647988967597485, -0.01698528416454792, -0.003985102754086256, -0.009203399531543255, -0.0054066176526248455, 0.011724463663995266, -0.0041764602065086365, 0.01406935602426529, -0.02182086557149887, -0.0312490351498127, 0.008085627108812332, -0.012720738537609577, 0.04135758802294731, -0.005242596846073866, -0.027361130341887474, 0.01900213584303856, 0.005157548934221268, -0.015867512673139572, 0.01896568574011326, -0.0072837467305362225, 0.012307649478316307, 0.02483399212360382, -0.0192694291472435, -0.01913578249514103, -0.0696420967578888, -0.0313219353556633, -0.018613344058394432, -0.0578811839222908, 0.006035365164279938, -0.0030860246624797583, 0.017131080850958824, -0.012052505277097225, 0.014810487627983093, -0.03705659508705139, -0.06293546408414841, 0.030641550198197365, -0.035015445202589035, 0.009227699600160122, 0.004419454373419285, 0.01685163751244545, 0.02122553065419197, 0.0011678901500999928, 0.04595017805695534, -0.08081982284784317, 0.008298247121274471, 0.0613803006708622, 0.008116001263260841, 0.03955943137407303, -0.028333107009530067, -0.009118352085351944, 0.0457557812333107, 0.020144207403063774, 0.03518553823232651, -0.02410501055419445, -0.019694669172167778, -0.007964130491018295, 0.01917223073542118, 0.03239110857248306, 0.005585826002061367, -0.004252396058291197, 0.02794431708753109, -0.024979788810014725, -0.017131080850958824, -0.0061538247391581535, 0.01203428115695715, 0.018090907484292984, 0.03810146823525429, -0.014445996843278408, -0.02966957539319992, 0.027628423646092415, 0.005193998105823994, -0.011596891097724438, 0.010151077061891556, 0.0068767317570745945, -0.03460235521197319, 0.005597975570708513, -0.018892787396907806, -0.0373481884598732, 0.021031135693192482, -0.01511423010379076, -0.004419454373419285, -0.012174001894891262, 0.003678322536870837, -0.05117454752326012, 0.007593564223498106, 0.038028571754693985, -0.03435935825109482, -0.05326429754495621, 0.03698369488120079, 0.009567891247570515, 0.03115183860063553, 0.008049177937209606, 0.026243358850479126, 0.04495390132069588, 0.017896512523293495, -0.018491847440600395, -0.008456192910671234, 0.0027959502767771482, 0.020071309059858322, 0.024639597162604332, 0.0409930981695652, 0.005373205989599228, 0.0007160730892792344, 0.0032378959003835917, -0.01279363688081503, 0.013073080219328403, 0.019390925765037537, 0.01006602868437767, 0.025611573830246925, 0.014737589284777641, 0.03581732511520386, 0.04502679780125618, -0.005865268874913454, 0.002197577618062496, 0.011621191166341305, -0.00480217020958662, -0.00998098123818636, 0.03759118169546127, -0.009744062088429928, -0.002967564854770899, -0.02470034547150135, 0.0240685623139143, -0.008535166271030903, 0.014579643495380878, 0.014275901019573212, -0.04281555488705635, -0.014300200156867504, -0.005115024745464325, -0.05734659731388092, -0.037129491567611694, -0.031273335218429565, -0.011080529540777206, 0.019791865721344948, -0.011754837818443775, 0.007083276752382517, -0.02456669881939888, 0.017106782644987106, -0.04648476466536522, 0.02483399212360382, 0.003736033570021391, 0.039851024746894836, -0.005601013079285622, 0.002675972180441022, 0.021966662257909775, -0.005558488890528679, -0.011736612766981125, -0.033192988485097885, 0.017872212454676628, 0.028090113773941994, 0.00213531032204628, -0.0192694291472435, 0.010017430409789085, 0.004838619381189346, -0.015903960913419724, 0.02009560912847519, 0.003095136722549796, -0.041673481464385986, -0.012574942782521248, 0.009610415436327457, 0.01784791424870491, 0.008620214648544788, 0.04300994798541069, 0.012046430259943008, 0.0005266136722639203, 0.030301358550786972, -0.026705047115683556, 0.022343304008245468, 0.006639812607318163, -0.012526343576610088, 0.018236704170703888, 0.006238872651010752, 0.03086024522781372, -0.0032014467287808657, 0.04910909757018089, 0.006244947202503681, 0.020715244114398956, -0.012562792748212814, -0.024639597162604332, 0.013364673592150211, -0.012902984395623207, -0.018601195886731148, 0.008292172104120255, 0.029888268560171127, 0.03715379163622856, -0.0252956822514534, 0.015223577618598938, 0.013413271866738796, 0.023728370666503906, -0.0135590685531497, -0.030471455305814743, 0.009409944526851177, 0.005224372260272503, -0.007702911738306284, -0.016863787546753883, 0.008085627108812332, -0.03260980173945427, 0.02095823734998703, -0.03992392495274544, 0.004972266033291817, -0.026802245527505875, 0.0102482745423913, 0.02086104080080986, -0.007308046333491802, -0.006293545942753553, -0.021942364051938057, -0.013352523557841778, 0.02149282395839691, 0.0009788104798644781, -0.008049177937209606, 0.016839487478137016, -0.016608644276857376, 0.011724463663995266, -0.015126380138099194, -0.009877708740532398, 0.005731622222810984, -0.011949232779443264, 0.0032257460989058018, -0.06935050338506699, -0.0271181371062994, -0.01534507516771555, 0.01698528416454792, 0.02433585561811924, 0.04995957762002945, -0.0003088682424277067, -0.010400145314633846, -0.028649000450968742, 0.023303130641579628, -0.0033685050439089537, -0.029086388647556305, -0.014445996843278408, 0.021614322438836098, 0.007435618434101343, 0.008650588802993298, -0.009987056255340576, 0.017957260832190514, -0.012356247752904892, 0.02840600535273552, -0.017665667459368706, -0.01671799086034298, -0.010873984545469284, -0.001373675768263638, -0.03105464018881321, 0.007994504645466805, 0.03732388839125633, 0.011621191166341305, 0.03919494152069092, -0.06696916371583939, 0.031200436875224113, 0.019281579181551933, 0.002651672577485442, -0.0032591577619314194, -0.015017032623291016, -0.014798338524997234, 0.00533979432657361, -0.016171254217624664, 0.055742837488651276, -0.0025514375884085894, 0.014117955230176449, 0.008322546258568764, 0.016960985958576202, -0.004443753976374865, 0.0210918840020895, 0.007563190069049597, 0.0006188754923641682, 0.013486170209944248, 0.0015733864856883883, -0.0507371611893177, 0.02731253206729889, 0.04009401798248291, 0.017726415768265724, -0.00694355508312583, 0.011493618600070477, 0.04111459478735924, 0.02658355049788952, 0.025149885565042496, 0.032561205327510834, 0.01754417084157467, -0.020435800775885582, 0.0008603508467786014, 0.021808717399835587, -0.050445567816495895, -0.0017510759644210339, 0.06526820361614227, -0.008389369584619999, 0.03691079840064049, 0.024445202201604843, -0.01817595586180687, 0.04082300141453743, -0.01761706918478012, -0.022100308910012245, -0.020715244114398956, -0.005585826002061367, 0.047262344509363174, -0.00461992435157299, -0.0156974159181118, -0.01943952403962612, 0.0002395769552094862, -0.03285279497504234, 0.018491847440600395, 0.007733285892754793, 0.0050725010223686695, -0.00975013617426157, 0.0031163988169282675, 0.03883045166730881, -0.03202661871910095, 0.0021854278165847063, 0.013522619381546974, 0.03878185153007507, 0.03222101181745529, 0.006144712213426828, 0.007472067140042782, -0.029912568628787994, 0.00852301623672247, -0.01688808761537075, 0.02318163402378559, 0.010764637030661106, 0.007745435461401939, 0.01579461432993412, 0.030082665383815765, 0.02702093869447708, 0.00803095381706953, 0.005704285576939583, 0.01337682269513607, -0.02165077067911625, -0.004865956027060747, -0.0019667332526296377, -0.06604578346014023, -0.0009104683413170278, -0.005115024745464325, -0.01999841071665287, 0.04313144460320473, 0.028551802039146423, 0.007204773835837841, 0.007399169262498617, -0.012502044439315796, 0.061040107160806656, -0.0168151892721653, -0.006475791800767183, 0.01980401575565338, -0.03715379163622856, 0.020411500707268715, 0.011329597793519497, -0.004972266033291817, 0.0040458510629832745, 0.011785211972892284, -0.016402099281549454, -0.0024998013395816088, -0.013498320244252682, 0.0006655759061686695, -0.046533361077308655, 0.012107178568840027, 0.007241223007440567, 0.007690762169659138, -0.0192329790443182, -0.03486964851617813, 0.0027701323851943016, 0.03834446147084236, 0.02976677194237709, -0.01511423010379076, -0.001925727934576571, -0.013960008509457111, -0.0027321644593030214, -0.012009981088340282, -0.004674598108977079, -0.020666643977165222, 0.007144025526940823, -0.025951765477657318, -0.0052760085090994835, -0.035039741545915604, -0.006269246805459261, -0.029377982020378113, 0.022829292342066765, 0.016960985958576202, -0.0709056630730629, -0.0028597363270819187, 0.012975882738828659, -0.01438524853438139, -0.016608644276857376, -0.0007168324664235115, 0.0037178092170506716, 0.005358018912374973, -0.0015316219069063663, -0.026194758713245392, 0.0306901503354311, 0.02685084380209446, 0.025951765477657318, 0.0037178092170506716, -0.07027388364076614, 0.01767781749367714, -0.031273335218429565, 0.0123319486156106, 0.00852301623672247, 0.055208250880241394, -0.026972340419888496, 0.02665644884109497, 7.565088162664324e-05, 0.03897624835371971, 0.013996457681059837, 0.02191806398332119, -0.0012681252555921674, 0.0010289279744029045, 0.006126487627625465, 0.00804310292005539, 0.0024329780135303736, -0.017131080850958824, 0.004003327339887619, -0.0013546919217333198, -0.019779715687036514, 0.03013126365840435, 0.03372757509350777, -0.005734659731388092, 0.007915531285107136, 0.016863787546753883, -0.009063678793609142, -0.012040355242788792, 0.03421356528997421, 0.008784235455095768, -0.01433664932847023, -0.006408968474715948, -0.01900213584303856, 0.011396421119570732, 0.017471272498369217, 0.01425160188227892, -0.004401229787617922, 0.013862811028957367, -0.001866498147137463, 0.00852301623672247, 0.02357042394578457, -0.01259924191981554, 0.0180058591067791, 0.012854386121034622, -0.018418949097394943, 0.004951003938913345, 0.07260662317276001, 0.01152399368584156, 0.004355668555945158, 0.003286494640633464, -0.009227699600160122, 0.028235910460352898, -0.005822745151817799, 0.016839487478137016, 0.05083435773849487, -0.01291513442993164, 0.007314121350646019, -0.0026000363286584616, -0.028090113773941994, -0.0204600989818573, 0.04723804444074631, 0.012757187709212303, -0.023533973842859268, 0.004762683529406786, 0.021298428997397423, 0.04313144460320473, 0.025052687153220177, -0.003808931913226843, 0.005789333488792181, 0.031467732042074203, -0.0049661910161376, -0.015393673442304134, -0.01658434420824051, 0.01329177524894476, 0.020435800775885582, 0.00963471457362175, 0.023400327190756798, 0.006992153823375702, 0.00677953427657485, -0.011408571153879166, -0.015065631829202175, 0.018564745783805847, -0.009258073754608631, -0.00504820141941309, -0.025247082114219666, -0.007617863826453686, -0.03542853519320488, -0.004598662722855806, -0.01279363688081503, 0.010290798731148243, 0.04009401798248291, 0.01255064271390438, 0.016596494242548943, -0.015102081000804901, -0.02913498692214489, -0.008529091253876686, 0.008601989597082138, 7.0833716563356575e-06, -0.00046092935372143984, 0.003383692353963852, -0.004559176042675972, -0.02519848383963108, -0.0017738565802574158, -0.030835945159196854, -0.019111482426524162, -0.022100308910012245, -0.01731332577764988, 0.010387996211647987, 0.019548872485756874, 0.011827736161649227, -0.006077888887375593, 0.01511423010379076, 0.0005330682033672929, -0.020314304158091545, 0.005716435145586729, -0.001079045468941331, 0.027822820469737053, 0.01973111741244793, -0.02420220896601677, -0.004267583135515451, 0.03589022159576416, 0.0306901503354311, -0.013158128596842289, 0.0017890437738969922, 0.017665667459368706, -0.02877049706876278, -0.020107759162783623, 0.016365649178624153, -0.016232002526521683, -0.0006238113273866475, -0.014883385971188545, -0.011894559487700462, 0.0039334665052592754, -0.01145716942846775, -0.007951980456709862, -0.012477745302021503, 0.009434244595468044, -0.01337682269513607, 0.015065631829202175, 0.010211825370788574, 0.06016533076763153, 0.01694883592426777, -0.027725622057914734, -0.004422491881996393, -0.030544353649020195, -0.018686242401599884, 0.019779715687036514, -0.0001426640956196934, -0.01777501590549946, -0.029110688716173172, 0.00584400724619627, -0.013789912685751915, -0.030568651854991913, -0.012319798581302166, -0.03423786163330078, 0.021480673924088478, 0.004547026474028826, 0.016742290928959846, -0.0036692102439701557, 0.028624700382351875, 0.015575919300317764, -0.04111459478735924, -0.04143048822879791, -0.02237975224852562, -0.031273335218429565, -0.01748342253267765, 0.008128151297569275, 0.014713290147483349, 0.0052760085090994835, -0.015077780932188034, 0.04181927815079689, 0.02821161039173603, 0.037202391773462296, 0.04539129137992859, 0.01259924191981554, 0.0034171040169894695, 0.02767702378332615, -0.0025301757268607616, -0.013145978562533855, 0.018261004239320755, 0.008917882107198238, 0.0003823359729722142, 0.014628242701292038, 0.011900633573532104, -0.011979606933891773, 0.0070043038576841354, -0.02237975224852562, -0.015515170991420746, -0.007836558856070042, -0.020447950810194016, 0.021930214017629623, -0.003966878168284893, -0.018989985808730125, -0.0025954802986234426, 0.02222180739045143, 0.02115263231098652, -0.010321172885596752, 0.019184380769729614, 0.020010560750961304, 0.007678612135350704, -0.004367818124592304, -0.03448085859417915, -0.004410342313349247, -0.014190852642059326, -0.010017430409789085, 0.006071813870221376, 0.0027762071695178747, 0.0022507323883473873, 0.007806184235960245, -0.04439501464366913, 0.03625471517443657, 0.007593564223498106, -0.0069678546860814095, -0.0001361146423732862, 0.018917087465524673, -0.006226722616702318, -0.006846357602626085, -0.01342542190104723, -0.045707181096076965, -0.0004958597710356116, 0.022003112360835075, 0.03076304867863655, 0.019718967378139496, -0.005354981403797865, 0.015964709222316742, 0.0038605681620538235, 0.0036449108738452196, 0.03435935825109482, 0.027725622057914734, -0.02483399212360382, 0.018018009141087532, 0.0019090221030637622, 0.01725257746875286, -0.012386621907353401, 0.004383005201816559, -0.029183587059378624, -0.05982513725757599, -0.004452866036444902, -0.009434244595468044, 0.0252956822514534, -0.0034353286027908325, 0.00322878360748291, 0.006402893457561731, 0.01648714765906334, -0.008437968790531158, 0.010242199525237083, -0.027361130341887474, 0.012720738537609577, 0.008267872966825962, 0.041041698306798935, 0.0005824263789691031, 0.012143627740442753, 0.0037603331729769707, -0.006390743888914585, 0.01117772702127695, 0.027798520401120186, -0.01920868083834648, 0.02731253206729889, -0.013644115999341011, -0.027142437174916267, 0.031735025346279144, 0.006029290147125721, -0.04519689455628395, 0.01920868083834648, 0.028964892029762268, -0.03115183860063553, -0.012830086052417755, -0.03103034198284149, -0.028794795274734497, -0.021772267296910286, -0.017033884301781654, -0.004944928921759129, 0.007447768002748489, -0.02536858059465885, -0.01561236847192049, 0.009810885414481163, 0.03115183860063553, -0.0006515278364531696, -0.016037607565522194, -0.020873188972473145, -0.01702173426747322, 0.0038301937747746706, 0.020508699119091034, -0.00888750795274973, 0.009051528759300709, -0.004325294401496649, -0.0049054427072405815, 0.012423071078956127, -0.012289424426853657, 0.029013490304350853, 0.022671345621347427, 0.02884339541196823, 0.0038180442061275244, 0.020022710785269737, -0.02318163402378559, -0.019706817343831062, -0.032925695180892944, 4.648091817216482e-06, 0.047067947685718536, -0.0019424337660893798, -0.0069374805316329, -0.035015445202589035, 0.02042365074157715, -0.021626470610499382, -0.03129763528704643, -0.051903530955314636, -0.07503656297922134, -0.026875142008066177, -0.015150679275393486, 0.03652200847864151, 0.01137212198227644, -0.002519544679671526, -0.0039365035481750965, 0.015964709222316742, -0.0141544034704566, -0.002299331361427903, -0.02702093869447708, 0.04276695474982262, -0.0234367772936821, 0.010242199525237083, 0.00801272876560688, 0.012659990228712559, -0.01438524853438139, 0.016341350972652435, 0.006001953035593033, -0.0001825303043005988, 0.020010560750961304, 0.03166212514042854, 0.010236124508082867, -0.02996116690337658, -0.013085230253636837, -0.008948256261646748, 0.011202026158571243, 0.03975382819771767, -0.01183381024748087, -0.016511445865035057, -0.009160876274108887, 0.01857689581811428, -0.022428352385759354, -0.015551620163023472, 0.011700163595378399, 0.016875937581062317, 0.008207124657928944, -0.016997434198856354, -0.005567601416260004, 0.002982752164825797, 0.04923059791326523, -0.01171838864684105, -0.03669210150837898, -0.019876914098858833, -0.0014412584714591503, 0.021140482276678085, 0.025052687153220177, 0.03844166174530983, -0.02884339541196823, -0.014421697705984116, 0.04531839117407799, -0.0023889353033155203, -0.022598447278141975, -0.0003760712861549109, 0.010090328752994537, -0.027263933792710304, 0.02009560912847519, 0.004711047280579805, 0.002578774467110634, -0.007435618434101343, -0.02519848383963108, -0.01038192119449377, 0.024408753961324692, -0.01685163751244545, -0.021747969090938568, -0.00053382758051157, 0.019147932529449463, 0.020703094080090523, 0.005740734748542309, -0.008280023001134396, -0.01225297525525093, -0.017422674223780632, -0.014591793529689312, -0.010952956974506378, 0.014081506058573723, 0.02197881229221821, -0.007538890466094017, 0.006500090938061476, -0.015466571785509586, -0.02211245894432068, 0.013850660994648933, -0.0009264148538932204, 0.005643536802381277, -0.014676840975880623, -0.009324897080659866, 0.010734262876212597, 0.0006203941884450614, 0.01225297525525093, 0.022987237200140953, 0.02502838894724846, 0.015211428515613079, -0.01137212198227644, -0.01874699257314205, -0.039680927991867065, -0.02191806398332119, -0.014640391804277897, 0.030811646953225136, -0.034942544996738434, -0.01583106257021427, 0.015551620163023472, 0.031370531767606735, -0.04830721765756607, 0.012696439400315285, -0.00971976201981306, -0.013352523557841778, 0.061428897082805634, -0.02539287880063057, 0.00888750795274973, 0.004197722300887108, -0.03649770841002464, -0.02377696894109249, 0.010078178718686104, -0.007575339637696743, -0.0277499221265316, -0.016183404251933098, -0.05078575760126114, -0.014749739319086075, -0.018564745783805847, 0.012143627740442753, 0.0004932020092383027, 0.02923218533396721, -0.03260980173945427, -0.019524572417140007, 0.009695462882518768, 0.036667805165052414, 0.005810595583170652, -0.028430305421352386, 0.0306901503354311, -0.003186259651556611]
Name: Analogue, Address: 19 W 8th St, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.9974458, 40.7328453]}, Rating: 4.3, Reviews: ['Lovely spot to grab a drink and hang out with friends or enjoy a date night. The ambiance is intimate with dim-lit rooms and comfortable seating. They have a variety of drinks and cocktails that are priced around $20-25. I enjoyed the Bird in Hand and I am willing to to come back to try the other drinks on the menu since they all looked unique. They have a limited selection for food but the mediterranean platter that my friend ordered seemed like a good choice. The service was fantastic, I have never met a more friendly host before!\n\n(I could not take as many pictures here since the place was just dark)\n5/5 stars!', 'Visiting NY, found this quaint and cozy place. This is exactly what I wanted and expected from a late night NY bar. Me and my lovely lady had the most wonderful evening here. We didnt order food, but had drinks and they were steller! The ambiance and atmosphere are what really blew me away. If I ever owned a bar, this is definitely the vibe I would go far. The furniture is comfy and cozy, and everyone has their little nook, the decor is awesome with pics of musical legends, the people are all intellectuals from all walks of life, and just everyone enjoying an evening with whomever they came/meeting up with. Loved this place and will indeed be back the next time im in NY.', "We came here to a drink before we went to dinner and it was such a great experience. They have so many different types of cocktails and even mocktails. I love the atmosphere here, it's dark so feels really intimate. They have comfortable couch seating, it feels a bit shared but we all seem to have our own privacy. Service was excellent, everyone was really friendly and happy to help us pick the drink that suits our tastes. The drinks were excellent and totally met expectations.\n\nInsta: @TheShahLALand", 'I take all my dates here. It’s a wonderful atmosphere and the food and drinks are incredible. The staff is courteous and attentive and I feel taken care of whenever I’m in. The outdoor space is amazing as well.', 'Excellent bartenders and vibe. Layered cocktails and excellent whiskey program.  Coming back, and often.'], Embedding: [-0.053622785955667496, -0.037691742181777954, -0.06573440134525299, 0.01634565182030201, 0.023821180686354637, -0.02369554154574871, -0.0002544192539062351, 0.023532211780548096, -0.011495981365442276, 0.0046015335246920586, 0.023821180686354637, -0.01447362918406725, -0.047868512570858, -0.04050605744123459, 0.0019207083387300372, 0.03706354647874832, -0.0477680005133152, 0.038646601140499115, 0.026132941246032715, 0.03339488431811333, 0.019273044541478157, 0.034475378692150116, -0.026409346610307693, -0.0043785241432487965, -0.013594155199825764, 0.020554563030600548, -0.043571654707193375, -0.044275231659412384, 0.007406427524983883, -0.01998918689787388, 0.047692619264125824, -0.01061650738120079, 0.009906645864248276, -0.02771599404513836, -0.03176157549023628, -0.007387581281363964, 0.03208823502063751, -0.020956609398126602, 0.008229363709688187, 0.0013561174273490906, 0.02184864692389965, 0.03331949934363365, 0.05018027126789093, -0.034525636583566666, -0.005936449393630028, 0.0030655949376523495, -0.010007157921791077, 0.020717894658446312, 0.014586703851819038, 0.030907228589057922, -0.059301674365997314, 0.025039881467819214, -0.0495520755648613, 0.03188721463084221, -0.010139078833162785, -0.01113162748515606, -0.010861503891646862, -0.011615338735282421, 0.05719093605875969, 0.03583228215575218, 0.041862960904836655, 0.009410372003912926, 0.03022877685725689, 0.0016270268242806196, -0.055130455642938614, 0.004400510806590319, -0.024725783616304398, 0.04050605744123459, 0.04824542999267578, -0.04286807402968407, 0.08307260274887085, 0.07347376644611359, -0.03781738132238388, -0.02260248176753521, 0.010434330441057682, -0.01096829678863287, 0.009133965708315372, -0.041058871895074844, 0.038118913769721985, -0.03641022369265556, -0.03384718298912048, -0.023142728954553604, -0.05497968941926956, 0.047365956008434296, 0.02207479625940323, -0.048647474497556686, -0.07121226191520691, -0.01578027568757534, -0.028168294578790665, 0.03671175613999367, 0.056889403611421585, -0.016898464411497116, -0.015365666709840298, -0.03990299254655838, 0.011144191958010197, -0.01819254830479622, -0.00843038596212864, 0.01748896762728691, -0.033093348145484924, 0.012840320356190205, 0.07744396477937698, -0.00805346854031086, -0.01611950248479843, -0.04751672223210335, 0.031912341713905334, -0.0332692451775074, 0.05538173392415047, 0.019926367327570915, -0.006526953540742397, -0.006014973856508732, -0.10156667977571487, -0.06538260728120804, -0.0025598974898457527, 5.982582661090419e-05, -0.0479690246284008, 0.017262818291783333, 0.06060831993818283, -0.002541051711887121, -0.03889787942171097, 0.03269130364060402, -0.03550562262535095, -0.0023808616679161787, -0.0031158507335931063, -0.0166848786175251, 0.011828925460577011, -0.06940305978059769, -0.029650837182998657, -0.0135062076151371, -0.041058871895074844, -0.0394255630671978, 0.022300947457551956, -0.014750035479664803, -0.035656388849020004, -0.032867200672626495, -0.0028205986600369215, -0.03382205590605736, -0.023444263264536858, -0.014762599021196365, -0.023946819826960564, -0.03221387416124344, 0.012676989659667015, 0.010082541033625603, 0.036359965801239014, -0.038973260670900345, 0.018657412379980087, 0.014574140310287476, -0.04563213512301445, 0.017803065478801727, -0.013782613910734653, -0.007406427524983883, -0.00464550731703639, 0.016132066026329994, -0.03246515244245529, -0.03578202798962593, -0.011602774262428284, -0.03691278025507927, -0.007444119080901146, 0.03321898728609085, -0.019976623356342316, 0.0227406844496727, -0.010076259262859821, -0.004874798469245434, -0.02270299196243286, 0.015240027569234371, -0.011106500402092934, 0.02605755813419819, -0.08196697384119034, -0.0049847327172756195, -0.05719093605875969, 0.006014973856508732, -0.04430036246776581, -0.010509714484214783, 0.04852183535695076, 0.02663549780845642, -0.005135499872267246, -0.026786264032125473, 0.09111350774765015, 0.01569232903420925, 0.01064163539558649, -0.03829481080174446, -0.001372607657685876, 0.02834418974816799, 0.044953685253858566, -0.051914092153310776, -0.04874798655509949, 0.020981736481189728, -0.04033016413450241, 0.02904776856303215, 0.012626733630895615, 0.008355002850294113, 0.0058736298233270645, 0.06804616004228592, -0.007921547628939152, -0.052567414939403534, -0.010088822804391384, -0.02937443181872368, 0.02123301476240158, 0.007984367199242115, 0.004089553840458393, 0.03279181569814682, -0.009523446671664715, 0.009247040376067162, 0.03382205590605736, 0.005082103423774242, 0.030932355672121048, 0.008782176300883293, 0.015528997406363487, 0.013594155199825764, 0.026359092444181442, -0.024298610165715218, 0.04397369921207428, -0.0005002008401788771, 0.012243534438312054, 0.009378962218761444, -0.016948720440268517, -0.05201460421085358, -0.05407508462667465, 0.02426091767847538, -0.0054778666235506535, 0.027992401272058487, -0.022162744775414467, 0.03470152989029884, 0.03894813358783722, -0.02152198553085327, 0.02615806832909584, 0.02416040748357773, -0.008744483813643456, -0.012903139926493168, -0.004510445054620504, -0.0270626712590456, 0.003894813358783722, 0.022137615829706192, -0.020265594124794006, -0.0024248354602605104, -0.015315411612391472, 0.01839357055723667, -0.03070620633661747, -0.007249378599226475, -0.01625770516693592, -0.013594155199825764, -0.0077833449468016624, -0.008179107680916786, 0.04246602952480316, 0.027163181453943253, 0.03218874707818031, -0.023959383368492126, -0.004070708062499762, -0.015453614294528961, 0.009655367583036423, 0.03259079158306122, -0.00559094175696373, -0.026736009865999222, -0.02326836809515953, -0.04166194051504135, 0.009868954308331013, -0.014825418591499329, -0.015767712146043777, -0.024863986298441887, 0.016998976469039917, -0.03279181569814682, -0.006241124123334885, 0.02416040748357773, 0.023017089813947678, 0.005546967964619398, -0.05714068189263344, -0.03037954494357109, 0.024323737248778343, 0.03422410041093826, -0.003420525696128607, 0.018795615062117577, -0.08035879582166672, 0.02003944292664528, -0.0056223515421152115, 0.04193834587931633, 0.013066470623016357, -0.03289232775568962, -0.005151204764842987, -0.02046661637723446, -0.014461064711213112, -0.013217237778007984, -0.012174433097243309, -0.03663637489080429, 0.03739020973443985, 0.013958508148789406, 0.008216800168156624, 0.007814754731953144, 0.017212562263011932, 0.03681226819753647, -0.010145360603928566, 0.0032289258670061827, -0.01042176689952612, -0.02468809112906456, 0.04304397106170654, -0.00656464509665966, -0.0032022276427596807, -0.011910590343177319, 0.05397457629442215, -0.037365078926086426, 0.034525636583566666, -0.0034299485851079226, 0.01080496609210968, -0.015742585062980652, 0.025957046076655388, -0.02600730210542679, 0.038169171661138535, 0.02147172950208187, -0.02374579757452011, 0.006621182896196842, -0.014611831866204739, -0.02109481208026409, -0.02236376702785492, 0.0035241779405623674, -0.011093935929238796, -0.058346815407276154, -0.03017852082848549, -0.000856701866723597, 0.01137034222483635, 0.03439999744296074, -0.03929992392659187, -0.03809378668665886, 0.007274506147950888, -0.00831731129437685, 0.011715849861502647, 0.02648473158478737, -0.0011087653692811728, -0.023004526272416115, 0.0475669801235199, -0.016408471390604973, -0.004887362476438284, -0.008706792257726192, 0.05221562832593918, -0.09161606431007385, 0.01957457885146141, 0.041159383952617645, -0.015817968174815178, -0.059502698481082916, -0.035003066062927246, -0.02084353379905224, 0.015013877302408218, 0.06940305978059769, 0.039827607572078705, -0.05306997150182724, -0.025617821142077446, 0.034952808171510696, 0.020592255517840385, -0.014511320739984512, 0.0017573775257915258, 0.045707520097494125, -0.012978523038327694, -0.0016584366094321012, -0.06975485384464264, 0.003970196936279535, -0.02421066164970398, 0.02316785790026188, -0.013945944607257843, 0.04007888585329056, -0.005170050542801619, -0.028444701805710793, -0.04060656949877739, 0.03130927309393883, -0.009661650285124779, 0.006878742948174477, 0.025756023824214935, 0.0012823045253753662, 0.007996931672096252, 0.007927829399704933, 0.001112691592425108, 0.0119922561571002, -0.02867085114121437, -0.01218071486800909, 0.013682102784514427, 0.030404672026634216, -0.016358215361833572, 0.014837982133030891, -0.012406865134835243, 0.01620744913816452, 0.02947494201362133, -0.016797952353954315, 0.012978523038327694, 0.03259079158306122, -0.02302965521812439, -0.01995149627327919, 0.03279181569814682, -0.00560350576415658, 0.009485755115747452, 0.001060080248862505, -0.012840320356190205, -0.03610868752002716, -0.02985185943543911, 0.031057994812726974, 0.026836520060896873, -0.06075908988714218, -0.06518158316612244, 0.007777062710374594, -0.028118040412664413, -0.02564294822514057, 0.031912341713905334, 0.038596343249082565, -0.016358215361833572, -0.012249816209077835, 0.04917515814304352, -0.051763325929641724, -0.013606718741357327, -0.01156508270651102, 0.020592255517840385, 0.035003066062927246, -0.003210080089047551, -0.020454052835702896, -0.060960110276937485, 0.02962571009993553, -0.008901532739400864, -0.010333819314837456, 0.0352543443441391, -0.002963513135910034, -0.0012728815199807286, 0.02099430002272129, 0.03407333418726921, -0.013845433481037617, 0.03487742692232132, 0.01819254830479622, 0.016521546989679337, -0.032967709004879, -0.01153995469212532, -0.03701329231262207, -0.0032006572000682354, 0.005694594234228134, 0.029324175789952278, -0.021760698407888412, -0.02321811392903328, -0.027967272326350212, -0.028821619227528572, -0.014762599021196365, 0.005898757837712765, 0.01042176689952612, -0.017840757966041565, -0.01540335826575756, -0.015805404633283615, -0.01630796119570732, -0.02188633754849434, -0.014461064711213112, -0.009988311678171158, -0.02952519804239273, -0.002460956573486328, -0.011740977875888348, -0.03168619051575661, 0.02648473158478737, -0.02255222573876381, 0.013996200636029243, -0.039551202207803726, -0.020366104319691658, -0.029675964266061783, -0.029173407703638077, -0.023607594892382622, 0.030454928055405617, -0.026082685217261314, 0.0621662475168705, -0.0009752738405950367, -0.02615806832909584, -0.00318652275018394, -0.0437978059053421, -0.025881662964820862, -0.016659749671816826, -0.01179751567542553, -0.015717456117272377, 0.021057119593024254, -0.004108400084078312, -0.06839794665575027, 0.05955295264720917, 0.03183695673942566, -0.03857121616601944, -0.016194885596632957, -0.04505419731140137, 0.017639735713601112, -0.04540598392486572, -0.021836083382368088, -0.03457589074969292, 0.03879736736416817, 0.020717894658446312, 0.010974578559398651, -0.025039881467819214, 0.04289320111274719, -0.006809641607105732, -0.04744134098291397, 0.006815923377871513, 0.005867348052561283, -0.11046193540096283, 0.051914092153310776, 0.010710736736655235, -0.00999459344893694, -0.007538348436355591, -0.04492855817079544, 0.0196122694760561, 0.018468953669071198, -0.012243534438312054, -0.025806279852986336, 0.003164535854011774, -0.03653586283326149, -0.04744134098291397, 0.01819254830479622, 0.007349889725446701, 0.01952432282269001, -0.013920816592872143, 0.031208762899041176, 0.03382205590605736, -0.054376620799303055, 0.03331949934363365, -0.05028078332543373, -0.018167419359087944, 0.020931480452418327, -0.009146529249846935, -0.01000087521970272, 0.027037542313337326, 0.005462161730974913, 0.011213293299078941, 0.012965959496796131, 0.0022583636455237865, 0.009083709679543972, 0.030404672026634216, -0.030404672026634216, 0.01383286900818348, 0.008047186769545078, -0.022300947457551956, 0.007349889725446701, -0.013380568474531174, 0.06779488176107407, 0.034425124526023865, -0.032716430723667145, 0.006187727674841881, -0.035656388849020004, -0.008606281131505966, -0.005462161730974913, -0.017941270023584366, -0.03530459851026535, 0.00980613473802805, 0.0004805697244592011, -0.004202629439532757, -0.034525636583566666, -0.006476697511970997, -0.013204673305153847, -0.046838272362947464, 0.02605755813419819, -0.019750472158193588, 0.018418697640299797, -0.030480055138468742, 0.011376623995602131, -0.02032841369509697, 0.009812416508793831, 0.03467640280723572, -0.00617202278226614, -0.00579196447506547, 0.0014676222344860435, 0.00656464509665966, 0.0073561714962124825, -0.010798684321343899, -0.025982175022363663, 0.0010365229099988937, -0.0016474432777613401, -0.0027986117638647556, 0.01904689334332943, 0.03349539637565613, -0.02189890295267105, -0.007952957414090633, -0.020830970257520676, 0.008066033013164997, 0.04658699408173561, 0.03176157549023628, -0.003035755828022957, 0.03641022369265556, -0.008713074028491974, 0.006558363325893879, 0.00403929827734828, -0.0007259586709551513, 0.005989845842123032, -0.027238566428422928, 0.025856535881757736, -0.010440612211823463, 0.008191672153770924, -0.0062976619228720665, 0.03510357439517975, 0.025718331336975098, -0.025881662964820862, -0.03834506496787071, -0.019273044541478157, 0.04832081496715546, 0.0028033233247697353, 0.02128327079117298, 0.01795383356511593, 0.013569027185440063, 0.06271906197071075, -0.010245871730148792, -0.0008190101361833513, 0.01711205020546913, -0.005625492427498102, 0.014586703851819038, 0.019788164645433426, -0.004023593384772539, -0.02207479625940323, -0.007060919888317585, 0.021961722522974014, -0.02311760187149048, -0.049727972596883774, 0.009341269731521606, -0.03796814754605293, 0.017225125804543495, 0.004120963625609875, 0.014008764177560806, 0.04098348692059517, -0.01649641990661621, 0.006960408296436071, -0.0289975143969059, -0.010139078833162785, -0.005682030227035284, 0.05166281387209892, -0.039073772728443146, -0.05482891947031021, 0.02663549780845642, -0.019737908616662025, -0.004108400084078312, 0.03133440017700195, -0.02814316749572754, -0.07186558842658997, 0.03739020973443985, 0.004450766369700432, 0.004259166773408651, 0.03658611699938774, 0.02265273779630661, -0.0076891155913472176, -0.0375409759581089, -0.03497793525457382, -0.0065897731110453606, 0.0018735936610028148, 0.0026478448417037725, 0.011747259646654129, -0.007952957414090633, 0.004768005572259426, 0.018695104867219925, 0.00020671564561780542, 0.01334287691861391, -0.01578027568757534, 0.014209786430001259, 0.011960846371948719, -0.005572095979005098, -0.0010608654702082276, 0.012186996638774872, -0.006410737056285143, 0.01447362918406725, 0.027690866962075233, -0.01858202926814556, -0.025806279852986336, -0.012727244757115841, 0.0010192475747317076, -0.00942921731621027, 0.02937443181872368, -0.026183197274804115, 0.005606646649539471, 0.029927242547273636, 0.007412709295749664, 0.0010255294619128108, -0.007513220421969891, 0.03407333418726921, 0.00230390764772892, 0.05477866530418396, 0.0035932795144617558, 0.01738845743238926, -0.018757924437522888, 0.044099338352680206, 0.01877048797905445, 0.0029823591466993093, -0.047843385487794876, -0.030429799109697342, 0.05472841113805771, 0.0004000821500085294, 0.034324612468481064, -0.004321986343711615, 0.02728882059454918, 0.005597223527729511, 0.0017793643055483699, -0.021961722522974014, 0.014988749288022518, -0.0018343314295634627, 0.00015292639727704227, 0.008373849093914032, -0.0075697582215070724, -0.039877861738204956, -0.002394996117800474, -0.02359503135085106, 0.026308836415410042, -0.006677720230072737, 0.0077833449468016624, 0.003715777536854148, -0.008932942524552345, -0.009868954308331013, 0.02174813486635685, -0.027841633185744286, 0.017124615609645844, 0.006533235311508179, -0.015428486280143261, -0.005364791490137577, 0.04226500540971756, -0.09267143160104752, -0.012802628800272942, -0.046184949576854706, 0.02147172950208187, -0.028746236115694046, -0.03407333418726921, 0.02819342352449894, 0.01914740540087223, -0.013066470623016357, 0.029927242547273636, -0.013983636163175106, -0.04211423918604851, -0.021685315296053886, -0.022577352821826935, 0.04372242093086243, -0.00032646546605974436, -0.006194009445607662, -0.020102262496948242, -0.026132941246032715, -0.011621620506048203, 0.0002791544538922608, -0.01272096298635006, 0.008983198553323746, -0.022728120908141136, -0.023180421441793442, 0.020629946142435074, -0.02909802459180355, 0.028067784383893013, -0.02942468598484993, 0.0008606280898675323, -0.02350708283483982, -0.0014456353383138776, -0.01639590784907341, 0.040631696581840515, -0.00902717188000679, -0.002456245245411992, 0.03311847895383835, -0.019838420674204826, -0.00713002122938633, -0.03455076366662979, -0.013116726651787758, -0.002867713337764144, -0.058346815407276154, -0.030530311167240143, 0.0333697572350502, 0.023142728954553604, -0.018079472705721855, 0.031635936349630356, -0.02019020915031433, -0.022401459515094757, 0.0499541237950325, -0.05085872486233711, 0.010710736736655235, -0.0017055512871593237, -0.00924075860530138, -0.03389744088053703, 0.02302965521812439, 0.04327011853456497, -0.028067784383893013, -0.01412183977663517, 0.04573264718055725, 0.0018516068812459707, -0.004714608658105135, -0.022426586598157883, 0.0045607006177306175, -0.005575236864387989, -0.0036184072960168123, 0.007318479940295219, -0.03098261170089245, -0.016006426885724068, -0.03198772668838501, -0.006222278345376253, 0.012733526527881622, -0.01620744913816452, -0.002528487704694271, 0.026409346610307693, -0.00888268742710352, 0.018870998173952103, 0.01629539579153061, -0.0007133947219699621, -0.020541999489068985, 0.044099338352680206, -0.017049230635166168, -0.02620832435786724, 0.007557194214314222, 0.014184659346938133, -0.016948720440268517, -0.0022285243030637503, -0.04022965207695961, -0.04889875277876854, -0.006021255627274513, -0.003298027440905571, -0.04274243488907814, 0.026509858667850494, -0.018757924437522888, -0.01904689334332943, -0.0073561714962124825, -0.00347078125923872, -0.04952694848179817, -0.007023227866739035, 0.020981736481189728, -0.00961767602711916, -0.04832081496715546, 0.020931480452418327, 0.0048119788989424706, 0.020881224423646927, 0.008323593065142632, -0.009492036886513233, 0.012168150395154953, 0.01369466632604599, -0.05397457629442215, -0.03686252236366272, -0.021358653903007507, 0.0017934987554326653, 0.010509714484214783, 0.0227909404784441, 0.023708105087280273, 0.008442950434982777, -0.034425124526023865, 0.0017605184111744165, -0.01388312503695488, 0.005138640757650137, -0.015629509463906288, 0.004124104976654053, 0.014976185746490955, 0.027464715763926506, 0.00805346854031086, -0.007532066665589809, 0.010296127758920193, -0.023054782301187515, -0.03985273465514183, -0.009272168390452862, 0.02222556434571743, -0.042767561972141266, 0.004648648202419281, -0.015817968174815178, -0.03412359207868576, 0.009894082322716713, -0.01236917357891798, 0.01848151721060276, -0.02416040748357773, 0.05043154954910278, 0.021195322275161743, -0.048597220331430435, -0.010811247862875462, -0.002834733109921217, -0.02786676213145256, 0.03389744088053703, -0.010717018507421017, 0.006834769155830145, 0.014988749288022518, 0.01364441029727459, -0.04590854048728943, 0.025228340178728104, -0.012249816209077835, 0.043571654707193375, -0.018355878069996834, -0.008229363709688187, 0.03600817918777466, 0.021534549072384834, -0.011357778683304787, -0.044325489550828934, 0.025567565113306046, 0.005851643159985542, -0.02668575383722782, -0.02766573801636696, 0.010710736736655235, 0.021308397874236107, -0.019788164645433426, 0.0208560973405838, 0.04648648202419281, -0.07422760128974915, -0.007576039992272854, 0.02867085114121437, 0.02791701629757881, 0.0015987580409273505, 0.03140978515148163, 0.0024813730269670486, -0.030630823224782944, 0.0351538322865963, -0.024851422756910324, 0.028017528355121613, -0.011527391150593758, 0.0057951053604483604, 0.011163037270307541, 0.009655367583036423, 0.03558100387454033, -0.006150036118924618, 0.03334462642669678, 0.010459458455443382, -0.0021845505107194185, -0.0011527391616255045, -0.024298610165715218, 0.007996931672096252, -0.016433600336313248, -0.026183197274804115, 0.015202336013317108, 0.032012853771448135, 0.024675527587532997, -0.029977498576045036, 0.014322862029075623, -0.006040101870894432, 0.033244118094444275, -0.025190647691488266, -0.026132941246032715, 0.013631846755743027, 0.006291380152106285, -0.0038571215700358152, -0.011495981365442276, 0.00271380553022027, -0.027313949540257454, 0.022376330569386482, -0.043948572129011154, 0.024034768342971802, -0.007400145288556814, -0.0034016796853393316, -0.00789013784378767, -0.01083009410649538, 0.004011029377579689, -0.04696391150355339, -9.560353646520525e-05, 0.02113250270485878, 0.009912928566336632, 0.0017149742925539613, 0.027841633185744286, -0.02563038468360901, 0.013254929333925247, 0.00890781544148922, -0.0017479545203968883, -0.004504163283854723, 0.013229801319539547, -0.01160905696451664, -0.018079472705721855, -0.00043895174167118967, 0.012840320356190205, 0.04884849861264229, 0.02003944292664528, 0.01858202926814556, 0.003348283004015684, 0.019461503252387047, -0.02919853664934635, 0.004950182046741247, -0.01776537485420704, -0.002596018835902214, -0.0016710006166249514, 0.012036229483783245, 0.019926367327570915, 0.012777500785887241, -0.018644848838448524, 0.02834418974816799, 0.008738202042877674, 0.059201162308454514, 0.017878450453281403, -0.006633746437728405, -0.0053051128052175045, -0.007726807147264481, -0.015415922738611698, 0.015654636546969414, 0.016571803018450737, -0.027514971792697906, 0.006162599660456181, -0.030354415997862816, 0.018167419359087944, 0.01023330818861723, 0.02166018821299076, -0.022376330569386482, 0.015013877302408218, 0.009868954308331013, 0.010836375877261162, -0.03349539637565613, 0.05095923691987991, -0.0001931701845023781, 0.0007503012311644852, 0.008593717589974403, 0.029726220294833183, 0.008725638501346111, 0.041862960904836655, -0.0002495114749763161, -0.018330750986933708, 0.0008001643000170588, -0.002495507476851344, -0.03354565054178238, 0.040732208639383316, -0.014850546605885029, 0.008022058755159378, 0.027690866962075233, 0.010685608722269535, 0.04156142845749855, 0.02766573801636696, 0.0074629648588597775, 0.017740245908498764, 0.00786500982940197, -0.0227406844496727, -0.0024515336845070124, 0.019059456884860992, -0.01409671176224947, 0.03412359207868576, 0.03686252236366272, -0.024650398641824722, -0.00850577000528574, 0.013845433481037617, 0.02668575383722782, 0.03098261170089245, 0.004752300679683685, -0.03791789337992668, -0.006885024718940258, -0.00012024058378301561, 0.014448501169681549, 0.011948281899094582, -0.0196122694760561, -0.025052445009350777, -0.00656464509665966, -0.009046018123626709, 0.030052881687879562, 0.003192804753780365, -0.011766105890274048, -0.014423373155295849, -0.007670269347727299, 0.0134559515863657, -0.017689991742372513, -0.030731333419680595, 0.039400435984134674, 0.010026003234088421, 0.001685134950093925, 0.012783782556653023, -0.0062599703669548035, -0.03839532285928726, 0.02041636034846306, 0.014410809613764286, 0.030454928055405617, 0.007557194214314222, 0.0197630375623703, 0.028118040412664413, 0.013192109763622284, -0.022238127887248993, 0.005367932375520468, 0.0351538322865963, -0.0005139426211826503, 0.011722131632268429, -0.028796490281820297, 0.019348427653312683, -0.02962571009993553, 0.024700654670596123, -0.011879180558025837, -0.005644338205456734, 0.017413584515452385, 0.013958508148789406, -0.02426091767847538, 0.02292914316058159, 0.028746236115694046, 0.03879736736416817, 0.004290576558560133, -0.04218962416052818, 0.010227026417851448, -0.013280057348310947, 0.013945944607257843, 0.004714608658105135, -0.010371510870754719, 0.0031299851834774017, 0.01839357055723667, 0.0014919647946953773, -0.02643447555601597, 0.012161868624389172, 0.013996200636029243, -0.021974286064505577, -0.008775893598794937, -0.0065081072971224785, -0.0004786066128872335, -0.0038916724734008312, -0.008210517466068268, 0.02241402305662632, 0.004972169175744057, 0.012117895297706127, 0.01077983807772398, -0.031635936349630356, 0.009931773878633976, 0.015453614294528961, 0.003320014337077737, -0.01120701152831316, -0.012607887387275696, 0.01593104377388954, -0.007173995021730661, 0.01099342480301857, -0.0004307066847104579, -0.012388018891215324, -0.03711380064487457, -0.00111033592838794, -0.00500986073166132, -0.03151029720902443, 0.017413584515452385, -0.0017652299720793962, -0.005722862668335438, -0.026610370725393295, 0.019913803786039352, -0.004284294787794352, 0.015265155583620071, 0.0031221327371895313, 0.010836375877261162, 0.018607156351208687, -0.022728120908141136, 0.020881224423646927, -0.02957545407116413, -0.014297734014689922, 0.014109275303781033, -0.010340101085603237, 0.0011181883746758103, 0.010767274536192417, 0.014360553584992886, -0.010717018507421017, -0.02463783510029316, -0.02313016541302204, 0.00902717188000679, -0.019109712913632393, 0.030530311167240143, 0.012620451860129833, -0.00950460135936737, 0.008813586086034775, -0.0038037248887121677, 0.02496449649333954, -0.02791701629757881, -0.004425638820976019, -0.011665593832731247, -0.01215558685362339, 0.001652154722250998, 0.020265594124794006, -0.006501825526356697, 0.021635059267282486, 0.0018704526592046022, 0.009862672537565231, 0.013443388044834137, 0.04412446543574333, -0.0015202335780486465, -0.012381737120449543, -0.008983198553323746, -0.03422410041093826, -0.005851643159985542, -0.0018123446498066187, -0.007299634162336588, 0.0011723702773451805, 0.0020290720276534557, -0.012400583364069462, 0.033997952938079834, 0.004720890894532204, 0.018029216676950455, 0.0004358107689768076, 0.023808617144823074, -0.028369318693876266, -0.014863110147416592, 0.08191671967506409, 0.025127828121185303, 0.017564352601766586, 0.03256566449999809, 0.014549012295901775, -0.01848151721060276, 0.004566982854157686, 0.0005571310757659376, 0.002611723728477955, 0.022137615829706192, 0.01155880093574524, -0.019876111298799515, -0.017689991742372513, -0.020956609398126602, 0.04879824072122574, -0.013229801319539547, -0.028821619227528572, -0.007173995021730661, 0.017551787197589874, 0.030304159969091415, 0.00040989770786836743, 0.020454052835702896, 0.011860335245728493, 0.014461064711213112, -0.02094404399394989, -0.011835207231342793, -0.02468809112906456, 0.01004484947770834, 0.020680202171206474, 0.020504307001829147, 0.024713218212127686, -0.008606281131505966, 0.00885755941271782, -0.01672256924211979, -0.016245141625404358, 0.0028394446708261967, -0.0004943115054629743, 0.009529728442430496, -0.0051606278866529465, 0.008775893598794937, -0.020064570009708405, -0.016986411064863205, -0.0026933890767395496, 0.018117163330316544, 0.026082685217261314, 0.00619715079665184, -0.03304309397935867, 0.0019018624443560839, -0.0007204619469121099, -0.009837544523179531, -0.0065897731110453606, 0.006395032163709402, -0.014523884281516075, 0.008932942524552345, -0.015905914828181267, -0.02212505228817463, 0.02222556434571743, -0.030404672026634216, -0.0029478082433342934, -0.031485170125961304, 0.016622059047222137, 0.02990211546421051, 0.0030938638374209404, 0.011075090616941452, 0.03610868752002716, 0.010673045180737972, -0.0007377373403869569, 0.008763330057263374, -0.004510445054620504, -0.0038319937884807587, -0.02482629381120205, 0.00637304550036788, -0.03133440017700195, -0.007764498703181744, 0.021597368642687798, 0.01985098421573639, -0.009152811020612717, 0.03284206986427307, 0.01426004245877266, -0.044375743716955185, -0.01583053171634674, 0.031158506870269775, 0.014335425570607185, 0.016559239476919174, -0.024763474240899086, -0.041511170566082, 0.00029250362422317266, 0.02047917991876602, -0.018569465726614, -0.004409933928400278, -0.018305622041225433, 0.011521109379827976, 0.01829305849969387, 0.01639590784907341, 0.038872748613357544, 0.015893351286649704, -0.029399558901786804, 0.03658611699938774, -0.023821180686354637, -0.035229213535785675, 0.03299283981323242, -0.0011723702773451805, 0.009209348820149899, -0.014825418591499329, 0.002319612540304661, -0.012501094490289688, -0.007444119080901146, -0.017514096572995186, -0.061060622334480286, -0.007060919888317585, -0.012777500785887241, 0.01160905696451664, -0.002900693565607071, 0.012903139926493168, -0.038219425827264786, -0.015315411612391472, -0.0037377644330263138, 0.023142728954553604, -0.017514096572995186, -0.036033306270837784, 0.012388018891215324, 0.04002863168716431, 0.003772315103560686, -0.014272606000304222, 0.03648560494184494, 0.018267931416630745, 0.0270124152302742, 0.028821619227528572, 0.002900693565607071, 0.013895688578486443, -0.0013576879864558578, -0.004362819250673056, -0.015051568858325481, 0.01077983807772398, 0.009184220805764198, -0.015327975153923035, -0.00026502006221562624, -0.0016662890557199717, 0.004535573069006205, -0.01752666011452675, -0.01113162748515606, 0.01364441029727459, -0.04354652762413025, -0.05477866530418396, 0.017426148056983948, -0.04015427082777023, -0.007795908488333225, 0.00024185534857679158, 0.02084353379905224, 0.05784425884485245, -0.03060569427907467, 0.01449875719845295, 0.0289975143969059, 0.01312929019331932, 0.020529435947537422, -0.008593717589974403, -3.221957013010979e-05, -0.008141416124999523, 0.003822570899501443, -0.018355878069996834, -0.015566689893603325, -0.01677282527089119, -0.00796552188694477, -0.04852183535695076, 0.013418260030448437, -0.012620451860129833, -0.03065595030784607, -0.012362891808152199, -0.012752372771501541, 0.006241124123334885, 0.023180421441793442, -0.007230532355606556, -0.026836520060896873, 0.027514971792697906, 0.02857034094631672, 0.03786763548851013, -0.0001961148518603295, 0.04457676783204079, -0.012764936313033104, -0.010007157921791077, 0.014825418591499329, 0.015993863344192505, 0.01914740540087223, -0.009133965708315372, 0.014599268324673176, -0.0020683342590928078, -0.011244703084230423, -0.004557559732347727, -0.010302409529685974, -0.03899838775396347, -0.03135953098535538, 0.0016333088278770447, -0.019411247223615646, 0.027615483850240707, 9.33950359467417e-05, 0.033244118094444275, -0.0057291449047625065, 0.007682833354920149, -0.006746822036802769, 0.00012328340380918235, -0.039450690150260925, -0.007821036502718925, 0.0018060626462101936, 0.012965959496796131, -0.01291570346802473, -0.0031676767393946648, -0.004978450946509838, -0.03218874707818031, 0.022904016077518463, 0.009843826293945312, -0.05126076936721802, 0.02914828062057495, 0.004818261135369539, 0.005823374260216951, 0.03862147033214569, 0.009793571196496487, -0.02985185943543911, 0.025668077170848846, 0.016044117510318756, -0.04226500540971756, -0.029072897508740425, -0.009203067049384117, -0.012903139926493168, -0.03183695673942566, -0.010980861261487007, -0.007632577791810036, 0.035178959369659424, -0.005543827079236507, -0.051813580095767975, -0.025806279852986336, 0.029299046844244003, 0.010007157921791077, 0.00696669053286314, -0.02294170670211315, -0.024373993277549744, -0.0008755477610975504, 0.02791701629757881, -0.015076696872711182, 0.0009689918952062726, -0.0027640610933303833, -0.007620013784617186, -0.014549012295901775, -0.005430751945823431, -0.003492768155410886, 0.011452008038759232, 0.05749247223138809, 0.003536741714924574, 0.035229213535785675, -0.015101824887096882, -0.03173644840717316, -0.05236639454960823, -0.00010983609536197037, 0.031535424292087555, -0.004764864221215248, -0.005707157775759697, -0.021672751754522324, -0.01018933393061161, -0.028419572860002518, 0.011458289809525013, -0.030681077390909195, -0.06975485384464264, -0.007921547628939152, -0.014335425570607185, 0.006677720230072737, 0.013141853734850883, 0.0001902255171444267, -0.00367180397734046, 0.007098611444234848, -0.018041780218482018, -0.0025457630399614573, -0.02733907662332058, 0.03161080926656723, 0.019072022289037704, -0.011546237394213676, 0.002460956573486328, 0.019159968942403793, -0.012903139926493168, 0.02947494201362133, 0.038973260670900345, -0.01593104377388954, 0.003404820803552866, 0.05327099561691284, 0.03402308002114296, -0.016760261729359627, 0.011005988344550133, -0.007287070155143738, 0.013217237778007984, 0.017313074320554733, -0.018569465726614, 0.019323300570249557, -0.006077793426811695, -0.011822642758488655, -0.038269683718681335, 0.029072897508740425, 0.015704892575740814, 0.029776476323604584, 0.01733820140361786, -0.0038571215700358152, -0.0030153393745422363, 0.011571364477276802, 0.017024103552103043, 0.011841489002108574, 0.021924030035734177, -0.012683271430432796, 0.002668261295184493, 0.039551202207803726, -0.005967859178781509, 0.044853173196315765, -0.016144629567861557, -0.01824280247092247, 0.03844557702541351, 0.003888531355187297, 0.0027907593175768852, 0.010132797062397003, 0.033520523458719254, -0.021622495725750923, 0.0134559515863657, 0.04407421126961708, -0.003806866006925702, -0.025931918993592262, -0.03261592239141464, -0.015101824887096882, 0.04364703595638275, -0.018594592809677124, -0.002511212369427085, 0.028545212000608444, 0.01781563088297844, 0.010358947329223156, -0.0012650290736928582, -0.007902702316641808, -0.022439150139689445, -0.0038257117848843336, 0.0002834733168128878, -0.0074755288660526276, 0.01795383356511593, 0.02294170670211315, -0.0026933890767395496, 0.03460101783275604, 0.016282832249999046, -0.004510445054620504, 0.02540423348546028, -0.0165843665599823, -0.009554856456816196, -0.016747698187828064, 0.015026440843939781, -0.0103777926415205, 0.003734623547643423, 0.002834733109921217, 3.6759265640284866e-05, 0.02207479625940323, 0.005669466219842434, 0.006690284237265587, 0.02000175043940544, -0.018845871090888977, 0.004510445054620504, -0.020981736481189728, 0.0312338899821043, -0.00985639076679945, -0.040631696581840515, 0.011784951202571392, 0.015905914828181267, -0.015893351286649704, -0.0013058618642389774, -0.012004819698631763, -0.019084585830569267, 0.043471142649650574, -0.02643447555601597, 0.01075471006333828, 0.016810517758131027, 0.00807859655469656, 0.019398683682084084, -0.008160262368619442, 0.0029179691337049007, -0.040681954473257065, -0.0022410880774259567, -0.03801840543746948, 0.018368441611528397, -0.003565010614693165, 0.007318479940295219, -0.002886559348553419, -0.0008841854287311435, 0.03801840543746948, -0.01719999872148037, 0.039350178092718124, 0.011320086196064949, -0.02046661637723446, -0.014197222888469696, 0.02421066164970398, 0.0024358287919312716]
Name: Bar B, Address: 84 7th Ave, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.99922819999999, 40.7395445]}, Rating: 4.8, Reviews: ["Bar B is a small little establishment with highly limited seating, but if you can grab a table the experience is fantastic. A good selection of affordable wines and decent food to pair.\n\nThe staff are all wonderful and care about providing quality products and good service. I will call out on Google this comes out as a Cocktail bar, but it's really a wine lounge.\n\nI ordered the Chicken Skewers and a Chianti wine. Not something I'd normally pair, but oddly was fantastic. The skewers were moist and delicious. They were placed on top of a mini baguette slice that soaked in the juices for additional flavor.\n\nThe Chianti was mild and easy on the palette. The wine was easy to drink and perfect for the day. I was able to get one of the two tables outside to truly enjoy the experience. By the time I left the bar was full of people standing.\n\nOverall great place and would recommend going to if you get the opportunity.", 'I had no idea about Bar B until a friendly guy sitting next to me on a flight from BKK told me about it. I was intrigued that it was an Italian-inspired standing bar with a Japanese owner.\nI’d been to Basta Pasta over the years, but had no idea they had a bar—when you look carefully, the “b” is actually the same exact font.\n\nI finally came here this week with a friend and we absolutely loved it. It’s a small place and when we arrived past 6pm, it was already full. But the staff was able to set up a table for us outside.\n\nWe ordered:\n- Sea Scallops Carpaccio ($13+)\n- Chicken Skewers ($13+)\n- Penne Amatriciana ($16+)\n- Crème Brûlée ($11+)\n\nEverything we ordered was delicious and I would recommend them all.\nDrinks, they have happy hour until 7pm, which was great—especially since it includes prosecco for $8+.\n\nThere was a consistent flow of people, with a line outside at times. It was a chilly evening and got so cold we asked to go inside once a space opened up.\nThe staff was attentive and very helpful.\n\nIt’s a small place and may be hard to get in, but I will be back for sure, to try more of their delicious dishes.', 'The food is amazing! Must try Chicken liver pate and sea scallops', 'Randomly came across this standing-room-only wine bar. Loved it. We did get one of the two tables out front but the crowd inside all seemed very happy with the setup. Super friendly staff (and owner)… lots of regulars which is always a good sign.', 'Great tapas and wine. Is a fusion of tapas. I went on  Saturday night and enjoy Manny delicacies prosciutto with figs, cheese platter, beet salad and shrimps all tasty and affordable. Service was pleasant. Small be ready to eat standing up, place is packed. Nice decor, servers are pleasant.'], Embedding: [-0.026038257405161858, -0.029134424403309822, -0.03697635605931282, -0.04189977049827576, 0.0055039445869624615, -0.03956495597958565, -0.01820901595056057, 0.02016315422952175, -0.013704345561563969, -0.06638994067907333, -0.04002176597714424, -0.023119738325476646, -0.02885526232421398, -0.0014886028366163373, 0.013755102641880512, 0.046848561614751816, -0.011344153434038162, 0.020899128168821335, 0.026647338643670082, 0.045046694576740265, 0.04349860921502113, 0.006125715561211109, -0.015810754150152206, 0.04829512909054756, -0.012993750162422657, 0.01916070654988289, -0.03281429409980774, 0.0022174392361193895, -0.0020096534863114357, 0.005979789886623621, 0.030530236661434174, -0.017422284930944443, -0.007486633490771055, -0.04169674217700958, -0.031393103301525116, -0.001627391087822616, 0.026114393025636673, 0.006014685146510601, 0.04400617629289627, -0.03720476105809212, 0.016521349549293518, 0.055121924728155136, 0.04981783404946327, -0.016495972871780396, 0.002821762813255191, -0.0006542873452417552, 0.008121093735098839, 0.0337025411427021, -0.003403880400583148, 0.005913171451538801, -0.04568115249276161, -0.0019414490088820457, -0.04956405237317085, 0.0022904023062437773, -0.02124173566699028, -0.004644250497221947, -0.017574554309248924, 0.01165503915399313, 0.0686739981174469, 0.035935841500759125, 0.07933293282985687, -0.005979789886623621, 0.03436237946152687, -0.014744861051440239, -0.0863373801112175, 0.029819641262292862, -0.01752379722893238, 0.014922509901225567, 0.033118836581707, -0.04121455177664757, 0.05037616193294525, 0.02220611646771431, -0.02346234768629074, -0.019490625709295273, 0.01338711567223072, -0.014110400341451168, 0.01862775906920433, -0.014859064482152462, 0.0018700722139328718, -0.004961480852216482, -0.034260865300893784, 0.010601834394037724, -0.027687855064868927, 0.032484374940395355, 0.04098614677786827, -0.0678618922829628, -0.05212727189064026, -0.0007363706827163696, -0.015810754150152206, 0.04979245737195015, 0.0598423108458519, -0.049589429050683975, 0.024058740586042404, -0.0006519081071019173, 0.047381509095430374, -0.004358743317425251, -0.038828980177640915, -0.0001770541275618598, -0.036341894418001175, 0.021317871287465096, 0.05106137692928314, -0.043244823813438416, 0.015899579972028732, -0.0819215327501297, 0.038828980177640915, -0.0020350320264697075, 0.010500320233404636, -0.007740417495369911, -0.0015084297629073262, -0.03903200849890709, -0.02580985240638256, -0.010290948674082756, -0.025759095326066017, 0.04329558089375496, -0.005681593436747789, 0.024921607226133347, 0.0956258773803711, -0.019833233207464218, -0.02427445724606514, 0.04273725673556328, -0.005570563022047281, 0.009497873485088348, -0.019896680489182472, -0.03268740326166153, -0.006972720380872488, -0.013082575052976608, -0.03877822309732437, -0.026241283863782883, 0.016648242250084877, -0.06364907324314117, -0.022256873548030853, -0.0004587942094076425, 0.027383314445614815, -0.030530236661434174, 0.0055864243768155575, 0.011819998733699322, -0.06197409704327583, -0.027789367362856865, -0.008876102045178413, -0.049462538212537766, 0.017460351809859276, -0.045579638332128525, 0.02908366732299328, -0.03804225102066994, -0.018856164067983627, -0.010392462834715843, -0.035123731940984726, 0.007854620926082134, -0.03063175082206726, 0.029210560023784637, -0.007353396620601416, 0.01630563475191593, -0.03367716073989868, -0.047508399933576584, -0.009719934314489365, -0.02619052864611149, -0.02427445724606514, 0.005640353541821241, -0.015353943221271038, 0.04258498549461365, -0.0173715278506279, 0.02303091436624527, -0.0005773589946329594, 0.03847368061542511, -0.01365358941257, 0.025048499926924706, -0.05725371092557907, 0.034971460700035095, -0.07791174203157425, -0.01095713209360838, 0.012492526322603226, -0.0038289688527584076, 0.04291490465402603, 0.05268559604883194, 0.009789724834263325, -0.03471767529845238, 0.06547632068395615, -0.039666466414928436, 0.0014005714328959584, -0.02636817656457424, -0.010170401073992252, 0.021952331066131592, 0.03197680786252022, -0.023969916626811028, -0.030657129362225533, 0.014617969281971455, -0.015772687271237373, -0.012765344232320786, -0.015468145720660686, 0.017346149310469627, 0.0337025411427021, 0.0353267602622509, 0.024731269106268883, 0.0027963845059275627, -0.004139854572713375, -0.0383467897772789, 0.027763990685343742, 0.02966737188398838, -0.002017584163695574, 0.07654131203889847, -0.008774587884545326, -0.00716940313577652, 0.05334543436765671, -0.02539110742509365, 0.029997291043400764, -0.03781384229660034, 0.014935199171304703, 0.04222968965768814, 0.0037845566403120756, -0.0433463379740715, 0.03530137985944748, -0.0010508251143619418, 0.0003983222122769803, -0.01447838731110096, -0.031393103301525116, -0.03408321738243103, -0.03794073686003685, 0.04720385745167732, -0.010950787924230099, 0.02125442586839199, -0.0029772056732326746, 0.010595489293336868, 0.017980609089136124, -0.013907372951507568, -0.0020984779112040997, 0.012175296433269978, 0.022942090407013893, 0.0037369721103459597, 0.015201672911643982, -0.019795166328549385, -0.02923593856394291, 0.011826342903077602, 0.005837036296725273, 0.03047948144376278, 0.0036005631554871798, -0.0029074151534587145, -0.006630111951380968, 0.01234025601297617, -0.0007776105776429176, -0.002496602013707161, 0.007899032905697823, -0.03684946522116661, 0.05928398668766022, -0.02070879004895687, 0.042965661734342575, -0.008730175904929638, -0.012835134752094746, -0.039133522659540176, 0.001836762996390462, 0.027890881523489952, 0.013920062221586704, -0.032890431582927704, -0.011743863113224506, -0.026723474264144897, -0.021901575848460197, -0.008228952065110207, -0.049335647374391556, -0.028804505243897438, 0.014110400341451168, -0.044336095452308655, 0.010963477194309235, 0.0319514274597168, -0.019617518410086632, -0.0012831962667405605, -0.03575818985700607, -0.04580804705619812, 0.03088553622364998, 0.03129158914089203, 0.011693106032907963, 0.02261217124760151, -0.02938820794224739, 0.021622411906719208, 0.05958852544426918, 0.03959033265709877, 0.011991302482783794, -0.03268740326166153, -0.008971271105110645, 0.015836132690310478, 0.017346149310469627, 0.0071947816759347916, 0.004533220082521439, -0.04634099081158638, 0.005151818972080946, -0.0018304184777662158, 0.02926131710410118, -0.008197229355573654, 0.022536035627126694, -0.017879094928503036, 0.01213722862303257, 0.03946344181895256, -0.015430078841745853, -0.013717034831643105, 0.010709692724049091, 0.019071880728006363, 0.021711237728595734, 0.003368985140696168, 0.05258408188819885, -0.038955871015787125, 0.021838128566741943, -0.031088562682271004, 0.014161157421767712, -0.024807404726743698, 0.01850086636841297, 0.0009310707100667059, 0.03943806141614914, 0.014186535961925983, -0.04370163753628731, 0.02705339342355728, -0.03959033265709877, 0.020366180688142776, -0.03517448902130127, 0.022548723965883255, -0.018678516149520874, -0.031215455383062363, -0.02361461892724037, -0.005453187506645918, 0.04286414757370949, 0.029286695644259453, -0.07380044460296631, -0.05872565880417824, 0.004365087952464819, -0.007328018546104431, 0.0022840576712042093, 0.0419505275785923, 0.005123268347233534, -0.040047142654657364, 0.05354846268892288, 0.006055925041437149, 0.025175390765070915, -0.018868854269385338, 0.03946344181895256, -0.05253332480788231, 0.02083568088710308, 0.04101152345538139, -0.06567934900522232, -0.0337025411427021, -0.010303637944161892, 0.019909368827939034, 0.009358291514217854, 0.0471784807741642, 0.04314330965280533, 0.009535940364003181, -0.024185633286833763, 0.014554522931575775, 0.06151728704571724, -0.020734168589115143, 0.038549818098545074, 0.034007079899311066, 0.028601476922631264, -0.006947341840714216, -0.04768604785203934, -1.423818503099028e-05, -0.04121455177664757, -0.02730717882514, -0.0039653778076171875, 0.03362640365958214, -0.0004246919706929475, -0.009853171184659004, -0.05791354924440384, -0.002433155896142125, -0.004606183152645826, -0.018843475729227066, 0.0020746856462210417, 0.012619419023394585, -0.004603010602295399, -0.001816143048927188, 0.03844830393791199, -0.00868576392531395, -0.024058740586042404, 0.00895858183503151, 0.007708694785833359, 0.03514910861849785, -0.013374426402151585, -0.006103509571403265, 0.014859064482152462, -0.02193964272737503, 0.020467694848775864, 0.02976888418197632, 0.0028804505709558725, 0.02249796874821186, 0.03157075121998787, -0.000898554630111903, 0.009688211604952812, -0.0038511750753968954, 0.03182453662157059, -0.030276453122496605, 0.004174749832600355, -0.01413577888160944, -0.0064619798213243484, 0.038676708936691284, 0.005202575586736202, -0.00875555444508791, -0.03852443769574165, 0.024350592866539955, -0.00035946149728260934, 0.03146924078464508, 0.052076514810323715, 0.005475393962115049, -0.025467243045568466, -0.021838128566741943, 0.03976798057556152, -0.053599219769239426, -0.012352945283055305, -0.020759547129273415, -0.004019306972622871, 0.029185181483626366, 0.02070879004895687, -0.011490078642964363, -0.014173846691846848, 0.03953957557678223, -0.024109497666358948, -0.025721026584506035, 0.026139771565794945, 0.04471677169203758, 0.007670626975595951, -0.007410498335957527, 0.018995746970176697, 0.026824988424777985, 0.07537390291690826, 0.04481828585267067, 0.013069885782897472, -0.013222156092524529, -0.03238286077976227, -0.016381768509745598, -0.021888885647058487, 0.020493073388934135, 0.0036893875803798437, -0.02498505264520645, -0.020911816507577896, -0.032915808260440826, -0.021064087748527527, -0.030936291441321373, -0.01082389522343874, -0.018691204488277435, -0.040072523057460785, -0.03479381278157234, -0.03268740326166153, 0.003978067077696323, 0.004165233112871647, -0.0041303373873233795, 0.0001316505513386801, -0.04839664325118065, 0.007251882925629616, 0.008571560494601727, -0.02662196010351181, -0.0007478702464140952, 0.0405547134578228, 0.04535123333334923, -0.032357484102249146, -0.0337025411427021, 0.0018573830602690578, -0.04243271425366402, -0.046823181211948395, 0.007321673911064863, -0.015607727691531181, 0.0407831184566021, -0.00172414630651474, -0.011306085623800755, -0.007435876410454512, -0.03847368061542511, 0.006871206685900688, 0.0015139812603592873, -0.010938098654150963, 0.0029613443184643984, 0.0159757137298584, -0.0016654586652293801, -0.02966737188398838, 0.069029301404953, 0.023005535826086998, -0.04073236137628555, 0.0020604103337973356, -0.03575818985700607, 0.01668631099164486, -0.007410498335957527, -0.02495967410504818, -0.047660671174526215, 0.03953957557678223, 0.00339753576554358, -0.0471784807741642, -0.004431706387549639, 0.01876734010875225, -0.005316778551787138, -0.016331011429429054, 0.012422735802829266, -0.029413586482405663, -0.10161519050598145, 0.023754199966788292, 0.02112753316760063, -0.03200218454003334, 0.0019985504914075136, -0.06420739740133286, 0.011610626243054867, -0.016178742051124573, -0.012016681022942066, -0.006173300091177225, 0.0028804505709558725, -0.002696456853300333, -0.04367625713348389, 0.019693652167916298, 0.01433880627155304, 0.010716036893427372, -0.03611348941922188, -0.030961669981479645, 0.027763990685343742, -0.028880640864372253, 0.047635290771722794, -0.05562949180603027, 0.017079675570130348, 0.009066440165042877, -0.024667823687195778, -0.033042699098587036, -0.04984321445226669, 0.03601197525858879, 0.0027995568234473467, 0.01572193019092083, 0.0022237838711589575, -0.012454458512365818, 0.01697816140949726, -0.01904650218784809, 0.02677423134446144, 0.03486994653940201, -0.007594491820782423, 0.02013777568936348, -0.011877099983394146, 0.029870398342609406, 0.016356389969587326, -0.0367225706577301, 0.008083025924861431, -0.02936282940208912, -0.04205203801393509, 0.03200218454003334, -0.00032734195701777935, -0.01654672808945179, 0.03667181357741356, -0.009218710474669933, 0.0007994201732799411, -0.01808212324976921, 0.015645794570446014, 0.0032214729581028223, -0.013361737132072449, 0.0277132336050272, -0.009447116404771805, 0.00036025457666255534, -0.04309255629777908, -0.006890240591019392, -0.0022301285061985254, 0.028601476922631264, 0.002564806491136551, -0.0011023750994354486, 0.017473042011260986, 0.02498505264520645, -0.007321673911064863, 0.004653767682611942, -0.023005535826086998, -0.014262671582400799, 0.0015583934728056192, 0.04106228053569794, -0.018564313650131226, 0.0038162795826792717, 0.02936282940208912, -0.00902837235480547, -0.015328564681112766, -0.007321673911064863, 8.370664545509499e-06, 0.010741415433585644, 0.03210369870066643, -0.015963025391101837, 0.010582800954580307, 0.00679507153108716, 0.03601197525858879, 0.0132475346326828, 0.009853171184659004, 0.031088562682271004, -0.03362640365958214, 0.04101152345538139, 0.00183517683763057, 0.022574102506041527, -0.009288500994443893, -0.019680963829159737, 0.010227502323687077, -0.014617969281971455, -0.014909820631146431, -0.010639902204275131, 0.061720315366983414, 0.025581445544958115, 0.013158709742128849, 0.037864599376916885, 0.03324572741985321, 0.04743226245045662, 0.03365178406238556, 0.02885526232421398, -0.002644113963469863, -0.02523883804678917, 0.011775585822761059, 0.01551890280097723, -0.01779027096927166, -0.02536572888493538, 0.014148468151688576, -0.008717486634850502, 0.0007994201732799411, -0.014465698972344398, 0.0020033088512718678, -0.04687393829226494, 0.020239287987351418, -0.03781384229660034, 0.02235838584601879, 0.011312429793179035, -0.010855618864297867, 0.01584882289171219, -0.028119288384914398, 0.007727728225290775, 0.03314421325922012, 0.018551623448729515, -0.023627307265996933, -0.048751942813396454, 0.00895858183503151, -0.05669538676738739, -0.040199413895606995, -0.007105957251042128, -0.024198321625590324, -0.005986134521663189, -0.0039051042404025793, -0.02386840246617794, 0.02511194534599781, -0.013285602442920208, 0.008635006844997406, -0.00013244361616671085, -0.048751942813396454, 0.02084837108850479, 0.03225596994161606, 0.01695278286933899, 0.023411590605974197, 0.01794254221022129, 0.021609723567962646, -0.004644250497221947, -0.006065442226827145, 0.01850086636841297, 0.006141577381640673, -0.007435876410454512, 0.01200399175286293, 0.03410859405994415, 0.004371432587504387, 0.003974894993007183, -0.007347051985561848, -0.014453009702265263, 0.0062018511816859245, -0.000432622735388577, 4.7014513256726786e-05, -0.02674885280430317, -0.009015683084726334, 0.012365634553134441, -0.012511560693383217, 0.03626576066017151, -0.03228134661912918, 0.007226504851132631, 0.04727999493479729, -0.010424185544252396, 0.0016432525590062141, 0.012251431122422218, 0.02166048064827919, 0.0001758645084919408, 0.03641803190112114, -0.03601197525858879, -0.02016315422952175, -0.0064905304461717606, 0.002623494016006589, -0.011191882193088531, 0.0012879547430202365, -0.032890431582927704, -0.035656679421663284, 0.030377967283129692, -0.00621454045176506, 0.03976798057556152, -0.007492978125810623, 0.029692750424146652, 0.007023477461189032, 0.0031294762156903744, -0.01159159280359745, -0.005450015421956778, 0.008723831735551357, 0.0010413082782179117, 0.004507841542363167, -0.010227502323687077, -0.018120190128684044, -0.010792172513902187, -0.0099356509745121, 0.012733621522784233, -0.009751657024025917, -0.007232849486172199, 0.005986134521663189, 0.010576455853879452, -0.04202666133642197, 0.05022389069199562, -0.03461616113781929, 0.0011507526505738497, -0.0029248627834022045, 0.0347430557012558, 0.006636456586420536, 0.03202756494283676, -0.08400256186723709, 0.011693106032907963, -0.04910723865032196, 0.02786550298333168, -0.007918066345155239, -0.0097326235845685, 0.04634099081158638, -0.0030882363207638264, -0.0016432525590062141, -0.014567212201654911, -0.00568476552143693, -0.034844569861888885, -0.0046759736724197865, -0.010455908253788948, 0.03294118866324425, 0.019224151968955994, -0.003946343902498484, -0.03720476105809212, -0.0019128982676193118, 0.016166051849722862, -0.007131335791200399, -0.04971632361412048, 0.02042962610721588, -0.012651141732931137, -0.0012490940280258656, 0.02427445724606514, -0.01790447346866131, 0.051518190652132034, -0.0019017952727153897, 0.0003184198576491326, 0.03641803190112114, -0.029286695644259453, -0.027231043204665184, 0.07141487300395966, 0.011445666663348675, 0.011648694053292274, 0.024807404726743698, -0.006049580406397581, -0.004469773732125759, -0.01241004653275013, -0.04002176597714424, 0.007657937705516815, -0.046848561614751816, -0.02895677462220192, 0.03119007684290409, 0.026647338643670082, -0.034286241978406906, -0.0019382766913622618, -0.016470594331622124, -0.013120641931891441, 0.00010547904821578413, -0.0451989620923996, 0.011084023863077164, 0.003594218520447612, 0.009326568804681301, 0.017422284930944443, -0.01876734010875225, -0.008736521005630493, -0.02910904586315155, -0.015531592071056366, 0.03225596994161606, -0.017155811190605164, -0.008019580505788326, -0.004904379602521658, -0.020201221108436584, 0.005808485671877861, 0.0097326235845685, 0.012765344232320786, -0.03431162238121033, -0.013805859722197056, -0.011128436774015427, -0.02121635712683201, 0.008476391434669495, -0.005532495211809874, 0.035656679421663284, 0.03527600318193436, 0.04304179921746254, 0.007061544805765152, 0.0095295961946249, 0.0030025842133909464, 0.011363186873495579, 0.021761992946267128, -0.006135232746601105, -0.02646969072520733, 0.013742413371801376, 0.028043152764439583, -0.02332276664674282, 0.03908276557922363, -0.03060637228190899, -0.0755261704325676, 0.013475940562784672, -0.019363733008503914, -0.049335647374391556, 0.012359289452433586, -0.005583252292126417, -0.018526244908571243, 0.020505761727690697, 0.006335087586194277, -0.05639084428548813, -0.01192785706371069, 0.04413307085633278, 0.015683863312005997, -0.04842202365398407, -0.0017844201065599918, 0.014351495541632175, 0.03659567981958389, 0.004549081437289715, -0.008260674774646759, 0.03380405157804489, 0.005818002391606569, -0.05532495304942131, -0.014554522931575775, -0.0015671172877773643, -0.0177775826305151, 0.02329738810658455, 0.025594135746359825, 0.010538388043642044, -0.0013601245591416955, 0.00980241410434246, 0.01365358941257, -0.001678147935308516, -0.02012508548796177, 0.006179644726216793, -0.029591236263513565, 0.0206834115087986, 0.028220800682902336, 0.013336358591914177, -0.026951881125569344, 0.018310528248548508, -0.014567212201654911, -0.021482830867171288, -0.0235892403870821, 0.035529784858226776, -0.03162150830030441, 0.00875555444508791, 0.011953234672546387, 0.0223710760474205, -0.011274361982941628, -0.02677423134446144, 0.0105447331443429, -0.0065032197162508965, 0.032332103699445724, 0.048345886170864105, -0.03887973725795746, -0.0277132336050272, 0.011401254683732986, -0.010836584493517876, 0.02056920900940895, -0.002539427950978279, -0.008203573524951935, -0.012168951332569122, -0.01531587541103363, -0.021355940029025078, -0.025695648044347763, -0.01889423280954361, -0.00686486205086112, 0.015404700301587582, 0.004031996242702007, 0.006909274496138096, -0.003202439285814762, 0.013196777552366257, -0.034133974462747574, 0.019668273627758026, 0.03141848370432854, 0.016648242250084877, -0.030403345823287964, -0.0029232765082269907, 0.02801777422428131, -0.06055290624499321, 0.052482567727565765, -0.00469500757753849, -0.033169593662023544, -0.03146924078464508, -0.003324572928249836, 0.016597485169768333, -0.00025636167265474796, 0.021203668788075447, -0.007524701301008463, 0.008907824754714966, 0.009650143794715405, -0.02001088298857212, 0.018526244908571243, -0.005024926736950874, -0.02926131710410118, 0.0018700722139328718, 0.03009880520403385, 0.03240824118256569, 0.0029502410907298326, 0.03849906101822853, -0.002282471628859639, 0.0010563766118139029, -0.012498871423304081, 0.0007343880133703351, 0.0369509756565094, -0.0071186465211212635, -0.0198713019490242, 0.021178290247917175, 0.0064968750812113285, 0.016102606430649757, -0.013514007441699505, 0.042991042137145996, -0.013412494212388992, 0.06603464484214783, -0.014376874081790447, -0.004641078412532806, 0.010747760534286499, -0.015924958512187004, -0.03355026990175247, -0.01805674470961094, 0.020505761727690697, -0.029718128964304924, 0.024756647646427155, -0.029413586482405663, 0.06441042572259903, 0.038397546857595444, -0.035783570259809494, 0.0030057565309107304, -0.004330192692577839, 0.008013235405087471, -0.020632654428482056, 0.034666918218135834, 0.012835134752094746, 0.013869306072592735, -0.007575457915663719, 0.0014513282803818583, 0.0010992027819156647, 0.006858517415821552, 0.020759547129273415, 0.006287503056228161, -0.0004016927850898355, -0.009853171184659004, -0.02619052864611149, -0.016483282670378685, 0.023068983107805252, 0.0070298220962285995, 0.005783107131719589, 0.02121635712683201, 0.029718128964304924, 0.017752204090356827, 0.0005337398615665734, -0.03941268473863602, 0.023221252486109734, 0.009015683084726334, -0.014211914502084255, -0.05141667649149895, 0.011705795302987099, 0.03319497033953667, 0.029489722102880478, -0.003151682438328862, 0.02206653542816639, 0.001709870994091034, 0.06923232227563858, 0.011648694053292274, -0.009491528384387493, -0.009282156825065613, -0.019376423209905624, -0.008996649645268917, 0.02923593856394291, -0.0028931396082043648, -0.045858800411224365, 0.028093909844756126, -0.03210369870066643, 0.015062090940773487, 0.015328564681112766, 0.0038289688527584076, -0.002786867553368211, 0.026292040944099426, 0.010912720113992691, -0.008596939034759998, -0.03880360350012779, 0.0794852077960968, 0.026926502585411072, 0.0031326485332101583, -0.021736616268754005, 0.019401801750063896, -5.523647359950701e-06, -0.005789451766759157, 0.01077313907444477, 0.024921607226133347, -0.026317419484257698, -0.03459078446030617, 0.0002853089536074549, 0.012733621522784233, -0.012930303812026978, 0.011109402403235435, -0.028525343164801598, 0.028753748163580894, -0.011261673644185066, 0.02743406966328621, 0.006354121491312981, 0.005088373087346554, -0.020658032968640327, -0.00655397679656744, 0.004028824158012867, 0.033448755741119385, -0.0180694330483675, 0.011845377273857594, 0.0314946174621582, -0.03928579017519951, 0.03009880520403385, 0.028068531304597855, -0.00868576392531395, 0.0015694965841248631, 0.012023026123642921, -0.019249530509114265, -0.02456630952656269, 0.005484910681843758, 0.01999819464981556, -0.00834949966520071, -0.022383764386177063, -0.031773779541254044, -0.004501496907323599, 0.021076776087284088, 0.0063382601365447044, 0.002744041383266449, 0.0049583083018660545, -0.016445215791463852, -0.01433880627155304, 0.0037115938030183315, -0.03075864352285862, -0.036138866096735, 0.024198321625590324, 0.025746405124664307, 0.005177197512239218, 0.028906019404530525, 0.006611078046262264, -0.020899128168821335, 0.013843927532434464, -0.030657129362225533, 0.06598389148712158, 0.0062906756065785885, 0.022396454587578773, 0.03598659858107567, -0.0057164886966347694, 0.0037115938030183315, 0.02056920900940895, 0.03705248981714249, 0.005101061891764402, 0.016622863709926605, -0.030174938961863518, 0.00699809892103076, -0.03644340857863426, -0.006782382261008024, -0.01973172090947628, 0.000908071524463594, -0.006398533936589956, 0.0034133973531425, -0.028373071923851967, 0.022142671048641205, 0.03756006062030792, 0.040503956377506256, 0.002518808003515005, -0.03885435685515404, 0.04925950989127159, -0.008577905595302582, 0.014897131361067295, 0.045579638332128525, 0.0037528336979448795, 0.011077679693698883, 0.003673525992780924, -0.0012253017630428076, -0.015049402602016926, 0.01207378227263689, 0.029185181483626366, -0.01904650218784809, -0.009136230684816837, 0.006940997671335936, 0.04507207125425339, 0.0030660300981253386, 0.004384121857583523, -0.003933655098080635, 0.004913896322250366, 0.048218995332717896, 0.019211463630199432, 0.0024553618859499693, -0.01974440924823284, 0.019960125908255577, 0.022536035627126694, 0.011762896552681923, -0.00709961261600256, 0.005399258341640234, 0.003264299128204584, -0.008780932985246181, -0.012714588083326817, 0.0004932929878123105, -0.025885986164212227, -0.0021127532236278057, -0.01234660018235445, -0.05943625792860985, -0.02402067370712757, -0.016724377870559692, 0.016254877671599388, -0.02636817656457424, 0.008971271105110645, -0.00019380784942768514, 0.014605280011892319, -0.004035168327391148, 0.009307535365223885, 0.010398807004094124, 0.027941638603806496, 0.0019604829140007496, 0.003962205722928047, -0.021432073786854744, 0.033118836581707, -0.018031366169452667, 0.005640353541821241, 0.010373428463935852, 0.01626756601035595, -0.018818097189068794, 0.009967373684048653, -0.021597033366560936, 0.009383670054376125, -0.013310980051755905, 0.02069609984755516, -0.02206653542816639, 0.021279804408550262, -0.00172414630651474, -0.023398902267217636, 0.03464154154062271, -0.030987048521637917, -0.0014719482278451324, -0.030048048123717308, -0.014465698972344398, 0.03408321738243103, 0.02636817656457424, -0.00814647227525711, -0.001719387830235064, 0.018094811588525772, 0.012587695382535458, -0.0014893959742039442, 0.03756006062030792, 0.031672265380620956, -0.022129980847239494, -0.01932566612958908, 0.007975167594850063, 0.007670626975595951, 0.011090368963778019, 0.008330466225743294, -0.007492978125810623, -0.0016432525590062141, -0.005576907657086849, 0.013564764522016048, 0.024807404726743698, 0.012993750162422657, 0.007727728225290775, -0.013704345561563969, -0.028601476922631264, -0.011312429793179035, 0.08207380771636963, -0.013628210872411728, -0.021444763988256454, 0.014072333462536335, 0.0064556351862847805, 0.008577905595302582, -0.0057577285915613174, -0.0015687034465372562, 0.028525343164801598, 0.0009207607363350689, 0.02536572888493538, -0.011401254683732986, -0.0011547179892659187, -0.005846553016453981, 0.060502149164676666, -0.02621590718626976, -0.02730717882514, -0.01027825940400362, 0.0353267602622509, 0.002499774331226945, 0.006341432221233845, 0.016927404329180717, 0.006534942891448736, 0.00018657103646546602, -0.030834779143333435, -0.008876102045178413, -0.021026019006967545, -0.02263754978775978, 0.006566665600985289, 0.04768604785203934, 0.02247259020805359, -0.004618871957063675, -0.009313879534602165, 0.007791174575686455, -0.008990304544568062, -0.008945892564952374, 0.006106682121753693, 0.0002581460867077112, 0.004241368267685175, 0.030936291441321373, 0.006224057171493769, 0.016445215791463852, -0.009967373684048653, 0.04596031457185745, 0.04705158621072769, -0.000857314676977694, -0.011337808333337307, 0.005599113646894693, -0.023284699767827988, -0.007892687804996967, 0.0202773567289114, 7.469780393876135e-05, 0.008933203294873238, -0.0038353134877979755, -0.027129529044032097, -0.007080578710883856, 0.009618420153856277, -0.04956405237317085, 0.01903381384909153, -0.006598388776183128, -0.012835134752094746, 0.027129529044032097, 0.023957226425409317, -0.006858517415821552, 0.030580993741750717, 0.019541382789611816, 0.010525698773562908, -0.023411590605974197, 0.023830335587263107, -0.020581897348165512, -0.01823439449071884, 0.032332103699445724, -0.003480015555396676, 0.024084119126200676, 0.036088112741708755, -0.00021829405159223825, -0.018247082829475403, -0.004802865907549858, 0.0003911845269612968, -0.029718128964304924, -0.01027191523462534, 0.043803151696920395, 0.014097711071372032, 0.016026470810174942, -0.018716583028435707, -0.02413487620651722, -0.0021349594462662935, 0.01179462019354105, -0.02662196010351181, 0.008584249764680862, 0.0028122460935264826, 0.020087018609046936, -0.007930755615234375, 0.018983056768774986, 0.039235036820173264, 0.026266662403941154, 0.0031104423105716705, 0.02677423134446144, -0.00372111052274704, -0.036646436899900436, 0.028525343164801598, 0.0038416581228375435, -0.013767791911959648, -0.02525152638554573, 0.001628977246582508, 0.0005753763252869248, -0.02332276664674282, -0.04720385745167732, -0.045884180814027786, -0.012175296433269978, 0.048371266573667526, 0.0062018511816859245, -0.001836762996390462, -0.0023395728785544634, -0.005189886782318354, -0.015062090940773487, -0.004530047532171011, 0.004495152272284031, 0.00500272074714303, -0.023284699767827988, 0.02784012444317341, 0.015531592071056366, 0.011280707083642483, -0.013323669321835041, 0.028068531304597855, 0.001763800042681396, 0.04354936629533768, 0.01971903070807457, -0.01145835593342781, 0.02733255736529827, -0.02193964272737503, -0.0069283084012568, -0.010386117734014988, 0.00327698839828372, 0.034565407782793045, -0.0019144844263792038, -0.012695553712546825, 0.02360192872583866, -0.01629294455051422, -0.014376874081790447, -0.017409594729542732, -0.004888517782092094, -0.017434973269701004, -0.04002176597714424, 0.017460351809859276, -0.0451989620923996, -0.018018677830696106, 0.026292040944099426, 0.019909368827939034, 0.03103780560195446, -0.00527236657217145, -0.027408691123127937, 0.021850818768143654, 0.020061640068888664, 0.0010294121457263827, -0.03624038025736809, -0.004641078412532806, 0.019097259268164635, -0.015341253951191902, -0.03436237946152687, -0.024908917024731636, -0.02733255736529827, -0.010309982113540173, -0.024185633286833763, 0.02261217124760151, 0.015950335189700127, -0.017155811190605164, 0.021584345027804375, -0.023132428526878357, 0.010436874814331532, -0.01668631099164486, 0.0061669559217989445, -0.03712862730026245, 0.029616614803671837, 0.0022047501988708973, 0.021317871287465096, 0.010836584493517876, 0.009161609224975109, -0.0018082123715430498, -0.007816553115844727, 0.013349047861993313, 0.0047584534622728825, -0.0036893875803798437, -0.02096257358789444, 0.046391747891902924, -0.02332276664674282, -0.0020350320264697075, -0.028576098382472992, 0.01545545645058155, -0.030530236661434174, -0.017066987231373787, -0.0014798790216445923, -0.0023157806135714054, 0.04263574257493019, 0.0014711552066728473, 0.013628210872411728, 0.010792172513902187, 0.0036132524255663157, -0.02001088298857212, 0.0021920609287917614, -0.04882807657122612, -0.006125715561211109, 0.011306085623800755, 0.0030073425732553005, -0.0006749072927050292, 0.0023157806135714054, -0.020734168589115143, -0.04598569497466087, 0.023639997467398643, 0.0045522539876401424, -0.01931297592818737, 0.022396454587578773, -0.04108766093850136, 0.010094266384840012, 0.0031834053806960583, -0.001599633484147489, -0.050147753208875656, 0.029438965022563934, 0.020581897348165512, -0.013082575052976608, 0.013336358591914177, -0.010747760534286499, -0.02761171944439411, -0.022713685408234596, -0.015062090940773487, -0.016457904130220413, 0.037458546459674835, -0.017016230151057243, -0.047127723693847656, -0.033575646579265594, 0.0054151201620697975, 0.013894683681428432, -0.002449017483741045, -0.0022269561886787415, -0.009853171184659004, -0.00855887122452259, 0.025010431185364723, 0.008438324555754662, -0.01077313907444477, 0.018526244908571243, -0.024490173906087875, -0.0018209015252068639, -0.035098351538181305, -0.02551800012588501, 0.02030273526906967, 0.0309109129011631, 2.7559375666896813e-05, 0.027662476524710655, -0.02041693776845932, -0.032230593264102936, -0.016876649111509323, 0.01413577888160944, 0.009694555774331093, 0.004568115342408419, 0.026393555104732513, -0.01095713209360838, -0.026977259665727615, -0.019680963829159737, -0.00793710071593523, -0.014237293042242527, -0.06694826483726501, -0.003267471445724368, -0.023348145186901093, -0.018005987629294395, 0.009808759205043316, 0.017485730350017548, 0.01779027096927166, 0.009206021204590797, -0.024667823687195778, -0.027129529044032097, -0.005643525626510382, 0.017752204090356827, 0.03035258874297142, -0.022409142926335335, -0.030174938961863518, 0.008914169855415821, 0.01020846888422966, 0.015683863312005997, 0.014605280011892319, -0.017054297029972076, 0.01904650218784809, 0.04651864245533943, 0.05057918652892113, -0.02966737188398838, -0.018132880330085754, -0.0026901124510914087, 0.050959862768650055, 0.0015385666629299521, 0.017016230151057243, 0.00716940313577652, 0.0177775826305151, -0.006195506546646357, -0.02248527854681015, -0.01639445871114731, 0.026951881125569344, 0.05852263420820236, -0.021432073786854744, 0.012118195183575153, -0.009396359324455261, -0.011141126044094563, 0.002514049643650651, 0.01864044927060604, -0.0004262781294528395, -0.015531592071056366, 0.012397357262670994, -0.011674072593450546, -0.0026837678160518408, 0.006833139341324568, 0.006560320965945721, -0.014922509901225567, 0.0501985102891922, -0.0033277450129389763, 0.005830691661685705, 0.01724463514983654, 0.009624765254557133, -0.03502221778035164, 0.061161987483501434, 0.02761171944439411, -0.010665280744433403, -0.0177775826305151, -0.004948791582137346, -0.017320770770311356, 0.03514910861849785, -0.01916070654988289, 0.003540289355441928, 0.006233573891222477, 0.02361461892724037, 0.01985861174762249, -0.025289593264460564, -0.002759902970865369, 0.0005111371865496039, -0.005887792911380529, 0.027231043204665184, -0.011420288123190403, -0.0022047501988708973, -0.005913171451538801, -0.030860157683491707, -0.007277261465787888, 0.02923593856394291, 0.019414490088820457, 0.023627307265996933, -0.0023586067836731672, 0.020772235468029976, -0.017434973269701004, 0.007086923345923424, 0.024617066606879234, -0.011172848753631115, -0.002398260636255145, 0.02565758116543293, 0.015252429060637951, 0.024325214326381683, 0.019401801750063896, 0.008178194984793663, 0.0027694199234247208, -0.008044959045946598, -0.005938549991697073, 0.04245809465646744, -0.04294028505682945, 0.004837761167436838, 0.013234845362603664, -0.007689660880714655, -0.00930119026452303, -0.016521349549293518, -0.014757550321519375, 0.0014767067041248083, 0.0259113647043705, -0.002698043128475547, 0.016077227890491486, -0.0029597580432891846, -0.01483368594199419, -0.006706247106194496, -0.030251074582338333, -0.021736616268754005, -0.03190067037940025, -0.02301822602748871, 0.0074485656805336475, -0.03887973725795746, 0.008463702164590359, 0.011344153434038162, 0.007924411445856094, 0.025708338245749474, 0.03507297486066818, -0.03314421325922012, 0.02827155776321888, 0.00013214621867518872, -0.011432977393269539, -0.0052438159473240376, 0.02223149500787258, -0.006093992851674557]
Name: Banter NYC - West Village, Address: 643 Hudson St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0057191, 40.7391397]}, Rating: 4.4, Reviews: ['Cute and fun brunch spot in the west village.. some cool, kind of on the healthier side options. They dont take reservations so had to wait 20mins on a Saturday morning which was fine. Service was good, food was nice, nothing show-stopping. But would defo go again and will try the other locations.', 'Good spot just popped in for some coffee and matcha 🍵 latte. They have Gluten free options available and clearly marked', 'Loved the sides more than the mains, good portions. The juice was not my favorite. - When they’re not crowded the service is so much better.', 'Stopped in for brunch on a Saturday with the dog the staff was very kind and accommodating.\n\nGot the fried chicken sandwich and wanted to love it but unfortunately did not.\n\nThe bun was stale… the chicken was dry missing sauce or flavor…\n\nThe sweet potato fries were super salty you can even see in the photo.\n\nHope they fix - a chicken sandwich is a must have and must be top notch.', "Young and health vibe brunch place. It's kind of pricey but okay with the portion size. Also the coffee taste very acidic and burnt. I ordered cappuccino and defintely not foamy enough."], Embedding: [-0.051945898681879044, 0.020133312791585922, -0.04124397039413452, -0.04143944010138512, -0.02990676462650299, -0.0124000683426857, -0.0013033815193921328, 0.0009910891531035304, 0.031372781842947006, 0.014953382313251495, -0.005570868030190468, -0.056539423763751984, -0.004960027057677507, -0.004419432953000069, -0.07066205888986588, 0.03858070448040962, 0.011783118359744549, -0.017824333161115646, 0.001183504005894065, 0.016700387001037598, 0.04593522846698761, 0.021611547097563744, -0.03787212818861008, 0.01330411247909069, 0.009577983058989048, 0.045226652175188065, 0.01090350840240717, -0.047645580023527145, 0.005021111108362675, -0.03547763079404831, 0.024604666978120804, -0.009309213608503342, -0.046252865344285965, -0.022747710347175598, 0.021782582625746727, 0.010634738020598888, -0.0008108911570161581, -0.010659171268343925, 0.0038024839013814926, 0.0325944647192955, 0.02207578532397747, -0.013499581255018711, 0.020316563546657562, -0.022112436592578888, 0.017848767340183258, -0.013316328637301922, 0.0013133076718077064, -0.015832992270588875, -0.06929377466440201, -0.009938379749655724, -0.018850546330213547, 0.026534924283623695, -0.02461688406765461, 0.011880853213369846, 0.005650277249515057, -0.04251451790332794, -0.009913945570588112, -0.037823259830474854, 0.03103071264922619, 0.027781039476394653, 0.10477141290903091, -0.02607068419456482, 0.059618059545755386, 0.01690807193517685, -0.028391879051923752, -0.03398717939853668, 0.012210707180202007, -0.020218830555677414, -0.011379963718354702, 0.004773720633238554, 0.012571102939546108, 0.015515356324613094, -0.016614869236946106, 0.005106628872454166, 0.0067558991722762585, -0.011996912769973278, 0.047376811504364014, -0.04036435857415199, 0.011117301881313324, 0.0014538010582327843, -0.03447585552930832, -0.015380971133708954, -0.041048500686883926, -0.014843431301414967, 0.04439590871334076, -0.043076492846012115, -0.0866905227303505, 0.000819290173240006, -0.007574425544589758, 0.004636281635612249, 0.04718134179711342, 0.01050646137446165, 0.04055982828140259, 0.029222622513771057, 0.03589300438761711, -0.022943180054426193, -0.03980238363146782, 0.00527766440063715, -0.04124397039413452, -0.0063283103518188, 0.033376339823007584, -0.01575969159603119, -0.02685256116092205, -0.010298775508999825, 0.017848767340183258, 0.0045935227535665035, 0.02567974664270878, 0.006578755099326372, 0.01545427180826664, -0.02580191381275654, -0.021697064861655235, 0.003023661905899644, -0.04659493640065193, 0.008771673776209354, -0.0496002733707428, -0.005613626912236214, -0.017677731812000275, 0.0067192488349974155, -0.007708810735493898, -0.005989294033497572, -0.028416313230991364, 0.05052874982357025, 0.006291660014539957, 0.0001510876463726163, -0.030737508088350296, -0.02809867635369301, 0.015197718515992165, 0.013841652311384678, -0.07721027731895447, -0.04456694424152374, 0.04310092702507973, -0.034158214926719666, -0.0401688888669014, -0.019241483882069588, -0.003240510355681181, -0.04363846406340599, -0.017152410000562668, -0.019876759499311447, -0.029540259391069412, -0.0018065616022795439, 0.019766807556152344, -0.03303426876664162, 0.05561094358563423, -0.04820755496621132, -0.05522000789642334, -0.03457358852028847, -0.015368754044175148, 0.014525793492794037, -0.014428059570491314, 0.0479632169008255, -0.0028740058187395334, 0.03679705038666725, -0.02712133154273033, -0.03093297779560089, -0.04999120905995369, -0.03159268572926521, 0.023566236719489098, 0.06255009770393372, -0.04393167048692703, 0.04938036948442459, -0.03093297779560089, 0.034280385822057724, -0.03638167679309845, -0.020939622074365616, -0.001666068215854466, 0.0064565869979560375, -0.009144286625087261, -0.006890283897519112, -0.025899648666381836, -0.028709515929222107, 0.03450028598308563, -0.04578862339258194, 0.06753455847501755, 0.002812921768054366, -0.02800094150006771, -0.0037536167073994875, 0.060742005705833435, -0.005610572639852762, 0.009846753440797329, -0.019436953589320183, -0.0059801312163472176, 0.06445591896772385, 0.018044237047433853, 0.0248001366853714, -0.019424736499786377, 0.015881860628724098, 0.028929419815540314, -0.017726600170135498, 0.032130226492881775, 0.03291210159659386, -0.0029488338623195887, 0.005036382470279932, 0.0014041702961549163, -0.06347857415676117, -0.01621171459555626, -0.028831684961915016, 0.024262595921754837, 0.02062198519706726, -0.01801980286836624, 0.06132841482758522, -0.030444305390119553, 0.020487599074840546, -0.0031305591110140085, -0.009266454726457596, 0.008521229028701782, 0.0010483554797247052, -0.009803994558751583, 0.008826649747788906, 0.03870287165045738, -0.04173264279961586, 0.017518913373351097, 0.001400352455675602, -0.04681483656167984, -0.03103071264922619, 0.032130226492881775, -0.015002249740064144, -0.03743232414126396, 0.0032588355243206024, 0.009003792889416218, 0.03740788996219635, 0.008759456686675549, 0.06274556368589401, 0.006053432356566191, 0.03281436860561371, 0.02434811368584633, 0.039997853338718414, -0.018227489665150642, -0.033645112067461014, -0.023126432672142982, -0.013511798344552517, -0.021330559626221657, 0.03310757130384445, -0.005766336806118488, 0.011153952218592167, 0.010671388357877731, -0.020157745108008385, 0.01520993560552597, 0.006169491913169622, 0.027145763859152794, 0.014647961594164371, 0.018410740420222282, -0.04048652574419975, 0.011514348909258842, 0.04310092702507973, 0.052972111850976944, -0.039362579584121704, -0.002177647314965725, -0.03992455452680588, 0.01106843538582325, 0.0007814944256097078, 0.017127975821495056, -0.01167316734790802, -0.01208243053406477, 0.002750310581177473, -0.011691492982208729, -0.002499865833669901, 0.015857426449656487, -0.020402081310749054, 0.04466467723250389, -0.036601580679416656, -0.02252780832350254, 0.061377283185720444, 0.036186207085847855, -0.05448699742555618, -0.05590415000915527, -0.019217051565647125, 0.01406155526638031, 0.04163490608334541, -0.02328525111079216, 0.006218359339982271, -0.02582634799182415, 0.006129787303507328, 0.016956940293312073, 0.013707267120480537, 0.03244786337018013, -0.0022173519246280193, -0.012754355557262897, -0.004975297953933477, -0.02863621525466442, 0.0465216338634491, -0.03652827814221382, -0.04224574938416481, -0.0405842624604702, -0.016443833708763123, 0.00813639909029007, 0.002603708766400814, 0.04767001420259476, -0.03826306760311127, 0.02244229055941105, 0.07075979560613632, 0.006988018751144409, 0.002258583903312683, -0.009657393209636211, 0.008490687236189842, -0.017372312024235725, 0.024006042629480362, 0.071737140417099, 0.018361873924732208, 0.037090253084897995, 0.017213493585586548, 0.032130226492881775, -0.020964056253433228, -0.052336838096380234, -0.024568015709519386, 0.022026918828487396, 0.020182179287075996, -0.0021715390030294657, 0.05087082087993622, 0.017433395609259605, -0.0007425533258356154, -0.07579312473535538, 0.03579527139663696, 0.024396980181336403, -0.03469575569033623, -0.013829435221850872, 0.008759456686675549, 0.061768218874931335, 0.034524720162153244, -0.04085303097963333, 0.017494479194283485, -0.01469682902097702, -0.023309683427214622, 0.00046500255120918155, 0.019339218735694885, -0.01527101919054985, -0.06753455847501755, 0.0623057596385479, -0.012925391085445881, -0.00731787271797657, -0.059618059545755386, 0.01406155526638031, -0.06035107001662254, 0.010103306733071804, 0.006884175818413496, -0.05380285531282425, -0.04107293486595154, -0.02332190051674843, 0.009400839917361736, 0.0026021816302090883, -0.004813425242900848, 0.010940158739686012, -0.06533552706241608, -0.015796342864632607, -0.008930492214858532, -0.004779829178005457, -0.028171977028250694, -4.06352301070001e-05, 0.004098741803318262, -0.05140836164355278, -0.013206377625465393, -0.02071972005069256, 0.009327538311481476, -0.002680063946172595, 0.018887197598814964, 0.02800094150006771, 0.05067535117268562, -0.025044472888112068, 0.08331868052482605, -0.04964913800358772, -0.02150159515440464, 0.029320357367396355, 0.01863064430654049, -0.0236761886626482, 0.019192617386579514, 0.03559980168938637, 0.022356772795319557, 0.016883639618754387, 0.02016996219754219, -0.0362839438021183, -0.009773452766239643, 0.012027454562485218, 0.04644833132624626, 0.007073536049574614, 0.01684698835015297, -0.05531774088740349, 0.008447928354144096, 0.003521497128531337, -0.02234455570578575, -0.006172546185553074, -0.012045780196785927, 0.050333280116319656, -0.035673100501298904, 0.010127739980816841, -0.006645947694778442, 0.017286794260144234, 0.0030893273651599884, -0.02180701680481434, -0.03027326986193657, -0.0043155900202691555, -0.010494244284927845, -0.03012666665017605, -0.030590906739234924, -0.02873395010828972, 0.003897164249792695, -0.0016355261905118823, 0.0219291839748621, 0.00846625305712223, -0.003031297354027629, -0.04923376813530922, 0.023175299167633057, 0.0385318361222744, -0.00045240396866574883, -0.03735902160406113, 0.021245041862130165, 0.022930962964892387, 0.013426280580461025, -0.00448967982083559, -0.030957410112023354, 0.0008223443874157965, 0.004617956466972828, 0.020218830555677414, -0.04456694424152374, 0.0022982885129749775, 0.0332053042948246, 0.034011613577604294, -0.028562914580106735, 0.017005806788802147, 0.01545427180826664, -0.018349656835198402, 0.04974687471985817, -0.0005730449920520186, -0.017042458057403564, -0.027952075004577637, -0.0024311463348567486, -0.011013459414243698, 0.01766551472246647, 0.006988018751144409, -0.04131726920604706, -0.06748569011688232, 0.013181944377720356, -0.056783758103847504, -0.04080416262149811, -0.002283017383888364, 0.016688169911503792, 0.022161303088068962, -0.01672482118010521, -0.05282551050186157, -0.031226180493831635, -0.020267697051167488, -0.04187924414873123, 0.004523275885730982, -0.006975801661610603, -0.0017164625460281968, -0.06342970579862595, -0.017372312024235725, 0.03435368463397026, 0.09275006502866745, 0.012369525618851185, 0.034646887332201004, -0.03308313712477684, 0.01590629480779171, -0.004178151022642851, -0.045495420694351196, -0.07750348001718521, -0.010701930150389671, 0.035428766161203384, 0.006227521691471338, 0.0004943992826156318, 0.03308313712477684, -0.015136634930968285, -0.015185501426458359, 0.0157841257750988, -0.02244229055941105, -0.019754590466618538, 0.013695050030946732, 0.02555757761001587, -0.02238120697438717, 0.06733908504247665, 0.029442526400089264, -0.05126176029443741, -0.020218830555677414, 0.023944959044456482, -0.008221916854381561, 0.009803994558751583, 0.0036864241119474173, -0.04131726920604706, 0.013695050030946732, 0.0037047492805868387, -0.006184762809425592, 0.02043873257935047, -0.07515785098075867, 0.028196411207318306, -0.018398525193333626, -0.05028441175818443, -0.00849679484963417, -0.03904494270682335, 0.0159918125718832, 0.009773452766239643, -0.025630880147218704, 0.01863064430654049, 0.03965578228235245, 0.025264374911785126, 0.0016614869236946106, -0.010591979138553143, -0.04539768770337105, 0.010622520931065083, 0.0017607485642656684, 0.0006463458994403481, 0.013756134547293186, -0.040291059762239456, -0.04239235073328018, -0.02976016327738762, -0.002127252984791994, -0.011001242324709892, 0.004227017983794212, -0.01456244383007288, -0.03178815543651581, 0.027536703273653984, 0.014904514886438847, 0.022393422201275826, -0.020915187895298004, 0.03410935029387474, -0.009608525782823563, 0.015820777043700218, -0.0022631650790572166, 0.022576674818992615, -0.010194933041930199, 0.01099513377994299, -0.011905286461114883, 0.02631502039730549, 0.006829199846833944, -0.006645947694778442, 0.017042458057403564, -0.031763721257448196, 0.007953147403895855, -0.012106864713132381, -0.008857191540300846, 0.020402081310749054, -0.02295539714396, -0.035062260925769806, -0.009687935002148151, -0.018361873924732208, -0.0199867095798254, 0.017213493585586548, -0.013695050030946732, -0.027805471792817116, -0.00036020518746227026, 0.017079107463359833, 0.0019409465603530407, -0.05116402357816696, 0.009016009978950024, -0.011654841713607311, 0.0063466355204582214, -0.001603457028977573, -0.006035106722265482, 0.006102299317717552, 0.018032019957900047, 0.022307904437184334, 0.00053219503024593, -0.0020127203315496445, -0.009413056075572968, -0.013719484210014343, -0.0004829459940083325, -0.02924705669283867, -0.026901427656412125, 0.010317101143300533, 0.03740788996219635, -0.04454251006245613, -0.002980903023853898, 0.012143515050411224, 0.026046251878142357, -0.005842692218720913, -0.013487364165484905, 0.0006158038740977645, 0.014134855940937996, -0.015307670459151268, 0.015894077718257904, 0.003744453890249133, -0.0019058232428506017, 0.018557343631982803, -0.015613090246915817, -0.009920054115355015, 0.02461688406765461, -0.038360800594091415, 0.04075529798865318, 0.028269711881875992, 0.049673572182655334, 0.01398825366050005, 0.015161068178713322, 0.02422594465315342, -0.025899648666381836, -0.02863621525466442, 0.007189596071839333, 0.030688641592860222, 0.005204363260418177, 0.02238120697438717, 0.018789462745189667, 0.009144286625087261, 0.03843410313129425, 0.01545427180826664, 0.007843195460736752, 0.024030476808547974, 0.005192146636545658, -0.02712133154273033, 0.028049807995557785, -0.00011567797628231347, -0.0030893273651599884, 0.0017408962594345212, 0.002751837717369199, -0.0379209965467453, -0.00583658367395401, 0.008008122444152832, -0.008698373101651669, 0.012424501590430737, -0.02068306878209114, 0.038116466253995895, -0.018105320632457733, -0.000738735543563962, 0.04933150112628937, -0.020218830555677414, 0.0087105892598629, -0.013707267120480537, 0.03774996101856232, -0.025630880147218704, -0.010976809076964855, -0.006438261829316616, -0.011752576567232609, -0.01180755253881216, 0.0409996323287487, -0.027561135590076447, -0.007782111410051584, 0.000710484164301306, 0.01971794106066227, 0.005622789263725281, 0.02482456900179386, 0.0061481124721467495, 0.011483807116746902, -0.024910086765885353, -0.04055982828140259, -0.019498037174344063, -0.0014515103539451957, -0.014550227671861649, 0.02670595981180668, -0.003332136431708932, 0.010989025235176086, -0.011453264392912388, -0.04285658895969391, -0.0004191894840914756, 0.003240510355681181, 0.02295539714396, 0.030468737706542015, -0.0038880016654729843, 0.05316758155822754, -0.014354757964611053, -0.019180400297045708, 0.006267226301133633, 0.023602887988090515, 0.005460916552692652, 0.0029915927443653345, -0.015405404381453991, 0.007818762212991714, -0.016187280416488647, 0.028465179726481438, -0.01244282629340887, -0.007464474532753229, 0.05409605801105499, -0.01944917067885399, -0.010072764940559864, 0.01859399303793907, 0.01738452911376953, 0.034524720162153244, 0.02555757761001587, 0.001511067384853959, 0.013951603323221207, 0.017250142991542816, 0.017396746203303337, 0.019913408905267715, 0.005583084654062986, 0.012558886781334877, -0.017005806788802147, 0.07286109030246735, 0.006554321385920048, 0.03093297779560089, -0.03029770217835903, 0.013866085559129715, 0.037334587424993515, 0.012962041422724724, -0.006358852609992027, 0.017726600170135498, 0.01374391745775938, -0.030981844291090965, -0.0005486113950610161, 0.009907837025821209, 0.002174593275412917, -0.010274342261254787, -0.01902158185839653, -0.00048409131704829633, -0.006166437640786171, -0.003119869390502572, 0.027683304622769356, -0.003668098943307996, 0.05004007741808891, 0.008991576731204987, -0.02199026755988598, 0.00495086470618844, 0.0200844444334507, -0.015417621470987797, 0.013426280580461025, 0.04388280212879181, -0.04402940347790718, 0.018422957509756088, -0.03398717939853668, 0.038482967764139175, 0.0026434133760631084, -0.015356536954641342, 0.022478939965367317, 0.015942944213747978, -0.0018936063861474395, 0.018765028566122055, -0.04850075766444206, -0.05091968923807144, -0.015600873157382011, -0.03933814540505409, 0.03735902160406113, 0.021489378064870834, -0.01483121421188116, 0.0017317336751148105, -0.033132005482912064, 0.008735023438930511, 0.00539066968485713, -0.04412713646888733, 0.02135499380528927, -0.004410270601511002, -0.06181708723306656, 0.009657393209636211, 0.004297264851629734, 0.03447585552930832, 0.02346850372850895, -0.00473401602357626, -0.013145294040441513, -0.004059037193655968, 0.00843571126461029, -0.002938144141808152, 0.0007410262478515506, -0.030615340918302536, 0.0036131232045590878, -0.0028388826176524162, -0.003338244976475835, -0.06939151138067245, -0.014098205603659153, -0.005091357976198196, -0.022943180054426193, -0.006065648980438709, 0.004566034767776728, -0.0221368707716465, -0.010482028126716614, 0.014501360245049, 0.006316093727946281, -0.013389630243182182, -0.021635981276631355, -0.024580232799053192, 0.00925423763692379, 0.03254559636116028, 0.02385944128036499, -0.005115791689604521, -0.029491392895579338, 0.03537989780306816, 0.006050378084182739, -0.011361639015376568, -0.003219130914658308, 0.02186810038983822, 0.017079107463359833, -0.004892834462225437, -0.028660649433732033, 0.009034335613250732, 0.020035577937960625, 0.008887733332812786, -0.03755449131131172, -0.004251451697200537, 0.015527572482824326, -0.012583320029079914, -0.0036222857888787985, 0.002953415270894766, 0.022784361615777016, 0.04376063495874405, -0.06167048588395119, -0.008826649747788906, -0.029002720490098, -0.00851512048393488, 0.0422213152050972, 0.06748569011688232, -0.03210579231381416, -0.012571102939546108, -0.0002739239134825766, 0.02283322811126709, -0.020793020725250244, 0.013181944377720356, -0.00976734422147274, 0.0035734185948967934, -0.002111982088536024, 0.020915187895298004, -0.020731935277581215, 0.032008055597543716, 0.016981374472379684, 0.010249908082187176, 0.0003023661847691983, 0.003576472867280245, -0.03408491611480713, 0.013291895389556885, 0.05849411338567734, -0.021880317479372025, -0.05263004079461098, 0.024262595921754837, 0.0008154724491760135, 0.013426280580461025, 0.01483121421188116, 0.028685083612799644, 0.0479632169008255, 0.04889169707894325, -0.05536660924553871, -0.0016859205206856132, -0.006487129256129265, -0.03814089670777321, -0.010756906121969223, 0.00805698987096548, 0.010909616015851498, -0.007647726684808731, -0.018826112151145935, 0.026168419048190117, -0.009211478754878044, 0.002793069463223219, 0.005616681184619665, -0.0029488338623195887, -0.02873395010828972, -0.029369225725531578, 0.007757678162306547, 0.02851404808461666, 0.027390100061893463, -0.04156160727143288, -0.02416486106812954, 0.0019714885856956244, -0.005796879064291716, 0.008283001370728016, 0.0026403593365103006, -0.011660950258374214, 0.016382750123739243, -0.01690807193517685, 0.037212420254945755, 0.004795100074261427, -0.010634738020598888, 0.04767001420259476, 0.017164625227451324, -0.031201746314764023, 0.0031733177602291107, -0.013206377625465393, 0.03393831476569176, -0.012418393045663834, -0.0199867095798254, 0.01336519606411457, -0.0210129227489233, 0.006025944370776415, -0.06499345600605011, 0.019644640386104584, 0.0021089278161525726, -0.012332875281572342, 0.024201512336730957, 0.05179929733276367, 0.025753047317266464, 0.020707502961158752, -0.010298775508999825, -0.06342970579862595, 0.01990119181573391, -0.009370297193527222, -0.008826649747788906, -0.021245041862130165, -0.009975030086934566, -0.003344353288412094, -0.01805645413696766, 0.019644640386104584, -0.002574693877249956, -0.03767665848135948, -0.021978050470352173, 0.00401322403922677, 0.02976016327738762, -0.0064565869979560375, 0.02555757761001587, 0.018410740420222282, -0.0076660518534481525, -0.005408995319157839, 0.005299043841660023, 0.017824333161115646, -0.014171506278216839, -0.002521245274692774, 0.011844202876091003, 0.019363652914762497, 0.03523329645395279, -0.03638167679309845, 0.025142205879092216, 0.004401107784360647, -0.00728122191503644, -0.0001498468773206696, -0.034793492406606674, 0.021159524098038673, -0.012070213444530964, -0.024543583393096924, 0.02049981616437435, 0.019559122622013092, 0.0072506801225245, 0.024519149214029312, -0.031250614672899246, 0.002867897506803274, 0.044347040355205536, -0.017799900844693184, -0.034304820001125336, -0.015197718515992165, 0.001722570974379778, -0.014977815560996532, -0.0012865833705291152, 0.004260614514350891, -0.007690485566854477, 0.03591743856668472, -0.04173264279961586, -0.006303877104073763, -0.018166404217481613, -0.041292835026979446, 0.012271791696548462, 0.011056218296289444, -0.009162611328065395, 0.02340741828083992, 0.04659493640065193, -0.0002836591738741845, -0.01736009493470192, -0.02313864976167679, 0.010463702492415905, -0.03029770217835903, 0.020695285871624947, 0.015112200751900673, 0.015393187291920185, -0.021183958277106285, 0.016443833708763123, -0.012668837793171406, -0.007818762212991714, 0.03286323323845863, -0.01132498774677515, 0.029564693570137024, -0.0315682515501976, 0.023053131997585297, 0.007837086915969849, -0.017860984429717064, 0.0010827152291312814, 0.014489143155515194, -0.01703024096786976, -0.0032313477713614702, -0.029442526400089264, -0.008912166580557823, 0.0056869275867938995, -0.00928477942943573, -0.014452492818236351, 0.031226180493831635, 0.036845915019512177, 0.019070448353886604, 0.05189703404903412, -0.01826413907110691, -0.0037261287216097116, -0.005094412248581648, -0.03882503882050514, -0.005683873314410448, -0.020939622074365616, 0.009382514283061028, -0.033278606832027435, -0.03027326986193657, 0.035819701850414276, 0.00040544557850807905, -0.0024662697687745094, 0.0006054959376342595, -0.0019073503790423274, -0.017494479194283485, 0.02851404808461666, -0.01678590476512909, 0.0799468383193016, -0.0032252392265945673, 0.018190838396549225, 0.011105085723102093, -0.002806813456118107, 0.007042994257062674, 0.025850782170891762, -0.001750058843754232, 0.04004672169685364, 0.025606445968151093, 0.00966350082308054, -0.008826649747788906, 0.03904494270682335, 0.02619285322725773, 0.0020127203315496445, -0.010078872554004192, 0.012503910809755325, -0.01039040181785822, 0.003310756990686059, 0.006371069233864546, 0.014721263200044632, 0.003035878762602806, -0.034426987171173096, -0.028465179726481438, 0.021122874692082405, 0.0009941434254869819, -0.005891559179872274, 0.04231904819607735, 0.005775499623268843, 0.020524250343441963, 0.03547763079404831, -0.03151938319206238, 0.0305420383810997, 0.014342541806399822, -0.026876995339989662, -0.012681054882705212, 0.005295989569276571, -0.0006952131516300142, 0.0023181408178061247, -0.014147072099149227, -0.02824527770280838, 0.01147769857198, -0.032496728003025055, 0.022723278030753136, -0.0012934553669765592, -0.0026495219208300114, 0.0058243670500814915, -0.003555093426257372, 0.007580534089356661, -0.026437189429998398, -0.011740359477698803, 0.01908266544342041, 0.0136828338727355, -0.0021394698414951563, 0.00585185457020998, 0.007427823729813099, -0.012913173995912075, 0.034304820001125336, 0.019119316712021828, 0.001834049471653998, 0.006658164318650961, -0.01147769857198, 0.018789462745189667, 0.01648048497736454, -0.004853129852563143, 0.012448934838175774, 0.04490901529788971, 0.02186810038983822, 0.013853869400918484, -0.009858970530331135, 0.013255245052278042, -0.04876952990889549, -0.016248364001512527, -0.002344101434573531, -0.010646955110132694, -0.00086739391554147, 0.012888740748167038, -0.0031794263049960136, -0.0073789567686617374, 0.023566236719489098, 0.03826306760311127, -0.02488565258681774, -0.02646162360906601, 0.030835242941975594, -0.018227489665150642, 0.0032557814847677946, 0.01412263885140419, 0.04566645622253418, -0.04278329014778137, 0.02812311053276062, 0.007983689196407795, -0.0033474075607955456, -0.01572304219007492, 0.020145529881119728, -0.013731700368225574, -0.004929485265165567, 0.0076721603982150555, 0.036308374255895615, -0.010182715952396393, -0.001036138623021543, -0.0005848800647072494, 0.03831193223595619, 0.022882096469402313, 0.006175600457936525, 0.010194933041930199, -0.05619735270738602, 0.014134855940937996, -0.008081423118710518, 0.021648196503520012, -0.003035878762602806, 0.0375056229531765, -0.03906937688589096, 0.007611076347529888, -0.04393167048692703, -0.00022925618395674974, -0.013670616783201694, 0.017909850925207138, -0.013780567795038223, -0.06059540435671806, 0.014281457290053368, 0.0004142264078836888, 0.0033015944063663483, -0.0016187280416488647, 0.01341406349092722, 0.04933150112628937, 0.008765565231442451, -0.04569089040160179, 0.00636496115475893, 0.0013774459948763251, -0.010396510362625122, 0.037334587424993515, -0.003661990398541093, -0.020854104310274124, -0.01877724565565586, -0.018972715362906456, -0.010695822536945343, 0.0076660518534481525, -0.0048164795152843, -0.010109415277838707, -0.006853633560240269, 0.0279765073210001, 0.007232354953885078, 0.038605138659477234, 0.008356302045285702, -0.0009223695960827172, 0.022882096469402313, 0.006688706576824188, -0.033522941172122955, 0.010573653504252434, -0.04627729952335358, 0.010646955110132694, -0.02545984461903572, 0.004642389714717865, 0.014745696447789669, -0.0015278655337169766, 0.02724349871277809, -0.027170198038220406, -0.016712604090571404, 0.006123678758740425, -0.03779882937669754, 0.019461387768387794, 0.0020478437654674053, 0.014244806952774525, 0.00843571126461029, -0.015918510034680367, 0.044224873185157776, 0.007488907780498266, 0.00012083194451406598, -0.013206377625465393, 0.01838630810379982, -0.04962470382452011, 0.06142614781856537, 0.023065347224473953, 0.034940093755722046, -0.028025375679135323, 0.03941144794225693, -0.04124397039413452, 0.011660950258374214, 0.0895736888051033, -0.03777439519762993, 0.03247229754924774, -0.000475692271720618, 0.020011143758893013, -0.000566554837860167, -0.011850311420857906, 0.024543583393096924, 0.014770129695534706, -0.0136828338727355, -0.0046149021945893764, -0.008533446118235588, 0.018410740420222282, 0.008851082995533943, 0.047254644334316254, 0.026559356600046158, -0.009376405738294125, -0.019498037174344063, 0.012302333489060402, -0.02746340073645115, -0.01078133936971426, 0.04270998761057854, 0.013047559186816216, -0.005900721997022629, -0.003533713985234499, -0.025044472888112068, 0.011758685111999512, -1.8193988580605946e-05, 0.0199867095798254, 0.03992455452680588, 0.013633966445922852, -0.003793321317061782, -0.006251955404877663, -0.04669266939163208, 0.024568015709519386, -0.014513577334582806, -0.0018890250939875841, 0.004788991529494524, -0.008942709304392338, -0.025484276935458183, -0.04393167048692703, -0.008337976410984993, 0.004199530463665724, -0.00012150005204603076, 0.029418092221021652, 0.011691492982208729, 0.005766336806118488, -0.026950296014547348, -0.009290887974202633, -0.008460144512355328, -0.002980903023853898, 0.01139828935265541, 0.008521229028701782, 0.008961034007370472, -0.015002249740064144, -0.024910086765885353, 0.01744561269879341, -0.045373253524303436, -0.026876995339989662, 0.004920322448015213, 0.004251451697200537, 0.005595301743596792, -0.022821011021733284, 0.021538246423006058, 0.020646417513489723, 0.004972244147211313, 0.017653299495577812, 0.01150824036449194, -0.04771888256072998, -0.015674173831939697, -0.01826413907110691, -0.019852325320243835, -0.034549154341220856, 0.0021669575944542885, -0.002177647314965725, 0.009125960990786552, 0.0019012419506907463, 0.0019485821248963475, 0.01194804534316063, -0.03303426876664162, -0.027634436264634132, -0.010494244284927845, 0.034646887332201004, 6.514044071082026e-05, 0.007574425544589758, -0.00249070324935019, -0.0124000683426857, 0.012290116399526596, -0.005537271499633789, 0.022026918828487396, -0.02721906453371048, 0.03843410313129425, -0.012962041422724724, 0.0015217571053653955, 0.02186810038983822, -0.020878538489341736, -0.036088474094867706, 0.014794563874602318, 0.019852325320243835, 0.020878538489341736, 0.026632657274603844, -0.00864950567483902, -0.022430073469877243, -0.0184473916888237, -0.02319973334670067, -0.010598087683320045, -0.02295539714396, -0.029980065301060677, -0.031372781842947006, -0.01929035224020481, 0.009248129092156887, 0.006615405902266502, 0.0010384293273091316, -0.02412821166217327, -0.048525191843509674, 0.008533446118235588, -0.02404269389808178, 0.0047767749056220055, -0.02392052486538887, -0.01793428510427475, 0.0015057225245982409, 0.014476926997303963, 0.006358852609992027, -0.008533446118235588, -0.005018056835979223, -0.009889512322843075, 0.030761942267417908, 0.04972244054079056, -0.026559356600046158, 0.008631180040538311, -0.012235140427947044, 0.016553785651922226, -0.010066656395792961, -0.03369397670030594, -0.015515356324613094, 0.017127975821495056, 0.02010887861251831, -0.006865850184112787, -0.02319973334670067, -0.025533145293593407, -0.03335190564393997, 0.011636517010629177, -0.028978286311030388, -0.0087105892598629, -0.01145937293767929, -0.06445591896772385, 0.011728143319487572, 0.011941937729716301, 0.004385836888104677, 0.08087532222270966, -0.021758148446679115, -0.017970936372876167, 0.00925423763692379, 0.01469682902097702, 0.008478470146656036, -0.004336969461292028, 0.007085753139108419, -0.021794799715280533, -0.01717684231698513, 0.006169491913169622, -0.012583320029079914, -0.008722806349396706, 0.008093640208244324, -0.02746340073645115, -0.005961806047707796, -0.0027686357498168945, -0.048647359013557434, 0.002420456614345312, -0.01148991473019123, 0.02174593135714531, -0.004709582310169935, 0.000979635864496231, -0.013059776276350021, 0.019461387768387794, -0.019669072702527046, 0.04617956280708313, -0.029418092221021652, 0.017470046877861023, -0.005369290243834257, 0.037701092660427094, 0.0003821572754532099, 0.008014230988919735, -0.007104078307747841, 0.004275885410606861, 0.02340741828083992, 0.004688202869147062, 0.013646183535456657, -0.012815440073609352, -0.012619970366358757, -0.03274106606841087, -0.056686025112867355, -0.007653835229575634, 0.007256788667291403, 0.028465179726481438, 0.007983689196407795, 0.012693271040916443, 0.018606210127472878, -0.006700923200696707, -0.034011613577604294, 0.03528216481208801, -0.046888139098882675, -0.03247229754924774, 0.036699313670396805, 0.022735493257641792, 0.007305655628442764, -0.001280474942177534, -0.005082195159047842, -0.0226499754935503, 0.016859205439686775, 0.04085303097963333, 0.00193178397603333, 0.0012697852216660976, -0.043442998081445694, -0.022430073469877243, -0.011758685111999512, 0.013096426613628864, 0.004819533787667751, 0.007947038859128952, 0.013621749356389046, -0.0002496811794117093, -0.0034115458838641644, -0.023297468200325966, -0.03858070448040962, -0.013084209524095058, -0.017457829788327217, 0.0087105892598629, 0.013010908849537373, 0.006389394402503967, -0.0071957046166062355, 0.011105085723102093, -0.002533462131395936, 0.02966242842376232, -0.0017867092974483967, -0.020487599074840546, -0.008063098415732384, -0.0027900151908397675, -0.0026266153436154127, -0.011434939689934254, 0.035306598991155624, 0.015735259279608727, -0.002044789493083954, 0.03271663188934326, -0.021782582625746727, 0.03486679121851921, -0.02195361815392971, -0.002009666059166193, -0.007269005291163921, -0.0067864409647881985, -0.03303426876664162, 0.0004764558107126504, -0.022992046549916267, -0.05658828839659691, 0.015857426449656487, -0.002107400679960847, -0.04163490608334541, -0.004248397424817085, -0.027365667745471, -0.004999731667339802, 0.027023596689105034, -0.028171977028250694, -0.04608182981610298, 0.005793824791908264, -0.004782883450388908, 0.016688169911503792, 0.0017454775515943766, 0.004016278311610222, -0.004871455021202564, -0.0159918125718832, -0.020487599074840546, 0.008985468186438084, -0.013023125939071178, 0.021587112918496132, -0.015307670459151268, 0.006737574003636837, -0.01147769857198, 0.008063098415732384, -0.010842423886060715, -0.0033840578980743885, 0.016920289024710655, -0.002988538471981883, -0.011734251864254475, 0.017494479194283485, -0.02232012152671814, 0.008460144512355328, -0.015368754044175148, -0.011031784117221832, -0.008478470146656036, 0.027781039476394653, -0.014892298728227615, -0.007940930314362049, -0.007714919280260801, -0.014501360245049, -0.04124397039413452, 0.001609565457329154, 0.013157510198652744, 0.026950296014547348, 0.026876995339989662, -0.007501124870032072, -0.006474912166595459, -0.001658432767726481, 0.04258782044053078, -0.019485820084810257, 0.005341802723705769, -0.0029915927443653345, -0.004633227363228798, 0.01705467514693737, 0.022210171446204185, 0.0014171506045386195, -0.020707502961158752, -0.0005272319540381432, 0.026925861835479736, -0.029198190197348595, 0.011184494942426682, -0.006221413146704435, -0.02207578532397747, -0.040633127093315125, 0.00295188813470304, 0.043076492846012115, -0.019217051565647125, 0.0087105892598629, -0.029222622513771057, -0.027438968420028687, 0.015466488897800446, -0.02319973334670067, -0.02567974664270878, 0.058200910687446594, 0.004920322448015213, -0.0020005034748464823, 5.688454621122219e-05, 0.007116294931620359, -0.013976037502288818, 0.000605114153586328, 0.034549154341220856, 0.010940158739686012, 0.04876952990889549, 0.016920289024710655, 0.003723074682056904, 0.01651713438332081, 0.025044472888112068, -0.007818762212991714, 0.007928713224828243, -0.006178654730319977, 0.032008055597543716, -0.02488565258681774, -0.005241014063358307, 0.038629572838544846, -0.002350209979340434, 0.011685384437441826, -0.013279678300023079, 0.0319836251437664, 0.033498506993055344, -0.008191375061869621, 0.002009666059166193, -0.01412263885140419, -0.02966242842376232, -2.3526914446847513e-05, -0.006053432356566191, -0.0032649440690875053, -0.0034665213897824287, 0.02543541043996811, -0.04542212188243866, -0.01877724565565586, -0.033132005482912064, -0.01034153439104557, -0.023297468200325966, 0.029735729098320007, -0.009626850485801697, -0.007934821769595146, 0.006664272863417864, 0.001484343083575368, 0.0174211785197258, 0.03369397670030594, -0.027365667745471, -0.03469575569033623, 0.0010475919116288424, -0.005338748451322317, -0.001330105820670724, -0.005118845961987972, -0.008118074387311935, -0.012949824333190918, -0.008765565231442451, 0.02355402149260044, 0.013963820412755013, 0.016883639618754387, 0.016138413920998573, 0.014574660919606686, 0.03591743856668472, -0.03540433198213577, -0.025533145293593407]
Name: Dante West Village, Address: 551 Hudson St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0062505, 40.7352026]}, Rating: 4.5, Reviews: ["Dante in West Village would be perfect if they had enough restrooms! It's a big, busy restaurant with the best drinks, and they definitely need more than two restrooms for over 100 people. The lines can be quite long.\nOther than that, everything was perfect! You must order the cocktails—they are a piece of art and taste delicious. Every single dish we ordered, from appetizers to the main course, was delicious. Yes, I would love to go back, and yes, I will recommend it to my friends.", 'An excellent spot for top-notch happy hour martinis.\nWent for my birthday just to have some pre-dinner drinks and it was so enjoyable. Easy, fast, and well priced for delicious martinis.\nNot too big so you can try a couple different kinds and not feel too guilty.\nExcellent oysters as well. They make a lemon ice shavings topping for them as well that is unforgettably fresh.', 'Stylish spot in the West Village to enjoy excellent drinks, including several types of martinis, and great food. The Dante burger is delicious.\nIt is a busy place, I recommend a reservation.', 'The restaurant is very cozy and beautiful. We were there during the Martini hour 3-5pm. However the one I like is not on the list. I ordered chocolate espresso martini and  regular espresso martini. Both were great.\nFor food i got granola which is so good. Steak and eggs were just average.', "$10 Martinis? YES PLEASE!\n\n10/10 highly recommend visiting this spot!\n\nMy friend wanted Dirty Martinis, so I began searching for places in New York that offered them during happy hour! After some digging, I found Dante’s West Village, which offers a happy hour deal on Martinis from 3-5pm. Woohoo!\n\nWe decided to walk in because there were no reservations available between 1-5pm, and ended up waiting in line for about 30 minutes. So, plan ahead and try to get a reservation beforehand. The line is specifically during the happy hour, making 3-5pm their busiest time of the day.\n\nWe all ordered Dirty Martinis, and the server presented them with a fancy flair (extra points for the presentation and warm greetings by the server in curly hair 🌟). Since we got our table late, our second round of drinks wasn't part of the happy hour. Interestingly, the non-happy hour drink size is larger than the happy hour glass. However, both versions were very strong, so the size difference didn't really matter.\n\nOverall, I'd say this is a perfect spot for a date or meeting friends. But I can't emphasize enough—you need to reserve in advance! The only reason I was okay with waiting 30 minutes was because one of my friends was running late."], Embedding: [-0.05056280270218849, -0.026630615815520287, -0.04820495471358299, -0.040476441383361816, -0.0031781867146492004, 0.0001518685312476009, -0.019268881529569626, 0.053759001195430756, 0.0028588941786438227, -0.008887788280844688, -0.008992581628262997, 0.005436156410723925, -0.029630327597260475, -0.018220948055386543, -0.01613817922770977, 0.026853302493691444, -0.05784594267606735, 0.02516350895166397, 0.014251898974180222, 0.011081899516284466, 0.05433536693453789, 0.04493016004562378, -0.038170985877513885, 0.011514171957969666, -0.0018224222585558891, 0.04419660568237305, -0.046475861221551895, -0.03976908698678017, 0.056274041533470154, -0.007649916224181652, 0.04335825890302658, -0.017146816477179527, 0.0037692866753786802, -0.036913465708494186, 0.012765143066644669, 0.0214302446693182, -0.006529937032610178, 0.008141135796904564, 0.015378427691757679, -0.0021400772966444492, 0.04168156534433365, 0.008298325352370739, 0.027089087292551994, -0.04720941558480263, 0.022098302841186523, -0.02816321887075901, 0.004974410403519869, 0.03455561399459839, -0.0035793487913906574, 0.010387643240392208, -0.03717545047402382, 0.006061641965061426, -0.06051817536354065, -0.022412683814764023, -0.02318553440272808, -0.030652062967419624, -0.015889296308159828, -0.009706486016511917, 0.08870759606361389, 0.03251214325428009, 0.07277899980545044, -0.0010708572808653116, 0.009044977836310863, -0.007250391878187656, -0.06329520046710968, 0.003363212337717414, -0.024416856467723846, 0.030756855383515358, 0.03321950137615204, -0.03948090597987175, 0.04170776531100273, 0.03534156456589699, 0.0025559759233146906, -0.023237930610775948, -0.01305332500487566, -0.023853592574596405, 0.04147197678685188, -0.024783633649349213, -0.027901235967874527, -0.004224482923746109, -0.05354941636323929, -0.02563508041203022, -0.07461288571357727, 0.017369501292705536, 0.025333799421787262, -0.05506891757249832, -0.06476230919361115, -0.019871443510055542, -0.018718717619776726, 0.020212022587656975, 0.02816321887075901, -0.021810121834278107, 0.027822641655802727, -0.02635553479194641, 0.019727353006601334, -0.04802156612277031, -0.011140845715999603, 0.023788096383213997, -0.056274041533470154, 0.0010864125797525048, 0.038878343999385834, -0.02690569870173931, 0.014697271399199963, -0.01794586516916752, 0.027560658752918243, 0.011389730498194695, 0.022661566734313965, -0.004394771996885538, 0.0009259477374143898, -0.014684171415865421, -0.0797477588057518, 0.00035470101283863187, -0.060099001973867416, -0.014526981860399246, -0.05690280348062515, 0.05758396163582802, 0.03332429379224777, -0.0015104982303455472, -0.05349702015519142, 0.004201559349894524, -0.016098883002996445, 0.015365328639745712, -0.03843297064304352, 0.001599736395291984, -0.02618524432182312, -0.03400545194745064, 0.0016038299072533846, -0.02152193896472454, 0.02245198003947735, -0.03329809382557869, 0.01032869704067707, -0.033350490033626556, 0.02610665000975132, -0.04233652353286743, -0.0029833363369107246, 0.010099461302161217, -0.046397268772125244, -0.009437953121960163, -0.016334667801856995, 0.004506115335971117, 0.027324872091412544, -0.05092957988381386, 0.02562198042869568, -0.01668834500014782, 0.013950617983937263, -0.010433490388095379, -0.05506891757249832, -0.00446681771427393, -0.026787806302309036, -0.010348346084356308, -0.04432759806513786, 0.0356297492980957, 0.0042965286411345005, -0.035472556948661804, -0.011225990019738674, -0.04516594484448433, -0.01945227012038231, 0.016884833574295044, -0.0021335275378078222, 0.0017814873717725277, -0.017369501292705536, 0.01874491572380066, -0.02477053366601467, -0.013413552194833755, 0.0064840903505682945, 0.053051646798849106, -0.044589582830667496, 0.026172146201133728, -0.035786937922239304, 0.011429027654230595, 0.025032518431544304, 0.009627891704440117, 0.05664081871509552, 0.02334272488951683, 0.03803999722003937, -0.05852710083127022, 0.016033386811614037, 0.003893728833645582, 0.03497478738427162, -0.014330494217574596, -0.0017602011794224381, 0.06780131161212921, 0.03717545047402382, -0.029132558032870293, -0.05402098596096039, -0.00029329865355975926, -0.04052883759140968, 0.012470412068068981, 0.029630327597260475, 0.016884833574295044, 0.024875327944755554, 0.0212730560451746, -0.0009685200056992471, -0.0444323904812336, -0.008710949681699276, -0.047340407967567444, 0.016164377331733704, -0.012483511120080948, -0.0004482372896745801, 0.05538329854607582, -0.017998263239860535, -0.012339419685304165, 0.0022366836201399565, -0.045454125851392746, 0.040555037558078766, 0.011258738115429878, 0.030887847766280174, 0.01178270485252142, 0.023932186886668205, -0.03253834322094917, 0.02437755838036537, 0.020238220691680908, 0.004738625604659319, -0.0005309258121997118, -0.016976526007056236, -0.03803999722003937, -0.07157387584447861, 0.014225700870156288, -0.006556135602295399, 0.009398655965924263, -0.049174290150403976, 0.04479916766285896, 0.007008057087659836, -0.012254275381565094, 0.012627601623535156, 0.019164089113473892, 0.003183098742738366, -0.0014122545253485441, 0.023552311584353447, 0.041498176753520966, 0.008023242466151714, 0.024888426065444946, -0.01368863508105278, -0.03211916983127594, -0.019596360623836517, -0.011952994391322136, -0.025490988045930862, -0.021626733243465424, -0.016360865905880928, 0.013793428428471088, 0.009640990756452084, -0.03455561399459839, 0.01329565979540348, 0.0037692866753786802, 0.033114705234766006, -0.011487973853945732, 0.018561527132987976, 0.005576972384005785, -0.023853592574596405, 0.03701826184988022, 0.0026083725970238447, -0.06560065597295761, 0.0027704748790711164, -0.044249001890420914, -0.029080161824822426, -0.019203385338187218, -0.03361247479915619, -0.012260825373232365, 0.027089087292551994, 0.015561816282570362, -0.0075385733507573605, 0.027953632175922394, -0.0005080022383481264, -0.011867850087583065, -0.0364156998693943, -0.019517766311764717, -0.0002763106604106724, 0.04479916766285896, -0.026958096772432327, -0.004872892051935196, -0.03266933560371399, -0.02753445878624916, 0.0102828498929739, 0.041183795779943466, -0.009267664514482021, -0.062456853687763214, 0.021731525659561157, 0.02632933482527733, -0.019805947318673134, -0.008835391141474247, -0.020631195977330208, -0.051296357065439224, 0.020054832100868225, -0.00041835481533780694, 0.00601251982152462, 0.010754420422017574, 0.051217760890722275, 0.003991972655057907, 0.012607952579855919, 0.023237930610775948, -0.01715991459786892, 0.011664812453091145, 0.0006434968090616167, -0.02105036936700344, 0.012188779190182686, -0.002115516224876046, 0.055645283311605453, -0.019098592922091484, 0.016413262113928795, 0.01032869704067707, 0.037856608629226685, 0.02634243480861187, 0.017356403172016144, 0.005560598336160183, 0.04335825890302658, 0.07854263484477997, 0.00666747847571969, 0.01670144498348236, 0.012365618720650673, -0.01818164996802807, -0.0004633832140825689, 0.018155451864004135, 0.026224542409181595, 0.003066843608394265, -0.04943627491593361, -0.017683882266283035, 0.026879500597715378, -0.010020866990089417, -0.04791676998138428, -0.020054832100868225, -0.004001797176897526, -0.005780009552836418, 0.011009854264557362, 0.03439842537045479, 0.011442126706242561, -0.042912889271974564, 0.06759172677993774, -0.03369107097387314, 0.001297636772505939, -0.030966442078351974, 0.03494859114289284, -0.06250924617052078, 0.043148674070835114, 0.028110822662711143, -0.030390078201889992, -0.04417040944099426, -0.028058426454663277, 0.015954790636897087, 0.03775181248784065, 0.014919957146048546, 0.03023288957774639, -0.020762188360095024, -0.010885411873459816, -0.01984524540603161, -0.0038904540706425905, 0.0040312702767550945, 0.00854721013456583, 0.011769605800509453, 0.005835681222379208, 0.0004793478292413056, -0.040240656584501266, -0.01637396588921547, -0.018299542367458344, -0.009549296461045742, 0.052501481026411057, 0.06790610402822495, 0.006703501101583242, 0.003923201933503151, -0.044510986655950546, -0.01818164996802807, -0.004515939392149448, 0.014671072363853455, -0.01372793223708868, 0.007584420498460531, 0.006595433223992586, 0.043070077896118164, -0.0021286155097186565, 0.006238480564206839, -0.02034301497042179, -0.01257520541548729, 0.027744045481085777, 0.07094511389732361, -0.00725694140419364, 0.037306442856788635, -0.04823115095496178, 0.04367263987660408, 0.0039002783596515656, 0.008887788280844688, 0.026250740513205528, 0.03966429457068443, 0.022006608545780182, -0.01905929483473301, 0.025359997525811195, -0.001662776106968522, 0.012647250667214394, 0.009320060722529888, -2.7375222998671234e-05, -0.01921648532152176, 0.002569075208157301, 0.014723469503223896, -0.0055180261842906475, -0.030835451558232307, -0.017055122181773186, 0.03591793030500412, -0.030678261071443558, -0.0189937986433506, 0.05611685290932655, 0.01305332500487566, -0.02002863399684429, -7.736698171356693e-05, 0.039507102221250534, -0.014880659058690071, -0.06140891835093498, -0.02428586408495903, 0.028582394123077393, 0.01929507963359356, -0.023788096383213997, -0.022962847724556923, -0.03822338208556175, 0.010669275186955929, -0.006942561361938715, -0.053916193544864655, 0.018496030941605568, 0.03306230902671814, 0.03589173033833504, 0.02026441879570484, 0.02887057512998581, -0.0004793478292413056, 0.037149250507354736, 0.03631090372800827, -0.028660988435149193, 0.013518345542252064, -0.009758883155882359, -0.007309338077902794, -0.06879685074090958, 0.023146236315369606, 0.0405026413500309, -0.026538921520113945, -0.07073552906513214, -0.008481713943183422, -0.013675535097718239, -0.047340407967567444, -0.004005071707069874, 0.019033096730709076, -0.018548427149653435, -0.0031438013538718224, -0.007852953858673573, -0.024560946971178055, 0.004286704119294882, 0.010387643240392208, -0.019517766311764717, -0.0758180096745491, -0.001219041645526886, -0.004506115335971117, -0.018299542367458344, 0.01739570125937462, 0.020696692168712616, 0.055330902338027954, 0.03811858966946602, -0.007977395318448544, 0.02072289027273655, -0.04375123605132103, -0.0362585075199604, 0.019635658711194992, -0.022124500945210457, 0.043777432292699814, 0.009333159774541855, 0.030180491507053375, -0.006271228659898043, -0.0012206791434437037, -0.014618676155805588, -0.04123619198799133, -0.05260627344250679, 0.01763148605823517, 0.018928304314613342, -0.001519504003226757, -0.002212122781202197, 0.03431982919573784, 0.023552311584353447, -0.022805659100413322, -0.03665148466825485, -0.01474966760724783, 0.019897641614079475, 0.028425203636288643, -0.002320190891623497, -0.04794296994805336, 0.02215069904923439, 0.007414131425321102, 0.024076277390122414, -0.010014316998422146, -0.021076567471027374, 0.004152437672019005, -0.026853302493691444, 0.0011805628892034292, 0.0013844186905771494, -0.09578114748001099, -0.022019708529114723, 0.013649336993694305, -0.018836610019207, 0.020133428275585175, 0.00795119721442461, -0.012188779190182686, -0.03403164818882942, -0.013236713595688343, -0.0401882603764534, 0.008887788280844688, 0.0047157020308077335, -0.006359647959470749, 0.012562106363475323, -0.015090245753526688, 0.012568655423820019, -0.024508550763130188, -0.008815743029117584, 0.036992061883211136, 0.01786727085709572, 0.001065945136360824, -0.019334377720952034, -0.01412090752273798, 0.009791631251573563, 0.023526113480329514, -0.037673220038414, -0.0026902423705905676, 0.02949933521449566, 0.030494872480630875, -0.013020576909184456, 0.012162581086158752, 0.017906568944454193, 0.03466041013598442, -0.032800327986478806, 0.013439750298857689, 0.008029792457818985, -0.006441517733037472, 0.022098302841186523, -0.003448357107117772, 0.02643412910401821, 0.029551731422543526, -0.025988757610321045, -0.009758883155882359, -0.011003304272890091, 0.0066052572801709175, -0.01662284880876541, -0.017683882266283035, -0.02642102912068367, 0.03486999496817589, -0.004637106787413359, 0.002390598878264427, -0.02120755985379219, 0.046947430819272995, 0.014906858094036579, -0.02460024505853653, 0.03217156603932381, 0.0016521330690011382, 0.0037398135755211115, -0.019832147285342216, -0.01197919249534607, -0.02792743407189846, 0.020853882655501366, 0.03542016074061394, -0.015443923883140087, 0.004109865054488182, -0.006824668496847153, -0.004142613150179386, -0.011651713401079178, -0.02301524579524994, -0.045296937227249146, 0.010623428039252758, 0.01701582409441471, -0.038485366851091385, 0.011579668149352074, 0.026159046217799187, -0.030442476272583008, 0.0019452270353212953, -0.013911320827901363, 0.014042312279343605, 0.01178925484418869, 0.03458181396126747, 0.023368922993540764, 0.03232875466346741, -0.021574337035417557, 0.01929507963359356, -0.006641280371695757, 0.009961919859051704, 0.004630557261407375, -0.0193867739289999, 0.04000487178564072, 0.0030291834846138954, 0.023670203983783722, 0.010571031831204891, -0.01143557671457529, 0.035236772149801254, -0.03345528617501259, -0.02245198003947735, 0.012214978225529194, 0.03023288957774639, 0.003975598607212305, 0.02832040935754776, 0.03586553409695625, 0.0425461120903492, 0.017985163256525993, 0.009627891704440117, 0.016950327903032303, 0.013649336993694305, 0.02673541009426117, 0.001200211583636701, -0.034136440604925156, -0.019753551110625267, -0.022569872438907623, 0.00502025755122304, 0.008494812995195389, -0.026761608198285103, -0.03780420869588852, 0.012496610172092915, -0.029446939006447792, -0.023984583094716072, -0.01907239481806755, 0.02152193896472454, 0.0020663943141698837, -0.01646565832197666, 0.03659908473491669, -0.03238115459680557, 0.022425781935453415, -0.01277169305831194, 0.035944126546382904, -0.04210073873400688, -0.02722007967531681, 0.03631090372800827, -0.04775958135724068, -0.010060164146125317, -0.0014122545253485441, -0.03583933413028717, -0.04417040944099426, 0.012909233570098877, -0.003654669038951397, -0.013407002203166485, 0.03597032651305199, 0.017186114564538002, 0.015391526743769646, -0.04202214255928993, -0.011952994391322136, 0.013164667412638664, -0.0074534290470182896, 0.003680867375805974, 0.03238115459680557, 0.011258738115429878, 0.010977106168866158, -0.002673868555575609, -0.0201727245002985, 0.010577581822872162, -0.012247725389897823, -0.007682664319872856, 0.018076857551932335, -0.0012902684975415468, 0.0020418334752321243, 0.01795896515250206, -0.03560354933142662, 0.008684750646352768, 0.014225700870156288, -0.0029505884740501642, -0.048781316727399826, -0.003556425217539072, -0.008900887332856655, -0.00869785062968731, -0.004820495378226042, 0.03748983144760132, -0.0023529387544840574, 0.04327966272830963, -0.01678003929555416, -0.022818757221102715, -0.021783923730254173, -0.0031519881449639797, 0.026080451905727386, 0.02097177505493164, 0.0045650615356862545, 0.025176608934998512, -0.036756277084350586, 0.06434313207864761, 0.0012788067106157541, 0.02934214472770691, -0.020552601665258408, -0.003307540901005268, 0.017539791762828827, 0.02926355041563511, 0.053759001195430756, 0.020120328292250633, 0.04194355010986328, 0.011959544382989407, 0.002348026493564248, -0.040974210947752, 0.012516259215772152, 0.013544543646275997, 0.00236440054140985, -0.014972353354096413, -0.004908914677798748, -0.0011338971089571714, 0.002596910810098052, -0.023041443899273872, 0.03916652500629425, 0.009090824984014034, 0.010020866990089417, 0.007099751383066177, 0.00749272620305419, -0.0010520272189751267, 0.04246751591563225, -0.015457022935152054, 0.03062586486339569, -0.027796443551778793, -0.006258129607886076, 0.00419500982388854, 0.014199502766132355, -0.080690898001194, -0.005089028272777796, -0.03332429379224777, 0.0005718606989830732, -0.01376722939312458, -0.010250101797282696, 0.04139338433742523, 0.0012853562366217375, -0.025032518431544304, 0.03206677362322807, -0.010754420422017574, -0.041969746351242065, -0.021024171262979507, -0.00810838770121336, 0.013976816087961197, 0.005838955752551556, -0.014186403714120388, -0.024036981165409088, 0.0006455435650423169, -0.02965652570128441, -0.009706486016511917, -0.007165247108787298, 0.039585698395967484, -0.016832435503602028, -0.008796093985438347, 0.035315368324518204, -0.011605866253376007, 0.028818178921937943, -0.014304296113550663, -0.011009854264557362, 0.01788036897778511, 0.0038904540706425905, 0.005413232836872339, 0.012889585457742214, -0.02619834430515766, 0.013276010751724243, 0.026316236704587936, 0.01850913092494011, 0.006592158228158951, -0.06413354724645615, -0.006176259368658066, 0.006146786268800497, -0.041105203330516815, -0.03314090520143509, -0.022176899015903473, 0.026722310110926628, -0.040476441383361816, -0.001804410945624113, -0.03337669000029564, -0.06811569631099701, 0.01474966760724783, -0.05695519968867302, 0.011710659600794315, -0.005773460026830435, 0.011599317193031311, -0.005308439489454031, -0.016740741208195686, 0.039192721247673035, -0.013407002203166485, -0.0012149482499808073, 0.03012809529900551, -0.007512375246733427, -0.006592158228158951, -0.03285272419452667, -0.021613633260130882, -0.003477830206975341, 0.0039952476508915424, 0.0189937986433506, 0.006598707754164934, -0.005334637593477964, -0.00688361469656229, -0.012260825373232365, 0.005390309263020754, -0.0026165596209466457, -0.008619255386292934, 0.024639543145895004, -0.0395594984292984, -0.02034301497042179, -0.020487105473876, -0.022753261029720306, -0.0021826494485139847, 0.036022722721099854, -0.03466041013598442, -0.020290616899728775, 0.004496290814131498, 0.0411313995718956, -0.01246386207640171, 0.014736568555235863, -0.04385602846741676, -0.02364400587975979, 0.01471037045121193, -0.010446589440107346, -0.043698836117982864, 0.011736857704818249, 0.020225120708346367, 0.004496290814131498, -0.0045847101137042046, 0.04699983075261116, -0.07157387584447861, -0.05622164532542229, 0.019046196714043617, -0.011854751035571098, -0.07702313363552094, -0.007309338077902794, -0.002061482286080718, 0.02247818000614643, 0.008010143414139748, 0.0019452270353212953, -0.0029604127630591393, 0.008029792457818985, -0.044353798031806946, 0.0010381094180047512, -0.013780329376459122, 0.04437999427318573, -0.03633710369467735, 0.015064047649502754, 0.00470915250480175, 0.02411557547748089, -0.011645164340734482, -0.0011568206828087568, 0.0006459529395215213, -0.02207210473716259, 0.015509420074522495, -0.008940184488892555, 0.015247436240315437, 0.012974729761481285, 0.049331482499837875, 0.016649046912789345, 0.02255677431821823, -0.027744045481085777, -0.017186114564538002, -0.019281981512904167, 0.022582972422242165, -0.024338262155652046, 0.01503784954547882, -0.015889296308159828, 0.012941981665790081, 0.01733020506799221, 0.013361155055463314, 0.04280809313058853, 0.0011338971089571714, 0.023460617288947105, -0.0005043181008659303, -0.031516607850790024, -0.03822338208556175, -0.01376722939312458, -0.02422036975622177, -0.0020385587122291327, -0.019989335909485817, 0.00814768485724926, -0.02002863399684429, -0.004722251556813717, -0.01036799419671297, 0.046082887798547745, -0.010073263198137283, 0.004660030361264944, -0.008606156334280968, -0.006746073719114065, 0.04715701937675476, -0.019727353006601334, 0.029237352311611176, -0.07057833671569824, 0.02632933482527733, 0.02532069943845272, -0.004388222470879555, -0.02957792952656746, 0.014238799922168255, 0.0201727245002985, -0.01962255872786045, 0.01305332500487566, 0.008527561090886593, -0.05496412515640259, -0.014671072363853455, -0.004673129413276911, 0.012385266833007336, 0.0028670812025666237, -0.016976526007056236, -0.0006766541046090424, 0.011723758652806282, 0.023866690695285797, -0.025608880445361137, 0.020212022587656975, 0.0071717966347932816, -0.014566279016435146, 0.03356007859110832, 0.008180432952940464, -0.0181292537599802, -0.00385770620778203, 0.04010966420173645, 0.004620732739567757, -0.019832147285342216, -0.03353387862443924, -0.003982148133218288, -0.0008760071359574795, -0.007780908141285181, -0.014684171415865421, 0.010335247032344341, 0.015941692516207695, 0.04495636001229286, 0.013393903151154518, 0.017028924077749252, -0.02634243480861187, 0.04739280417561531, -0.00289819180034101, -0.0394023098051548, -7.670179184060544e-05, 0.012516259215772152, 0.008514462038874626, -0.010584130883216858, 0.03293131664395332, -0.018836610019207, 0.005835681222379208, -0.040240656584501266, 0.02832040935754776, 0.0034516318701207638, 0.010983656160533428, 0.014186403714120388, -0.007898801006376743, -0.01313846930861473, -0.016125081107020378, 0.01087231282144785, 0.019491568207740784, 0.0015457023400813341, -0.00012577252346090972, 0.0048335944302380085, -0.007682664319872856, 0.0037136152386665344, -0.03196198120713234, 0.005721063353121281, 0.014906858094036579, 0.022425781935453415, 0.00666747847571969, -0.022360285744071007, 0.0063334498554468155, -0.022032806649804115, 0.032485947012901306, 0.006922912318259478, 0.016976526007056236, -0.01281099021434784, 0.005013708025217056, 0.01858772523701191, 0.0033042661380022764, -0.021495740860700607, -0.023617807775735855, -0.05077239125967026, -0.011972643435001373, 0.004669854883104563, 0.002685330342501402, 0.004011621233075857, 0.012732394970953465, 0.024325162172317505, 0.04613528400659561, 0.026080451905727386, -0.0006303976406343281, -0.0041655367240309715, -0.03376966714859009, -0.014003015123307705, 0.003916652407497168, 0.05037941411137581, 0.005210195668041706, -0.0002814275212585926, -0.037620820105075836, 0.059208258986473083, -0.018325742334127426, -0.011193242855370045, -0.016111981123685837, 0.008448965847492218, 0.02382739447057247, 0.011167043820023537, -0.040083467960357666, 0.04225792735815048, -0.009758883155882359, 0.02382739447057247, -0.0060681914910674095, 0.005567148327827454, -0.0055180261842906475, 0.008088738657534122, 0.0394023098051548, 0.01333495695143938, -0.004735350608825684, -0.03623231127858162, -0.030652062967419624, 0.023748798295855522, -0.008612705394625664, 0.03542016074061394, -0.004866342525929213, 0.022189997136592865, 0.012522808276116848, 0.04296528548002243, 0.009699936956167221, 0.008658552542328835, 0.023670203983783722, 0.01573210582137108, 0.00921526737511158, 0.03479140251874924, -0.001618566457182169, -0.0069884080439805984, 0.03209296986460686, -0.019583262503147125, -0.004453718662261963, 0.03733263909816742, -0.008999131619930267, 0.022281691431999207, 0.004994059447199106, 0.012968180701136589, -0.006994958035647869, -0.0017945865401998162, 0.005311714019626379, -0.0013221977278590202, -0.000653730530757457, -0.02942074090242386, 0.030416278168559074, -0.016976526007056236, 0.017068220302462578, -0.007826754823327065, -0.005986321717500687, 0.008298325352370739, -0.028058426454663277, 0.020487105473876, -0.04508734866976738, -0.0068705156445503235, 0.05263247340917587, -0.000728641462046653, 0.02215069904923439, -0.006791920866817236, -0.003448357107117772, -0.006981858517974615, 0.008704399690032005, 0.005305164493620396, -0.003088129684329033, 0.017448097467422485, -0.008658552542328835, 0.019583262503147125, 0.009333159774541855, 0.0090253297239542, 0.04409181326627731, 0.017513593658804893, 0.010033966042101383, 0.004863067530095577, 0.0024233467411249876, 0.014107808470726013, -0.03379586338996887, 0.006402220111340284, 0.009981568902730942, -0.026761608198285103, -0.021875618025660515, -0.002533052349463105, 0.01051863469183445, 0.037699416279792786, 0.038642559200525284, 0.04225792735815048, 0.0373588390648365, -0.028294211253523827, 0.038956936448812485, -0.007335536181926727, 0.00795774720609188, 0.014094709418714046, 0.03059966489672661, 0.007604069542139769, 0.009857126511633396, -0.02657821960747242, -0.002795035718008876, -0.008226280100643635, 0.009005680680274963, -0.03693966567516327, -0.008796093985438347, 0.012201878242194653, 0.0090253297239542, -0.001039746799506247, -0.03780420869588852, 0.0020598447881639004, 0.025058716535568237, 0.008894337341189384, 0.006624906323850155, 0.0003929751692339778, -0.03615371510386467, 0.001966513227671385, -0.005662117153406143, -0.01827334426343441, -0.01709442026913166, 0.009038428775966167, -0.015627311542630196, 0.008462064899504185, -0.03948090597987175, -0.0020320089533925056, -0.005167623516172171, 0.011487973853945732, 0.008678201586008072, -0.042048342525959015, 0.004237581975758076, 0.007158697582781315, 0.018967600539326668, -0.023224832490086555, -0.017539791762828827, -0.01835194043815136, 0.008206631056964397, -0.01995003968477249, 0.00021695504256058484, 0.02389288879930973, 0.001342665171250701, 0.03733263909816742, 0.0026755058206617832, 0.00814768485724926, -0.017304006963968277, -0.025176608934998512, -0.020067932084202766, -0.001974700251594186, 0.023211732506752014, -0.019570162519812584, -0.02839900553226471, -0.013479048386216164, 0.043698836117982864, -0.0018731815507635474, 0.000333619536831975, -0.009745784103870392, -0.0012174042640253901, -0.013596940785646439, 0.020762188360095024, 0.013380804099142551, -0.02372260019183159, 0.01009291224181652, -0.016884833574295044, 0.008507912047207355, 0.028896773234009743, 0.010178056545555592, 0.023054542019963264, -0.005524575710296631, 0.00638584652915597, 0.029708921909332275, -0.025412393733859062, 0.04540172964334488, 0.02270086482167244, -0.020997973158955574, -0.029394542798399925, -0.011573118157684803, 0.009012230671942234, -0.0018076857086271048, 0.015836898237466812, 0.013518345542252064, 0.024901526048779488, -0.009824379347264767, 0.018613923341035843, -0.010695474222302437, 0.01000121794641018, -0.025202807039022446, 0.0197011549025774, -0.05800313502550125, -0.01266034971922636, 0.08435866981744766, -0.007931549102067947, 0.024181071668863297, 0.03125462308526039, 0.02255677431821823, 0.015155741944909096, -0.041340988129377365, 0.044746771454811096, 0.05310404300689697, 0.010217353701591492, 0.007990495301783085, -0.028032228350639343, -0.012706196866929531, -0.009902973659336567, 0.03633710369467735, -0.0400310680270195, 0.004650205839425325, -0.008016693405807018, 0.030416278168559074, 0.027246277779340744, 0.015535618178546429, 0.008370370604097843, 0.010066714137792587, 0.030390078201889992, 0.009929172694683075, -0.008861590176820755, -3.425740578677505e-05, -0.01811615563929081, 0.04217933490872383, 0.02745586447417736, 0.02949933521449566, -0.005164348520338535, 0.00506610469892621, -0.016740741208195686, -0.00016343263268936425, -0.018613923341035843, -0.0055344002321362495, 0.024036981165409088, -0.0222161952406168, -0.0013352968962863088, -0.022766361013054848, -0.006654379423707724, -0.02824181504547596, 0.016190577298402786, 0.026931896805763245, 0.0031061412300914526, -0.012922333553433418, -0.028896773234009743, -0.027010492980480194, 0.005049730651080608, 0.010708573274314404, 0.037463631480932236, 0.015889296308159828, 0.005089028272777796, -0.015378427691757679, -0.027796443551778793, 0.01835194043815136, -0.03196198120713234, 0.008206631056964397, -0.0038806297816336155, 0.008468614891171455, 0.0044504436664283276, 0.005475454032421112, 0.01739570125937462, 0.031542807817459106, 0.012666899710893631, 0.006179534364491701, -0.005714513827115297, -0.019268881529569626, 0.0024135224521160126, 0.021063469350337982, -0.0010692198993638158, -0.01756598986685276, -0.022923551499843597, 0.011992291547358036, 0.01004051510244608, 0.011474874801933765, 0.005030082073062658, 0.013754130341112614, -0.057793546468019485, -0.014566279016435146, 0.01662284880876541, 0.024940824136137962, -0.009051527827978134, -0.005694865249097347, -0.011422477662563324, 0.025451691821217537, 0.026800906285643578, -0.005563873331993818, 0.0029604127630591393, -0.002203935757279396, 0.04168156534433365, 0.004820495378226042, -0.0030455575324594975, 0.018797311931848526, -0.005154523998498917, 0.002374224830418825, 0.038721151649951935, -0.019046196714043617, -0.014880659058690071, 0.012038138695061207, 0.005305164493620396, -0.03007569909095764, 0.015247436240315437, 0.01305332500487566, -0.013649336993694305, -0.014644874259829521, -0.03513197973370552, -0.06119932979345322, -0.0073027885518968105, 0.01646565832197666, -0.0044307950884103775, -0.003903553355485201, 0.02422036975622177, -0.030023302882909775, -0.03806619346141815, -0.025595782324671745, 0.008599606342613697, -0.005681765731424093, -0.03775181248784065, 0.014186403714120388, 0.025504088029265404, -0.029053963720798492, -0.0015579827595502138, 0.026132848113775253, 0.027979832142591476, 0.01771008037030697, 0.04183875396847725, -0.017683882266283035, 0.03109743446111679, -0.01915098913013935, 0.010819915682077408, -0.015483221039175987, 0.028660988435149193, -0.018849708139896393, -0.0010798629373311996, -0.002665681531652808, 0.004725526086986065, -0.005576972384005785, -0.006513563450425863, -0.02777024544775486, 0.010708573274314404, -0.0036677680909633636, -0.05260627344250679, 0.01313846930861473, -0.032250162214040756, -0.04338445886969566, 0.028110822662711143, 0.03007569909095764, 0.050903383642435074, -0.02832040935754776, 0.01660975068807602, 0.029473137110471725, 0.005039906594902277, 0.00023905988200567663, -0.05480693653225899, 0.0003763965214602649, -0.015561816282570362, 0.00015892980445642024, -0.0408170185983181, 0.008874689228832722, -0.05622164532542229, -0.003903553355485201, -0.040083467960357666, 0.02761305496096611, -0.0018371589248999953, -0.02144334465265274, -0.0026100100949406624, -0.02239958383142948, 0.029211154207587242, 0.0049678608775138855, -0.0005546680768020451, -0.013276010751724243, -0.00020068341109436005, 0.0034385325852781534, 0.07026395946741104, 0.0037758364342153072, 0.00012178136239526793, 0.009909523651003838, 0.017199212685227394, 0.0024610068649053574, 0.013262911699712276, 0.01692412979900837, 0.01591549441218376, 0.021770823746919632, -0.016177477315068245, 0.02745586447417736, -0.014369791373610497, -0.011533821001648903, -0.023041443899273872, -0.022189997136592865, -0.014173303730785847, -0.0006103395717218518, 0.005832406226545572, 0.008507912047207355, 0.02792743407189846, 0.013872022740542889, -0.0075713214464485645, -0.017736278474330902, 0.0030995914712548256, -0.07718031853437424, -0.01850913092494011, 0.028608592227101326, 0.0364156998693943, -0.017068220302462578, 0.010315597988665104, -0.009627891704440117, -0.04178635776042938, 0.02722007967531681, 0.02356540970504284, -0.01620367541909218, 0.01858772523701191, -7.138025102904066e-05, -0.017893468961119652, 0.010937809012830257, -0.0051152268424630165, -0.030337681993842125, 0.04823115095496178, 0.02673541009426117, -0.012057787738740444, -0.04778577759861946, -0.02522900514304638, -0.05202991142868996, -0.03790900483727455, -0.03442462533712387, -0.04241511970758438, 0.0365728884935379, -0.018718717619776726, -0.004362024366855621, -0.0036055471282452345, -0.008946734480559826, 0.020356113091111183, -0.009398655965924263, -0.031149830669164658, -0.009477251209318638, -0.02262227050960064, 0.013518345542252064, 0.002945676213130355, 0.01820784993469715, 0.015221238136291504, -0.027429666370153427, 0.017592187970876694, -0.02406317926943302, 0.015129543840885162, -0.0003806946915574372, 0.0015784502029418945, -0.004610908683389425, 0.0006913906545378268, -0.021849418058991432, 0.0025134035386145115, -0.04516594484448433, -0.03395305201411247, 0.03211916983127594, 0.00545907998457551, -0.015954790636897087, -0.004070567898452282, 0.0045486874878406525, -0.02317243441939354, 0.005973222199827433, 0.0197011549025774, -0.08938875049352646, -0.003530226880684495, -0.05611685290932655, 0.02522900514304638, 0.004420970566570759, -0.018260246142745018, -0.0189152043312788, 0.0009848939953371882, 0.0008391657029278576, -0.006078016012907028, -0.0383019782602787, 0.03649429231882095, -0.0002842929679900408, -0.01740879938006401, 0.005691590253263712, 0.019268881529569626, -0.00565556762740016, -0.01794586516916752, 0.016242973506450653, 0.014906858094036579, 0.003690691664814949, 0.03513197973370552, 0.01748739369213581, -0.03196198120713234, -0.011887498199939728, -0.018482930958271027, -0.011055701412260532, 0.019557064399123192, 0.009169420227408409, 0.012686547823250294, 0.0024135224521160126, 0.01266034971922636, -0.026604417711496353, 0.003788935486227274, 0.0063203503377735615, 0.057007595896720886, -0.014487683773040771, -0.01764458417892456, 0.010898510925471783, 0.000404846272431314, 0.022425781935453415, 0.0197011549025774, 0.000977525720372796, -0.012915783561766148, 0.00373653881251812, -0.006398945581167936, 0.004990784451365471, 0.006438243202865124, 0.009994667954742908, -0.016963427886366844, 0.009097374975681305, -0.025490988045930862, -0.0026362084317952394, 0.028582394123077393, 0.0019239408429712057, -0.02673541009426117, 0.01723851077258587, 0.031516607850790024, 0.021810121834278107, -0.003194560529664159, -0.012431113980710506, -0.012712746858596802, 0.015588014386594296, -0.0201727245002985, 0.008999131619930267, 0.02910635992884636, 0.019504666328430176, 0.013518345542252064, 0.001252608373761177, -0.00823282916098833, 0.0037299892865121365, -0.037935201078653336, 0.00854066014289856, -0.0023070916067808867, 0.03133321925997734, 0.013118821196258068, -0.0023529387544840574, 0.03384825959801674, 0.021142063662409782, 0.005842230748385191, 0.013845824636518955, -0.0035171275958418846, 0.01471037045121193, -0.013079523108899593, -0.009202168323099613, -0.026119748130440712, 0.020945575088262558, 0.0002540011191740632, 0.01598099060356617, 0.02270086482167244, 0.03369107097387314, 0.023552311584353447, 0.012476961128413677, -0.03772561624646187, -0.013105721212923527, -0.03356007859110832, 0.015024750493466854, -0.04681644216179848, -0.05009123310446739, 0.018954502418637276, 0.008874689228832722, -0.018627023324370384, -0.020369213074445724, -0.016740741208195686, -0.018889006227254868, 0.033193301409482956, 0.009824379347264767, -0.004113140050321817, 0.00749272620305419, 0.03827578201889992, -0.003184736240655184, 0.004958036821335554, -0.02539929375052452, -0.046947430819272995, 0.0038347826339304447, -0.0367300771176815, -0.029761318117380142, 0.012136382982134819, 0.012588304467499256, -0.003291166853159666, 0.006949110887944698, 0.03337669000029564, -0.031988177448511124, 0.01962255872786045, 0.03473900258541107, 0.007027705665677786, 0.013400453142821789, -0.005229844246059656, 0.02539929375052452]
Name: While We Were Young Kitchen & Cocktails, Address: 183 W 10th St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.002696, 40.734403]}, Rating: 4.3, Reviews: ["We went here for my birthday! It's a small space but the light lavender paint brightens and makes it feel wider than it is. The truffle fries and kale salad are to DIE for. If you're a rabbit like me you'll love it. They are really good at fries too. While everything may be slightly pricey the protons are totally worth it. I wish me and my boyfriend actually ordered to share everything lol. We just wish his burger was cooked a little bit better. The drinks were well made if i had another i wouldn't have made it home lol.", '3.5 / 5.0 - I came here for weekend brunch with a friend and we had a nice time catching up.\n\nWhile We Were Young is such a cute place, with a stylish decor. The dining area is quite small inside, but because of the large windows and layout of the tables, it didn’t feel claustrophobic at all.\n\nThe service was great. The staff was welcoming and offered us 2 table options.\n\nThe food was a bit of a disappointment. We both ordered the Spring Salad ($22+) with dressing on the side. It was mostly lettuce and quinoa, with very little goat cheese and strawberries. The lettuce was not very fresh, either. Considering the price, I’d had higher expectations. Unless you want mainly lettuce and quinoa, I would recommend trying a different dish.', 'The sun was injecting life into New York City so I needed a Spritz injected straight into my bloodstream.\n\nWe were just wandering around the West Village, looking for any place where we could be photosynthesized by the sun. I had St. Jardim bookmarked as I walk by there all the time and their outdoor seating is about as idyllic as it gets, but they went all Hollywood on us and were fully occupied.\n\nWhile We Were Young was right next door and had an open table, so we snagged it quick because it was one of those days where everyone is looking to grab a spritz in direct sunlight. I cannot hate a man who has the same dreams as me.\n\nThey have eclectic drink names here that range from "Plan B" to "Texts From Last Night" to "F@$king in the Morning." This got a good laugh out of me. I respect this riskiness. You gotta take risks to be great. You gotta risk it for the biscuit.\n\nI just got my spritz because you know why I\'m here, but my girlfriend got a drink named "One Night Stand" .... DAMN THAT HURT... I\'m still licking my wounds from that tbh... but it did taste fantastic at least. Tequila, Watermelon, Chili Agave and Lime is a beautiful mixture.\n\nWe got a second round because the spritz and the One Night Stand were both performing at a high level, and the weather compelled us to stay outside. I could be hit by a bus tomorrow. Another extinction event could hit at any time really. Might as well enjoy these days while I can.\n\nIG @jnov_\nTiktok @jnov_reviews', 'Came here for brunch with my friend - it was just ok.\nService was great and friendly, but after an hour and a half of dining we were told that the next reservation was coming in. Kind of trashy to kick guests out after only an hour and a half.\nAlso, needed to put in a $70 deposit for the reservation for 2 - always think it’s kind of gross  when restaurants demand credit cards for booking.\nThe space was also much smaller than the photos online show - maybe 5-7 tables inside total and a small bar area.\nand it was definitely not as nicely decorated as the photos online. No fresh flowers or pretty wall decor.\nfood was good , but the portions were tiny for the prices.\nThe cocktails were not bad , not amazing but not the best either.', 'I came for the outside seating on a pitch-perfect summer evening and the people-watching, but the food was excellent. The kale salad was unique --wonderfully complex and satisfying.  The Brussels were great, if more normative.   The staff let us linger and enjoy the night.'], Embedding: [-0.051238566637039185, -0.017294811084866524, -0.028705080971121788, -0.04305762052536011, -0.004599988926202059, -0.03404422476887703, -0.017739739269018173, 0.01651977375149727, 0.0001230057532666251, 0.002474019071087241, -0.015184987336397171, -0.0285041444003582, -0.024428023025393486, -0.028288856148719788, -0.036685094237327576, 0.015242397785186768, -0.023150647059082985, -0.010075483471155167, -0.007527907378971577, 0.0638400986790657, 0.021973738446831703, 0.014244896359741688, -0.05319051444530487, 0.0032095867209136486, 0.020294491201639175, 0.022433020174503326, -0.030829256400465965, -0.04541143774986267, 0.02279183454811573, -0.0013500357745215297, 0.02279183454811573, -0.019146287813782692, -0.029681053012609482, -0.051755260676145554, -0.029422707855701447, -0.030886666849255562, 0.026179032400250435, 0.022921007126569748, 0.030714435502886772, 0.01634754240512848, 0.013082340359687805, 0.02623644284904003, 0.050520941615104675, -0.03125983104109764, 0.013570326380431652, 0.01583085209131241, 0.024112267419695854, 0.0708441361784935, -0.02030884474515915, 0.017682328820228577, -0.06240484490990639, 0.025145649909973145, -0.0510089285671711, 0.025145649909973145, -0.054855410009622574, -0.04710503667593002, -0.018672654405236244, -0.020007440820336342, 0.031001485884189606, 0.024112267419695854, 0.1020178571343422, 0.0009930164087563753, 0.028073567897081375, 0.005579549819231033, -0.039125025272369385, -0.010893577709794044, 0.011238038539886475, 0.019978735595941544, 0.025418348610401154, -0.03662768378853798, 0.03662768378853798, 0.026379968971014023, -0.04523920640349388, -0.046215180307626724, -0.005346321035176516, 0.0026552199851721525, 0.027384646236896515, -0.049688491970300674, -0.0345035046339035, -0.03949819132685661, -0.021988091990351677, 0.0031719114631414413, -0.06188815459609032, 0.02805921621620655, 0.024499785155057907, -0.030857961624860764, -0.06292153894901276, -0.02099776640534401, -0.02151445671916008, 0.01924675703048706, 0.039325959980487823, -0.014173133298754692, 0.016950350254774094, -0.007287502288818359, 0.03318307176232338, -0.029652347788214684, -0.06648096442222595, 0.020954707637429237, -0.04532532021403313, -0.021600572392344475, 0.06550499051809311, -0.036685094237327576, -0.002414814895018935, -0.022576546296477318, 0.027686050161719322, 0.014797468669712543, 0.051927488297224045, 0.02953752689063549, 0.026982774958014488, -0.025289176031947136, -0.06263448297977448, -0.020222729071974754, -0.04371783882379532, 0.00881245918571949, -0.016577184200286865, 0.021571867167949677, 0.005062858574092388, 0.00044156485819257796, -0.05132468417286873, -0.003448197850957513, 0.0035127841401845217, 0.02867637574672699, -0.003464344423264265, -0.0002581214648671448, 0.0065268175676465034, -0.045497551560401917, 0.02269136533141136, -0.009731022641062737, -0.04477992653846741, -0.058472249656915665, 0.04038804769515991, -0.02737029455602169, -0.03263767436146736, -0.030800551176071167, -0.02272007055580616, -0.019820857793092728, 0.002452490385621786, 0.012020252645015717, -0.002134940354153514, -0.022978417575359344, 0.0019967970438301563, 0.0010737493867054582, 0.036685094237327576, -0.028934720903635025, -0.02498777210712433, -0.017122579738497734, 0.005540080368518829, 0.03160429373383522, -0.03524983674287796, 0.052587706595659256, 0.02571975253522396, 0.03252285718917847, -0.020682010799646378, -0.03148947283625603, 0.0063976445235311985, -0.04977460950613022, 0.03335530310869217, 0.03476185351610184, -0.025834571570158005, 0.005583138205111027, -0.019189346581697464, 0.01831384189426899, -0.02798745408654213, -0.008102009072899818, -0.006734929513186216, 0.016993407160043716, -0.05930469557642937, -0.00845364574342966, -0.0449521541595459, -0.01580214686691761, 0.009515734389424324, -0.015687325969338417, 0.05376461520791054, 0.048798635601997375, -0.013297628611326218, -0.021873271092772484, 0.038780562579631805, 0.002814891980960965, 0.029996808618307114, 0.0009194596204906702, -0.00807330384850502, 0.03918243572115898, 0.02272007055580616, -0.0005409113364294171, -0.03421645611524582, 0.014029608108103275, -0.02350946143269539, -0.027686050161719322, 0.006354587152600288, 0.004355995915830135, 0.012931638397276402, 0.02375345304608345, 0.002136734314262867, -0.04096214845776558, -0.010699818842113018, -0.03005421906709671, 0.0076714325696229935, 0.03697214275598526, 0.0007108992431312799, 0.10282159596681595, -0.002398668322712183, 0.02382521703839302, 0.03786199912428856, -0.018500424921512604, 0.04302891343832016, -0.0011975400848314166, 0.002307170769199729, 0.009910428896546364, -0.006254119332879782, -0.02234690450131893, 0.052243247628211975, 0.02813097834587097, -0.008755049668252468, -0.02210291102528572, 0.01710822805762291, -0.02540399506688118, -0.0675143450498581, 0.026222091168165207, 0.00881245918571949, 0.055027637630701065, -0.017438335344195366, 0.0346183255314827, -0.0010782345198094845, -0.01565862074494362, 0.004779395647346973, 0.05542951077222824, -0.015070167370140553, 0.009580320678651333, -0.0027897749096155167, -0.025045182555913925, -0.012773760594427586, 0.024729426950216293, -0.05301828309893608, -0.028202740475535393, -0.012486710213124752, -0.02505953423678875, -0.017093874514102936, -0.032723791897296906, -0.018844885751605034, 0.00029041466768831015, -0.0029584174044430256, -0.028662022203207016, 0.012845523655414581, 0.018270783126354218, 0.06550499051809311, -0.0006875763647258282, -0.024155324324965477, -0.024700721725821495, 0.03665638715028763, -0.004743514582514763, 0.021801508963108063, -0.04038804769515991, 0.012113544158637524, -0.03639804199337959, -0.031001485884189606, 0.0011302625061944127, 0.008884222246706486, 0.03266638144850731, 0.00046197237679734826, -0.0362832210958004, -0.02127046510577202, 0.0058558364398777485, -0.009609025903046131, -0.012149425223469734, -0.05508504807949066, -0.009049276821315289, 0.02956623211503029, 0.01796938106417656, -0.00314141227863729, -0.012192483060061932, -0.06986816227436066, -0.003254438517615199, -0.008310120552778244, 0.04027322679758072, 0.016950350254774094, -0.03163299709558487, 0.014840526506304741, -0.005242265295237303, -0.028862958773970604, 0.019131936132907867, -0.0017680535092949867, -0.030513500794768333, -0.014331011101603508, -0.03949819132685661, -0.009702317416667938, 0.03731660544872284, 0.06452901661396027, 0.012192483060061932, 0.009989367797970772, 0.013462682254612446, -0.01703646592795849, 0.0017940675606951118, 0.025619283318519592, 0.0008737109019421041, 0.014087018556892872, -0.002576280850917101, 0.06607909500598907, -0.012142249383032322, 0.016089197248220444, -0.01562991552054882, 0.04099085554480553, 0.006598580162972212, 0.003426668932661414, -0.00249195983633399, 0.03022644855082035, 0.03295343369245529, -0.012192483060061932, 0.03286731615662575, -0.007700137794017792, 0.036685094237327576, -0.04124920070171356, 0.044521577656269073, -0.004574872087687254, -0.04799489304423332, -0.010606527328491211, 0.016749413684010506, 0.038464806973934174, 0.03260897099971771, -0.022748775780200958, -0.006354587152600288, 0.009443971328437328, -0.03903890773653984, 0.011819317005574703, 0.03493408113718033, 0.011230862699449062, -0.04348819702863693, 0.05953433737158775, 0.0007570965099148452, 0.006533993873745203, -0.04871252179145813, 0.032408036291599274, -0.08910056948661804, 0.035651709884405136, 0.040158405900001526, -0.028217094019055367, -0.07922602444887161, -0.01573038473725319, 0.02899213135242462, 0.04107696935534477, 0.007484849542379379, 0.016821177676320076, -0.035823941230773926, -0.01838560402393341, 0.00404382823035121, -0.019648628309369087, -0.021729744970798492, 0.032752495259046555, -0.013419625349342823, -0.03301084041595459, 0.00014621650916524231, -0.043631721287965775, -0.014043960720300674, -0.00782931037247181, -0.011489208787679672, 0.04248351976275444, 0.03645545244216919, 0.04630129411816597, 0.02801615744829178, -0.03286731615662575, 0.004725574050098658, 0.028934720903635025, 0.044808629900217056, -0.0019752683583647013, -0.001277376082725823, 0.019060174003243446, 0.022562192752957344, -0.007807781919836998, 0.049688491970300674, -0.044665105640888214, -0.030657025054097176, 0.01717999018728733, 0.010771580971777439, -0.0011284684296697378, -0.000794323394075036, -0.0023286996874958277, 0.01287422887980938, 0.02055283822119236, 0.0024668427649885416, 0.017983732745051384, 0.005019800737500191, 0.005116680637001991, -0.00388595019467175, -0.0006830912316218019, -0.013003401458263397, -1.771641655068379e-05, -0.009264565072953701, 0.031001485884189606, -0.022433020174503326, -0.05993620678782463, 0.014022431336343288, -0.022289494052529335, -0.05792685225605965, -0.08479480445384979, -0.006462231278419495, -0.0014209015062078834, -0.007362853270024061, 0.03369976580142975, 0.010003720410168171, -0.029379649087786674, 0.016849882900714874, 0.06096959114074707, -0.03694343939423561, -0.05402296036481857, -0.005615431349724531, 0.026107270270586014, -0.013003401458263397, 0.010233361274003983, -0.031030191108584404, -0.031001485884189606, -0.01301057729870081, -0.022734424099326134, -0.03938337042927742, 0.02247607707977295, 0.02412661910057068, 0.002012943848967552, -0.02261960320174694, 0.04337337613105774, -0.008848341181874275, 0.024657662957906723, 0.08445034921169281, 0.004948038142174482, -0.019404634833335876, -0.0037854823749512434, -0.006580639630556107, -0.05410907790064812, 0.018428660929203033, 0.041564956307411194, -0.063897505402565, -0.0337284691631794, -0.002398668322712183, -0.04954496771097183, -0.014618062414228916, -0.01728045754134655, 0.0027144241612404585, 0.00177074468228966, -0.016404952853918076, -0.01762491837143898, -0.007265973370522261, 0.032408036291599274, -0.0345609150826931, -0.011216510087251663, -0.03502019867300987, -0.006042419467121363, -0.0026229266077280045, -0.03470444306731224, 0.029394002631306648, 0.06406974047422409, 0.04813842102885246, 0.011955666355788708, -0.026595257222652435, 0.001723201829008758, -0.023882627487182617, -0.013247394934296608, -0.050721876323223114, -0.017050817608833313, 0.06183074414730072, 0.010771580971777439, -0.01270199753344059, 0.02788698486983776, 0.0038428925909101963, -0.007240856532007456, -0.02619338594377041, -0.039842650294303894, -0.01789761707186699, 0.018959704786539078, 0.025762809440493584, -0.015572506003081799, 0.0561758428812027, 0.029853282496333122, -0.03969912603497505, -0.010793110355734825, -0.04678928107023239, 0.021916327998042107, -0.011252391152083874, 0.0012011282378807664, -0.010821815580129623, -0.014603709802031517, 0.02840367704629898, 0.02833191491663456, 0.004431346897035837, -0.006257707253098488, -0.009171273559331894, -0.008898574858903885, -0.011187804862856865, -0.03797682002186775, -0.07549436390399933, -0.009343503974378109, 0.022318199276924133, -0.009063629433512688, -0.01927546225488186, -0.012414947152137756, 0.01590261422097683, 0.0018568598898127675, -0.016433658078312874, -0.012020252645015717, 0.003406934207305312, 0.010584997944533825, -0.016677651554346085, 0.006943041458725929, -0.022260788828134537, -0.0034769028425216675, -0.013283275999128819, -0.024011800065636635, 0.0336710587143898, -0.0116542624309659, 0.018256431445479393, -0.051037631928920746, -0.014575004577636719, 0.01256564911454916, -0.009558791294693947, -0.022935358807444572, -0.004556931555271149, 0.026379968971014023, 0.02991069294512272, 0.0003372846986167133, 0.004614341538399458, -0.011661439202725887, 0.04472251608967781, -0.011690143495798111, 0.04167977720499039, 0.005242265295237303, -0.01141026895493269, 0.007316207513213158, 0.006415585521608591, 0.0388379730284214, 0.01062087994068861, -0.01883053220808506, 0.0048834518529474735, -0.02272007055580616, -0.04104826599359512, 0.028963426128029823, -0.04219646751880646, -0.014424302615225315, 0.0005305954837240279, -0.024399317800998688, 0.006024478934705257, -0.007850839756429195, 0.013405272737145424, -0.0011293655261397362, -0.03467573598027229, 0.015256750397384167, 0.0038967146538197994, -0.015515095554292202, -0.00867611076682806, 0.0037029553204774857, 0.0026354852598160505, 0.01486923173069954, 0.015012756921350956, -0.025002125650644302, 0.012070486322045326, 0.02956623211503029, -0.01387173030525446, 0.010283594951033592, -0.0272267684340477, -0.04383265599608421, 0.003044532611966133, 0.023365935310721397, 0.0005678223678842187, 0.026351263746619225, 0.03180522844195366, -0.008719167672097683, -0.01194848958402872, -0.014295130036771297, 0.01171884872019291, 0.008489527739584446, 0.01258000172674656, 0.007965659722685814, 0.0475643165409565, -0.010807462967932224, 0.03407293185591698, -0.01158250030130148, -0.03286731615662575, -0.00434523168951273, -0.009860195219516754, 0.04093344509601593, 0.01693599671125412, 0.03490537777543068, -0.0002946755848824978, -0.01072134729474783, 0.03866574168205261, -0.02798745408654213, -0.050032954663038254, 0.0038536570500582457, 0.03057091124355793, 0.006856926251202822, 0.022232085466384888, 0.024872951209545135, 0.0246433112770319, 0.03766106441617012, -0.0003105979412794113, 0.0033226129598915577, 0.018098553642630577, 0.006598580162972212, -0.006085476838052273, 0.010226184502243996, -0.018543481826782227, -0.021126938983798027, -0.02058154158294201, -0.01597437635064125, -0.022433020174503326, -0.005479081999510527, -0.0026803368236869574, -0.045354027301073074, 0.01617531292140484, -0.03258026763796806, 0.044119708240032196, 0.008116361685097218, -0.0415075458586216, 0.02178715541958809, -0.04687539488077164, 0.02510259300470352, 0.012845523655414581, 0.01227142196148634, -0.028662022203207016, -0.0483967661857605, 0.04035934433341026, -0.019017115235328674, -0.036742500960826874, 0.03298213705420494, -0.015515095554292202, -0.03057091124355793, -0.008783754892647266, 0.030857961624860764, 0.017337867990136147, 0.015228045172989368, 0.03679991140961647, -0.019476396963000298, -0.07021262496709824, -0.002823862247169018, 0.018328193575143814, 0.01624707505106926, 0.004212470725178719, 0.006842573639005423, 0.015787793323397636, -0.01604614034295082, 0.009214330464601517, -0.0005821749218739569, 0.0029440647922456264, -0.035852644592523575, -0.003903890959918499, 0.011675791814923286, -0.014969699084758759, 0.03921113908290863, 0.010541941039264202, -0.023495107889175415, 0.005177679006010294, -0.00037899677408859134, 0.005288911052048206, -0.02574845775961876, -0.033269189298152924, 0.002038060687482357, 0.0026157505344599485, 0.030111629515886307, -0.013469859026372433, 0.0009678993956185877, 0.03955560177564621, 0.003161147003993392, 0.0010342799359932542, 0.009257388301193714, 0.02764299139380455, 0.033096957951784134, 0.017510099336504936, -0.015759088099002838, 0.025389643386006355, 0.004212470725178719, 0.028862958773970604, 0.009027747437357903, 0.005249441601336002, -0.020983412861824036, -0.012953167781233788, 0.06826067715883255, -0.008503880351781845, 0.05287475883960724, 0.012558472342789173, 0.03321177884936333, 0.039469484239816666, 0.0142520722001791, -0.051238566637039185, 0.007115271873772144, 0.02488730475306511, -0.01656283065676689, -0.029150009155273438, -0.009551615454256535, -0.007649903651326895, -0.004007946699857712, -0.0336710587143898, 0.011352859437465668, 0.007036332972347736, 0.006587815936654806, 0.012178130447864532, 0.0028435969725251198, 0.01996438391506672, 0.04231128841638565, -0.0036096638068556786, 0.02210291102528572, 0.0015590447001159191, -0.006182356737554073, 0.0035701943561434746, -0.014316658489406109, -0.05129597708582878, 0.02348075620830059, -0.01351291686296463, 0.011108865961432457, 0.0014433272881433368, -0.0380055271089077, 0.03522113338112831, -0.002364580985158682, -0.0031880580354481936, 0.023121941834688187, -0.009896076284348965, -0.04113437980413437, -0.010527588427066803, 0.0034141105134040117, 0.009580320678651333, 0.0018514776602387428, 0.004460051655769348, -0.00682463264092803, -0.029422707855701447, 0.007901073433458805, 0.008281415328383446, -0.030972780659794807, 0.03995747119188309, -0.014912289567291737, -0.06998298317193985, 0.028274504467844963, -0.004635870456695557, 0.01485487911850214, 0.004772219806909561, -0.004140707664191723, 0.023523813113570213, 0.01700776070356369, -0.010204656049609184, 0.008855517022311687, 0.00035522537655197084, 0.026480436325073242, 0.02475813217461109, -0.0019375928677618504, 0.022189026698470116, -0.05043482407927513, 0.004707633052021265, -0.010491706430912018, -0.06269189715385437, 0.0074633206240832806, 0.014603709802031517, 0.015256750397384167, 0.00204344280064106, 0.0016613064799457788, 0.0006830912316218019, -0.05149691551923752, -0.018916647881269455, -0.030829256400465965, 0.014517594128847122, 0.01400807872414589, 0.013814319856464863, -0.020495427772402763, -0.009752551093697548, 0.038981497287750244, -0.010448649525642395, 0.0016469539841637015, 0.047392088919878006, 0.018572187051177025, 0.0015159870963543653, -0.032063573598861694, -0.011266743764281273, 0.0017752298153936863, 0.01841430924832821, -0.021543161943554878, -0.011108865961432457, -0.029968103393912315, -0.01786891184747219, 0.01130980160087347, -0.009214330464601517, 0.006501700729131699, 0.022906653583049774, 0.05844354256987572, -0.01583085209131241, -0.009881723672151566, -0.019045820459723473, 0.009142568334937096, 0.03691473230719566, 0.054998934268951416, -0.01873006485402584, -0.024255793541669846, 0.012350360862910748, 0.02471507340669632, -0.020351901650428772, 0.03364235535264015, -0.015314159914851189, -0.04423452913761139, -0.0181129053235054, -0.004944450221955776, -0.055199868977069855, 0.02316500060260296, 0.005823543295264244, -0.003778306068852544, -0.0014845908153802156, -0.01192696113139391, -0.07847969233989716, 0.014711353927850723, 0.02116999588906765, -0.009479852393269539, -0.06062512844800949, 0.016548478975892067, -0.01848607137799263, 0.048970866948366165, 0.006602168548852205, 0.030369974672794342, 0.02808792144060135, -0.0018236696487292647, -0.044464170932769775, -0.010233361274003983, -0.012422122992575169, -0.0025475758593529463, -0.007700137794017792, 0.010111364535987377, 0.023351583629846573, -0.008862693794071674, -0.02340899221599102, 0.011984370648860931, -0.015113224275410175, 0.0020272962283343077, 0.009257388301193714, -0.00833164993673563, 0.012285774573683739, 0.0035020196810364723, 0.017409631982445717, -0.003428463125601411, 0.02028013952076435, -0.0024471080396324396, -0.020768124610185623, -0.004538991022855043, 0.016476716846227646, -0.014173133298754692, 0.003396169748157263, -0.004165824968367815, -0.013936316594481468, -0.004693280439823866, 0.0012719938531517982, 0.02144269458949566, 0.0031916461884975433, 0.06010843813419342, 0.023107590153813362, -0.04337337613105774, -0.000462420895928517, 0.0006579742766916752, -0.027040185406804085, 0.02368169091641903, 0.010994045995175838, -0.012852699495851994, -0.000395143375499174, -0.01580214686691761, -0.04245481267571449, 0.019806506112217903, 0.02623644284904003, -0.040301933884620667, 0.03042738512158394, 0.0362832210958004, 0.04110567644238472, -0.004427758511155844, 0.01092945970594883, -0.054855410009622574, -0.007215739693492651, 0.00872634444385767, -0.013950669206678867, -0.018945353105664253, 0.00021214848675299436, 0.012472357600927353, -0.01690729148685932, 0.027700401842594147, 0.003424874972552061, -0.05201360583305359, -0.021213054656982422, -0.014065489172935486, 0.009135391563177109, 0.005870189052075148, 0.011159099638462067, -0.030341269448399544, 0.00936503242701292, 0.006347410846501589, 0.002996092662215233, 0.01931851916015148, -0.02395438961684704, 0.00677439896389842, -0.009321974590420723, 0.010125717148184776, 0.03918243572115898, -0.01796938106417656, 0.05063576251268387, -0.004460051655769348, -0.006046007387340069, -0.01910323090851307, -0.030169039964675903, 0.0014917671214789152, -0.02340899221599102, -0.010879225097596645, 0.03476185351610184, 0.04193812236189842, 0.03591005504131317, 0.01742398366332054, -0.00897033791989088, -0.005697958637028933, 0.013082340359687805, 0.01065676100552082, -0.0050951517187058926, 0.012737879529595375, -0.003446403658017516, -0.009372208267450333, -0.029350943863391876, 0.012214011512696743, -0.03252285718917847, 0.050032954663038254, -0.05930469557642937, 0.01261588279157877, -0.004499521106481552, -0.01693599671125412, 0.04440676048398018, 0.0038357162848114967, -0.0023735512513667345, -0.009207154624164104, 0.003728072391822934, 0.02412661910057068, 0.011223685927689075, -0.004556931555271149, 0.017165638506412506, -0.03803423047065735, 0.02550446428358555, 0.01132415421307087, -0.005019800737500191, -0.002662396291270852, 0.02350946143269539, 0.015845203772187233, 0.005073622800409794, -0.02020837552845478, 0.008166595362126827, 0.020940355956554413, 0.02247607707977295, 0.033441416919231415, 0.0014612679369747639, -0.0061859446577727795, -0.028174037113785744, 0.027800871059298515, -0.004564107861369848, -0.03266638144850731, -0.02230384759604931, 0.018342547118663788, 0.02261960320174694, 0.0003166529058944434, -0.006254119332879782, 0.008489527739584446, 0.002707247855141759, 0.01562991552054882, 0.026394320651888847, -0.011223685927689075, -0.028202740475535393, -0.021399637684226036, -0.04457898810505867, -0.018471719697117805, 0.011840845458209515, 0.014273601584136486, 0.0013912993017584085, -0.04460769519209862, 0.04701892286539078, -0.01010418776422739, -0.009278916753828526, -0.024255793541669846, -0.002452490385621786, -0.005999361630529165, 0.03404422476887703, -0.0337284691631794, 0.058788005262613297, -0.0220311488956213, 0.01125956792384386, 0.0027162181213498116, -6.39697173028253e-05, 0.003333377419039607, 0.03143206238746643, 0.011130394414067268, 0.01545768603682518, 0.012106367386877537, -0.009860195219516754, -0.029379649087786674, 0.03857962787151337, -0.021772803738713264, 0.02547575905919075, -0.00747767323628068, 0.006132122594863176, 0.013606208376586437, 0.03746012970805168, 0.04523920640349388, -0.005730251781642437, 0.013835848309099674, -0.0023143470752984285, -0.01521369256079197, 0.0023914920166134834, -0.005626195576041937, -0.014453007839620113, 0.012414947152137756, 0.012623058632016182, 0.017782798036932945, 0.043603017926216125, -0.012314479798078537, 0.03312566131353378, -0.003128853626549244, -0.018916647881269455, -0.005245853215456009, -0.008389059454202652, 0.006720576900988817, 0.002475813264027238, 0.0037962468340992928, -0.050004251301288605, 0.015242397785186768, -0.0047112214379012585, 0.042914096266031265, -0.009171273559331894, 0.008252710103988647, -0.03258026763796806, -0.03059961460530758, 0.014926641248166561, -0.030829256400465965, -0.0233085248619318, 0.03266638144850731, 0.015816498547792435, -0.01656283065676689, 0.0014666501665487885, 0.013828672468662262, -0.013756909407675266, 0.0345609150826931, -0.003597105387598276, 0.0233372300863266, -0.0012737879296764731, 0.0022246437147259712, 0.03404422476887703, 0.025791514664888382, -0.002265907358378172, 0.026695724576711655, 0.04678928107023239, 0.027528172358870506, 0.019906973466277122, -0.0046717519871890545, 0.021184349432587624, -0.06154369190335274, 0.007944131270051003, -0.0014191074296832085, 0.008295767940580845, 0.01700776070356369, -0.004564107861369848, -0.0018111111130565405, 0.015285455621778965, 0.04805230349302292, 0.048454176634550095, -0.019131936132907867, -0.011812140233814716, 0.038895383477211, -0.018672654405236244, 0.03679991140961647, 0.003580958815291524, 0.026322558522224426, 0.011611204594373703, 0.027513818815350533, -0.025461405515670776, -0.01495534647256136, -0.008353178389370441, 0.009099510498344898, -0.021543161943554878, 0.011553795076906681, 0.020466722548007965, -0.0017070552567020059, -0.026566551998257637, -0.0073413243517279625, 0.01565862074494362, 0.019605569541454315, 0.016404952853918076, 0.036024875938892365, -0.008604347705841064, -0.02695406973361969, 0.015084519982337952, -0.00877657812088728, 0.00628282455727458, -0.01270199753344059, 0.03249415010213852, -0.009558791294693947, -0.0023879038635641336, -0.04027322679758072, -0.00642993813380599, -0.019189346581697464, 0.009142568334937096, 0.015027109533548355, -0.007678608875721693, 0.03192004933953285, 0.009164096787571907, -0.0030768257565796375, -0.029681053012609482, -0.005794838070869446, 0.010893577709794044, 0.03470444306731224, -0.02692536450922489, 0.031546883285045624, 0.025691047310829163, -0.007980012334883213, 0.028174037113785744, -0.003084002062678337, -0.01951945386826992, 0.006516053341329098, -0.02429885044693947, -0.00807330384850502, 0.020251434296369553, 0.0028166859410703182, -0.0237247496843338, 0.007951307110488415, 0.010305123403668404, 0.012386241927742958, -0.0054252599366009235, 0.02028013952076435, -0.016648946329951286, 0.0018075230764225125, 0.008884222246706486, -0.03364235535264015, -0.009006218984723091, -0.011589676141738892, 0.01265176385641098, -0.016505420207977295, -0.013778438791632652, 0.015960024669766426, 0.003505607834085822, 0.006207473576068878, -0.02956623211503029, -0.0015240603825077415, 0.006516053341329098, -0.017538804560899734, 0.033412713557481766, 0.028633316978812218, 0.015256750397384167, -0.024528490379452705, -0.01220683567225933, 0.0116686150431633, -0.0259206872433424, 0.005181266926229, -0.013778438791632652, 0.016132254153490067, -0.02747076191008091, 0.05436742305755615, 0.030111629515886307, 0.012242716737091541, -0.02028013952076435, 0.03174781799316406, -0.030657025054097176, 0.003315436653792858, 0.0984010174870491, -0.014101370237767696, 0.014431479386985302, 0.0005978730041533709, -0.008245534263551235, 0.003832128131762147, -0.01848607137799263, 0.02168668806552887, 0.010470177978277206, -0.012486710213124752, -0.0053857904858887196, -0.03725919499993324, 0.01010418776422739, -0.019060174003243446, 0.06808844953775406, 0.007635551504790783, -0.008238358423113823, -0.03441739082336426, 0.03349882736802101, 0.002152881119400263, -0.016361895948648453, 0.017395278438925743, 0.017409631982445717, 0.0003038701834157109, -0.024227088317275047, 0.01735222153365612, 0.011596851982176304, -0.010821815580129623, 0.002151086926460266, 0.025935040786862373, 0.03645545244216919, -0.0057374280877411366, -0.011216510087251663, -0.006856926251202822, 0.02185891941189766, 0.0012468768982216716, 0.00897033791989088, 0.013003401458263397, -0.0194476917386055, -0.017667977139353752, -0.04437805339694023, 0.0026659842114895582, -0.020882945507764816, 0.028145331889390945, 0.034101635217666626, 0.001257641357369721, -0.015242397785186768, 0.002129558240994811, -0.021055176854133606, -0.0007741401204839349, 0.015228045172989368, 0.010061130858957767, 0.02437061257660389, 0.009243035688996315, -0.0068712783977389336, -0.020595895126461983, -0.0037208960857242346, -0.03246544674038887, -0.006049595773220062, -0.027772165834903717, -0.0004960596561431885, 0.009063629433512688, -0.0054252599366009235, 0.011769083328545094, 0.019906973466277122, 0.0030588852241635323, 0.03315436840057373, 0.0018801827682182193, -0.027413351461291313, -0.0063581750728189945, 0.0015393099747598171, 0.013828672468662262, -0.018127258867025375, 0.004366760142147541, 0.0129459910094738, 0.007800605613738298, 0.024944715201854706, 0.024872951209545135, 0.028389323502779007, -0.0336710587143898, -0.037374015897512436, -0.0011455120984464884, 0.03209228068590164, 0.0010638820240274072, 0.014984051696956158, -0.025002125650644302, 0.007072214037179947, 0.02320805750787258, -0.03576653078198433, 0.0025260469410568476, -0.00970949325710535, 0.05075058341026306, 0.014675471931695938, 0.012572824954986572, 0.018701359629631042, -0.0071690939366817474, -0.020251434296369553, -0.012350360862910748, 0.003654515603557229, -0.02877684310078621, 0.03321177884936333, 0.002003973349928856, 0.014345363713800907, -0.032235804945230484, 0.013634912669658661, -0.011338506825268269, -0.05456835776567459, -0.042397402226924896, -0.04420582205057144, 0.006189533043652773, -0.0031593528110533953, 0.02887731045484543, -0.0009037615382112563, 0.01597437635064125, -0.02188762277364731, -0.01225706934928894, -0.026494789868593216, 0.010147245600819588, -0.00033997578429989517, -0.0570082888007164, 0.016892939805984497, 0.009867371059954166, -0.02003614604473114, -0.034474801272153854, 0.029996808618307114, 0.010936635546386242, 0.026796191930770874, 0.02609291858971119, -0.006953805685043335, 0.010448649525642395, 0.0034769028425216675, 0.009085157886147499, 0.014682648703455925, 0.00871199183166027, 0.005235088989138603, -0.007492025848478079, -0.00936503242701292, -0.0036814266350120306, -0.02754252403974533, -0.017165638506412506, -0.02144269458949566, 0.0010898959590122104, -0.024916009977459908, -0.008209653198719025, 0.011575323529541492, -0.06406974047422409, -0.017237400636076927, 0.0019214462954550982, 0.01400807872414589, 0.06527534872293472, -0.03559429943561554, -0.0181416105479002, 0.029379649087786674, 0.016634594649076462, 0.010434296913444996, -0.007391558028757572, -0.013728204183280468, -0.008783754892647266, -0.022246437147259712, -0.02127046510577202, -0.009214330464601517, -0.014331011101603508, 0.011661439202725887, -0.029594937339425087, 0.024772483855485916, 0.028073567897081375, -0.022289494052529335, -0.0052637942135334015, -0.004323702771216631, 0.0031898519955575466, 0.010814638808369637, -0.011611204594373703, -0.035135019570589066, -0.003749601077288389, 0.0011670409003272653, 0.07492025941610336, -0.004912157077342272, 0.018801826983690262, -0.0027377470396459103, -0.00027359530213288963, 0.01769668236374855, -0.012292950414121151, 0.02375345304608345, -0.005504199303686619, 0.022289494052529335, -0.0030552970711141825, 0.05132468417286873, -0.00677439896389842, -0.014338187873363495, -0.05009036511182785, -0.021385284140706062, -0.026824897155165672, 0.0019196522189304233, 0.028245799243450165, 0.01779714971780777, 0.004101238213479519, -0.029135655611753464, -0.014697001315653324, -0.03338400647044182, 0.03212098404765129, -0.056549008935689926, 0.008740697056055069, 0.009300446137785912, 0.03743142634630203, -0.013498564250767231, 0.01390761137008667, -0.015271103009581566, -0.006411997135728598, 0.003789070528000593, 0.02183021418750286, -0.03042738512158394, 0.018787475302815437, -0.021729744970798492, -0.021945033222436905, 0.023810863494873047, 0.02058154158294201, -0.0077719003893435, 0.053477562963962555, 0.006702636368572712, -0.012393418699502945, -0.02571975253522396, -0.044980861246585846, -0.03944078087806702, -0.03777588531374931, -0.006742105819284916, -0.005403731483966112, 0.029379649087786674, 0.005281734745949507, -0.02729853056371212, 0.0005579550052061677, 0.009752551093697548, 0.014840526506304741, 1.4688927876704838e-05, -0.03404422476887703, -0.013570326380431652, -0.004861922934651375, 0.01621836982667446, -0.01600308157503605, 0.025762809440493584, -0.0017402454977855086, 0.0036240164190530777, 0.008231181651353836, -0.0004106172127649188, 0.003347730031237006, -0.0021636453457176685, 0.02454284392297268, 0.005059270188212395, 0.003907478880137205, -0.021844565868377686, -0.005310439970344305, -0.042052943259477615, -0.038751859217882156, -0.005758956540375948, -0.011740378104150295, -0.017667977139353752, -0.003048120765015483, -0.02678184024989605, -0.010556293651461601, 0.02058154158294201, -0.017438335344195366, -0.0830150917172432, -0.019261108711361885, -0.0003675595798995346, 0.004262704402208328, 0.000236144129303284, 0.015285455621778965, -0.006551934406161308, -0.00912103895097971, -0.004427758511155844, 0.0018389192409813404, 0.0045031094923615456, 0.028762489557266235, 0.02416967786848545, 0.0018460954306647182, 0.007448968477547169, -0.0025924276560544968, -0.0034769028425216675, 0.013993727043271065, 0.039469484239816666, -0.005665665026754141, -0.011352859437465668, 0.007398734334856272, -0.011381564661860466, -0.01755315624177456, -0.0020595896057784557, -0.0036706621758639812, -0.015687325969338417, 0.023365935310721397, -0.014409950003027916, 0.03280990570783615, -0.003469726536422968, -0.027341589331626892, -0.05689346790313721, 0.011848022229969501, 0.007585317362099886, 0.0336710587143898, 0.02623644284904003, -0.0066703432239592075, -0.005195619538426399, -0.011639909818768501, -0.0037208960857242346, -0.006720576900988817, -0.012637411244213581, -0.011374387890100479, 0.005741016007959843, 0.03171911463141441, 0.013089516200125217, 0.005220736376941204, -0.012235540896654129, -0.024184029549360275, 0.018600892275571823, -0.030025513842701912, 0.003297496121376753, 0.025461405515670776, -0.009960662573575974, -0.024456728249788284, 0.018184667453169823, 0.024528490379452705, -0.014926641248166561, 0.02801615744829178, -0.01621836982667446, 0.0002288557298015803, 0.021801508963108063, -0.01703646592795849, -0.004761455114930868, 0.048769932240247726, 0.01604614034295082, -0.0029799460899084806, -0.015759088099002838, 0.01828513666987419, -0.022059854120016098, -0.010089836083352566, 0.023351583629846573, -0.01562991552054882, 0.007958483882248402, -0.006458642892539501, 0.0024219912011176348, 0.026968423277139664, 0.0345035046339035, 0.006594992242753506, 0.00021674578601960093, -0.0038213639054447412, 0.013053635135293007, -0.013046459294855595, -0.014575004577636719, 0.038436103612184525, 0.014675471931695938, -0.01105145551264286, 0.01676376722753048, 0.020265785977244377, 0.017122579738497734, 0.01201307587325573, 0.020122261717915535, -0.04627259075641632, -0.004018711391836405, -0.013003401458263397, -0.0007194210775196552, -0.03754624351859093, -0.015773441642522812, 0.028906015679240227, -0.010226184502243996, -0.04351690039038658, -0.0002295285084983334, -0.018012437969446182, -0.0379481166601181, 0.017237400636076927, 0.024155324324965477, -0.005547256674617529, 0.014711353927850723, 0.007050685118883848, 0.021844565868377686, 0.01509887259453535, -0.005909658502787352, -0.017366573214530945, -0.010463002137839794, -0.010297947563230991, -0.030369974672794342, -0.02781522274017334, 0.006530405953526497, 0.007692961487919092, 0.05169785022735596, 0.003921831492334604, -0.022763129323720932, 0.027872633188962936, 0.019462045282125473, 0.01821337267756462, 0.0031934401486068964, 0.02230384759604931, 0.001503428560681641]
Name: Amelie Bistro & Wine Bar west village, Address: 22 W 8th St, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.99766799999999, 40.732629]}, Rating: 4.5, Reviews: ['It’s not often I want to eat French food so I’m glad my friends introduced me to this place! Such good food, service, and ambiance!!\n\nBottomless mimosa for brunch is $26! Such a great deal in West Village! I ordered the scrambled egg vol au vent, and it was absolutely delicious. The flavors were not too overpowering, and the puff pastry was perfect. I could have used a little bit more seasoning and pepper but to each his own. I still thoroughly enjoyed it as is! The truffle fries were also great, and I like how they serve the complimentary bread in a bag.\n\nAn added touch was presenting the check in a book! Very creative! Cannot wait to return to try other items off the menu and to visit for dinner. I heard the duck dishes are also incredible, and heads up, RSVP because you never know how busy they can get!', "Incredibly tasty French brunch at extremely great prices especially given the area. Their eggs Benedict (5/5) is the best Benedict in the city by far: smooth, smoky savory bacon atop perfectly toasted fluffy bread topped with perfectly poached eggs and heavenly hollandaise sauce. It's also only $18 which is a steal in this area. Their banana creme brulee (5/5) is also incredibly - delicately creamy (none of that fake garbage) sweet, and delicious. Service is also top notch.", 'If you’re looking for good drinks and top quality food/tapas this is the spot. Funny story is that me and my wife were looking to use the rest room and a place to eat and spontaneously ran into Amelie. We had left to check out the rest of the area out (Greenwich Village) when I noticed my wallet was missing. I had panicked and called the restaurant and they told me one of the workers had found it in the bathroom. So we came back (which I was thinking about because the food looked so damn good) and we decided to grab some charcuterie along with some drinks.  Naime, which is the manager there took care of us and even gave us some drinks and food on the house! I would give them a 10 stars if I could. I definitely recommend this place. Best food and customer service hands down. I wouldn’t go anywhere else if you’re in the area. Thank guys we definitely will be back!', 'Wine flights  - both good and relatively affordable during happy hour ($14 each for 3 glasses per flight)\n- Jules - full white wine\n- Matthieu - orange wine\nTruffle fries and grilled chicken sandwich and mussels were delicious', 'Forget the calories and indulge in excellently prepared French classics! Complement them with the wonderfully matched wine flights. Value to the max!'], Embedding: [-0.04165114462375641, -0.007739576976746321, -0.0443243533372879, -0.03780681639909744, 0.008853414095938206, -0.011876686476171017, 0.0047322167083621025, 0.0423385426402092, 0.0013198970118537545, -0.009222571738064289, 0.005012267269194126, -0.043636955320835114, -0.03261315077543259, -0.02161480486392975, -0.04348420351743698, 0.07052180171012878, -0.016064714640378952, 0.0070076268166303635, 0.033504221588373184, 0.03286774456501007, 0.019565345719456673, 0.015288210473954678, -0.06171294301748276, 0.007675928995013237, -0.012443152256309986, 0.03459896519780159, -0.07388240844011307, -0.015275481157004833, -0.003249221947044134, 0.002700259443372488, 0.06879058480262756, -0.01766864024102688, 0.004719486925750971, -0.03803594782948494, -0.017388589680194855, -0.019870854914188385, -0.01593741774559021, 0.0021592527627944946, 0.03464988246560097, 0.019667182117700577, 0.044629864394664764, 0.025331838056445122, 0.05774131789803505, -0.019565345719456673, -0.002493404084816575, 0.007109463214874268, -0.0073258657939732075, 0.015924688428640366, -0.059625294059515, 0.014422600157558918, -0.005021814256906509, 0.06548089534044266, -0.06049090251326561, -0.009833591058850288, 0.002084466628730297, -0.024924492463469505, -0.002039913088083267, -0.0038252349477261305, 0.06364783644676208, 0.010438244789838791, 0.08416789770126343, -0.02057098038494587, 0.037603143602609634, 0.021271107718348503, -0.021016515791416168, 0.0034051593393087387, 0.002253133337944746, 0.014537165872752666, 0.01200398150831461, -0.019157998263835907, 0.04524088278412819, 0.0325876921415329, -0.011832132935523987, -0.007243123836815357, 0.03083101287484169, -0.016344765201210976, 0.016077443957328796, -0.021602075546979904, -0.04244037717580795, -0.05109648406505585, -0.0682813972234726, -0.023944316431879997, -0.006657563615590334, 0.03134019300341606, 0.020443685352802277, -0.06919793039560318, -0.08584820479154587, 0.03327509015798569, -0.03065279871225357, 0.0379086509346962, 0.010921969078481197, -0.01952715590596199, 0.030423665419220924, -0.014435329474508762, 0.03734854981303215, -0.023015057668089867, -0.04883062094449997, 0.010673741810023785, -0.0647171214222908, 0.01881430111825466, 0.07530812174081802, -0.0361265130341053, 0.017057619988918304, -0.023078706115484238, 0.05641744285821915, -0.0025745548773556948, 0.07897423207759857, -0.012895051389932632, -0.011252937838435173, -0.03149294853210449, -0.04643746092915535, -0.010699201375246048, -0.023587888106703758, 0.0030280458740890026, -0.01629384607076645, 0.048245061188936234, 0.0014424191322177649, -0.022582251578569412, -0.0185087900608778, 0.021729370579123497, 0.01354425959289074, 0.014193467795848846, -0.0012268120190128684, -0.04134563356637955, 0.03477717936038971, -0.0709291473031044, -0.017426777631044388, 0.0011727113742381334, 0.01653570868074894, -0.059879884123802185, 0.03248585760593414, -0.016332034021615982, 0.0028195991180837154, -0.00877703633159399, -0.0068357777781784534, -0.01917072758078575, 0.002522045513615012, -0.02024001255631447, -0.025319108739495277, 0.005973349325358868, 0.035897381603717804, 0.01101744081825018, 0.041371092200279236, -0.01881430111825466, -0.021334754303097725, -0.02963443286716938, -0.06797588616609573, 0.008783400990068913, -0.023575158789753914, 0.014715380035340786, 0.009190747514367104, -0.010731025598943233, -0.027623161673545837, -0.028514230623841286, 0.006803953554481268, -0.020787382498383522, 0.015568261034786701, 0.0602872297167778, 0.0009205068345181644, 0.04246583580970764, -0.06318957358598709, 0.04338236525654793, -0.02795412950217724, -0.015186374075710773, 0.0008847049321047962, -0.005270041059702635, -0.06558272987604141, -0.002913479693233967, -0.023766102269291878, 0.013913417235016823, 0.00977630726993084, 0.018521521240472794, 0.06996170431375504, 0.03164570406079292, -0.006256582215428352, -0.02757224254310131, 0.013467881828546524, 0.007306771818548441, 0.01686667650938034, -0.025904670357704163, -0.026630254462361336, 0.016879405826330185, 0.013015982694923878, 0.026171989738941193, -0.021907584741711617, 0.008592457510530949, -0.028463313356041908, -0.017414048314094543, -0.0014336674939841032, 0.04473169893026352, 0.018623357638716698, 0.022213095799088478, 0.009381690993905067, -0.02741948887705803, -0.021271107718348503, 0.010049993172287941, 0.0658373236656189, 0.030627338215708733, -0.025739185512065887, 0.06695752590894699, -0.01027276087552309, 0.004028907977044582, 0.02416071854531765, -0.024033423513174057, 0.041192878037691116, -0.014002524316310883, 0.007682293653488159, 0.028692444786429405, 0.0031457943841814995, -0.06313865631818771, 0.027368569746613503, -0.0021210641134530306, 0.0001307764177909121, -0.027113977819681168, -0.030041778460144997, -0.005804682616144419, -0.021398402750492096, 0.035540953278541565, 0.03406432271003723, 0.02673209086060524, -0.013938875868916512, 0.019450778141617775, 0.044986288994550705, -0.0211692713201046, 0.007739576976746321, 0.015440965071320534, 0.015059078112244606, -0.01200398150831461, -0.018827030435204506, 0.005155474878847599, 0.014537165872752666, -0.0024997687432914972, -0.032969579100608826, -0.00358019070699811, -0.025942858308553696, -0.0013525164686143398, -0.016433872282505035, -0.007612281478941441, 0.002744812984019518, 0.017770476639270782, 0.005060003139078617, -0.028132343664765358, 0.07164200395345688, 0.02314235270023346, 0.0503072515130043, -0.008318772539496422, -0.02108016423881054, -0.01447351835668087, 0.02132202498614788, 0.030958307906985283, 0.06568456441164017, 0.014218926429748535, 0.020163634791970253, -0.04116741940379143, -0.015097266994416714, 0.010139100253582, -0.024529876187443733, -0.012073994614183903, 0.051147401332855225, -0.026375662535429, 0.006695752497762442, 0.014142549596726894, -0.018890677019953728, 0.0083124078810215, 0.009006168693304062, -0.0001921369112096727, 0.027012141421437263, 0.0017646362539380789, 0.0038315998390316963, 0.03426799550652504, -0.08253851532936096, -0.026961224153637886, 0.04450256749987602, 0.040149055421352386, 0.04177844151854515, -0.04681934788823128, -0.01886521838605404, -0.0042389458976686, 0.0037584046367555857, 0.013849768787622452, -0.0051236506551504135, -0.03431891277432442, -0.024389851838350296, -0.0021942590828984976, 0.02493722178041935, 0.007045815698802471, 0.05478805676102638, 0.018012337386608124, 0.031416572630405426, 0.0060401796363294125, -0.030958307906985283, 0.03953803703188896, 0.03291866183280945, -0.022505875676870346, -0.01955261453986168, 0.0016389318043366075, 0.0480923056602478, 0.009057086892426014, 0.03681390732526779, 0.0059447078965604305, 0.034013405442237854, 0.031416572630405426, 0.005324141588062048, 0.03541365638375282, -0.01388795766979456, 0.04849965125322342, -0.03841783478856087, 0.02795412950217724, 0.03905431181192398, 0.036890286952257156, -0.04124379903078079, 0.0131878312677145, 0.013582448475062847, -0.01397706475108862, -0.004729034379124641, -0.013964335434138775, 0.02176756039261818, 0.05921794846653938, -0.04880516231060028, -0.016421141102910042, 0.03424253687262535, -0.004312140867114067, 0.03342784196138382, 0.04493537172675133, 0.007650469895452261, -0.04284772276878357, 0.049594394862651825, -0.030372748151421547, -0.0115266228094697, -0.039487116038799286, 0.014753568917512894, -0.04249129444360733, 0.04373879358172417, 0.0242752842605114, -0.041192878037691116, -0.03429345414042473, -0.019412590190768242, 0.01970537006855011, 0.05616285279393196, 0.027368569746613503, 0.03274044767022133, -0.016192009672522545, -0.010069088079035282, 0.007370419334620237, 0.008032357320189476, 8.93555989023298e-05, 0.0443243533372879, 0.011023805476725101, -0.02063462883234024, -0.0025013599079102278, -0.04091282933950424, 0.008191476576030254, -0.04419705644249916, 0.009674470871686935, -0.010240936651825905, -0.008395149372518063, 0.020252741873264313, 0.06593915820121765, -0.02520454302430153, 0.007542268838733435, -0.016077443957328796, 0.012640460394322872, 0.009356232360005379, -0.0130223473533988, -0.02174210175871849, -0.000291984440991655, 0.002275410108268261, 0.033682435750961304, -0.03577008470892906, 0.03750130534172058, 0.014218926429748535, 0.038443293422460556, 0.011494799517095089, 0.002881655702367425, -0.03464988246560097, -0.0001494729658588767, 0.009114369750022888, -0.0014885637210682034, 0.009757213294506073, 0.014422600157558918, 0.03424253687262535, -0.011813038028776646, 0.03190029412508011, -0.014702649787068367, 0.06639742106199265, -0.02511543594300747, 0.02777591533958912, -0.05555183067917824, -0.01054008211940527, -0.007586821913719177, -0.04865240678191185, -0.01981993578374386, -0.045164503157138824, -0.002712988993152976, -0.01620473898947239, 0.023676995187997818, 0.007994168438017368, -0.002865743823349476, -0.01770682819187641, -0.006145198829472065, 0.05305683612823486, -0.008649741299450397, -0.05397336557507515, -0.05427887663245201, 0.042745888233184814, 0.04842327535152435, -0.02739402838051319, 0.008331501856446266, -0.039869002997875214, 0.006746670696884394, -0.009903603233397007, -0.026757551357150078, 0.03289320319890976, -0.005916066467761993, 0.018877947703003883, -0.002865743823349476, 0.025331838056445122, -0.0007235963130369782, 0.003274681279435754, 0.010832861997187138, -0.011170195415616035, -0.00021799384558107704, -0.022989599034190178, 0.027674078941345215, -0.013875228352844715, 0.00988450925797224, 0.014231656678020954, -0.05911611020565033, -0.052853163331747055, -0.018381495028734207, -0.018445143476128578, -0.049568936228752136, 0.006355236284434795, -0.012869592756032944, 0.016764840111136436, -0.03477717936038971, -0.0010104094399139285, 0.01054008211940527, 0.024198908358812332, -0.018343307077884674, 0.026935763657093048, -0.03869788348674774, -0.030219992622733116, -0.04266950860619545, -0.001958762062713504, 0.018228739500045776, 0.0009825634770095348, 0.02335875667631626, 0.027037600055336952, -0.019145268946886063, 0.013264209032058716, -0.0019699004478752613, -0.036610234528779984, -0.023880667984485626, -0.02739402838051319, 0.04638654366135597, 0.016408411785960197, 0.03974170982837677, 0.030423665419220924, -0.03251131623983383, -0.02757224254310131, -0.0006794406799599528, -0.052853163331747055, -0.004378971178084612, 0.062069371342659, -0.0051236506551504135, -0.036432020366191864, 0.04282226413488388, 0.029710810631513596, -0.06033815070986748, -0.0013493341393768787, 0.005912884138524532, -0.007758671417832375, 0.012532259337604046, -0.03085647150874138, -0.05305683612823486, 0.00458900909870863, 0.016612084582448006, 0.00977630726993084, 0.02691030502319336, -0.03788319230079651, -0.02365153655409813, -0.012150372378528118, -0.015568261034786701, -0.05356601998209953, -0.09440246969461441, 0.021665723994374275, 0.033147793263196945, -0.02828509919345379, 0.002856196602806449, 0.006918519735336304, 0.007147652097046375, -0.025790102779865265, -0.012462246231734753, -0.006562091875821352, -0.013085994869470596, -0.004223033785820007, -0.006495261564850807, 0.03597375750541687, 0.015962878242135048, 0.025217272341251373, -0.022569522261619568, -0.009801766835153103, 0.023549700155854225, 0.011927604675292969, 0.031925756484270096, -0.03806140646338463, -0.032282181084156036, 0.030932849273085594, 0.04554639011621475, -0.0077077532187104225, -0.03627926856279373, 0.01866154558956623, -0.001973083009943366, -0.004299411550164223, 0.001953988568857312, -0.027852293103933334, 0.031416572630405426, -0.03238401934504509, 0.012175831012427807, 0.014193467795848846, -0.010240936651825905, 0.026681173592805862, 0.016102902591228485, 0.03475171700119972, 0.010788308456540108, -0.005276405718177557, -0.01833057776093483, -0.017783205956220627, -0.02311689406633377, 0.02808142639696598, -0.02212398871779442, -0.040658239275217056, 0.03149294853210449, -0.020049069076776505, -0.016663003712892532, -0.024924492463469505, 0.0345735065639019, 0.011068359017372131, 0.002690712222829461, 0.022582251578569412, -0.0066193751990795135, 0.00795597955584526, -0.023587888106703758, 0.016064714640378952, -0.020787382498383522, 0.024262554943561554, -0.009286219254136086, 0.006854872219264507, -0.043076854199171066, -0.020685546100139618, -0.0234987810254097, 0.01432076282799244, -0.019221646711230278, -0.012131277471780777, 0.0177322868257761, 0.02057098038494587, -0.007860507816076279, 0.03034728765487671, 0.026248367503285408, -0.010610094293951988, -0.01877611130475998, 0.021805748343467712, 0.017095809802412987, 0.008446067571640015, -0.01463900227099657, 0.009738119319081306, 0.018521521240472794, -0.009623552672564983, -0.00011028976587112993, 0.004875424318015575, 0.045164503157138824, 0.0006090302485972643, -0.03961441293358803, 0.05733397230505943, -0.00236292602494359, 0.03327509015798569, 0.005604192148894072, -0.009050722233951092, 0.06593915820121765, -0.03386064991354942, -0.016726652160286903, -0.006148381158709526, 0.019425319507718086, -0.007542268838733435, 0.02260771207511425, 0.02108016423881054, 0.021538427099585533, 0.023460593074560165, 0.019056161865592003, 0.011081088334321976, 0.02344786375761032, -0.011265667155385017, -0.017261292785406113, 0.007612281478941441, -0.001480607781559229, -0.015580990351736546, 0.011564811691641808, 0.002633429132401943, -0.025370027869939804, -0.010514622554183006, 0.0031107880640774965, -0.03184937685728073, -0.01985812559723854, -0.01148206926882267, 0.019412590190768242, -0.0021942590828984976, -0.023613346740603447, 0.05906519293785095, -0.02841239422559738, -0.0036247442476451397, 0.0018839759286493063, -0.017630450427532196, 0.0025124982930719852, -0.013824310153722763, -0.0057473997585475445, 0.003411523997783661, -0.02551005221903324, 0.014091631397604942, -0.025395486503839493, -0.0013413781998679042, -0.0007311545195989311, 0.00899980403482914, -0.022327661514282227, 0.014282574877142906, 0.01764317974448204, -0.012073994614183903, -0.03431891277432442, 0.002315190155059099, 0.020176364108920097, -0.026935763657093048, -0.005881059914827347, 0.035209983587265015, 0.025344569236040115, -0.010088182054460049, -0.0014312807470560074, 0.007090368773788214, -0.024924492463469505, -0.028488771989941597, -0.009992710314691067, 0.027979588136076927, 0.007096733897924423, 0.008337866514921188, 0.02535729855298996, -0.016166551038622856, 0.008057815954089165, 0.041905734688043594, 0.03067825734615326, -0.01782139390707016, -0.017363129183650017, 0.01737585850059986, -0.009413515217602253, 0.04603011533617973, 0.01686667650938034, 0.005629651248455048, 0.01582285203039646, 0.015835581347346306, 0.028921576216816902, -0.002106743399053812, 0.003004177939146757, 0.008166017010807991, 0.014244385994970798, -0.0016039254842326045, 0.014842675067484379, -0.006504809018224478, 0.02234039083123207, -0.009623552672564983, 0.02544640563428402, -0.009903603233397007, -0.029507137835025787, 0.06344415992498398, -0.01481721643358469, 0.06985986232757568, 0.007389513775706291, -0.0015235700411722064, 0.007987803779542446, 0.019119810312986374, 0.010610094293951988, 0.017719557508826256, 0.005470531526952982, -0.011653918772935867, 0.004248492885380983, -0.015950147062540054, -0.009146193973720074, -0.026859387755393982, -0.025637349113821983, -0.017095809802412987, -0.032664068043231964, 0.007535903714597225, 0.0005346418474800885, -0.0019969509448856115, 0.01584831066429615, 0.045673687011003494, -0.028005048632621765, 0.04350966215133667, -0.03403886407613754, -0.0061388337053358555, -0.004729034379124641, 0.023180542513728142, -0.06695752590894699, 0.017146727070212364, -0.02930346317589283, -0.010673741810023785, -0.022213095799088478, -0.0041052852757275105, 0.03187483549118042, -0.012379503808915615, -0.006167475134134293, 0.01719764620065689, 0.005664657335728407, -0.05038362741470337, 0.000280846084933728, -0.01967991143465042, 0.027699537575244904, 0.015326399356126785, 0.008318772539496422, -0.04200757294893265, -0.004875424318015575, 0.0008966388995759189, -0.008146923035383224, -0.04162568598985672, 0.0423385426402092, -0.0033574234694242477, -0.024771738797426224, 0.04200757294893265, -0.021360214799642563, 0.04559731110930443, 0.007612281478941441, -0.02440258115530014, 0.04147293046116829, -0.013697014190256596, -0.028565149754285812, 0.01680302806198597, 0.013015982694923878, 0.025548242032527924, 0.006695752497762442, 0.028157802298665047, -0.01868700422346592, -0.05494081228971481, -0.02622290886938572, 0.018165092915296555, -0.04661567509174347, -0.00471630459651351, 0.0003442950255703181, 0.01946350932121277, 0.0007772992248646915, 0.01254498865455389, -0.010285490192472935, -0.06410609930753708, 0.0177322868257761, -0.047888632863759995, 0.011163830757141113, 0.028921576216816902, -0.024440769106149673, -0.013607907108962536, -0.014091631397604942, 0.026502959430217743, 0.0030407754238694906, -0.02138567343354225, 0.021640263497829437, -0.006192934699356556, -0.02054552175104618, -0.023180542513728142, -0.005413248669356108, 0.013467881828546524, -0.004242128226906061, 0.005298682488501072, -0.03951257839798927, 0.0008146922918967903, -0.007090368773788214, -0.03065279871225357, -0.011781214736402035, -0.0070585450157523155, 0.03034728765487671, 0.03574462607502937, -0.04251675307750702, 0.01096015702933073, -0.012029441073536873, -0.035184524953365326, 0.01533912867307663, 0.04470624029636383, -0.005476896185427904, -0.019221646711230278, 0.01638295315206051, 0.020711006596684456, -0.034675341099500656, 0.051656585186719894, -0.06135651469230652, -0.005562820937484503, 0.005540544167160988, 0.003293775487691164, -0.06247671693563461, -0.0017280387692153454, -0.014931782148778439, 0.011793944053351879, -0.03610105440020561, 0.01647206023335457, -0.03047458454966545, -0.0023167813196778297, 0.03218034654855728, -0.025331838056445122, -0.058148663491010666, 0.020099986344575882, -0.006243852898478508, 0.04508812725543976, 0.024949951097369194, 0.02074919454753399, 0.048932455480098724, 0.014422600157558918, -0.013773391954600811, -0.031111061573028564, -0.020278200507164, 0.012042170390486717, -0.004518996458500624, 0.04501175135374069, 0.018075985834002495, -0.012952335178852081, -0.0035865555983036757, 0.01710853911936283, 0.010775579139590263, 0.015606449916958809, 0.01206762995570898, 0.00659391563385725, -0.0007625806611031294, 0.02825963869690895, 0.01533912867307663, 0.014957241714000702, 0.00606882106512785, -0.01704489067196846, -0.00428349943831563, -0.028896117582917213, 0.021512968465685844, -0.006708481814712286, 0.018916137516498566, -0.01904343254864216, 0.010234571993350983, -0.00598926143720746, -0.01311145443469286, 0.012398598715662956, 0.0035038134083151817, 0.0010334817925468087, 0.03531181812286377, -0.040836453437805176, -0.07678475230932236, -0.011844862252473831, -0.014180737547576427, 0.019247105345129967, 0.0006671088631264865, 0.02323145978152752, -0.04641200229525566, 0.00929894857108593, -0.042567674070596695, -0.0015283436514437199, 0.0027527690399438143, -0.00336378812789917, 0.035057228058576584, -0.01454989518970251, 0.05672295019030571, -0.005206393077969551, -0.0016126770060509443, -0.03620288893580437, 0.011259302496910095, 0.00952171627432108, 0.0021369762253016233, -0.0001219253899762407, 0.022913221269845963, -0.004286681767553091, -0.026095613837242126, 0.015135455876588821, 0.002068554749712348, -0.039308905601501465, -0.041040126234292984, -0.039487116038799286, 0.013773391954600811, -0.011698472313582897, -0.0037647695280611515, -0.00934350211173296, 0.00633932463824749, 0.014218926429748535, -0.01031731441617012, 0.02475900761783123, 0.006434796378016472, 0.00677212979644537, 0.0029803100042045116, 0.008204205892980099, 0.03098376654088497, -0.016904864460229874, 0.03052550181746483, -0.003554731607437134, -0.010037263855338097, -0.005069550126791, 0.02203488163650036, 0.02374064363539219, -0.03016907535493374, -0.038646966218948364, 0.016612084582448006, -0.005562820937484503, 0.023282378911972046, -0.008261488750576973, -0.01693032495677471, -0.038468752056360245, 0.0339115671813488, -0.014333493076264858, -0.023969775065779686, 0.01937440223991871, -0.019667182117700577, -0.013226020149886608, -0.01964172162115574, 0.04040364548563957, -0.046513840556144714, 0.047710418701171875, -0.06838323920965195, 0.020736465230584145, -0.002888020593672991, 0.009578999131917953, 0.00151959212962538, 0.01600106619298458, 0.01551734283566475, -0.023307837545871735, 0.023727914318442345, 0.0011034943163394928, 0.028717903420329094, -0.00979540217667818, -0.005266858264803886, -0.012602271512150764, 0.010801037773489952, 0.03979262709617615, -0.009445338509976864, 0.012264938093721867, 0.0036565682385116816, -0.01833057776093483, 0.0014670826494693756, 0.0006301135872490704, -0.034726258367300034, 0.03704304248094559, 0.011959428898990154, 0.0011989661725237966, -0.0005091826897114515, -0.006084733176976442, -0.0012888687197118998, 0.021983962506055832, -0.019781747832894325, -0.012945969589054585, -0.01689213514328003, 0.025166355073451996, -0.0013556989142671227, 0.004690845496952534, 0.00042126912740059197, 0.03131473436951637, -0.0031394294928759336, 0.05687570571899414, 0.009629917331039906, -0.01584831066429615, -0.018075985834002495, -0.006367966067045927, -0.026248367503285408, 0.009922698140144348, 0.021576616913080215, -0.026299286633729935, -0.00629477109760046, -0.029023412615060806, 0.047557663172483444, 0.02362607605755329, 0.011265667155385017, -0.025739185512065887, -0.010438244789838791, 0.03526090085506439, 0.037781354039907455, -0.015568261034786701, 0.06639742106199265, -0.010718295350670815, 3.32908020936884e-05, 0.016675733029842377, -0.0014774254523217678, 0.005228669848293066, 0.014804487116634846, 0.011195654049515724, 0.011959428898990154, -0.0025681902188807726, -0.02382975071668625, 0.0030885112937539816, 0.020023608580231667, -0.029914483428001404, 0.029685350134968758, -0.024988140910863876, 0.010177289135754108, 0.028743362054228783, 0.03668661415576935, 0.01328966859728098, 0.01066101249307394, 0.019909042865037918, -0.0072049349546432495, -0.017274022102355957, 0.009846320375800133, 0.01250043511390686, -0.016637545078992844, 0.019514426589012146, -0.0199472326785326, 0.01934894174337387, 0.008325137197971344, -0.023867938667535782, 0.02517908439040184, 0.026299286633729935, -0.03184937685728073, -0.022556792944669724, 0.0005390176083892584, 0.03118743933737278, 0.004786317236721516, -0.01826692931354046, -0.03750130534172058, 0.01653570868074894, -0.023333296179771423, 0.018610628321766853, -0.0070840041153132915, -0.0022197181824594736, -0.028921576216816902, 0.011386597529053688, -0.007631375454366207, -0.025319108739495277, -0.03223126381635666, 0.030576420947909355, 0.0067148469388484955, -0.009559905156493187, -0.03139111399650574, 0.022594982758164406, 0.008726118132472038, 0.023244189098477364, -0.013251479715108871, 0.030118156224489212, -0.007523174397647381, 0.030932849273085594, 0.001958762062713504, 0.011647554114460945, 0.018025066703557968, 0.0037647695280611515, 0.021576616913080215, 0.006202481687068939, 0.023880667984485626, -0.006746670696884394, 0.012462246231734753, -0.036584775894880295, 0.029379840940237045, -0.007835048250854015, 0.0003598091716412455, 0.058148663491010666, -0.00607836851850152, 0.006380695383995771, 0.016586625948548317, 0.0469975620508194, 0.057843152433633804, 0.01624292880296707, -0.03528635948896408, 0.007306771818548441, -0.03798503056168556, 0.016433872282505035, -0.0005159452557563782, 0.01605198346078396, 0.00019323085143696517, -0.011711201630532742, 0.0014758341712877154, 0.006542997434735298, -0.017834123224020004, 0.004321688320487738, -0.02657933719456196, 0.02362607605755329, -0.004270769655704498, 0.030576420947909355, 0.003993901889771223, -0.0040320903062820435, -0.008815225213766098, 0.009235301055014133, -0.014664461836218834, 0.009636281989514828, -0.013136913068592548, -0.03118743933737278, -0.029048873111605644, -0.001034277374856174, -0.016433872282505035, -0.004232581239193678, 0.0047544934786856174, -0.019756289198994637, -0.022620441392064095, 0.010718295350670815, 0.02538275718688965, -0.01498270034790039, 0.02586648054420948, -0.010260031558573246, -0.030067237094044685, -0.013085994869470596, -0.013416963629424572, 0.0058683305978775024, -0.0015211832942441106, 0.01569555699825287, 0.003449712647125125, -0.00402254331856966, -0.0025856932625174522, 0.019998149946331978, 0.014702649787068367, 0.021793019026517868, 0.043789710849523544, 0.001790095353499055, -0.03638110309839249, 0.000437181064626202, -0.011666648089885712, -0.004315323196351528, -0.01611563190817833, 0.0017471330938860774, -0.01680302806198597, -0.0059415255673229694, -0.014588084071874619, 0.049594394862651825, 0.0015522115863859653, 0.016790298745036125, 0.025726456195116043, 0.005667839664965868, 0.0027527690399438143, -0.0026350205298513174, 0.028692444786429405, -0.017630450427532196, 0.0009324408019892871, 0.004862694535404444, -0.004073461517691612, 0.016141090542078018, 0.03139111399650574, 0.005776041187345982, -0.007688658777624369, 0.011755755171179771, 0.006676658056676388, -0.01799960806965828, 0.0467684306204319, 0.011106547899544239, 0.005855600815266371, 0.001608699094504118, -0.011507528834044933, -0.010520987212657928, 0.012124912813305855, -0.008070545271039009, -0.02580283209681511, 0.005960620008409023, 0.011596635915338993, 0.046335626393556595, 0.013085994869470596, 0.015810122713446617, 0.004028907977044582, 0.032791364938020706, -0.017986878752708435, 0.014346222393214703, 0.07653015851974487, 0.007039450574666262, 0.019234376028180122, 0.007631375454366207, -2.8939875846845098e-05, 0.0037806814070791006, -0.031594786792993546, 0.03592284023761749, 0.032842282205820084, -0.011558447033166885, 0.00829967763274908, -0.0037965935189276934, 0.017923230305314064, -0.00698853237554431, 0.019807206466794014, 0.02407161146402359, -0.017630450427532196, -0.03666115552186966, 0.023766102269291878, -0.013467881828546524, 8.040511602303013e-05, 0.011813038028776646, 0.0195016972720623, 0.017261292785406113, -0.04022543132305145, -0.01061645895242691, -0.0207237359136343, -0.028336016461253166, 0.009572634473443031, 0.019234376028180122, 0.00659391563385725, 0.02063462883234024, -0.0046590217389166355, -0.013658825308084488, -0.0009889282518997788, -0.0037170336581766605, 0.031951215118169785, -0.0028800645377486944, 0.0008767489343881607, -0.0009698339272290468, -0.02269681915640831, 0.014766298234462738, -0.013226020149886608, 0.03286774456501007, 0.020711006596684456, 0.029176168143749237, 0.0037043041083961725, -0.0037043041083961725, -0.0465392991900444, -0.019896313548088074, 0.012124912813305855, -0.011997616849839687, -0.0014758341712877154, -0.011653918772935867, -0.014027982950210571, 0.0021560704335570335, 0.004974078387022018, -0.06064365804195404, -0.00940715055912733, -0.00988450925797224, 0.0131878312677145, -0.02281138487160206, -0.018292387947440147, -0.008057815954089165, 0.02475900761783123, -0.0019126174738630652, -0.005476896185427904, 0.004496719688177109, -0.026502959430217743, 0.028336016461253166, -0.009108005091547966, -0.0017519067041575909, -0.020647358149290085, 0.03223126381635666, 0.03139111399650574, 0.022404039278626442, 0.005425977986305952, 0.026426581665873528, -0.015899229794740677, -0.026452040299773216, -0.021449320018291473, 0.043789710849523544, 0.022862302139401436, 0.019336212426424026, 0.01693032495677471, -0.03579554334282875, -0.023906126618385315, 0.024300744757056236, -0.016739381477236748, 0.0195016972720623, -0.020596439018845558, 0.035184524953365326, -0.01848333142697811, 0.002582510933279991, 0.008859778754413128, 0.006409337278455496, -0.02909979037940502, 0.015211832709610462, 0.0037170336581766605, -0.008840684778988361, 0.025191813707351685, 0.010431880131363869, -0.016459330916404724, 0.031289275735616684, -0.005467349197715521, -0.004655839409679174, -0.020329119637608528, -0.04783771559596062, -0.057995907962322235, 0.0049995374865829945, 0.008210570551455021, 0.010132735595107079, 0.0019333030795678496, 0.019132539629936218, -0.009547175839543343, -0.013480612076818943, -0.029889024794101715, 0.02619745023548603, -0.016319304704666138, -0.03935982286930084, 0.0013779756845906377, 0.008051451295614243, -0.011195654049515724, -0.019247105345129967, 0.01857243850827217, 0.017452236264944077, 0.06222212314605713, 0.04725215211510658, 0.0009571043192408979, 0.01959080435335636, -0.010909238830208778, 0.007841413840651512, 0.005470531526952982, -0.015835581347346306, -0.03098376654088497, 0.021627534180879593, -0.00668302271515131, 0.01582285203039646, -0.011730296537280083, 0.011832132935523987, -0.04284772276878357, 0.01976901851594448, -0.05356601998209953, -0.04353512078523636, -0.0007952001760713756, -0.026350203901529312, -0.02673209086060524, 0.014740838669240475, 0.028208721429109573, 0.036915745586156845, -0.0385705903172493, -0.020609170198440552, 0.016230197623372078, -0.010126370936632156, 0.004525361116975546, -0.04114196076989174, 0.009585363790392876, -0.012850497849285603, -0.0021847120951861143, -0.025573700666427612, 0.008306042291224003, -0.02057098038494587, -0.014015253633260727, -0.010247301310300827, 0.0029596243984997272, 0.008439702913165092, 0.0137988505885005, 0.013416963629424572, 0.0006679045036435127, -0.015097266994416714, 0.006313865538686514, -0.019909042865037918, -0.01659935526549816, -0.020672816783189774, -0.011068359017372131, 0.010953792370855808, -0.003277863608673215, 5.842672544531524e-05, -0.002358152298256755, -0.02269681915640831, 0.018037796020507812, -0.0014129820046946406, 0.053871527314186096, -0.022404039278626442, 0.022556792944669724, -0.02332056686282158, 0.010718295350670815, -0.0021528881043195724, -0.006778494454920292, -0.01176848541945219, -0.0038825180381536484, -0.022747736424207687, 0.012761390767991543, 0.029074331745505333, -0.007294042035937309, 0.010336408391594887, -0.007688658777624369, 0.02424982562661171, -0.005655110348016024, 0.01653570868074894, -0.04748128727078438, -0.0014129820046946406, 0.01498270034790039, 0.015440965071320534, 0.00467175105586648, -0.01901797391474247, -0.013315127231180668, -0.017719557508826256, 0.02876882255077362, 0.011825768277049065, -0.012729567475616932, 0.011857591569423676, -0.032638609409332275, -0.03533728048205376, 0.0189543254673481, 0.0009913149988278747, -0.02069827727973461, 0.0416766032576561, 0.02640112303197384, -0.01582285203039646, -0.015288210473954678, -0.01569555699825287, -0.016421141102910042, -0.04305139556527138, -0.010565540753304958, 0.011214748956263065, 0.009018898010253906, -0.025879209861159325, -0.04801592603325844, -0.03251131623983383, 0.021131081506609917, 0.014957241714000702, -0.0026413851883262396, -0.014600813388824463, -0.004184845369309187, -0.018190551549196243, 0.037272173911333084, -0.009859049692749977, 0.035540953278541565, -0.0036883922293782234, -0.002964397892355919, 0.008859778754413128, -0.01925983466207981, 0.004334417637437582, -0.012621366418898106, 0.01839422434568405, 0.014218926429748535, -0.005518267396837473, -0.028717903420329094, -0.0260446947067976, -0.03531181812286377, -0.029430760070681572, 0.02584102191030979, 0.01490632351487875, 0.013569719158113003, -0.027597701177001, -0.006657563615590334, -0.02365153655409813, 0.015491883270442486, -0.05448254942893982, -0.06329140812158585, -0.01100471056997776, -0.025739185512065887, 0.004270769655704498, -0.007809589616954327, -0.008617917075753212, 0.004894518759101629, -0.007975073531270027, -0.016395682469010353, 0.008038721978664398, -0.00023569590121041983, 0.017006702721118927, 0.037424929440021515, -0.015122725628316402, -0.017694098874926567, 0.04279680550098419, 0.0072303940542042255, -0.011666648089885712, 0.018852489069104195, -0.00804508663713932, -0.045342717319726944, 0.04009813815355301, -0.007828683592379093, -0.013926146551966667, -0.04045456647872925, 0.007962344214320183, 0.021487509831786156, -0.001976265339180827, 0.0005063980934210122, -0.009782672859728336, 0.010419150814414024, -0.007936885580420494, -0.0633932426571846, -0.013964335434138775, -0.01624292880296707, 0.011940333992242813, -0.005346418358385563, -0.024873575195670128, -0.007593187037855387, 0.0072303940542042255, 0.008484256453812122, 0.017032161355018616, 0.01211218349635601, -0.0037615871988236904, 0.02739402838051319, 0.035006310790777206, -0.00445534847676754, 0.032307643443346024, -0.022085798904299736, -0.018737923353910446, 0.016255658119916916, -0.0301436148583889, -0.012347680516541004, 0.007777765393257141, 0.013607907108962536, -0.029227087274193764, 0.011023805476725101, 0.015631908550858498, 0.011074723675847054, 0.02708851918578148, 0.00949625764042139, -0.020278200507164, 0.02054552175104618, -0.042720429599285126, -0.06145834922790527, 0.024555334821343422, -0.0012729567242786288, -0.009508986957371235, -0.016281116753816605, -0.012252208776772022, -0.018292387947440147, -0.0014153687516227365, 0.011736661195755005, -0.019030703231692314, 0.02876882255077362, 0.009827226400375366, 0.005244581960141659, 0.025548242032527924, 0.017745016142725945, 0.0021815295331180096, 0.002986674662679434, 0.005228669848293066, 0.02458079531788826, -0.024542605504393578, 0.007936885580420494, -0.005887425038963556, 0.005686934106051922, 0.009216207079589367, 0.04045456647872925, 0.019998149946331978, 0.008547904901206493, 0.036584775894880295, 0.004795864690095186, -0.0022579070646315813, 0.0041307443752884865, -0.04106558486819267, 0.0006754626519978046, -0.03304595500230789, -0.006950343959033489, 0.03941074013710022, -0.031085602939128876, -0.018457872793078423, 0.0024265737738460302, -0.007809589616954327, -0.003532454837113619, 0.04671751335263252, -0.001139296218752861, -8.090236951829866e-05, 0.015300939790904522, -0.013671555556356907, 0.03271498903632164, -0.01481721643358469, -0.021029245108366013, -0.05870876461267471, -0.005995626095682383, 0.004700392950326204, -0.011997616849839687, -0.008216936141252518, -0.03256223350763321, -0.005416430998593569, -0.009139829315245152, -0.0037361280992627144, -0.025815563276410103, -0.0008568590274080634, 0.0348026379942894, 0.02263317070901394, -0.01096015702933073, 0.034675341099500656, 0.007745941635221243]
Name: Grove Street Social, Address: 61 Grove St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0033181, 40.7332134]}, Rating: 4.7, Reviews: ['The salt and vinegar home made chips are quite possibly the best chips I’ve ever had. The olives were delicious as was the orange wine. Highly recommend this spot for a relaxing time. I loved the decor too.', 'such a cute hole in the wall! great happy hour drinks,  cozy decor, rustic vibe. perfect for a catch up or hosting small events. great location and lovely people coming in and out all day. must go.', "While visiting the area we stumbled across this gem and spent a couple of hours enjoying their cocktails and wine.   The service was fantastic and very knowledgeable, wine and cocktail selection amazing.  We loved the overall vibe, and wish it was in our area so we could wander over every Saturday or Sunday.\nWe'll definitely go back the next time we travel to NYC.", "This is one of the best new bars I've seen in a while. Really interesting cocktail menu, great drinks selection, premier league soccer on the TV and really friendly bar staff - everything you want in a bar. Didn't get to try the food so can't comment on that (despite them offering me a free omlett) but this place is truly excellent.", 'A new addition to the area. It was cozy, the bartender/owner? was super friendly and nice!\n\nGot an old fashioned definitely one of the better ones in the city.\n\nIf you want a cozy, quiet spot to relax and chill this is the spot.'], Embedding: [-0.040612101554870605, -0.02639070712029934, -0.07167964428663254, -0.008936094120144844, -0.002089363755658269, -0.023193279281258583, -0.01194262970238924, 0.018969811499118805, -0.016965454444289207, -0.059796664863824844, 0.003606054000556469, -0.012777779251337051, -0.05187468230724335, 0.020019713789224625, 0.002320521045476198, 0.02429090440273285, -0.030924372375011444, 0.012079833075404167, 0.010326020419597626, 0.014281047508120537, 0.044406063854694366, 0.022620605304837227, -0.06600062549114227, 0.003880460048094392, 0.03925200179219246, 0.034312691539525986, -0.03555348515510559, -0.005786389112472534, -0.014555453322827816, 0.0014465972781181335, 0.04266418144106865, -0.005559706129133701, 0.010463223792612553, -0.010767456144094467, 0.030900511890649796, -0.022906942293047905, 0.004474012181162834, 0.001758286845870316, -0.0012795674847438931, 0.002359295729547739, 0.03748625889420509, 0.04493101313710213, 0.05764913931488991, -0.039204277098178864, 0.017347237095236778, -0.010445327498018742, -0.02376595325767994, 0.06409171968698502, 0.00940735638141632, 0.0024994814302772284, -0.04583774879574776, 0.019637931138277054, -0.0748293474316597, -0.0011199944419786334, 0.0026903727557510138, -0.012169313617050648, -0.004843864124268293, -0.019005604088306427, 0.04872497543692589, -0.0010834566783159971, 0.0655711218714714, 0.002383157145231962, 0.07263410091400146, -0.0010088897543027997, -0.0538313165307045, 0.004160831216722727, -0.029325658455491066, 0.010218643583357334, 0.03307189792394638, -0.017550058662891388, 0.07191825658082962, 0.025770310312509537, -0.01063025277107954, -0.04185289517045021, 0.01079131755977869, -0.031425461173057556, 0.041423387825489044, -0.03624546527862549, 0.025412390008568764, -0.023992637172341347, -0.06275548040866852, 0.0039252000860869884, -0.024434072896838188, -0.011554881930351257, 0.03335823491215706, -0.04147111251950264, -0.08208321034908295, -0.0067527759820222855, -0.017108622938394547, 0.047436460852622986, 0.03295259177684784, 0.010403569787740707, 0.006800498813390732, -0.04605250060558319, -0.007176315877586603, 0.010081441141664982, -0.0200077835470438, -0.029755163937807083, -0.031067540869116783, 0.003785014385357499, 0.03810665383934975, -0.028705263510346413, 0.009121019393205643, -0.032737839967012405, 0.03245150297880173, -0.0053002131171524525, 0.019411247223615646, -0.015462186187505722, -0.011805427260696888, -0.054117653518915176, -0.06533250957727432, -0.03230833262205124, -0.025627141818404198, 0.03030397742986679, -0.03910883143544197, 0.0186954066157341, 0.03488536551594734, -0.03307189792394638, -0.014221393503248692, 0.019327733665704727, -0.019709516316652298, 0.006093604955822229, 0.0057714758440852165, -0.014543522149324417, -0.004038541577756405, 0.014483869075775146, -0.04423903301358223, 0.01370837353169918, -0.02143946662545204, -0.04695923253893852, 0.032499223947525024, -0.021296298131346703, -0.013338522054255009, 0.009848792105913162, 0.0354103147983551, -0.016034860163927078, -0.06719370186328888, -0.036961305886507034, -0.010528841987252235, 0.00927611906081438, -0.0010886762756854296, -0.0367465540766716, 0.004330843687057495, -0.03884635865688324, -0.03147318586707115, 0.02248936891555786, -0.04722170904278755, 0.031687937676906586, 0.0010193291818723083, -0.011823323555290699, 0.025555558502674103, 0.029969917610287666, -0.025531696155667305, -0.04629111289978027, -0.017836395651102066, -0.030017640441656113, 0.02283535897731781, -0.010481119155883789, -0.013529413379728794, 0.01956634782254696, -0.018289761617779732, 0.019793029874563217, -0.03252308815717697, -0.0036269326228648424, 0.00470964377745986, 0.023372240364551544, -0.06934122741222382, 0.022024070844054222, -0.06308954209089279, 0.02677248977124691, 0.017132485285401344, -0.014030502177774906, 0.036937445402145386, 0.051540620625019073, 0.02297852747142315, -0.01877892017364502, 0.06442577391862869, 0.026175955310463905, -0.019053326919674873, 0.006150275468826294, -0.009043470025062561, -0.006866117473691702, 0.04834319278597832, -0.003433058736845851, -0.031043680384755135, -0.018623821437358856, -0.05025210604071617, 0.029755163937807083, 0.014066294766962528, 0.014448077417910099, -0.012646540999412537, 0.030995957553386688, -0.012026145122945309, 0.017454613000154495, 0.008715376257896423, -0.005091425962746143, 0.01665525697171688, 0.040898438543081284, 0.005231611896306276, 0.048080720007419586, -0.0314493253827095, 0.005246525164693594, 0.027488332241773605, -0.02994605526328087, 0.052542801946401596, 0.002568083116784692, -0.0006412750808522105, 0.04686378687620163, 0.007098766043782234, -0.010027753189206123, -0.005180906038731337, -0.007629682309925556, 0.009538594633340836, 0.03254694864153862, 0.014042433351278305, -0.008494658395648003, -0.029039321467280388, 0.04111319035291672, 0.009968099184334278, 0.01259881816804409, -0.035386454313993454, 0.036555662751197815, 0.04817616567015648, -0.017478475347161293, 0.039562199264764786, 0.05368814617395401, 0.0017657434800639749, -0.013696443289518356, 0.032881006598472595, -0.03992012143135071, -0.023694369941949844, 0.004116091411560774, -0.016834216192364693, -0.017025107517838478, 0.008423074148595333, -0.0016061704372987151, -0.007910054177045822, -0.001106572337448597, -0.025937341153621674, -0.012909016571938992, -0.01129837241023779, -0.05812636762857437, 0.017132485285401344, 0.02021060511469841, 0.029683580622076988, -0.028323480859398842, 0.011536986567080021, -0.0039430963806807995, 0.02170194312930107, 0.031282294541597366, 0.01128644123673439, -0.014555453322827816, 0.018361346796154976, -0.018325554206967354, -0.013278868049383163, -0.03557734563946724, -0.011853150092065334, -0.013839611783623695, -0.017955701798200607, -0.04228239879012108, 0.04185289517045021, -0.008214286528527737, 0.008154633454978466, -0.011018000543117523, -0.02469654753804207, -0.06208736076951027, 0.01770515739917755, 0.02192862518131733, -0.00020505889551714063, 0.016774563118815422, -0.07921984046697617, -0.03972923010587692, 0.00764757813885808, 0.023121695965528488, 0.04817616567015648, -0.012515303678810596, -0.031687937676906586, -0.0025874704588204622, -0.013744166120886803, 0.02204793319106102, -0.025269221514463425, -0.06924577802419662, -0.004727539606392384, 0.03237991780042648, -0.003782031824812293, 0.0008880914538167417, -0.0022325320169329643, -0.010182851925492287, 0.03111526370048523, 0.029110906645655632, -0.05736280232667923, 0.023324517533183098, -0.00047983782133087516, -0.0016315231332555413, -0.006555919535458088, 0.010355846956372261, 0.017860256135463715, 0.0008918197709135711, 0.04240170493721962, -0.017943771556019783, 0.031139126047492027, 0.023586992174386978, 0.01871926710009575, -0.04175744950771332, 0.02927793562412262, 0.008047256618738174, 0.001579326344653964, 0.0160706527531147, 0.03684199973940849, -0.013183423317968845, -0.02994605526328087, 0.02038956619799137, -0.0037402743473649025, -0.01653594896197319, -0.0180511474609375, -0.0024249146226793528, 0.015772385522723198, 0.03290487080812454, -0.05092022567987442, -0.02087872475385666, -0.02120085246860981, -0.04054051637649536, 0.02368243783712387, 0.02491130121052265, -0.0036597419530153275, -0.029993778094649315, 0.07463845610618591, 0.008930128067731857, 0.010194783098995686, -0.030256254598498344, 0.01013512909412384, -0.08189231902360916, 0.026032786816358566, 0.03822595998644829, -0.07583152502775192, -0.06079884245991707, -0.03321506828069687, 0.0072240387089550495, 0.017048969864845276, 0.03660338744521141, 0.024982884526252747, -0.01405436359345913, -0.04602864012122154, 0.010767456144094467, 0.056742407381534576, 0.009073296561837196, 0.018766989931464195, 0.04755576699972153, -0.022262685000896454, -0.006555919535458088, -0.09167549759149551, -0.015187780372798443, -0.046529728919267654, -0.012932877987623215, -0.007373172324150801, 0.04552754759788513, -0.010504980571568012, 0.0066931224428117275, -0.07282499223947525, 0.040206458419561386, 0.014448077417910099, -0.014698621816933155, 0.01339817512780428, -0.016488226130604744, 0.048748839646577835, 0.008596069179475307, -0.009735451079905033, -0.0008165072649717331, -0.03187882900238037, -0.020461149513721466, -0.0029632875230163336, 0.02860981784760952, -0.03514784201979637, 0.033143483102321625, -0.030017640441656113, 0.014042433351278305, 0.028395064175128937, -0.0057058571837842464, -0.008279905654489994, 0.021713873371481895, -0.005681995768100023, -0.0036358805373311043, -0.015486047603189945, -0.0029081080574542284, 0.03109140321612358, -0.032499223947525024, -0.006907875183969736, -0.07673826068639755, -0.042855072766542435, 0.0446208156645298, -0.012622679583728313, -0.05855587124824524, -0.05001349374651909, 0.021511051803827286, -0.0006256160559132695, -0.00964000541716814, 0.046792201697826385, 0.00663346890360117, -0.023789813742041588, -0.015521840192377567, 0.04958398640155792, -0.039180416613817215, -0.036674968898296356, -0.004563492722809315, -0.005085460841655731, 0.029444966465234756, 0.004035559017211199, -0.039991702884435654, -0.029826749116182327, 0.03992012143135071, 0.02336031012237072, -0.04211536794900894, 0.027917835861444473, 0.015939414501190186, 0.00289766862988472, 0.014984958805143833, 0.05220874026417732, -0.00764757813885808, 0.052304185926914215, 0.008118840865790844, 0.026199815794825554, 0.015330948866903782, -0.017335306853055954, 0.013290799222886562, 0.0007523797103203833, 0.006937701720744371, 0.033143483102321625, -0.06375765800476074, -0.08279905468225479, -0.0327855609357357, -0.02505446784198284, -0.015653077512979507, 0.017108622938394547, -0.007939880713820457, 0.0015077420976012945, -0.03965764492750168, 0.006979458965361118, 0.0004917685291729867, 0.0067527759820222855, -0.0413518026471138, -0.009138915687799454, -0.030900511890649796, -0.013946987688541412, 0.021654220297932625, -0.013732234947383404, 0.00902557373046875, -0.003898356109857559, 0.018850505352020264, -0.036293186247348785, 0.005717787891626358, -0.02134402096271515, -0.04803299531340599, -0.034956950694322586, -0.004187675658613443, -0.00735527602955699, 0.027273578569293022, 0.027369024232029915, -0.034599028527736664, 0.0051958197727799416, -0.01106572337448597, -0.028037143871188164, 0.008643792010843754, -0.0024845681618899107, -0.017740949988365173, 0.048868145793676376, 0.024839716032147408, -0.06938894838094711, 0.05173151195049286, 0.023085903376340866, -0.040612101554870605, -0.03216516599059105, -0.028538232669234276, 0.014173670671880245, -0.010093371383845806, -0.018409069627523422, -0.06609607487916946, 0.05001349374651909, 0.010308124125003815, 0.016249611973762512, 0.0073314146138727665, 0.005622342228889465, -0.030208531767129898, -0.01685807853937149, 0.0002691863919608295, -0.014555453322827816, -0.08585331588983536, 0.001373521750792861, 0.005037738010287285, -0.033954769372940063, -0.004936326760798693, 0.0036030712071806192, 0.010212678462266922, -0.04564685747027397, -0.01004564855247736, -0.011847184970974922, 0.05306775122880936, -0.019578278064727783, -0.015987137332558632, 0.015700800344347954, 0.037581704556941986, 0.007975672371685505, 0.0076774051412940025, -0.011143273673951626, 0.04648200422525406, -0.01523550320416689, 0.01793184131383896, -0.07416122406721115, -0.008649757131934166, 0.046410419046878815, -0.015843968838453293, -0.0039252000860869884, 0.025030607357621193, -0.005207750480622053, -0.03237991780042648, 0.012574956752359867, -0.0016732806107029319, -0.012789709493517876, 0.006430646870285273, -0.03755784034729004, -0.009449114091694355, 0.024624964222311974, -0.030948234722018242, 0.023873329162597656, -0.013111839070916176, 0.03600684925913811, 0.01190087292343378, -0.04834319278597832, -0.00407433370128274, -0.03521942347288132, 0.007086835335940123, 0.004754383582621813, -0.016547879204154015, -0.03159249201416969, 0.010224609635770321, -0.014221393503248692, 0.01151909027248621, -0.019458970054984093, 0.012980600818991661, 0.025794172659516335, -0.03989625722169876, 0.004014680162072182, 0.023109763860702515, -0.0015316035132855177, -0.017454613000154495, -0.00978317391127348, 0.0018656631000339985, 0.009240326471626759, 0.0012907525524497032, 0.02053273282945156, 0.010528841987252235, -0.036818139255046844, -0.014173670671880245, 0.020282188430428505, -0.012360204942524433, 0.0020177795086055994, 0.03173565864562988, 0.016643324866890907, -0.0334298200905323, 0.007892157882452011, 0.03593526780605316, -0.042711902409791946, -0.011572778224945068, -0.05302002653479576, -0.021594565361738205, 0.006597676780074835, 0.023169418796896935, 0.007385103031992912, 0.05287685990333557, -0.010749559849500656, 0.01292094774544239, -0.01647629588842392, 0.02572258748114109, 0.023646647110581398, -0.058603595942258835, 0.0366988331079483, -0.011149238795042038, 0.020711693912744522, -0.0027336215134710073, 0.004987032152712345, 0.007379137445241213, -0.00018576471484266222, -0.03161635249853134, -0.032618533819913864, 0.031186848878860474, 0.029683580622076988, 0.019995851442217827, 0.015796246007084846, 0.017072830349206924, 0.051111117005348206, 0.01766936667263508, 0.020162882283329964, 0.013899264857172966, -0.01982882246375084, 0.008345523849129677, 0.015104265883564949, 0.0022280581761151552, -0.02612823247909546, -0.025651004165410995, -0.020461149513721466, -0.021451396867632866, -0.019399316981434822, 0.0023443824611604214, -0.027082687243819237, 0.005010893568396568, -0.026438429951667786, 0.009132950566709042, -0.010320055298507214, -0.02481585554778576, 0.011781565845012665, -0.013994710519909859, -0.01685807853937149, 0.03059031255543232, 0.046529728919267654, -0.038369130343198776, -0.03350140526890755, 0.022405853495001793, -0.02610437013208866, 0.005395658779889345, 0.0027858184184879065, -0.026844073086977005, -0.05001349374651909, 0.0012519777519628406, 0.007492479402571917, 0.011071689426898956, -0.010695871897041798, 0.012586887925863266, -0.013946987688541412, -0.032475363463163376, -0.02782239019870758, 0.012252828106284142, 0.031831104308366776, 0.021188922226428986, -0.0029260041192173958, 0.026271400973200798, -0.032069720327854156, 0.029063183814287186, -0.011208891868591309, -0.007731093093752861, -0.0459093302488327, 0.003221288789063692, 0.011262579821050167, 0.004187675658613443, -0.01641664281487465, 0.04650586470961571, -0.004992997739464045, 0.018886297941207886, 0.030423283576965332, -0.017657434567809105, -0.029325658455491066, -0.007414929568767548, -0.013636789284646511, -0.026414567604660988, 0.02834734134376049, -0.0027037947438657284, 0.00924629159271717, 0.04225853830575943, 0.021534912288188934, 0.005908678751438856, 0.02455337904393673, 0.01566500775516033, -0.016106443479657173, 0.01516391895711422, 0.027631500735878944, 0.0288722924888134, -0.008214286528527737, 0.0007270270143635571, -0.00205953698605299, 0.040755268186330795, -0.026080509647727013, -0.039705365896224976, 0.050729334354400635, -0.017013177275657654, 0.03672269359230995, -0.0023309604730457067, 0.04435833916068077, -0.00604289909824729, 0.020282188430428505, -0.018075009807944298, 0.022226892411708832, -0.017418820410966873, -0.0016762632876634598, 0.01159067451953888, -0.010009856894612312, -0.012151417322456837, -0.016440503299236298, -0.03820209950208664, 0.0030497850384563208, -0.006233790423721075, -0.003310769097879529, 0.009705623611807823, 0.0050526512786746025, -0.0021982314065098763, 0.030113086104393005, -0.023312587291002274, -0.005989211145788431, -0.010528841987252235, 0.0006215148605406284, -0.011632432229816914, 0.0360545739531517, -0.0446208156645298, -0.02023446559906006, -0.015426394529640675, 0.03753397986292839, -0.03493308648467064, -0.004110125824809074, 0.037223782390356064, 0.023050110787153244, -0.021009961143136024, 0.02097417041659355, -0.0109941391274333, -0.03414566069841385, -0.04726943001151085, -0.007778815925121307, 0.010051614604890347, -0.0006140581681393087, -0.009455079212784767, 0.007504410110414028, 0.0024249146226793528, 0.016345057636499405, -0.018683474510908127, -0.033119622617959976, -0.003015484195202589, -0.023288724943995476, -0.035768236964941025, 0.03374001756310463, -0.013863472267985344, -0.00823814794421196, -0.02455337904393673, -0.02370630018413067, 0.002239988883957267, 0.011167135089635849, -0.027607638388872147, 0.028132589533925056, -0.0026888814754784107, 0.009270153008401394, 0.017633574083447456, -0.007910054177045822, -0.03070962056517601, -0.06079884245991707, -0.03820209950208664, 0.00026322106714360416, -0.03624546527862549, -0.00025725571322254837, 0.003400249406695366, 0.03586368262767792, -0.02992219477891922, 0.01252723392099142, -0.03140160068869591, -0.038798633962869644, 0.041924476623535156, -0.05273369327187538, 0.00927611906081438, -0.003367439843714237, 0.02875298634171486, -0.028585955500602722, 0.009496836923062801, 0.0043368092738091946, -0.03817823901772499, -0.03619774058461189, 0.024982884526252747, -0.029969917610287666, 0.025531696155667305, -0.005425485782325268, -0.028514372184872627, 0.03729536756873131, 0.019256148487329483, 0.011817357502877712, -0.047293294221162796, -0.014173670671880245, -0.017943771556019783, 0.003916251938790083, 0.00809497945010662, -0.01568887010216713, 0.005231611896306276, 0.037343088537454605, -0.019232288002967834, 0.002356313169002533, 0.0007859347970224917, -0.028156450018286705, 0.030089223757386208, 0.029731303453445435, -0.011709981597959995, -0.02820417284965515, -0.007766885217279196, 0.0022787635680288076, -0.021475259214639664, 0.0498226024210453, -0.013600997626781464, -0.02732130140066147, 0.019232288002967834, -0.018361346796154976, -0.019315801560878754, 0.017872188240289688, -0.006603641901165247, 0.00796374212950468, -0.022298477590084076, -0.00375518761575222, -0.04977487772703171, 0.022537091746926308, 0.02951654978096485, 0.005914644338190556, -0.07907667756080627, 0.044453784823417664, -0.005100374110043049, 0.019184565171599388, -0.0006077199941501021, 0.004900534637272358, 0.013768027536571026, 0.017776742577552795, -0.05621745437383652, -0.033000312745571136, -0.006555919535458088, 0.0034091973211616278, 0.006758741103112698, 0.031306155025959015, 0.035123977810144424, 0.028585955500602722, -0.030375560745596886, 0.002207179320976138, -0.00595043646171689, -0.001072271610610187, -0.021475259214639664, -0.0014152792282402515, 0.004888603929430246, 0.04190061613917351, -0.00026340747717767954, -0.00572971859946847, -0.0017254773993045092, 0.00271572545170784, -0.02257288247346878, -0.02572258748114109, -0.00816656369715929, -0.001582309021614492, 0.020962238311767578, -0.03044714406132698, 0.010272332467138767, 0.010170921683311462, 0.01463896781206131, 0.0026113318745046854, -0.02275184355676174, 0.02598506398499012, 0.04619566723704338, -0.06051250919699669, -0.016345057636499405, -0.007438790984451771, -0.0334775410592556, 0.02572258748114109, -0.008870474994182587, 0.006138344760984182, -0.00364184589125216, -0.004056437872350216, -0.036293186247348785, 0.016929661855101585, -0.026820212602615356, 0.008810821920633316, -0.006004124414175749, -0.0196856539696455, 0.03665110841393471, 0.019005604088306427, -0.0001140873137046583, -0.05206557363271713, -0.007957776077091694, 0.021248575299978256, -0.006215894594788551, -0.010612357407808304, 0.010349881835281849, 0.0032004101667553186, -0.022441646084189415, 0.04094615951180458, 0.008333593606948853, -0.05922399088740349, -0.028180312365293503, -0.010236539877951145, 0.003489729482680559, -0.010105302557349205, 0.015354810282588005, 0.01834941655397415, -0.0347660593688488, 0.01073166448622942, -0.00876309908926487, 0.0031198780052363873, 0.022381993010640144, -0.021391743794083595, -0.0015748522710055113, 0.033405959606170654, 0.020807139575481415, -0.011644362471997738, 0.0400632880628109, -0.0006114483694545925, -0.023109763860702515, -0.0062874783761799335, -0.015999067574739456, 0.045217350125312805, -0.013815750367939472, -0.03612615913152695, 0.0033614744897931814, 0.01385154202580452, 0.0213201604783535, -0.04829547181725502, 0.018158525228500366, 0.009616144001483917, 0.033525265753269196, 0.02248936891555786, -0.0016225751023739576, 0.005485138855874538, 0.008315697312355042, -0.002237006090581417, -0.03555348515510559, -0.011614535935223103, -0.03583982214331627, 0.022441646084189415, -0.03216516599059105, 0.03796348720788956, -0.004405410960316658, -0.01922035589814186, 0.013028323650360107, -0.014448077417910099, -0.021069616079330444, -0.02216723933815956, -0.0041936407797038555, -0.0018910159124061465, 0.014257186092436314, -0.022119516506791115, -0.001732934033498168, -0.007665474433451891, 0.025746449828147888, -0.02152298204600811, -0.01233634352684021, -0.0167387705296278, 0.007546167355030775, 0.011996318586170673, -0.03526714816689491, 0.00339428405277431, 0.0013399666640907526, 0.030017640441656113, 0.03688972443342209, 0.03870318830013275, 0.010689906775951385, 0.018265901133418083, -0.041685864329338074, 0.022739913314580917, -0.028800709173083305, 0.00949087180197239, -0.02598506398499012, 0.021248575299978256, -0.016261544078588486, -0.022739913314580917, -0.038369130343198776, 0.012479512020945549, -0.005687960889190435, 0.04748418182134628, 0.024720409885048866, -0.03447972238063812, -0.014221393503248692, -0.02347961626946926, -0.016547879204154015, 0.04085071384906769, 0.003949061501771212, -0.027989421039819717, -0.023992637172341347, -0.03357298672199249, 0.019709516316652298, 0.0060995700769126415, 0.008423074148595333, -0.02178545668721199, 0.022381993010640144, 0.0014831350417807698, 0.015283226035535336, -0.02315748669207096, 0.03791576251387596, 0.027249718084931374, 0.004649990238249302, 0.03204585984349251, 0.006657330319285393, 0.007241934537887573, 0.009890549816191196, 0.0028738072142004967, 0.001847767038270831, -0.02117699198424816, -0.03529100865125656, -0.011924734339118004, 0.02134402096271515, 0.004116091411560774, 0.001251232111826539, 0.0022698156535625458, 0.009371564723551273, 0.04144724830985069, 0.014805997721850872, 0.04187675565481186, 0.02207179367542267, 0.019411247223615646, -0.01635698974132538, 0.005130200646817684, 0.011185030452907085, -0.04240170493721962, 0.025293081998825073, 0.047698937356472015, 0.03665110841393471, -0.011352060362696648, 0.023121695965528488, 0.001521164202131331, 0.01385154202580452, 0.004196623340249062, -0.02441021054983139, -0.019816892221570015, 0.004742452874779701, 0.02154684253036976, 0.024744270369410515, 0.002174369990825653, -0.023813676089048386, 0.023718230426311493, 0.0007374663837254047, 0.06743231415748596, -0.010355846956372261, 0.023992637172341347, -0.034599028527736664, -0.00649626599624753, 0.030136946588754654, -0.04865339398384094, -0.018218178302049637, 0.007850400172173977, 0.0019775135442614555, 0.01760971173644066, 0.0013019376201555133, -0.02140367403626442, -0.005118269938975573, 0.014209463261067867, -0.00020673664403147995, 0.024195458739995956, 0.022847289219498634, -0.006382924038916826, 0.027225855737924576, 0.025770310312509537, 0.006448543164879084, 0.017287584021687508, 0.042186953127384186, 0.012419858016073704, -0.014460007660090923, -0.027798529714345932, 0.025149913504719734, -0.04695923253893852, 0.03817823901772499, -0.0022996424231678247, -0.011393818072974682, 0.014137879014015198, 0.022990457713603973, 0.012789709493517876, 0.013696443289518356, 0.01618995890021324, 0.05550161376595497, 0.00663346890360117, -0.0413518026471138, 0.016118375584483147, -0.012551095336675644, 0.04163813963532448, 0.018623821437358856, 0.012658472172915936, -0.01239599660038948, 0.013087977655231953, 0.005285299848765135, -0.011668223887681961, -0.00728369178250432, 0.004873690661042929, -0.02023446559906006, -0.01226475927978754, 0.025412390008568764, 0.023861398920416832, 0.007426860276609659, -0.010451292619109154, 0.017394959926605225, 0.025794172659516335, -0.003996784333139658, 0.003051276318728924, -0.035505760461091995, -0.025030607357621193, 0.0060190376825630665, 0.006150275468826294, 0.013946987688541412, 2.619161386974156e-05, 0.0041906582191586494, 8.982978215499315e-06, 0.015975207090377808, -0.02455337904393673, -0.0019939180929213762, -0.042974378913640976, 0.011113446205854416, 0.012551095336675644, -0.038655467331409454, -0.0036120193544775248, -0.021332090720534325, -0.01006354484707117, -0.006776637397706509, 0.008321662433445454, 0.025173775851726532, 0.014686690643429756, -0.02770308405160904, 0.0016792459646239877, 0.046672895550727844, 0.029731303453445435, 0.019995851442217827, -0.005413555074483156, -0.02729744091629982, 0.011399783194065094, -0.029063183814287186, 0.001548008294776082, 0.029564272612333298, -0.012503373436629772, -0.0386793278157711, -0.010964312590658665, -0.011823323555290699, 0.022358130663633347, -0.021451396867632866, 0.04657744988799095, 0.003379370551556349, -0.012026145122945309, 0.015378671698272228, -0.01187104545533657, 0.013433967716991901, -0.019089119508862495, 0.0026068578008562326, -0.010290227830410004, -0.019590208306908607, 0.009270153008401394, 0.019089119508862495, 0.02507833018898964, 0.017132485285401344, 0.0039013386704027653, 0.011817357502877712, -0.001026785816065967, 0.06342359632253647, 0.016106443479657173, -0.011984387412667274, -0.008613964542746544, 0.0034420068841427565, 0.0009089701343327761, 0.002744060941040516, 0.02259674482047558, -0.006030968390405178, 0.0068780481815338135, 0.005535844713449478, 0.054403990507125854, 0.017227929085493088, -0.005914644338190556, -0.03567279130220413, 0.036961305886507034, -0.04163813963532448, 0.0036895687226206064, 0.07793132960796356, 0.010188817046582699, -0.0018954898696392775, 0.019900405779480934, 0.020198674872517586, 0.014937235973775387, -0.012586887925863266, -0.01463896781206131, 0.010141094215214252, -0.006075708661228418, 0.0042532943189144135, 0.008136737160384655, -0.003993801772594452, 0.006114483345299959, 0.046386558562517166, -0.009956168942153454, -0.013887333683669567, 0.014173670671880245, -0.020508872345089912, 0.01904139667749405, 0.008715376257896423, 0.00017308835231233388, -0.019375456497073174, 0.021594565361738205, -0.010158990509808064, 0.005013876594603062, -0.016440503299236298, 0.011238718405365944, 0.016309266909956932, 0.018647683784365654, 0.039419032633304596, -0.044811706990003586, 0.0028245931025594473, -0.03073348104953766, -0.00040228827856481075, 0.02097417041659355, -0.013553274795413017, 0.013744166120886803, -0.021165059879422188, -0.0018746111309155822, -0.0006069743540138006, -0.007462652400135994, -0.003993801772594452, 0.005816216114908457, 0.015259364619851112, 0.022990457713603973, -0.01641664281487465, -0.014674760401248932, -0.011859115213155746, -0.0033226998057216406, 0.010874832980334759, 0.031974274665117264, 0.0018626804230734706, 0.011292407289147377, -0.0173830296844244, 0.0002030083123827353, 0.012861293740570545, -0.050347551703453064, -0.02097417041659355, -0.03082892671227455, -0.007969707250595093, -0.0022325320169329643, -0.00663346890360117, 0.030614174902439117, 0.01857609860599041, 0.013123769313097, 0.007969707250595093, 0.01645243540406227, -0.02380174584686756, 0.014865651726722717, -0.00554777542129159, -0.006651364732533693, -0.03147318586707115, 0.01928001083433628, 0.017490405589342117, 0.0019223339622840285, 0.0027276561595499516, 0.010850971564650536, 0.022727983072400093, -0.0762133076786995, 0.015879761427640915, 0.01071973331272602, 0.005932540167123079, 0.007188246585428715, -0.017156345769762993, -0.03753397986292839, 0.012038075365126133, 0.01253916509449482, -0.021952487528324127, -0.019876545295119286, -0.02015095204114914, 0.025507835671305656, -0.006919805891811848, 0.010516911745071411, 0.044453784823417664, 0.01364872045814991, -0.016166098415851593, 0.016309266909956932, 0.004834915976971388, -0.023670507594943047, 0.019840752705931664, -0.02382560633122921, -0.00375518761575222, -0.021069616079330444, -0.022930804640054703, -0.013445897959172726, -0.012181243859231472, -0.01618995890021324, -0.027750806882977486, 0.0009030048386193812, 0.001086439355276525, -0.006800498813390732, -0.01261074934154749, 0.022346200421452522, -0.033930908888578415, -0.016380850225687027, -0.000740076182410121, -0.0213201604783535, -0.031568631529808044, -0.026319123804569244, 0.022990457713603973, 0.024577241390943527, 0.011501193977892399, -0.03362071141600609, 0.013159561902284622, 0.02507833018898964, 0.027774667367339134, 0.01653594896197319, 0.012324412353336811, 0.015056543052196503, 0.007379137445241213, -0.005404606927186251, -0.008924162946641445, 0.024768132716417313, 0.0003482273023109883, -0.026462290436029434, 0.00454857898876071, 0.0062397560104727745, 0.0019536521285772324, -0.008381316438317299, -0.017955701798200607, -0.003883442608639598, -0.02980288676917553, -0.015426394529640675, 0.0008813804015517235, -0.02341996319591999, -0.015462186187505722, 0.009580351412296295, 0.02767922356724739, 0.032332196831703186, -0.0498703233897686, 0.00814866740256548, 0.017227929085493088, -0.00028204917907714844, 0.021487189456820488, -0.026152092963457108, 0.014531591907143593, -0.016237681731581688, 0.003638863330706954, -0.024111943319439888, -0.010236539877951145, -0.01778867281973362, 0.005276351701468229, -0.03555348515510559, 0.007564063649624586, -0.014627037569880486, -0.020222535356879234, 0.007981637492775917, -0.00909715797752142, -0.017573921009898186, -0.0008701953920535743, -0.012121590785682201, -0.03307189792394638, 0.026867935433983803, 0.016774563118815422, 0.04674448072910309, -0.005288282409310341, 0.006508196704089642, -0.021761596202850342, 0.006669261027127504, -0.020043574273586273, 0.019673723727464676, -0.004277155734598637, -0.008321662433445454, 0.01723986119031906, 0.0028260843828320503, 0.013887333683669567, -0.024135805666446686, -0.023646647110581398, -0.01933966390788555, -0.03085278905928135, -0.019005604088306427, -0.014448077417910099, 0.029874471947550774, -0.006045882124453783, 0.026844073086977005, 0.002662037266418338, -0.022787636145949364, -0.020950308069586754, 0.0009857740951701999, -0.06590518355369568, -0.026271400973200798, 0.009663866832852364, 0.02178545668721199, -0.015128127299249172, 0.002836523810401559, 0.0013854524586349726, -0.020222535356879234, 0.013135700486600399, -0.005225646309554577, -0.009144880808889866, 0.016082582995295525, -0.004981067031621933, 0.013827680610120296, 0.03140160068869591, 0.041399527341127396, -0.047293294221162796, 0.03593526780605316, 0.03164021670818329, 0.0037343089934438467, -0.03946675360202789, -0.032332196831703186, -0.0419960618019104, -0.0366988331079483, 0.012217036448419094, 0.006311339791864157, 0.003984853625297546, -0.03032783791422844, -0.05974894389510155, -0.016022929921746254, 0.015533770434558392, 0.013159561902284622, 0.028896154835820198, -0.03304803743958473, -0.02491130121052265, -0.023575061932206154, 0.035911403596401215, -0.0013839611783623695, 0.017884118482470512, 0.01372030470520258, -0.010039683431386948, 0.015963274985551834, -0.016929661855101585, 0.02612823247909546, -0.024243181571364403, 0.031139126047492027, 0.014125947840511799, -0.0002691863919608295, -0.008262009359896183, -0.03450358286499977, -0.007086835335940123, -0.013636789284646511, 0.014973027631640434, -0.002335434313863516, 0.011018000543117523, -0.011799462139606476, -0.029874471947550774, -0.011202926747500896, -0.013636789284646511, -0.004876673221588135, -0.039299722760915756, -0.009431217797100544, -0.061991915106773376, -0.0020252361427992582, 0.027082687243819237, 0.014209463261067867, 0.002475620014593005, -0.008948024362325668, -0.04085071384906769, -0.006072726100683212, -0.012634610757231712, 0.020425356924533844, -0.008494658395648003, -0.003692551515996456, -0.015438324771821499, 0.0012109660310670733, -0.007015251088887453, 0.010349881835281849, 0.03519556298851967, -0.023348378017544746, 0.011698050424456596, 0.03180724382400513, 0.007158419582992792, -0.02753605507314205, 0.0014562909491360188, -0.02295466512441635, 0.005058616399765015, 0.030208531767129898, 0.0018119750311598182, 0.039705365896224976, 0.004309965297579765, -0.015426394529640675, -0.03004150092601776, -0.0002425287530058995, -0.0031109298579394817, 0.009150846861302853, -0.01073166448622942, 0.014328770339488983, -0.0026680026203393936, 0.02703496441245079, 0.02237006090581417, 0.00662750331684947, -0.018468722701072693, -0.023873329162597656, 0.0118113923817873, 0.012849363498389721, -0.009586316533386707, 0.0321413055062294, -0.032356057316064835, -0.002472637454047799, 0.017872188240289688, -0.012574956752359867, 0.007981637492775917, -0.0002861503744497895, -0.01436456199735403, -0.034575168043375015, 0.013946987688541412, 0.014746344648301601, 0.014328770339488983, 0.009222431108355522, -0.012360204942524433, -0.012897086329758167, 0.027106549590826035, -0.005031772423535585, -0.027488332241773605, -0.005118269938975573, 0.010320055298507214, 0.012109659612178802, -0.001252723392099142, -0.01609451323747635, -0.02507833018898964, -0.013946987688541412, 0.019709516316652298, -0.011047828011214733, 0.009305945597589016, 0.03782031685113907, -0.019733376801013947, 0.002924512606114149, 0.011877011507749557, 0.0032004101667553186, 0.008351489901542664, -0.010821144096553326, 0.009586316533386707, -0.014603176154196262, -0.00619799830019474, -0.0022847289219498634, -0.005643220618367195, -0.0034748162142932415, 0.003316734451800585, 0.030232392251491547, -0.0043368092738091946, -0.01239599660038948, 0.010683941654860973, -0.016022929921746254, 0.021594565361738205, 0.0036537765990942717, 0.0068959444761276245, -0.011405748315155506, -0.018098870292305946, -0.007379137445241213, 0.023754023015499115, -0.026295261457562447, -0.019196495413780212, -0.009586316533386707, -0.03548189997673035, 0.06094201281666756, -0.018611891195178032, 0.018003424629569054, -0.021367883309721947, 0.0041280221194028854, 0.017681296914815903, 0.0030840858817100525, -0.008184459991753101, -0.016428573057055473, -0.014483869075775146, -0.0393235869705677, -0.026152092963457108, -0.013517482206225395, -0.0004861759953200817, -0.0037462397012859583, 0.005640238057821989, 0.05340180918574333, -0.015557631850242615, 0.03698516637086868, 0.03204585984349251, -0.015581493265926838, -0.02810872718691826, 0.007999533787369728, -0.007379137445241213]
Name: Ama Raw Bar West Village, Address: 39 Downing St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0039359, 40.7293393]}, Rating: 4.6, Reviews: ["We came for the happy hour deal and it was great! The drinks were good for the price. I loved the frozen lychee lemonade! The happy hour food were ok, personally I think they could be better. We didn't get the oysters bc none of us likes raw seafood. Overall, pretty decent experience and I would definitely recommend coming here during happy hour", 'We came here for the first time last night and had a very enjoyable meal. Ama has a great vibe, very vibrant and cozy. The menu was also unique, with Asian influenced drinks and food.\n\nDrinks:\n- Lychee Martini (vodka, lychee purée): I loved, especially since it was with lychee purée\n- Matcha Paradaisu (tequila, matcha, elderflower, lemon): Not my favorite combination\n- Spicy Palawan (tequila, jalapeno, calamansi, lime, spicy sesame salt): I just had a sip, but it was definitely spicy\n\nFood:\n- Oysters (6 St. Simon from VA and 6 Bacat from Canada): They were fresh and the Bacat was so nice and smooth.\n- Toro & Tobiko: I liked the yuzu flavor. Could’ve been better with more toro—the crispy rice was a little too overpowering.\n- Sashimi Salad: Nice salad. The dressing tasted like ponzu and I couldn’t taste the wasabi at all—which was perfect for me since I don’t love wasabi.\n- Nori Fries: Very flavorful and addictive. Couldn’t stop eating them!\n- Wild Mushroom Fried Rice: Too much sauce—would have preferred lighter.\n\nIt can get quite loud depending on where you’re sitting. So it may not be the best place for an intimate conversation, but it was still nice for couples, especially since they have small dishes and you can try many things. We’d ordered too much food for 2 people, though, and ended up taking some home.', 'This place was so good and fresh. I went with my siblings for happy hour and we shared the angry mussels (a MUST) and a bunch of oysters (you couldn’t beat that happy hour price.) Everything was so fresh and delicious. The service was great and so were the drinks. We all said we’ll be back!', 'This is one of my favorite spots in the West Village! First of all, service here is impeccable. Every time I come back, I feel like I’m spending time with family. From a warm greeting by Brandon, to exceptional drinks made by Carmen, and of course, great service from Carlos! This place has happy hour seven days a week… And on the weekends it’s from 3 PM to 6 PM which makes a really great midday stop.', 'I think we got the yuzu pepper shrimp and the oysters. The shrimps were great, spicy but really flavorful. LOVED the oysters the dipping sauce amazing. The mussels were also really good as well\n\ngood date night atmo'], Embedding: [-0.028649868443608284, -0.02169923111796379, -0.03839400038123131, 0.006748738698661327, 0.02044149674475193, -0.022453870624303818, -0.025896091014146805, 0.03376024216413498, 0.014947181567549706, 0.00186177808791399, 0.021394725888967514, -0.01928967610001564, -0.02232147753238678, -0.019514743238687515, -0.02040177769958973, 0.03558726608753204, -0.03558726608753204, -0.003395883133634925, -0.015569429844617844, 0.005828606430441141, 0.05113021656870842, 0.007711898535490036, -0.03323066979646683, 0.015437036752700806, -0.007460351567715406, 0.021302051842212677, -0.02790846675634384, 0.004597350489348173, 0.014920703135430813, 0.00046792690409347415, 0.05420173704624176, -0.016760967671871185, -0.0019197000656276941, -0.018495317548513412, -0.04488126188516617, 0.011796225793659687, 0.012623682618141174, 0.0014058493543416262, 0.022784853354096413, -0.02936479076743126, 0.018601231276988983, 0.03969145193696022, 0.06042421609163284, -0.017833352088928223, 0.007433873135596514, -0.006811625324189663, -0.02902056835591793, 0.05857070907950401, -0.008519496768712997, 0.00769865931943059, -0.0382351279258728, 0.017912788316607475, -0.051395002752542496, 0.006166209001094103, -0.006004027556627989, -0.036990635097026825, 0.025763697922229767, 0.00374010531231761, 0.08817380666732788, -0.0008936534868553281, 0.06275433301925659, -0.008241470903158188, 0.005623397417366505, 0.02413526363670826, -0.05036233738064766, 0.002325153909623623, -0.02563130483031273, 0.010194269008934498, 0.02678312547504902, -0.005567130167037249, 0.01775391586124897, 0.03847343847155571, -0.02417498081922531, -0.033257149159908295, -0.007235283497720957, -0.01539731863886118, -0.009188082069158554, -0.02790846675634384, -0.0029126484878361225, -0.027325937524437904, -0.06450191885232925, 0.036222755908966064, -0.04231283813714981, 0.04970037192106247, 0.009373432025313377, -0.05745860934257507, -0.06132448837161064, -0.00284645170904696, -0.04244523122906685, 0.08404314517974854, -0.008261329494416714, 0.03902948647737503, 0.03158899396657944, -0.028199732303619385, 0.00148032046854496, -0.02539299800992012, -0.07742349058389664, -0.012683259323239326, -0.006411136128008366, 0.011226935312151909, 0.050521209836006165, -0.03757316246628761, -0.04421929642558098, -0.018495317548513412, 0.021566838026046753, 0.009585261344909668, 0.03185378015041351, -0.034792907536029816, -0.01400719117373228, -0.03344249725341797, -0.01423225924372673, -0.00240624463185668, -0.04257762432098389, 0.022731896489858627, -0.04636406525969505, 0.050944868475198746, 0.04321311041712761, -0.018614470958709717, -0.025379758328199387, -0.0176082830876112, -0.034792907536029816, 0.008095838129520416, -0.022652460262179375, -0.02420146018266678, -0.012491289526224136, -0.039294272661209106, -0.026955237612128258, 0.02142120525240898, -0.024704553186893463, -0.07048609107732773, 0.0014786655083298683, -0.028967611491680145, -0.01400719117373228, -0.04075060039758682, -0.007705278694629669, 0.031138859689235687, -0.051500920206308365, -0.056452419608831406, -0.010478914715349674, -0.00896301306784153, 0.0602123849093914, -0.004312705714255571, 0.037228941917419434, -0.013126776553690434, -0.013087058439850807, -0.0420745313167572, -0.03945314511656761, 0.006090083159506321, -0.04440464824438095, 0.026518339291214943, -0.009856666438281536, -0.015370840206742287, -0.035454872995615005, -0.023486537858843803, 0.048191092908382416, -0.0410153865814209, 0.01873362436890602, 0.005980858579277992, -0.004213410429656506, 0.01424549799412489, -0.0024294136092066765, 0.02567102387547493, -0.04570209980010986, -0.028199732303619385, 0.013848318718373775, 0.04466943442821503, -0.0963292270898819, 0.020798956975340843, -0.03982384502887726, 0.0024525823537260294, 0.030265064910054207, -0.0105186328291893, 0.04368972405791283, 0.01093567069619894, 0.03916187956929207, -0.05602876469492912, 0.03767907992005348, -0.022122887894511223, 0.00941976998001337, 0.006464093457907438, 0.01625787280499935, 0.04519900679588318, 0.0067123305052518845, -0.011326230131089687, -0.03979736939072609, 0.024400049820542336, -0.010445816442370415, 0.021434444934129715, 0.049303192645311356, 0.035348959267139435, 0.016138719394803047, 0.045569706708192825, -0.032701097428798676, -0.013305507600307465, 0.021129939705133438, -0.05301019921898842, 0.04135960713028908, 0.008632030338048935, -0.035110652446746826, 0.03450164571404457, -0.01628435216844082, 0.02371160499751568, 0.05012403056025505, -0.020415017381310463, 0.033257149159908295, -0.015847455710172653, 0.012332418002188206, 0.019580939784646034, 0.020706282928586006, 0.0051765707321465015, 0.048429399728775024, 0.013543815352022648, 0.0419156588613987, 0.01615195907652378, -0.02022966742515564, -0.04729081690311432, -0.049965158104896545, 0.019594179466366768, 0.018495317548513412, 0.0011319611221551895, 0.00042179616866633296, 0.008777663111686707, 0.03961201757192612, -0.004474887158721685, 0.023671887814998627, 0.016840403899550438, -0.026306509971618652, -0.01856151409447193, 0.008605551905930042, -0.005560510326176882, -0.024095546454191208, 0.012193405069410801, -0.02204345166683197, -0.0049879103899002075, -0.004680096171796322, -0.012775935232639313, -0.022798093035817146, -0.006877821870148182, -0.0016325725009664893, 0.021950777620077133, -0.006265503820031881, -0.028861697763204575, 0.049753330647945404, -0.019647136330604553, 0.0439545102417469, -0.013298887759447098, 0.010174410417675972, -0.012166926637291908, 0.01653589867055416, 0.007533167954534292, 0.007625842932611704, -0.04893249273300171, -0.004292846657335758, -0.04154495894908905, -0.0223876740783453, -0.03405150771141052, -0.04024750366806984, 0.0034554600715637207, 0.01058482937514782, -0.009949342347681522, -0.0030665553640574217, 0.04331902414560318, -0.007308099418878555, -0.016615334898233414, -0.029523663222789764, -0.0058021279983222485, 0.02451920323073864, 0.032171525061130524, -0.005639946553856134, 0.037096548825502396, -0.06275433301925659, -0.02682284452021122, 0.050865430384874344, 0.013596772216260433, 0.004137284588068724, -0.03587853163480759, -0.019130803644657135, -0.01583421602845192, -0.002770325867459178, 0.006487262435257435, 0.012868610210716724, -0.05729973688721657, -0.025644544512033463, -0.010889332741498947, 0.03558726608753204, 0.02204345166683197, 0.03508417308330536, 0.007056552451103926, 0.0535132959485054, 0.0031559206545352936, -0.009909624233841896, 0.00318239931948483, -0.009916244074702263, 0.003591163083910942, -0.007466971408575773, 0.01046567503362894, 0.04858827218413353, -0.02016347087919712, 0.03023858554661274, 0.0002325153909623623, 0.04398098960518837, 0.029444226995110512, 0.001959417946636677, -0.030291542410850525, 0.04278945177793503, 0.037996821105480194, -0.006917539983987808, -0.030715201050043106, -0.01137256808578968, 0.02714058756828308, -0.03428981453180313, -0.031694911420345306, 0.013755643740296364, -0.040618207305669785, -0.012722977437078953, -0.028517475351691246, 0.04268353804945946, 0.034581080079078674, -0.06852667033672333, 0.014510284177958965, -0.013497477397322655, -0.006718950346112251, 0.01473535317927599, 0.00852611567825079, 0.012517767958343029, -0.03892357274889946, 0.08918000012636185, -0.0458344928920269, -0.0223876740783453, 0.004253128543496132, 0.04154495894908905, -0.07922403514385223, 0.033151235431432724, 0.0253268014639616, -0.020640086382627487, -0.039638496935367584, -0.011034965515136719, -0.003452150383964181, 0.05081247538328171, 0.03328362852334976, 0.001568858278915286, -0.053274985402822495, -0.029073527082800865, -0.0008150450885295868, 0.022784853354096413, -0.004590731114149094, 0.026624254882335663, -0.0010533526074141264, 0.0071293688379228115, -0.006662683095782995, -0.06264841556549072, 0.007142608053982258, -0.03068872168660164, -0.01533112209290266, 0.029973799362778664, 0.03246279060840607, 0.0049614314921200275, -0.018402641639113426, -0.006070224102586508, 0.014192541129887104, 0.005199739243835211, -0.0022837810683995485, 0.010915812104940414, -0.0004567562136799097, 0.028279168531298637, -0.0061926874332129955, 0.0014828027924522758, 0.01931615360081196, -0.03558726608753204, -0.026094680652022362, 0.012689879164099693, 0.03246279060840607, -0.0013231036718934774, 0.014033669605851173, -0.02169923111796379, 0.048535313457250595, 0.023565974086523056, 0.011577777564525604, 0.010346521623432636, 0.0543341301381588, -0.006715640425682068, 0.01736997626721859, 0.034898824989795685, 0.03571965917944908, 0.022056691348552704, -0.018640950322151184, 0.01335846446454525, -0.023605691269040108, 0.013940994627773762, -0.0008746219682507217, 0.002940781880170107, -0.02968253567814827, -0.10496125370264053, -0.017806872725486755, -0.017846591770648956, 0.0019974811002612114, 0.04037989675998688, 0.03804977983236313, -0.03246279060840607, -0.029735492542386055, 0.052613019943237305, -0.03979736939072609, -0.05295724421739578, -0.011961717158555984, -0.02567102387547493, 0.03834104537963867, -0.03707006946206093, -0.033363062888383865, -0.03195969760417938, 0.015489993616938591, -0.003220462240278721, -0.06100674346089363, 0.013927754946053028, 0.048958972096443176, 0.03582557663321495, 0.0031708148308098316, 0.047317296266555786, -0.015317882411181927, 0.0036705988459289074, 0.03365432843565941, 0.01918376050889492, -0.016549138352274895, 0.00767218042165041, 0.03240983188152313, -0.02263922058045864, 0.037414293736219406, 0.0180981382727623, -0.03021210804581642, -0.0315360389649868, -0.0005767374532297254, -0.05560510605573654, -0.03749372810125351, -0.012385374866425991, -0.03180082514882088, -0.009135124273598194, -0.028120296075940132, -0.03685824200510979, 0.023671887814998627, -0.022480349987745285, -0.03648754209280014, 0.008314287289977074, -0.010763559490442276, 0.01611224189400673, -0.03143012523651123, -0.0033329965081065893, 6.858841970824869e-06, 0.044484082609415054, 0.038314566016197205, 0.009505825117230415, -0.015503233298659325, -0.000491095706820488, -0.03728190064430237, -0.025684263557195663, -0.011312991380691528, -0.0041174255311489105, 0.01956770196557045, 0.001488595036789775, 0.015648866072297096, -0.01135270856320858, 8.305598748847842e-05, -0.016204915940761566, -0.03021210804581642, -0.03100646659731865, -0.02825268916785717, 0.02357921190559864, -0.035560790449380875, -0.07207480818033218, 0.0214874017983675, 0.038102734833955765, -0.018362924456596375, 0.012133828364312649, -0.014152823016047478, 0.025406237691640854, -0.015820976346731186, -0.03219800442457199, -0.06746752560138702, 0.019369112327694893, 0.013610011897981167, 0.03582557663321495, 0.002932507311925292, -0.01649618148803711, -0.017250822857022285, -0.03937371075153351, 0.009936102665960789, 0.00042262361967004836, -0.08393722772598267, 0.01269649900496006, 0.014086626470088959, -0.0696917325258255, 0.029814928770065308, -0.001752553740516305, 0.02451920323073864, -0.008413582108914852, -0.013901276513934135, -0.010088355280458927, 0.008539355359971523, 0.0014919048408046365, -0.041280172765254974, -0.00830104760825634, 0.0167080108076334, 0.013206212781369686, -0.0065666981972754, 0.011332849971950054, 0.016482941806316376, -0.015132532455027103, 0.022016974166035652, -0.03648754209280014, -0.04617871716618538, 0.027220023795962334, 0.007526548113673925, -0.009572021663188934, -0.010439196601510048, 0.02040177769958973, -0.010869474150240421, -0.0067123305052518845, 0.005424807779490948, -0.014947181567549706, 0.01681392453610897, -0.02183162420988083, 0.029947321861982346, -0.00015101088501978666, -0.0011518200626596808, 0.016099002212285995, -0.019051367416977882, 0.016138719394803047, 0.010167790576815605, -0.04085651412606239, 0.0033462357241660357, -0.04697307571768761, -0.019170522689819336, -0.009545543231070042, -0.02727298066020012, -0.04596688598394394, 0.004915094003081322, 0.016827164217829704, 0.010790037922561169, -0.03571965917944908, -0.01688012108206749, 0.036116838455200195, -0.04988572373986244, 0.02093135006725788, -0.007473590783774853, 0.0009118575253523886, -0.018958693370223045, 0.004309395793825388, 0.001634227461181581, 0.020640086382627487, 0.025128211826086044, 0.008307667449116707, -0.009512444958090782, -0.00482241902500391, -0.012272841297090054, -0.0029440918006002903, -0.008327526040375233, 0.015026617795228958, 0.04533139988780022, 0.020944589748978615, -0.015264925546944141, -0.00031133065931499004, 0.02424117736518383, -0.0028778952546417713, -0.0028696206863969564, -0.0038691884838044643, 0.012286080047488213, 0.0036639792378991842, 0.03219800442457199, 0.00015080402954481542, 0.025962287560105324, -0.0400356762111187, 0.040618207305669785, 0.021738948300480843, -0.013345225714147091, 0.011994815431535244, -0.05417526140809059, 0.0209975466132164, -0.010697362944483757, -0.011306371539831161, -0.017356736585497856, -0.021460922434926033, 0.017422933131456375, -0.042815931141376495, -0.035454872995615005, -0.018746864050626755, 0.034342773258686066, -0.0037798231933265924, 0.051289089024066925, 0.026836082339286804, 0.05555214732885361, 0.043795641511678696, 0.05068008229136467, 0.008281189016997814, -0.01645646244287491, 0.024770749732851982, 0.01225960161536932, -0.010101594030857086, -0.030397458001971245, -0.023182032629847527, -0.028385082259774208, 0.02849099598824978, -0.03526952490210533, -0.02302316203713417, 0.012365516275167465, -0.024439767003059387, -0.0015787878073751926, -0.020084034651517868, 0.02612116001546383, -0.01922347955405712, -0.021249093115329742, 0.03834104537963867, -0.007109509781002998, -0.0022688868921250105, 0.016310831531882286, 0.03143012523651123, -0.02825268916785717, -0.041386086493730545, 0.03148308023810387, -0.014867746271193027, -0.023592451587319374, 0.011716790497303009, -0.022824572399258614, -0.05724677816033363, 0.013345225714147091, 0.01858799159526825, -0.009274137206375599, 0.013676208443939686, -0.0013429626123979688, -0.003481938736513257, -0.04880009964108467, -0.03574613854289055, 0.014814788475632668, 0.0018237150507047772, 0.0015258305938914418, 0.025869613513350487, -0.02067980356514454, 0.019647136330604553, 0.007083031348884106, -0.023142315447330475, 0.010346521623432636, -0.0019147353013977408, -0.0008075979421846569, 0.02172570861876011, 0.01069074310362339, 0.007142608053982258, 0.007506689056754112, -0.03855287283658981, -0.015715062618255615, 0.014642677269876003, -0.019620658829808235, -0.043795641511678696, -0.017131667584180832, -0.014629438519477844, -0.018389401957392693, 0.031165337190032005, -0.01137256808578968, 0.015423797070980072, 0.01135270856320858, 0.0008497982635162771, 0.020481213927268982, -0.002909338567405939, 0.00481248926371336, 0.01980600878596306, 0.020626846700906754, -0.006384657695889473, 0.03616979718208313, -0.024916382506489754, 0.05465187504887581, -0.0029937392100691795, 0.00807597953826189, -0.0048654465936124325, -0.006838104221969843, 0.05168626829981804, -0.0014654261758551002, 0.06614359468221664, 0.0027752905152738094, 0.03481938689947128, -0.0033528555650264025, 0.005477764643728733, -0.03910892456769943, 0.02266569994390011, -0.004888615570962429, -0.004398760851472616, -0.013259169645607471, -0.019792769104242325, -0.026531578972935677, -0.009280757047235966, -0.040168069303035736, 0.04308071732521057, -0.006103322375565767, -0.018998410552740097, 0.02955014258623123, -0.0049879103899002075, -0.01579449698328972, 0.044139862060546875, -0.03211856633424759, 0.03476643189787865, -0.020150231197476387, 0.0011203766334801912, -0.001503489213064313, 0.02151387929916382, -0.07181002199649811, 0.0024393429048359394, -0.03323066979646683, 0.019819248467683792, -0.018826300278306007, -0.019713332876563072, 0.027987902984023094, -0.0005457078223116696, -0.01719786413013935, 0.026597775518894196, 0.01694631762802601, -0.027617203071713448, -0.0036904579028487206, 0.0015489993384107947, 0.005001149605959654, -0.017634762451052666, 0.008360624313354492, -0.026081442832946777, -0.00020200292055960745, -0.01820405200123787, 0.009863286279141903, -0.027617203071713448, 0.057564523071050644, -0.0191175639629364, 0.005987478420138359, 0.03111238032579422, -0.03135068714618683, 0.032039131969213486, 0.0021050504874438047, -0.0438750758767128, 0.015516472049057484, -0.0036672891583293676, 0.011233555153012276, 0.013159874826669693, -0.031509559601545334, 0.0043822117149829865, 0.009664696641266346, 0.009876525960862637, 0.022242041304707527, -0.05417526140809059, -0.02012375183403492, 0.00526593578979373, -0.04273649677634239, -0.01733025722205639, 0.022652460262179375, 0.027405373752117157, -0.0543341301381588, 0.027617203071713448, -0.021076982840895653, -0.03320419043302536, 0.04866770654916763, -0.040088631212711334, 0.011988195590674877, -0.011816085316240788, 0.03442220762372017, -0.018111377954483032, -0.019726572558283806, 0.03561374545097351, -0.016482941806316376, -0.013676208443939686, 0.044245775789022446, -0.019898684695363045, 0.007500069681555033, -0.01175650767982006, -0.02445300668478012, 0.028729304671287537, 0.03749372810125351, 0.010922431014478207, -0.03770555555820465, -0.014695635065436363, -0.010922431014478207, -0.02197725512087345, 0.01156453788280487, -0.004362353123724461, 0.012967905029654503, 0.011955097317695618, -0.023221751675009727, 0.0013015897711738944, -0.015503233298659325, -0.011895520612597466, 0.04032694175839424, 0.014775071293115616, -0.02082543633878231, -0.018005462363362312, -0.009492585435509682, 0.01445732731372118, -0.045013654977083206, 0.0205474104732275, -0.03693767637014389, -0.030715201050043106, 0.007023454178124666, -0.015476753935217857, -0.04135960713028908, 0.0010235642548650503, -0.03272757679224014, 0.006040435750037432, -0.00022072413412388414, 0.01400719117373228, -0.043901555240154266, -0.004216720350086689, 0.027617203071713448, -0.04355733096599579, -0.07382239401340485, 0.0029291976243257523, -0.01824377104640007, 0.005861704703420401, 0.003372714389115572, -0.0019213550258427858, 0.04718490317463875, 0.022904006764292717, -0.03693767637014389, -0.018680667504668236, -0.023274708539247513, -0.02724650129675865, 0.004425239749252796, 0.037864428013563156, 0.030397458001971245, -0.00611325167119503, -0.006434305105358362, -0.00849301740527153, -0.0049316431395709515, -0.0033710594289004803, 0.025088494643568993, 0.003139371518045664, 0.021500641480088234, 0.04609927907586098, 0.03516361117362976, -0.000161147239850834, 0.019408829510211945, -0.019726572558283806, -0.009850047528743744, -0.014722113497555256, 0.021990494802594185, -0.029311833903193474, 0.014867746271193027, -0.017674479633569717, 0.006493881810456514, -0.0028414870612323284, 0.01027370523661375, 0.011392426677048206, -0.00961173977702856, 0.05197753384709358, 0.0008969632908701897, -0.07218072563409805, -0.021818384528160095, 0.0047330535016953945, 0.001408331678248942, -0.00965807680040598, -0.002508849371224642, 0.006622965447604656, -0.011478482745587826, 0.00034422209137119353, -0.04980628564953804, 0.021407965570688248, -0.0005676354630850255, 0.01698603481054306, 0.00748021062463522, -0.0023036401253193617, 0.029444226995110512, 0.01555619016289711, -0.0238175205886364, -0.057988181710243225, 0.009724273346364498, 0.026412425562739372, -0.010617927648127079, -0.012027913704514503, -0.0007885664235800505, 0.011134260334074497, -0.05602876469492912, 0.01852179504930973, -0.008042881265282631, -0.054016388952732086, 0.0015581013867631555, 1.9652101400424726e-05, 0.023499777540564537, 0.004292846657335758, 0.020812196657061577, -0.019753051921725273, -0.019858965650200844, 0.006642824038863182, -0.0020272694528102875, 0.024810468778014183, 0.001707871095277369, -0.01590041257441044, 0.018442360684275627, 0.020322341471910477, 0.0017144907033070922, 0.006444234400987625, 0.046231672167778015, -0.00810907781124115, -0.01824377104640007, -0.002800114220008254, -0.002924232743680477, 0.010055256076157093, -0.019091086462140083, -0.008420201949775219, 0.0011121020652353764, 0.017978984862565994, 0.0009424734162166715, -0.0012966250069439411, 0.004676786717027426, -0.038102734833955765, 0.045463792979717255, -0.023565974086523056, -0.05396343022584915, 0.02545919455587864, 0.005732621531933546, 0.022731896489858627, -0.018336445093154907, 0.0352960042655468, -0.04925023764371872, 0.029179440811276436, -0.03323066979646683, 0.03344249725341797, 0.017806872725486755, -0.0029937392100691795, 0.011173978447914124, 0.0224273931235075, -0.028173252940177917, -0.021262332797050476, 0.006106632295995951, 0.01782011240720749, 0.007380915805697441, -0.0004923368687741458, -0.0157283004373312, -0.004474887158721685, 0.009082167409360409, 0.0024294136092066765, 0.011465243063867092, -0.0010326661868020892, 0.007049933075904846, -0.01248466968536377, -0.049541499465703964, 0.024651596322655678, -0.010697362944483757, -0.001716145663522184, 0.009711034595966339, 0.028729304671287537, 0.01852179504930973, 0.0010235642548650503, -0.005474455188959837, 0.019660376012325287, 0.0031426814384758472, -0.019276436418294907, -0.02455892227590084, 0.021685991436243057, 0.004742983262985945, -0.006662683095782995, -0.006291982252150774, 0.005034247878938913, -0.007797954138368368, 0.0573526956140995, 0.02486342564225197, -0.023738084360957146, -0.022242041304707527, -0.03767907992005348, -0.014589720405638218, -0.0067421188578009605, 0.017290540039539337, -0.025340041145682335, 0.004034679848700762, -0.011882281862199306, 0.039320752024650574, -0.011730029247701168, 0.0063912770710885525, -0.03275405615568161, -0.018958693370223045, 0.01952798292040825, 0.007877389900386333, -0.0334160216152668, 0.03839400038123131, -0.02044149674475193, 0.02957662008702755, -0.012014674954116344, 0.010121453553438187, -0.010816517286002636, -0.004229959566146135, 0.011657212860882282, 0.01314663514494896, -0.024227939546108246, -0.005639946553856134, -0.01775391586124897, 0.03516361117362976, -0.030079714953899384, 0.002169592073187232, -0.009327094070613384, -0.0010516977636143565, 0.021540358662605286, 0.024373570457100868, 0.007486830465495586, 0.0011460278183221817, 0.01698603481054306, 0.012762695550918579, -0.009711034595966339, 0.01740969344973564, -0.005633326712995768, -0.008095838129520416, 0.029629576951265335, 0.026240313425660133, 0.04440464824438095, 0.061059702187776566, 0.006450854241847992, 0.03002675622701645, 0.0061926874332129955, -0.023234989494085312, -0.02061360701918602, -0.0023698366712778807, 0.04901192709803581, 0.0002771980653051287, -0.02012375183403492, -0.046337585896253586, 0.004901854787021875, -0.03365432843565941, -0.005884873680770397, 0.00748021062463522, -0.00885709933936596, -0.0027289530262351036, -0.019475026056170464, 0.029205920174717903, -0.03166843205690384, -0.021672751754522324, 0.03132420778274536, 0.004709884990006685, -0.013623250648379326, 0.00174427917227149, -0.012147068046033382, -0.05878254026174545, 0.03034450113773346, -0.013279029168188572, 0.027220023795962334, 0.017038993537425995, 0.016655052080750465, 0.0223876740783453, 0.018548274412751198, -0.013398182578384876, 0.03966497629880905, 0.039320752024650574, -0.003826160915195942, -0.013265789486467838, -0.011974956840276718, -0.01660209521651268, -0.06534923613071442, 0.01227946113795042, -0.010478914715349674, -0.009499205276370049, 0.01782011240720749, 0.027511287480592728, -0.02364540845155716, 0.002045473549515009, 0.01967361569404602, 0.05319555103778839, 0.0044020707719028, -0.014311694540083408, 0.030476894229650497, -0.0109687689691782, 0.014060148037970066, 0.004461647942662239, 0.02688904106616974, -0.01656237803399563, 0.015264925546944141, -0.027511287480592728, -0.0012229813728481531, 0.014602960087358952, 0.012617062777280807, -0.025538630783557892, 0.011260033585131168, 0.01677420735359192, 0.01677420735359192, -0.007533167954534292, -0.01967361569404602, 0.00042324422975070775, 0.02737889438867569, -0.01033990178257227, 0.010611307807266712, 0.000252994941547513, -0.0314566008746624, -0.013106917962431908, 0.003908906597644091, -0.0024790610186755657, 0.012200024910271168, -0.02870282530784607, 0.0029854646418243647, -0.02266569994390011, -0.03288644924759865, -0.003819541074335575, -0.019276436418294907, 0.0439545102417469, 0.003127787262201309, -0.04628463089466095, 0.012147068046033382, -0.0057657198049128056, 0.007380915805697441, -0.006007337477058172, 0.0167080108076334, 0.0002689234970603138, 0.016310831531882286, -0.014775071293115616, -0.004944882355630398, 0.03442220762372017, 0.010134692303836346, 0.044484082609415054, 0.0016979415668174624, -0.04220692440867424, -0.004696645308285952, 0.010042017325758934, -0.037546686828136444, 0.03783794865012169, 0.030159149318933487, -0.008764423429965973, -0.018283488228917122, -0.012709738686680794, 0.03100646659731865, -0.006838104221969843, 0.021129939705133438, -0.011260033585131168, 0.02957662008702755, -0.0157680194824934, -0.0014397749910131097, 0.02891465462744236, 0.008837239816784859, -0.00043441489106044173, -0.011266653425991535, -0.0034289814066141844, 0.03664641082286835, 0.03736133500933647, 8.383172826142982e-05, -0.03357489034533501, 0.0007827742374502122, 0.049435585737228394, -0.0196074191480875, 0.016178438439965248, -0.0022010353859514, 0.011941858567297459, -0.017211103811860085, -0.022678939625620842, -0.019978119060397148, 0.016615334898233414, 0.004355733282864094, -0.012577345594763756, 0.010988627560436726, 0.00980370957404375, 0.02654481865465641, 0.013331986032426357, -0.0015556190628558397, 0.00920794066041708, 0.013120156712830067, -0.015304643660783768, 0.0017194554675370455, 0.08515524864196777, -0.0035084174014627934, 0.012272841297090054, 0.018323205411434174, 0.013523955829441547, 0.004031369928270578, -0.025035535916686058, 0.023989630863070488, 0.024572160094976425, -0.020520931109786034, 0.013689447194337845, -0.010750320740044117, -0.00047827011439949274, 0.002512159291654825, 0.03344249725341797, -0.016933077946305275, 0.00033325827098451555, 0.011299751698970795, 0.01473535317927599, 0.0012047772761434317, 0.012544247321784496, 0.006467403378337622, 0.006232405547052622, 0.008261329494416714, -0.019554462283849716, -0.010651025921106339, -0.005557200871407986, -0.0025882853660732508, 0.0171581469476223, 0.028782261535525322, 0.04212748631834984, -0.008208372630178928, 0.014483805745840073, -0.005782268941402435, 0.0015117637813091278, -0.016906600445508957, 0.02351301535964012, 0.02706115134060383, 0.008274569176137447, 0.007109509781002998, 0.005457906052470207, 0.0228775292634964, -0.02989436313509941, 0.05793522298336029, 0.04080355539917946, 0.01782011240720749, 0.014947181567549706, 0.021010786294937134, -0.03076815791428089, 0.017952505499124527, -0.0095587819814682, -0.00436897249892354, 0.014364652335643768, 0.021182896569371223, -0.004286226816475391, 0.007387535646557808, 0.01862771064043045, -0.02759072370827198, 0.012438332661986351, -0.0007972547318786383, -0.02371160499751568, -0.010233987122774124, 0.0026197286788374186, 0.012762695550918579, 0.03000027872622013, 0.014152823016047478, 0.027458330616354942, -0.013305507600307465, -0.006689161993563175, 0.022798093035817146, 0.014708873815834522, 0.01314663514494896, -0.010174410417675972, 0.014695635065436363, 0.03299236297607422, 0.0371759831905365, 0.00503093795850873, -0.030291542410850525, 0.009287376888096333, -0.03992976248264313, -0.02319527231156826, 0.029047047719359398, 0.01824377104640007, -0.0050143888220191, -0.016522658988833427, -0.028729304671287537, -0.010929050855338573, 0.013126776553690434, -0.01931615360081196, 0.003687147982418537, -0.0271670650690794, 0.03076815791428089, 0.01604604534804821, 0.008883577771484852, 0.026068203151226044, 0.019819248467683792, 0.0020388539414852858, 0.017449412494897842, -0.02200373448431492, -0.019766291603446007, 0.030927030369639397, -0.0020438185892999172, -0.006073534023016691, 0.030503371730446815, 0.015251685865223408, -0.04472239315509796, -0.0400356762111187, -0.02594904974102974, -0.027325937524437904, -0.009002731181681156, 0.027776073664426804, 0.019170522689819336, 0.03767907992005348, 0.020626846700906754, -0.006344939582049847, -0.00546783534809947, -0.02071952074766159, -0.01935587264597416, -0.024956101551651955, -0.02371160499751568, 0.0065799374133348465, 0.023989630863070488, -0.0100486371666193, -0.0032138426322489977, -0.007658941205590963, 0.03513713181018829, 0.02075923979282379, 0.030741680413484573, -0.0007869115215726197, 0.012193405069410801, -0.008440060541033745, -0.008294427767395973, -0.019448546692728996, -0.004474887158721685, -0.00044972283649258316, 0.015251685865223408, -0.0022324786987155676, 0.0035580648109316826, 0.0017111808992922306, -0.010392858646810055, -0.02661101520061493, 0.02710086852312088, -0.041624393314123154, -0.024214699864387512, -0.015635626390576363, -0.03466051444411278, -0.028173252940177917, -0.0061264908872544765, 0.02661101520061493, 0.0535132959485054, -0.018918974325060844, -0.0039453147910535336, 0.039638496935367584, 0.01074370089918375, -0.015079574659466743, -0.015225207433104515, 0.004716504365205765, -0.004680096171796322, -0.013027481734752655, -0.005262625869363546, 0.008241470903158188, -0.05571101978421211, -0.028755782172083855, -0.002295365557074547, 0.01845559850335121, -0.0037632740568369627, -0.038976531475782394, 0.007314719259738922, -0.015384078957140446, 0.014497045427560806, -0.02782903052866459, -0.010882713831961155, -0.026385946199297905, 0.005064036231487989, -0.0009433008963242173, 0.03230391815304756, -0.020626846700906754, 0.0191175639629364, 0.0016185056883841753, -0.018813060596585274, -0.01339156273752451, 0.018958693370223045, 0.016721248626708984, -0.00990300439298153, 0.045993365347385406, 0.0070366938598454, 0.0020835364703089, -0.01928967610001564, -0.0032899687066674232, -0.030079714953899384, -0.009605119936168194, -0.03574613854289055, -0.007182326167821884, 0.008850479498505592, 0.003088069148361683, 0.02657129615545273, -0.008684988133609295, 0.0020206498447805643, -0.027961423620581627, 0.018918974325060844, -0.047449689358472824, -0.018045181408524513, 0.004120735451579094, 0.02620059624314308, -0.01771419867873192, 0.005454596132040024, -0.008552595041692257, -0.013457759283483028, 0.0361962765455246, 0.04782038927078247, 0.013179734349250793, -0.008751184679567814, 0.003377679269760847, -0.02923239767551422, 0.0052162883803248405, -0.00016187125584110618, -0.025962287560105324, 0.036090362817049026, 0.022480349987745285, -0.008069359697401524, -0.008062739856541157, -0.026412425562739372, -0.004729743581265211, -0.04398098960518837, -0.027723116800189018, -0.00961173977702856, 0.02737889438867569, -0.01963389851152897, -0.018005462363362312, -0.0030367670115083456, 0.016787445172667503, 0.029947321861982346, -0.006891061086207628, -0.03934723138809204, -0.0024376881774514914, -0.0028547262772917747, 0.035560790449380875, 0.011835943907499313, 0.006470713298767805, 0.006937399040907621, -0.021288812160491943, 0.0008779317722655833, -0.007493449840694666, -0.011346089653670788, -0.009883145801723003, 0.03164195269346237, 0.000308020826196298, 0.007632462773472071, -0.02714058756828308, -0.024492725729942322, -0.03548135235905647, 0.029100004583597183, 0.04604632407426834, -0.031694911420345306, 0.00570283317938447, -0.023062879219651222, 0.011915380135178566, -0.008592313155531883, 0.0036044022999703884, -0.041942138224840164, -0.04707898944616318, -0.020666563883423805, -0.044139862060546875, -0.01751560904085636, 0.0019296295940876007, -0.012875230051577091, -0.0059907883405685425, -0.014642677269876003, -0.018508557230234146, -0.01229269988834858, -0.02001783810555935, 0.03034450113773346, 0.022175844758749008, 0.005034247878938913, -0.008751184679567814, 0.009161602705717087, 0.0002647862129379064, -0.010611307807266712, 0.0315360389649868, -0.00636479863896966, -0.006421065889298916, 0.02867634780704975, 0.009380051866173744, -0.02016347087919712, -0.006195997353643179, -0.010101594030857086, 0.02573722042143345, 0.019541222602128983, -0.006076843477785587, -0.00012587688979692757, 0.0010980353690683842, 0.016337309032678604, -0.04075060039758682, 0.021222615614533424, 0.004514604806900024, 0.043716203421354294, 0.012623682618141174, -0.006857962813228369, -0.0031774346716701984, 0.01803194172680378, 0.03569318354129791, 0.010915812104940414, 0.00040855686529539526, -0.0013545469846576452, 0.039532583206892014, 0.002015684964135289, -0.003212187672033906, 0.036434583365917206, -0.01636378839612007, -0.017661239951848984, 0.009141744114458561, -0.015966609120368958, -0.021302051842212677, 0.019580939784646034, 0.011763127520680428, -0.05033585801720619, 0.024704553186893463, 0.04069764167070389, 0.012180166319012642, 0.024400049820542336, 0.0021729019936174154, -0.006970497313886881, 0.009777231141924858, 0.0031095831654965878, -0.03002675622701645, 0.039214838296175, 0.014973660930991173, -0.00877104327082634, 0.011657212860882282, -0.003311482723802328, -0.02046797424554825, -0.027855509892106056, 0.025723980739712715, 0.017661239951848984, 0.010909192264080048, 0.014775071293115616, 0.0048952349461615086, 0.020176710560917854, 0.005560510326176882, -0.017806872725486755, -0.006308531388640404, 0.01566210389137268, 0.025803416967391968, 0.00961173977702856, -0.03505769371986389, -0.014788310043513775, 0.032595183700323105, 0.0095587819814682, 0.00026147637981921434, 0.003819541074335575, 0.024889905005693436, 0.0271670650690794, 0.01869390718638897, 0.00441200053319335, -0.0029358172323554754, -0.02933831326663494, 0.010035397484898567, -0.03558726608753204, -0.026385946199297905, 0.0037864428013563156, -0.026306509971618652, -0.029417747631669044, -0.004726434126496315, 0.005732621531933546, -0.020494453608989716, 0.026425665244460106, 0.012305939570069313, 0.014338173903524876, 0.006490571890026331, -0.012994383461773396, 0.006053674966096878, 0.006838104221969843, -0.023830760270357132, -0.03606388345360756, -0.014801549725234509, -0.017634762451052666, -0.018323205411434174, -0.006199307274073362, 0.009154983796179295, -0.020415017381310463, 0.014364652335643768, 0.02601524628698826, -0.010366380214691162, 0.03278053179383278, 0.05555214732885361, 0.025022298097610474, 0.022202324122190475, 0.02835860289633274, -0.008618791587650776]
Name: Arriviamo Bar, Address: 61 9th Ave, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.00522389999999, 40.74157129999999]}, Rating: 3.7, Reviews: ['We made the most of it, but one and done at this place💥. The ONLY Starbucks that does not serve frappuccinos, doesn’t allow phone charging and has very rude staff!  One bartender rolled her eyes when a friend asked for a glass of water after we had simultaneously spent $50 on two drinks! Very disappointing because I had been looking forward to going there for quite a while to try their espresso martinis.', 'The service in this establishment is like at a gas station, although in the latter the attitude will be more humane, you will not find such rudeness and intolerance even on the streets of New York, Starbucks needs to select employees more carefully (I ordered two croissants with chocolate, they gave me cheese) I ordered coffee with milk, they gave me without, and they also threw milk in my face when I asked for milk. If you want milk thrown in your face, then welcome to this eatery, otherwise I do not recommend going here because of the disgusting service and rude employees!!! Thank you for spoiling the impression of Starbucks and this establishment in general!', 'This is inside Starbucks reserve.  My fav drink of the night was the roastery old fashioned and cold brew spiced rum.  We were served by an awesome bartender Ari and Robert ( coffee master ).  I wish there was more places like this in Los Angeles.  A nice chill bar where you could actually have a conversation.\n\nWe had the best time with Robert his passion for coffee and love for Starbucks is awesome and if you get a chance to talk to this guy I strongly recommended, he took our experience from 10/10 to a 20/10.', "This is a gem that should not be overlooked. From the moment we walked in, we were greeted by Victor, the bartender, who exuded a warmth and friendliness that made us feel immediately at home. He was more than happy to chat with us and share his knowledge and passion for mixology, which added to the overall experience.\n\nThe ambiance of the bar was cozy and intimate, with dim lighting and comfortable seating. It was the perfect setting for a night out with my wife. As we perused the menu, we were impressed by the variety of drinks on offer, all of which were expertly crafted and full of flavor.\n\nMy wife and I decided to start with a flight of espresso martinis, which were all delicious. The espresso was strong and bold, perfectly balanced with the sweetness of the vodka and the smoothness of the cream. Each one had its own unique twist, and we enjoyed trying them all.\n\nI had a Milan-inspired Manhattan, which was a perfect balance of sweetness and bitters. The vermouth and amaro added a complexity to the drink that I had never experienced before. It was clear that Victor put a great deal of thought and care into the preparation of each drink.\n\nOverall, our visit to the Arriviamo bar at Starbucks Reserve in Chelsea was an exceptional experience. The hospitality of Victor and the delicious drinks on offer made for a memorable night. If you're in the area, I highly recommend stopping by and treating yourself to a drink or two. It's a true pleasure to have a bartender like Victor who is not just making a drink but creating an experience", "A separate 21+ area at the top level of the Starbucks Reserve. Well worth a visit and a very unique place to hang out with friends. Unique cocktails that have heavy coffee influence. Great friendly bartenders. No tipping! Guaranteed seating that requires reservations/a wait so get in line as soon as you arrive. Menu is completely separate from the main section and they don't allow food/drinks to be transferred between the sections."], Embedding: [-0.046776965260505676, -0.011932067573070526, -0.042917389422655106, -0.03674750402569771, 0.04471127688884735, -0.04593438282608986, -0.008480193093419075, 0.05446893349289894, 0.001246887375600636, -0.007460939697921276, -0.016797306016087532, -0.005130245350301266, -0.03299665078520775, -0.012013607658445835, -0.011911681853234768, 0.032371506094932556, -0.01448699738830328, -0.0004066398832947016, 0.03720956668257713, 0.04873393103480339, -0.012577594257891178, 0.052675049751996994, -0.02004532888531685, 0.031202763319015503, -0.0339207723736763, 0.02788678929209709, -0.055882301181554794, -0.02323899231851101, -0.025590071454644203, -0.025318270549178123, 0.0344100147485733, -0.018876584246754646, 0.02202947624027729, 0.0024903772864490747, 0.004348817281424999, 0.022192558273673058, 0.024530047550797462, -0.005503971595317125, 0.008561734110116959, -0.005439418833702803, 0.01735449768602848, 0.03430129587650299, 0.03995475918054581, -0.02549494057893753, 0.01603626273572445, 0.0054462142288684845, 0.017952460795640945, 0.0029643303714692593, 0.0005474243662320077, 0.01401134580373764, -0.07083135843276978, 0.012380538508296013, -0.028376031666994095, -0.00014980910054873675, -0.04952215403318405, -0.05531151965260506, -0.031012503430247307, -0.03364897146821022, 0.09659810364246368, 0.03174636512994766, 0.048135969787836075, -0.00496716471388936, 0.03044172003865242, -0.02298078127205372, -0.08882459253072739, 0.009479062631726265, -0.01656627468764782, 0.006210654508322477, 0.01556061115115881, -0.034111034125089645, 0.04982113838195801, 0.026731636375188828, -0.0002444086130708456, -0.027193697169423103, -0.03125712275505066, -0.004389587324112654, 0.0019111012807115912, -0.027995510026812553, -0.03818805143237114, -0.041449662297964096, -0.008344292640686035, -0.030278639867901802, -0.010049845091998577, 0.033594612032175064, 0.002138734795153141, -0.04392305389046669, -0.06637382507324219, -0.0241767056286335, -0.018659144639968872, -0.004987549502402544, 0.01467725820839405, -0.012040787376463413, 0.04177582636475563, 0.009995484724640846, 0.038269590586423874, 0.0006378831458278, -0.04530923813581467, -0.03163764625787735, -0.006292195059359074, 0.013460948131978512, 0.03821523115038872, -0.019732758402824402, -0.010498316027224064, -0.019012484699487686, 0.053191471844911575, -0.012258228845894337, 0.03109404258430004, 0.017857329919934273, -0.01062742155045271, -0.024761077016592026, -0.06349273025989532, -0.03109404258430004, -0.03981885686516762, 0.017408858984708786, -0.004090606234967709, 0.025426991283893585, 0.009723683819174767, -0.01749040000140667, -0.013189147226512432, 0.02870219387114048, -0.006530020851641893, -0.000855748716276139, -0.012625159695744514, 0.0076172249391674995, 0.018890174105763435, -0.07409296929836273, -0.00767158530652523, 0.017938870936632156, 0.010647807270288467, -0.05718694627285004, 0.035741839557886124, -0.02897399477660656, -0.00015235724276863039, -0.05609974265098572, 0.0021879987325519323, -0.018332982435822487, -0.04354253038764, -0.02989811822772026, -0.004022656008601189, -0.021581005305051804, -0.011646675877273083, -0.05115296319127083, 0.03044172003865242, -0.0405799001455307, -0.013270687311887741, -0.044385116547346115, -0.04954933747649193, 0.04471127688884735, -0.058817751705646515, -0.007624020334333181, -0.03938397392630577, -0.02404080517590046, -0.025739561766386032, -0.04256404936313629, -0.022477949038147926, -0.04780980944633484, 0.0016443964559584856, 0.05604538321495056, -0.01549266092479229, 0.004552667960524559, -0.04283585026860237, 0.012183482758700848, -0.030224278569221497, -0.002892982680350542, 0.0028573088347911835, 0.016321655362844467, -0.02682676538825035, 0.04446665570139885, -0.05648026242852211, 0.0008723115897737443, -0.019814297556877136, -0.007026057690382004, 0.00101670587901026, 0.0054122391156852245, 0.028892453759908676, -0.023184631019830704, 0.04658670350909233, 0.022532308474183083, 0.014921879395842552, 0.0020877718925476074, -0.019556086510419846, 0.020765602588653564, 0.035279780626297, -0.003125712275505066, -0.041069142520427704, 0.023714642971754074, -0.008561734110116959, -0.010790502652525902, 0.025562891736626625, -0.007855051197111607, 0.01236015371978283, 0.03258894756436348, -0.021730495616793633, 0.004002270754426718, -0.02254589833319187, -0.02548135071992874, -0.006523225922137499, 0.017300138249993324, -0.01815631240606308, 0.03155610337853432, -0.019664807245135307, -0.014065705239772797, 0.04756518825888634, -0.026092903688549995, 0.0145549476146698, 0.028267310932278633, 0.03707366809248924, 0.02525031939148903, 0.010620626620948315, -0.03258894756436348, 0.0360136404633522, 0.008065696805715561, -0.008826740086078644, 0.024135936051607132, -0.012326179072260857, -0.021662546321749687, -0.02682676538825035, -0.01474520843476057, -0.0237418245524168, 0.022097427397966385, -0.024883387610316277, 0.0485980324447155, 0.004036245867609978, 0.006176679395139217, 0.0076512000523507595, 0.02523672953248024, 0.017789380624890327, -0.011918476782739162, -0.01007022988051176, -7.463912334060296e-05, -0.03674750402569771, 0.029028354212641716, 0.008310317993164062, -0.061100881546735764, -0.01181655190885067, -0.015601381659507751, -0.05262068659067154, 0.007984156720340252, -0.0003941115573979914, 0.0017327318200841546, -0.0018516448326408863, 0.005884493235498667, 0.03296947106719017, -0.005809748079627752, 0.03962859511375427, -0.03354025259613991, 0.0019739551935344934, -0.03894909471273422, -0.017735019326210022, 0.019026074558496475, 0.0038799603935331106, -0.03941115736961365, -0.03968295827507973, -0.015791641548275948, -0.007522094529122114, -0.006560598500072956, -0.019148385152220726, -0.006795026827603579, 0.05221298709511757, -0.04283585026860237, 0.0064280955120921135, 0.029599137604236603, -0.03212688863277435, -0.022382818162441254, -0.06479737907648087, -0.02804987132549286, -0.013386202976107597, 0.030278639867901802, 0.02321181260049343, 0.045880019664764404, -0.07469093799591064, -0.02924579568207264, -0.006227642297744751, 0.05756746605038643, 0.021282024681568146, -0.01234656386077404, 0.015248040668666363, -0.011340899392962456, -0.002904874039813876, 0.02136356383562088, -0.0056738476268947124, -0.07197292149066925, 0.030088378116488457, -0.0016579865477979183, 0.004246891941875219, 0.025454171001911163, 0.005079282447695732, 0.012231048196554184, 0.006305784918367863, 0.016742946580052376, 0.007501709740608931, 0.010260490700602531, 0.028647832572460175, -0.03968295827507973, 0.014840338379144669, 0.008493783883750439, 0.08224700391292572, 0.015927542001008987, -0.0013624029234051704, 0.011932067573070526, 0.023972854018211365, 0.005592307075858116, 0.01855042390525341, 0.00423669908195734, 0.012468874454498291, 0.012652340345084667, -0.017952460795640945, 0.008724814280867577, -0.029816577211022377, 0.027261648327112198, -0.009424702264368534, -0.014799568802118301, 0.012455284595489502, -0.036665964871644974, -0.050147298723459244, -0.014269555918872356, 0.04661388322710991, 0.008554939180612564, -0.02883809432387352, -0.03555158153176308, -0.006917337421327829, -0.02591623179614544, -0.026242394000291824, 0.034246936440467834, 0.0210917629301548, -0.08713942766189575, 0.05593666061758995, 0.005853915587067604, 0.03286074846982956, -0.018332982435822487, 0.026785995811223984, -0.087574303150177, 0.00177689956035465, 0.01630806364119053, -0.044004593044519424, -0.07132060080766678, -0.020629702135920525, 0.03253458812832832, 0.03729110583662987, 0.023687463253736496, 0.027941150590777397, -0.01395698543637991, -0.03843267261981964, -0.0016758234705775976, 0.021050993353128433, -0.013474537990987301, 0.03378487378358841, -0.0014329012483358383, 0.019012484699487686, -0.005537946708500385, -0.02897399477660656, -0.006856182124465704, -0.04123222455382347, -0.011103074066340923, -0.0009266717825084925, 0.035442858934402466, 0.027723709121346474, 0.030414540320634842, -0.02765575982630253, -0.023809773847460747, 0.02215178683400154, -0.0024275232572108507, -0.0023052128963172436, 0.013569668866693974, -0.005011332221329212, 0.016797306016087532, 0.03756290674209595, 0.032099705189466476, 0.01515290979295969, -0.06664562225341797, 0.009431497193872929, 0.021567415446043015, 0.026636505499482155, 0.02735677734017372, -0.041721463203430176, 0.022654619067907333, -0.0009903751779347658, 0.007501709740608931, 0.02655496448278427, 0.03672032430768013, 0.03030581958591938, -0.035741839557886124, 0.016457555815577507, -0.004077015910297632, 0.01736808940768242, -0.013100812211632729, 0.007997746579349041, -0.05191400647163391, 0.011755396611988544, 0.008527758531272411, -0.03188226744532585, -0.0499570369720459, -0.03788907080888748, 0.03402949497103691, -0.01776220090687275, 0.0010285972384735942, 0.01776220090687275, -0.0092820068821311, -0.006852784659713507, 0.0049128043465316296, 0.06180756539106369, -0.05941571295261383, -0.007664790377020836, -0.014446226879954338, 0.03427411615848541, 0.03112122230231762, -0.002278032712638378, -0.027669349685311317, -0.043053291738033295, 0.04128658398985863, 0.0023442842066287994, -0.07469093799591064, 0.03155610337853432, 0.01516649965196848, 0.0018465485190972686, 0.03710084781050682, 0.03707366809248924, 0.0018397534731775522, 0.05512125790119171, 0.04136812314391136, -0.01871350407600403, 0.00308664096519351, -0.008154031820595264, 0.006265014875680208, -0.013236712664365768, 0.03337717056274414, 0.040416818112134933, -0.041476842015981674, -0.06159012392163277, -0.022899240255355835, -0.031855084002017975, -0.01503059919923544, 0.04669542610645294, -8.764523227000609e-05, -0.03979167714715004, -0.00430464930832386, -0.05300121009349823, 0.013175557367503643, -0.01827862299978733, -0.017436038702726364, 0.0025090635754168034, -0.06990723311901093, -0.0041925315745174885, -0.007528889924287796, -0.00624123215675354, 0.04275430738925934, 0.01409288588911295, 0.033703334629535675, 0.032099705189466476, -0.008466603234410286, -0.010212925262749195, -0.030115559697151184, -0.036366984248161316, 0.03354025259613991, -0.029816577211022377, 0.01575087197124958, -0.004838059190660715, -0.011035123839974403, -0.0015730487648397684, -0.03294229134917259, -0.012733880430459976, -0.025318270549178123, -0.06767846643924713, 0.006326170172542334, 0.0210917629301548, -0.012971706688404083, -0.04487435892224312, 0.0497124157845974, 0.01028767041862011, -0.03128430247306824, 0.00487882923334837, -0.05063654109835625, -0.016715766862034798, -0.01883581466972828, 0.0023001166991889477, -0.05422431603074074, 0.017843740060925484, 0.0063941203989088535, 0.005806350614875555, -0.014255966059863567, 4.175225330982357e-05, -0.004087208770215511, -0.05017447844147682, 0.04221070557832718, 0.00833749771118164, -0.08882459253072739, 0.021988706663250923, 0.05164220556616783, -0.060557279735803604, 0.034518737345933914, -0.004049836192280054, 0.000622169638518244, 0.005836928263306618, -0.014785978011786938, -0.035578761249780655, 0.01803400181233883, -0.01021972019225359, -0.03163764625787735, 0.003852780209854245, 0.003550401423126459, 0.033567432314157486, -0.0389762744307518, -0.0164031945168972, 0.02897399477660656, -0.0582197904586792, 0.05811106786131859, -0.0820295661687851, -0.011836936697363853, -0.005636474583297968, 0.009574192576110363, -0.03913935646414757, 0.02270898036658764, 0.001181485247798264, 0.0021251447033137083, -0.029272975400090218, 0.016362424939870834, -0.015710102394223213, 0.0154790710657835, -0.018631963059306145, -0.004783698823302984, -0.001059174770489335, -0.03006119839847088, 0.02588905207812786, 0.02457081712782383, 0.030767882242798805, 0.06583022326231003, -0.02481543831527233, -0.007114393170922995, -0.05740438774228096, -0.010783707723021507, -0.013637619093060493, -0.02125484310090542, -0.011245769448578358, 0.004542475566267967, 0.028729373589158058, -0.013508513569831848, -0.01963762752711773, 0.03568748012185097, -0.009091746062040329, -0.054414574056863785, 0.031963806599378586, -0.021200483664870262, 0.0019518714398145676, -0.02552212029695511, -0.000582248845603317, -0.02217896841466427, 0.018101951107382774, 0.017585529014468193, -0.004484717734158039, 0.014174425974488258, -0.022722570225596428, -0.015057779848575592, 0.00038752888212911785, -0.016756536439061165, -0.00948585756123066, 0.013039656914770603, 0.006047573871910572, -0.02579392120242119, 0.00981201883405447, 0.0004340323503129184, -0.039873216301202774, -0.00032870942959561944, -0.017544759437441826, 0.003416199702769518, -0.013046451844274998, 0.013522103428840637, 0.0008612696547061205, 0.050256017595529556, -0.007759920787066221, -0.0011908285086974502, 0.004651195835322142, 0.01909402571618557, 0.00298471562564373, -0.015832412987947464, 0.0632752925157547, 0.0032955880742520094, 0.033431533724069595, -0.012849396094679832, 0.0014940565451979637, 0.03723674640059471, -0.01093999296426773, -0.027030616998672485, -0.017966050654649734, 0.04617900401353836, 0.021934347227215767, 0.011198204010725021, 0.007793895900249481, 0.00887430552393198, 0.05487663671374321, 0.007121188100427389, 0.050799619406461716, -0.00714157335460186, 0.021309204399585724, -0.00443715276196599, -0.009567397646605968, -0.011293334886431694, -0.025957003235816956, 0.021132534369826317, 0.016756536439061165, 0.002092868322506547, -0.017571939155459404, -0.007032852619886398, -0.05101706087589264, -0.0037236746866256, -0.05349045246839523, 0.04125940427184105, -0.01295811589807272, -0.020072508603334427, 0.016457555815577507, -0.03443719446659088, 0.010158564895391464, 0.008568529039621353, 0.003927525598555803, -0.05952443554997444, -0.06452557444572449, 0.027465498074889183, -0.016525505110621452, -0.01274067535996437, 0.014989829622209072, -0.021920757368206978, -0.03835112974047661, -0.007094007916748524, -0.007882230915129185, 0.004729338455945253, 0.0057214125990867615, 0.008194802328944206, 0.0010141577804461122, -0.03375769406557083, 0.017055517062544823, -0.007338629104197025, 0.004542475566267967, 0.060013677924871445, 0.020371491089463234, 0.0400906577706337, -0.021010223776102066, 0.008949050679802895, -0.014582127332687378, -0.00016785839397925884, -0.003924128133803606, 0.017001157626509666, 0.028376031666994095, -0.016634225845336914, 0.033295631408691406, 0.014636487700045109, 0.003937717992812395, 0.014636487700045109, 0.008860714733600616, 0.021417925134301186, -0.022464359179139137, -0.005524356849491596, -0.006869771983474493, -0.008058901876211166, 0.03006119839847088, 0.009696503169834614, -0.008670453913509846, 0.04446665570139885, 0.01542471069842577, -0.0065538035705685616, 0.010090614669024944, 0.03767162933945656, 0.02083355188369751, 0.03402949497103691, 0.008514168672263622, 0.013970575295388699, -0.03498080000281334, 0.012856191024184227, -0.020670471712946892, -0.00571122020483017, -0.01857760362327099, -0.01509854942560196, 0.019705578684806824, -0.042645588517189026, 0.03816087171435356, 0.0009793333010748029, 0.0506909005343914, 0.014935469254851341, -0.00080138846533373, -0.035062339156866074, -0.000882504100445658, -0.010573062114417553, 0.025331860408186913, -0.00960816815495491, -0.013583258725702763, -0.01883581466972828, -0.00298471562564373, -0.008446218445897102, 0.04832623153924942, -0.00981201883405447, 0.009954714216291904, 0.008140441961586475, -0.00513704027980566, 0.0026177840773016214, 0.04740210622549057, 0.00540884118527174, -0.021336384117603302, -0.06126396358013153, 0.022885650396347046, 0.025168780237436295, 0.01668858528137207, -0.08344292640686035, 0.0013929804554209113, -0.04721184819936752, 0.040770161896944046, 0.008765584789216518, -0.014323916286230087, 0.060557279735803604, 0.0025073648430407047, -0.020262770354747772, 0.02149946428835392, -0.02160818502306938, -0.033975135535001755, -0.012033992446959019, -0.028919633477926254, -0.009329572319984436, 0.023007960990071297, -0.003835792653262615, 0.0029116689693182707, -0.0025532313156872988, -0.0020402069203555584, -0.03623108193278313, -0.06669998168945312, 0.03487207740545273, -0.013603643514215946, -0.032779209315776825, 0.0013963780365884304, -0.03533414006233215, 0.03845985233783722, 0.0031579886563122272, -0.018319392576813698, 0.05411559343338013, 0.0010379403829574585, -0.010416775941848755, -0.0002592727541923523, -0.025128008797764778, 0.007304653991013765, 0.02390490472316742, -0.012115532532334328, -0.021540235728025436, -0.044548194855451584, -0.022111017256975174, 0.0059286607429385185, -0.04248250648379326, -0.0064756604842841625, 0.00914610642939806, 0.024203885346651077, -0.04392305389046669, 0.010797297582030296, -0.0015254835598170757, -0.06392761319875717, -0.010301260277628899, -0.049576517194509506, 0.012706699781119823, -0.013127991929650307, 0.016579866409301758, 0.0034858486615121365, -0.008357883431017399, 0.04965805634856224, -0.035769023001194, -0.004083811305463314, 0.03057762049138546, -0.028756553307175636, -0.005157425533980131, -0.013297867961227894, -0.0006387325120158494, 0.0005869204178452492, 0.03723674640059471, 0.022083837538957596, -0.027125747874379158, -0.0009428099729120731, 0.019990969449281693, 0.008249162696301937, 0.026011362671852112, -0.003924128133803606, -0.01643037423491478, 0.010471136309206486, -0.011198204010725021, 0.036774683743715286, -0.023850543424487114, -0.03354025259613991, 0.019325057044625282, 0.058926474303007126, -0.01668858528137207, -0.005507369060069323, 0.01447340752929449, 0.024665948003530502, -0.042265068739652634, 0.007841461338102818, -0.02802269160747528, -0.01207476295530796, 0.017150647938251495, 0.0010608736192807555, -0.03658442571759224, 0.004926394671201706, 0.008568529039621353, -0.006720281671732664, 0.019664807245135307, -0.012597979977726936, -0.033703334629535675, 0.016131393611431122, 0.027166517451405525, -0.017381679266691208, -0.048244692385196686, 0.032507408410310745, -0.010851657949388027, 0.0010226515587419271, 0.01681089587509632, -0.007644405122846365, -0.007012467831373215, 0.01348812784999609, -0.06251424551010132, -0.03161046653985977, -0.00317157874815166, -0.007325038779526949, 0.006353349890559912, 0.02151305414736271, -0.025875462219119072, -0.02949041686952114, -0.021200483664870262, -0.008561734110116959, -0.027859609574079514, -0.018754273653030396, -0.007848256267607212, -0.012564004398882389, 0.01644396409392357, 0.011456415057182312, -0.016090624034404755, -0.008249162696301937, -0.008643274195492268, -0.030550440773367882, -0.0392208956182003, -0.007528889924287796, 0.01696038618683815, -0.06316656619310379, 0.001187430927529931, -0.01841452345252037, -0.01723218895494938, 0.002018122933804989, 0.008921870030462742, -0.010314851067960262, 0.01736808940768242, 0.043189190328121185, 0.018795045092701912, -0.025032879784703255, -0.0403352789580822, -0.015057779848575592, -0.021472284570336342, 0.009628552943468094, -0.0021795048378407955, 0.004450742620974779, -0.020520981401205063, -0.0012706699781119823, -0.024869797751307487, -0.005167617928236723, -0.027030616998672485, 0.014799568802118301, 0.0020877718925476074, 0.005684040021151304, 0.02605213224887848, -0.016240114346146584, -0.005429226439446211, -0.02859347313642502, 0.031855084002017975, 0.010933198034763336, -0.05783926695585251, -0.021730495616793633, 0.034491557627916336, 0.015207270160317421, -0.07267960906028748, 0.027003437280654907, 0.01936582662165165, -0.03220842778682709, -0.027995510026812553, -0.0016265595331788063, 0.02000455930829048, -0.012468874454498291, 0.011109868995845318, 0.009411112405359745, 0.021812036633491516, -9.098965529119596e-05, 0.020860731601715088, 0.01895812526345253, 0.00042978546116501093, 0.017667070031166077, 0.0020113280043005943, 0.04006347805261612, 0.015710102394223213, 0.01653909496963024, 0.05903519317507744, 0.008582118898630142, 0.010267285630106926, -0.02549494057893753, 0.006414505187422037, 0.046804144978523254, -0.010382801294326782, -0.034899257123470306, -0.016049852594733238, 0.023442842066287994, 0.002177806105464697, -0.005680642556399107, -0.0065538035705685616, 0.007508504670113325, 0.021186893805861473, -0.013141581788659096, -0.025603661313652992, 0.03150174394249916, 0.03220842778682709, -0.006886759772896767, -0.00788902584463358, 0.016906026750802994, -0.022369228303432465, 0.014432637020945549, -0.008398653008043766, 0.015587791800498962, 0.010756527073681355, -0.01897171512246132, 0.01868632435798645, 0.013902625069022179, -0.01720500737428665, -0.011578725650906563, 0.027574218809604645, -0.029436055570840836, 0.007318243850022554, -0.025318270549178123, 0.005833530332893133, -0.011918476782739162, 0.006485853344202042, 0.012502849102020264, 0.00724349869415164, 0.004267276730388403, 0.0023171042557805777, -0.03310536965727806, 0.005354481283575296, 0.01549266092479229, -0.021703315898776054, 0.029680676758289337, 0.009037385694682598, 0.016348835080862045, -0.022654619067907333, 0.006659126374870539, -0.01135449018329382, 0.027152927592396736, -0.007766715716570616, -0.024597996845841408, -0.01508495956659317, 0.03313254937529564, -0.014106475748121738, 0.01909402571618557, 0.009981894865632057, 0.049739595502614975, 0.0371280275285244, 0.02870219387114048, 0.021268434822559357, -0.0006731323665007949, 0.007359013892710209, -0.018998894840478897, -0.030224278569221497, 0.01910761557519436, 0.015832412987947464, 0.011279745027422905, 0.017286548390984535, -0.025603661313652992, 0.0061902692541480064, -0.01001586951315403, 0.010654602199792862, -0.02160818502306938, 0.034111034125089645, 0.02484261803328991, -0.004637605976313353, -0.06659126281738281, 0.055066898465156555, 0.011721421033143997, 0.00926841702312231, 0.0072502936236560345, 0.0011780877830460668, -0.02136356383562088, 0.02228768728673458, 0.019406596198678017, 0.04231942817568779, 0.019189156591892242, -8.382302621612325e-05, -0.021934347227215767, 0.01908043585717678, -0.008065696805715561, -0.013195942156016827, 0.004481320269405842, 0.020874323323369026, 0.012040787376463413, 0.04636926203966141, 0.03783470764756203, 0.025277499109506607, 0.014052115380764008, -0.01842811331152916, -0.0032276378478854895, -0.00470895366743207, -0.018631963059306145, -0.0036489295307546854, 0.0384870320558548, -0.04457537457346916, 0.025454171001911163, 0.03767162933945656, 0.009037385694682598, 0.03161046653985977, 0.0038459852803498507, -0.04726620763540268, -0.0005041060503572226, 0.001460930798202753, -0.01667499542236328, 0.03791625052690506, -0.021689726039767265, -0.014242376200854778, 0.01602267287671566, -0.00023846297699492425, 0.02788678929209709, 0.006220846902579069, -0.0208471417427063, -0.022274097427725792, -0.005436021368950605, 0.024774668738245964, -0.016620635986328125, 0.001597680733539164, 0.04862521216273308, 0.020072508603334427, 0.01802041195333004, -0.01282221544533968, -0.016389604657888412, -0.014391866512596607, 0.006992082577198744, -0.0008043613051995635, 0.02136356383562088, 0.033839233219623566, 0.013583258725702763, -0.008738404139876366, 0.012040787376463413, -0.018115540966391563, 0.03726392611861229, 0.03990039601922035, 0.012706699781119823, 0.007236703764647245, 0.009655733592808247, 0.007793895900249481, -0.013800699263811111, 0.02951759658753872, 4.175225330982357e-05, -0.0010931500000879169, 0.009044180624186993, 0.011123458854854107, -0.01614498347043991, 0.005486984271556139, 0.026378294453024864, 0.0568607859313488, 0.00035015621688216925, -0.037454187870025635, 0.037182386964559555, 0.018482472747564316, -0.0015925844199955463, 0.010144975036382675, 0.02401362545788288, 0.003225938882678747, 0.019161975011229515, -0.010865247808396816, -0.0023103090934455395, 0.01909402571618557, 0.011055508628487587, -0.02791397087275982, -0.0010549279395490885, -0.029599137604236603, 0.01348812784999609, 0.004155158996582031, -0.028403211385011673, 0.0118709122762084, 0.053354550153017044, 0.022994371131062508, 0.013787109404802322, -0.007474529556930065, -0.016199344769120216, 0.006954709999263287, -0.005578717216849327, -0.0012706699781119823, 0.009900353848934174, -0.004600233398377895, -0.016878847032785416, 0.0061223190277814865, 0.0154790710657835, -0.017544759437441826, -0.01541112083941698, -0.008622889406979084, -0.006227642297744751, -0.06669998168945312, -0.007855051197111607, -0.005466599017381668, 0.01947454735636711, -0.012380538508296013, -0.0050588976591825485, -0.00567724509164691, -0.011368080042302608, 0.001785393338650465, 0.030930962413549423, 0.008779174648225307, 0.01188450213521719, 0.0416942834854126, 0.004838059190660715, -0.016661405563354492, 0.0112865399569273, -0.011137048713862896, -0.012917346321046352, 0.015791641548275948, 0.005303518380969763, -0.0194881372153759, -0.011266154237091541, -0.004797289147973061, 0.005075884982943535, -0.015207270160317421, 0.01121179386973381, -0.013895830139517784, 0.02482902817428112, -0.0006552953855134547, -0.00029133676434867084, -0.006421300582587719, -0.027818839997053146, 0.006329567637294531, -0.024625176563858986, -0.025263909250497818, 0.006930927280336618, 0.028484752401709557, 0.023660283535718918, 0.0023765605874359608, -0.004783698823302984, 0.02469312772154808, -0.022613849490880966, 0.038786012679338455, 0.008052106946706772, -0.00940431747585535, -0.02311668172478676, -0.01951531693339348, 0.0007206975133158267, -0.010185745544731617, 0.0011916778748854995, -0.026921896263957024, -0.014269555918872356, 0.005289928521960974, 0.024081574752926826, 0.005690834950655699, 0.030115559697151184, -0.015533431433141232, 0.02454363740980625, -0.01844170317053795, -0.01789810135960579, 0.08877023309469223, -0.02134997397661209, 0.00620725704357028, 0.02722087688744068, -0.002582110231742263, 0.002989811822772026, -0.011986427009105682, 0.028077051043510437, 0.013759929686784744, 0.005898083094507456, 0.010464341379702091, -0.02496492862701416, 0.02322540245950222, -0.006570790894329548, 0.04873393103480339, -0.03886755183339119, -0.0003344427386764437, 0.009424702264368534, 0.03378487378358841, -0.0017131961649283767, -0.01047793123871088, 0.021648956462740898, 0.014527766965329647, 0.028675014153122902, 0.012163097970187664, 0.0048992144875228405, 0.003934320528060198, 0.0016206138534471393, 0.030496081337332726, 0.034138213843107224, 0.02255949005484581, -0.011660265736281872, 0.008785969577729702, -0.03269767016172409, -0.00634315749630332, -0.008038517087697983, 0.02735677734017372, 0.019963789731264114, 0.0059966109693050385, -0.005816543009132147, -0.01709628663957119, -0.004369202069938183, -0.022219737991690636, 0.015451891347765923, -0.011551545932888985, -0.0019128000130876899, -0.027261648327112198, -0.00443715276196599, -0.0291098952293396, 0.01188450213521719, -0.03908499330282211, -0.005327301099896431, 0.015315990895032883, -0.0002065051085082814, -0.022342048585414886, -0.024067984893918037, 0.02081996202468872, -0.003614954184740782, 0.013501718640327454, -0.013508513569831848, 0.013087221421301365, 0.021784856915473938, -0.0017182923620566726, 0.03644852340221405, 0.007257088553160429, -0.002374861855059862, 0.015682922676205635, -0.005952443461865187, -0.01522086001932621, -0.0063159773126244545, 0.009356752038002014, -0.007725945673882961, -0.021988706663250923, -0.0001581967226229608, 0.006676113698631525, -0.009180081076920033, -0.01035562064498663, 0.010600241832435131, 0.012040787376463413, -0.046668242663145065, -0.013501718640327454, -0.00914610642939806, 0.03614954277873039, -0.0017836944898590446, -0.017911691218614578, 0.003195361467078328, 0.008303523063659668, 0.008466603234410286, -0.023864135146141052, 0.0030271844007074833, 0.0011109869228675961, 0.01761270873248577, 0.017313728109002113, -0.013494923710823059, 0.018591193482279778, 0.012693109922111034, 0.00038137088995426893, 0.026337524875998497, -0.005833530332893133, -0.022206148132681847, 0.007712355349212885, 0.017381679266691208, -0.0069411201402544975, -0.0019807503558695316, 0.005371468607336283, -0.030278639867901802, -0.003832395188510418, -0.013970575295388699, -0.04044400155544281, -0.001924691372551024, 0.022654619067907333, 0.007909411564469337, -0.009091746062040329, 0.028484752401709557, -0.0012052678503096104, -0.028212951496243477, -0.002801249735057354, 0.0210917629301548, -0.036258261650800705, -0.03935679420828819, 0.016647815704345703, 0.02134997397661209, 0.00540884118527174, -0.03432847559452057, 0.012251432985067368, 0.006723679136484861, 0.018265031278133392, 0.04593438282608986, -0.0024699922651052475, -0.025467760860919952, -0.006577585823833942, 0.004216314293444157, -0.009390726685523987, 0.012611569836735725, -0.0014770689886063337, 0.016131393611431122, -0.01802041195333004, 0.01242810394614935, -0.0020317130256444216, -0.015139319933950901, -0.01294452603906393, -0.0032989855390042067, -0.01921633630990982, -0.050147298723459244, 0.01161270122975111, -0.02711215801537037, -0.04022656008601189, 0.005018127150833607, 0.021010223776102066, 0.02190716564655304, -0.05555614084005356, -0.041857365518808365, 0.02283129096031189, 0.027995510026812553, 0.01694679632782936, -0.03894909471273422, -0.01395698543637991, 0.002148927189409733, -0.0018669336568564177, -0.03443719446659088, -0.012353358790278435, -0.02043944038450718, -0.0072163185104727745, -0.04862521216273308, 0.00780748575925827, 0.004277469590306282, -0.0020826756954193115, -0.0037848299834877253, -0.010926403105258942, 0.02511441893875599, -0.02428542636334896, -0.005633077118545771, -0.01986865885555744, 0.019012484699487686, 0.010899223387241364, -0.004766711499541998, 0.005949045997112989, 0.003142699832096696, -0.030767882242798805, 0.03150174394249916, 0.011123458854854107, 0.010919608175754547, 0.012992091476917267, -0.010457546450197697, 0.005531151778995991, -0.026785995811223984, 0.0019297875696793199, -0.012591185048222542, -0.009995484724640846, -0.02268179878592491, -0.03362179175019264, -0.00934995710849762, -0.008745200000703335, 0.030523261055350304, 0.00039092637598514557, 0.0339207723736763, 0.027125747874379158, 0.021920757368206978, -0.03443719446659088, 0.017599118873476982, -0.053055569529533386, -0.010382801294326782, 0.012530029751360416, -0.009050975553691387, -0.005612692330032587, -0.00780748575925827, -0.01115063950419426, -0.040416818112134933, 0.013671593740582466, 0.03362179175019264, -0.0038459852803498507, 0.0318279042840004, -0.017735019326210022, -0.011966042220592499, 0.00603738147765398, -0.0053205061703920364, -0.03481771796941757, 0.0408245213329792, 0.038242410868406296, -0.0021591198164969683, -0.02921861596405506, -0.019691986963152885, -0.02457081712782383, -0.020588930696249008, -0.0056874374859035015, -0.02722087688744068, 0.02162177488207817, -0.013603643514215946, -0.02124125324189663, -0.017544759437441826, 0.015125730074942112, 0.055229976773262024, 0.006091741379350424, 0.013189147226512432, -0.004073618445545435, -0.0008808053680695593, 0.019134795293211937, -0.014663668349385262, 0.0012001716531813145, 0.020765602588653564, -0.02523672953248024, -0.006132511887699366, -0.03753572702407837, 0.022491538897156715, 0.015574201941490173, 0.0145549476146698, 0.00016254978254437447, 0.013902625069022179, -0.0008039366221055388, 0.011089484207332134, -0.021934347227215767, -0.019691986963152885, 0.02440773695707321, -0.012332974001765251, 0.03701930493116379, 0.0003161811036989093, -0.02644624374806881, -0.018088361248373985, 0.01061383169144392, -0.01869991421699524, -0.052131444215774536, -0.013807494193315506, -0.0016265595331788063, 0.0017633094685152173, 0.00265345792286098, -0.007284268736839294, -0.008527758531272411, 0.03794343024492264, -0.025535710155963898, -0.0018516448326408863, -0.012244638055562973, 0.010620626620948315, -0.006013598758727312, 0.0065436107106506824, -0.012570799328386784, 0.0008561733993701637, -0.019039664417505264, -0.0036285442765802145, 0.031447384506464005, -0.004973959643393755, -0.004464332479983568, 0.03775316849350929, 0.008568529039621353, -0.03968295827507973, -0.019678397104144096, -0.01721859723329544, -0.00470895366743207, 0.01429673656821251, 0.007576454896479845, 0.00833749771118164, 0.02497851848602295, -0.006903747096657753, -0.06066599860787392, 0.005986418575048447, 0.004151761531829834, 0.03258894756436348, 0.0024309209547936916, -0.043325092643499374, -0.0007092309533618391, -0.004080413840711117, 0.0096217580139637, 0.01388903521001339, 0.02549494057893753, -0.022002296522259712, 0.015234449878334999, 0.0056738476268947124, 0.0005219429731369019, 0.029979659244418144, -0.026949075981974602, -0.012693109922111034, 0.020996632054448128, -0.016987567767500877, 0.0044337548315525055, 0.025712382048368454, 0.01842811331152916, -0.014704437926411629, 0.016185753047466278, 0.006146101746708155, 0.013590053655207157, -0.0257803313434124, 0.017802970483899117, -0.0148946987465024, 0.012801830656826496, 0.009961509145796299, -0.0387316532433033, 0.021268434822559357, 0.025997772812843323, -0.0021251447033137083, -0.010505111888051033, 0.009098540991544724, -0.012462079524993896, -0.033322811126708984, 0.01736808940768242, 0.04153120517730713, 0.007488119415938854, 0.046396441757678986, 0.009886763989925385, 0.008514168672263622, 0.0336761549115181, 0.00867724884301424, 0.024271836504340172, -0.0014957552775740623, 0.01508495956659317, 0.012720290571451187, 0.010770117864012718, 0.0012460380094125867, -0.0034858486615121365, -0.011001148261129856, 0.01447340752929449, 0.03139302507042885, 0.018890174105763435, 0.01922992616891861, -0.012047582305967808, -0.010600241832435131, -0.016906026750802994, -0.01481315866112709, 0.014785978011786938, -0.024421326816082, 0.01395698543637991, 0.018265031278133392, -0.011177819222211838, -0.0010642710840329528, -0.012271818704903126, -0.039329614490270615, -0.014065705239772797, 0.01789810135960579, 0.010919608175754547, -0.0128901656717062, -0.02576674148440361, -0.000580974796321243, 0.021023813635110855, -0.01802041195333004, -0.048543673008680344, -0.04530923813581467, -0.017001157626509666, -0.033186912536621094, -0.012706699781119823, -0.02043944038450718, -0.001955268904566765, 0.033839233219623566, 0.02337489277124405, 0.013087221421301365, -0.0027485883329063654, 0.01435109693557024, 0.008303523063659668, -0.01894453540444374, -0.0008094575605355203, 0.01895812526345253, 0.008174417540431023]
Name: The Happiest Hour, Address: 121 W 10th St, New York, NY 10011, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.9996815, 40.7348417]}, Rating: 4, Reviews: ['CARLOS WAS AMAZING. happiest meal is an amazing deal. our food came out so fast. i expected a mediocre food experience and was blow away! i would definitely return. my drink was amazing as well.', 'I had the happiest time at the happiest hour. Maori and Colin treated us so nicely and made sure everything was wonderful. Highly recommend this place. Their cocktail list is also so unique', "Stopped by here with a friend for drinks and snack before dinner\nEach ordered a cocktail and we took the mac n'cheese bites and buffalo cauliflower\nThe drinks were good\nThe food was delicious\nService was super quick and staff is nice\nRecommend for a nice cocktail night with a friend or two:)", 'I stumbled upon this place at random. All I can say is that the drinks are absolutely AMAZING! My server Steph was very attentive and quick with my orders! I will definitely be coming back! 10/10', 'great place for drinks & food! we had burgers and cocktails (the highball and the troublemaker were both delicious). everything was great and our server stephanie was so friendly and wonderful too!'], Embedding: [-0.04474761337041855, -0.0014498315285891294, -0.04951123148202896, 0.010103686712682247, -0.027922915294766426, -0.04097219184041023, -0.02490764670073986, 0.050828829407691956, 0.022867904976010323, 0.017749547958374023, 0.01014802884310484, -0.008177967742085457, -0.01918116770684719, -0.016837365925312042, -0.007835899479687214, 0.0601026825606823, -0.018687069416046143, 0.03433353081345558, 0.017736878246068954, 0.03109021484851837, -0.003765919478610158, 0.011427617631852627, -0.037830229848623276, 0.028074946254491806, -0.009178834967315197, 0.03331999480724335, -0.05321063846349716, -0.02941788174211979, -0.012650195509195328, 0.00541925011202693, 0.06805893778800964, -0.010414081625640392, 0.008507367223501205, -0.04495031759142876, -0.023767417296767235, 0.023767417296767235, -0.0018576213624328375, 0.011585982516407967, 0.027644192799925804, -0.00914082769304514, 0.011890043504536152, 0.031039537861943245, 0.061825692653656006, -0.00790558010339737, 0.022855235263705254, -0.03324398025870323, -0.028201637789607048, 0.06785622984170914, 0.007544508203864098, 0.06304193288087845, -0.08265385776758194, 0.028885774314403534, -0.03225577995181084, 0.042011063545942307, 0.0013817345025017858, 0.002814145991578698, -0.005593451671302319, -0.03364939242601395, 0.04112422093749046, 0.023944787681102753, 0.07236646860837936, -0.003604387165978551, 0.01704007387161255, 0.037703536450862885, -0.025769151747226715, -0.03402946889400482, -0.04674934595823288, 0.0051690335385501385, 0.04799092561006546, -0.011750682257115841, -0.01269453763961792, 0.04104820638895035, -0.04581182450056076, -0.0012970092939212918, 0.0023026270791888237, -0.06126824766397476, 0.008412348106503487, -0.03772887587547302, -0.026884041726589203, -0.0727212056517601, -0.061521630734205246, 0.01869973912835121, -0.04178301990032196, 0.011972393840551376, 0.0356004498898983, -0.05908914655447006, -0.04956190660595894, -0.0185603778809309, -0.02261452004313469, 0.025173699483275414, 0.015266384929418564, 0.0004758868017233908, 0.04003467038273811, -0.02257651276886463, 0.0122194429859519, -0.028100283816456795, -0.05125958099961281, 0.009248515591025352, -0.03098886087536812, 0.04223911091685295, 0.07682602852582932, -0.016634657979011536, -0.018192971125245094, -0.015823829919099808, 0.042188435792922974, -0.016634657979011536, 0.011028538458049297, -0.011700005270540714, 0.00789924617856741, -0.02353937178850174, -0.021018201485276222, -0.047281451523303986, -0.04761085286736488, 0.009077480994164944, -0.029164496809244156, 0.04662265256047249, 0.05386943742632866, -0.034460220485925674, -0.001201198436319828, 0.002620940562337637, -0.046065207570791245, 0.03623390942811966, -0.04530505836009979, -0.0510568730533123, -0.021626323461532593, -0.041707005351781845, -0.0021474293898791075, -0.011560644023120403, -0.026884041726589203, -0.023906778544187546, -0.01873774640262127, 0.0037627522833645344, 0.003613889217376709, 0.005485763307660818, 0.002006484428420663, -0.00789924617856741, -0.02630125731229782, -0.030608786270022392, -0.023894110694527626, -0.001330265891738236, 0.019561244174838066, -0.0238434337079525, 0.0099896639585495, -0.038311660289764404, -0.04996732249855995, -0.022956589236855507, -0.050980858504772186, 0.011003199964761734, -0.05214642360806465, 0.003202140098437667, -0.01315062865614891, -0.011357937008142471, -0.026681333780288696, -0.02817630022764206, -0.018142294138669968, -0.03587917238473892, 0.004624257795512676, 0.0038862768560647964, -0.03656331077218056, 0.01330265961587429, -0.008095618337392807, 0.004057310987263918, -0.01811695471405983, 0.011243914254009724, 8.858541696099564e-05, 0.02769486978650093, -0.054274849593639374, 0.026047874242067337, -0.02046075649559498, -0.015988528728485107, 0.012802225537598133, -0.025021668523550034, 0.021081548184156418, 0.009242180734872818, -0.0019653094932436943, -0.020764818415045738, 0.03002600185573101, -0.020954856649041176, -0.010572446510195732, -0.030887508764863014, 0.035676464438438416, 0.020359402522444725, 0.03372540697455406, -0.009305526502430439, -0.03701940178871155, 0.035397741943597794, -0.03268653526902199, 0.03390277922153473, 0.014645594172179699, 0.0349416509270668, 0.025515766814351082, 0.05044875293970108, -0.029519233852624893, -0.019915981218218803, -0.013986796140670776, -0.028733743354678154, 0.004966326057910919, 0.03848902881145477, -0.03331999480724335, 0.05898779258131981, -0.017711540684103966, -0.03192638233304024, 0.04071880504488945, -0.0029471726156771183, 0.03704473748803139, -0.025452421978116035, -0.008697405457496643, 0.03542308136820793, 0.008938119746744633, 0.00888744369149208, 0.06081215664744377, 0.017382141202688217, -0.008570712991058826, -0.0018148628296330571, 0.00383243290707469, -0.007949922233819962, -0.0718597024679184, 0.0624844916164875, 0.02416016347706318, 0.0408201590180397, -0.011180568486452103, 0.029063142836093903, 0.016178566962480545, -0.04948589205741882, 0.03035540133714676, 0.028100283816456795, -0.04877641797065735, -0.019383875653147697, 0.02678268775343895, -0.012865572236478329, -0.005815162323415279, 0.04360738396644592, 0.01981462724506855, 0.015684468671679497, -0.005321063566952944, -0.006055877078324556, -0.021436285227537155, -0.010895511135458946, -0.0015749398153275251, 0.010673800483345985, -0.011649329215288162, -0.02850569784641266, 0.03390277922153473, 0.024869637563824654, 0.029772618785500526, 0.003335166722536087, 0.0112122418358922, 0.004155497532337904, -0.011199572123587132, 0.060964185744524, 0.00711375568062067, -0.01734413392841816, -0.015089016407728195, -0.014683602377772331, 0.01581116020679474, -0.011319929733872414, 0.003772254101932049, -0.03501766547560692, 0.03233179822564125, -0.005697972606867552, -0.012213108129799366, 0.025186369195580482, -0.01981462724506855, -0.0015860253479331732, -0.07591383904218674, -0.0013421432813629508, 0.015101686120033264, 0.011649329215288162, -0.03836233541369438, 0.05817696452140808, -0.06005200371146202, -0.038159627467393875, 0.05229845643043518, 0.06329531967639923, 0.020384741947054863, -0.013720743358135223, -0.007797892205417156, 0.006790691055357456, 0.00904580857604742, -0.012808560393750668, 0.007107420824468136, -0.05493364855647087, 0.0174708254635334, -0.010863838717341423, 0.02041007950901985, 0.0002808998979162425, 0.03385210037231445, 0.021905045956373215, 0.040946852415800095, -0.01610255241394043, -0.04530505836009979, -0.0025686800945550203, 0.006530972197651863, -0.011003199964761734, 0.03377608582377434, 0.011953389272093773, 0.00449439836665988, -0.004060478415340185, 0.025743812322616577, -0.03874241188168526, 0.03271187096834183, 0.03387743979692459, 0.012643860653042793, -0.016001198440790176, 0.024679601192474365, 0.03856504335999489, -0.015456423163414001, 0.0015115938149392605, -0.008615055121481419, 0.033218640834093094, -0.02385610155761242, 0.001989064272493124, 0.07753550261259079, -0.005815162323415279, -0.01840834692120552, -0.02632659673690796, 0.013239312916994095, -0.01839567720890045, -0.02570580504834652, -0.034130822867155075, 0.045406412333250046, -0.015861837193369865, 0.020828163251280785, 0.019751282408833504, 0.008767086081206799, -0.06937653571367264, 0.04350602999329567, -0.022019067779183388, -0.01643195189535618, -0.02555377595126629, 0.02969660423696041, -0.04750949889421463, 0.011579648591578007, 0.019776619970798492, -0.04130158945918083, 0.002692204900085926, -0.03466292843222618, -0.03993331640958786, 0.03154630586504936, 0.0683630034327507, -0.020473426207900047, -0.04033873230218887, 0.006822363939136267, -0.007930918596684933, 0.030532769858837128, -0.006835033185780048, 0.04436753690242767, 0.009229511953890324, 0.02536373771727085, 0.006689337082207203, -0.03889444097876549, -0.006065379362553358, 0.0013437269954010844, 0.006230078637599945, -0.008786089718341827, 0.06826164573431015, -0.03902113437652588, -3.4827926356229e-06, -0.025325730443000793, 0.024654261767864227, -0.00595452357083559, 0.04059211537241936, 0.009229511953890324, -0.016013868153095245, 0.029493896290659904, 0.008032272569835186, -0.041250914335250854, 0.009400545619428158, -0.024426216259598732, -0.022956589236855507, 0.01068013533949852, 0.012631191872060299, -0.02784690074622631, 0.017065411433577538, -0.00858971755951643, 0.03529638797044754, 0.01886443793773651, 0.009634925983846188, 0.04021203890442848, 0.04287257045507431, 0.0714036077260971, -0.006271253805607557, 0.04826964810490608, 0.023653395473957062, 0.042340464890003204, 0.010426751337945461, 0.026199905201792717, -0.06035606563091278, 0.022969258949160576, -2.4014567316044122e-05, 0.056099213659763336, -0.05186770111322403, -0.07231578975915909, -0.011433952488005161, -0.02587050572037697, -0.007056743837893009, 0.05447755753993988, 0.08604919910430908, -0.022006399929523468, 0.01688804291188717, 0.049612585455179214, -0.0301526952534914, -0.026706673204898834, -0.040617454797029495, 0.01577315293252468, 0.02802426926791668, -0.023108620196580887, 0.004342367872595787, -0.0063789417035877705, 0.01285290252417326, 0.04862438887357712, -0.045102350413799286, 0.029341865330934525, 0.010908180847764015, -0.011706340126693249, -0.013366005383431911, 0.01918116770684719, 0.014987662434577942, -0.012960591353476048, 0.05341334640979767, 0.04196038842201233, 0.0018417848041281104, 0.008653063327074051, 0.002826815005391836, -0.04289790987968445, 0.008773420937359333, 0.06375141441822052, -0.020359402522444725, -0.004370873793959618, 0.045431748032569885, -0.05265319347381592, -0.02538907527923584, 0.013137959875166416, -0.01935853622853756, -0.007715542335063219, 0.013644727878272533, -0.04756017401814461, -0.038159627467393875, -0.02974727936089039, 0.018775753676891327, -0.03651263192296028, -0.025819828733801842, 0.043556708842515945, -0.010205039754509926, -0.021144893020391464, -0.015215708874166012, -0.011706340126693249, 0.02476828545331955, 0.007246782071888447, 0.006537307053804398, 0.003026355057954788, -0.0344095453619957, -0.006410615053027868, -0.009330864995718002, -0.05049942806363106, 0.058734409511089325, 0.030558109283447266, -0.03742481395602226, 0.0005396287306211889, -0.019003799185156822, 0.00023952705669216812, -0.03238247334957123, -0.01044575497508049, -0.027010733261704445, -0.01951056718826294, -0.008760751225054264, -0.07464691996574402, 0.013353336602449417, 0.010749815963208675, -0.0017340966733172536, -0.008938119746744633, 4.523300231085159e-05, 0.06603186577558517, 0.020802825689315796, -0.03838767483830452, -0.030482092872262, 0.0179649256169796, -0.0002929752226918936, 0.017597518861293793, 0.02198106050491333, 0.00711375568062067, -0.026655996218323708, -0.010439420118927956, 0.016989396885037422, -0.012016735970973969, -0.06197772175073624, -0.016951389610767365, 0.039958655834198, -0.04923250898718834, 0.018991129472851753, -0.03608188033103943, 0.0067780218087136745, -0.025275053456425667, -0.012707207351922989, -0.006008367985486984, 0.019903311505913734, -0.0012083249166607857, -0.016938719898462296, 0.01440487988293171, -0.010794158093631268, 0.020182034000754356, -0.011085549369454384, -0.011338933371007442, 0.0256931371986866, 0.022183768451213837, 0.0424671545624733, -0.04892844706773758, -0.02119557000696659, 0.03514435887336731, 0.029291188344359398, 0.0011212241370230913, -0.0032005563843995333, -0.014911647886037827, -0.008013268932700157, 0.013315328396856785, 0.007607854437083006, -0.0007704456802457571, 0.00338584347628057, -0.036309923976659775, -0.007728211581707001, 0.005792991258203983, -0.009584248997271061, 0.005590284243226051, -0.02323531173169613, 0.012637526728212833, -0.008089283481240273, 0.010325397364795208, -0.027314793318510056, -0.017230110242962837, -0.02103087119758129, -0.0017008400755003095, -0.018319662660360336, -0.020220043137669563, 0.015063677914440632, -0.010534439235925674, 0.03078615479171276, -0.02723877876996994, 0.03111555427312851, 0.02708674781024456, -0.05883576348423958, 0.011402279138565063, -0.009869306348264217, -0.004697105847299099, -0.022221775725483894, 0.021410947665572166, -0.02754283882677555, -0.02446422353386879, -0.008855770342051983, 0.003993965219706297, -0.03704473748803139, -0.03605654090642929, -0.024869637563824654, 0.008583382703363895, 0.003914782777428627, 0.02227245271205902, -0.0007708416087552905, 0.018801091238856316, -0.006182569079101086, 0.010749815963208675, 0.03696872293949127, -0.011978727765381336, -0.027796223759651184, -0.03220510482788086, 0.014176834374666214, -0.012289123609662056, 0.030279386788606644, 0.0019969826098531485, 0.03975594788789749, -0.014189503155648708, 0.018598385155200958, 0.011497298255562782, 0.014645594172179699, 0.00553010543808341, -0.04142828285694122, 0.053970787674188614, -0.01701473444700241, 0.007956257089972496, -0.0016469958936795592, -0.004117489792406559, 0.01052810437977314, -0.010876507498323917, -0.038463689386844635, -0.021258916705846786, 0.031647659838199615, 0.0059133488684892654, 0.029189836233854294, -0.002978845499455929, 0.017521502450108528, 0.0120040662586689, 0.0020191536750644445, 0.006537307053804398, 0.02087884023785591, 0.01933319866657257, 0.012504499405622482, -0.03762752190232277, -0.015418415889143944, -0.02693471871316433, 0.004294858779758215, 0.0026652829255908728, -0.0027286289259791374, -0.0019874805584549904, -0.0036677331663668156, -0.036436617374420166, -0.001022245967760682, -0.03980662301182747, 0.008716409094631672, -0.020232710987329483, 0.006429618690162897, 0.02413482405245304, -0.011852036230266094, 0.03762752190232277, -0.01022404432296753, 0.04117489978671074, -0.01766086369752884, -0.0492071695625782, -0.0057328129187226295, 0.01176968589425087, -0.0074621583335101604, 0.008127291686832905, -0.04071880504488945, -0.046217240393161774, 0.010794158093631268, 0.052399810403585434, -0.0043645394034683704, 0.007303793448954821, -0.000326627807226032, 0.000927227025385946, -0.011864705011248589, -0.017762217670679092, 0.011826697736978531, -0.004887143615633249, 0.0039844634011387825, 0.001989064272493124, 0.005162698682397604, 0.0020017335191369057, 0.0007276871474459767, -0.01539307739585638, 0.02227245271205902, -0.00904580857604742, -0.008786089718341827, 0.02570580504834652, 0.013505366630852222, -0.00959691870957613, 0.020802825689315796, -0.007487496826797724, 0.018813760951161385, 0.010965191759169102, 0.009242180734872818, -0.04783889651298523, -0.041554972529411316, 0.014265518635511398, -0.058278318494558334, -0.0063155959360301495, -0.02647862583398819, -0.006524637807160616, 0.00753817381337285, -0.011256583966314793, -0.006702006328850985, -0.010889177210628986, 0.012947921641170979, 0.03623390942811966, 0.02352670393884182, -0.006207907572388649, 0.0093625383451581, -0.03960391879081726, 0.04074414446949959, 0.03354803845286369, -7.428308163071051e-05, -0.014886309392750263, -0.02660531923174858, 0.047129422426223755, 0.014987662434577942, 0.01843368448317051, 0.0036012199707329273, 0.02802426926791668, 0.019067145884037018, 0.03838767483830452, -0.04353136941790581, 0.04738280549645424, -0.011300926096737385, -0.020524103194475174, -0.015735145658254623, -0.029443219304084778, -0.012232111766934395, 0.010382409207522869, -0.03111555427312851, 0.036461956799030304, 0.03620857000350952, -0.012574180029332638, -0.005336900241672993, 0.010312728583812714, -0.016659997403621674, 0.007493831217288971, -0.007487496826797724, 0.03648729249835014, -0.034890975803136826, -0.008114621974527836, 0.005859504919499159, 0.0408201590180397, -0.06760285049676895, -0.020486095920205116, -0.026047874242067337, 0.018345000222325325, -0.046647991985082626, -0.006752683315426111, 0.023894110694527626, 0.007842234335839748, -0.01890244521200657, 0.039223842322826385, 0.01593785360455513, -0.026529302820563316, -0.02432486228644848, -0.0027333798352628946, 0.002660531783476472, 0.0009414798696525395, 0.005583949852734804, -0.014341534115374088, 0.00020349901751615107, 0.014164164662361145, -0.012783221900463104, -0.020372072234749794, 0.02571847476065159, -0.023577380925416946, -0.031799688935279846, 0.015405746176838875, -0.019231844693422318, 0.03587917238473892, 0.011148895137012005, -0.014607586897909641, 0.021626323461532593, -0.012491830624639988, -0.00642328429967165, 0.03917316347360611, 0.02540174499154091, 0.021296923980116844, -0.0005511101917363703, 0.021600984036922455, -0.009001466445624828, -0.016964057460427284, -0.024236178025603294, 0.0066133220680058, -0.052247777581214905, -0.016583982855081558, -0.008329998701810837, 0.0010420416947454214, -0.03187570720911026, -0.0007561928359791636, -0.03554977476596832, -0.043582044541835785, 0.015697138383984566, -0.02355204150080681, 0.010699138976633549, -0.030760815367102623, 0.029189836233854294, 0.008482028730213642, -0.00859605148434639, 0.01393611915409565, 0.002039741026237607, -0.006575314328074455, 0.04576114937663078, 0.010471093468368053, 0.04013602435588837, -0.006499299313873053, -0.0334213487803936, -0.011167899705469608, 0.029493896290659904, 0.028531037271022797, -0.02431219443678856, -0.01824364624917507, -0.00238022580742836, 0.009299192577600479, 0.007582515943795443, 0.01748349517583847, 0.02307061292231083, 0.013289989903569221, 0.002972510876134038, 0.022234445437788963, -0.017065411433577538, -0.016330597922205925, -0.001642244984395802, -0.004345535300672054, -0.003952790051698685, -0.023146627470850945, -0.003496699035167694, -0.0006734471535310149, -0.011471959762275219, 0.020207373425364494, -0.029595250263810158, -0.044646259397268295, -0.012808560393750668, -0.01206107810139656, -0.04026271402835846, 0.024730276316404343, -0.019003799185156822, -0.01546909287571907, 0.03202773630619049, 0.038615718483924866, -0.07191037386655807, -0.004880809225142002, 0.021575646474957466, -0.004111155401915312, -0.07175834476947784, 0.03250916674733162, 0.012795891612768173, 0.030608786270022392, 0.007500166073441505, 0.008608721196651459, 0.0443168580532074, 0.029063142836093903, -0.05057544261217117, -0.011681001633405685, 0.009153496474027634, 0.03463759273290634, -0.007075747940689325, -0.022931251674890518, -0.018357669934630394, 0.013898111879825592, 0.005245048552751541, -0.027036070823669434, 0.019067145884037018, 0.0012867156183347106, 0.029139159247279167, 0.004383543040603399, 0.013606720604002476, 0.027466824278235435, 0.029671264812350273, -0.010844835080206394, 0.01844635419547558, -0.01902913674712181, -0.019295191392302513, -0.012795891612768173, -0.01500033214688301, -0.031064877286553383, 0.019269851967692375, -0.010889177210628986, -0.018015600740909576, 0.004516569431871176, -0.008773420937359333, 0.040642790496349335, 0.012890910729765892, 0.026275919750332832, 0.0037342465948313475, -0.07880242168903351, -0.009691937826573849, 0.0002424963895464316, -0.0006350436015054584, 0.045406412333250046, -0.044519565999507904, 0.004092151299118996, 0.013239312916994095, -0.01401213463395834, -0.02198106050491333, 0.026402611285448074, 0.0002288374089403078, 0.020650794729590416, 0.008976127952337265, 0.007772553712129593, 0.013315328396856785, 0.02152496948838234, 0.0007843025960028172, -0.027669532224535942, 0.03169833868741989, -0.010857503861188889, -0.014240180142223835, 0.0005119148408994079, -0.010794158093631268, -0.004982162732630968, -0.012966925278306007, 0.020524103194475174, -0.012276453897356987, -0.03580315783619881, -0.007550843060016632, -0.008425017818808556, -0.02617456577718258, 0.007816895842552185, -0.0010642127599567175, -0.011465625837445259, -0.011490963399410248, 0.01407548040151596, -0.005824664607644081, 0.01640661247074604, -0.0008088491740636528, -0.013277321122586727, 0.03081149235367775, 0.02340001054108143, 0.02989931032061577, -0.010844835080206394, 0.05696072056889534, -0.0064011127687990665, -0.010800492018461227, -0.024552907794713974, 0.011300926096737385, 0.010008667595684528, -0.0194852277636528, -0.0016359103610739112, 0.008634059689939022, 0.006860371679067612, 0.019143160432577133, -0.015304393135011196, 0.014341534115374088, -0.020992863923311234, 0.0349416509270668, -0.030279386788606644, -0.04799092561006546, 0.016305260360240936, -0.0018306992715224624, 0.025921182706952095, -0.0035062008537352085, -0.005412915255874395, -0.04122557491064072, 0.019928650930523872, -0.028277652338147163, -0.01208008173853159, -0.026402611285448074, 0.00997699424624443, 0.03663932532072067, -0.009698271751403809, -0.009824964217841625, -0.020853502675890923, 0.006093884818255901, 0.031799688935279846, -0.0039242845959961414, -0.006606987677514553, 0.012124423868954182, 0.001971644116565585, 0.025794489309191704, -0.014797625131905079, -0.006198405753821135, 0.012751549482345581, 0.010186036117374897, 0.0026462790556252003, -0.05042341351509094, -0.012447488494217396, -0.019409213215112686, -0.0013160130474716425, -0.009254850447177887, 0.04877641797065735, 0.010876507498323917, 0.014202172867953777, -0.011402279138565063, 0.013834766112267971, 0.012662865221500397, -0.02011868916451931, -0.034460220485925674, 0.03235713392496109, 0.0283029917627573, 0.0010776737472042441, -0.04672400653362274, 0.02166433073580265, -0.013986796140670776, 0.025667797774076462, 0.0007059119525365531, -0.006321930326521397, 0.009115489199757576, -0.035524435341358185, -0.03154630586504936, 0.015671798959374428, 0.011674666777253151, -0.02587050572037697, 0.017926916480064392, -0.002871157368645072, 0.008944454602897167, 0.022031737491488457, 0.0013603552943095565, 0.002418233547359705, -0.002269370248541236, 0.03952790051698685, -0.009704606607556343, -0.038286320865154266, 0.04685069993138313, -0.010984196327626705, 0.009349869564175606, 0.007880241610109806, -0.0055332728661596775, -0.029367204755544662, -0.016583982855081558, 0.03174901381134987, 0.0017293457640334964, 0.016469959169626236, -0.026098551228642464, -0.007379808463156223, 0.0278722383081913, -0.004228345118463039, 0.02056211046874523, -0.03902113437652588, 0.013277321122586727, 0.012086416594684124, 0.030456755310297012, 0.002031822921708226, 0.016343267634510994, 0.04938453808426857, -0.006549976300448179, -0.018192971125245094, 0.011117222718894482, -0.016824696213006973, -0.01749616488814354, 0.02956991083920002, -0.006923717446625233, 0.03415616229176521, 0.047458820044994354, -0.01525371614843607, 0.03387743979692459, 0.014658263884484768, -0.02247515879571438, -0.02274121344089508, -0.008646728470921516, 0.05513635650277138, -0.02817630022764206, 0.00086625647963956, -0.042619187384843826, -0.0019542239606380463, -0.02878442034125328, -0.0013682735152542591, 0.03344668820500374, -0.009166166186332703, -0.030127355828881264, -0.02630125731229782, 0.02571847476065159, -0.0325598418712616, -0.02152496948838234, 0.009242180734872818, 0.018535038456320763, -0.008881108835339546, -0.005802493542432785, 0.01981462724506855, -0.03648729249835014, 0.017103418707847595, 0.020359402522444725, 0.027137424796819687, 0.0520450696349144, 0.005678968504071236, 0.002689037472009659, 0.002096752403303981, 0.012916249223053455, 0.01980195939540863, 0.04647062346339226, 0.005859504919499159, -0.0007031405693851411, -0.0049536568112671375, -0.00033533788518980145, -0.04269520193338394, 0.038793087005615234, -0.014442887157201767, -0.01901646889746189, 0.013074614107608795, 0.039857301861047745, -0.027897577732801437, 0.004880809225142002, 0.026250580325722694, 0.013112621381878853, 0.022956589236855507, -0.025617120787501335, 0.013568712398409843, -0.006689337082207203, 0.023032603785395622, -0.005767653230577707, 0.039705269038677216, -0.011719009838998318, 0.020815495401620865, -0.013366005383431911, -0.03501766547560692, 0.013872773386538029, 0.0019732278306037188, -0.043430015444755554, 0.007424151059240103, 0.01966259814798832, 0.00827932171523571, -0.022513167932629585, 0.005682135932147503, -0.010832165367901325, 0.014974993653595448, 0.003959124907851219, 0.015291723422706127, 0.006695671938359737, -0.03207841143012047, -0.011560644023120403, 0.0014403295936062932, -0.0103697394952178, -0.0033383341506123543, -0.021157562732696533, -0.002535423496738076, -0.015304393135011196, -0.013898111879825592, 0.025819828733801842, -0.02815096080303192, 0.011288256384432316, -0.029671264812350273, -0.033497363328933716, -0.008329998701810837, 0.024996330961585045, 0.01245382335036993, -0.056251246482133865, 0.00693005183711648, -0.02848036028444767, -0.04287257045507431, -0.007392477709800005, -0.001748349517583847, 0.027466824278235435, -0.009698271751403809, 0.017521502450108528, -0.016216576099395752, -0.017255449667572975, 0.0162799209356308, -0.02089150995016098, -0.010319062508642673, 0.046673331409692764, 0.009375207126140594, -0.009881975129246712, 0.010084683075547218, -0.019117821007966995, 0.04763618856668472, -0.020625457167625427, 0.018775753676891327, 0.007867572829127312, 0.03263585641980171, -0.01608988270163536, -0.02320997416973114, 0.02663065679371357, -0.014721609652042389, 0.011706340126693249, -0.0218290314078331, 0.004668599925935268, 0.023349333554506302, 0.020359402522444725, -0.003290824592113495, -0.012542507611215115, 0.004624257795512676, 0.014024803414940834, -0.02103087119758129, 0.037070076912641525, -0.014632925391197205, -0.006632325705140829, -0.008266652934253216, -0.03793158382177353, -0.00914082769304514, 0.015456423163414001, 0.02351403422653675, -0.004465892910957336, 0.022487828508019447, 0.007633192464709282, 0.037703536450862885, 0.01763552613556385, -0.03017803281545639, -0.01190904714167118, 0.011877374723553658, -0.027770884335041046, -0.009666599333286285, 0.07515369355678558, 0.006226911675184965, -0.00804494135081768, -0.002525921678170562, -0.0022424482740461826, -0.018484361469745636, 0.0017024236731231213, 0.03329465538263321, 0.02926585078239441, -0.04071880504488945, 0.02042274922132492, -0.028683068230748177, -0.0024435718078166246, -0.014772286638617516, 0.028581714257597923, 0.0032369804102927446, -0.020473426207900047, -0.01539307739585638, 0.005805660504847765, 0.0020539939869195223, 0.020346734672784805, 0.009482895955443382, 0.00047113586333580315, 0.0037469156086444855, -0.024198170751333237, -0.006467626430094242, -0.017888909205794334, 0.008488363586366177, -0.01106021087616682, 0.016900712624192238, 0.01981462724506855, -0.016609320417046547, 0.007056743837893009, -0.023716742172837257, 0.00401930371299386, -0.00615723105147481, -0.0009351453045383096, 0.004940987564623356, -0.0021949387155473232, -0.0040098014287650585, -0.0009121823823079467, 0.021740345284342766, -0.01340401265770197, 0.03306661173701286, 0.037374138832092285, -0.0032195602543652058, -0.002848986303433776, -0.0337507463991642, -0.05113288760185242, -0.0010064095258712769, 0.0031419615261256695, 0.00024685144308023155, 0.03253450244665146, -0.012897244654595852, -0.03486563637852669, -1.2372264791338239e-05, -0.0008678401354700327, -0.023121288046240807, 0.01245382335036993, -0.012574180029332638, -0.02028338797390461, -0.007139093708246946, 0.0036455621011555195, -0.019409213215112686, 0.019231844693422318, 0.005723310634493828, -0.01918116770684719, -0.009729945100843906, 0.011066545732319355, 0.040161363780498505, 0.0017103418940678239, 0.020486095920205116, -0.014620255678892136, -5.8347603044239804e-05, 0.042973924428224564, 0.015912514179944992, -0.012890910729765892, 0.006226911675184965, -0.004431052599102259, -0.02799892984330654, -0.04056677594780922, 0.045431748032569885, 0.0035885507240891457, 0.006892044562846422, 0.001502091996371746, -0.011807694099843502, 0.00677168695256114, 0.03266119584441185, -0.014708940871059895, -0.00351887010037899, -0.03390277922153473, 0.018674399703741074, -0.0014989246847108006, 0.0006639452185481787, 0.01369540486484766, 0.035220373421907425, -0.013910780660808086, 0.006448622327297926, -0.03851436451077461, 0.005251382943242788, 0.028049606829881668, -0.006435953080654144, 0.01638127490878105, 0.02474294602870941, 0.0002733775763772428, -0.004345535300672054, -0.03884376585483551, -0.026858702301979065, -0.036918047815561295, -0.022209106013178825, 0.015431084670126438, 0.006445455364882946, 0.024185501039028168, 0.030304724350571632, -0.0030976191628724337, -0.03549909591674805, 0.005476261489093304, -0.004421550780534744, -0.03205307573080063, -0.047002729028463364, 0.02706141024827957, 0.003005767473950982, 0.0012582098133862019, 0.020346734672784805, 0.02754283882677555, 0.020308727398514748, 0.04066812992095947, 0.03286390379071236, 0.007329131942242384, 0.01951056718826294, -0.02398279495537281, 0.020676134154200554, -0.007189770694822073, 0.020536772906780243, -0.005621957127004862, 0.0120040662586689, 0.005321063566952944, -0.008456690236926079, 0.007474827580153942, 0.0025385909248143435, -0.02137293852865696, 0.01129459124058485, -0.02524971403181553, -0.03344668820500374, 0.026250580325722694, -0.01595052145421505, -0.005881675984710455, 0.0028062276542186737, 0.013708073645830154, 0.023919448256492615, -0.03387743979692459, -0.00444372184574604, 0.04614122584462166, 0.0113769406452775, 0.008260318078100681, -0.03975594788789749, 0.0007748007192276418, 0.009134492836892605, 0.005780322011560202, -0.039223842322826385, 0.009945321828126907, -0.014354202896356583, -0.020359402522444725, -0.0356004498898983, 0.029975324869155884, -0.006632325705140829, 0.01478495541960001, -0.004966326057910919, -0.00280464394018054, 0.021588316187262535, -0.026123888790607452, -0.026858702301979065, -0.052399810403585434, 0.011433952488005161, 0.003769086906686425, 0.017078081145882607, -0.00401930371299386, 0.027517501264810562, 0.01963725872337818, -0.007544508203864098, 0.012713541276752949, -0.005754983983933926, 0.008545375429093838, -0.006116055883467197, 0.017736878246068954, -0.01996665820479393, -0.02739080972969532, -0.020777486264705658, -0.04074414446949959, -0.03217976540327072, -0.047889575362205505, -0.013327998109161854, 0.005175367929041386, 0.005241881124675274, 0.018319662660360336, 0.021550308912992477, -0.023108620196580887, 0.0058119953610002995, -0.027618855237960815, 0.013758750632405281, -0.017762217670679092, -0.011674666777253151, 0.004123824182897806, 0.03788090497255325, 0.0018227810505777597, -0.011959724128246307, -0.008963458240032196, -0.048066943883895874, 0.04819363355636597, 0.006708341185003519, -0.008558044210076332, 0.04692671447992325, -0.01904180645942688, -0.024223508313298225, 0.01596319116652012, 0.02106887847185135, -0.02227245271205902, 0.03050743229687214, 0.019257182255387306, -0.004532406106591225, -0.00898879673331976, -0.034890975803136826, -0.0023089617025107145, -0.02446422353386879, -0.023501364514231682, 6.958161975489929e-05, 0.015127023681998253, -0.026579979807138443, -0.01393611915409565, -0.021448954939842224, 0.0037849233485758305, -0.00905214250087738, -0.0018417848041281104, -0.007677534595131874, -0.00769653869792819, -0.0032005563843995333, 0.004972660914063454, 0.0069807288236916065, 0.008621389977633953, -0.004203007090836763, -0.04750949889421463, 0.012884575873613358, -0.02599719725549221, -0.003290824592113495, -0.0058373333886265755, 0.02447689324617386, 0.012054743245244026, 0.04054143652319908, -0.024730276316404343, -0.02413482405245304, -0.032230444252491, 0.021892376244068146, 0.03577781841158867, 0.002559178275987506, 0.0013524370733648539, -0.0439874604344368, -0.0065056337043643, -0.005267219617962837, -0.007493831217288971, -0.0411495603621006, -0.05042341351509094, -0.021626323461532593, -0.023628056049346924, 0.02896178886294365, 0.04335400089621544, -0.020093349739909172, 0.017293456941843033, 0.005197538994252682, -0.0109968651086092, -0.027492161840200424, -0.011015868745744228, 0.03869173675775528, 0.023716742172837257, -0.006147729232907295, 0.004184002988040447, 0.038159627467393875, -0.009938986971974373, 0.020790155977010727, 0.025629790499806404, -0.03681669384241104, 0.006632325705140829, 0.005042341537773609, 0.009318196214735508, -0.05437620356678963, -0.011433952488005161, -0.01673601195216179, 0.029341865330934525, 0.03033006377518177, 0.015722475945949554, -0.026833364740014076, -0.015456423163414001, 0.0016232411144301295, -0.01655864343047142, 0.016989396885037422, -0.003822930855676532, 0.02508501522243023, 0.0014775453601032495, -0.009571580216288567, 0.003959124907851219, 0.0018592049600556493, 0.017306126654148102, 0.031166231259703636, -0.007740880828350782, -0.014987662434577942, 0.04287257045507431, -0.0024609919637441635, 0.017901578918099403, 0.04135226830840111, -0.011826697736978531, -0.035828497260808945, 0.02027071826159954, -0.006904713809490204, -0.013112621381878853, 0.015709808096289635, -0.014556909911334515, -0.022513167932629585, 0.038793087005615234, 0.02908848226070404, 0.004944154992699623, 0.009919983334839344, 0.023121288046240807, -0.009964325465261936, 0.015836499631404877, -0.0029345033690333366, -0.04641994833946228, 0.0033731742296367884, 0.012276453897356987, 0.013594050891697407, 0.017217442393302917, -0.03005134128034115, -0.02845502272248268, -0.03377608582377434, -0.002077748766168952, 0.012466492131352425, -0.031064877286553383, 0.02911381982266903, -0.018509700894355774, -2.9074823032715358e-05, 0.034916315227746964, -0.02246249094605446, -0.007031405810266733, -0.0004655930679291487, 0.0071200900711119175, 0.007050409447401762, 0.015051009133458138, -0.0009755283244885504, -0.027492161840200424, 0.0010689636692404747, 0.017825564369559288, 0.009501899592578411, -0.015456423163414001, -0.012523503974080086, 0.012700872495770454, -0.004706607665866613, -0.000787865836173296, -0.031799688935279846, 0.04317663237452507, -0.03065946325659752, 0.004826964810490608, 0.025325730443000793, -0.014189503155648708, -0.06243381276726723, -0.018851768225431442, 0.013898111879825592, -0.03035540133714676, 0.037222106009721756, 0.00753817381337285, 0.00022962923685554415, 0.024071479216217995, 0.0029535070061683655, -0.0019637260120362043, 0.005853170063346624, 0.008247648365795612, 0.01113622635602951, -0.025781821459531784, -0.028379006311297417, -0.019915981218218803, 0.008380675688385963, 0.017255449667572975, -0.022335799410939217, 0.01208008173853159, 0.009178834967315197, -0.019003799185156822, 0.01828165538609028, 0.032585181295871735, 0.009159831330180168, -0.007797892205417156, 0.012086416594684124, -0.001564646139740944]
Name: Bosco On Bleecker, Address: 169 Bleecker St, New York, NY 10012, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0002763, 40.7288482]}, Rating: 4.8, Reviews: ['This place is pretty small. The table we sat at was a high top and pretty uncomfortable. There wasn’t enough room on the table for our food.\n\nThe bartender was so nice though. After she saw I didn’t drink my drink she asked if I wanted to swap and I did! It didn’t like it at all. I got the color and co. Which looked gorgeous. But didn’t taste sweet and fruity like the description said. Maybe it was the egg whites I didn’t like but I thought the drink tasted like plastic. She made me a paper plane with no complaints and that was good.\n\nThe happy hour deals are pretty good, for $20 you can get two share plates or an entree and a share plate. The food was just okay though. The chicken sandwhich was pretty spicy and was covered in coleslaw or something. I liked the big pickle with it though. The chicken wings were too spicy too and kind of dry. The salad I had should have been bigger.\n\nIf you are in the area I recommend to try another place for food.', 'Great place to having fun with friend!\nThe drink was great. The food also taste delicious! And they also have happy hour everyday except sat!', 'Had an amazing time here for drinks on my 21st birthday! The bartender was wonderful and brought us a sparkler and a round of shots on the house. The ambiance is also 10/10. Beautiful interior decor, calm lighting, and lower music made the atmosphere very comfortable.', 'I’m a little cold but other than that; the food, music, services and vibes were immaculate! Rafael was so sweet and attentive. Definitely coming back for happy hour', 'First time here tonight, I love the vibe and seating here. My friends and I took a booth near the entrance and the music/ambiance volume is at a good level where you can carry regular volume conversation which was what we were looking for, something chill. The neon light is really cute in front. Had the chicken burrito which was yummy. The hurricane cocktail was a favorite. Young was our bartender and really appreciate their awesome service and great tasting drinks!'], Embedding: [-0.03005114570260048, -0.03493478149175644, -0.07157495617866516, -0.00055433448869735, 0.012590215541422367, -0.02555510215461254, 0.001430853153578937, 0.04539971053600311, -0.00102711352519691, 0.010271135717630386, -0.0309296827763319, -1.7322952771792188e-05, -0.04906889423727989, -0.010187157429754734, -0.012570835649967194, 0.014805938117206097, -0.010284055024385452, 0.0021446647588163614, -0.009521794505417347, 0.03514149412512779, 0.020232198759913445, 0.0364593006670475, -0.04185971990227699, 0.026084808632731438, -0.008979168720543385, 0.034676387906074524, -0.009618692100048065, -0.04069695249199867, -0.02158876322209835, -0.013759445399045944, 0.05462435260415077, -0.0032929000444710255, 0.005481168627738953, -0.07803478837013245, -0.037363678216934204, -0.010775002650916576, 0.05103268474340439, 0.007157495710998774, 0.03622674569487572, -0.01328141801059246, 0.05353910103440285, 0.03826805576682091, 0.05090348795056343, -0.04736350104212761, -0.015994548797607422, 0.020077163353562355, -0.006101312581449747, 0.07612267881631851, -0.0003151187556795776, -0.021717960014939308, -0.06883598864078522, 0.02803567796945572, -0.024934956803917885, 0.039404984563589096, -0.00952825415879488, -0.02485743910074234, -0.0017796840984374285, -0.022338105365633965, 0.05741500109434128, 0.0026436869520694017, 0.05855192989110947, 0.004134293645620346, 0.03950834274291992, 0.00717687513679266, -0.05025750398635864, -0.007616143673658371, -0.008171689696609974, 0.008042492903769016, 0.07116152346134186, -0.019986724480986595, 0.046924229711294174, 0.07917171716690063, -0.029611876234412193, -0.06754402071237564, -0.010497229173779488, -0.022363943979144096, -0.0009495955309830606, -0.08263418823480606, 0.005129107739776373, -0.011343467980623245, -0.06268622726202011, -0.04266073927283287, -0.02754472941160202, 0.08082544058561325, 0.0035399887710809708, -0.08129054307937622, -0.08237579464912415, 0.0019395650597289205, 0.00034721606061793864, 0.05762171372771263, 0.026614515110850334, -0.0006233739550225437, 0.0069959997199475765, -0.028604142367839813, 0.03059377148747444, -0.04992159456014633, -0.04684671387076378, -0.006162681151181459, -0.030826326459646225, 0.005603905767202377, 0.05927543342113495, -0.028655821457505226, -0.031834058463573456, -0.0508776493370533, -0.0008107090834528208, -0.02116241492331028, 0.0014574999222531915, 0.023203721269965172, -0.029017573222517967, -0.027596408501267433, -0.022312264889478683, -0.03640762344002724, -0.015271046198904514, 0.02550342306494713, -0.044262778013944626, 0.03255756199359894, 0.038371410220861435, -0.049146413803100586, -0.031007200479507446, 0.023810947313904762, -0.014276232570409775, -0.015800753608345985, 0.010523068718612194, -0.03392704576253891, 0.00717687513679266, -0.05762171372771263, 0.010755622759461403, 0.008113550953567028, -0.059378791600465775, -0.020115921273827553, 0.004050315823405981, -0.0002902887645177543, -0.04278993606567383, -0.03545156493782997, -0.011033395305275917, -0.019767090678215027, -0.025361306965351105, 0.003720864187926054, -0.010019201785326004, -0.04160132631659508, 0.029482681304216385, 0.023009927943348885, 0.04421110078692436, -0.03666601702570915, -0.014741340652108192, -0.012790470384061337, -0.015645716339349747, 0.016563013195991516, -0.022493140771985054, 0.05090348795056343, -0.007997274398803711, 0.024379411712288857, -0.03599419444799423, -0.08578658849000931, -0.008953329175710678, -0.015542359091341496, 0.017260674387216568, 0.022971168160438538, -0.0307229682803154, 0.0451413169503212, -0.02201511338353157, 0.004121373873203993, -0.05108436197042465, -0.03697608783841133, -0.010678105056285858, 0.00011415737390052527, -0.056019674986600876, 0.03811301663517952, -0.04524467512965202, 0.024534447118639946, 0.017260674387216568, -0.01596870832145214, 0.05134275555610657, 0.035864997655153275, 0.016692209988832474, 0.00952825415879488, 0.07705289125442505, -0.023475036025047302, 0.008959788829088211, 0.0014574999222531915, -0.00613038195297122, 0.027441373094916344, 0.0412912555038929, 0.013397694565355778, -0.05134275555610657, 0.006937861442565918, -0.03488310053944588, -0.008417163044214249, 0.011692298576235771, 0.03191157802939415, 0.005671733990311623, 0.027131300419569016, -0.027622248977422714, -0.033358581364154816, -0.02021927945315838, -0.048293717205524445, 0.028810856863856316, -0.0033752629533410072, -0.02821655385196209, 0.04364263638854027, 0.003100720001384616, -0.01044555101543665, 0.037208642810583115, 0.022092631086707115, 0.05095516890287399, -0.019276143983006477, -0.006879722699522972, 0.04010264575481415, 0.015180609188973904, -0.036175068467855453, 0.06263454258441925, 0.0016488725086674094, 0.009838326834142208, -0.019922126084566116, 0.0003609432023949921, -0.0038662103470414877, -0.03728615865111351, 0.04421110078692436, 0.02492203749716282, 0.032480042427778244, -0.04834539443254471, 0.008572199381887913, 0.043255046010017395, -0.042764097452163696, 0.002235102467238903, 0.015671556815505028, -0.023307079449295998, -0.033849526196718216, 0.015658635646104813, -0.000712600362021476, -0.023565473034977913, 0.021291611716151237, -0.00804895255714655, 0.026214005425572395, -0.016291700303554535, 0.014547545462846756, -0.020632708445191383, -0.029172608628869057, -0.003801611950621009, 0.0194182600826025, -0.022893650457262993, -0.049973271787166595, 0.027803122997283936, 0.011576022021472454, 0.039404984563589096, -0.025361306965351105, -0.004131063353270292, -0.024663643911480904, 0.03142062947154045, 0.021369129419326782, 0.02250606007874012, -0.05829353630542755, 0.015865352004766464, -0.0023691440001130104, 0.0012039514258503914, -0.03286763280630112, -0.005616825073957443, -0.013720686547458172, 0.029508519917726517, -0.04051607474684715, 0.004357157740741968, 0.008249207399785519, -0.013759445399045944, -0.014327910728752613, -0.031033040955662727, -0.03222164884209633, 0.029482681304216385, 0.06015396863222122, -0.02940516173839569, 0.03059377148747444, -0.04051607474684715, -0.026614515110850334, 0.02785480208694935, 0.049120575189590454, -0.0023416897747665644, -0.043565116822719574, -0.014302071183919907, -0.0017215455882251263, 0.02821655385196209, 0.024146858602762222, 0.018423445522785187, -0.05390085279941559, -0.012667733244597912, -0.019689572975039482, 0.035374049097299576, 0.03191157802939415, 0.05762171372771263, 0.0023336149752140045, 0.039404984563589096, -0.015064331702888012, -0.019715411588549614, -0.012370580807328224, 0.0005159791908226907, 0.0011207811767235398, -0.0009810872143134475, 0.008100631646811962, 0.042893294245004654, -0.0022948558907955885, 0.011517883278429508, -0.02604604884982109, 0.022040951997041702, 0.002945684129372239, 0.00939259771257639, -0.009631611406803131, 0.02589101344347, 0.04821619763970375, -0.008145850151777267, 0.02266109548509121, 0.006372625939548016, 0.01930198259651661, -0.042092274874448776, 0.031033040955662727, 0.05160114914178848, -0.01939241960644722, -0.012906747870147228, 0.013862802647054195, 0.05271224305033684, 0.03054209239780903, -0.04353927820920944, -0.014637982472777367, -0.01749322935938835, -0.04351343959569931, 0.049301449209451675, 0.04185971990227699, 0.010174238122999668, -0.032635077834129333, 0.09415853768587112, -0.009424896910786629, 0.025878094136714935, -0.01027759537100792, 0.03857812657952309, -0.07183334976434708, 0.027777284383773804, 0.06532184034585953, -0.035322368144989014, -0.05539953336119652, -0.031859900802373886, -0.02617524564266205, 0.030955523252487183, 0.04581313952803612, 0.06129090115427971, -0.03224748745560646, -0.05607135593891144, 0.021059056743979454, 0.029172608628869057, -0.03240252658724785, 0.03950834274291992, 0.021214094012975693, 0.014043678529560566, -0.012028209865093231, -0.05477938801050186, 0.00994168408215046, -0.03607171028852463, 0.010251755826175213, 0.008262126706540585, 0.03640762344002724, -0.010729783214628696, -0.0010707174660637975, -0.019108187407255173, -0.0026469167787581682, 0.03152398765087128, 0.02656283602118492, 0.019857527688145638, -0.024508608505129814, 0.02299700677394867, 0.01755782775580883, 0.02094278112053871, 0.01088481955230236, -0.02073606662452221, -0.0187205970287323, 0.010607047006487846, -0.005022520665079355, -0.03459886834025383, 0.007467567455023527, -0.02583933435380459, 0.0072479331865906715, 0.023991821333765984, -0.001831362838856876, 0.021033218130469322, 0.013488132506608963, 0.012880908325314522, 0.028629982843995094, 0.005248614586889744, 0.020167600363492966, 0.021265771239995956, -0.061549294739961624, 0.01435375027358532, -0.033694490790367126, -0.015568198636174202, 0.006201440002769232, 0.01529688574373722, -0.04069695249199867, -0.07271188497543335, -0.03997344896197319, 0.0012071813689544797, -0.0035658280830830336, 0.017932498827576637, 0.0494048073887825, -0.024263134226202965, -0.014560464769601822, 0.044443655759096146, -0.05576128512620926, -0.021382048726081848, -0.029095090925693512, -0.011136753484606743, 0.02571013756096363, 0.0008147464832291007, -0.008694935590028763, -0.010594126768410206, -0.0031992325093597174, 0.005452099721878767, -0.05493442341685295, 0.023823866620659828, 0.042893294245004654, -0.004195661749690771, -0.026666192337870598, -0.000806267955340445, -0.014844697900116444, -0.0035367589443922043, 0.038035500794649124, -0.007060598116368055, -0.04589065909385681, 0.013565650209784508, -0.03059377148747444, -0.01811337284743786, 0.0105489082634449, -0.004360387567430735, 0.0061271521262824535, -0.049663200974464417, -0.00495469244197011, -0.014444188214838505, -0.05364245921373367, -0.01813921332359314, 0.021123655140399933, -0.02073606662452221, 0.009754348546266556, -0.022028032690286636, -0.004573562182486057, 0.013462292961776257, -0.013733605854213238, -0.020619789138436317, -0.020115921273827553, 0.02339751645922661, -0.011324088089168072, -0.035193175077438354, 0.042919132858514786, 0.051497794687747955, 0.028139034286141396, -0.002992518013343215, 0.011640620417892933, 0.0187205970287323, -0.05173034593462944, -0.01746739074587822, -7.652127351320814e-06, -0.015038492158055305, 0.04449533298611641, 0.03227332979440689, -0.020593948662281036, 0.021394968032836914, -0.0022189528681337833, -0.011827955022454262, -0.002822947222739458, -0.017945418134331703, -0.00239013833925128, 0.0020300026517361403, -0.010930038057267666, -0.05023166537284851, 0.023035766556859016, 0.046975910663604736, -0.072918601334095, 0.010923578403890133, -0.026924585923552513, 0.05974053964018822, -0.0034334014635533094, -0.013733605854213238, -0.03353945538401604, 0.02250606007874012, 0.016692209988832474, 0.02241562306880951, -0.004134293645620346, -0.03405624255537987, 0.016472576186060905, -0.01585243083536625, 0.007700121495872736, -0.0057137226685881615, -0.08361608535051346, 0.034676387906074524, 0.0010529528371989727, -0.01648549549281597, 0.002394983312115073, -0.014637982472777367, 0.017997097223997116, -0.0032412214204669, -0.013126381672918797, -0.03289347141981125, -0.009780188091099262, -0.008740155026316643, -0.03372032940387726, 0.021239932626485825, 0.0013654473004862666, 0.011110913939774036, 0.0026711411774158478, 0.016627611592411995, 0.02293240837752819, -0.013643168844282627, 0.04092950373888016, -0.034857261925935745, -0.02228642627596855, 0.026640353724360466, 0.007125196512788534, -0.015826592221856117, -0.013927401043474674, 0.00255324924364686, 0.004725368227809668, 0.023216642439365387, 0.010387412272393703, -0.017854979261755943, 0.020955700427293777, -0.015387323684990406, 0.014147035777568817, 0.038423091173172, -0.012196165509521961, 0.01744155026972294, -0.022635256871581078, 0.017506148666143417, 0.012958426028490067, -0.0105489082634449, -0.004628470633178949, -0.01744155026972294, -0.042092274874448776, -0.01244163978844881, -0.035529084503650665, -0.004315168596804142, 0.021446647122502327, -0.023164963349699974, 0.015335644595324993, -0.014780099503695965, 0.009857705794274807, 0.02958603762090206, -0.05312567204236984, 0.015826592221856117, -0.013656088151037693, 0.002007393166422844, -0.032996829599142075, 0.01229306310415268, -0.009948143735527992, -0.026588674634695053, 0.04036103934049606, -0.008959788829088211, -0.011188431642949581, -0.004615550860762596, -0.009967523626983166, -0.010206537321209908, -0.0021931135561317205, -0.02391430363059044, 0.005678193643689156, 0.018371766433119774, -0.004673689603805542, 0.014508786611258984, 0.024844519793987274, -0.008804753422737122, -0.02958603762090206, -0.002787418197840452, 0.025309627875685692, 0.007357750553637743, 0.0355549231171608, 0.01652425341308117, 0.03175654262304306, -0.022273506969213486, 0.019224464893341064, 7.938529597595334e-05, 0.0007335948757827282, -0.012493317946791649, -0.04669167846441269, 0.02790648117661476, -0.010329273529350758, 0.028423268347978592, -0.018100453540682793, -0.002747044200077653, 0.021291611716151237, -0.02906925044953823, -0.03715696185827255, 0.029146768152713776, 0.02528378926217556, 0.05273808166384697, 0.031317271292209625, 0.014470026828348637, 0.02458612620830536, 0.03271259739995003, -0.0043345484882593155, 0.013126381672918797, 0.03795798122882843, 0.009231101721525192, 0.016317538917064667, 0.016588851809501648, -0.029637716710567474, -0.043410081416368484, -0.013643168844282627, -0.00477058719843626, -0.002375603886321187, -0.021239932626485825, 0.013707767240703106, -0.05036086216568947, -0.004567102529108524, -0.023139124736189842, 0.02454736828804016, -0.004066465422511101, -0.02953435853123665, 0.005678193643689156, -0.007506326772272587, -0.00899208802729845, 0.018643079325556755, 0.013397694565355778, -0.0008216100977733731, -0.04333256185054779, 3.7547782994806767e-05, -0.027157140895724297, -0.010820221155881882, 0.009147124364972115, -0.025425905361771584, -0.028965894132852554, 0.005022520665079355, -0.0002731298445723951, 0.011976531706750393, 0.023823866620659828, 0.01841052621603012, 0.0015632797731086612, -0.05488274618983269, -0.029766913503408432, 0.004156902898102999, 0.02788064256310463, 0.014108276925981045, 0.028604142367839813, 0.010658725164830685, -0.0033332740422338247, 0.0028164873365312815, 0.010510149411857128, -0.0020865262486040592, -0.037699587643146515, -0.0009972368134185672, 0.006149761378765106, 0.0029569887556135654, 0.010141938924789429, 0.024082260206341743, -0.02922428771853447, 0.02476700209081173, 0.0037337837275117636, -0.022880731150507927, -0.03348777815699577, -0.033358581364154816, 0.0042505706660449505, 0.006395235192030668, 0.017506148666143417, -0.017544908449053764, -0.0008825747645460069, 0.009567013941705227, -0.025878094136714935, 0.002495110733434558, -0.014896376058459282, 0.0026776010636240244, 0.028294071555137634, 0.038552287966012955, -0.008804753422737122, 0.019521616399288177, -0.01715731807053089, 0.02790648117661476, 0.005135567858815193, -0.015891190618276596, -0.035684119910001755, -0.039224110543727875, 0.04067111387848854, -0.009114825166761875, 0.05498610436916351, -0.027105461806058884, 0.039534181356430054, 0.023798026144504547, 0.012880908325314522, -0.008585118688642979, 0.001157925114966929, -0.007338371127843857, -0.017609506845474243, -0.003381722839549184, -0.014108276925981045, -0.03850060701370239, -0.004198892042040825, -0.03392704576253891, 0.009676830843091011, 0.012222005054354668, -0.016175422817468643, 0.007758260238915682, 0.011201350949704647, 0.012583755888044834, 0.049146413803100586, -0.0275705698877573, 0.024960797280073166, -0.003950188402086496, -0.0013331481022760272, -0.012719412334263325, 0.06134257838129997, -0.07736296951770782, 0.0011272409465163946, -0.007861617021262646, 0.04198891669511795, -0.006388775538653135, -0.023810947313904762, 0.021420808508992195, -0.002992518013343215, -0.04204059764742851, 0.012435179203748703, -0.009379678405821323, -0.031162237748503685, -0.008759533986449242, 0.003320354502648115, 0.03390120714902878, -0.0007348060607910156, 0.024237295612692833, -0.017247755080461502, 0.0018911162624135613, 0.02583933435380459, 0.017544908449053764, -0.026950426399707794, 0.01670512929558754, -0.0037047145888209343, -0.034650545567274094, 0.03041289560496807, -0.007629063446074724, 0.04134293645620346, -0.005552227143198252, -0.01740279234945774, -0.00596888642758131, 0.0059591964818537235, 0.005332592409104109, 0.013591489754617214, 0.02546466328203678, 0.009754348546266556, 0.015116010792553425, 0.017945418134331703, 0.002094601048156619, -0.024779921397566795, -0.02772560529410839, -0.018668919801712036, -0.015929950401186943, 0.0035206093452870846, -0.012990725226700306, 0.006530891638249159, -0.03777710720896721, 0.013501051813364029, -0.009244021959602833, -0.05036086216568947, 0.007700121495872736, -0.04785444587469101, 0.011550182476639748, 0.011827955022454262, 0.004454055335372686, -0.015891190618276596, 0.017687024548649788, 0.03356529399752617, -0.010923578403890133, -0.016020387411117554, 0.044753726571798325, 0.0275705698877573, 0.025477584451436996, -0.027338014915585518, -0.02525794878602028, -0.020167600363492966, 0.02241562306880951, 0.020361395552754402, -0.04565810412168503, -0.030981361865997314, 0.007364210207015276, 0.03025786019861698, -0.0021737338975071907, -0.007700121495872736, 0.021033218130469322, 0.019741252064704895, 0.00031209070584736764, -0.00021539507724810392, -0.020038403570652008, -0.014392509125173092, 0.0035561383701860905, 0.029120929539203644, -0.02751889079809189, -0.04320336505770683, 0.023074526339769363, 0.007622603792697191, -0.021110735833644867, 0.03105887956917286, -0.005888138432055712, -0.03444383293390274, -0.0008050567703321576, -0.011201350949704647, -0.03599419444799423, 0.04113622009754181, -0.023074526339769363, -0.009424896910786629, 0.016252940520644188, 0.009256941266357899, -0.05488274618983269, -0.005300293210893869, 0.033875368535518646, -0.02852662466466427, -0.05777675285935402, 0.015516520477831364, -0.002580703468993306, 0.018668919801712036, 0.004705988802015781, 0.0036045871675014496, 0.04909473657608032, 0.01636921800673008, -0.04617489129304886, -0.013074703514575958, -0.006970160640776157, -0.0010174238122999668, 0.001145813032053411, 0.002290010917931795, 0.022389782592654228, 0.04467621073126793, 0.005519927944988012, -0.01155664213001728, 0.030335377901792526, -0.015606957487761974, 0.010012742131948471, 0.021885916590690613, 0.0019734790548682213, 0.030826326459646225, 0.037182800471782684, -0.000455822009826079, 0.01972833089530468, -0.025658458471298218, -0.041420452296733856, -0.03901739418506622, 0.01912110671401024, -0.024198535829782486, -0.002625922439619899, -0.002260941779240966, 0.0025597091298550367, 0.024082260206341743, 0.011517883278429508, 0.04113622009754181, -0.01890147291123867, 0.054831068962812424, 0.009948143735527992, -0.05762171372771263, -0.025826415047049522, 0.0021737338975071907, -0.014922215603291988, 0.02644655853509903, -0.01764826476573944, 0.005229235161095858, 0.011188431642949581, 0.030128663405776024, -0.0480094812810421, 0.05477938801050186, -0.005532847251743078, 0.028940053656697273, -0.012028209865093231, 0.023009927943348885, 0.04622656852006912, 0.010600586421787739, -0.0092375623062253, -0.03444383293390274, 0.014922215603291988, 0.01010963972657919, -0.011743977665901184, -0.032480042427778244, -0.019444098696112633, 0.003578747855499387, -0.019767090678215027, 0.03222164884209633, -0.005852609407156706, -0.06749234348535538, -0.045425549149513245, -0.008107091300189495, 0.051291078329086304, 0.01519352849572897, 0.011233650147914886, -0.014366669580340385, -0.004848104901611805, 0.019379500299692154, -0.02152416482567787, 0.020710226148366928, 0.006957240868359804, 0.0028810857329517603, 0.014211634173989296, 0.022221827879548073, 0.013875722885131836, -0.009599312208592892, 0.0379321426153183, -3.535244832164608e-05, 0.0004150443128310144, -0.013643168844282627, -0.00426026014611125, 0.03346193954348564, -0.015619877725839615, -0.027596408501267433, 0.027441373094916344, 0.03193741664290428, -0.002306160517036915, -0.026394879445433617, 0.007977894507348537, -0.021847156807780266, 0.04421110078692436, -0.017674105241894722, -0.02671787142753601, 0.012906747870147228, 0.0015317880315706134, 0.014237472787499428, -0.031188076362013817, 0.010051500983536243, -0.01832008734345436, 0.03893987834453583, -0.045089639723300934, 0.03609754890203476, -0.009586392901837826, -0.020374314859509468, 0.0163046196103096, -0.026097727939486504, -0.02195051498711109, -0.009030846878886223, 0.0292501263320446, 0.03764791041612625, -0.008391323499381542, -0.0019395650597289205, 0.004392686765640974, -0.02394014410674572, 0.01841052621603012, -0.0005373774329200387, -0.012254304252564907, -0.009599312208592892, 0.0011878019431605935, 0.006556731183081865, -0.015684476122260094, 0.011472664773464203, -0.019444098696112633, 0.045942336320877075, -0.00903730746358633, 0.02589101344347, 0.005674963817000389, 0.011802115477621555, -0.03508981689810753, 0.007396509405225515, -0.005161406937986612, -0.016162503510713577, 0.0027163599152117968, 0.044753726571798325, 0.015451922081410885, 0.0017441550735384226, -0.03772542625665665, 0.015426082536578178, 0.020258037373423576, 0.04449533298611641, 0.009050226770341396, 0.005339052528142929, 0.006246658973395824, -0.024973716586828232, -0.03488310053944588, 0.015839511528611183, 0.006572880782186985, -0.016072066500782967, 0.006427534390240908, -0.028139034286141396, 0.029766913503408432, 0.024108098819851875, 0.00717687513679266, -0.008946869522333145, 0.001298426534049213, -0.003701484529301524, 0.017415711656212807, 0.0003324795688968152, 0.05462435260415077, -0.0024046730250120163, -0.003862980520352721, -0.0036530359648168087, 0.006815124303102493, -0.0031104099471122026, 0.0012830843916162848, 0.00821690820157528, -0.010490769520401955, 0.018552642315626144, -0.009050226770341396, -0.02378510683774948, 0.04216979444026947, 0.026485318318009377, 0.030852165073156357, -0.01576199382543564, 0.003279980504885316, -0.0010860594920814037, 0.0354774072766304, 0.0012192935682833195, 0.009276321157813072, 0.0011684224009513855, 0.014056597836315632, -0.008210448548197746, 0.039715055376291275, -0.022829052060842514, 0.011033395305275917, 0.01217032689601183, -0.014676742255687714, 0.015206447802484035, 0.03426295891404152, 0.018345927819609642, 0.020697306841611862, 0.002055841963738203, -0.012364121153950691, -0.0012079888256266713, -0.004957922268658876, 0.035322368144989014, -0.019314901903271675, 0.00939259771257639, -0.02839742787182331, -0.0029408391565084457, 0.009017927572131157, 0.021459566429257393, 0.004037396050989628, -0.005952736828476191, -0.027932319790124893, -0.034495510160923004, 0.02333291806280613, -0.04131709411740303, -0.03415960073471069, 0.015426082536578178, 0.031110558658838272, 0.006592260207980871, -0.0015770068857818842, 0.0003698254586197436, -0.05010246858000755, 0.027415534481406212, -0.02076190523803234, 0.0412137396633625, 0.04632992669939995, -0.006230509374290705, 0.014676742255687714, 0.018914392217993736, -0.004150443244725466, 0.013862802647054195, 0.05307399109005928, 0.024818681180477142, 0.013307257555425167, -0.03428879752755165, -0.014870536513626575, -0.04868130758404732, 0.011692298576235771, -0.005381041206419468, 0.016511334106326103, 0.009644531644880772, 0.018345927819609642, -0.03147231042385101, 0.00664070900529623, 0.016407977789640427, 0.024715323001146317, 0.01621418260037899, -0.03477974236011505, 0.026485318318009377, -0.011537263169884682, 0.017092719674110413, 0.016937684267759323, 0.011240110732614994, -0.01004504133015871, 0.015154769644141197, -0.010187157429754734, -0.021304531022906303, 0.013991999439895153, -0.022790292277932167, -0.038836520165205, -0.0051807863637804985, -0.001561664743348956, 0.008132930845022202, -0.006172371096909046, -0.011802115477621555, -0.010975257493555546, 0.022945329546928406, 0.01344937365502119, 0.010497229173779488, -0.012687113136053085, -0.007564465049654245, 0.0061271521262824535, 0.001774839241988957, -0.003885589772835374, 0.014314991421997547, 0.013746526092290878, -0.007706581614911556, -0.00890165101736784, -0.004011556506156921, 0.004101994447410107, -0.042273152619600296, 0.005933356937021017, -0.004967612214386463, -0.037880465388298035, -0.013733605854213238, 0.013901561498641968, -0.016808487474918365, -0.0008801523363217711, 0.017015201970934868, -0.002262556692585349, 0.001163577544502914, -0.015232287347316742, 0.005894598085433245, 0.03524485230445862, -0.0053778113797307014, 0.04286745563149452, -0.008817672729492188, -0.015154769644141197, 0.02684706822037697, -0.023345839232206345, -0.008029572665691376, 0.008837052620947361, 0.018668919801712036, -0.028836697340011597, -0.008921029977500439, 0.00870139617472887, 0.025723056867718697, 0.013003644533455372, 0.020141761749982834, -0.02989611029624939, 0.02589101344347, -0.01229306310415268, -0.02837158925831318, 0.00664070900529623, -0.015167688950896263, 0.002831022022292018, -0.005746021866798401, -0.01468966156244278, 0.012622514739632607, 0.02669203281402588, 0.011001096107065678, 0.0011143212905153632, 0.0024611966218799353, -0.010167778469622135, -0.0035916673950850964, 0.02134329080581665, 0.01887563429772854, 0.006162681151181459, -0.01279693003743887, -0.014650902710855007, 0.010523068718612194, -0.007092897314578295, 0.009980442933738232, -0.02149832621216774, 0.016162503510713577, -0.03857812657952309, 0.04064527153968811, 0.021059056743979454, -0.02790648117661476, 0.0014534625224769115, 0.022131389006972313, -0.02427605539560318, 0.0063306367956101894, 0.08092879503965378, 0.012234924361109734, 0.013836963102221489, 0.00969620980322361, -9.250683797290549e-05, 0.02030971646308899, -0.0067376065999269485, 0.018513882532715797, 0.02586517296731472, 0.009973983280360699, 0.010587667115032673, -0.02476700209081173, -0.027338014915585518, 0.013410614803433418, 0.07188502699136734, 0.010981717146933079, -0.014637982472777367, -0.002782573224976659, 0.02470240369439125, 0.008107091300189495, 0.01621418260037899, 0.02723465859889984, 0.013107002712786198, 0.00022992970480117947, -0.019095268100500107, -0.008333185687661171, -0.010090259835124016, -0.018940232694149017, 0.0043054791167378426, 0.03679521381855011, 0.025903932750225067, -0.004034166224300861, 0.025723056867718697, -0.035193175077438354, 0.009915844537317753, -0.0022076480090618134, -0.010691024363040924, -0.008081251755356789, -0.001991243800148368, 0.003885589772835374, -0.010264675132930279, 0.026743710041046143, -0.006763445679098368, 0.009928763844072819, 0.03682105243206024, 0.010006282478570938, -0.014366669580340385, -0.019276143983006477, -0.020361395552754402, -0.0031184847466647625, 0.02042599394917488, -0.01603330671787262, 0.014302071183919907, 0.012028209865093231, -0.019095268100500107, -0.004399146884679794, 0.0064727533608675, -0.026821229606866837, 0.007868077605962753, -0.013811124488711357, -0.0012087963987141848, 0.014702580869197845, 0.00949595496058464, 0.008559279143810272, 0.018190890550613403, 0.030490415170788765, 0.01993504725396633, 0.0074998666532337666, -0.004476664587855339, 0.02290656976401806, -0.011873174458742142, 0.005297063384205103, -0.03312602639198303, 0.012144487351179123, 0.021123655140399933, 0.011944232508540154, 0.01003212109208107, 0.024444010108709335, 0.017854979261755943, -0.02228642627596855, -0.03950834274291992, -0.000698873249348253, 0.01990920677781105, -0.012422259896993637, -0.030981361865997314, -0.007558005396276712, 0.008307346142828465, 0.028810856863856316, -0.029766913503408432, 0.010296974331140518, 0.00530675332993269, 0.04015432670712471, 0.003769312985241413, -0.02409517951309681, 0.01676972769200802, 0.02165336161851883, -0.02262233756482601, -0.007105817086994648, -0.014560464769601822, -0.0013614099007099867, 0.007409429177641869, -0.014986813999712467, 0.02293240837752819, -0.011324088089168072, 0.002525795018300414, -0.031188076362013817, -0.04666583612561226, -0.03408208116889, -0.051368597894907, -0.0179841760545969, 0.04746685549616814, 0.023061605170369148, 0.0055457670241594315, 0.03927578777074814, 0.009638071991503239, -0.011014016345143318, 0.004001867026090622, -0.03025786019861698, -0.005552227143198252, -0.021756719797849655, 0.021511245518922806, 0.012945506721735, 0.02262233756482601, -0.01468966156244278, 0.03144646808505058, 0.023836785927414894, 0.019947966560721397, 0.03297099098563194, 0.008591578342020512, 0.015542359091341496, -0.021795477718114853, 0.004767357371747494, -0.009444276802241802, 0.0069895400665700436, -0.0066600884310901165, -0.006046404130756855, -0.005804160609841347, 0.0021365899592638016, -0.01993504725396633, -0.027312176302075386, -0.01789373904466629, 0.008914570324122906, -0.012028209865093231, -0.03421127796173096, -0.001655332394875586, -0.03297099098563194, -0.0031830829102545977, 0.008126470260322094, 0.017183156684041023, 0.033513616770505905, -0.022338105365633965, -0.004999910946935415, 0.028294071555137634, 0.01908234879374504, 0.028423268347978592, -0.009082525968551636, 0.0020509972237050533, 0.005109728313982487, -0.015141849406063557, -0.01722191646695137, 0.002223797608166933, -0.02561970055103302, 0.0036013571079820395, -0.033358581364154816, 0.03090384416282177, 0.00648890295997262, 0.001926645403727889, -0.0036498059052973986, -0.017118558287620544, 0.024418171495199203, 0.00940551795065403, -0.0019783240277320147, -0.04126541689038277, 0.01343645341694355, 0.00461878115311265, 0.033978722989559174, -0.0010812146356329322, 0.03472806513309479, -0.004657540004700422, -0.0008074791985563934, -0.0043054791167378426, 0.006220819894224405, -0.003439861349761486, -0.00118699437007308, 0.009857705794274807, 0.004738288000226021, 0.026149407029151917, -0.022544819861650467, 0.003342963755130768, -0.048629626631736755, -0.0561230331659317, 0.009418437257409096, -0.01655009388923645, 0.024288974702358246, 0.0011207811767235398, 0.01230598334223032, -0.0031281744595617056, 0.009948143735527992, -0.02290656976401806, 0.005303523503243923, -0.030335377901792526, 0.01643381640315056, 0.029482681304216385, 0.03899155557155609, 0.005826769862323999, -0.0031814679969102144, -0.010458470322191715, -0.007913296110928059, 0.011860254220664501, 0.020813584327697754, -0.02058102935552597, 0.028991732746362686, -0.006036714650690556, -0.04434029757976532, 0.02232518419623375, 0.014508786611258984, -0.01853972300887108, 0.02873333916068077, 0.019870448857545853, -0.02577473595738411, -0.0010150013258680701, 0.007693661842495203, -0.03056793287396431, -0.020632708445191383, -0.0006116654840297997, 0.005597445648163557, 0.008727234788239002, -0.009302160702645779, -0.012118647806346416, -0.0069959997199475765, 0.028940053656697273, 0.004379766993224621, 0.00614653155207634, -0.015180609188973904, -0.025335466489195824, -0.007486946880817413, 0.04278993606567383, -0.006350016221404076, 0.003234761767089367, -0.004350698087364435, -0.018823955208063126, 0.033875368535518646, -0.03581331670284271, 0.004496044013649225, 0.012803389690816402, 0.031033040955662727, -0.014069517143070698, 0.006101312581449747, -0.010006282478570938, -0.014405428431928158, -0.035684119910001755, -0.013539811596274376, 0.043255046010017395, -0.028785018250346184, -0.005897827912122011, -0.03338441997766495, -0.006614869460463524, -0.021214094012975693, 0.02127869240939617, -0.034547191113233566, -0.08475301414728165, -0.009147124364972115, -0.0187205970287323, 0.01351397205144167, 0.028604142367839813, -0.012544997036457062, 0.012364121153950691, -0.0036756452172994614, -0.03826805576682091, -0.0021285151597112417, -0.011433904990553856, 0.0383455716073513, 0.010852520354092121, 0.006014104932546616, -0.016601772978901863, 0.021446647122502327, 0.005190476309508085, 0.023991821333765984, 0.028294071555137634, -0.026950426399707794, 0.011879634112119675, 0.03297099098563194, 0.022635256871581078, -0.03594251349568367, 0.003937268629670143, 0.0012830843916162848, 0.027105461806058884, 0.013003644533455372, -0.010826680809259415, -0.004660769831389189, 0.009657450951635838, -0.011795655824244022, -0.024237295612692833, 0.032996829599142075, 0.013158680871129036, 0.02824239246547222, 0.0016763268504291773, -0.001192646799609065, -0.00012859105481766164, 0.0009221412474289536, 0.029456840828061104, 0.016743889078497887, -0.0057912408374249935, -0.002327155089005828, 0.011511423625051975, -0.005355202127248049, -0.0031653183978050947, 0.04413358122110367, -0.009082525968551636, -0.006495362613350153, 0.04180804267525673, -0.023862624540925026, -0.012344742193818092, 0.006592260207980871, -0.015309805981814861, -0.0068345037288963795, 0.03123975545167923, 0.005513467825949192, -0.002081681275740266, 0.015064331702888012, -0.002336844801902771, 0.012015290558338165, 0.010477850213646889, -0.02085234224796295, -0.015955789014697075, 0.024314813315868378, 0.01317806076258421, 0.031653184443712234, -1.5329487723647617e-05, 0.018914392217993736, -0.03126559406518936, -0.04813867807388306, 0.028655821457505226, -0.01710563898086548, -0.006253119092434645, 0.005213085561990738, 0.0015196758322417736, 0.0033978724386543036, 0.040903665125370026, 0.002619462553411722, 0.006924941670149565, 0.03087800368666649, -0.0016779417637735605, -0.014883456751704216, -0.007622603792697191, 0.010322813875973225, -0.0031249444000422955, -0.0001474658929510042, 0.025994369760155678, -0.0024450470227748156, -0.0023772187996655703, -0.0027308946009725332, 0.015348564833402634, -0.016407977789640427, -0.017428630962967873, 0.009088985621929169, 0.02689874731004238, -0.03415960073471069, -0.018798116594552994, 0.01311346236616373, -0.001163577544502914, -0.027803122997283936, 0.0050354404374957085, -0.010833140462636948, -0.001944409916177392, 0.030154503881931305, -0.007448188029229641, -0.0013501051580533385, 0.022480221465229988, 0.013630248606204987, 0.009218182414770126, 0.0018798115197569132, -0.01715731807053089, -0.025206269696354866, -0.000612876727245748, -0.041420452296733856, -0.02555510215461254, -0.027622248977422714, -0.0011837645433843136, 0.009670371189713478, 0.020542271435260773, 0.02134329080581665, -0.008623877540230751, 0.03726032003760338, 0.03157566487789154, -0.02360423095524311, -0.022919489070773125, 0.019495777785778046, 0.0017699943855404854]
Name: Ways and Means, Address: 167 Bleecker St, New York, NY 10012, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.00011950000001, 40.72882320000001]}, Rating: 4.6, Reviews: ['What a gem! I stumbled on this place in the heart of the village amongst a sea of restaurants. They have an amazing brunch and great drink specials. I had the best Huevos Rancheros i ever had. The manager was very sweet and very inviting which is so refreshing these days. The bartender was very nice and professional and they  had this great jazz band playing as well. Kudos to the chef and team at Ways and Means. I definitely will be back for sure!', "Very quaint little spot in the Village. The food was delicious. No lie. Seriously the food is crazy good. I ordered the steak quesadilla and my wife ordered the Chicken Alfredo and a side of fries and some fried calamari. The steak quesadilla was full with great seasoned chunks of steak. It came with a side of guacamole,sour cream and salsa. OMG. I recommend 👌🏼. Had a taste of the chicken Alfredo. And it was out of this world. Fries were good. It's fries. The fried calamari was ok. But good. Can't knock them for that. Service was awesome. Very friendly. Coming back to try some more on the menu.", 'Went here to celebrate a birthday. 1st time visiting a live comedy show. Unfortunately, there was only myself, my bf and one other person for the show so they informed us that they were going to cancel. They offered us a partial refund or the opportunity to come back to another show. We explained that it was a special night and that we were really looking forward to this event. They then offered to do the show for us three and it was such an awesome experience. The comedians were great, we were so appreciative of them continuing the show and will definitely be back for more!', 'I don’t say this lightly - this might be the best all around menu in Manhattan. The burger is one of my favorites I’ve had in the city, and the cocktails are AMAZING! The bartenders are very fun and easy to talk to and all of the staff is welcoming and friendly. Amazing brunch, professional grade espresso machine for lattes, amazing drinks, AND they have comedy shows in the back every day. Perfect place to become a regular at.', 'Scumbags. They displayed the total on a handheld machine (no receipt) and hid the built-in gratuity. I assumed this was the case, but when I clicked, "No tip", the waiter asked if I was displeased with the service and let me know that I\'m not tipping. So, I assumed I was mistaken and tipped. I later realized I was right and was pressured into tipping on top of a built-in gratuity. I hope the $5.00 was worth this 1-star review and me never not coming back.\n\nEDIT: Since they had a hard time understanding, I dumbed my comment down for them.\n\nI recovered from the five bucks lol. I don\'t know if you can recover from being a scumbag though, so I\'ll just give you my best wishes.'], Embedding: [-0.04747849702835083, 0.007041426375508308, -0.07070644199848175, 0.011248751543462276, 0.004375325981527567, -0.02981649711728096, -0.04820893704891205, 0.024016816169023514, -0.0034750609192997217, -0.020423058420419693, 0.02972884476184845, -0.031116677448153496, -0.03403843194246292, -0.019604967907071114, 0.016537126153707504, 0.07175827026367188, 0.005967681761831045, -0.023563943803310394, -0.020130883902311325, 0.017063042148947716, 0.06801842898130417, 0.04686493054032326, -0.024791080504655838, 0.012651193886995316, -0.024528123438358307, 0.05136442929506302, -0.07795239239931107, -0.012943369336426258, 0.017895741388201714, 0.006475336849689484, -0.008363519795238972, -0.020233144983649254, -0.0041671511717140675, -0.03447669371962547, -0.036083657294511795, 0.010963880456984043, -0.014338506385684013, -0.001986792543902993, 0.03257755562663078, 0.006720033474266529, 0.027449876070022583, 0.029115276411175728, 0.07245948910713196, -0.03549930825829506, 0.0011038751108571887, 0.022497503086924553, -0.020598363131284714, 0.011599361896514893, -0.05186112970113754, -0.002317315898835659, -0.057149503380060196, 0.015529121272265911, -0.047420062124729156, 0.03766140714287758, -0.03424295410513878, -0.04838424175977707, 0.004207325167953968, -0.016434865072369576, 0.015368424355983734, 0.008801783435046673, 0.05811368301510811, -0.02711387537419796, 0.04151812195777893, -0.0066798594780266285, -0.031934767961502075, -0.010116572491824627, -0.006358466576784849, 0.04330039024353027, -0.005394287873059511, -0.024484295397996902, 0.007118122652173042, 0.01623034104704857, -0.012147190980613232, -0.012863020412623882, 0.01319171767681837, 0.01134370919317007, 0.02179628238081932, -0.010832401923835278, -0.0020306187216192484, -0.0631098821759224, -0.024542732164263725, -0.023125680163502693, -0.0230526365339756, 0.0594576895236969, 0.031291984021663666, -0.024761863052845, -0.11126038432121277, -0.018056437373161316, -0.024075251072645187, -0.005635332316160202, 0.00583620322868228, -0.005642636679112911, 0.00892595760524273, 0.0014389636926352978, 0.025360822677612305, -0.039151500910520554, -0.06778468936681747, 0.030210932716727257, -0.02026236243546009, -0.01703382469713688, 0.057529330253601074, -0.011592057533562183, 0.0005647201905958354, -0.047332409769296646, 0.06392797082662582, -0.0030276672914624214, 0.01865539699792862, 0.00403201999142766, -0.003286972874775529, -0.009561439044773579, -0.039502110332250595, -0.04668962582945824, -0.06386953592300415, 0.0003846214967779815, -0.028034226968884468, 0.06305144727230072, -0.013118674047291279, 0.03406764939427376, -0.061123088002204895, 0.02541925758123398, -0.0304446741938591, 0.01774965412914753, -0.011183012276887894, -0.03681409731507301, -0.0073555149137973785, -0.06439545005559921, 0.018859921023249626, 0.015105466358363628, -0.0019320097053423524, -0.08239345252513885, 0.055805496871471405, -0.011643189005553722, 0.004912198521196842, -0.03739844635128975, 0.0008208301733247936, 0.01630338653922081, -0.026193521916866302, -0.012621976435184479, -0.032489899545907974, -0.05267921835184097, 0.009356915950775146, 0.034184519201517105, 0.009992397390305996, -0.047420062124729156, -0.022994201630353928, -0.003484191372990608, -0.004948720335960388, 0.041751861572265625, -0.02720152772963047, -0.005386983510106802, 0.009174306876957417, 0.062116485089063644, -0.04893937334418297, -0.04116750881075859, -0.02144567295908928, -0.04110907390713692, -0.004915850702673197, 0.027318397536873817, -0.060947783291339874, 0.01890374720096588, -0.05025416240096092, 0.026865525171160698, -0.030912155285477638, 0.024177512153983116, -0.018041828647255898, 0.03570383042097092, -0.044001612812280655, -0.029582755640149117, -0.038421060889959335, -0.005722985137254, -0.019210530444979668, 0.01944427192211151, 0.06346049159765244, -0.020919756963849068, -0.03503182530403137, -0.03263599053025246, 0.04990355297923088, -0.04055394232273102, -0.0035718439612537622, -0.03108745999634266, 0.0060042040422558784, 0.052474696189165115, 0.020057838410139084, 0.03631740063428879, -0.042920563369989395, 0.028677012771368027, -0.023403247818350792, 0.004930459428578615, 0.011723536998033524, 0.042014818638563156, 0.03170102834701538, -0.002008705632761121, -0.01604042761027813, -0.03961898013949394, -0.01793956756591797, -0.033921562135219574, 0.030123280361294746, 0.020218536257743835, -0.027537528425455093, 0.05782150477170944, -0.001262745470739901, 0.021007409319281578, 0.056535933166742325, 0.02929058112204075, -0.0055148103274405, -0.02160636894404888, 0.03795358166098595, 0.004046628717333078, 0.035440873354673386, -0.031584158539772034, 0.04674806073307991, -0.00015567468653898686, -0.009269263595342636, 0.006296379491686821, -0.027347614988684654, 0.015251554548740387, -0.02109506167471409, 0.04043707251548767, -0.01333780586719513, 0.017764262855052948, -0.009050131775438786, 0.047157105058431625, -0.011767363175749779, -0.0199117511510849, 0.029071450233459473, 0.034272171556949615, -0.006519163027405739, 0.020759060978889465, -0.0016946172108873725, 0.015835905447602272, 0.0009313090122304857, 0.030152497813105583, -0.016376430168747902, 0.005668202415108681, -0.01566060073673725, 0.017691219225525856, -0.04619292542338371, -0.006687163840979338, -0.03237302973866463, 0.03403843194246292, 0.05475366488099098, -0.013900243677198887, 0.05127677693963051, -0.007129079196602106, 0.04414770007133484, -0.009349611587822437, 0.008180910721421242, 0.002036097226664424, 0.007220383733510971, 0.012015712447464466, 0.04072924703359604, -0.01089814119040966, 0.0367264449596405, -0.026368826627731323, -0.03459356352686882, -0.010379530489444733, 0.00837812852114439, 0.004028367809951305, 0.06451231986284256, -0.025872129946947098, -0.014637986198067665, 0.00797638762742281, -0.01899139955639839, -0.0010125702247023582, -0.04195638373494148, -0.006541076116263866, 0.025258561596274376, 0.01792495884001255, 0.014827900566160679, 0.04704023525118828, -0.06369423121213913, 0.029129885137081146, 0.022760462015867233, 0.04262838512659073, 0.02883770875632763, -0.04315430298447609, -0.017691219225525856, 0.00693916529417038, -0.041488904505968094, 0.02163558639585972, -0.004364369437098503, -0.0708233118057251, -0.001972183817997575, 0.014250854030251503, 0.011928059160709381, 0.002280794084072113, 0.026792481541633606, 0.003100711153820157, 0.03953132778406143, -0.004693066701292992, -0.02350550889968872, 0.033921562135219574, 0.034914955496788025, -0.027435267344117165, 0.017866523936390877, -0.018144089728593826, 0.05422775074839592, -0.009590656496584415, 0.041839513927698135, 0.015295380726456642, 0.005934812128543854, -0.00607724767178297, -0.03973584994673729, 0.020481493324041367, 0.011592057533562183, 0.04984511807560921, -0.02189854346215725, 0.03459356352686882, -0.009897440671920776, 0.020744452252984047, -0.04368021711707115, 0.00756734237074852, -0.004919502884149551, -0.006402292754501104, -0.0333079919219017, 0.015280772000551224, 0.04794597998261452, 0.02899840660393238, -0.013980591669678688, -0.028530925512313843, 0.018947573378682137, -0.04943607375025749, -0.03339564427733421, 0.03190555050969124, 0.008684912696480751, -0.030152497813105583, 0.05650671571493149, -0.024659601971507072, 0.030970590189099312, -0.014893639832735062, 0.039969589561223984, -0.05855194479227066, 0.03628817945718765, 0.04303743317723274, -0.037252359092235565, -0.0466604083776474, -0.03371703624725342, 0.053468093276023865, 0.06977147608995438, 0.04505344107747078, 0.01782269775867462, -0.03985271975398064, -0.03216850757598877, -0.020247753709554672, -0.015017814002931118, -0.03278207778930664, 0.02404603362083435, -0.014521116390824318, -0.023081853985786438, 0.025097863748669624, -0.022906549274921417, -0.00477341515943408, 0.004039324354380369, 0.005372374784201384, 0.0367264449596405, 0.04718632251024246, 0.006548380479216576, 0.03538243845105171, -0.005423505324870348, -0.03342486172914505, -0.009576047770678997, 0.04441065713763237, 0.007147340103983879, 0.01090544555336237, 0.013140587136149406, 0.03342486172914505, 0.015149293467402458, -0.018889138475060463, -0.009576047770678997, -0.007169253192842007, 0.024279773235321045, 0.007611168548464775, -0.01121222972869873, -0.029319798573851585, -0.031116677448153496, -0.011015011928975582, 0.012687715701758862, 0.011402144096791744, 0.016537126153707504, -0.006230639759451151, 0.03736922889947891, -0.012008408084511757, 0.036784879863262177, -0.01153362262994051, 0.023812292143702507, -0.000182038958882913, 0.010890836827456951, -0.0352947860956192, 0.008312389254570007, -0.004316891077905893, -0.007165601011365652, -0.03956054523587227, -0.051130689680576324, -0.013031021691858768, 0.005441766232252121, -0.02251211181282997, 0.0003777736274059862, 0.019400443881750107, -0.033191122114658356, 0.008816392160952091, 0.06609006971120834, -0.013629981316626072, -0.03792436420917511, -0.04686493054032326, 0.046251360327005386, -0.005533071234822273, -0.022921158000826836, -0.009671004489064217, -0.04438143968582153, 0.02189854346215725, 0.03739844635128975, -0.03605443984270096, 0.048238154500722885, -0.010576748289167881, -0.01586512289941311, -0.0407000295817852, 0.043563347309827805, -0.018056437373161316, 0.03792436420917511, 0.04917311668395996, 0.0017704000929370522, 0.003628453006967902, -0.014301984570920467, 0.03178868070244789, -0.004495848435908556, 0.010737445205450058, -0.00022928918770048767, -0.02360776998102665, -0.028355620801448822, 0.000644611893221736, -0.014572246931493282, -0.03433060646057129, -0.02946588583290577, 0.003206624649465084, 0.008655695244669914, -0.002448794897645712, -0.018845312297344208, -0.01574825309216976, -0.004755154252052307, -0.013571546413004398, -0.013396240770816803, 0.015645992010831833, -0.011774667538702488, -0.052562348544597626, -0.016989998519420624, 0.03847949579358101, 0.019663402810692787, 0.03944367542862892, 0.011971886269748211, -0.052854523062705994, -0.011511709541082382, -0.028238749131560326, -0.05209486931562424, -0.01665399596095085, -0.03547009080648422, 0.02010166645050049, 0.034359823912382126, -0.004503152798861265, -0.002437838353216648, -0.010430661030113697, -0.0011787450639531016, -0.017545131966471672, -0.03541165590286255, 0.02539004012942314, 0.012117973528802395, -0.013074847869575024, -0.0159381665289402, 0.026091260835528374, -0.006632381118834019, 0.0004953285679221153, -0.03272364288568497, -0.01757434941828251, 0.01919592171907425, 0.016084253787994385, 0.0028907100204378366, -0.0585811622440815, -0.004386282991617918, -0.008553434163331985, 0.031759463250637054, 0.005781420040875673, -0.02604743465781212, -0.024192120879888535, -0.030795283615589142, 0.005072894971817732, -0.010313790291547775, -0.09986554086208344, -0.03547009080648422, 0.025273170322179794, -0.022307589650154114, 0.02001401223242283, -0.006975687108933926, 0.02837022952735424, 0.004999850876629353, -0.01747208647429943, -0.007633081637322903, 0.010540226474404335, -0.026266565546393394, -0.02062758058309555, 0.010474487207829952, -0.01865539699792862, -0.03593757003545761, -0.044907353818416595, -0.026807090267539024, 0.018626179546117783, -0.0157774705439806, 0.02224915474653244, -0.030473891645669937, -0.004704023711383343, 0.0061977701261639595, -0.00037617579801008105, -0.021956978365778923, 0.0027263613883405924, 0.0006692642346024513, 0.022497503086924553, -0.014747551642358303, -0.012059538625180721, -0.0315549410879612, 0.007917952723801136, 0.002090879948809743, 0.02235141582787037, -0.011263360269367695, -0.01623034104704857, 0.0554841049015522, -0.02530238777399063, 0.018494701012969017, 0.007147340103983879, 0.005901942495256662, 0.0021018364932388067, -0.023257160559296608, -0.021913152188062668, 0.010963880456984043, -0.019867924973368645, 0.0005692854756489396, 0.014762160368263721, -0.0053066350519657135, -0.021650195121765137, -0.006055334582924843, -0.014433463104069233, 0.0318763330578804, -0.022716635838150978, -0.002806709613651037, 9.581298218108714e-05, 0.003005754202604294, -0.023374030366539955, 0.010437965393066406, -0.017588958144187927, 0.023374030366539955, 0.006690816022455692, -0.005116721149533987, -0.02081749588251114, -0.015120075084269047, -0.026500307023525238, 0.027727443724870682, 0.001587790553458035, -0.019122878089547157, -0.0023209680803120136, 0.04052472487092018, 0.02505403757095337, 0.043183520436286926, 0.030123280361294746, 0.020145492628216743, -0.042920563369989395, -0.004904894158244133, 0.03196398541331291, -0.0014617899432778358, 0.011175707913935184, -0.014922857284545898, 0.01973644644021988, -0.0031664506532251835, 0.02143106423318386, 0.027522919699549675, -0.0123005835339427, -0.004875676706433296, -0.017968785017728806, 0.04934842139482498, 0.02242445945739746, 0.04052472487092018, 9.03346881386824e-05, -0.02856014296412468, 0.018056437373161316, -0.01630338653922081, -0.038508713245391846, 0.0022132284939289093, 0.019678011536598206, 0.007443167734891176, 0.02704082988202572, 0.013600763864815235, 0.018392439931631088, 0.03196398541331291, 0.02324254997074604, 0.025346213951706886, 0.0092400461435318, -0.027946574613451958, -0.005218982696533203, -0.0036174962297081947, -0.01509085763245821, -0.0401448979973793, 0.013535023666918278, 0.011592057533562183, 0.003977237269282341, -0.007757256273180246, 0.00995587557554245, -0.026982394978404045, -0.0078010824508965015, -0.030649196356534958, 0.03827497363090515, -0.013922156766057014, -0.009020914323627949, 0.06258396804332733, -0.059954386204481125, 0.02953892946243286, 0.029772670939564705, 0.00186353106983006, -0.06340205669403076, -0.04359256476163864, -0.001487355213612318, -0.033191122114658356, -0.023286378011107445, 0.03514869883656502, -0.015572947449982166, -0.03295738250017166, -0.022818896919488907, 0.023081853985786438, 0.002660621888935566, 0.020759060978889465, 0.024294381961226463, -0.008531521074473858, -0.03260677307844162, 0.003281494602560997, 0.046163707971572876, -0.03196398541331291, 0.04169342666864395, 0.0318763330578804, 0.01865539699792862, -0.021927760913968086, -0.0047880238853394985, -0.020189318805933, -0.01585051417350769, -0.026792481541633606, -0.042394645512104034, 0.04350491240620613, 0.01728217303752899, 0.051656607538461685, 0.022059241309762, -0.0077645606361329556, -0.0034166257828474045, 0.0009422655566595495, 0.005942116491496563, -0.03216850757598877, -0.029144493862986565, 0.02341785654425621, -0.021664803847670555, 0.04096298664808273, -0.010730140842497349, 0.0011613970855250955, 0.02251211181282997, -0.005072894971817732, -0.013410849496722221, -0.008144388906657696, 0.006756555289030075, 0.0062708137556910515, 0.02863318659365177, -0.029860323294997215, 0.01963418535888195, -0.006942817475646734, 0.018056437373161316, -0.020612971857190132, -0.013140587136149406, -0.001974009908735752, -0.027785878628492355, 0.050575558096170425, 0.001500137965194881, 0.01989714242517948, -0.010540226474404335, 0.019152095541357994, 0.032314594835042953, 0.0017293129349127412, -0.027347614988684654, 0.02496638521552086, 0.005474635865539312, -0.010861619375646114, -0.00275740516372025, 0.02242445945739746, -0.010021614842116833, -0.006000551860779524, -0.015441467985510826, 0.008524216711521149, -0.0032340162433683872, 0.035616178065538406, -0.01731139048933983, 0.004368021618574858, -0.0033399297390133142, 0.056360628455877304, -0.01576286181807518, 0.013052934780716896, -0.02314028888940811, -0.007706125266849995, 0.0003517517470754683, 0.004784371703863144, -0.04043707251548767, -0.0016690518241375685, -0.027420658618211746, 0.04587153345346451, -0.01665399596095085, -0.005905594676733017, 0.023841509595513344, 0.012746150605380535, -0.011482492089271545, 0.0023702727630734444, -0.017179911956191063, -0.028267966583371162, -0.026792481541633606, -0.007983691990375519, 0.011058838106691837, 0.0017229216173291206, 0.0260328259319067, -0.024104468524456024, -0.031759463250637054, 0.01112457737326622, 0.005317591596394777, -0.04519952833652496, 0.04744927957653999, -0.004813589155673981, -0.05601001903414726, 0.003769062226638198, 0.009795179590582848, 0.00013296262477524579, -0.0189183559268713, -0.009561439044773579, 0.017632784321904182, -0.013797981664538383, 0.003414799692109227, 0.0003556322189979255, 0.029407450929284096, 0.0020890538580715656, 0.026076652109622955, -0.010021614842116833, -0.030766066163778305, -0.048413459211587906, -0.018801486119627953, -0.0017028346192091703, -0.03605443984270096, -0.010730140842497349, 0.0006820468697696924, 0.00025725128944031894, -0.005427157506346703, 0.012125277891755104, -0.04476126655936241, -0.04569622874259949, 0.001512920600362122, -0.00425845617428422, 0.015193119645118713, 0.00012371801130939275, -0.002936362521722913, 0.00280488352291286, -0.012819194234907627, 0.010050833225250244, -0.06410327553749084, -0.015324598178267479, 0.029860323294997215, 0.02864779531955719, 0.014155896380543709, -0.03286973014473915, -0.01811487227678299, -0.007351862732321024, -0.015251554548740387, -0.011993799358606339, -0.020744452252984047, 0.0072824712842702866, -5.00464448123239e-05, -0.008546129800379276, -0.009305785410106182, -0.002258880762383342, 0.02695317752659321, 0.04704023525118828, -0.04029098525643349, 0.002611317439004779, -0.043650999665260315, -0.015441467985510826, 0.014973987825214863, 0.06275927275419235, 0.021036626771092415, -0.01999940350651741, -0.003281494602560997, 0.007099861744791269, -0.009729440324008465, 0.010065441951155663, -0.015499903820455074, -0.030678413808345795, 0.021372629329562187, -0.013491197489202023, -0.04569622874259949, 0.0014060939429327846, -0.02477647177875042, 0.018144089728593826, -0.01701921597123146, 0.008246649987995625, -0.06205805018544197, 0.001092918450012803, 0.062291789799928665, -0.025521518662571907, -0.05145208165049553, 0.028078053146600723, -0.022906549274921417, 0.04216090589761734, 0.009269263595342636, 0.012307887896895409, 0.010993098840117455, 0.004477587528526783, -0.031233547255396843, -0.0076988209038972855, -0.006033421494066715, 0.007815691642463207, -0.008224736899137497, 0.004499500617384911, 0.01224945206195116, -0.003113493788987398, -0.022059241309762, 0.011234142817556858, -0.007486993912607431, 0.01874304935336113, 0.028983796015381813, -0.013776068575680256, -0.01928357407450676, 0.020934365689754486, 0.02704082988202572, -0.03658035770058632, 0.04087533429265022, -0.017793480306863785, -0.019327400252223015, -0.03035702183842659, 0.011073446832597256, -0.027858922258019447, 0.009671004489064217, -0.02331559546291828, 0.0006961991311982274, -0.02531699649989605, 0.010196920484304428, 0.013505806215107441, -0.005602462682873011, 0.01018231175839901, -0.01176005881279707, -0.05168582499027252, -0.002273489721119404, -0.004780719522386789, -0.002912623342126608, 0.024922559037804604, -0.02172323875129223, 0.004503152798861265, -0.04160577431321144, -0.009619873948395252, -0.03304503485560417, 0.013096760958433151, 0.01541225053369999, 0.002899840474128723, -0.018436266109347343, 0.009276567958295345, 0.027888139709830284, -0.00718751410022378, -0.0013832678087055683, -0.06071404367685318, 0.010467182844877243, 0.009824397042393684, -0.03278207778930664, -0.021942369639873505, 0.017632784321904182, -0.007779169362038374, -0.027522919699549675, 0.004462978802621365, 0.009247350506484509, -0.04286212846636772, -0.026690220460295677, -0.02243906818330288, 0.0038421060889959335, 0.005544027779251337, 0.031759463250637054, -0.004196368623524904, -0.016960781067609787, 0.017092259600758553, -0.0023209680803120136, 0.008239345625042915, -0.020496102049946785, 0.0012380931293591857, 0.014243549667298794, 0.035820700228214264, 0.003343581920489669, -0.01049640029668808, 0.05414009466767311, -0.02991875819861889, 0.014937466010451317, -0.036901749670505524, 0.01574825309216976, 0.021854717284440994, -0.011241447180509567, -0.03430138900876045, 0.0029838408809155226, 0.031934767961502075, 0.012008408084511757, 0.0034476693253964186, 0.0032486249692738056, -0.015368424355983734, 0.04487813636660576, -0.01935661770403385, -0.016464082524180412, 0.047157105058431625, 0.019079051911830902, -0.01459416002035141, -0.04537483677268028, -0.006763859651982784, -0.021387238055467606, 0.02170863002538681, -0.0273037888109684, 0.01445537619292736, 0.0002581643348094076, 0.003380103735253215, 0.02648569829761982, 0.016434865072369576, 0.006416901480406523, 0.001768574002198875, 0.0076622990891337395, -0.008589955978095531, 0.006866121198982, -0.028355620801448822, 0.009824397042393684, -0.017720436677336693, 0.030590761452913284, 0.03143807128071785, 0.015792079269886017, -0.005686463322490454, 0.022234546020627022, 0.027815096080303192, -0.0036028875038027763, 0.005259156692773104, -0.0466604083776474, 0.01883070357143879, 0.03295738250017166, 0.012453975155949593, 0.004178107716143131, -0.021869326010346413, 0.016639387235045433, 0.009612569585442543, -0.02638343535363674, -0.0184800922870636, 0.0020452276803553104, -0.010474487207829952, 2.2840467863716185e-05, 0.009985093027353287, -0.014448071829974651, 0.009342307224869728, -0.007538124453276396, 0.0313212014734745, 0.04128437861800194, -0.009722135961055756, -0.0006208726554177701, -0.036609575152397156, -0.05609767138957977, -0.02593056485056877, -0.010540226474404335, 0.007574646733701229, 0.006106465123593807, -0.023476291447877884, 0.02259976416826248, 0.02189854346215725, 0.005620723590254784, -0.027946574613451958, -0.015719035640358925, 0.0013266587629914284, 0.02352011762559414, -0.049874335527420044, 0.06252553313970566, 0.007366471458226442, 0.01963418535888195, 0.0035809744149446487, 0.017983393743634224, -6.208726699696854e-05, 0.011811189353466034, 0.01167240645736456, 0.03181789815425873, -0.009729440324008465, -0.01630338653922081, -0.017618175595998764, -0.007786473724991083, 0.0055221146903932095, 0.022541329264640808, -0.01846548356115818, 0.010452574118971825, 0.01837783120572567, 0.03228537738323212, 0.03406764939427376, 0.02875005640089512, 0.03286973014473915, -0.010854315012693405, -0.013724938035011292, 0.025360822677612305, 0.010920054279267788, -0.009261959232389927, 0.04917311668395996, -0.053000614047050476, 0.04315430298447609, 0.03424295410513878, 0.013432762585580349, 0.026865525171160698, 0.023198723793029785, -0.038684017956256866, 0.005850811954587698, -0.014382332563400269, -0.012870324775576591, 0.022000806406140327, -0.015645992010831833, -0.033833909779787064, 0.014024417847394943, -0.025083255022764206, 0.0273037888109684, 0.0066433376632630825, 0.010920054279267788, -0.027902748435735703, -0.004273064900189638, 0.02378307469189167, -0.02036462351679802, -0.04277447611093521, 0.05773385241627693, 0.02655874192714691, 0.022555937990546227, -0.033833909779787064, 0.005993247497826815, -0.026354217901825905, 0.0008911348995752633, -0.003896889043971896, 0.010525617748498917, 0.0009413525112904608, 0.029597364366054535, -0.0015941818710416555, 0.011029620654881, -0.004598109982907772, -0.03547009080648422, 0.025974391028285027, -0.008991696871817112, 0.016829300671815872, 0.006942817475646734, 0.010700923390686512, -0.03412608429789543, -0.006811338476836681, 0.00026090347091667354, -0.024805689230561256, 0.03108745999634266, 0.035616178065538406, -0.0335417315363884, 0.03909306600689888, 0.015485295094549656, 0.05700341612100601, -0.017048433423042297, -0.02899840660393238, 0.010372226126492023, 0.0020525320433080196, -0.001471833442337811, 0.008312389254570007, 0.006347510032355785, 0.008370824158191681, -0.020291579887270927, -0.01216179970651865, 0.008100561797618866, -0.0012125277426093817, 0.015821296721696854, -0.017866523936390877, 0.014835204929113388, -0.021401846781373024, 0.012914151884615421, -0.015981992706656456, -0.0015859644627198577, -0.010868923738598824, 0.03117511235177517, 0.017150694504380226, -0.0017457478679716587, -0.0064862933941185474, -0.05937003716826439, 0.006533771753311157, -0.011424057185649872, 0.00024309904256369919, -0.03637583553791046, 0.004375325981527567, -0.02235141582787037, 0.0023647944908589125, -0.013622676953673363, 0.009079350158572197, -0.035908352583646774, 0.036901749670505524, 0.009714830666780472, -0.03009406290948391, -0.03117511235177517, 0.029129885137081146, 0.04560857638716698, -0.02352011762559414, 0.03345407918095589, 0.01827557012438774, -0.008473086170852184, 0.008275867439806461, 0.01982409879565239, 0.002110967179760337, 0.006384031847119331, 0.026880133897066116, -0.021664803847670555, 0.0037471491377800703, -0.006530119571834803, 0.0055221146903932095, 0.038421060889959335, 0.011993799358606339, 0.017223738133907318, -0.03547009080648422, 0.030853718519210815, 0.01675625704228878, 0.028530925512313843, 0.015383033081889153, -0.016171906143426895, 0.031145894899964333, 0.00913778506219387, -0.027245353907346725, -0.006741946563124657, 0.013009108603000641, -0.01820252649486065, -0.0071254270151257515, -0.020393840968608856, 0.005777767859399319, 0.01387102622538805, 0.023549335077404976, 0.004645588342100382, -0.021547934040427208, 0.012527018785476685, 0.0026332305278629065, -0.009115871973335743, 0.022994201630353928, 0.009744049049913883, -0.0011440492235124111, -0.02477647177875042, -0.02801961824297905, 0.013805286027491093, 0.01090544555336237, 0.003918802365660667, 0.004890285432338715, 0.020963583141565323, -0.006153943948447704, 0.018713831901550293, 0.012629280798137188, 0.0020890538580715656, 0.01649329997599125, 0.039502110332250595, -0.026500307023525238, -0.02036462351679802, 0.08584112673997879, -0.004627327434718609, 0.022000806406140327, 0.014557638205587864, 0.015894340351223946, 0.012760759331285954, -0.008794479072093964, 0.008626477792859077, 0.013220936059951782, 0.009831701405346394, -0.006095508579164743, -0.02116810530424118, 0.011372926644980907, 0.024571949616074562, 0.023826900869607925, 0.0030532325617969036, -0.02259976416826248, -0.02198619768023491, 0.04052472487092018, -0.0033855822402983904, 0.005456374958157539, 0.002059836406260729, 0.023490900173783302, 0.009671004489064217, -0.031058242544531822, 0.007815691642463207, -0.010379530489444733, 0.03286973014473915, 0.0017466609133407474, 0.0318763330578804, 0.004174455534666777, -0.0014371376018971205, -0.0011842233361676335, -0.026149695739150047, -0.03316190466284752, 0.002737317932769656, -0.018962182104587555, 0.01445537619292736, -0.02423594705760479, -0.00018968572840094566, -0.025346213951706886, -0.016084253787994385, -0.014316593296825886, 0.03117511235177517, 0.026237348094582558, 0.04537483677268028, -0.009517612867057323, -0.011971886269748211, -0.04189794883131981, 0.012716933153569698, 0.004802632611244917, -0.026062043383717537, -0.0012600063346326351, 0.006785773206502199, -0.004744197707623243, -0.018684614449739456, -0.0019995751790702343, -0.01165779773145914, 0.024192120879888535, -0.012957978062331676, 0.02144567295908928, -0.019867924973368645, 0.011818493716418743, -0.010700923390686512, 0.02001401223242283, 0.012337105348706245, 0.01292145624756813, -0.024557340890169144, -0.0009281133534386754, 0.017764262855052948, -0.03368781879544258, 0.027318397536873817, -0.010737445205450058, -0.0013412676053121686, 0.030941372737288475, 0.005598810501396656, -0.013162500225007534, 0.014601464383304119, 0.003716105595231056, -0.011336404830217361, 0.009590656496584415, 0.0100946594029665, 0.02514168992638588, -0.015266163274645805, -0.0009997875895351171, -0.025331605225801468, 0.0079690832644701, 0.006782121025025845, -0.01666860468685627, 0.00994857121258974, -0.022000806406140327, 0.017954176291823387, 0.02043766714632511, 0.0150032052770257, 0.03713548928499222, -0.0041488902643322945, -0.02134341187775135, 0.003926106728613377, -0.004024715628474951, 0.017691219225525856, 0.021226540207862854, -0.00021068583009764552, 0.008502303622663021, 0.009378829039633274, -0.00819551944732666, -0.007669603452086449, -0.03173024579882622, -0.05332200601696968, -0.046514321118593216, 0.028326401486992836, 0.029027624055743217, 0.010788575746119022, -0.017632784321904182, 0.013082152232527733, -0.010576748289167881, -0.028603969141840935, -0.04838424175977707, 0.013272066600620747, -0.0018032698426395655, -0.03360016644001007, 0.006687163840979338, 0.008363519795238972, -0.00026592524955049157, -0.03447669371962547, 0.010262659750878811, 0.020832104608416557, 0.046601973474025726, 0.06071404367685318, -0.009466482326388359, -0.004152542445808649, 0.016712430864572525, 0.01649329997599125, 0.013746851123869419, -0.0005724811344407499, -0.01333780586719513, 0.015806687995791435, -0.0333079919219017, 0.01982409879565239, -0.024031424894928932, -0.018217135220766068, -0.031934767961502075, -0.02207385003566742, -0.025156298652291298, -0.024294381961226463, -0.033366426825523376, 0.012987195514142513, -0.020130883902311325, 0.010321094654500484, 0.016800083220005035, 0.02747909352183342, -0.010204224847257137, 0.0123005835339427, 0.029685018584132195, -0.007844909094274044, -0.002967406064271927, -0.004309586714953184, 0.007932561449706554, -0.010883532464504242, 0.0038676715921610594, 0.0056974198669195175, -0.01755974069237709, -0.01856774464249611, -0.022921158000826836, -0.042832911014556885, 0.023184115067124367, 0.030503109097480774, -0.019210530444979668, -0.008677608333528042, -0.025609171018004417, -0.0022387937642633915, -0.01216910406947136, 0.000497611181344837, -0.033483296632766724, 0.00608455203473568, 0.012461279518902302, 0.031233547255396843, -0.0015667903935536742, -0.010737445205450058, -0.00976596213877201, 0.003776366589590907, 0.005416200961917639, -0.008721434511244297, 0.006219683215022087, 0.0009568743407726288, 0.03395077958703041, 0.008400041610002518, -0.005281069781631231, -0.009210828691720963, -0.012680411338806152, -0.027435267344117165, -0.004700371529906988, -0.015047031454741955, 0.0020452276803553104, 0.024834906682372093, 0.009831701405346394, 0.009999701753258705, -0.0186407882720232, 0.004042976535856724, -0.027449876070022583, 0.04493657127022743, -0.0230526365339756, -0.026514915749430656, 0.028793882578611374, 0.02819492295384407, 0.0008354389574378729, 0.003332625376060605, -0.013783372938632965, -0.04195638373494148, 0.011964581906795502, 0.040846116840839386, -0.015120075084269047, 0.03164259344339371, -0.011248751543462276, 0.0005925681907683611, 0.015967383980751038, 0.02929058112204075, -0.02692396007478237, 0.028764665126800537, 0.016741648316383362, 0.00913778506219387, -0.020291579887270927, -0.0021566194482147694, -0.03295738250017166, -0.008005605079233646, -0.00977326650172472, -0.023812292143702507, 0.034359823912382126, -0.0012207452673465014, -0.015047031454741955, -0.008984392508864403, 0.02144567295908928, -0.02064218930900097, -0.01121953409165144, 0.029509712010622025, -0.006877077743411064, 0.0335417315363884, -0.010532922111451626, -0.014477289281785488, 0.005204373970627785, -0.010781271383166313, 0.0035298436414450407, 0.025726040825247765, -0.006515510845929384, 0.025243952870368958, 0.017515912652015686, 0.03342486172914505, 0.002863318659365177, -0.020759060978889465, -0.007545428816229105, -0.017998002469539642, -0.03152572363615036, -0.021562542766332626, 0.038800887763500214, -0.0012125277426093817, 0.008538825437426567, -0.037427663803100586, 0.006044378038495779, -0.06059717386960983, 0.014988596551120281, 0.013761459849774837, -0.0754396840929985, 0.0024579253513365984, 0.0031335807871073484, 0.01766200177371502, 0.006562989205121994, -0.0100946594029665, 0.017603566870093346, 0.001152266631834209, -0.017457477748394012, 0.004634631797671318, -0.028136488050222397, 0.021197322756052017, 0.000102318444987759, 0.007023165468126535, -0.004521413706243038, 0.03257755562663078, -0.028881534934043884, 0.011592057533562183, 0.036083657294511795, -0.010766662657260895, -0.020247753709554672, 0.006906295195221901, -0.015207728371024132, 0.0023008810821920633, -0.01468181237578392, 0.001121222972869873, 0.04186873137950897, -0.005854464136064053, 0.0037873233668506145, 0.041138291358947754, -0.011314491741359234, 0.007508907001465559, -0.05133521184325218, 0.006205074489116669, -0.01621573232114315, 0.01874304935336113, 0.025565344840288162, -0.02280428819358349, 0.005668202415108681, -0.022950375452637672, 0.03269442543387413, -0.014002504758536816, 0.016610169783234596, 0.0019082704093307257, -0.011453274637460709, -0.002693491755053401, 0.021007409319281578, -0.026149695739150047, -0.004276717081665993, 0.007034122012555599, 0.014418854378163815, -0.03061997890472412, -0.00582889886572957, 0.05884411931037903, 0.014886335469782352, 0.006223335396498442, 0.035265568643808365, 0.02945127710700035, -0.016274169087409973, -0.02557995356619358, 0.022833505645394325, -0.023227941244840622, 0.020408449694514275, 0.0031737550161778927, -0.035177916288375854, 0.02709926664829254, -0.0031664506532251835, -0.021956978365778923, -0.03532400354743004, 0.0004706762556452304, -0.04163499176502228, -0.00788143090903759, 0.0021054886747151613, 0.0014480941463261843, 0.0352947860956192, 0.01387833058834076, 0.00820282381027937, -0.020057838410139084, 0.03260677307844162, -0.0010217007948085666, 0.049143899232149124, -0.0012545280624181032, -0.0019758359994739294, -0.02027697116136551, 0.022468285635113716, -0.010014310479164124, 0.008743347600102425, 0.02081749588251114, 0.03622974455356598, 0.019678011536598206, 0.014740247279405594, 0.02008705772459507, -0.03026936948299408, -0.04642666503787041, -0.012578149326145649, -0.029582755640149117, 0.014521116390824318, -0.02451351284980774, 0.015894340351223946, 0.0015512686222791672, -0.0452287457883358, -0.05425696820020676, -0.013717633672058582, -0.021416455507278442, 0.0023702727630734444, 0.035616178065538406, 0.01490824855864048, -0.007399341091513634, -0.0007760908338241279, 0.0030459281988441944, 0.0036923661828041077, 0.03070763126015663, -0.0150032052770257, -0.017866523936390877, -0.01256354060024023, -0.010328399017453194, -0.002704448299482465, -0.014959379099309444, 0.0019520967034623027, -0.007242296822369099, 0.012088756076991558, 0.011285273358225822, 0.015689818188548088, -0.0006592206773348153, 0.04072924703359604, 0.017793480306863785, -0.009276567958295345, 0.014857118017971516, 0.002812187885865569]
Name: Maestro Pasta, Address: 102 MacDougal St, New York, NY 10012, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.0009164, 40.7293927]}, Rating: 4.6, Reviews: ['I’ve been here twice now and both times it has been amazing! My sister has celiac and she said the food was to die for and they make an amazing Hugo Spritz. I chatted with the owner, Alessandro, on both visits and he is wonderful. The decor is perfect too - some of the tables have swings for seats!', 'Grossly overpriced for the level food served.\nBizarre Brussels sprouts side dish - just boiled, and thrown in a sweet mix of grapes and sugary walnuts\nNice pasta… but $53 after service without a drink…? The food needs to be a lot better to make it ok.\nNice staff, good service', 'One of the best pasta place I have been.\n\ngreat service, very lovely (for Italians that coming from a French person) drink amazing, highly recommended their espresso martini. The owner Alessandro welcome us with warmth heart.\n\nAnd the past, mama Mia! What else to say.', 'I adore this restaurant. Very elegant, but casual at the same time. The venue is so cozy and welcoming, with simple decor but with style.\n\nThe staff are brilliant, 10 out 10 to the team. Friendly, welcoming, warm and happy to help you. Makes you feel good to pay the service change.\n\nThe food is delicious, fresh and simple, which you can’t go wrong with it.', "Some of the BEST italian food in the village! Everything from the ambiance (love the swing seats!), to the drinks, to the food, was nothing short of amazing! It's definitely a MUST if you are in the city! Highly recommend! They even offer a prix fixe lunch special for $19 that includes 2 courses! Can't wait to go back soon!"], Embedding: [-0.08709884434938431, -0.016871245577931404, -0.03136793151497841, -0.037731751799583435, 0.019815698266029358, -0.04017754644155502, -0.03089301846921444, 0.0216322373598814, 0.006933713797479868, -0.054282430559396744, -0.022035911679267883, -0.02982446737587452, -0.028494713827967644, -0.023092590272426605, -0.0034253019839525223, 0.04183973744511604, -0.0281622763723135, -0.018842129036784172, 0.03419365733861923, 0.032935138791799545, 0.032388992607593536, 0.021430399268865585, -0.06810236722230911, 0.010958592407405376, -0.012347709387540817, 0.00910049956291914, -0.04784737527370453, 0.001902615767903626, 0.00999095942825079, -0.02128792554140091, 0.03310135751962662, -0.006482547614723444, 0.0024710260331630707, -0.03896652162075043, -0.050008222460746765, -0.013736826367676258, -0.009207354858517647, 0.04435677081346512, 0.042718324810266495, -0.005684101954102516, 0.0009490817319601774, 0.05603960528969765, 0.024101778864860535, -0.051670413464307785, -0.008845234289765358, -0.021952802315354347, 0.0008400004007853568, 0.054519884288311005, -0.011724387295544147, -0.013261915184557438, 0.013772444799542427, 0.047633662819862366, -0.03181909769773483, 0.015125944279134274, -0.02946828305721283, -0.017856687307357788, 0.01714431867003441, 0.005069684702903032, 0.055279746651649475, -0.010667708702385426, 0.057606812566518784, 0.010406507179141045, 0.06131112575531006, -0.019376404583454132, -0.05057811737060547, -0.025930190458893776, -0.011308839544653893, 0.01642007939517498, 0.03609330579638481, -0.04594772681593895, 0.02958701178431511, 0.00989597663283348, -0.00702275987714529, -0.05029316991567612, 0.02407803386449814, -0.05371253564953804, 0.02276015281677246, -0.03371874615550041, -0.013202550821006298, -0.0343836210668087, -0.04706376791000366, 0.016705026850104332, -0.026547575369477272, 0.008293149061501026, 0.022985735908150673, -0.06088370457291603, -0.04670758545398712, 0.013451879844069481, -0.005292299669235945, 0.00996127724647522, 0.03804044425487518, -0.023983050137758255, 0.035713374614715576, -0.00541102746501565, 0.0498182587325573, -0.010097813792526722, -0.006411310750991106, -0.0067259399220347404, -0.04765740782022476, 0.028542205691337585, 0.10581037402153015, -0.0426708348095417, 0.021264180541038513, -0.03908525034785271, 0.015565237030386925, 0.0013534988975152373, 0.06278335303068161, -0.031106729060411453, -0.006322264671325684, -0.030608071014285088, -0.07655579596757889, -0.0024027572944760323, -0.03611705079674721, 0.04100864380598068, -0.028304748237133026, 0.05698942765593529, 0.012264600023627281, -0.05399748310446739, -0.028423476964235306, 0.003834913484752178, 0.0045175994746387005, 0.02868467941880226, -0.044902920722961426, -0.026072662323713303, 0.017227429896593094, -0.04768115282058716, -0.027426162734627724, -0.010483680292963982, 0.0069990139454603195, -0.04606645554304123, 0.03454983979463577, 0.0021103897597640753, -0.009456682950258255, -0.018545309081673622, 0.01744113862514496, 0.02360312081873417, -0.024861637502908707, -0.017168065533041954, 0.019815698266029358, 0.007135551422834396, 0.03077429160475731, 0.002683252329006791, 0.006666575558483601, 0.010002831928431988, 0.0014054423663765192, -0.02721245214343071, -0.043122000992298126, 0.02531280368566513, -0.023626867681741714, 0.024695418775081635, -0.03395619988441467, 0.01588580384850502, -0.032104045152664185, -0.01114855706691742, -0.016408206894993782, -0.0355709008872509, 0.0034282703418284655, 0.03224651888012886, -0.033410053700208664, 0.03229400888085365, -0.015517746098339558, 0.03397994488477707, -0.025407787412405014, -0.02063492126762867, -0.014294847846031189, 0.03944143280386925, -0.0753210261464119, 0.02514658495783806, -0.0486072339117527, -0.011267284862697124, 0.003054277040064335, 0.023579375818371773, 0.02851845882833004, 0.07042943686246872, 0.009385446086525917, -0.03006192296743393, 0.01402177382260561, -0.02075364999473095, 0.04015380144119263, 0.007040569093078375, 0.01665753498673439, 0.014603541232645512, 0.03552341088652611, -0.012466437183320522, -0.03148666024208069, 0.01307194959372282, -0.08168484270572662, -0.005132016725838184, -0.002275124890729785, 0.07142674922943115, 0.028850898146629333, 0.008524668402969837, -0.011213856749236584, -0.010400570929050446, -0.00019590115698520094, -0.02128792554140091, 0.012644529342651367, 0.004772864747792482, -0.018011033535003662, 0.08671890944242477, -0.013641844503581524, -0.00045524758752435446, 0.0379454605281353, -0.0474199540913105, 0.042053449898958206, -0.019637607038021088, 0.005390250124037266, 0.039940088987350464, -0.011902479454874992, -0.016681279987096786, 0.005915621295571327, 0.008952089585363865, -0.016028275713324547, -0.003134418511763215, -0.04886843264102936, 0.01520905364304781, 0.013808063231408596, 0.029064608737826347, 0.045377831906080246, 0.015909548848867416, -0.026927504688501358, 0.022024039179086685, 0.03274517506361008, -0.007093996275216341, 0.027354925870895386, 0.03227026388049126, 0.008026011288166046, 0.023258810862898827, 0.0012095412239432335, 0.009403255768120289, 0.005669260863214731, 0.017678596079349518, -0.024457963183522224, 0.006648766342550516, -0.0026253722608089447, -0.007782618515193462, -0.018343472853302956, -0.005031098145991564, -0.02069428563117981, 0.011777815409004688, -0.009023326449096203, -0.028233513236045837, 0.04986574873328209, 0.0016147004207596183, 0.020290611311793327, -0.005743465851992369, -0.00880367960780859, -0.010566789656877518, -0.008762124925851822, 0.038990266621112823, -0.015375272370874882, -0.04107987880706787, 0.0326264463365078, -0.04017754644155502, -0.02087237872183323, -0.028589695692062378, -0.032460227608680725, 0.0015879867132753134, 0.03227026388049126, -0.03692439943552017, 0.009242972359061241, 0.006156045477837324, -0.014140501618385315, 0.0010952656157314777, -0.01843845471739769, -0.025217821821570396, -0.0012251242296770215, 0.016978099942207336, -0.007711382117122412, 0.0257877167314291, -0.05774928629398346, -0.007669826969504356, 0.029017116874456406, 0.05964893475174904, 0.04041500389575958, -0.02657132036983967, -0.00042111327638849616, -0.0044671399518847466, 0.009474492631852627, 0.00745611684396863, -0.037138111889362335, -0.08524668216705322, 0.028589695692062378, -0.026666302233934402, 0.0012414493830874562, 0.025455277413129807, 0.055279746651649475, 0.014983470551669598, 0.004113924223929644, -0.021845947951078415, -0.03920397534966469, 0.008494986221194267, 0.04015380144119263, -0.003644948825240135, -0.010661772452294827, -0.00016946563846431673, 0.016942482441663742, -0.02749739959836006, 0.03872906416654587, 0.02673753909766674, 0.03587959334254265, -0.011819370090961456, 0.025479022413492203, -0.0007086576079018414, -0.011077320203185081, 0.04749118909239769, -0.05062560737133026, 0.003728058421984315, -0.02175096422433853, 0.02915959060192108, -0.04848850518465042, 0.00494798831641674, -0.004639295395463705, -0.019637607038021088, -0.03046559914946556, -0.010382761247456074, 0.02443421632051468, 0.03863408416509628, -0.037328075617551804, -0.05442490428686142, 0.04770490154623985, -0.005366504658013582, 0.008328767493367195, 0.025099093094468117, -0.02382870391011238, -0.052667729556560516, 0.054092466831207275, -0.004936115350574255, 0.03331506997346878, -0.03623577952384949, 0.023520011454820633, -0.039465177804231644, 0.021299798041582108, -0.005565373692661524, -0.02200029417872429, 0.005004384089261293, -0.023045100271701813, 0.009094562381505966, 0.02080114185810089, 0.010026577860116959, 0.01701371930539608, -0.03457358479499817, -0.02538404054939747, -0.0314154215157032, -0.0012592585990205407, -0.00011529599578352645, -0.015577110461890697, -0.003466856898739934, 0.018129762262105942, 0.010905164293944836, -0.016467569395899773, -0.0027069977950304747, -0.04157853499054909, 0.02091986872255802, -0.011807496659457684, 0.02987195923924446, -0.005639578681439161, 0.022071531042456627, -0.03561839088797569, -0.013024458661675453, 0.015968913212418556, 0.024410471320152283, -0.013914918527007103, 0.02170347422361374, -0.010424315929412842, 0.030750544741749763, -0.0020732872653752565, 0.0610736683011055, -0.029444538056850433, -0.04718249663710594, -0.021062342450022697, 0.0066131483763456345, -0.0031403549946844578, 0.010958592407405376, -0.023140082135796547, -0.017417393624782562, 0.009248909540474415, -0.006482547614723444, 0.009842549450695515, 0.019186440855264664, 0.04138857126235962, -0.007153360638767481, 0.004140638280659914, -0.007004950661212206, 0.03208030015230179, -0.03652072325348854, 0.03419365733861923, -0.009201417677104473, 0.006737812422215939, 0.007402689196169376, -0.044143062084913254, -0.016788136214017868, -0.03303012251853943, 0.0049747019074857235, 0.022736407816410065, 0.0120093347504735, 0.05347507819533348, 0.000559876614715904, -0.04896341636776924, -0.019079584628343582, 0.06511042267084122, -0.04594772681593895, -0.03481104224920273, -0.05281020328402519, -0.0010359016014263034, 0.009907849133014679, -0.04523535817861557, 0.004772864747792482, -0.0450691394507885, 0.02306884527206421, -0.04072369635105133, -0.02892213501036167, 0.028304748237133026, 0.06724752485752106, -0.003906150348484516, -0.03564213961362839, 0.017179938033223152, -0.016811881214380264, 0.04487917572259903, 0.006512229330837727, -0.005425868555903435, 0.043430693447589874, -0.00468381866812706, -0.03105923719704151, -0.04126984253525734, 0.017642976716160774, 0.019103331491351128, -0.04183973744511604, -0.05110051855444908, 0.004781769122928381, -0.04001132771372795, -0.030845528468489647, -0.015992658212780952, -0.023674357682466507, -0.04753868281841278, -0.02204778417944908, -0.025289058685302734, 0.013475624844431877, 0.0414835549890995, -0.02354375645518303, 0.013903046026825905, -0.04848850518465042, -0.005004384089261293, 0.010400570929050446, -0.002350813942030072, 0.03077429160475731, 0.03172411397099495, 0.05342758819460869, -0.016170749440789223, -0.03386121988296509, 0.007052441593259573, -0.0012028628261759877, -0.021086087450385094, -0.012086507864296436, 0.019875062629580498, 0.05319013074040413, 0.0034816977567970753, 0.008934279903769493, -0.009937531314790249, -0.007123678456991911, -0.024647926911711693, -0.02490912936627865, -0.03509598970413208, -0.010887355543673038, 0.013440006412565708, 0.00841781310737133, -0.06235593184828758, 0.033172596246004105, 0.02424425259232521, -0.054092466831207275, 0.010353079065680504, -0.010353079065680504, -0.0029741358011960983, 0.008542478084564209, 0.005793925374746323, -0.04651762172579765, 0.02116919867694378, -0.02531280368566513, 0.004959861282259226, 0.01078643649816513, -0.00936170108616352, -0.015517746098339558, -0.013606226071715355, -0.005494136828929186, -0.013024458661675453, -0.06031380966305733, -0.004772864747792482, 0.007082123775035143, -0.021430399268865585, 0.015814566984772682, -0.0018076334381476045, 0.00999095942825079, -0.0065062930807471275, -0.010139369405806065, -0.018521564081311226, 0.018699655309319496, 0.027758600190281868, -0.03514347970485687, -0.03307761251926422, -0.018509691581130028, -0.011469122022390366, -0.009088626131415367, -0.022154640406370163, 0.03984510898590088, -0.004737246315926313, -0.005847352556884289, -0.0729464665055275, -0.04024878516793251, 0.026642557233572006, 0.0029028989374637604, -0.006221346091479063, -0.03806418925523758, 0.040106311440467834, -0.022570187225937843, 0.014354212209582329, 0.00538134528324008, -0.009136117994785309, 0.03208030015230179, -0.029183335602283478, 0.01102389208972454, 0.016230113804340363, 0.005556469317525625, -0.006512229330837727, -0.03490602597594261, 0.02975323051214218, -0.0034609204158186913, -0.017334284260869026, -0.0257877167314291, -0.018117889761924744, -0.04924836382269859, 0.011967780068516731, -0.014781632460653782, -0.007717318367213011, 0.01896085776388645, -0.009444810450077057, 0.024647926911711693, -0.0005884455167688429, 0.03578461334109306, -0.012597038410604, -0.03212779015302658, 0.019257677718997, -0.0020896124187856913, 0.011261348612606525, 0.00013152832980267704, -0.01404551975429058, -0.022570187225937843, 0.033576272428035736, -0.01514968927949667, 0.007200851570814848, 0.009593220427632332, 0.0012607426615431905, -0.011528486385941505, 0.0234250295907259, -0.033291324973106384, 0.005072652827948332, 0.026547575369477272, 0.03136793151497841, -0.012608910910785198, 0.010869545862078667, 0.01921018585562706, -0.02680877596139908, -0.02839973196387291, 0.000662279489915818, -0.008316894993185997, -0.00260756304487586, 0.01404551975429058, -0.019661352038383484, 0.02899337187409401, -3.923588519683108e-05, 0.014330466277897358, -0.0022068561520427465, 0.03414616361260414, 0.009557601995766163, 0.02958701178431511, 0.020611176267266273, -0.006868413183838129, 0.020528066903352737, 0.005390250124037266, -0.03870531916618347, 0.01342813391238451, -0.018272235989570618, -0.04416680708527565, -0.014627286233007908, 0.024861637502908707, 0.013356897048652172, 0.02899337187409401, 0.01802290603518486, 0.015090325847268105, 0.02176283858716488, 0.0006971558323130012, 0.014781632460653782, -0.010928910225629807, -0.005221062805503607, 0.0008370322175323963, -0.006939650047570467, -0.042599596083164215, -0.02389994077384472, 0.02062304876744747, 0.009581347927451134, 0.008952089585363865, -0.030750544741749763, 0.006945586297661066, -0.04452298954129219, -0.011296967044472694, -0.008097248151898384, 0.03348128870129585, -0.0051023345440626144, -0.020005663856863976, 0.05798674374818802, -0.030798036605119705, 0.01843845471739769, 0.03830164298415184, -0.023163827136158943, -0.03958390653133392, -0.02247520536184311, 0.03153415024280548, 0.003273923881351948, -0.017334284260869026, 0.04195846617221832, -0.01253767404705286, -0.03243648260831833, -0.02347252145409584, 0.018569055944681168, 0.010928910225629807, 0.006945586297661066, 0.018295980989933014, -0.020718030631542206, -0.0210504699498415, -0.009136117994785309, -0.0001424735673936084, 0.03858659043908119, 0.0163132231682539, 0.03825415298342705, -0.030204396694898605, -0.013273787684738636, -0.009812867268919945, 0.006571593228727579, -0.013226296752691269, -0.0275686364620924, 0.0032353373244404793, 0.016978099942207336, 0.0063935015350580215, 0.018937112763524055, 0.019958171993494034, -0.010572725906968117, 0.0031937824096530676, 0.027901073917746544, 0.00026157256797887385, -0.02626262791454792, -0.01197965256869793, 0.020646795630455017, -0.027164960280060768, 0.02680877596139908, 0.010471807792782784, -0.0066606393083930016, 0.06496794521808624, 0.0012896825792267919, 0.0046719457022845745, 0.010513362474739552, 0.00965852104127407, 0.009498237632215023, 0.008637459948658943, 0.012074635364115238, 0.019067712128162384, 0.008293149061501026, 0.019233932718634605, -0.028494713827967644, 0.03136793151497841, -0.015375272370874882, -0.032697685062885284, 0.07375381886959076, 0.007230533752590418, 0.039750125259160995, 0.026048917323350906, 0.04397684335708618, 0.01956637017428875, 0.028138529509305954, -0.03604581207036972, 0.0010833927663043141, 0.02020750194787979, -0.047823626548051834, -0.013333151116967201, -0.003998164553195238, -0.0033718745689839125, -0.024861637502908707, -0.00788353756070137, 0.003092863829806447, -0.012680147774517536, 0.016206368803977966, 0.002264736220240593, 0.010667708702385426, -0.013226296752691269, 0.04590023308992386, 0.0040100375190377235, 0.03333881497383118, -0.01161753199994564, 0.015588982962071896, -0.019008349627256393, 0.02087237872183323, -0.08106745779514313, 0.009153926745057106, -0.016871245577931404, 0.026310119777917862, -0.027877328917384148, -0.0045324405655264854, 0.0022098245099186897, 0.004318729974329472, -0.010424315929412842, 0.0041436064057052135, -0.017749832943081856, -0.029966941103339195, -0.014294847846031189, -0.026357609778642654, 0.0444754995405674, 0.012858239933848381, 0.0337899811565876, -0.013380642980337143, 0.02122856117784977, -0.009533856064081192, -0.02479040063917637, -0.027069978415966034, 0.02863718755543232, -0.007254279218614101, -0.04017754644155502, 0.01625385880470276, -0.03564213961362839, 0.03295888751745224, 0.003891309257596731, -0.008874916471540928, 0.054804831743240356, -0.0003786309389397502, -0.007758873049169779, 0.01643195189535618, 0.005283394828438759, -0.0038171042688190937, -0.015351527370512486, 0.046921294182538986, -0.0450453944504261, -0.022617679089307785, -0.00848311372101307, 0.0069930776953697205, -0.040058817714452744, -0.043834369629621506, 0.002116326242685318, -0.006096681579947472, 0.001636961940675974, 0.001411378849297762, -0.0016428983071818948, -0.033576272428035736, 0.023092590272426605, -0.05176539719104767, 0.008934279903769493, 0.018224744126200676, 0.035238463431596756, -0.03241273760795593, -0.03585584834218025, 0.03367125242948532, -0.001605795812793076, 0.0011464670533314347, 0.048346031457185745, 0.00540805933997035, 0.02074177749454975, -0.0032709557563066483, -0.02181032858788967, 0.00871463306248188, -0.0064291199669241905, 0.013095695525407791, -0.015280290506780148, -0.010804245248436928, 0.005918589420616627, -0.00987223070114851, 0.0013149123406037688, 0.0020391528960317373, 0.024054287001490593, 0.04060496762394905, -0.02939704619348049, 0.003950673155486584, -0.007580781355500221, -0.02228524163365364, 0.011213856749236584, 0.07641332596540451, 0.010649899020791054, -0.029919449239969254, -0.012347709387540817, 0.00587109848856926, -0.019138948991894722, 0.028589695692062378, -0.013523116707801819, -0.03212779015302658, -0.014176120050251484, 0.018295980989933014, -0.029373301193118095, 0.02685626782476902, -0.01547025516629219, -0.01544650923460722, -0.007574844639748335, 0.004998447839170694, -0.03326757997274399, 0.008815552107989788, 0.034359876066446304, -0.031106729060411453, -0.0486072339117527, -0.005508977919816971, 0.018058525398373604, 0.06411310285329819, 0.04100864380598068, 0.0016636757645756006, 0.04231464862823486, -0.004597740713506937, -0.051005538552999496, 0.005550532601773739, -0.013772444799542427, 0.005508977919816971, 0.006743749137967825, 0.04599521681666374, 0.008221912197768688, 0.005770179443061352, 0.007040569093078375, -0.015458382666110992, 0.02382870391011238, -0.01714431867003441, 0.0015508842188864946, -0.015968913212418556, 0.005226999055594206, 0.017263047397136688, 0.03770800307393074, 0.017571739852428436, -0.009670393541455269, -0.029373301193118095, -0.036544471979141235, -0.006636893842369318, 0.026666302233934402, -0.019043967127799988, 0.032341498881578445, -0.019138948991894722, 0.01903209462761879, 0.009854421950876713, -0.010602408088743687, 0.04395309463143349, -0.0027114502154290676, 0.04939083755016327, 0.015802692621946335, -0.023163827136158943, -0.05603960528969765, -0.015968913212418556, 0.005137952975928783, 0.0020376688335090876, -0.01896085776388645, -0.004211874678730965, -0.03243648260831833, -0.014603541232645512, -0.05138546600937843, -0.02033810131251812, 0.0007461311179213226, -0.0350010059773922, 0.025502769276499748, 0.00011409016588004306, 0.024766655638813972, 0.010359015315771103, 0.0074857985600829124, -0.04043874889612198, 0.02329442836344242, 0.012620783410966396, -0.019186440855264664, -0.007046505343168974, -0.009106435813009739, -0.0010247707832604647, -0.051717907190322876, 0.044902920722961426, -0.0006140462355688214, -0.061263635754585266, -0.0067259399220347404, -0.037802986800670624, 0.01861654594540596, -0.025716479867696762, 0.017999161034822464, 0.00045487654278986156, 0.03070305474102497, 0.020967360585927963, -0.04779988154768944, 0.018165379762649536, 0.012264600023627281, 0.004674913827329874, 0.009136117994785309, 0.02033810131251812, 0.03124920278787613, 0.0003537722514010966, 0.02887464314699173, 0.017749832943081856, -0.007776682265102863, -0.03371874615550041, 0.030370615422725677, 0.03409867361187935, 0.026096409186720848, -0.0096288388594985, 0.025004111230373383, 0.008115056902170181, 0.016586298123002052, 0.006375692319124937, -0.005645515397191048, -0.0163132231682539, 0.033528778702020645, -0.007568908389657736, -0.0007090286235325038, -0.001140530570410192, -0.010911100544035435, -0.018189124763011932, -0.015968913212418556, 0.032341498881578445, -0.05675197020173073, 0.028827151283621788, -0.06088370457291603, -0.0004841875343117863, -0.010543043725192547, -0.002945937914773822, -0.0013260430423542857, 0.005360567942261696, 0.01773795858025551, -0.02205965854227543, 0.02555025927722454, 0.03953641653060913, 0.011504740454256535, -0.001913004438392818, 0.01457979530096054, -0.042718324810266495, 0.0050103203393518925, 0.020967360585927963, 0.001677032676525414, 0.0036686945240944624, -0.0024561849422752857, -0.006714066956192255, 0.0008674562559463084, -0.01606389507651329, -0.008293149061501026, -0.013689335435628891, 0.048346031457185745, 0.012597038410604, 0.0163013506680727, -0.010442125611007214, -0.02299760840833187, 0.02289075404405594, -0.00600169925019145, -0.0114156948402524, -0.040533728897571564, 0.013843681663274765, -0.0030869273468852043, -0.0027069977950304747, -0.009979085996747017, 0.026595065370202065, -0.017524249851703644, 0.06017133593559265, 0.02733117900788784, -0.03742305934429169, -0.0048203556798398495, -0.01257329247891903, -0.05376002565026283, -0.02851845882833004, 0.015577110461890697, -0.01872340217232704, -0.006173854693770409, -0.05831918120384216, 0.008346576243638992, -7.142229878809303e-05, -0.004416680429130793, -0.0010010252008214593, 0.0385391004383564, 0.03587959334254265, 0.026120154187083244, -0.0120033985003829, 0.05034065991640091, -0.03730433061718941, -0.0022009199019521475, 0.0024131459649652243, 0.010080005042254925, -0.015220926143229008, -0.01463915966451168, -0.004099083133041859, 0.012917603366076946, -0.00791321974247694, -0.025170329958200455, -0.01541089080274105, 0.017702341079711914, -0.022320859134197235, 0.007390816230326891, -0.022677043452858925, 0.022902626544237137, 0.010750818066298962, 0.02650008350610733, 0.046921294182538986, -0.010442125611007214, -0.0023582344874739647, 0.005728624761104584, -0.008916471153497696, 0.01049555279314518, 0.007806364446878433, -0.0013319794088602066, -0.004033782985061407, -0.039987582713365555, 0.036425743252038956, 0.007990392856299877, -0.006530038546770811, 0.039346449077129364, -0.003113641170784831, -0.02863718755543232, -0.010685517452657223, -0.0009060428710654378, -0.0007023501675575972, -0.015660220757126808, -0.012668275274336338, -0.036164540797472, 0.015030961483716965, -0.013202550821006298, 0.025455277413129807, 0.008768061175942421, 0.007984456606209278, -0.019518878310918808, 0.0016636757645756006, 0.007652017753571272, 0.006797176320105791, -0.003947705030441284, -0.002010955009609461, 0.011659086681902409, 0.009029262699186802, 0.011475058272480965, 0.011006083339452744, 0.007741063833236694, 0.028708424419164658, 0.02602517232298851, 0.03181909769773483, 0.004811451304703951, 0.01289385836571455, 0.04637514799833298, 0.0023612026125192642, -0.0039002138655632734, 0.022855134680867195, 0.027236197143793106, 0.017298666760325432, -0.029444538056850433, -0.025716479867696762, -8.81647938513197e-05, -0.02188156545162201, 0.025930190458893776, -0.015280290506780148, 0.004731309600174427, 0.015541492030024529, -0.028827151283621788, -0.02329442836344242, 0.011961843818426132, 0.022451460361480713, 0.04601896181702614, 0.0004125797131564468, -0.01731053926050663, 0.03977387025952339, -0.014734141528606415, 0.020361848175525665, 0.0047135003842413425, 0.017571739852428436, 0.0015820502303540707, -0.0042356206104159355, -0.032104045152664185, -0.01684749871492386, 0.014484812505543232, 0.011160429567098618, -0.03861033543944359, 0.025502769276499748, -0.01998191885650158, 0.04084242135286331, 0.025574006140232086, -0.011427567340433598, 0.0036746307741850615, 0.02234460413455963, 0.01661004312336445, 0.02851845882833004, 0.006221346091479063, -0.025526514276862144, 0.0024101778399199247, 0.01493597961962223, -0.00999095942825079, -0.014294847846031189, 0.01247830968350172, 0.012288345023989677, 0.019768208265304565, -0.0131906783208251, 0.03409867361187935, -0.040866170078516006, 0.005004384089261293, 0.02175096422433853, -0.06591777503490448, 0.006298519205302, -0.006375692319124937, -0.017464885488152504, -0.009225163608789444, 0.016028275713324547, -0.008233784697949886, -0.008328767493367195, 0.004211874678730965, -0.00586813036352396, 0.03367125242948532, 0.017512375488877296, 0.06273586302995682, -0.00017985432350542396, -0.02490912936627865, -0.005155762191861868, 0.011172302067279816, -0.007408625446259975, -0.014971597120165825, 0.021917184814810753, -0.028589695692062378, -0.008589969016611576, -0.010738945566117764, 0.009355764836072922, 0.009064881131052971, 0.0007739579887129366, -0.020254991948604584, 0.02602517232298851, -0.017120573669672012, -0.029040861874818802, 0.02376934140920639, 0.01707308180630207, -0.016764389351010323, -0.010750818066298962, -0.03502475097775459, 0.02348439395427704, -0.011332585476338863, -0.0024769622832536697, -0.02127605304121971, 0.015292163006961346, 0.03428863734006882, 0.014472940005362034, 0.024529200047254562, 0.02305697277188301, 0.01961386203765869, 0.0062807099893689156, -0.00032520334934815764, 0.012128062546253204, -0.015458382666110992, -0.005814702715724707, -0.01903209462761879, 0.02792481891810894, 0.017678596079349518, 0.04832228645682335, 0.02621513605117798, -0.0021385876461863518, 0.01251392811536789, 0.008376258425414562, -0.06363819539546967, -0.0025274218060076237, 0.06838731467723846, 0.0070346323773264885, 0.008910534903407097, 0.01766672171652317, 0.015992658212780952, 0.01744113862514496, -0.015315908938646317, 0.026832522824406624, 0.01348749827593565, -0.04217217490077019, 0.004318729974329472, -0.00455024978145957, 0.008518732152879238, -0.013974282890558243, 0.029729485511779785, -0.02443421632051468, -0.012917603366076946, -0.022142767906188965, 0.013641844503581524, -0.023045100271701813, -0.03397994488477707, 0.028660932555794716, 0.013250041753053665, 0.03663945198059082, 0.0007687636534683406, -0.0011316259624436498, -0.007764809299260378, 0.003354065353050828, -0.004888624418526888, 0.0367581807076931, -0.0020584461744874716, 0.05067310109734535, 0.024054287001490593, -0.017916051670908928, -0.002536326413974166, -0.005719720385968685, 0.023318173363804817, -0.013689335435628891, -0.004725373350083828, 0.028732169419527054, -0.028660932555794716, 0.02075364999473095, -0.02200029417872429, 0.03884779289364815, 0.06235593184828758, -0.0025021920446306467, -0.013451879844069481, -0.009326082654297352, -0.0409136600792408, 0.008589969016611576, 0.005942335352301598, 0.014271102845668793, 0.017583612352609634, -0.01171251479536295, -0.012312090955674648, -0.0065062930807471275, -0.016764389351010323, -0.07380130887031555, 0.0013557251077145338, -0.013594352640211582, -0.033457543700933456, 0.013000713661313057, 0.014354212209582329, -0.016562553122639656, 0.003826008876785636, 0.012727638706564903, -0.0037191538140177727, -0.0025793651584535837, -0.030608071014285088, 0.01991068199276924, 0.027069978415966034, 0.022190257906913757, -0.002245442708954215, 0.019198313355445862, 0.02680877596139908, 0.017108701169490814, 0.033528778702020645, 0.01772608608007431, 0.009723820723593235, -0.03521471843123436, -0.010940782725811005, 0.01396240945905447, 0.018272235989570618, 0.0015612728893756866, 0.00871463306248188, -0.040106311440467834, 0.01902022212743759, -0.0033273515291512012, -0.023508138954639435, -0.02590644359588623, -0.0009142053895629942, 0.02109796181321144, 0.0015657251933589578, -0.0005524561274796724, 0.028447221964597702, 0.012668275274336338, 0.004232652485370636, 0.026476338505744934, 0.0001669612101977691, -0.00455024978145957, 0.012133998796343803, 0.004185161087661982, 0.022332731634378433, -0.018842129036784172, 0.020409338176250458, -0.030798036605119705, -0.017571739852428436, -0.04352567717432976, -0.05361755192279816, 0.027758600190281868, 0.011558168567717075, 0.013511243276298046, 0.0024383757263422012, 0.006749685388058424, 0.013534989207983017, -0.024101778864860535, -0.016443824395537376, 0.005351663567125797, -0.01600453071296215, -0.03611705079674721, 0.018295980989933014, 0.0033481288701295853, -0.01837909035384655, -0.0269749965518713, 0.018830256536602974, 0.01233583688735962, 0.024576690047979355, 0.05637204274535179, -0.019946299493312836, 0.010952655225992203, -0.03158164024353027, 0.019839445129036903, -0.03371874615550041, 0.0222377497702837, 0.009700075723230839, -0.0032442419324070215, 0.0028969626873731613, 0.011344457976520061, 0.01085173711180687, -0.0120093347504735, -0.007657954469323158, 0.010186860337853432, -0.0281622763723135, -0.0071474239230155945, -0.011231666430830956, -0.03395619988441467, -0.032935138791799545, 0.024339234456419945, 0.037565529346466064, 0.021086087450385094, -0.005345726851373911, -0.028114784508943558, 0.042955782264471054, -0.007598590571433306, 0.000900106446351856, -0.018509691581130028, 0.03490602597594261, -0.005966080818325281, 0.012668275274336338, -0.03628326952457428, -0.01837909035384655, -0.028898388147354126, 0.011831242591142654, -0.0006351946503855288, 0.012917603366076946, 0.03177160769701004, -0.011261348612606525, 0.023994924500584602, -0.039156485348939896, 0.013285660184919834, -0.0016265732701867819, -0.01833159849047661, -0.025194076821208, 0.014294847846031189, -0.01826036162674427, 0.03806418925523758, -0.0037250902969390154, 0.010234351269900799, -0.00670219399034977, -0.005503041669726372, 0.008275339379906654, -0.027758600190281868, 0.025360295549035072, -0.013416261412203312, 0.02146601863205433, -0.02194092981517315, -0.00966445729136467, -0.025122839957475662, -0.020599303767085075, 0.014104883186519146, -0.042528361082077026, -0.003971450962126255, 0.01404551975429058, 0.02128792554140091, 0.01287011243402958, -0.0043335710652172565, -0.006898095365613699, -0.0024918033741414547, -0.019542625173926353, 0.009557601995766163, -0.06069374084472656, -0.01221710816025734, 0.015054707415401936, 0.021549127995967865, 0.004381062462925911, 0.0069218408316373825, -0.018046652898192406, 0.00263724522665143, 0.027141215279698372, 0.03272143006324768, -0.0038527227006852627, 0.04338320344686508, -0.04637514799833298, -0.019661352038383484, 0.025455277413129807, 0.00540805933997035, -0.00013273415970616043, 0.03834913671016693, 0.022677043452858925, -0.027972310781478882, -0.016752516850829124, -0.02514658495783806, -0.028827151283621788, -0.03849161043763161, -0.03473980352282524, -0.006547847762703896, 0.007331452332437038, -0.013879300095140934, -0.02145414426922798, -0.018011033535003662, 0.00015518117288593203, 0.011166365817189217, 0.0069218408316373825, -0.013879300095140934, -0.0002558216801844537, -0.025692733004689217, 0.010744881816208363, -0.02680877596139908, -0.0007843466592021286, -0.0012466437183320522, -0.023971177637577057, 0.005877034738659859, -0.02562149614095688, 0.013879300095140934, 0.012228981591761112, 0.010810182429850101, 0.04001132771372795, -0.014116756618022919, -0.03331506997346878, -0.007479862309992313, -0.03136793151497841, -0.010353079065680504, 0.013333151116967201, 0.016384460031986237, -0.01695435494184494, 0.01784481480717659, -0.01425922941416502, -0.01287011243402958, 0.016645662486553192, -0.01544650923460722, -0.05091055482625961, -0.005728624761104584, 0.016158876940608025, 0.012033079750835896, 0.003454984165728092, -0.010026577860116959, -0.02116919867694378, 0.002653570147231221, -0.006779367569833994, -0.001074488158337772, -0.009213291108608246, -0.0028509555850178003, 0.007165233138948679, -0.021382907405495644, -0.04309825599193573, 0.0281622763723135, -0.023686230182647705, -0.003947705030441284, 0.002945937914773822, 0.017832942306995392, 0.00551194604486227, 0.028613442555069923, 0.011130747385323048, -0.039346449077129364, -0.019198313355445862, -0.0022469270043075085, 0.015660220757126808, 0.02809103950858116, -0.014033646322786808, 0.0016532870940864086, 0.010394633747637272, -0.0030186588410288095, -0.041768502444028854, -0.009171736426651478, -0.01046587061136961, 0.06506293267011642, -0.02116919867694378, -0.01404551975429058, -0.012466437183320522, -0.020349975675344467, 0.026310119777917862, -0.002070319140329957, -0.0002919966063927859, -0.031035492196679115, 0.04124609753489494, 0.010020640678703785, -0.0096288388594985, -0.001068551791831851, -0.02151350863277912, -0.019732588902115822, 0.022736407816410065, -0.036307014524936676, -0.022867007181048393, 0.01277512963861227, -0.03547591716051102, -0.013819936662912369, -0.0009490817319601774, 0.009207354858517647, 0.015873929485678673, 0.013819936662912369, -0.0038586591836065054, -0.01463915966451168, 0.005954207852482796, -0.016823753714561462, -0.027734855189919472, 0.019400151446461678, 0.018295980989933014, 0.0006633925368078053, -0.042005956172943115, -0.006286646239459515, -0.02110983431339264, -0.02348439395427704, 0.029420791193842888, -0.0019308136543259025, 0.019103331491351128, -0.019696971401572227, -0.01843845471739769, 0.025122839957475662, 0.029325809329748154, 0.013285660184919834, 0.0018907430348917842, -0.009314209222793579, 0.013891172595322132, 0.00036026519956067204, -0.0012911667581647635, -0.007669826969504356, 0.016859373077750206, -0.013261915184557438, 0.039987582713365555, 0.01855718158185482, 0.015565237030386925, 0.0035351254045963287, 0.005031098145991564, -0.03158164024353027, 0.004660073202103376, -0.027259942144155502, 0.0072245970368385315, -0.052145324647426605, -0.005853289272636175, 0.04288454353809357, -0.04381062090396881, -0.049058400094509125, 0.002944453852251172, -0.0032353373244404793, -0.008987708017230034, 0.044855426996946335, 0.019542625173926353, 0.01517343521118164, -0.005319013260304928, -0.01766672171652317, -0.0011524034198373556, -0.02425612509250641, -0.012822621501982212, -0.07080936431884766, -0.013867427594959736, 0.019352659583091736, -0.0046867867931723595, -0.0010106718400493264, -0.010151241905987263, 0.02068241313099861, 0.02412552386522293, -0.013701207935810089, -0.024173015728592873, 0.014686650596559048, 0.030964255332946777, 0.028209766373038292, -0.016681279987096786, 0.012133998796343803, 0.008405940607190132]
Name: Wicked Willy's, Address: 149 Bleecker St, New York, NY 10012, USA, Coordinates: {'type': 'Point', 'coordinates': [-73.999299, 40.728388]}, Rating: 4.1, Reviews: ['1st time here and I thought the place was amazing they had a live band which was really really good…the ambiance, decor and staff was great! The drinks were good and strong I had the fish bowl and my gf had a martini which I thought was stronger than my fish bowl but overall it was good. We didn’t try the food so can’t say anything about it but we’ll definitely be back for it.\n\nIf you’re ever in the city this place is a must try!', 'We had a lot of fun at Wicked Willy’s.  We came here on a Wednesday night after being recommended it from over a year and a half ago.  The security harassed a woman waiting for her friend outside alone as he was checking out ID’s which delayed our entry.  It was wine Wednesday so only $6 for a glass which was great!  We watched the security guard harass another woman who was waiting for her boyfriend sitting alone.  This was icky.  Our waitress greeted us with a smile but not much more- still friendly throughout!  We ordered the loaded nachos with chicken, steak quesadillas, and spicy chicken wrap.  The food was delicious!  We happened to go on karaoke night which was a shock to us but we rolled with it.  The host hyped everyone up and made people feel comfortable to sing by starting us off.  She gave every singer candy at the end and it seemed like everyone had such a great time.  We even went up to sing and when no one clapped she made us feel seen despite that!  The atmosphere is so cool- sea / mermaid / captain theme.  They also had an outdoor area in the back and seemed to have games but we didn’t go back there since it’s the middle of February.  I’d love to come here again!', "This place is a fantastic sports bar! 🍻 Wicked Willy's serves a wonderful selection of delicious 🤤 American 🇺🇲 dishes 🍽️- definitely get the Loaded Nachos! Their Happy Hour ⏳ special on food 🍴 and drinks 🍺 are also great and affordable! 🏷️ Service is quick ⏲️, staff 👨\u200d🍳 is friendly and professional, ambience 🎶 is great, place is nicely decorated 🛋️, and the music 🎵 is awesome! I wish I came here earlier!", 'No one really comes here for the food. All the food is mediocre. But a great place for a boozy brunch! The perfect spot for bottomless brunch. They have a DJ and dancing poles!', 'Amazing decor, delicious food, GREAT service! We came for happy hour and got amazing brunch.'], Embedding: [-0.031883690506219864, 0.04256381466984749, -0.07604037970304489, 0.003130268072709441, -0.016973299905657768, -0.0016924338415265083, 0.002255490282550454, -0.00013086985563859344, -0.02428487502038479, 0.007122257724404335, -0.020093776285648346, -0.006397628225386143, -0.03237983211874962, -0.009080715477466583, 0.021464696153998375, 0.03271929919719696, -0.04567123204469681, 0.010386353358626366, -0.03987419605255127, 0.016503268852829933, 0.033972710371017456, 0.030943630263209343, -0.09431932121515274, -0.0037732950877398252, -0.022483093664050102, 0.04674185439944267, -0.0380985289812088, -0.01058872789144516, -0.011927006766200066, 0.012860538437962532, 0.022456981241703033, -0.008512762375175953, -0.0028740365523844957, -0.05817924812436104, -0.027627309784293175, -0.008258162997663021, 0.03329377993941307, 0.007298518903553486, 0.0009506680071353912, -0.040344227105379105, 0.024572115391492844, 0.024115141481161118, 0.06564749777317047, -0.06857213377952576, -0.004550150129944086, 0.05295669287443161, -0.016437988728284836, 0.043973904103040695, 0.0042563811875879765, -0.015889620408415794, -0.05102435126900673, 0.04347775876522064, -0.054366786032915115, 0.03945639356970787, 0.002506825840100646, 0.004951633978635073, 0.011071814224123955, -0.02579941600561142, 0.04018755257129669, -0.009589914232492447, 0.08512762933969498, 0.04026588797569275, 0.016842735931277275, 0.009864098392426968, -0.030290812253952026, -0.03909081593155861, 0.0009261872619390488, 0.003278784453868866, 0.019023152068257332, -0.014597037807106972, 0.04371277615427971, 0.05316559597849846, -0.05319171026349068, -0.054941266775131226, 0.003109051613137126, 0.004275965970009565, 0.03619229793548584, -0.06089497730135918, -0.04499230161309242, -0.02096855267882347, -0.06146945804357529, -0.00750742107629776, -0.06930328905582428, 0.02347537875175476, 0.019950155168771744, -0.03755016252398491, -0.06460298597812653, -0.013382794335484505, 0.0006422108854167163, 0.047655802220106125, 0.032040368765592575, -0.010412466712296009, 0.027757873758673668, 0.0032265589106827974, -0.0011032645124942064, -0.028384579345583916, -0.03997864946722984, 0.008055789396166801, -0.013134722597897053, 0.029585767537355423, 0.06857213377952576, -0.022992292419075966, -0.019924042746424675, -0.05635135620832443, 0.044365592300891876, -0.020328789949417114, 0.034938883036375046, 0.046689629554748535, -0.028358466923236847, -0.051311589777469635, -0.04773414134979248, 0.0014125375309959054, -0.05452346056699753, -0.005718696396797895, -0.03021247312426567, 0.062096163630485535, 0.04193710535764694, -0.04739467427134514, 0.02062908746302128, 0.02134718745946884, -0.03713235631585121, 0.01810920424759388, -0.009087243117392063, -0.02040712907910347, 0.014009499922394753, -0.07295907288789749, -0.011450449004769325, 0.014884278178215027, -0.03240594640374184, -0.026896150782704353, 0.0019388730870559812, -0.022639770060777664, -0.008956680074334145, -0.03026469796895981, -0.044156692922115326, 0.0020155792590230703, -0.04185876622796059, -0.011006532236933708, -0.0376807264983654, -0.00020594405941665173, 0.044548384845256805, 0.013500301167368889, 0.049744825810194016, -0.04256381466984749, -0.009537688456475735, -0.03997864946722984, -0.01945401169359684, 0.0010232941713184118, -0.04120595008134842, -0.005473888944834471, 0.010327599942684174, 0.0420154444873333, -0.03329377993941307, -0.056142453104257584, -0.0175086110830307, 0.00838219840079546, 0.00368516449816525, 0.018970927223563194, -0.030160248279571533, 0.036296747624874115, -0.03198814019560814, 0.006423741113394499, -0.04736856371164322, 0.016398819163441658, -0.02697448991239071, 0.004112761002033949, -0.03441663086414337, 0.017417216673493385, -0.037811290472745895, -0.005637093912810087, 0.017234427854418755, 0.026243332773447037, 0.05870150402188301, -0.006371515337377787, -0.0038646897301077843, -0.01367003470659256, 0.023148968815803528, -0.005150743760168552, -0.009263504296541214, -0.04488784819841385, -0.011313357390463352, 0.014100895263254642, 0.01672522909939289, -0.020524635910987854, -0.03619229793548584, 0.041310399770736694, -0.029742443934082985, 0.011470033787190914, 0.019401786848902702, 0.02809733897447586, 0.007840358652174473, 0.04402612894773483, 0.019375674426555634, -0.02504214458167553, 0.005607717204838991, -0.023605942726135254, 0.046089038252830505, 0.03854244574904442, -0.015158462338149548, 0.07452584058046341, -0.013891993090510368, 0.0004320847219787538, 0.06663978844881058, -0.029402976855635643, 0.021477751433849335, 0.00399198941886425, 0.015458758920431137, 0.04932701960206032, 0.012919291853904724, -0.024376269429922104, 0.04903978109359741, 0.012632051482796669, 0.01962374523282051, -0.021673597395420074, 0.01787419058382511, -0.0018719590734690428, -0.0343121774494648, 0.0708700567483902, 0.01385282352566719, 0.014466473832726479, -0.029298527166247368, 0.05932820960879326, 0.0049287849105894566, -0.029011286795139313, 0.017404159530997276, 0.02659585513174534, -0.03237983211874962, -0.005735016893595457, 0.028985172510147095, 0.02347537875175476, -0.022026119753718376, 0.006965580862015486, 0.006348666734993458, -0.007043919526040554, -0.006655491888523102, 0.002472552703693509, -0.0385163351893425, -0.014727601781487465, 0.001842582249082625, 0.017848078161478043, 0.009491991251707077, -0.02809733897447586, 0.018187543377280235, 0.03731514513492584, 0.049405358731746674, -0.027575083076953888, 0.007683682255446911, -0.023592885583639145, 0.02096855267882347, 0.018200600519776344, 0.050710998475551605, -0.05426233261823654, 0.012364395894110203, -0.01126113161444664, -0.0026945113204419613, 0.001499036094173789, 0.011000003665685654, -0.006815432570874691, 0.009851042181253433, -0.04162375256419182, -0.02116439864039421, 0.04655906558036804, -0.04715966060757637, -0.00132440694142133, -0.05105046182870865, -0.0034077162854373455, 0.036662325263023376, 0.03807241842150688, 0.01136558223515749, 0.034181613475084305, -0.04836084693670273, 0.007402969989925623, 0.03365935757756233, 0.03392048552632332, 0.04081425815820694, -0.031126420944929123, -0.0009865730535238981, -0.03499111160635948, -0.0031563809607177973, 0.012318698689341545, 0.010680122300982475, -0.08512762933969498, 0.015184574760496616, -0.00341750867664814, 0.015432646498084068, 0.014675376005470753, -0.02598220482468605, -0.001162834232673049, 0.035905055701732635, -0.006257272325456142, -0.04115372151136398, 0.03000357188284397, -0.019571520388126373, 0.011300300247967243, 0.036688439548015594, 0.0066979252733290195, 0.06371515244245529, -0.007670625578612089, 0.02519882097840309, 0.008434424176812172, 0.06601307541131973, 0.02022433839738369, -0.007944810204207897, 0.017038581892848015, 0.0188403632491827, 0.024023747071623802, -0.02287478558719158, 0.0034338291734457016, -0.006427005399018526, 0.017182201147079468, -0.01501484215259552, 0.02812345139682293, 0.03890802338719368, 0.023997634649276733, -0.022195853292942047, 0.0009604602819308639, 0.023057574406266212, 0.040318116545677185, -0.05640358105301857, -0.0376807264983654, -0.035121675580739975, 0.02966410480439663, 0.032040368765592575, 0.004465283360332251, 0.01942789927124977, -0.04102316126227379, 0.07055670022964478, 0.0012060834560543299, 0.02173887938261032, -0.04749912768602371, 0.031831465661525726, -0.035696156322956085, 0.036087844520807266, 0.02851514331996441, -0.021073004230856895, -0.06434186547994614, -0.022391699254512787, -0.016816623508930206, 0.038986362516880035, 0.04527954012155533, 0.05102435126900673, -0.03525223582983017, -0.02348843589425087, -0.008767361752688885, 0.004896143916994333, -0.027052829042077065, 0.008715136907994747, 0.029011286795139313, -0.001078783767297864, -0.008205937221646309, -0.036270637065172195, -0.011913950555026531, -0.011515730991959572, -1.555545713927131e-05, -0.014414248056709766, 0.02000238001346588, 0.01365697756409645, -0.007396441884338856, -0.01831810735166073, -0.007631456479430199, 0.012664692476391792, 0.03371158242225647, 0.017978640273213387, 0.03778517618775368, 0.004311870783567429, 0.01143739279359579, 0.027810098603367805, -0.003887538332492113, -0.021516920998692513, -0.008512762375175953, 0.0015928788343444467, 0.026308614760637283, -0.005144215188920498, 0.025916922837495804, -0.009681308642029762, 0.038202978670597076, 0.026687249541282654, 0.016255198046565056, 0.018983982503414154, 0.020093776285648346, -0.002870772499591112, -0.01183561235666275, 0.05123325064778328, -0.010627896524965763, 0.01579822413623333, 0.005186648573726416, 0.015745999291539192, -0.04081425815820694, -0.02232641726732254, 0.013617808930575848, 0.010451635345816612, -0.044940073043107986, -0.056664709001779556, -0.0376807264983654, -0.021516920998692513, -0.027235617861151695, -0.006952524650841951, 0.012938876636326313, -0.024115141481161118, 0.002519882284104824, 0.06684868782758713, -0.03574838116765022, -0.044757284224033356, -0.05240832641720772, 0.004455490969121456, -0.015432646498084068, 0.0023909504525363445, -0.022195853292942047, -0.023410096764564514, -0.012462318874895573, -0.013350153341889381, -0.0053335330449044704, 0.020720481872558594, 0.019140658900141716, 0.0008625373593531549, -0.00848012138158083, 0.01980653591454029, -0.03308487683534622, 0.028332354500889778, 0.04217212274670601, 0.03634897246956825, -0.01213590893894434, 0.01710386388003826, 0.010608312673866749, -0.0373934842646122, 0.010817214846611023, 0.012181606143712997, -0.012259945273399353, -0.03063027746975422, -0.007585759274661541, -0.05319171026349068, -0.015732944011688232, -0.036113958805799484, 0.02351454831659794, -0.005650150123983622, -0.00505934888496995, -0.020485466346144676, 0.00592759856954217, 0.03057805262506008, -0.013800597749650478, -0.0028462917543947697, -0.029507428407669067, 0.0007801189785823226, 0.03525223582983017, -0.008467065170407295, 0.06533414870500565, 0.020916327834129333, 0.06099942699074745, -0.006531456019729376, -0.03480831906199455, 0.0032543037086725235, -0.03846410661935806, 0.007696738466620445, 0.0039169155061244965, -0.00422700447961688, 0.015249856747686863, -0.002080861246213317, -0.006675076670944691, -0.02788843773305416, -0.039534732699394226, -0.0554635189473629, -0.04906589165329933, 0.007513949181884527, -0.021438583731651306, 0.003459941828623414, -0.018709799274802208, -0.046089038252830505, 0.041310399770736694, 0.027287842705845833, -0.013591696508228779, -0.0013896889286115766, -0.010040359571576118, 0.038777463138103485, 0.010255790315568447, 0.00020553605281747878, -0.023618999868631363, 0.017952527850866318, 0.03710624575614929, 0.021477751433849335, 0.013337096199393272, -0.033789921551942825, 0.030290812253952026, -0.06089497730135918, 0.011150152422487736, 0.0012240359792485833, -0.10988253355026245, 0.02021128311753273, -0.005062613170593977, -0.004364096559584141, -0.004994066897779703, -0.008728193119168282, 0.03890802338719368, 0.02254837565124035, -0.01271038968116045, -0.017756681889295578, -0.014845108613371849, 0.005078933667391539, -0.011953120119869709, 0.032066479325294495, 0.0376807264983654, -0.011254603043198586, -0.04441782087087631, 0.016842735931277275, 0.0023697337601333857, 0.023162025958299637, -0.010451635345816612, -0.06543859839439392, -0.03159644827246666, 0.03227538242936134, 0.0221305713057518, -0.015576266683638096, -0.0004443250654730946, 0.03316321596503258, 0.035696156322956085, -0.011959647759795189, 0.012109796516597271, -0.025838583707809448, 0.013813654892146587, -0.040918707847595215, 0.021895555779337883, 0.009576858021318913, -0.0186967421323061, 0.00462522404268384, 0.004883087705820799, -0.0001778932346496731, -0.015027898363769054, -0.008068845607340336, -0.031230870634317398, 0.01096083503216505, -0.007520477287471294, -0.021712766960263252, -0.006240951828658581, -0.006534720305353403, 0.022587545216083527, -0.011607125401496887, -0.008525818586349487, -0.014557868242263794, -0.007794661447405815, 0.03373769670724869, -0.06418518722057343, 0.011254603043198586, -0.009955492801964283, -0.012077155523002148, -0.03350268304347992, 0.03392048552632332, 0.016398819163441658, 0.018631460145115852, 0.020459353923797607, -0.0017870926531031728, -0.024337099865078926, -0.029925232753157616, -0.030343037098646164, 0.025133538991212845, 0.0074682519771158695, -0.009283089078962803, -0.0014272260013967752, 0.021869443356990814, -0.018174486234784126, 0.033424343913793564, 0.02288784086704254, 0.0026569741312414408, -0.020550748333334923, -0.014192289672791958, 0.02386707067489624, 0.019297335296869278, -0.002025371650233865, -0.00727240601554513, 0.022953122854232788, 0.03522612527012825, 0.05144215375185013, -0.0002933606447186321, 0.024376269429922104, 0.00697210943326354, -0.06084275245666504, 0.05332227423787117, -0.02518576569855213, 0.029899120330810547, -0.011776858940720558, 0.01790030300617218, 0.030108021572232246, -0.03000357188284397, -0.029115736484527588, 0.00787952821701765, 0.012971517629921436, 0.05334838479757309, 0.020315734669566154, 0.023984577506780624, 0.02329258993268013, 0.03467775508761406, 0.03794185444712639, 0.0013815286802127957, 0.01029495894908905, -0.01942789927124977, -0.005261722952127457, 0.01735193468630314, -0.022600600495934486, -0.025929979979991913, 0.013513357378542423, -0.002226113574579358, -0.009870626963675022, -0.022248078137636185, 0.003900594776496291, -0.03522612527012825, -0.008088430389761925, -0.05676915869116783, 0.05488903820514679, 0.0036819004453718662, -0.029220188036561012, 0.041467078030109406, -0.02540772408246994, -0.020550748333334923, -0.001898071845062077, 0.014022557064890862, -0.01173768937587738, -0.046324051916599274, -0.006123444065451622, -0.022182796150445938, 0.007187539711594582, 0.018801193684339523, -0.03867300972342491, -0.03407716378569603, -0.013696147128939629, 0.025747189298272133, 0.014675376005470753, 0.014636206440627575, 0.019519293680787086, -0.007840358652174473, -0.04185876622796059, -0.01656855084002018, 0.0184878408908844, 0.004683977924287319, 0.026439178735017776, 0.026034429669380188, 0.0009767807787284255, -0.0188403632491827, -0.00727240601554513, -0.008643326349556446, 0.006244215648621321, -0.02057686075568199, -0.002157567534595728, 0.02330564521253109, 0.008310388773679733, 0.0010143178515136242, 0.031309209764003754, -0.002774481661617756, 0.0007397257722914219, 0.021477751433849335, -0.001484347740188241, -0.024402381852269173, -0.014153121039271355, 0.026608910411596298, 0.017965584993362427, 0.04248547554016113, -0.010255790315568447, -0.0005830491427332163, 0.013232645578682423, -0.034547191113233566, -0.0022179533261805773, -0.020159058272838593, 0.010249261744320393, 0.010340656153857708, 0.010125226341187954, -0.018148373812437057, 0.0063029695302248, -0.006505343597382307, 0.02501603215932846, -0.011724633164703846, -0.0032820485066622496, -0.006495551206171513, -0.03671455383300781, 0.049353133887052536, 0.004504452459514141, 0.02274422161281109, -0.05368785187602043, 0.030656389892101288, -0.00019472373242024332, 0.03731514513492584, -0.006560833193361759, 0.016829678788781166, -0.0016842735931277275, -0.012971517629921436, 0.020341847091913223, 0.018931757658720016, -0.0264000091701746, -0.0037994077429175377, -0.03313710168004036, 0.04543621838092804, 0.021712766960263252, 0.0017593477386981249, -0.009498519822955132, 0.00932878628373146, 0.012729974463582039, 0.03731514513492584, -0.03525223582983017, 0.026530573144555092, -0.012521072290837765, -0.0063160257413983345, -0.03042137622833252, 0.019754309207201004, -0.07160121202468872, 0.016059352084994316, 0.004504452459514141, 0.04773414134979248, -0.01966291479766369, -0.007233236916363239, 0.013330568559467793, -0.005718696396797895, -0.02595609240233898, 0.02851514331996441, -0.027679534628987312, -0.028985172510147095, 0.00045330135617405176, -0.00466112932190299, -0.012834426015615463, 0.013134722597897053, 0.00016932497965171933, -0.009491991251707077, -0.027966775000095367, 0.015576266683638096, 0.013905049301683903, -0.017821963876485825, -0.0022048968821763992, -0.010288430377840996, -0.029376864433288574, 0.025929979979991913, -0.0029132056515663862, 0.03373769670724869, 0.00640415633097291, -0.03042137622833252, 0.010830271057784557, 0.00029193260706961155, 0.008897925727069378, 0.028750158846378326, -0.014740657992661, -0.02504214458167553, -0.010138282552361488, 0.033789921551942825, -0.007925225421786308, -0.018200600519776344, -0.02655668556690216, -0.011378639377653599, -0.040527015924453735, -0.026896150782704353, -0.0016826415667310357, 0.030760841444134712, -0.04251158609986305, 0.01454481203109026, -0.0303952619433403, -0.06423740833997726, 0.003691692603752017, 0.01252760086208582, 0.012449262663722038, -0.009557273238897324, 0.007853414863348007, -0.016490213572978973, -0.00731157511472702, 0.039560843259096146, -0.03157033771276474, -0.007500892970710993, 0.029585767537355423, 0.00731157511472702, 0.03117864578962326, -0.00922433566302061, -0.03251039609313011, 0.017286652699112892, 0.029899120330810547, -0.011208905838429928, -0.023579830303788185, -0.010210092179477215, 0.004569734446704388, -0.0032543037086725235, -0.03180535137653351, 0.02154303342103958, 0.014988728798925877, 0.009407124482095242, -0.022966179996728897, 0.023018404841423035, -0.0288546085357666, -0.008839172311127186, 0.026099711656570435, 0.002346885157749057, -0.011607125401496887, -0.002598220482468605, 0.03522612527012825, 0.00915252510458231, -0.02945520356297493, 0.010438579134643078, -0.00043167671537958086, -0.021138286218047142, 0.012455790303647518, -0.02559051290154457, -0.03345045819878578, 0.018135318532586098, -0.04039645195007324, -0.014218402095139027, 0.015615435317158699, 0.012044514529407024, -0.03478220850229263, -0.01693413034081459, 0.04491396248340607, 0.0028038586024194956, -0.06601307541131973, 0.011920479126274586, 0.00341750867664814, 0.036479536443948746, -0.014492586255073547, 0.023553717881441116, 0.02543383650481701, 0.016790511086583138, -0.019924042746424675, -0.012932348996400833, 0.021321075037121773, 0.009283089078962803, 0.004915728699415922, 0.018226712942123413, 0.018762024119496346, 0.020498523488640785, 0.0004280045977793634, -0.003900594776496291, -0.020694369450211525, -0.008741249330341816, 0.03509556129574776, -0.0013505197130143642, 0.005108310375362635, 0.04883087798953056, 0.036087844520807266, -0.0007719587301835418, 0.011718104593455791, 0.004096440505236387, -0.023814845830202103, -0.02888072282075882, 0.026713361963629723, -0.0310219693928957, 0.0036394670605659485, -0.02598220482468605, 0.019349562004208565, 0.019571520388126373, -0.013722259551286697, 0.03606173396110535, -0.028254015371203423, 0.006710981484502554, 0.020276565104722977, -0.06026827171444893, -0.03287597745656967, -0.002227745484560728, -0.0171560887247324, 0.04193710535764694, -0.012867067009210587, 0.007376857101917267, -0.009576858021318913, 0.004945105407387018, -0.07034780085086823, 0.02906351163983345, -0.018030866980552673, 0.012083684094250202, 0.007043919526040554, 0.028802383691072464, 0.012449262663722038, 0.020563805475831032, -0.017821963876485825, -0.03478220850229263, 0.005281307268887758, 0.01771751418709755, 0.0025672116316854954, -0.014231459237635136, 0.025499118492007256, 0.03331989422440529, -0.017586950212717056, 0.017782796174287796, -0.01297804620116949, -0.06361070275306702, -0.01599407009780407, -0.013154307380318642, 0.03538279980421066, 0.0023974785581231117, 0.005548963323235512, 0.014975672587752342, -0.007376857101917267, 0.04232879728078842, -0.01754778064787388, 0.0073442161083221436, 0.03402493894100189, 0.030708616599440575, 0.0006030417280271649, 0.011169737204909325, 0.016855791211128235, -0.014335909858345985, 0.04057924076914787, -0.026256388053297997, 0.008114542812108994, -0.020511580631136894, 0.025655794888734818, 0.010386353358626366, -0.012521072290837765, -0.01434896606951952, 0.01492344681173563, 0.03796796500682831, 0.016829678788781166, -0.021073004230856895, 0.02557745762169361, -0.011287244036793709, 0.04178043082356453, -0.02906351163983345, -0.013010687194764614, 0.046271827071905136, 4.031668504467234e-05, 0.01059525553137064, -0.025551343336701393, 0.022104458883404732, -0.047342449426651, 0.033946599811315536, -0.03950861841440201, -0.010144810192286968, -0.02523799054324627, 0.0012925820192322135, 0.027783986181020737, -0.0016540806973353028, -0.023044519126415253, -0.03081306628882885, 0.0004155602364335209, 0.01753472350537777, 0.01578516885638237, -0.012051043100655079, 0.033998824656009674, -0.001113872742280364, 0.05044987052679062, -0.008734720759093761, -0.0037373900413513184, 0.016973299905657768, 0.010608312673866749, -0.006120180245488882, -0.03392048552632332, 0.007846887223422527, -0.018252825364470482, 0.019976267591118813, -0.004612167831510305, 0.015863506123423576, 0.02754897065460682, 0.008832643739879131, -0.002038428094238043, 0.026791701093316078, -0.01318041980266571, -0.027235617861151695, -0.04162375256419182, 0.02518576569855213, 0.0221305713057518, -0.007957866415381432, -0.03906470164656639, 0.015275969170033932, -0.0013317512348294258, 0.01963680237531662, -0.0050234440714120865, -0.02018517069518566, -0.006296441424638033, -0.026073599234223366, -0.046506840735673904, 0.013565583154559135, -0.0074682519771158695, -0.01693413034081459, 0.016686059534549713, -0.020511580631136894, 0.0248593557626009, 0.033763810992240906, 0.019571520388126373, -0.008414839394390583, -0.0009188430267386138, -0.016973299905657768, 0.0235276035964489, -0.013878936879336834, 0.0722801461815834, 0.0037145414389669895, -0.006528192199766636, 0.03835965692996979, 0.022078346461057663, -0.002131454646587372, 0.002240801928564906, 0.0015496296109631658, 0.014688432216644287, -0.012481903657317162, -0.01983264833688736, -0.011110982857644558, 0.05162494257092476, 0.015550153329968452, 0.023932352662086487, -0.0032591999042779207, 0.0034762623254209757, 0.0019715139642357826, 0.016829678788781166, 0.03522612527012825, 0.003215134609490633, 0.012795256450772285, -0.02848903089761734, -0.014492586255073547, 0.03462553024291992, -0.002998072188347578, 0.02484629862010479, 0.02523799054324627, 0.0038287846837192774, -0.020093776285648346, 0.04619348794221878, -0.009002377279102802, -0.005278043448925018, 0.0030209210235625505, -0.00016585687990300357, 0.015341251157224178, -0.006724037695676088, 0.037654612213373184, -0.0070373909547924995, -0.008010092191398144, -0.030525825917720795, 0.01634659245610237, -0.05212108790874481, 0.010477748699486256, 0.008134127594530582, 0.017848078161478043, -0.03864689916372299, -0.05347894877195358, -0.011189321056008339, -0.022626714780926704, -0.029925232753157616, -0.008127599023282528, 0.011137096211314201, -0.009805344976484776, -0.01771751418709755, -0.015027898363769054, -0.041702091693878174, 0.0219216700643301, -0.01357863936573267, 0.032040368765592575, 0.014740657992661, 0.01809614896774292, 0.03190980479121208, 0.013350153341889381, 0.0036296749021857977, 0.024128198623657227, 0.015132348984479904, -0.0005659126327373087, 0.0005544883315451443, -0.013931161724030972, 0.02079882100224495, -0.03449496626853943, 0.02347537875175476, 0.013160835020244122, 0.007611872162669897, 0.007233236916363239, 0.022783391177654266, -0.030316924676299095, 0.02522493526339531, 0.031648676842451096, 0.05178162083029747, 0.00014096814265940338, -0.027392294257879257, 0.02216974087059498, -0.0012101635802537203, 0.008865284733474255, -0.0058296755887568, -0.004119289107620716, 0.013539470732212067, -0.0009694365435279906, -0.027836211025714874, -0.02115134336054325, -0.0031482207123190165, -0.0002582716115284711, -0.03274541348218918, -0.0007870551780797541, -0.0010673594661056995, -0.028201790526509285, -0.006015729159116745, -0.0026651343796402216, 0.02465045265853405, 0.027418406680226326, 0.00419109920039773, -0.012148965150117874, -0.024493776261806488, -0.025538288056850433, 0.01394421886652708, -0.0016973299207165837, -0.005470625124871731, -0.002227745484560728, 0.022665882483124733, 0.002053116448223591, -0.014022557064890862, -0.017469441518187523, 0.015628492459654808, -0.02713116630911827, 0.00991632416844368, 0.01136558223515749, -0.0327715240418911, 0.014832052402198315, -0.0055913967080414295, 0.007474780082702637, -0.03170090168714523, 0.01595490239560604, -0.008610685355961323, -0.021229680627584457, 0.0020482202526181936, -0.003606826066970825, 0.018970927223563194, 0.009942436590790749, 0.015941845253109932, -0.01658160798251629, -0.013369737192988396, 0.0021477751433849335, -0.012175078503787518, 0.003662315895780921, 0.0005091989878565073, 0.008930566720664501, -0.0310219693928957, 0.01962374523282051, 0.0373934842646122, 0.03180535137653351, 0.0034207727294415236, 0.030865292996168137, -0.00466112932190299, -0.004031158518046141, 0.0007234052754938602, 0.010503861121833324, -0.013526414521038532, -0.035121675580739975, 0.03005579672753811, -0.012645108625292778, -0.017273595556616783, 0.017861133441329002, 0.02406291663646698, 0.015067067928612232, 0.008891398087143898, 0.016411874443292618, 0.002191840438172221, -0.010425522923469543, 0.02518576569855213, -0.014779826626181602, -0.020498523488640785, -0.009655196219682693, -0.03467775508761406, -0.01001424714922905, 0.0060548982582986355, -0.012814841233193874, -0.033789921551942825, 0.03368547186255455, 0.018553122878074646, 0.025747189298272133, 0.034938883036375046, -0.01830505020916462, -0.0033293780870735645, 0.026870038360357285, -0.031857576221227646, 0.0022522262297570705, 0.08883564174175262, 0.02522493526339531, 0.014401191845536232, 0.02812345139682293, -0.012945405207574368, -0.002170623978599906, -0.022953122854232788, -0.00368516449816525, 0.008786946535110474, -0.010836798697710037, 0.005526114720851183, -0.041075386106967926, 0.0144273042678833, -0.015445702709257603, 0.042067669332027435, -0.0017103863647207618, -0.01827893778681755, 0.011489618569612503, 0.02620416320860386, 0.01827893778681755, 0.008904454298317432, 0.007853414863348007, 0.02523799054324627, 0.03217093273997307, -0.03882968798279762, -0.019284280017018318, -0.016633832827210426, -0.013461132533848286, -0.0038353127893060446, 0.04452227056026459, 0.023971522226929665, 0.003936499822884798, 0.021608315408229828, -0.033398229628801346, -0.022613657638430595, -0.0184878408908844, -0.023618999868631363, -0.0033212178386747837, 0.011117511428892612, 0.014492586255073547, -0.002660238416865468, -0.002808754565194249, -0.023135913535952568, 0.016020184382796288, 0.03465164452791214, 0.014414248056709766, 0.0025802678428590298, -0.025355499237775803, -0.03718458116054535, -0.0004753340035676956, 0.005653414409607649, 0.01579822413623333, 0.035121675580739975, 0.02519882097840309, -0.006763207260519266, -0.028227902948856354, -0.007997035048902035, -0.013865879736840725, -0.024963807314634323, -0.03546113893389702, -0.010529973544180393, 0.018983982503414154, -0.013095553033053875, -0.0058296755887568, 0.016477156430482864, 0.00486350292339921, 0.021294962614774704, -0.013193476013839245, -0.006848073564469814, 0.027757873758673668, 0.01019703596830368, 0.0024464400485157967, -0.0058525241911411285, 0.014322853647172451, 0.015576266683638096, 0.00640415633097291, -0.017208315432071686, 0.00954421702772379, 0.00764451315626502, 0.002025371650233865, -0.02523799054324627, -0.0019176563946530223, 0.01732582226395607, 0.01850089617073536, 0.006413948722183704, -0.0030486658215522766, 0.001666321069933474, -0.0011791547294706106, -0.02982078120112419, 0.013232645578682423, -0.019767366349697113, 0.03405104950070381, 0.0005259274621494114, 0.03755016252398491, 0.03462553024291992, 0.0025802678428590298, -0.016973299905657768, 0.0050234440714120865, -0.01519763097167015, -0.021464696153998375, 0.0200284942984581, -0.017273595556616783, 0.012318698689341545, 0.003985461313277483, 0.006567361298948526, -0.007637984585016966, -0.02253531850874424, -0.0385163351893425, -0.06815432757139206, -0.010973891243338585, 0.03060416504740715, -0.006959052756428719, -0.017182201147079468, -0.0034566777758300304, 0.009779231622815132, -0.021647484973073006, -0.03446885570883751, -0.016829678788781166, -0.004422849975526333, -0.0017250747187063098, 0.01076498907059431, 0.012736503034830093, 0.010758460499346256, 0.002289763418957591, 0.0029997043311595917, 0.014257571659982204, 0.01693413034081459, 0.03961307182908058, 0.003969140816479921, 0.025564400479197502, -0.0007242212886922061, -0.0019290808122605085, -0.021869443356990814, -0.0033522266894578934, 0.004406529478728771, 0.010536502115428448, -0.012560241855680943, -0.0031988141126930714, -0.011953120119869709, -0.02216974087059498, -0.03721069544553757, -3.516553624649532e-05, -0.013206533156335354, -0.04269437491893768, 0.0021379829850047827, -0.029585767537355423, -0.023579830303788185, 0.013435019180178642, 0.016503268852829933, 0.0373934842646122, -0.02136024460196495, 0.02388012781739235, 0.024689622223377228, 0.002283235313370824, 0.014845108613371849, -0.017743626609444618, 0.015223744325339794, -0.009733534418046474, -0.008499706164002419, -0.013343624770641327, -0.0009278192883357406, -0.03026469796895981, -0.0338943749666214, -0.020916327834129333, 0.0020890214946120977, 0.029768556356430054, 0.008290803991258144, 0.003557864809408784, -0.0063127619214355946, 0.005676263011991978, 0.0012248520506545901, -0.007181011140346527, -0.018709799274802208, -0.011613653972744942, 0.01156142819672823, 0.04883087798953056, -0.002221217378973961, -0.007540062069892883, 0.007200595922768116, -0.011567956767976284, -0.003006232436746359, 0.010849854908883572, 0.01690801791846752, -0.03449496626853943, 0.02890683524310589, 0.03749793395400047, -1.264837192138657e-05, -0.01135905459523201, -0.019023152068257332, -0.017769739031791687, -0.0458017960190773, 0.0042074196971952915, -0.010112169198691845, 0.004233532585203648, 0.017090806737542152, -0.015380420722067356, 0.007801189552992582, 0.002544362796470523, -0.017861133441329002, -0.006332346238195896, -0.014662319794297218, 0.0032885768450796604, 0.027105053886771202, 0.023357871919870377, 0.0041290814988315105, 0.012964989989995956, -0.006900298874825239, -0.028932947665452957, 0.020367959514260292, 0.01980653591454029, -0.035696156322956085, 0.00721365213394165, 0.012423149310052395, -0.03961307182908058, 0.028018999844789505, 0.021856388077139854, -0.040735919028520584, 0.034729983657598495, -0.0036198825109750032, 0.022078346461057663, -0.004618695937097073, -0.0530872568488121, -0.007233236916363239, -0.02463739737868309, -0.011809499934315681, 0.017417216673493385, 0.005522850435227156, -0.02752285823225975, -0.00012862579023931175, -0.024728791788220406, 0.02846291847527027, -0.012547185644507408, -0.012951932847499847, 0.0065445126965641975, -0.02042018435895443, -0.02039407193660736, 0.04556678235530853, -0.024976862594485283, 0.001233012299053371, -0.002960535231977701, -0.0011261131148785353, 0.022404754534363747, -0.017652232199907303, 0.03567004203796387, -0.006893770769238472, 0.041884880512952805, 0.01616380363702774, -0.01183561235666275, -0.023775676265358925, -0.01444036141037941, -0.03929971531033516, -0.01633353717625141, 0.03990031033754349, -0.0019976268522441387, -0.006332346238195896, -0.02368428185582161, 0.0052551948465406895, -0.0215691477060318, -0.01454481203109026, -0.02638695202767849, -0.06402850896120071, 0.015067067928612232, -0.01826588250696659, 0.01096083503216505, 0.02235252968966961, 0.0034305648878216743, 0.029873007908463478, 0.00922433566302061, -0.01964985765516758, -0.00717448303475976, -0.01831810735166073, 0.020824933424592018, 0.01492344681173563, 0.012455790303647518, -0.0022571224253624678, 0.027679534628987312, -0.009981606155633926, 0.029533540830016136, 0.06314067542552948, -0.006234423723071814, -0.026896150782704353, 0.03381603583693504, -0.0002366469707340002, -0.016242142766714096, -0.011398223228752613, -0.012142437510192394, 0.02154303342103958, 0.023423153907060623, -0.002619437174871564, 0.006681604776531458, -0.00032396154711022973, -0.014988728798925877, -0.06047717109322548, 0.020472411066293716, 0.008010092191398144, 0.023971522226929665, 0.013115137815475464, 0.009465878829360008, -0.01923205330967903, 0.0016198076773434877, 0.033972710371017456, -0.003887538332492113, 0.01203798595815897, -0.0011930271284654737, 0.01156142819672823, -0.012827897444367409, -0.00211513414978981, 0.07008667290210724, -0.01079110149294138, -0.036087844520807266, 0.011985761113464832, -0.027000602334737778, -0.02828012779355049, 0.0014345701783895493, 0.00030906908796168864, -0.021412469446659088, 0.02039407193660736, 0.028045114129781723, 0.013356680981814861, 0.0008502970449626446, 0.007350744213908911, -0.0021510394290089607, 0.010327599942684174, -0.0038353127893060446, -0.04807360842823982, 0.0030454015359282494, -0.00012372963828966022, 0.006704453378915787, -0.005908013787120581, -0.01002077478915453, -0.04543621838092804, -0.025081314146518707, 0.0031221078243106604, -0.03331989422440529, 0.0037308617029339075, 0.04645461589097977, -0.021099116653203964, 0.011137096211314201, 0.03117864578962326, -0.026608910411596298, 0.04211989417672157, 0.02427181787788868, 0.007109201047569513, 0.004648072645068169, 0.02312285639345646, 0.027627309784293175, -0.004370624665170908, -0.008924039080739021, 0.011887838132679462, 0.0035121673718094826, 0.03694956749677658, -0.004987538792192936, -0.005797034595161676, -0.012925820425152779, -0.010536502115428448, 0.01126765925437212, 0.012625523842871189, -0.016894960775971413, -0.03747182339429855, 0.037445709109306335, 0.013630865141749382, -0.03718458116054535, -0.0034893187694251537, 0.014074781909584999, -0.00972700584679842, 0.0008421367965638638, 0.02021128311753273, -0.019924042746424675, 0.02736618183553219, -0.0016271518543362617, 0.013617808930575848, 0.03527835011482239, -0.012286057695746422, -0.023227307945489883, 0.00855845957994461, -0.035878945142030716, -0.019937098026275635, -0.0248593557626009, -0.010308015160262585, -0.016712171956896782, -0.00586884468793869, -0.00855845957994461, -0.028750158846378326, 0.02327953279018402, 0.03661010041832924, -0.009478935040533543, -0.005016915500164032, 0.014531755819916725, -0.0015757423825562]
Name: Pastis, Address: 52 Gansevoort St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.007014, 40.7392418]}, Rating: 4.5, Reviews: ['I had been here pre-kids (13+ years ago) and we loved it then and we still love it now. Such a lovely atmosphere and the food is spot on. I love when I can find a place that remains consistent and is still great. Can’t wait to come back again on our next visit.\n\nService was great. I was thinking of something and she brought it right to me without having to say it out loud! Now that’s service!!\n\nIf you have larger parties, I would recommend you make a reservation to avoid a wait. Most tables are smaller tops.\n\nEverything we ate was great!', 'The trout was good, so was the scallops. As for the steak, it came a bit more done than expected, as it would be good if the meat cab also come with some salad and not just fries. It helps to balance off the greasiness of the meat and garlic butter. Service was great as well.', 'The most impressive part of the experience is the hostess stand - multiple monitors and hostess, figuring out seating availability like high frequency traders. Hats off.\n\nWe didn’t have a reservation for the busy brunch time. The hostesses magically found an outdoor table for us. Perfect weather for some bubbles, steak tartare and modern French fares on the side walk for a Sunday, people watching and post Whitney Biennial visit.', 'My favorite French restaurant in NYC! I know there are plenty of French spots in the city, but Pastis is hands down the best. We absolutely love the escargot—perfectly mixed with garlic and butter, it had us finishing the entire basket of bread. The onion soup, steak, and oysters are all excellent as well. Their brunch is another highlight. The egg white omelette and eggs benedict are our go-tos. It’s the perfect place to start a day with decent breakfast.', 'Overall a really lovely dinner. Damien our server was lovely, attentive, great energy, and no mistakes. Delicious food, great non alcoholic options. Brothers got cocktails and loved them. Dishes we loved: steak au poivre, warm shrimp salad, crispy artichokes, sardines, cauliflower au gratin, sorbet and ice cream.\n\nJust would have preferred an indoor table. Upon asking the hosts we’re quite cold and harsh, didn’t give much flexibility. Told us they could only cancel our reservation and rebook for 8:15 which was 30 mins wait from our arrival.'], Embedding: [-0.02187160588800907, 0.01753430999815464, -0.027848610654473305, -0.039934854954481125, 0.01864508166909218, -0.025957655161619186, -0.06045766547322273, 0.005500960163772106, -0.016066506505012512, -0.022109627723693848, -0.011405235156416893, -0.04937640577554703, 0.02336585707962513, -0.04837142303586006, -0.03773975744843483, 0.04482753574848175, 0.0388769768178463, -0.004892680794000626, 0.004228201694786549, 0.034830596297979355, 0.04760446026921272, -0.01033413503319025, -0.04011998325586319, -0.01029446441680193, 0.011854832991957664, 0.03350825235247612, -0.019570723176002502, -0.006519166752696037, 0.035200852900743484, 0.024013806134462357, 0.03623228520154953, -0.009666350670158863, -0.012641629204154015, -0.014691265299916267, -0.01670123264193535, 0.006079486571252346, 0.002646345179527998, 0.010644886642694473, 0.029012273997068405, 0.027531247586011887, 0.03229169175028801, 0.04022577032446861, 0.029699893668293953, -0.05569722130894661, -0.009930819272994995, 0.025494834408164024, -0.04255310073494911, 0.006843141280114651, 0.006046427879482508, 0.017679767683148384, 0.012416830286383629, 0.05871216952800751, -0.04080760106444359, -0.0028645324055105448, -0.0013603635597974062, -0.048106953501701355, 0.009653126820921898, -0.018486399203538895, 0.052073992788791656, 0.019187241792678833, 0.10219091176986694, 0.0014959040563553572, 0.025970878079533577, 0.023154281079769135, 0.005563771352171898, 0.015431779436767101, -0.0003739760140888393, 0.006029898300766945, -0.015312768518924713, -0.01716405339539051, 0.02493944764137268, 0.029699893668293953, -0.0483185276389122, -0.03157762438058853, 0.009097741916775703, -0.026380805298686028, 0.020840175449848175, -0.03615294396877289, -0.020007098093628883, -0.04294980317354202, -0.04138943552970886, 0.004932350944727659, -0.024793989956378937, 0.025137800723314285, 0.00011601520964177325, -0.04678460583090782, -0.04979955777525902, -0.002185177057981491, -0.008826660923659801, 0.028245313093066216, 0.024013806134462357, 0.015114416368305683, 0.07167115807533264, -0.022294756025075912, 0.04289690777659416, -0.03731660917401314, -0.053555019199848175, -0.01873764581978321, -0.05255003646016121, 0.03218590468168259, 0.06733386963605881, -0.04948219284415245, -0.007563820108771324, -0.06204448267817497, 0.019213689491152763, 0.02996436320245266, 0.06283789128065109, -0.003287683008238673, -0.030149491503834724, -0.0703488141298294, -0.056702204048633575, -0.011973844841122627, -0.046176329255104065, -0.000334305630531162, -0.018578963354229927, 0.041812583804130554, -0.017415298148989677, -0.0028496559243649244, -0.010968861170113087, 0.042262181639671326, 0.025151023641228676, -0.008509297855198383, -0.048794571310281754, 0.005061279982328415, 0.0012752375332638621, -0.05299963429570198, -0.003224871587008238, -0.04080760106444359, -0.012800310738384724, -0.09002532809972763, 0.02726677805185318, -0.03509506583213806, 0.022453438490629196, 0.0005967086763121188, -0.02105175144970417, 0.016225187107920647, -0.001447142567485571, -0.005481124855577946, 0.003758769016712904, -0.037581078708171844, 0.043029144406318665, -0.02097241021692753, 0.039961300790309906, -0.013963975012302399, -0.049693766981363297, 0.004730693530291319, -0.027108095586299896, 0.034883491694927216, -0.032582610845565796, 0.054321978241205215, 0.02917095646262169, 0.01913434825837612, -0.007973747327923775, -0.04834497347474098, -0.01791778951883316, -0.01749463938176632, 0.026341134682297707, 0.03469836339354515, -0.02218896895647049, 0.03430166095495224, -0.0405166856944561, 0.053131867200136185, -0.019610393792390823, -0.029065167531371117, -0.00048802836681716144, 0.007233233656734228, -0.046202775090932846, 0.025137800723314285, -0.04019932448863983, 0.01016223058104515, 0.04101917892694473, -0.00045662265620194376, 0.07410427927970886, 0.03631162643432617, 0.005051362328231335, -0.005735676269978285, -0.006046427879482508, 0.028721358627080917, 0.013210237957537174, -0.04292335733771324, -0.03157762438058853, 0.03932657465338707, 0.052788060158491135, 0.01797068491578102, -0.008998565375804901, -0.004224895965307951, -0.06505943089723587, -0.02685685083270073, 0.013163955882191658, 0.005983616225421429, 0.011696151457726955, -0.006241473834961653, 0.020549260079860687, -0.028668465092778206, -0.019663287326693535, -0.054692238569259644, 0.022030286490917206, 0.019597170874476433, -0.02380223013460636, 0.0793936625123024, 0.014849946834146976, 0.016264857724308968, 0.003223218722268939, 0.006803471129387617, 0.0537930428981781, 0.00023450981825590134, 0.02377578429877758, 0.012575511820614338, -0.032582610845565796, -0.02690974436700344, 0.04117785766720772, -0.016965700313448906, 0.015101193450391293, -0.005203431937843561, 0.013249908573925495, -0.01990130916237831, -0.04527713358402252, 0.015233427286148071, 0.005487736314535141, 0.054745130240917206, -0.014135880395770073, 0.027108095586299896, -0.004125719889998436, -0.0006380320410244167, 0.002981890458613634, 0.07193563133478165, 0.03160407394170761, -0.003375288564711809, 0.0003250078880228102, -0.03356114402413368, -0.029118062928318977, 0.02914450876414776, -0.04628211632370949, 0.00043596100294962525, -0.002786844503134489, 0.003092637052759528, -0.042685333639383316, -0.029329637065529823, -0.015286321751773357, -0.007087775506079197, -0.008224993012845516, -0.03139249607920647, 0.04760446026921272, -0.015352439135313034, 0.022136075422167778, -0.009659738279879093, -0.012608570978045464, -0.02295592986047268, -0.004165390506386757, 0.008403509855270386, 0.06373708695173264, -0.05416329950094223, 0.009382045827805996, -0.02880069985985756, -0.029885023832321167, 0.00564641784876585, -0.005081115290522575, 0.005223267246037722, 0.0028265148866921663, -0.03885053098201752, -0.029752789065241814, 0.025891536846756935, 0.020959187299013138, -0.037184372544288635, 0.010677944868803024, -0.02456919103860855, 0.021911276504397392, 0.02217574417591095, -0.0022694766521453857, 0.014096209779381752, -0.06400155276060104, -0.015114416368305683, -1.8530925444792956e-05, 0.05233846232295036, 0.02452952042222023, -0.04839786887168884, -0.01229781936854124, -0.015405332669615746, -0.00536211347207427, -0.003335618181154132, 0.003877780167385936, -0.041891925036907196, -0.023603878915309906, 0.002894285134971142, 0.0076696076430380344, 0.006181968376040459, 0.030096597969532013, -0.011444905772805214, 0.06606441736221313, 0.014638371765613556, -0.026751061901450157, 0.0056695593520998955, 0.018592186272144318, -0.001821531797759235, -0.013249908573925495, 0.0037025692872703075, 0.04273822903633118, -0.008833272382616997, 0.018446728587150574, -0.03845382481813431, 0.02253277786076069, -0.00974569097161293, -0.020840175449848175, -0.005203431937843561, 0.027848610654473305, 0.042288631200790405, -0.0412043072283268, 0.05617326498031616, 0.01029446441680193, 0.03276773914694786, -0.0318949893116951, 0.0554327517747879, -0.03932657465338707, -0.04287046194076538, -0.020549260079860687, -0.017071489244699478, 0.049667321145534515, 0.008224993012845516, -0.04778958857059479, -0.010406863875687122, -0.010433311574161053, -0.005686088465154171, 0.029038721695542336, 0.04101917892694473, 0.02690974436700344, -0.02337907999753952, 0.06892067939043045, -0.031233815476298332, -0.006770412437617779, -0.05091032758355141, 0.017732661217451096, -0.055961690843105316, 0.05643773451447487, 0.037184372544288635, -0.04247375950217247, -0.03282063081860542, -0.00516045605763793, 0.0015132598346099257, 0.05342278629541397, -0.004228201694786549, 0.014122656546533108, -0.013190402649343014, -0.051650840789079666, 0.0008417559438385069, 0.020099662244319916, -0.039511702954769135, 0.0018099612789228559, 0.02414604090154171, 0.003441405948251486, 0.00506789144128561, -0.04443082958459854, 0.020945962518453598, -0.04242086410522461, 0.01713760569691658, -0.02290303446352482, 0.015696248039603233, 0.024807214736938477, 0.04403412714600563, -0.013124285265803337, 0.002067818772047758, -9.003317973110825e-05, 0.012132526375353336, -0.02488655410706997, -0.03226524591445923, -0.0171772763133049, 0.016119400039315224, -0.04316137731075287, 0.02685685083270073, -0.04665237292647362, -0.007272903807461262, 1.7988557374337688e-05, 0.05929400026798248, -0.004459612537175417, -0.00307445484213531, -0.027795715257525444, 0.005001774523407221, 0.0033025594893842936, -0.005038138944655657, 0.0020843481179326773, 0.017243394628167152, 0.0073985266499221325, 0.004988550674170256, 0.04178613796830177, -0.010340746492147446, 0.033640485256910324, 0.0011942439014092088, -0.011782104149460793, -0.01757398061454296, -0.026354359462857246, 0.0031471839174628258, -0.02690974436700344, -0.026314688846468925, -0.042262181639671326, 0.006310896947979927, -0.011001920327544212, 0.030096597969532013, -0.016449986025691032, 0.026261795312166214, -0.009481222368776798, -0.011960620991885662, 0.04580606892704964, -0.03578268736600876, -0.04823918640613556, -0.03467191755771637, 0.05265582352876663, 0.031286709010601044, -0.010869685560464859, -0.006122462451457977, -0.02689652144908905, -0.010499428026378155, -0.009097741916775703, -0.017613651230931282, 0.017415298148989677, -0.03866540268063545, 0.057812973856925964, -0.007008434738963842, 0.020549260079860687, -0.006254697218537331, 0.013011885806918144, 0.047763142734766006, 0.004327377770096064, -0.002676097908988595, -0.011854832991957664, -0.013210237957537174, -0.053528573364019394, 0.02417248673737049, -0.010995307937264442, -0.07590267062187195, -0.039961300790309906, 0.04138943552970886, -0.02221541479229927, -0.04580606892704964, -0.0014000339433550835, 0.012158973142504692, -0.008291110396385193, -0.024370839819312096, -0.006515860557556152, 0.011834997683763504, 0.0116697046905756, -0.0292238499969244, 0.025627069175243378, -0.034486789256334305, -0.0342223197221756, -0.03001725673675537, -0.01947815902531147, -0.016264857724308968, 0.039194341748952866, 0.04363742470741272, 0.0026000631041824818, -0.03538598120212555, 0.0171111598610878, -0.015035076066851616, -0.0300437044352293, -0.053555019199848175, 0.006449743174016476, 0.04987889528274536, 0.003205036511644721, 0.05532696470618248, 0.02417248673737049, 0.006337343715131283, 0.007352244574576616, -0.023855123668909073, -0.013355696573853493, -0.03271484375, 0.0036860399413853884, 0.011854832991957664, 0.010175453498959541, 0.05344923213124275, 0.0033157828729599714, -0.05696667358279228, 0.005957169458270073, 0.011590364389121532, 0.0016248328611254692, -0.005745593924075365, -0.018063249066472054, -0.03506861999630928, -0.0038612508215010166, 0.026248570531606674, 0.0059736985713243484, -0.013104449957609177, -0.027848610654473305, -0.016211964190006256, 0.004049685318022966, 0.019993873313069344, -0.016357421875, -0.09785361588001251, 0.016132622957229614, 0.043822553008794785, -0.03260905668139458, 0.0190285611897707, 0.02803373895585537, 0.020496364682912827, -0.0005289384862408042, -0.013858187943696976, -0.02499234303832054, -0.03824225068092346, -0.025177471339702606, -0.046493690460920334, -0.00691587058827281, 0.027028756216168404, -0.005735676269978285, -0.02139556035399437, -0.025957655161619186, 0.037607524544000626, 0.017018595710396767, 0.03937947005033493, 0.001447142567485571, 0.0072266217321157455, 0.0249130018055439, -0.025468386709690094, 0.014678042382001877, -0.00759026687592268, 0.03985551372170448, 0.022030286490917206, -0.003052966669201851, 0.0014959040563553572, -0.028985828161239624, 0.010466369800269604, -0.004790198989212513, 0.04546226188540459, 0.013765623793005943, -0.01268791127949953, 0.017005370929837227, 0.010453145951032639, 0.030969347804784775, -0.0019124430837109685, -0.023431973531842232, -0.030519749969244003, -0.02336585707962513, -0.044615957885980606, 0.02103852666914463, -0.008469627238810062, -0.023524537682533264, 0.02031123638153076, -0.025494834408164024, -0.005091032478958368, -0.011001920327544212, 0.01380529347807169, 0.002274435479193926, -0.04829208180308342, 0.0036033932119607925, -0.017230169847607613, -0.015140863135457039, -0.0225856713950634, 0.022109627723693848, 0.004264566116034985, 0.05262937769293785, 0.008205157704651356, -0.013977198861539364, 0.0007496049511246383, -0.016621891409158707, -0.0024149345699697733, 0.002026495523750782, -0.006053039338439703, 0.009382045827805996, -0.01345487218350172, 0.020007098093628883, -0.0023884878028184175, 0.03824225068092346, 0.02027156576514244, 0.008317557163536549, 0.001077712164260447, 0.00022190621530171484, -0.010069665499031544, 0.01983519271016121, 0.020734388381242752, 0.01541855651885271, 0.026407252997159958, 0.010149006731808186, 0.02143523097038269, 0.030599089339375496, 0.046546585857868195, -0.029276743531227112, -0.028642017394304276, 0.0554327517747879, -0.00957378651946783, -0.0016595444176346064, -0.015775589272379875, -0.008793601766228676, 0.056226156651973724, -0.02606344223022461, -0.023524537682533264, -0.009587009437382221, 0.03242392838001251, 0.00915724691003561, 0.027875056490302086, 0.04718131199479103, 0.050778090953826904, 0.041072070598602295, -0.004502588417381048, 0.006436519790440798, 0.01557723805308342, -0.0005520795239135623, -0.02216252125799656, 0.01225814875215292, -0.015061522834002972, -0.05175662785768509, 0.0006958846352063119, 0.02106497436761856, -0.03073132410645485, -0.018565740436315536, 0.004178613889962435, -0.03816290944814682, -0.020536035299301147, 0.006453049369156361, 0.022321203723549843, 0.0033042123541235924, -0.022784024477005005, 0.044219255447387695, -0.039511702954769135, 0.02533615194261074, -0.006605118978768587, 0.007094386965036392, -0.0005210870294831693, -0.004515812266618013, -0.010327523574233055, -0.035280194133520126, -0.04276467487215996, 0.02068149298429489, -0.02102530375123024, 0.012284595519304276, 0.005193514283746481, -0.01675412617623806, 0.007808453869074583, -0.0057059237733483315, 0.023498091846704483, 0.02566673792898655, -0.03906210511922836, -0.011828386224806309, 0.07251746207475662, 0.010393640957772732, 0.0016570650041103363, 0.02017900161445141, 0.02177904173731804, -0.005094338674098253, 0.00876715499907732, 0.030704878270626068, -0.015352439135313034, -0.03276773914694786, -0.014479690231382847, 0.009930819272994995, 0.014162327162921429, 0.02292948216199875, 0.037528183311223984, -0.012555676512420177, 0.02221541479229927, 0.007134057581424713, 0.01872442103922367, -0.02806018479168415, -0.020350906997919083, 0.014426796697080135, -0.03731660917401314, 0.034883491694927216, -0.0012876346008852124, 0.0068960352800786495, 0.022731130942702293, 0.011722598224878311, 0.009864701889455318, 0.0233394093811512, 0.01670123264193535, 0.0029504848644137383, 0.0019405429484322667, 0.013203626498579979, 0.007881183177232742, 0.016476433724164963, 0.04287046194076538, 0.0036133108660578728, 0.0318949893116951, 0.009884537197649479, -0.03787199407815933, 0.04823918640613556, 0.00495218625292182, 0.05408395826816559, -0.004224895965307951, 0.004879457410424948, 0.03538598120212555, 0.023193951696157455, 0.015233427286148071, 0.0034347940236330032, 0.0065390015952289104, -0.037528183311223984, 0.019689735025167465, -0.002609980758279562, -0.009891149587929249, -0.02175259403884411, -0.04956153407692909, -0.024410510435700417, -0.006334037985652685, 0.016489656642079353, -0.00623486191034317, 0.010506040416657925, -0.01145151723176241, 0.03078421764075756, -0.010056442581117153, 0.06003451347351074, -0.018883103504776955, -0.016079729422926903, 0.003924062009900808, 0.02455596812069416, -0.056702204048633575, -0.01383174117654562, -0.037528183311223984, 0.007537372875958681, -0.002646345179527998, -0.003504217369481921, 0.026698168367147446, 0.008020029403269291, -0.01557723805308342, 0.006489413790404797, -0.006092709954828024, -0.03850672021508217, -0.0017983907600864768, -0.013104449957609177, 0.015762366354465485, 0.019385594874620438, 0.020536035299301147, -0.017230169847607613, 0.008429956622421741, -0.004443082958459854, 0.012251537293195724, -0.04474819451570511, 0.013818517327308655, -0.021911276504397392, -0.025071682408452034, 0.02225508540868759, -0.01304494496434927, 0.03467191755771637, 0.031048687174916267, -0.011934174224734306, 0.026156006380915642, -0.009441551752388477, -0.026367582380771637, 0.028536230325698853, -0.009064682759344578, 0.0032810713164508343, 0.015339215286076069, 0.00782828964293003, 0.016542550176382065, -0.04826563596725464, 0.0012033350067213178, 0.0032628891058266163, -0.0591353215277195, -0.01789134368300438, 0.01502185221761465, 0.0398290678858757, -0.01787812076508999, 0.003264541970565915, 0.020192226395010948, -0.02021867223083973, -0.002715768525376916, -0.03276773914694786, 0.011920950375497341, 0.021091420203447342, -0.0028066798113286495, 0.00306453718803823, 8.052881457842886e-05, 0.03348180279135704, -0.024860108271241188, -0.031339604407548904, 0.00623486191034317, 0.012793699279427528, -0.03506861999630928, -0.01908145472407341, -0.005510877817869186, 0.0388769768178463, 0.0132432971149683, 0.006175356451421976, -0.030096597969532013, -0.03001725673675537, -0.006343955639749765, 0.005031527020037174, 0.010896132327616215, 0.010360581800341606, 0.0034513233695179224, 0.029514765366911888, -0.02803373895585537, -0.0029686670750379562, -0.029673447832465172, -0.019372371956706047, 0.019689735025167465, 0.045039109885692596, 0.000844235357362777, -0.007173727732151747, 0.00876715499907732, 0.010605216026306152, -0.039458807557821274, 0.05268226936459541, -0.03985551372170448, -0.025574173778295517, -0.016053281724452972, -0.013659835793077946, -0.05506249517202377, 0.022109627723693848, -0.006261309143155813, 0.007471255958080292, -0.04665237292647362, 0.031286709010601044, -0.025071682408452034, 0.03266194835305214, 0.015127640217542648, -0.007934076711535454, -0.057442717254161835, 0.012529229745268822, 0.010215124115347862, 0.05408395826816559, 0.023207174614071846, -0.011914338916540146, 0.053898829966783524, 0.02919740229845047, -0.013249908573925495, -0.005421619396656752, -0.008932447992265224, -0.00914402399212122, -0.0038678625132888556, 0.023286515846848488, 0.017653321847319603, -0.012430054135620594, -0.011742433533072472, 0.01941204071044922, -0.009461387060582638, -0.020932739600539207, 0.025931207463145256, 0.007834901101887226, -0.000271700817393139, 0.00913741160184145, -0.007795230485498905, 0.01986163854598999, 0.026790732517838478, -0.03234458714723587, 0.004297624807804823, -0.01942526549100876, 0.014955734834074974, -0.02138233743607998, 0.023260068148374557, -0.0038612508215010166, 0.011808550916612148, -0.019702957943081856, 0.005401784088462591, 0.019769074395298958, 0.022836918011307716, 0.02377578429877758, 0.02577252686023712, -0.03670832887291908, -0.037210822105407715, 0.015339215286076069, 0.01205979660153389, 0.01872442103922367, 0.005815017037093639, 0.012925934046506882, -0.016978925094008446, -0.005484430585056543, -0.025032011792063713, 0.005415007472038269, -0.022043511271476746, -0.01537888590246439, 0.01990130916237831, 0.01987486332654953, 0.011577140539884567, 0.019398817792534828, -0.0023240232840180397, -0.06564126163721085, 0.010744062252342701, 0.017706215381622314, 0.001247137668542564, -0.022360874339938164, 0.018618633970618248, 0.007735725026577711, -0.024212157353758812, 0.025838643312454224, -0.013316025957465172, -0.06416023522615433, -0.012073020450770855, -0.012853204272687435, 0.018169036135077477, -0.006588589865714312, -0.007339021191000938, 0.005355502013117075, 0.029752789065241814, -0.004753834567964077, -0.00014886725693941116, 0.01421522069722414, -0.01555079035460949, -0.022770801559090614, -0.006046427879482508, 0.010413476265966892, 0.02996436320245266, 0.0035901698283851147, 0.02925029769539833, -0.01518053375184536, 0.008231604471802711, -0.016608668491244316, -0.002527334028854966, 0.03245037421584129, -0.020549260079860687, -0.04990534484386444, 0.0466788187623024, 0.013963975012302399, 0.011021755635738373, -0.006125768646597862, -0.02023189701139927, -0.02848333679139614, 0.04490687698125839, 0.00554063031449914, -0.01991453394293785, 0.006575366016477346, 0.0014306132216006517, -0.008423345163464546, -0.012661464512348175, 0.02606344223022461, -0.04593830555677414, 0.048424314707517624, -0.012482947669923306, 0.013157344423234463, 0.03543887659907341, -0.009659738279879093, -0.004188531544059515, 0.01598716527223587, 0.003170324955135584, -0.03379916772246361, 0.041045624762773514, 0.018605411052703857, 0.00935559906065464, 0.002897591097280383, -0.010201900266110897, 0.010519263334572315, 0.01676734909415245, 0.027160989120602608, -0.015286321751773357, -0.005603441968560219, 0.023630326613783836, 0.01441357284784317, 0.002315758727490902, -0.006320814602077007, -0.010631662793457508, 0.016886360943317413, 0.00972585566341877, 0.004737304989248514, 0.01343503687530756, -0.03083711303770542, -0.0028628793079406023, 0.05075164511799812, -0.011425070464611053, 0.00800019409507513, -0.02729322388768196, 0.006651401054114103, -5.490835610544309e-05, 0.029329637065529823, -0.006856364663690329, 0.015206980518996716, 0.0054083955474197865, 0.060140304267406464, 0.02766348235309124, -0.03374627232551575, -0.024344392120838165, -0.01670123264193535, -0.042605992406606674, -0.03583557903766632, 0.022360874339938164, -0.016119400039315224, -0.001252096495591104, -0.04059602692723274, 0.02377578429877758, 0.01563013158738613, 0.014360679313540459, -0.012965603731572628, -0.0009677921188995242, -0.010830014944076538, 0.032529715448617935, -0.024291498586535454, 0.04628211632370949, -0.005196820478886366, 0.011537469923496246, -0.0009917595889419317, 0.011187048628926277, 0.02643369883298874, 0.0032017305493354797, 0.028192419558763504, 0.021144315600395203, 0.0038645565509796143, 0.01147796493023634, -0.015286321751773357, 0.019597170874476433, -0.023908019065856934, 0.01910790242254734, -0.0068365298211574554, 0.01757398061454296, 0.04403412714600563, 0.054374873638153076, 0.026222124695777893, 0.029012273997068405, 0.010962249711155891, 0.00741175003349781, 0.0038612508215010166, 0.02721388451755047, -0.012873039580881596, 0.005884440150111914, 0.023524537682533264, -0.02806018479168415, 0.02110464498400688, 0.02304849401116371, -0.038771189749240875, 0.02217574417591095, 0.007887794636189938, -0.013527601025998592, -0.022810470312833786, -0.02771637588739395, 0.012423441745340824, 0.005203431937843561, -0.06326103955507278, -0.052364908158779144, -0.012992050498723984, -0.015167309902608395, -0.004248037002980709, 0.007656384259462357, -0.002662874525412917, -0.012912710197269917, 0.021633582189679146, 0.0034248766023665667, -0.026949414983391762, -0.02027156576514244, 0.04011998325586319, 0.012714358046650887, 0.019306253641843796, -0.028721358627080917, 0.015735918655991554, -0.02569318562746048, 0.020337684080004692, -0.0017835143953561783, 0.006691071670502424, -0.007160504348576069, 0.0006000145804136992, 0.03297931328415871, -0.01035397034138441, 0.014016869477927685, 0.021964170038700104, 0.03580913320183754, 0.011200271546840668, 0.028642017394304276, -0.017256617546081543, 0.030678430572152138, -0.051597945392131805, 0.0206021536141634, -0.0065621426329016685, 0.009296093136072159, 0.06579994410276413, 0.011392012238502502, -0.01838061213493347, 0.0028959379997104406, 0.028245313093066216, 0.050487175583839417, 0.0022231945767998695, -0.025534505024552345, 0.02690974436700344, -0.041045624762773514, 0.004291013348847628, -0.0024413815699517727, 0.014440019614994526, -0.01420199777930975, 0.02068149298429489, 0.006013369187712669, 0.009805196896195412, -0.011577140539884567, 0.023828677833080292, -0.02064182423055172, 0.02020544931292534, 0.015114416368305683, -0.0033372710458934307, -0.025944432243704796, -0.016674784943461418, 0.0013859840109944344, 0.006605118978768587, 0.01088952086865902, -0.004419941920787096, -0.013144120573997498, -0.025455163791775703, -0.006545613519847393, -0.0182748232036829, 0.011755657382309437, -0.011127542704343796, 0.00603320449590683, -0.02027156576514244, -0.027346119284629822, -0.0020000485237687826, 0.01600038819015026, -0.008846495300531387, 0.01243666559457779, 0.005788570269942284, -0.04757801443338394, -0.0006553878192789853, -0.005662947427481413, -0.00854896754026413, 0.013395366258919239, 0.0035934755578637123, 0.007861347869038582, 0.015802036970853806, -0.02413281798362732, -0.006777023896574974, 0.023101387545466423, -0.014691265299916267, 0.024423733353614807, 0.02726677805185318, -0.03044040873646736, 0.008667979389429092, -0.019716180860996246, -0.016621891409158707, 0.0146119249984622, 0.021117867901921272, -0.013329248875379562, -0.004753834567964077, 0.0010719269048422575, 0.034460339695215225, 0.02225508540868759, 0.0017917790682986379, -0.0007020831690169871, 0.014135880395770073, -0.019610393792390823, 0.00976552627980709, 0.01914757303893566, -0.021898051723837852, 0.0068960352800786495, 0.016899583861231804, 0.012125913985073566, 0.024384062737226486, 0.029805682599544525, 0.004700940568000078, -0.034909937530756, -0.01674090139567852, 0.00574890011921525, -0.00350091140717268, 0.03197433054447174, 0.01789134368300438, 0.010506040416657925, 0.002281047170981765, -0.0005843117251060903, 0.006248085759580135, 0.017428522929549217, 0.0030728019773960114, -0.03816290944814682, -0.0071274456568062305, -0.009038235992193222, 0.057442717254161835, -0.005147232208400965, 3.8998881791485474e-05, 0.004846398718655109, 0.0187508687376976, -0.027954397723078728, 0.017825225368142128, 0.08621697127819061, -0.0018248376436531544, 0.01943848840892315, 0.023947689682245255, -0.0070282695814967155, 0.0004186051955912262, -0.011226719245314598, 0.0067340475507080555, 0.005504265893250704, -0.021302996203303337, 0.008436568081378937, 0.0006950582028366625, 0.016978925094008446, -0.0020826952531933784, 0.032873526215553284, 0.0022793940734118223, -0.016873136162757874, -0.010413476265966892, 0.010572157800197601, -0.006862976588308811, -0.00912418868392706, 0.027742821723222733, 0.01754753291606903, -0.0011892850743606687, -0.016529327258467674, 0.008191934786736965, -0.002938914345577359, -0.05104256048798561, 0.024701425805687904, 0.022056734189391136, 0.022836918011307716, 0.010737450793385506, 0.010049831122159958, -0.0320272222161293, -0.0002247988450108096, 0.004631517454981804, 0.02339230291545391, 0.004122414160519838, -0.007120834197849035, 0.02496589533984661, -0.021554242819547653, -0.009342375211417675, -0.007193563040345907, 0.012615182437002659, 0.03308510035276413, 0.004274483770132065, -0.031233815476298332, -0.0008194413967430592, -0.02731967158615589, -0.016053281724452972, -0.009785361588001251, 0.01720372401177883, 0.018512846902012825, 0.0024529520887881517, -0.03038751520216465, 0.0018165729707106948, 0.024053476750850677, -0.044589512050151825, -0.017230169847607613, 0.008271275088191032, -0.01641031540930271, -0.016159070655703545, -0.0003859597782138735, -0.014016869477927685, 0.006261309143155813, 0.00042645662324503064, 0.014109433628618717, 0.0037620747461915016, -0.0249130018055439, 0.012251537293195724, 0.004261260386556387, 0.01871119812130928, -0.03591492027044296, 0.007934076711535454, 0.02959410659968853, 0.0002597170532681048, -0.0008297722088173032, -0.004895986523479223, -0.006545613519847393, -0.03197433054447174, -0.017428522929549217, 0.010215124115347862, 0.02417248673737049, 0.005494348239153624, 0.011193660087883472, -0.025838643312454224, -0.002593451412394643, 0.00594063987955451, -0.007662995718419552, 0.016516104340553284, 0.013507765717804432, 0.03699924424290657, -0.028932934626936913, -0.018896326422691345, 0.025640292093157768, -0.003848027205094695, -0.012053185142576694, -0.012754028663039207, -0.028139526024460793, -0.00990437250584364, 0.022030286490917206, 0.009170470759272575, -0.01498218160122633, -0.0032976006623357534, 0.004776975605636835, -0.004978633485734463, -0.022096404805779457, -0.04797471687197685, -0.06849753111600876, 0.008244828321039677, -0.0198484156280756, -0.0026364275254309177, 0.0008487809100188315, 0.026156006380915642, -0.025547727942466736, -0.01864508166909218, -0.007881183177232742, -0.002593451412394643, 0.012304430827498436, -0.018499622121453285, 0.013593718409538269, 0.01262840535491705, -0.014836723916232586, -0.010790344327688217, 0.025455163791775703, -0.006115850992500782, 0.04244730994105339, 0.03038751520216465, -0.004413330461829901, 0.04403412714600563, -0.00700182281434536, 0.013911081477999687, -0.02027156576514244, -0.0002046537265414372, -0.03469836339354515, 0.04514489695429802, -0.0036562872119247913, 0.008410121314227581, -0.011193660087883472, -0.01953105255961418, -0.04220928996801376, 0.010684557259082794, -0.02800729125738144, -0.029885023832321167, -0.00741175003349781, -0.028880039229989052, -0.008542356081306934, 0.005061279982328415, 0.00728612719103694, 0.06103949993848801, -0.034830596297979355, -0.020403800532221794, 0.02566673792898655, 0.015140863135457039, 0.029356084764003754, -0.030466854572296143, 0.015325991436839104, -0.023167503997683525, 0.013527601025998592, -0.012370548211038113, -0.017825225368142128, -0.021210432052612305, -0.024674979969859123, -0.03311154618859291, 0.008350616320967674, 0.017441745847463608, -0.017600426450371742, -0.0032926418352872133, -0.024265052750706673, 0.0064034610986709595, -0.008542356081306934, -0.005451371893286705, -0.0614626482129097, -0.014069763012230396, -0.0055307126604020596, 0.04078115522861481, 0.002846350194886327, -0.0019124430837109685, 0.006743965204805136, -0.01384496409446001, 0.002733950736001134, -0.009798585437238216, 0.050487175583839417, -0.030890006572008133, 0.01496895868331194, -0.018803762272000313, 0.006988599430769682, -0.02447662688791752, 0.0015785506693646312, -0.024608861654996872, -0.03546532243490219, -0.0015289627481251955, -0.009415104985237122, 0.023908019065856934, -0.0020545953884720802, 0.006241473834961653, -0.015048298984766006, 0.0004235639935359359, 0.0005975351668894291, 0.024013806134462357, -0.04408702254295349, 0.010830014944076538, 0.018050024285912514, 0.007015046197921038, -0.018063249066472054, 0.004023238085210323, -0.0015016893157735467, -0.030546195805072784, -0.007629937492311001, 0.03866540268063545, -0.010360581800341606, -0.02103852666914463, -0.041918374598026276, -0.04175969213247299, 0.011861445382237434, -0.002952137729153037, -0.02768992818892002, 0.039088550955057144, 0.0203244611620903, -0.018565740436315536, -0.010036607272922993, -0.024780767038464546, -0.026248570531606674, -0.018830209970474243, -0.021289773285388947, 0.014506136998534203, 0.03554466366767883, 0.003960426896810532, -0.01906823180615902, -0.03144539147615433, -0.00042852279148064554, 0.023101387545466423, 0.005795182194560766, -0.01871119812130928, 0.0373695008456707, 0.0048331753350794315, 0.013078003190457821, -0.016159070655703545, 0.01014239527285099, 0.0057290648110210896, -0.011987067759037018, 0.012311042286455631, -0.03226524591445923, -0.0028529618866741657, 0.008886165916919708, 0.001762026222422719, -0.010373805649578571, 0.012727581895887852, -0.04093983769416809, -0.001231434871442616, -0.01720372401177883, -0.04823918640613556, 0.02135588973760605, 0.029276743531227112, -0.005322443321347237, -0.01308461558073759, 0.004631517454981804, -0.01748141646385193, -0.007114222273230553, -0.017283063381910324, -0.055485643446445465, 0.0036628989037126303, -0.020496364682912827, 0.025838643312454224, 0.0017686380306258798, -0.010228347033262253, 0.013725953176617622, -0.011074649170041084, -0.02843044139444828, 0.012952380813658237, 0.019623616710305214, 0.036443859338760376, 0.014440019614994526, -0.005514183547347784, 0.003957120701670647, 0.01565657928586006, 0.030863558873534203, 0.010744062252342701, 0.06151554360985756, 0.0004179853422101587, -0.022810470312833786, 0.04173324629664421, 0.0012777169467881322, -0.025812197476625443, -0.003669510595500469, 0.02216252125799656, 0.01986163854598999, 0.003494299715384841, -0.01602683588862419, -0.00013812318502459675, -0.008667979389429092, -0.0068695880472660065, -0.07315219193696976, -0.00691587058827281, 0.006261309143155813, 0.04300269857048988, -0.008496074005961418, -0.01676734909415245, 0.007272903807461262, 0.012740804813802242, 0.014360679313540459, 0.030096597969532013, 0.029514765366911888, -0.01823515258729458, 0.009441551752388477, 0.017428522929549217, -0.018208706751465797, 0.0005454677739180624, -0.023960912600159645, -0.011001920327544212, -0.002398405224084854, -0.010499428026378155, -0.007722501643002033, 0.009097741916775703, -0.01873764581978321, -0.05217977985739708, 0.013051556423306465, 0.02726677805185318, 0.019240137189626694, 0.019689735025167465, -0.0075704315677285194, -0.00467779953032732, 0.010572157800197601, -0.022003840655088425, -0.04979955777525902, 0.0600874088704586, -0.001452101394534111, 0.005223267246037722, -0.03239748254418373, -0.005467901472002268, -0.016859913244843483, -0.0008686161017976701, 0.03242392838001251, -0.005709229502826929, 0.017322733998298645, -0.007623325567692518, -0.011438294313848019, 0.012390383519232273, 0.018010353669524193, -0.00741175003349781, 0.007682831026613712, -0.0036959575954824686, 0.02031123638153076, -0.03467191755771637, -0.008661366999149323, 0.02061537653207779, -0.006115850992500782, -0.0007520843646489084, 0.027425458654761314, 0.045330025255680084, 0.006277838256210089, 0.013778846710920334, 0.013950752094388008, -0.01641031540930271, 0.008304334245622158, -0.04199771210551262, 0.007940689101815224, -0.04956153407692909, -0.01797068491578102, 0.03324378281831741, -0.009421716444194317, -0.024370839819312096, -0.01786489598453045, 0.003953814972192049, -0.020562482997775078, 0.003122389782220125, -0.010003549046814442, 0.006168744992464781, -0.006155521143227816, 0.009203528985381126, 0.011920950375497341, 0.005497653968632221, -0.028509782627224922, -0.06125107407569885, -0.0026909743901342154, -0.002150465501472354, -0.014387126080691814, -0.008363839238882065, 0.007239845115691423, 0.021289773285388947, 0.021580688655376434, 0.02571963332593441, -0.021977392956614494, 0.0030843724962323904, 0.025560950860381126, 0.025812197476625443, -0.0116697046905756, 0.037977781146764755, -0.019769074395298958]
Name: Osteria Carlina West Village, Address: 455 Hudson St, New York, NY 10014, USA, Coordinates: {'type': 'Point', 'coordinates': [-74.006992, 40.73140799999999]}, Rating: 4.8, Reviews: ['Sat at the outside. Service started okay, we got still and sparking, they forgot about the sparkling. No big deal.\n\nWe ordered a prosciutto sandwich and a burger (medium rare). Sandwich was good.\n\nWhen I cut into the burger there were chunks of chopped meat that fell out. The inside was still raw with white un rendered fat. They likely didn’t take the internal temp and the grill was too hot so only the outside got seared.\n\nI asked the server if they could pop it back on the grill to medium instead. They put the whole sandwich in the oven to warm it and sent it back to me, saying that the cook said I had ordered medium rare 🙂.\n\nEither I don’t know temperatures or they don’t… I think the pictures are clear (pictures are from after they tried to get it to temp).', 'Great Italian restaurant to enjoy a delicious meal by yourself at the bar.\n\nThe atmosphere is relaxing and the food well-cooked. Highly impressed by the slow-cooked veal.', 'Tiny place.  Small menu but very cozy.  Excellent service.  Came here 3 times with the family of 5.  The staff is incredible and you feel like you are in Italy.  The food is generally good but I wasn’t amazed.  I would give it a 4.5 for food and not 4.8.  It’s probably one of the better Italian restaurants in the neighborhood.', 'We had an amazing dinner here! The food was delicious and we enjoyed every aspect of our meal! Service was excellent and the restaurant was beautifully decorated', 'Customer service was amazing from beginning to start. My steak was only warm, though taste good. Small place and little privacy for conversation.'], Embedding: [-0.04575274884700775, -0.03305463120341301, -0.08508232980966568, -0.034808654338121414, 0.00919625349342823, -0.019603027030825615, -0.07831329107284546, 0.0019439359894022346, 0.028286661952733994, -0.06482463330030441, 0.008671282790601254, -0.0149462278932333, -0.004347993526607752, -0.010060911066830158, 0.0047278255224227905, 0.015810884535312653, 0.008183368481695652, 0.03305463120341301, -0.005024279467761517, 0.009202429093420506, 0.04002130404114723, -0.01856543868780136, 0.005076776724308729, 0.028484297916293144, 0.023049306124448776, 0.009381537325680256, -0.018911302089691162, -0.02742200531065464, -0.004808114841580391, -0.016342032700777054, 0.014773296192288399, -0.015069750137627125, -0.003100415924564004, -0.07529934495687485, -0.028385480865836143, 0.027866685763001442, 0.05370759963989258, 0.007151955273002386, 0.02712555043399334, 0.029373660683631897, 0.003971249796450138, 0.049631357192993164, 0.03656267374753952, -0.037946123629808426, 0.037452034652233124, 0.011407306417822838, 0.022530511021614075, 0.03280758857727051, -0.0005616415874101222, -0.029274841770529747, 0.00374890910461545, 0.016317328438162804, -0.011271432042121887, -0.013142798095941544, -0.009838570840656757, -0.01080822292715311, 0.029200728982686996, -0.008634225465357304, 0.053015876561403275, 0.025766802951693535, 0.03873666748404503, -0.05716623365879059, 0.04350464046001434, -0.0017200513975694776, -0.013278673402965069, -0.041009485721588135, -0.014266853220760822, 0.03673560544848442, 0.04832201823592186, -0.07974615693092346, -0.010536473244428635, 0.025445643812417984, -0.03695794567465782, -0.02724907360970974, 0.03851432725787163, -0.026137370616197586, 0.03364754095673561, -0.07322416454553604, 0.001454477896913886, -0.007923970930278301, -0.021851137280464172, 0.03725440055131912, -0.01781195029616356, 0.05047130957245827, 0.012821639887988567, -0.04044128209352493, -0.040935371071100235, -0.008547759614884853, 0.013068685308098793, 0.0005353930173441768, 0.015971465036273003, -0.0021755408961325884, 0.04231882467865944, -0.022197000682353973, 0.05405346304178238, -0.0628976821899414, -0.05395464599132538, 0.037822604179382324, -0.07016080617904663, 0.02067767269909382, 0.012821639887988567, -0.0037180285435169935, 0.015551487915217876, -0.059340231120586395, -0.004805027041584253, -0.016873179003596306, 0.022888727486133575, -0.011172614060342312, 0.006904910318553448, -0.04575274884700775, -0.015798533335328102, -0.02386455610394478, -0.01857778988778591, 0.055881597101688385, -0.03668619692325592, 0.056079234927892685, 0.015563840046525002, -0.029348956421017647, -0.007343415170907974, 0.0005025823484174907, -0.03070770390331745, 0.004968694411218166, -0.026087960228323936, -0.04545629397034645, 0.010128848254680634, -0.05183005705475807, 0.02437099814414978, -0.013958047144114971, -0.0029537328518927097, -0.03836610168218613, 0.008541584014892578, -0.009999149478971958, 0.015415613539516926, -0.025235654786229134, 0.01497093215584755, 0.03302992880344391, -0.010981153696775436, -0.012055800296366215, -0.03653796762228012, -0.019911833107471466, -0.010153553448617458, 0.008640401996672153, 0.034536901861429214, -0.009616229683160782, -0.013883933424949646, -0.016292624175548553, -0.03970014676451683, 0.04641977325081825, -0.012821639887988567, 0.012871049344539642, 0.001391944708302617, 0.005367054603993893, -0.04575274884700775, -0.02722436748445034, -0.027866685763001442, 0.006454052869230509, 0.03606858104467392, 0.007763391826301813, -0.03965073451399803, 0.04446811601519585, -0.010764990001916885, 0.029497183859348297, -0.03374635800719261, 0.004947077948600054, -0.00899244099855423, 0.022468751296401024, -0.018837187439203262, 0.040811847895383835, -0.06788799166679382, -0.03668619692325592, -0.008831861428916454, -0.008838037960231304, 0.04627154394984245, 0.032165270298719406, -0.013797467574477196, 0.008590992540121078, 0.03646385297179222, -0.0046784160658717155, -0.00010817872680490837, -0.011808754876255989, -0.013575127348303795, 0.04772911220788956, 0.016737304627895355, 0.030757112428545952, -0.004536365158855915, -0.012605475261807442, -0.049631357192993164, -0.013723354786634445, -0.003943457268178463, 0.043479934334754944, -0.017527848482131958, 0.0037705255672335625, -0.008313067257404327, -0.050372492522001266, 0.0025476524606347084, -0.04842083528637886, 0.027891390025615692, -0.007676925975829363, -0.012908105738461018, 0.07085253298282623, 0.0063861156813800335, 0.017651371657848358, 0.02440805360674858, -0.04464104771614075, 0.06877735257148743, -0.05410287529230118, 0.016823770478367805, -0.004925461485981941, 0.0016644662246108055, -0.007331063039600849, 0.009437122382223606, 0.0033474608790129423, 0.026483234018087387, -0.009863275103271008, -0.016959644854068756, -0.01063529122620821, -0.012574594467878342, 0.03861314803361893, 0.029694819822907448, 0.03592035546898842, 0.0007048505358397961, 0.012883401475846767, -0.010882335714995861, -0.023679271340370178, 0.011357897892594337, 0.030930044129490852, 0.03999659791588783, -0.01796017773449421, 0.026162074878811836, 0.006929614581167698, -0.02729848213493824, 0.025742098689079285, -0.03327697142958641, 0.004283144138753414, -0.01839250698685646, 0.010876160115003586, -0.010900864377617836, -0.015267386101186275, 0.0009163828799501061, 0.011055267415940762, -0.0025630928575992584, -0.0613659992814064, 0.07001257687807083, -0.005901289638131857, 0.034709833562374115, -0.013118093833327293, 0.003248642897233367, -0.0303865447640419, -0.011629647575318813, 0.005941434297710657, 0.007324886973947287, -0.043603457510471344, -0.019825367256999016, -0.037847306579351425, -0.031300611793994904, 0.029620705172419548, -0.034240446984767914, 0.01826898381114006, -0.013142798095941544, -0.03873666748404503, -0.013439252972602844, -0.007096370216459036, 0.0018034290987998247, 0.004743265453726053, -0.01508210226893425, -0.01841721124947071, 0.041034188121557236, -0.0033783414401113987, -0.004842083435505629, 0.019108938053250313, -0.03970014676451683, -0.01873837038874626, 0.004406666848808527, 0.07974615693092346, 0.006725802551954985, -0.0612177737057209, 0.022592272609472275, 0.011889045126736164, 0.03317815437912941, 0.02127058245241642, 0.0008677458390593529, -0.028336070477962494, -0.02092471905052662, 0.028953684493899345, 0.011759346351027489, 0.0018528380896896124, 0.04535747691988945, -0.0015386276645585895, 0.028113730251789093, 0.010178257711231709, -0.014835057780146599, 0.017107872292399406, 0.05439932644367218, 0.011240551248192787, 0.0045332773588597775, -0.0018034290987998247, 0.04911256209015846, 0.011215846985578537, 0.012821639887988567, 0.0024874352384358644, 0.05696859583258629, -0.022406989708542824, 0.01353807095438242, 0.009665639139711857, -0.002597061451524496, 0.05410287529230118, -0.0605260469019413, 0.0032795234583318233, -0.03592035546898842, -0.008603344671428204, -0.047185610979795456, 0.05237355828285217, 0.022295819595456123, -0.05148419737815857, -0.003600682131946087, -0.01356277521699667, 0.019294220954179764, 0.00022272657952271402, -0.01033883634954691, -0.03325226902961731, 0.011166437529027462, -0.04874199628829956, 0.007423704955726862, 0.03873666748404503, -0.02443275973200798, -0.0303865447640419, 0.04256586730480194, -0.013229263946413994, 0.02386455610394478, -0.016959644854068756, 0.05691918730735779, -0.031893521547317505, 0.04234352707862854, 0.025198599323630333, -0.01786135882139206, -0.012796935625374317, -0.031646475195884705, 0.01345160510390997, 0.0018173253629356623, 0.03834139555692673, -0.00013992788444738835, -0.028237253427505493, -0.028336070477962494, 0.02719966322183609, 0.022122887894511223, -0.03957662358880043, 0.02470450848340988, 0.03013950027525425, 0.029447773471474648, -0.015761476010084152, -0.01773783750832081, -0.02739729918539524, -0.03942839428782463, 0.002745288424193859, 0.02162879705429077, 0.07297711819410324, -0.011215846985578537, 0.050174858421087265, -0.03004068322479725, -0.005929082166403532, 0.011141733266413212, 0.04212118685245514, -0.004511660896241665, -0.016156747937202454, -0.012957514263689518, -0.005722181871533394, 0.025186246261000633, 0.016243213787674904, -0.02416100911796093, -0.0313747264444828, -0.009146844036877155, 0.04007071256637573, -0.014439784921705723, 0.03651326522231102, -0.05800618603825569, -0.03060888685286045, 0.025420939549803734, 0.0009719679947011173, -0.013068685308098793, 0.027767866849899292, 0.016453202813863754, -0.005882760975509882, 0.011703761294484138, 0.018812483176589012, 0.03275818005204201, -0.028607821092009544, 0.007059313356876373, -0.0013317273696884513, 0.004730913322418928, 0.016440849751234055, -0.004465339705348015, -0.03690853714942932, -0.012772231362760067, 0.0025955173186957836, 0.02460568957030773, 0.019084231927990913, 0.014674478210508823, 0.021962307393550873, -0.017033759504556656, 0.028756048530340195, 0.06630690395832062, -0.050248969346284866, -0.022740500047802925, -0.010178257711231709, 0.008201897144317627, 0.014550955966114998, -0.010993505828082561, 0.0012668780982494354, -0.05746268853545189, 0.06719626486301422, -0.029003093019127846, -0.03829198703169823, 0.03293110802769661, 0.024865087121725082, 0.01080204639583826, -0.03730380907654762, -0.003004685742780566, 0.028336070477962494, 0.0605754554271698, 0.010412950068712234, -0.031992338597774506, 0.007948675192892551, -0.010993505828082561, -0.025013314560055733, 0.009004793129861355, 0.019627731293439865, 0.0040669795125722885, -0.029274841770529747, 0.013970399275422096, 0.01767607592046261, -0.018713664263486862, -0.04444340988993645, -0.025939734652638435, -0.0028827073983848095, -0.038440216332674026, -0.010382069274783134, -0.01831839233636856, 0.025322120636701584, 0.015217977575957775, -0.019850073382258415, 0.022147592157125473, -0.07357002794742584, -0.016280271112918854, -0.04231882467865944, 0.010937920771539211, -0.006454052869230509, 0.028039617463946342, 0.052472375333309174, -0.022542864084243774, -0.017515497282147408, 0.02181408181786537, -0.04019423574209213, -0.0605754554271698, 0.0302877277135849, 0.0033659893088042736, 0.014254501089453697, 0.029052501544356346, 0.012759878300130367, -0.009498883970081806, 0.010734109207987785, -0.025692688301205635, -0.024877440184354782, -0.009412418119609356, 0.015329147689044476, 0.03866255655884743, -0.015860294923186302, -0.05163242295384407, 0.04792674630880356, 0.025593871250748634, -0.05108892545104027, 0.0021091473754495382, -0.017256099730730057, 0.02717495895922184, 0.004900756757706404, -0.010159729048609734, -0.05108892545104027, 0.0027916093822568655, -0.029003093019127846, 0.010030030272901058, -0.04049069061875343, 0.01341454777866602, -0.001950112171471119, -0.00443754717707634, -0.013809820637106895, -0.005039719864726067, -0.11304783076047897, 0.016910236328840256, 0.016304975375533104, 0.002302151406183839, 0.03965073451399803, -0.01812075637280941, -0.020368866622447968, 0.015860294923186302, -0.011222022585570812, 0.025519756600260735, 0.0014838145580142736, 0.004906932823359966, -0.05074306204915047, 0.0008970824419520795, -0.00015614021685905755, -0.004391226451843977, -0.010931745171546936, -0.03863785043358803, 0.011252903379499912, -0.02769375406205654, 0.031350020319223404, -0.043554048985242844, 0.0020998832769691944, 0.007028432562947273, 0.016181452199816704, 0.007096370216459036, 0.014279206283390522, 0.02761964127421379, 0.005901289638131857, 0.00591672956943512, -0.011814931407570839, -0.0007689277990721166, 0.05454755574464798, -0.0030031418427824974, 0.04291173070669174, 0.020554151386022568, -0.025297416374087334, 0.02406219206750393, -0.02071473002433777, 0.04293643683195114, -0.0007453813450410962, -0.016033226624131203, 0.025766802951693535, -0.0305100679397583, -0.03965073451399803, 0.01788606494665146, -0.025890324264764786, -0.004854436032474041, 0.029744228348135948, -0.010443830862641335, -0.0063367062248289585, -0.005533809773623943, 0.022320523858070374, 0.007034608628600836, -0.019010119140148163, 0.01065381895750761, -0.0034987761173397303, 0.031646475195884705, -0.02433394081890583, 0.016156747937202454, -0.009968269616365433, 0.031053567305207253, -0.009745928458869457, 0.005580130964517593, 0.010209138505160809, 0.017033759504556656, -0.01214844174683094, 0.016589077189564705, -0.010240018367767334, -0.018948357552289963, 0.0076707499101758, 0.014822704717516899, -0.02724907360970974, 0.016243213787674904, 0.05380642041563988, -0.01536620408296585, -0.009690343402326107, -0.03893430531024933, 0.005215739365667105, -0.020023003220558167, 0.04261527583003044, 0.0011935365619137883, 0.03567330911755562, -0.003739645006135106, 0.046370361000299454, 0.012469600886106491, 0.015959111973643303, 8.974684897111729e-05, -0.022221704944968224, 0.05217592045664787, 0.026211483404040337, -0.006182303186506033, -0.009375360794365406, 0.00922713428735733, 0.02680439129471779, -0.0060248118825256824, -0.022419340908527374, -0.012642532587051392, 0.018787778913974762, 0.0299912728369236, 0.02455628104507923, 0.03722969442605972, 0.03557449206709862, 0.052571192383766174, 0.016218509525060654, 0.02757023088634014, -0.008708339184522629, 0.008424237370491028, -0.0019717286340892315, 0.00446842797100544, -0.01207432895898819, -0.02412395179271698, 0.015131511725485325, 0.020591208711266518, 0.028212549164891243, -0.013686297461390495, 0.002442658180370927, -0.03377106413245201, 0.01786135882139206, -0.028459593653678894, 0.043479934334754944, -0.02148056961596012, 0.0007619796670041978, 0.037748489528894424, -0.02461804263293743, -0.003233202500268817, 0.03337579220533371, 0.009153020568192005, -0.02161644585430622, -0.0002974191156681627, 0.023531043902039528, 0.0027715370524674654, -0.014266853220760822, 0.01566265895962715, -0.025396235287189484, -0.02464274689555168, 0.0006172267021611333, -0.025087429210543633, 0.008572464808821678, 0.026433823630213737, 0.012376958504319191, -0.019738901406526566, -0.04614802077412605, 0.008405708707869053, 0.026137370616197586, 0.0032826114911586046, 0.014378024265170097, 0.04629625007510185, 0.011049091815948486, 0.02702673152089119, 0.00928271934390068, 0.012648708187043667, 0.0032455548644065857, -0.009572996757924557, 0.016873179003596306, 0.026137370616197586, 0.012624003924429417, -0.008442766033113003, 0.003041742602363229, -0.017342565581202507, 0.034734539687633514, 0.009424770250916481, -0.005620275624096394, -0.03876137360930443, -0.031868815422058105, 0.005252796225249767, -0.052571192383766174, 0.019578322768211365, -0.01772548444569111, -0.00038562194094993174, 0.05751209706068039, -0.0149956364184618, -0.003421574365347624, -0.011530829593539238, 0.0055924830958247185, 0.028780752792954445, 0.02130763791501522, -0.006129806395620108, 0.0152303297072649, -0.016144396737217903, 0.04508572816848755, -0.010697051882743835, 0.01520562544465065, -0.01221637986600399, -0.041083596646785736, 0.059241410344839096, -0.020097117871046066, 0.006985199637711048, 0.01031413208693266, 0.02454392984509468, 0.011604943312704563, 0.03668619692325592, -0.014439784921705723, 0.03258524835109711, 0.005793207325041294, -0.020467685535550117, 0.011469068005681038, 0.014291558414697647, -0.009010969661176205, -0.028237253427505493, -0.02088766172528267, -0.001937759923748672, -0.0030710792634636164, 0.013019275851547718, 0.0008106167078949511, -0.0007168167503550649, -0.016477907076478004, 0.03601917251944542, -0.02697732299566269, -0.012562242336571217, 0.008208072744309902, 0.028879569843411446, -0.016663191840052605, 0.03690853714942932, -0.04202236980199814, 0.0032949638552963734, -0.05682037025690079, 0.0303865447640419, -0.01054882537573576, -0.025285065174102783, 0.03564860671758652, -0.028607821092009544, -0.020208287984132767, -0.015786180272698402, 0.001985624898225069, -0.02429688349366188, 0.003968161530792713, -0.017033759504556656, 0.04142946004867554, 0.05331232771277428, 0.011432011611759663, -0.038143761456012726, -0.02739729918539524, -0.010110320523381233, 0.0012545258505269885, -0.007034608628600836, 0.013661593198776245, -0.012957514263689518, -0.04207177832722664, 0.02742200531065464, -0.005098392721265554, 0.023123420774936676, -0.003782877931371331, 0.021838786080479622, 0.017404327169060707, -0.010351189412176609, -0.020270049571990967, 0.03668619692325592, 0.005898201372474432, -0.010592058300971985, 0.03280758857727051, -0.004854436032474041, -0.014316262677311897, -0.02454392984509468, -0.03011479601264, -0.0028070497792214155, -0.03905782848596573, -0.03290640562772751, 0.008343948051333427, 0.0152303297072649, -0.004505484830588102, 0.015959111973643303, -0.03389458730816841, -0.013192207552492619, -0.0031683531124144793, -0.035129811614751816, 0.010073263198137283, 0.026557346805930138, -0.003122032154351473, -0.00878862850368023, -0.005533809773623943, 0.014550955966114998, -0.0027066876646131277, -0.003619210561737418, 0.020541798323392868, -0.011370250023901463, -0.02388926036655903, -0.014155683107674122, -0.005527633707970381, 0.006429348140954971, 0.0004462251963559538, -0.006262592971324921, -0.02729848213493824, -0.009350656531751156, -0.011252903379499912, -0.01817016676068306, 0.014106274582445621, -0.005089128855615854, 0.01043147873133421, 0.031226499006152153, 0.0032548189628869295, -0.0019809927325695753, 0.0027622729539871216, -0.022184649482369423, 0.018750721588730812, 0.06823385506868362, -0.0006990603869780898, 0.006787563674151897, -0.028336070477962494, 0.001930039725266397, 0.03332638368010521, 0.007133426610380411, -0.023531043902039528, -0.06497285515069962, 0.0017524760914966464, 0.009443297982215881, -0.037797898054122925, 0.020208287984132767, -0.0007438373286277056, -0.01841721124947071, -0.02409924753010273, 0.02695261873304844, -0.034611016511917114, -0.002644926542416215, 0.04466575011610985, -0.026606755331158638, -0.03950250893831253, -0.008220424875617027, 0.005827175918966532, 0.052521783858537674, -0.006985199637711048, -0.005351614207029343, 0.04362816363573074, 0.007318710442632437, -0.016453202813863754, -0.014056865125894547, -0.02366691827774048, -0.016119692474603653, 0.008325419388711452, 0.019133642315864563, -0.007059313356876373, 0.014958580024540424, -0.004866788163781166, -0.010876160115003586, 0.0024102337192744017, -0.04612331837415695, 0.007689278107136488, -0.016057930886745453, -0.0063367062248289585, -0.002541476394981146, -0.004882228560745716, -0.01772548444569111, 0.00524353189393878, -0.003736556973308325, 0.011067619547247887, -0.031597066670656204, 0.01873837038874626, -0.05523928254842758, 0.02113470621407032, 0.005851880647242069, -0.006960495375096798, 0.016811417415738106, -0.009554469026625156, 0.009066554717719555, -0.012024919502437115, 0.05439932644367218, 0.02398807741701603, -0.008893623016774654, 0.012426367960870266, 0.016342032700777054, 0.005481312982738018, 0.015675010159611702, -0.009962093085050583, 0.00922713428735733, -0.016947293654084206, 0.0008461294346489012, -0.03394399583339691, 0.013167503289878368, -0.016910236328840256, -0.029324252158403397, 0.017490791156888008, 0.017219042405486107, 0.0013047069078311324, -0.02381514571607113, 0.002640294376760721, -0.03599447011947632, 0.04241764172911644, -0.008127783425152302, 0.00927654281258583, -0.0016166012501344085, -0.017280803993344307, -0.021925251930952072, 0.004777234513312578, 0.040762439370155334, -0.017181985080242157, -0.04814908653497696, -0.03962603211402893, -0.022295819595456123, 0.01828133687376976, -0.009863275103271008, 0.007769567891955376, 0.01065381895750761, -0.0014297734014689922, 0.0004138005315326154, -0.019393039867281914, 0.02122117206454277, -0.0034061342012137175, -0.02695261873304844, 0.03562390059232712, 0.010067087598145008, 0.03256054222583771, 0.016465554013848305, 0.05543691664934158, 0.010073263198137283, 0.020554151386022568, -0.016910236328840256, -0.025149188935756683, 0.043776389211416245, -0.0025044195353984833, -0.04204707220196724, 0.04935960844159126, 0.012858696281909943, 0.028484297916293144, 0.00755340326577425, -0.02764434553682804, -0.05262060463428497, 0.03955191746354103, 0.008035141043365002, -0.012809287756681442, 0.03354872390627861, 0.018763074651360512, -0.003912576474249363, -0.013982751406729221, 0.03690853714942932, -0.026335006579756737, 0.044295184314250946, -0.03428985923528671, 0.022234058007597923, 0.02453157678246498, -0.040688324719667435, 0.015514431521296501, -0.009782985784113407, -0.025235654786229134, 0.011376426555216312, 0.04592568054795265, 0.027891390025615692, -0.010925568640232086, 0.008300715126097202, 0.002245022216811776, 0.010913216508924961, -0.004011394456028938, 0.013241617009043694, 0.00264183827675879, 0.00902332179248333, -0.016514964401721954, 0.005082952789962292, 0.017589610069990158, 0.014217444695532322, 0.003120488254353404, 0.00607422087341547, 0.0006330530159175396, 0.005867320578545332, 0.022777557373046875, -0.011759346351027489, 0.014649773947894573, 0.009665639139711857, -0.022814612835645676, -0.0018389418255537748, -0.014415080659091473, 0.010944097302854061, 0.0300653874874115, 0.012105208821594715, -0.016107339411973953, 0.010264723561704159, 0.004403578583151102, 0.04785263165831566, 0.014340966939926147, -0.00230523943901062, -0.01525503396987915, -0.00679373973980546, -0.029620705172419548, -0.0056233638897538185, 0.021937603130936623, 0.005450432188808918, -0.04627154394984245, -0.05430050939321518, 0.02687850594520569, 0.005768502596765757, -0.0017818126361817122, -0.020504742860794067, 0.020640617236495018, 0.008658930659294128, 0.011345545761287212, -0.05202769488096237, 0.044122252613306046, 0.004798850975930691, 0.008109254762530327, -0.02449451945722103, -0.023469282314181328, 0.012494305148720741, 0.007219892460852861, 0.0062070079147815704, 0.008387180976569653, 0.010758813470602036, 0.0033659893088042736, -0.031695883721113205, 0.03433926776051521, 0.0017710044048726559, 0.01807134784758091, -0.028780752792954445, 0.02077649161219597, 0.02757023088634014, 0.037822604179382324, -0.0024349382147192955, 0.009004793129861355, -0.014254501089453697, -0.004224470816552639, -0.0011194230755791068, 0.03559919819235802, -0.012488128617405891, 0.006596103776246309, 0.04323289170861244, -0.0610201358795166, 0.03327697142958641, 0.031621769070625305, -0.004113300703465939, 0.02094942331314087, 0.004227559082210064, -0.035253334790468216, -0.00018817887757904828, -0.008609521202743053, -0.0007662257994525135, -0.0036253866273909807, -0.04745735973119736, -0.029052501544356346, -0.02734789066016674, 0.007244597189128399, 0.03322756290435791, -0.016762008890509605, -0.0026788951363414526, -0.03285699710249901, -0.015242681838572025, 0.010956449434161186, -0.025062723085284233, -0.0028039617463946342, 0.0019269516924396157, 0.010968801565468311, 0.0306335911154747, -0.024988610297441483, -0.0025986055843532085, -0.031918223947286606, 0.04617272689938545, -0.008300715126097202, 0.04622213542461395, -0.020393570885062218, -0.002481259172782302, 0.05133596807718277, -0.001874454552307725, -0.0068307965993881226, 0.006379939150065184, 0.05084187909960747, 0.008140135556459427, 0.007491642143577337, -0.056029826402664185, -0.012648708187043667, -0.05528869107365608, -0.011549357324838638, -0.005990843288600445, 0.02150527387857437, 0.01497093215584755, -0.03270876780152321, -0.013896286487579346, -0.008133959025144577, 0.0302383191883564, 0.029645409435033798, -0.010215314105153084, -0.029694819822907448, 0.05677096173167229, -0.006379939150065184, 0.0033752534072846174, 0.03666149079799652, 0.02395102009177208, -0.00028834794647991657, -0.00917154923081398, -0.00682462053373456, -0.028632525354623795, 0.006725802551954985, 0.016762008890509605, -0.038217876106500626, 0.013291025534272194, 0.02078884467482567, 0.043726980686187744, -0.031720589846372604, -0.003223938401788473, 0.021937603130936623, 0.031127680093050003, 0.031028863042593002, 0.013043980114161968, 0.006240976508706808, -0.04049069061875343, 0.03340049460530281, 0.001758652157150209, -0.014649773947894573, 0.00039469311013817787, 0.022950489073991776, -0.013315729796886444, 0.023098714649677277, -0.004329465329647064, -0.006392291747033596, -0.009548292495310307, 0.00914066843688488, 0.004471516236662865, -0.07238420844078064, -0.011277608573436737, -0.00042924084118567407, -0.009931212291121483, -0.010474711656570435, 0.017478439956903458, 0.004301672335714102, 0.024828031659126282, -0.017243746668100357, 0.022999897599220276, 0.02375338412821293, 0.017169633880257607, 0.01841721124947071, 0.00223421398550272, -0.031646475195884705, 0.020344162359833717, -0.03638974204659462, 0.037649672478437424, -0.01817016676068306, 0.043405819684267044, -0.008547759614884853, 0.007979555986821651, 0.01226578839123249, 0.013402195647358894, 0.017132576555013657, 0.006972847506403923, -0.017626667395234108, 0.010153553448617458, 0.019565971568226814, -0.03273347392678261, 0.007318710442632437, -0.031794700771570206, -0.002461186610162258, -0.03243701905012131, -0.037946123629808426, 0.019269516691565514, 0.0002939450496342033, 0.007781920023262501, -0.03083122707903385, -0.006259504705667496, 0.0078436816111207, -0.008658930659294128, 0.050150152295827866, 0.043479934334754944, 0.004480780102312565, -0.005895113572478294, 0.014402728527784348, 0.008516879752278328, -0.025322120636701584, -0.00925183854997158, -0.013920990750193596, 0.0025584606919437647, -0.007973380386829376, 0.028014913201332092, 0.016774361953139305, -0.010172081179916859, 0.014056865125894547, 0.02402513474225998, -0.03374635800719261, -0.013118093833327293, 0.07915324717760086, -0.012105208821594715, 0.023605158552527428, 0.009659462608397007, 0.02761964127421379, 0.028830161318182945, -0.019850073382258415, -0.01040059793740511, 0.0018590142717584968, 0.011178789660334587, 0.006447876803576946, -0.012463424354791641, -0.004144181497395039, -0.009955916553735733, 0.03861314803361893, -0.04305996000766754, -0.010536473244428635, 0.0016212334157899022, 0.02131999097764492, 0.004434459377080202, 0.016502611339092255, 0.023209886625409126, 0.03310403972864151, 0.014229796826839447, 0.002841018373146653, 0.006259504705667496, 0.0021276758052408695, -0.006349058821797371, 0.007071665488183498, 0.04464104771614075, 0.015242681838572025, 0.0012390854535624385, 0.009004793129861355, -0.022901078686118126, -0.003928016871213913, 0.007139603141695261, 0.029596000909805298, 0.002149292267858982, -0.02467980422079563, 0.044023435562849045, -0.019318925216794014, -0.019306574016809464, 0.006867853458970785, 0.02081354893743992, 0.03900841996073723, 0.011746994219720364, -0.02463039569556713, -0.014056865125894547, -0.02450687251985073, 0.0021199556067585945, 0.043430525809526443, 0.02690321020781994, -0.017379621043801308, 0.00464135967195034, -0.007151955273002386, -0.01068469975143671, -0.012605475261807442, -0.0626506358385086, -0.010159729048609734, -0.008584816940128803, -0.044221069663763046, 0.007788096088916063, 0.00902332179248333, -0.016552019864320755, 0.025210950523614883, 0.017404327169060707, 0.007331063039600849, -0.006244064308702946, 0.007806624751538038, -0.011092324741184711, 0.0022712708450853825, 0.02086295746266842, -0.014242148958146572, 0.005867320578545332, 0.016366736963391304, -1.3968662642582785e-05, 0.0015262754168361425, -0.017243746668100357, 0.023111067712306976, -0.06670217216014862, -0.015576192177832127, 0.013019275851547718, 0.00907273031771183, 0.012969867326319218, 0.005271324422210455, -0.024914497509598732, 0.016144396737217903, 0.016897883266210556, -0.00457033421844244, -0.001814237330108881, -2.880584361264482e-05, 0.056276869028806686, -0.0054596965201199055, 0.011277608573436737, 0.03567330911755562, 0.014612716622650623, 0.02476627007126808, 0.028014913201332092, -0.006756682880222797, 0.005246620159596205, 0.010499415919184685, -0.003995954059064388, 0.0010599778033792973, -0.019714197143912315, -0.0040855081751942635, -0.011555533856153488, -0.0063675870187580585, -0.0605754554271698, -0.017379621043801308, -0.005802471656352282, 0.012673412449657917, 0.03009009175002575, -0.011796402744948864, 0.010233842767775059, -0.024815678596496582, -0.007466937880963087, 0.003480247687548399, 0.019393039867281914, 0.00894303247332573, -0.009807690046727657, 0.01341454777866602, 0.021715262904763222, -0.005200298968702555, -0.049779586493968964, 0.052571192383766174, 0.0053083812817931175, 0.026705574244260788, 0.031918223947286606, -0.025396235287189484, 0.022011717781424522, -0.02677968703210354, -0.02113470621407032, 2.731006134126801e-05, 0.016514964401721954, -0.008226601406931877, -0.0023330319672822952, -0.022085830569267273, 0.018824836239218712, -0.023568101227283478, -0.03001597709953785, -0.015180920250713825, -0.031350020319223404, -0.02685379981994629, -0.01490917056798935, -0.004351081792265177, -0.03053477220237255, -0.020591208711266518, 0.00610510166734457, 0.0020195934921503067, 0.03584624081850052, -0.027743162587285042, 0.0027375684585422277, 0.044196367263793945, 0.017391974106431007, 0.014266853220760822, -0.025062723085284233, -0.00010045856470242143, -0.004823555238544941, -0.013204559683799744, -0.03868725895881653, 0.0050119273364543915, -0.012932810001075268, 0.0004141865356359631, -0.01815781369805336, 0.015897350385785103, 0.025816211476922035, -0.016687896102666855, 0.010165905579924583, -0.03562390059232712, 0.008479822427034378, -0.015909703448414803, 0.012982219457626343, -0.022938136011362076, 0.04849494993686676, -0.019183050841093063, 0.0024750828742980957, -0.0035543611738830805, 0.028311366215348244, -0.0298183411359787, -0.004869876429438591, 0.04019423574209213, 0.004931637551635504, -0.003776701632887125, -0.013748059049248695, 0.038020238280296326, -0.008473646827042103, 0.017429031431674957, -0.025717392563819885, -0.01353807095438242, -0.015415613539516926, -0.01767607592046261, 0.012722821906208992, 0.007219892460852861, 0.01829368807375431, 0.009665639139711857, 0.03967544063925743, -0.007287830114364624, 0.008831861428916454, -0.029274841770529747, 0.02724907360970974, -0.049631357192993164, -0.013723354786634445, 0.026631459593772888, 0.009554469026625156, -0.00521882763132453, 0.013920990750193596, -0.0024272180162370205, -0.031893521547317505, 0.025346824899315834, 0.019800662994384766, -0.02665616385638714, 0.04851965606212616, -0.046567998826503754, 0.0042028543539345264, 0.0027468325570225716, 0.0034030459355562925, -0.03545096889138222, 0.005271324422210455, 0.044418707489967346, -0.008072198368608952, 0.022740500047802925, -0.020702378824353218, -0.03335108608007431, -0.02372867986559868, -0.02388926036655903, -0.018713664263486862, 0.0306829996407032, 0.004456075839698315, -0.04305996000766754, -0.034413378685712814, 0.019318925216794014, 0.011079971678555012, 0.0055770426988601685, -0.013933342881500721, -0.03352401778101921, 0.002476627007126808, 0.011129381135106087, -0.03688383102416992, 0.000485597993247211, 0.028410185128450394, -0.021925251930952072, 0.007053137291222811, -0.015304443426430225, -0.0020875309128314257, -0.014130978845059872, 0.02081354893743992, 0.004338729195296764, 0.02077649161219597, -0.02366691827774048, -0.03547567501664162, -0.009739752858877182, -0.019874777644872665, 0.012105208821594715, -0.0021755408961325884, 0.01353807095438242, -0.011154085397720337, -0.027841981500387192, -0.017342565581202507, -0.009585348889231682, -0.02433394081890583, -0.05069364979863167, -0.028014913201332092, -0.023778090253472328, -0.026631459593772888, 0.02165350131690502, -0.003860079450532794, 0.020381219685077667, 0.014736238867044449, -0.004999574739485979, -0.009177724830806255, -0.03404281288385391, 0.02094942331314087, -0.0016660102410241961, -0.02093707025051117, -0.028607821092009544, 0.014612716622650623, 0.018713664263486862, 0.010005326010286808, 0.034536901861429214, 0.005333085544407368, -0.038193169981241226, 0.028879569843411446, 0.004276968073099852, -0.007003728300333023, -0.015427965670824051, -0.0028194021433591843, 0.034611016511917114, 0.007151955273002386, -0.022159943357110023, 0.02073943428695202, 0.005796295125037432, -0.003924928605556488, -0.0298183411359787, 0.013192207552492619, 0.008689810521900654, 0.04795145243406296, -0.017453735694289207, -0.020307106897234917, 0.0035790656693279743, 0.0024380262475460768, 0.03300522267818451, -0.001630497514270246, 0.01042530220001936, -0.004811203107237816, 0.020023003220558167, 0.014044512994587421, -0.010944097302854061, -0.01833074539899826, 0.02466745115816593, -0.0152303297072649, -0.01364924106746912, -0.03396869823336601, -0.02181408181786537, 0.026458527892827988, -0.01572442054748535, -0.023605158552527428, 0.04130593687295914, 0.029670115560293198, 0.004171974025666714, -0.0062502408400177956, -0.025173895061016083, -0.0048451717011630535, 0.00309578375890851, -0.041009485721588135, -0.012617827393114567, 0.04061421379446983, 0.005895113572478294, -0.004934725351631641, -0.02749611809849739, 0.001650569960474968, -0.0063861156813800335, -0.009418593719601631, 0.015526783652603626, 0.01773783750832081, -0.012055800296366215, -0.016206158325076103, -0.03572271764278412, 0.005842616315931082, 0.016490260139107704, 0.0153414998203516, 0.013216911815106869, 0.0008013524929992855, 0.007405176293104887, -0.034858062863349915, 0.005036631599068642, 0.03582153841853142, -0.007602812722325325, -0.02169055864214897, 0.04165180027484894, 0.029200728982686996, 0.025643279775977135, 0.02082590013742447, 0.016366736963391304, -0.019813016057014465, 0.006620808504521847, -0.006620808504521847, 0.034660425037145615, -0.05761091411113739, -0.043529342859983444, 0.02433394081890583, -0.0038816959131509066, -0.025791507214307785, 0.006373763084411621, -0.014476842246949673, -0.0015393997309729457, 0.03643915057182312, -0.002561548724770546, 0.022864023223519325, -0.002681983169168234, 0.0034339267294853926, -0.00308034336194396, 0.0057407100684940815, -0.046444475650787354, -0.04728442803025246, -0.025371531024575233, 0.004567245952785015, -0.01192610152065754, -0.0611189529299736, 0.025235654786229134, 0.015452669933438301, 0.013303377665579319, 0.04276350513100624, -0.019677141681313515, -0.0017293156124651432, 0.015415613539516926, -0.012735174037516117, -0.028212549164891243, 0.02407454326748848, -0.02376573719084263]

Now that we have our documents formatted the way we want them to be, let's insert everything into MongoDB Atlas using the pymongo library.

First, let's install pymongo

[ ]
Collecting pymongo
  Downloading pymongo-4.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB)
Collecting dnspython<3.0.0,>=1.16.0 (from pymongo)
  Downloading dnspython-2.6.1-py3-none-any.whl.metadata (5.8 kB)
Downloading pymongo-4.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 24.4 MB/s eta 0:00:00
Downloading dnspython-2.6.1-py3-none-any.whl (307 kB)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 307.7/307.7 kB 19.5 MB/s eta 0:00:00
Installing collected packages: dnspython, pymongo
Successfully installed dnspython-2.6.1 pymongo-4.8.0

Now, let's set up our MongoDB Connection, in order to do this please make sure you have your connection string, if you need help finding it please refer to the documentation.

Keep in mind that you can name your database and collection anything you like! I am naming my database "spritz_summer" and my collection "spritz_locations_WV". Run the code block below to insert your documents into your cluster.

[ ]
Enter connection string WITH USER + PASS here··········
InsertManyResult([ObjectId('66bcd2b05f6a590b646ef361'), ObjectId('66bcd2b05f6a590b646ef362'), ObjectId('66bcd2b05f6a590b646ef363'), ObjectId('66bcd2b05f6a590b646ef364'), ObjectId('66bcd2b05f6a590b646ef365'), ObjectId('66bcd2b05f6a590b646ef366'), ObjectId('66bcd2b05f6a590b646ef367'), ObjectId('66bcd2b05f6a590b646ef368'), ObjectId('66bcd2b05f6a590b646ef369'), ObjectId('66bcd2b05f6a590b646ef36a'), ObjectId('66bcd2b05f6a590b646ef36b'), ObjectId('66bcd2b05f6a590b646ef36c'), ObjectId('66bcd2b05f6a590b646ef36d'), ObjectId('66bcd2b05f6a590b646ef36e'), ObjectId('66bcd2b05f6a590b646ef36f'), ObjectId('66bcd2b05f6a590b646ef370'), ObjectId('66bcd2b05f6a590b646ef371'), ObjectId('66bcd2b05f6a590b646ef372'), ObjectId('66bcd2b05f6a590b646ef373'), ObjectId('66bcd2b05f6a590b646ef374')], acknowledged=True)

Perfect! Go ahead and check back in MongoDB Atlas in your cluster and make sure that everything looks the way we want it to look before we proceed. Please double check that your embedding field is there and that it's an array of 1536.

Which one comes first, Vector Search or Geospatial Queries?

Both of these need to be the first stage in their aggregation pipelines, so instead of making one pipeline we are going to do a little loophole. We will do two pipelines. But how will we decide which?!

When I'm using Google Maps to figure out where to go, I normally first search for what I'm looking for and then I see how far away it is from where I currently am and pick the closest location to me. So let's keep that mindset in place and start off with MongoDB Atlas Vector Search for this tutorial. But, I understand intuitively some of you might prefer to search via all nearby locations and then utilize Vector Search, so I'll highlight that method of searching for your spritz's as well.

MongoDB Atlas Vector Search

We have a couple steps here. Our first step is to create a Vector Search Index. Do this inside of MongoDB Atlas by following this documentation. Please keep in mind that your index is NOT run in your script, it lives in your cluster. You'll know it's ready to go when the button turns green and it's activated.

[ ]

Once it's activated, let's get to Vector Searching!

So, let's say I just finished dinner with my besties at our favorite restaurant in the West Village, Balaboosta. The food was great and it's a warm summer day and we're in the mood for post dinner spritz's outside, and we would prefer to be seated quickly. Let's see if we can find a spot!

Our first step with building our our pipeline is to embed our query. We can't compare text to vectors, we have to compare vectors to vectors. Do this with only a couple lines since we are using the same embedding model that we embedded our reviews with:

[ ]

Now, let's build out our aggregation pipeline. Since we are going to be using a $geoNear pipeline next, we want to keep in the IDs found from this search:

[ ]

Let's print out our results and see what happens from our query of "outdoor seating quick service" :

[ ]
{'_id': ObjectId('66bcd2b05f6a590b646ef369'), 'name': 'While We Were Young Kitchen & Cocktails', 'rating': 4.3, 'reviews': ["We went here for my birthday! It's a small space but the light lavender paint brightens and makes it feel wider than it is. The truffle fries and kale salad are to DIE for. If you're a rabbit like me you'll love it. They are really good at fries too. While everything may be slightly pricey the protons are totally worth it. I wish me and my boyfriend actually ordered to share everything lol. We just wish his burger was cooked a little bit better. The drinks were well made if i had another i wouldn't have made it home lol.", '3.5 / 5.0 - I came here for weekend brunch with a friend and we had a nice time catching up.\n\nWhile We Were Young is such a cute place, with a stylish decor. The dining area is quite small inside, but because of the large windows and layout of the tables, it didn’t feel claustrophobic at all.\n\nThe service was great. The staff was welcoming and offered us 2 table options.\n\nThe food was a bit of a disappointment. We both ordered the Spring Salad ($22+) with dressing on the side. It was mostly lettuce and quinoa, with very little goat cheese and strawberries. The lettuce was not very fresh, either. Considering the price, I’d had higher expectations. Unless you want mainly lettuce and quinoa, I would recommend trying a different dish.', 'The sun was injecting life into New York City so I needed a Spritz injected straight into my bloodstream.\n\nWe were just wandering around the West Village, looking for any place where we could be photosynthesized by the sun. I had St. Jardim bookmarked as I walk by there all the time and their outdoor seating is about as idyllic as it gets, but they went all Hollywood on us and were fully occupied.\n\nWhile We Were Young was right next door and had an open table, so we snagged it quick because it was one of those days where everyone is looking to grab a spritz in direct sunlight. I cannot hate a man who has the same dreams as me.\n\nThey have eclectic drink names here that range from "Plan B" to "Texts From Last Night" to "F@$king in the Morning." This got a good laugh out of me. I respect this riskiness. You gotta take risks to be great. You gotta risk it for the biscuit.\n\nI just got my spritz because you know why I\'m here, but my girlfriend got a drink named "One Night Stand" .... DAMN THAT HURT... I\'m still licking my wounds from that tbh... but it did taste fantastic at least. Tequila, Watermelon, Chili Agave and Lime is a beautiful mixture.\n\nWe got a second round because the spritz and the One Night Stand were both performing at a high level, and the weather compelled us to stay outside. I could be hit by a bus tomorrow. Another extinction event could hit at any time really. Might as well enjoy these days while I can.\n\nIG @jnov_\nTiktok @jnov_reviews', 'Came here for brunch with my friend - it was just ok.\nService was great and friendly, but after an hour and a half of dining we were told that the next reservation was coming in. Kind of trashy to kick guests out after only an hour and a half.\nAlso, needed to put in a $70 deposit for the reservation for 2 - always think it’s kind of gross  when restaurants demand credit cards for booking.\nThe space was also much smaller than the photos online show - maybe 5-7 tables inside total and a small bar area.\nand it was definitely not as nicely decorated as the photos online. No fresh flowers or pretty wall decor.\nfood was good , but the portions were tiny for the prices.\nThe cocktails were not bad , not amazing but not the best either.', 'I came for the outside seating on a pitch-perfect summer evening and the people-watching, but the food was excellent. The kale salad was unique --wonderfully complex and satisfying.  The Brussels were great, if more normative.   The staff let us linger and enjoy the night.']}
{'_id': ObjectId('66bcd2b05f6a590b646ef361'), 'name': 'Bar Pisellino', 'rating': 4.3, 'reviews': ['this place gets sooo busy in the summer even on a weeknight so come knowing there will likely be a line or wait time. wait was longer than expected and the drinks are definitely pricey too on avg of 18-20 per drink. the aperol spritz was great and i love the ambience and location of this bar but indoor seating is limited. overall a cute bar to come with friends on a nice warm day and enjoy a drink or two. wish they had happy hours!', 'Came for a martini on the 4th of July. Was pretty busy but grateful they were open! I believe our server was Benji who was doing a good job! Was the only server tending to the outside area so waited a little bit but not bad at all consider it was a holiday. Just had a martini with vodka and it was delicious. Came served with a little side car!', 'Love the interior and atmosphere here. Sets you back into Italy right away. Lovely pastry and coffee and even their iced tea is fab', 'I’ve been to Bar Pisellino for early breakfast a few times, which has been fantastic. The space itself is beautiful and probably one of my favorite parts of visiting, and the coffee and food are delicious too. It’s a great place to visit early and sit inside for a bit while sipping a cappuccino and indulging in a panino or cornetto.\n\nPost-work/pre-dinner drinks are a different story. The place gets packed very early, the cocktails are a little too sweet, but worst of all is the crowd it attracts. Everyone seems to be bothered by the presence of others near them and it’s just a weird, negative kind of vibe. So I wouldn’t come for drinks again, nor would I recommend the place for drinks, but early breakfast is really nice.', 'Great little bar in the center of west village. A place to people watch. On a perfect sunny summer day, makes up three quintessential New York City scene. Expect a wait']}
{'_id': ObjectId('66bcd2b05f6a590b646ef373'), 'name': 'Pastis', 'rating': 4.5, 'reviews': ['I had been here pre-kids (13+ years ago) and we loved it then and we still love it now. Such a lovely atmosphere and the food is spot on. I love when I can find a place that remains consistent and is still great. Can’t wait to come back again on our next visit.\n\nService was great. I was thinking of something and she brought it right to me without having to say it out loud! Now that’s service!!\n\nIf you have larger parties, I would recommend you make a reservation to avoid a wait. Most tables are smaller tops.\n\nEverything we ate was great!', 'The trout was good, so was the scallops. As for the steak, it came a bit more done than expected, as it would be good if the meat cab also come with some salad and not just fries. It helps to balance off the greasiness of the meat and garlic butter. Service was great as well.', 'The most impressive part of the experience is the hostess stand - multiple monitors and hostess, figuring out seating availability like high frequency traders. Hats off.\n\nWe didn’t have a reservation for the busy brunch time. The hostesses magically found an outdoor table for us. Perfect weather for some bubbles, steak tartare and modern French fares on the side walk for a Sunday, people watching and post Whitney Biennial visit.', 'My favorite French restaurant in NYC! I know there are plenty of French spots in the city, but Pastis is hands down the best. We absolutely love the escargot—perfectly mixed with garlic and butter, it had us finishing the entire basket of bread. The onion soup, steak, and oysters are all excellent as well. Their brunch is another highlight. The egg white omelette and eggs benedict are our go-tos. It’s the perfect place to start a day with decent breakfast.', 'Overall a really lovely dinner. Damien our server was lovely, attentive, great energy, and no mistakes. Delicious food, great non alcoholic options. Brothers got cocktails and loved them. Dishes we loved: steak au poivre, warm shrimp salad, crispy artichokes, sardines, cauliflower au gratin, sorbet and ice cream.\n\nJust would have preferred an indoor table. Upon asking the hosts we’re quite cold and harsh, didn’t give much flexibility. Told us they could only cancel our reservation and rebook for 8:15 which was 30 mins wait from our arrival.']}
{'_id': ObjectId('66bcd2b05f6a590b646ef366'), 'name': 'Bar B', 'rating': 4.8, 'reviews': ["Bar B is a small little establishment with highly limited seating, but if you can grab a table the experience is fantastic. A good selection of affordable wines and decent food to pair.\n\nThe staff are all wonderful and care about providing quality products and good service. I will call out on Google this comes out as a Cocktail bar, but it's really a wine lounge.\n\nI ordered the Chicken Skewers and a Chianti wine. Not something I'd normally pair, but oddly was fantastic. The skewers were moist and delicious. They were placed on top of a mini baguette slice that soaked in the juices for additional flavor.\n\nThe Chianti was mild and easy on the palette. The wine was easy to drink and perfect for the day. I was able to get one of the two tables outside to truly enjoy the experience. By the time I left the bar was full of people standing.\n\nOverall great place and would recommend going to if you get the opportunity.", 'I had no idea about Bar B until a friendly guy sitting next to me on a flight from BKK told me about it. I was intrigued that it was an Italian-inspired standing bar with a Japanese owner.\nI’d been to Basta Pasta over the years, but had no idea they had a bar—when you look carefully, the “b” is actually the same exact font.\n\nI finally came here this week with a friend and we absolutely loved it. It’s a small place and when we arrived past 6pm, it was already full. But the staff was able to set up a table for us outside.\n\nWe ordered:\n- Sea Scallops Carpaccio ($13+)\n- Chicken Skewers ($13+)\n- Penne Amatriciana ($16+)\n- Crème Brûlée ($11+)\n\nEverything we ordered was delicious and I would recommend them all.\nDrinks, they have happy hour until 7pm, which was great—especially since it includes prosecco for $8+.\n\nThere was a consistent flow of people, with a line outside at times. It was a chilly evening and got so cold we asked to go inside once a space opened up.\nThe staff was attentive and very helpful.\n\nIt’s a small place and may be hard to get in, but I will be back for sure, to try more of their delicious dishes.', 'The food is amazing! Must try Chicken liver pate and sea scallops', 'Randomly came across this standing-room-only wine bar. Loved it. We did get one of the two tables out front but the crowd inside all seemed very happy with the setup. Super friendly staff (and owner)… lots of regulars which is always a good sign.', 'Great tapas and wine. Is a fusion of tapas. I went on  Saturday night and enjoy Manny delicacies prosciutto with figs, cheese platter, beet salad and shrimps all tasty and affordable. Service was pleasant. Small be ready to eat standing up, place is packed. Nice decor, servers are pleasant.']}
{'_id': ObjectId('66bcd2b05f6a590b646ef374'), 'name': 'Osteria Carlina West Village', 'rating': 4.8, 'reviews': ['Sat at the outside. Service started okay, we got still and sparking, they forgot about the sparkling. No big deal.\n\nWe ordered a prosciutto sandwich and a burger (medium rare). Sandwich was good.\n\nWhen I cut into the burger there were chunks of chopped meat that fell out. The inside was still raw with white un rendered fat. They likely didn’t take the internal temp and the grill was too hot so only the outside got seared.\n\nI asked the server if they could pop it back on the grill to medium instead. They put the whole sandwich in the oven to warm it and sent it back to me, saying that the cook said I had ordered medium rare 🙂.\n\nEither I don’t know temperatures or they don’t… I think the pictures are clear (pictures are from after they tried to get it to temp).', 'Great Italian restaurant to enjoy a delicious meal by yourself at the bar.\n\nThe atmosphere is relaxing and the food well-cooked. Highly impressed by the slow-cooked veal.', 'Tiny place.  Small menu but very cozy.  Excellent service.  Came here 3 times with the family of 5.  The staff is incredible and you feel like you are in Italy.  The food is generally good but I wasn’t amazed.  I would give it a 4.5 for food and not 4.8.  It’s probably one of the better Italian restaurants in the neighborhood.', 'We had an amazing dinner here! The food was delicious and we enjoyed every aspect of our meal! Service was excellent and the restaurant was beautifully decorated', 'Customer service was amazing from beginning to start. My steak was only warm, though taste good. Small place and little privacy for conversation.']}

We have five fantastic options! Let's go ahead and save the IDs from our above pipeline in a simple line:

[ ]
[ObjectId('66bcd2b05f6a590b646ef369'), ObjectId('66bcd2b05f6a590b646ef361'), ObjectId('66bcd2b05f6a590b646ef373'), ObjectId('66bcd2b05f6a590b646ef366'), ObjectId('66bcd2b05f6a590b646ef374')]

Now that they're saved, we can build out our $geoNear pipeline and see which one of these options is closest to us from our starting location, Balaboosta, and which one we can walk over to!

To figure out the coordinates of Balaboosta, I right clicked on Google Maps and saved in the coordinates and then made sure I was including the longitude and latitude in the proper order.

[ ]
{'name': 'Pastis', 'address': '52 Gansevoort St, New York, NY 10014, USA', 'rating': 4.5, 'dist': {'calculated': 182.82575242382333}}
{'name': 'While We Were Young Kitchen & Cocktails', 'address': '183 W 10th St, New York, NY 10014, USA', 'rating': 4.3, 'dist': {'calculated': 468.19791207065526}}
{'name': 'Bar Pisellino', 'address': '52 Grove Street, 7th Ave S at, New York, NY 10014, USA', 'rating': 4.3, 'dist': {'calculated': 582.0735279994905}}

Seems like the restaurant we're heading over to is Pastis since it's the closest and fits our criteria perfectly.

Other way around! Geospatial Queries first, then Vector Search

[ ]
{'_id': ObjectId('66bcd2b05f6a590b646ef369'), 'name': 'While We Were Young Kitchen & Cocktails', 'rating': 4.3, 'dist.calculated': 468.19791207065526}
{'_id': ObjectId('66bcd2b05f6a590b646ef361'), 'name': 'Bar Pisellino', 'rating': 4.3, 'dist.calculated': 582.0735279994905}
{'_id': ObjectId('66bcd2b05f6a590b646ef373'), 'name': 'Pastis', 'rating': 4.5, 'dist.calculated': 182.82575242382333}