draft
bool
1 class
date
stringlengths
19
20
title
stringlengths
9
214
tag
sequence
category
sequence
body
stringlengths
575
57.5k
description
stringlengths
40
192
image
stringlengths
28
59
embeddings_base_en
sequence
embeddings_small_en
sequence
embeddings_mini_lm
sequence
slug
stringlengths
8
191
url
stringlengths
49
232
false
2012-07-15 13:29:05
tcpdump: Learning how to read UDP packets
[ "networking-2" ]
[ "Networking" ]
http://twitter.com/philandstuff[Phil] and I spent some of Friday afternoon configuring https://github.com/etsy/statsd/[statsd]: ____ A network daemon that runs on the Node.js platform and listens for statistics, like counters and timers, sent over UDP and sends aggregates to one or more pluggable backend services ____ We configured it to listen on its default port 8125 and then used http://www.markhneedham.com/blog/2012/07/15/netcat-localhost-resolution-not-working-when-sending-udp-packets/[netcat to send UDP packets] to see if it was working like so: [source,text] ---- echo -n "blah:36|c" | nc -w 1 -u -4 localhost 8125 ---- We used tcpdump to capture any UDP packets on port 8125 like so: [source,text] ---- tcpdump -i lo udp port 8125 -vv -X ---- To briefly explain the options we passed to it: * +++<cite>+++-i lo+++</cite>+++ only captures packets on the local loopback i.e. packets sent to localhost * +++<cite>+++udp+++</cite>+++ means that only UDP packets will be captured. Other types of packets we might capture could be tcp or icmp for example. * +++<cite>+++-vv+++</cite>+++ just gives us more verbose output * +++<cite>+++-X+++</cite>+++ prints out the data in the UDP packets in ASCII as well as hex. If we just wanted the latter we could use the +++<cite>+++-x+++</cite>+++ option This is what one of the messages received by tcpdump looks like: [source,text] ---- 13:16:40.317636 IP (tos 0x0, ttl 64, id 58103, offset 0, flags [DF], proto UDP (17), length 37) localhost.48358 > localhost.8125: [bad udp cksum 7c8f!] UDP, length 9 0x0000: 4500 0025 e2f7 4000 4011 59ce 7f00 0001 E..%..@[email protected]..... 0x0010: 7f00 0001 bce6 1fbd 0011 fe24 626c 6168 ...........$blah 0x0020: 3a33 367c 63 :36|c ---- The last three lines of this output detail the IP header, UDP header and the data in the packet. The following diagram is quite useful for understanding what each part of the IP header is defining: image::{{<siteurl>}}/uploads/2012/07/IP-Header.jpeg[IP Header,600] _Source: http://www.wtcs.org/snmp4tpc/literature.htm[WTCS.org]_ This diagram defines things in terms of bits whereas the tcpdump output is in hexidecimal. Each block of 4 hexidecimal digits is equivalent to 16 bits. There are a couple of parts of the IP header that might be interesting to us in this case. The first 4 bits/1 digit define the IP version which is 4 in this case since we're using IPv4. The next 4 bits define the Internet Header length - the number of 32 bit words in the header. In this case the value is 5 so we know the total length of the IP header will be 160 bits (5 * 32 = 160). The next few bits aren't that interesting but we can see the source IP address at an offset of 96 bits and covers the next 32 bits: ++++ <table style="border: 1px solid;background-color: #F9F9F9;width: 100%;border-color: #cccccc;padding: 1px;margin-bottom: 10px;">++++++<tbody>++++++<tr>++++++<td>+++0x0000: 4500 0025 e2f7 4000 4011 59ce +++<strong>+++7f00 0001+++</strong>++++++</td> </tbody> </table> ++++ We know this is going to represent an IPv4 address so it will be represented as 'x.x.x.x' where the maximum value of x is 255. In this case since we're just sending packets locally it translates to 127.0.0.1: +++<ul>++++++<li>+++7f \=> 127+++</li>+++ +++<li>+++00 \=> 0+++</li>+++ +++<li>+++00 \=> 0+++</li>+++ +++<li>+++01 \=> 1+++</li>++++++</ul>+++ The next 32 bits are the destination IP address which has now gone onto the next line but is exactly the same: +++<table style="border: 1px solid;background-color: #F9F9F9;width: 100%;border-color: #cccccc;padding: 1px;margin-bottom: 10px;">++++++<tbody>++++++<tr>++++++<td>+++0x0010: +++<strong>+++7f00 0001+++</strong>+++ bce6 1fbd 0011 fe24 626c 6168+++</td>+++ </tbody> </table> We've now covered 160 bits which means that the IP header is complete and we can move onto the IP payload which starts with the UDP header: ++++ <div>++++++<img src="{{<siteurl>}}/uploads/2012/07/udp-header.png" alt="Udp header" title="udp-header.png" border="0" width="600" height="301">++++++</img>++++++</div>+++ +++<em>+++Source: +++<a href="http://ciscoskills.net/2011/03/28/understanding-udp/udp-header/">+++ciscoskills.net+++</a>++++++</em> ++++ We start with the source port which is 'bce6' or 48358 +++<a href="http://www.statman.info/conversions/hexadecimal.html">+++in decimal+++</a>+++. We can see that value referenced in the 2nd line of the tcpdump output as well. The next 16 bits/4 digits are the destination port which is '1fbd' or 8125 in decimal - exactly what we'd expect. The next 32 bits/2 blocks of 4 digits define the length and checksum but after that we reach the data part of the packet which should contain 'blah:36|c'. The word 'blah' is defined like so: ~~~text 626c 6168 ~~~ 00x62 is 98 in decimal and we can use a +++<a href="http://en.wikipedia.org/wiki/UTF-8">+++UTF-8 encoding table+++</a>+++ to see that 98 maps to the letter 'b'. 00x6c is 108 or the letter 'l', 00x61 is 97 or the letter 'a' and 00x68 is 104 or the letter 'h' We wrap onto the last line for the rest of the data we wanted to send to statsd: [source,text] ---- 0x0020: 3a33 367c 63 ---- It follows the same pattern though where 00x3a is 58 or the ':' character and so on. And now I have a slightly better idea of how to read tcpdump's output than I did when I started writing this! As usual any tips or hints are welcome. --- I found +++<a href="http://www.windowsnetworking.com/articles_tutorials/understanding-udp-protocol.html">+++this article+++</a>+++ useful for initially understanding how to read the output but I think the diagrams above work best! TechRepublic's '+++<a href="http://www.techrepublic.com/article/exploring-the-anatomy-of-a-data-packet/1041907">+++anatomy of a data packet+++</a>+++' also provides a good explanation.+++</tr>++++++</tbody>++++++</table>++++++</tr>++++++</tbody>++++++</table>+++
null
null
[ 0.0016360980225726962, -0.031354133039712906, -0.01639801822602749, 0.04160249978303909, 0.07418100535869598, 0.005673027131706476, 0.0036713839508593082, 0.05787596479058266, 0.0052758860401809216, -0.026329338550567627, 0.01053511444479227, -0.013375368900597095, -0.07501167058944702, 0.012595298700034618, -0.017312709242105484, 0.0659107193350792, 0.07533172518014908, -0.01839154213666916, 0.03790716081857681, -0.00017810000281315297, 0.024733655154705048, 0.051222655922174454, 0.0008338618790730834, 0.025946537032723427, 0.004942269995808601, 0.007404968608170748, -0.005136862862855196, -0.008551818318665028, -0.043809421360492706, -0.012646975927054882, 0.06289846450090408, 0.004661261104047298, 0.016942258924245834, -0.00702822906896472, 0.02459712326526642, -0.002628609538078308, -0.024969015270471573, 0.012490946799516678, -0.007253899239003658, 0.015852700918912888, -0.09484092891216278, 0.032447732985019684, -0.012729894369840622, 0.018851134926080704, -0.04838326573371887, -0.00337250460870564, -0.015147162601351738, 0.023981699720025063, 0.00849350355565548, 0.03341226279735565, -0.08246389776468277, 0.029007038101553917, -0.016397446393966675, 0.027670180425047874, 0.018117239698767662, 0.027909191325306892, 0.011712636798620224, -0.06299196183681488, 0.024964051321148872, -0.04276524484157562, -0.015342971310019493, -0.015814833343029022, 0.01351252943277359, 0.004070335999131203, 0.009398022666573524, -0.024798288941383362, 0.015044452622532845, 0.038874682039022446, -0.03931637853384018, -0.015693921595811844, 0.005789572838693857, 0.024267280474305153, -0.03039921633899212, -0.015171216800808907, 0.028345154598355293, -0.04495103657245636, -0.001665152027271688, 0.03202662989497185, 0.014114176854491234, 0.058351147919893265, -0.030730945989489555, 0.007502712309360504, 0.016606956720352173, 0.028634261339902878, -0.00011495603393996134, -0.05147760733962059, -0.03394971042871475, -0.0037968438118696213, -0.0695674866437912, 0.07655051350593567, 0.006633116863667965, -0.021964561194181442, 0.024526052176952362, 0.0005217784200794995, -0.03207070752978325, 0.0140082323923707, 0.0001712614466669038, 0.003918061964213848, 0.006359198596328497, -0.04436282441020012, -0.032881468534469604, -0.013872564770281315, 0.029032381251454353, 0.023999834433197975, -0.07820725440979004, -0.02992188185453415, -0.026267196983098984, -0.011834518983960152, -0.01177731528878212, -0.004413766320794821, -0.027105657383799553, 0.01129614096134901, -0.013264752924442291, -0.00031239568488672376, -0.05883341655135155, 0.08838032186031342, 0.027227608487010002, -0.06420339643955231, 0.02087182179093361, 0.020820319652557373, 0.0594005323946476, 0.04789286106824875, -0.00879414938390255, 0.07549750059843063, 0.03742038458585739, 0.0015830935444682837, -0.0001424599759047851, 0.038554590195417404, -0.01509308721870184, -0.03243907541036606, -0.026660459116101265, 0.08837082237005234, -0.03135024383664131, 0.018475426360964775, 0.002455437323078513, -0.03125037997961044, -0.006346013396978378, 0.021225450560450554, 0.04463056102395058, 0.055528152734041214, -0.0014538401737809181, -0.026590541005134583, -0.00010590659803710878, 0.012789302505552769, 0.023807452991604805, 0.007846055552363396, 0.003539687255397439, -0.046653103083372116, -0.03351752460002899, 0.008904209360480309, 0.01104662474244833, 0.010077017359435558, 0.059337351471185684, -0.024536332115530968, 0.010947344824671745, 0.06837376207113266, 0.05705246329307556, 0.018873972818255424, -0.03700266778469086, 0.025649163872003555, 0.030967671424150467, 0.03814598172903061, 0.022542057558894157, 0.029088471084833145, -0.007094175089150667, -0.025145484134554863, -0.004358978476375341, 0.05705425515770912, 0.02499077282845974, -0.005691425874829292, -0.038542490452528, -0.04487844929099083, 0.0696910098195076, -0.02074511907994747, 0.007102129049599171, 0.03344125300645828, 0.07720010727643967, 0.02728770487010479, 0.027263866737484932, -0.004539348650723696, -0.09614469856023788, 0.07107225805521011, 0.02847430668771267, 0.011824251152575016, 0.005222587380558252, -0.002736888127401471, 0.07483366131782532, 0.0346546545624733, 0.0047015114687383175, 0.03110705316066742, -0.062245678156614304, -0.08213992416858673, -0.023247400298714638, -0.0027406481094658375, 0.04629535600543022, -0.03127337619662285, 0.012108983471989632, 0.052916672080755234, 0.040712401270866394, 0.03564305976033211, 0.014209697023034096, 0.00032739737071096897, 0.0243291687220335, -0.06043839454650879, -0.06134127452969551, 0.052112627774477005, 0.029904816299676895, -0.017754651606082916, -0.03272337093949318, -0.0007415643776766956, -0.038815997540950775, -0.03279183804988861, 0.023759566247463226, -0.04298697039484978, 0.03951751068234444, 0.002882651286199689, 0.040549423545598984, -0.006727487314492464, 0.046704426407814026, -0.03408002853393555, 0.007638587616384029, 0.007344861049205065, -0.01542050950229168, 0.05069424957036972, 0.012799735181033611, 0.1220327764749527, 0.06815826147794724, 0.005072592757642269, -0.028827764093875885, 0.0309863593429327, 0.005766656715422869, -0.043416578322649, -0.02371230162680149, -0.020090673118829727, -0.023219920694828033, 0.014163069427013397, -0.05060883238911629, -0.024025216698646545, 0.007464089430868626, -0.04559779167175293, 0.013939705677330494, 0.07649465650320053, -0.009632128290832043, 0.058773819357156754, 0.000753142696339637, -0.02045079693198204, -0.0006749396561644971, -0.03870082274079323, -0.05128849670290947, 0.004663368687033653, 0.009658226743340492, 0.009249329566955566, 0.03796348720788956, -0.03886526823043823, -0.000943572202231735, -0.03576930984854698, -0.04162285476922989, 0.0478510856628418, 0.04560839384794235, 0.061875633895397186, -0.02421792596578598, 0.04695936292409897, -0.017883433029055595, 0.010921158827841282, -0.0037640610244125128, -0.05386914685368538, -0.0510915070772171, -0.00007250170165207237, 0.025396402925252914, 0.020957432687282562, 0.02991051785647869, 0.017112718895077705, 0.005434643477201462, -0.010719971731305122, 0.007219814695417881, -0.01174499187618494, 0.013593096286058426, 0.019553937017917633, -0.004182158969342709, -0.020052965730428696, -0.050737980753183365, 0.05143965408205986, -0.02301604300737381, -0.03164377808570862, 0.014946224167943, -0.0719846561551094, 0.03351995721459389, -0.07361720502376556, -0.02322988770902157, -0.015412130393087864, 0.003108833683654666, 0.010043351911008358, 0.018126556649804115, 0.02376164309680462, 0.05928218737244606, 0.011593910865485668, 0.0083222771063447, 0.02436150424182415, -0.0008603424648754299, 0.027448205277323723, -0.0038248116616159678, 0.0017694586422294378, 0.028207428753376007, 0.0038736392743885517, -0.0371200367808342, -0.07639867067337036, 0.023800304159522057, -0.027002867311239243, -0.2889975607395172, 0.05937514454126358, 0.027576791122555733, -0.027984675019979477, 0.018330398947000504, -0.009373952634632587, 0.028232868760824203, -0.041135676205158234, -0.01964709907770157, -0.005257179494947195, -0.033455099910497665, -0.040143322199583054, -0.012938907369971275, 0.011388330720365047, 0.012131371535360813, 0.00890202634036541, 0.01123475655913353, -0.06457709521055222, 0.007943644188344479, 0.02056151069700718, -0.0011893755290657282, -0.06054467707872391, -0.004064768087118864, 0.04612623527646065, 0.028449613600969315, 0.03628788888454437, -0.07155287265777588, 0.038977328687906265, -0.04765709117054939, 0.01932276412844658, -0.000049970807594945654, 0.003435248974710703, -0.00024994841078296304, -0.0028326688334345818, -0.01947764866054058, -0.020787039771676064, 0.0557539202272892, 0.00041340963798575103, 0.0014957963721826673, -0.0014371322467923164, -0.0163795854896307, -0.007205428089946508, 0.004205354955047369, -0.00956252496689558, 0.07545388489961624, 0.023766139522194862, -0.07420147210359573, -0.010314233601093292, -0.020309265702962875, 0.07560690492391586, -0.021527107805013657, -0.053300872445106506, -0.015874924138188362, 0.011064302176237106, -0.04167398437857628, -0.043242283165454865, -0.033513955771923065, -0.03652067482471466, -0.031386278569698334, -0.04385979473590851, 0.0031460104510188103, -0.026225421577692032, -0.028427645564079285, -0.03871879726648331, -0.004881436470896006, -0.04529999941587448, -0.06616880744695663, -0.027950577437877655, 0.08897258341312408, 0.01867031306028366, -0.028519311919808388, 0.019164515659213066, -0.02234521321952343, -0.10652714967727661, 0.014958820305764675, -0.023028260096907616, -0.061968039721250534, 0.01641654036939144, 0.025040578097105026, 0.03881145641207695, -0.027766868472099304, -0.03128596395254135, -0.00006873150414321572, 0.019294248893857002, 0.023673763498663902, -0.028583478182554245, 0.022973662242293358, -0.0092829130589962, -0.008488209918141365, 0.011298393830657005, 0.05720297619700432, -0.024611353874206543, -0.03262323513627052, -0.008775915950536728, -0.002949159126728773, 0.018258990719914436, 0.0060857064090669155, 0.012240602634847164, 0.015948783606290817, 0.0477324053645134, 0.04191308841109276, -0.05373954772949219, 0.010212825611233711, -0.07157082110643387, -0.023815972730517387, 0.006739148870110512, -0.04535979777574539, 0.011923234909772873, 0.02582923322916031, 0.013470294885337353, -0.016429971903562546, -0.03868706524372101, 0.027219634503126144, -0.06837887316942215, -0.027986867353320122, 0.01288717519491911, 0.027515364810824394, 0.02665693499147892, 0.02406899631023407, -0.03564925491809845, -0.020801860839128494, 0.01476555410772562, 0.019412711262702942, -0.012898283079266548, -0.04588594660162926, -0.02153259515762329, -0.024326171725988388, -0.008974001742899418, 0.0260547436773777, 0.006588401272892952, -0.0019220785470679402, 0.014815830625593662, 0.038054417818784714, -0.012604459188878536, 0.01631830260157585, -0.007122942712157965, -0.05914812162518501, -0.03583404794335365, 0.031927481293678284, 0.01775902695953846, -0.006606947164982557, 0.017466584220528603, -0.00538721214979887, 0.038165152072906494, 0.046162184327840805, 0.004601497668772936, 0.01702282950282097, -0.0053340052254498005, 0.02567169815301895, -0.013344177044928074, 0.024591708555817604, -0.05352777615189552, 0.009368881583213806, -0.006916170008480549, -0.02476872131228447, -0.010599298402667046, 0.055767398327589035, 0.0010994260665029287, -0.040750857442617416, -0.029375875368714333, 0.011820139363408089, -0.06540434062480927, -0.002455370733514428, -0.016703400760889053, -0.00472363131120801, 0.051718756556510925, -0.006032003089785576, 0.0014078202657401562, -0.0014694022247567773, -0.029906177893280983, 0.004183893091976643, 0.025617457926273346, -0.02327944152057171, 0.013710674829781055, 0.023246314376592636, -0.0017620009602978826, -0.014899615198373795, 0.025304874405264854, 0.040735743939876556, 0.020712386816740036, 0.019612930715084076, -0.01240250002592802, 0.008109928108751774, 0.036300178617239, 0.054231684654951096, 0.04893011599779129, 0.005581927951425314, -0.006415467243641615, -0.014183213002979755, 0.0009959382005035877, -0.025424908846616745, 0.014129707589745522, -0.009415370412170887, 0.007471807766705751, -0.02633763663470745, -0.07893702387809753, 0.043362684547901154, 0.02253005839884281, -0.008674993179738522, 0.008785049431025982, 0.005656119901686907, 0.013670059852302074, -0.04017259180545807, 0.05506901070475578, 0.04426565021276474, -0.0510442741215229, 0.015299847349524498, 0.0014174079988151789, 0.02375589869916439, -0.008216499350965023, 0.013346368446946144, -0.03831983357667923, -0.015420428477227688, -0.014282209798693657, 0.031924065202474594, -0.0577416867017746, -0.03772568330168724, -0.006127133034169674, -0.006610532756894827, 0.0036891628988087177, 0.013484762981534004, 0.004165048245340586, -0.01330385822802782, -0.0025770466309040785, -0.04932553321123123, 0.03962472826242447, -0.008970562368631363, -0.03460925817489624, 0.00705399364233017, -0.029791034758090973, -0.0075694238767027855, -0.0393909215927124, 0.023107390850782394, 0.029256589710712433, -0.028510265052318573, -0.002304907189682126, -0.038221605122089386, -0.0005152297671884298, -0.04071502387523651, 0.06885086745023727, -0.030364418402314186, -0.036480195820331573, -0.04728259891271591, 0.0014451786410063505, -0.04558302089571953, 0.004534013103693724, -0.0005488572642207146, -0.010817386209964752, 0.023728277534246445, 0.034582026302814484, 0.01623997837305069, 0.026684096083045006, -0.03421802073717117, -0.018229102715849876, 0.05229610204696655, -0.07242632657289505, -0.04800212010741234, -0.012803230434656143, -0.030906762927770615, 0.003843537764623761, -0.012160872109234333, 0.0011225779308006167, -0.0376712940633297, 0.03854208067059517, 0.038497790694236755, 0.0007211781339719892, 0.03564636781811714, -0.00637681083753705, 0.0076755015179514885, -0.037301450967788696, -0.014547566883265972, -0.08793478459119797, 0.025244086980819702, 0.012962950393557549, 0.0015091437380760908, -0.016410794109106064, 0.04227760061621666, -0.04157159477472305, 0.027442699298262596, -0.07820113748311996, -0.032949429005384445, 0.019802996888756752, 0.014043805189430714, -0.004501971881836653, 0.010621549561619759, -0.061321087181568146, 0.02756657265126705, 0.033989038318395615, -0.03626825660467148, -0.020142387598752975, -0.020015094429254532, 0.054532960057258606, 0.0150291807949543, 0.03097832016646862, -0.026213742792606354, -0.038279224187135696, 0.0679202750325203, 0.0106793949380517, 0.011419832706451416, 0.04000512883067131, -0.025458840653300285, 0.022877374663949013, 0.032079048454761505, -0.025105956941843033, 0.009212297387421131, 0.01454096008092165, -0.027126623317599297, -0.0634872168302536, 0.006823991425335407, -0.0035120632965117693, -0.026239871978759766, -0.029502270743250847, 0.06367634236812592, 0.012018230743706226, -0.04927247390151024, -0.06790647655725479, 0.02177039533853531, -0.026299918070435524, -0.03161478042602539, -0.013495038263499737, 0.029473254457116127, -0.04090606048703194, 0.048434335738420486, 0.003721426008269191, 0.02262306399643421, 0.07025479525327682, 0.006301205139607191, -0.02333538979291916, 0.02733653038740158, 0.08892954885959625, 0.11034642904996872, 0.013572449795901775, 0.0037296144291758537, 0.06626563519239426, -0.01764553226530552, -0.04326610267162323, -0.006977722514420748, -0.02592020109295845, -0.03702220693230629, -0.01450882013887167, -0.0018798550590872765, 0.0858234316110611, -0.02091960236430168, 0.08420264720916748, -0.03533674404025078, 0.0021288320422172546, 0.02186826430261135, -0.010743486694991589, 0.016338657587766647, 0.04362816363573074, -0.012149680405855179, 0.04198979586362839, 0.0069472407922148705, -0.03366557136178017, 0.035030048340559006, -0.022709913551807404, -0.02105368860065937, 0.016434477642178535, -0.003812517737969756, 0.001451479154638946, 0.01974812150001526, 0.029188545420765877, 0.07098599523305893, -0.026547009125351906, 0.007471749559044838, 0.00874953530728817, 0.0528181791305542, -0.011218569241464138, 0.03665713593363762, -0.008846892975270748, -0.0036009179893881083, -0.017715128138661385, -0.019246039912104607, 0.002259444212540984, -0.0390843003988266, -0.03178044781088829, 0.028567073866724968, -0.010227306745946407, -0.017943551763892174, 0.00802433118224144, -0.039285752922296524, -0.014196008443832397, -0.05433524772524834, -0.03112293966114521, -0.033933088183403015, -0.0712534636259079, -0.029650850221514702, 0.0003965400974266231, -0.012689929455518723, -0.026687700301408768, -0.01726670190691948, -0.025367554277181625, -0.03228185698390007, 0.02750646509230137, -0.047420889139175415, -0.014670850709080696, 0.011607768014073372, 0.026895135641098022, 0.011333012953400612, 0.026928192004561424, 0.06054238975048065, -0.0022386640775948763, -0.005076769273728132, -0.026762275025248528, 0.01099428255110979, 0.054346539080142975, -0.006785265635699034, -0.00944176223129034, -0.091221384704113, 0.029608378186821938, 0.04536272957921028, 0.008681020699441433, -0.07766549289226532, 0.011133444495499134, 0.014630593359470367, 0.007495601661503315, 0.042788803577423096, -0.025881970301270485, -0.018023010343313217, -0.05331067368388176, -0.024616681039333344, -0.033358436077833176, 0.00155708531383425, 0.04519255831837654, 0.005969266407191753, 0.08488334715366364, 0.049820318818092346, -0.017112886533141136, -0.039771918207407, -0.029995795339345932, 0.017837628722190857, 0.0015354037750512362, -0.03454821929335594, -0.034056589007377625, -0.02873125672340393, -0.099522165954113, -0.06039150431752205, 0.021651923656463623, -0.0203216802328825, -0.030036287382245064, 0.03875631093978882, 0.006655210629105568, -0.03602674603462219, -0.0011270070681348443, -0.05275784060359001, -0.01255838293582201, -0.012602712027728558, -0.011724365875124931, -0.03281250223517418, 0.03864048421382904, -0.023767510429024696, -0.015189221128821373, 0.0396304726600647, -0.04458969831466675, 0.0038465196266770363, 0.014454310759902, 0.048557545989751816, 0.06589468568563461, 0.016334623098373413, 0.0037917587906122208 ]
[ -0.08887483179569244, -0.0410345196723938, -0.025972211733460426, -0.05005569010972977, 0.0665401890873909, -0.06008300557732582, 0.010957570746541023, 0.022942375391721725, -0.015716426074504852, -0.010729982517659664, 0.027117159217596054, -0.016096964478492737, 0.006285513285547495, -0.030080238357186317, 0.05224243551492691, -0.0007141372188925743, -0.00952809676527977, -0.0830196812748909, 0.0009566341759636998, 0.048563361167907715, 0.0014043484115973115, -0.04046071320772171, -0.02695479989051819, -0.046395961195230484, 0.007698270492255688, 0.03667983040213585, 0.07388924062252045, -0.039795584976673126, -0.001630278304219246, -0.20962725579738617, 0.012660795822739601, -0.007558012846857309, -0.02234102413058281, -0.03285282477736473, 0.008573339320719242, 0.008726514875888824, 0.06454066932201385, -0.041981182992458344, 0.021705353632569313, 0.07211019098758698, 0.0034165256656706333, 0.03193704038858414, -0.050814636051654816, -0.01481260359287262, 0.04827010631561279, -0.03647981956601143, -0.020308228209614754, -0.013110160827636719, 0.025898518040776253, 0.003340014023706317, -0.05870193615555763, 0.029365861788392067, 0.02682962827384472, -0.031205682083964348, 0.028048686683177948, 0.010979211889207363, 0.06528284400701523, 0.07663455605506897, 0.02088462933897972, 0.0037984969094395638, 0.01732092723250389, 0.001344761229120195, -0.158009871840477, 0.09134317934513092, 0.07424058765172958, 0.017470302060246468, -0.05023978650569916, 0.008323722518980503, -0.024310652166604996, 0.05267416313290596, 0.01259213499724865, 0.0024790181778371334, -0.05297943204641342, 0.0528925359249115, 0.005685165524482727, 0.008322680369019508, 0.014267902821302414, 0.031309206038713455, 0.019072365015745163, -0.04510637745261192, -0.041486792266368866, -0.01910344511270523, -0.018598292022943497, -0.00961172953248024, -0.015369724482297897, -0.014540859498083591, -0.024378733709454536, 0.041688092052936554, -0.020987186580896378, -0.014780933037400246, -0.0010060006752610207, -0.0037796071264892817, 0.02013186551630497, 0.019091429188847542, -0.10040102154016495, 0.021028269082307816, -0.006581998895853758, 0.014701202511787415, -0.019166897982358932, 0.4321759045124054, 0.009179675951600075, 0.0024974942207336426, 0.05654425546526909, 0.01740865223109722, 0.03111891634762287, 0.015056490898132324, -0.007652453612536192, -0.036984872072935104, -0.01971278339624405, 0.019296230748295784, 0.0304462518543005, -0.009886921383440495, 0.021462516859173775, -0.054701510816812515, 0.06752431392669678, 0.016613826155662537, 0.020539503544569016, 0.02335042878985405, -0.021664341911673546, 0.05675969272851944, -0.036643944680690765, 0.019635479897260666, 0.034392308443784714, 0.007496184203773737, 0.028505174443125725, -0.025994060561060905, 0.04390425980091095, 0.05529781058430672, 0.011690804734826088, 0.05411782115697861, 0.03896631300449371, -0.04279712587594986, -0.03898201137781143, 0.017405524849891663, 0.018453344702720642, 0.030335120856761932, 0.033305373042821884, -0.06715697050094604, -0.012753401882946491, 0.054429247975349426, -0.007556047290563583, -0.0346577949821949, 0.019779713824391365, -0.023071404546499252, -0.01735019125044346, 0.07857312262058258, 0.016962697729468346, -0.003687777789309621, 0.014736992307007313, -0.038867656141519547, -0.012529016472399235, 0.03108520433306694, 0.0034656813368201256, -0.060144104063510895, -0.010189316235482693, 0.0075822374783456326, 0.0552845224738121, 0.03261777013540268, -0.03213217854499817, 0.01890832930803299, -0.013261938467621803, -0.026778489351272583, 0.0009301567915827036, 0.04663034528493881, 0.02581760287284851, -0.11183354258537292, -0.02150706946849823, 0.030215296894311905, 0.00033074026578105986, -0.11441358178853989, -0.05566263571381569, 0.0017897086217999458, -0.01708579622209072, -0.047407858073711395, -0.0006682866951450706, -0.04439955949783325, -0.039180636405944824, -0.005429406650364399, 0.050184037536382675, -0.02712159976363182, -0.04439513012766838, 0.0009734038030728698, -0.012063021771609783, -0.01604798622429371, -0.01364954374730587, -0.06695874780416489, -0.04704408347606659, 0.025414764881134033, 0.0010787867940962315, -0.006204232107847929, -0.046819839626550674, -0.046829886734485626, -0.07607989758253098, 0.07382771372795105, -0.020063478499650955, -0.03340795636177063, -0.018207421526312828, 0.015080072917044163, 0.01382402516901493, -0.030702723190188408, 0.03469651937484741, 0.028270941227674484, -0.00807923823595047, 0.03528565913438797, -0.07373739778995514, 0.04180100932717323, 0.021823907271027565, -0.04225729778409004, 0.054646074771881104, 0.0016488615656271577, -0.003468483919277787, 0.01929572969675064, 0.020420016720891, 0.04186432808637619, -0.00017021916573867202, -0.05238727480173111, 0.002135939197614789, 0.02434125728905201, 0.023215411230921745, 0.013805171474814415, -0.02120090089738369, 0.011247558519244194, -0.046557873487472534, -0.32115960121154785, -0.04861370474100113, -0.0037779929116368294, -0.0003508005465846509, 0.02801007218658924, -0.06754475831985474, 0.010852555744349957, 0.015269443392753601, 0.015289677307009697, 0.026468418538570404, 0.10087084025144577, -0.007995354011654854, 0.02717626467347145, -0.09821759909391403, -0.013753806240856647, 0.06366203725337982, -0.02538367360830307, -0.02215830609202385, -0.013276493176817894, 0.03450658172369003, -0.020031366497278214, -0.012357409112155437, -0.03311723843216896, -0.006883720867335796, 0.0090506412088871, -0.04288067668676376, 0.1026047095656395, 0.024946287274360657, 0.08707749843597412, -0.02760906331241131, 0.020697463303804398, 0.005180960055440664, 0.01577298901975155, -0.0909532830119133, -0.04903220012784004, -0.0058793979696929455, 0.013506234623491764, 0.017639940604567528, 0.0364457368850708, 0.02588641084730625, -0.10153720527887344, 0.020597081631422043, -0.04403086379170418, -0.07385540753602982, -0.023354893550276756, 0.012443795800209045, -0.047992195934057236, -0.019645901396870613, -0.016352318227291107, 0.0273963063955307, 0.005618428345769644, 0.007478611543774605, -0.007530377246439457, -0.015960633754730225, 0.041627395898103714, 0.007943471893668175, -0.036846667528152466, -0.02248471975326538, 0.005244223400950432, 0.003077032044529915, 0.008303274400532246, 0.056243397295475006, 0.008669600822031498, -0.08117462694644928, 0.016084864735603333, 0.02478479966521263, 0.00802219845354557, -0.007159315515309572, 0.042344845831394196, -0.017562398687005043, 0.0037941671907901764, 0.12740229070186615, 0.0017665327759459615, 0.04804915934801102, 0.006547475699335337, 0.006798827555030584, -0.004197732545435429, -0.020910127088427544, 0.031987860798835754, -0.016832375898957253, 0.0543515682220459, -0.02545388601720333, 0.06217886134982109, -0.05925719439983368, -0.009451090358197689, 0.028515230864286423, -0.002280318411067128, -0.007272293791174889, 0.03672817721962929, 0.017233386635780334, -0.04356915503740311, -0.015859413892030716, -0.0016853800043463707, -0.09188956022262573, 0.029778767377138138, 0.0167385321110487, -0.2575119435787201, -0.003713244805112481, 0.03407060727477074, 0.025951867923140526, 0.014314857311546803, 0.03317553550004959, 0.027528418228030205, -0.03369879350066185, -0.0383332334458828, 0.04974038898944855, 0.01475693378597498, 0.057521168142557144, -0.02942354790866375, 0.00418343860656023, 0.04565206170082092, 0.02724408730864525, 0.020601870492100716, 0.0043737562373280525, -0.020637312904000282, 0.01784018613398075, 0.029944084584712982, -0.01842241920530796, 0.15286241471767426, -0.008054318837821484, 0.02166568487882614, 0.048591285943984985, -0.025168098509311676, 0.06179184839129448, 0.06391174346208572, 0.0028821309097111225, -0.03004618175327778, 0.012878961861133575, -0.025092439725995064, -0.01719423197209835, 0.007025363389402628, -0.03815465793013573, 0.019152719527482986, 0.060522761195898056, 0.015322651714086533, -0.033716317266225815, -0.02957531064748764, 0.007794105913490057, 0.009743460454046726, 0.024504033848643303, 0.03740774840116501, -0.020842628553509712, -0.03632601350545883, -0.0383957140147686, -0.003981658257544041, 0.026305779814720154, -0.029772181063890457, -0.07079924643039703, 0.03639302775263786, -0.02561088837683201, 0.01677117496728897, 0.07139591127634048, -0.004200032912194729, -0.07524728029966354, -0.021945882588624954, 0.023419024422764778, -0.00801567267626524, -0.04875224456191063, 0.12599049508571625, 0.03775695338845253, 0.06260130554437637 ]
[ 0.015849793329834938, 0.06873535364866257, 0.0010656961239874363, -0.006923045497387648, 0.02704150415956974, -0.02204159088432789, -0.0140291852876544, 0.029475606977939606, -0.029352471232414246, -0.01003935281187296, -0.034484878182411194, -0.004000962246209383, 0.01658621057868004, -0.016918115317821503, -0.016601407900452614, -0.013495739549398422, 0.035429950803518295, 0.0016791315283626318, 0.040170732885599136, -0.05445881932973862, -0.042155150324106216, 0.02977622300386429, 0.06841341406106949, -0.05347387120127678, -0.0004849268007092178, 0.045390646904706955, -0.0196244940161705, 0.024121079593896866, 0.015160590410232544, -0.1234692633152008, -0.025909608229994774, -0.004512600135058165, -0.03054642491042614, 0.021021399646997452, -0.009602561593055725, 0.013844629749655724, -0.019893428310751915, 0.03549793362617493, -0.04276097193360329, 0.05491514503955841, 0.05459160357713699, -0.024069273844361305, -0.0009500625310465693, 0.016205837950110435, -0.018390147015452385, -0.02947489731013775, -0.05769012123346329, 0.003419930348172784, 0.0026324698701500893, -0.018563101068139076, -0.01751834899187088, 0.008756466209888458, 0.0087541863322258, 0.03648294135928154, 0.030795631930232048, -0.02705048769712448, -0.03167300671339035, -0.00890724640339613, -0.009208443574607372, -0.0061243195086717606, 0.02029683068394661, 0.030441273003816605, -0.029216790571808815, -0.019192125648260117, 0.0031539825722575188, -0.011268614791333675, 0.003956317901611328, 0.0030108781065791845, -0.020029019564390182, 0.03340043127536774, -0.03255448490381241, 0.06093977764248848, -0.07704221457242966, 0.006600077264010906, -0.0227422546595335, 0.016702845692634583, 0.009414617903530598, -0.03171186149120331, -0.001119452528655529, 0.0348510704934597, -0.03414997085928917, 0.007766202092170715, -0.004153394605964422, 0.0169138815253973, -0.03574194759130478, 0.021623358130455017, 0.00716467946767807, 0.0073160044848918915, -0.014861545525491238, -0.013160141184926033, -0.015532763674855232, 0.028192000463604927, -0.03508865088224411, 0.02058638073503971, -0.09385775774717331, -0.022984866052865982, -0.024646978825330734, -0.023271681740880013, -0.009212147444486618, 0.8268770575523376, 0.0046820915304124355, -0.0016540155047550797, -0.006446756888180971, 0.002786872675642371, -0.019058065488934517, -0.01402847096323967, -0.007703977171331644, -0.022629648447036743, -0.018969126045703888, 0.0011790301650762558, 0.010870802216231823, 0.018058553338050842, 0.005058352369815111, 0.031872887164354324, 0.029616704210639, 0.03327817842364311, 0.007693998981267214, 0.011291242204606533, -0.004181764554232359, -0.001580981072038412, 0.0064894831739366055, -0.002991978544741869, -0.006225688382983208, 0.04098597541451454, -0.008862693794071674, -0.14334312081336975, 0.06174936890602112, -7.358842224645162e-33, 0.023495281115174294, -0.023409316316246986, -0.025180233642458916, 0.009039819240570068, 0.05778966099023819, -0.008790942840278149, 0.022140048444271088, 0.02480749413371086, -0.04601036757230759, -0.016989711672067642, -0.009851071983575821, 0.0019695584196597338, 0.020307520404458046, -0.024561462923884392, 0.03334667533636093, -0.0029127157758921385, -0.0016526954714208841, 0.05063897371292114, 0.004107428714632988, 0.006652113050222397, 0.01580868288874626, 0.014168060384690762, 0.007592305541038513, 0.0013072880683466792, 0.01984468474984169, 0.016901571303606033, -0.010883842594921589, 0.009445530362427235, -0.002510158810764551, -0.06550868600606918, 0.003564761485904455, 0.047402799129486084, -0.025277458131313324, -0.024586888030171394, 0.04149014502763748, -0.0531175471842289, -0.002491324907168746, 0.0051904176361858845, -0.0387873537838459, -0.01616138033568859, -0.06059638410806656, 0.013586422428488731, -0.043628137558698654, -0.03837829828262329, -0.021711748093366623, -0.03318866714835167, -0.017016852274537086, -0.009305954910814762, 0.013509907759726048, -0.02635025978088379, 0.05691496282815933, 0.007782459259033203, 0.016678867861628532, -0.015796532854437828, 0.019678225740790367, 0.017344646155834198, 0.024080196395516396, 0.01820243149995804, -0.01704745925962925, 0.03126129135489464, 0.021658776327967644, -0.015667447820305824, -0.008900411427021027, -0.01288223173469305, 0.034179333597421646, 0.018549002707004547, 0.01676964946091175, 0.029226984828710556, 0.018806304782629013, 0.031924664974212646, -0.04212377220392227, 0.017188232392072678, -0.017675379291176796, 0.024290429428219795, 0.03141322359442711, 0.04012495279312134, 0.006786820478737354, 0.019129715859889984, 0.010106725618243217, 0.016810806468129158, 0.025961855426430702, -0.0005820156075060368, 0.020474761724472046, -0.02489553764462471, 0.005132713355123997, -0.009151369333267212, 0.0046186866238713264, -0.008288083598017693, 0.016975747421383858, 0.033688854426145554, 0.006994402501732111, 0.020803755149245262, 0.0014377445913851261, -0.02808038517832756, -0.04612503573298454, 7.533037997809547e-33, -0.027442412450909615, 0.02717469446361065, -0.08015545457601547, 0.0004358916776254773, -0.0034086937084794044, -0.05557027831673622, 0.05500437319278717, 0.013239752501249313, -0.007438740227371454, 0.02915596030652523, 0.010593220591545105, -0.017359446734189987, 0.024464627727866173, 0.030042922124266624, 0.06814926117658615, -0.04011297598481178, -0.01284241583198309, 0.011699030175805092, 0.00500002084299922, 0.0002819982182700187, -0.034813292324543, 0.009801622480154037, 0.007670022081583738, -0.005227833520621061, 0.010056001134216785, 0.03522886708378792, -0.004120549187064171, -0.003973487298935652, -0.030541755259037018, -0.07777970284223557, 0.040147509425878525, 0.007390500046312809, -0.003435042453929782, -0.00784038845449686, -0.013293478637933731, 0.044508449733257294, 0.027284417301416397, 0.02836388535797596, 0.06251396238803864, 0.0051539381965994835, 0.0422438383102417, 0.00006544512143591419, -0.02656790427863598, 0.02434557117521763, -0.00020358062465675175, 0.01612098701298237, -0.005479010753333569, -0.03393501043319702, -0.04145943745970726, 0.006304353009909391, -0.005834788084030151, 0.024074053391814232, 0.022258548066020012, 0.026311667636036873, 0.023255789652466774, 0.014850773848593235, -0.00014954511425457895, -0.001825779560022056, 0.03628953546285629, 0.007267257198691368, 0.016346221789717674, -0.05544467270374298, -0.05250450596213341, 0.04399228096008301, -0.0053984010592103004, -0.01089730765670538, -0.023727914318442345, -0.018815575167536736, -0.001503423904068768, -0.005846601910889149, 0.0011014495976269245, -0.00489566195756197, -0.02059485949575901, 0.0414678230881691, 0.008629482239484787, -0.01886257901787758, -0.002296328078955412, 0.02518356405198574, -0.020568592473864555, 0.05202533304691315, -0.02669159509241581, 0.04901501163840294, -0.033988021314144135, -0.012032044120132923, 0.001183582586236298, 0.011920965276658535, -0.03069126047194004, -0.007509077433496714, 0.033301107585430145, -0.018499577417969704, 0.0012369476025924087, 0.0017103138379752636, -0.05894523859024048, 0.017241328954696655, 0.010685603134334087, -1.2671081073278856e-8, 0.006961547303944826, 0.013400157913565636, -0.022661373019218445, 0.03237537667155266, 0.010679937899112701, 0.03302972763776779, -0.019257698208093643, -0.009108252823352814, 0.00668953126296401, 0.014489657245576382, -0.003930240403860807, -0.023813927546143532, 0.023056361824274063, -0.008606910705566406, 0.029698776081204414, -0.022640705108642578, -0.01251307688653469, -0.03684738278388977, 0.04563115909695625, -0.020723683759570122, 0.04576905071735382, 0.02804717980325222, -0.02749035134911537, 0.022549724206328392, -0.04207481071352959, -0.020750828087329865, 0.04355940967798233, -0.04804907366633415, -0.031464483588933945, -0.022320672869682312, -0.02185271494090557, -0.0051165916956961155, -0.03436245396733284, 0.009453273378312588, 0.011709462851285934, -0.009162007831037045, -0.03461693972349167, -0.003402905771508813, 0.022801624611020088, 0.013317819684743881, -0.01354934461414814, -0.009808721020817757, -0.04186421260237694, -0.021646982058882713, -0.0008028771844692528, 0.02346906252205372, -0.014702948741614819, 0.0220403540879488, 0.005009945947676897, -0.014884643256664276, 0.02400059625506401, -0.017616329714655876, 0.01825699396431446, -0.016982493922114372, 0.029092341661453247, -0.008276725187897682, -0.0010187749285250902, -0.06168393790721893, -0.036644771695137024, -0.005403444636613131, -0.009663915261626244, 0.02658274956047535, -0.013327673077583313, -0.014570382423698902 ]
tcpdump-learning-how-to-read-udp-packets
https://markhneedham.com/blog/2012/07/15/tcpdump-learning-how-to-read-udp-packets
false
2012-07-15 08:14:16
netcat: localhost resolution not working when sending UDP packets
[ "networking-2" ]
[ "Networking" ]
As part of some work we were doing last week https://twitter.com/philandstuff[Phil] and I needed to send UDP packets to a local port and check that they were being picked up. We initially tried sending a UDP packet to localhost port 8125 using netcat like so: [source,text] ---- echo -n "hello" | nc -w 1 -u localhost 8125 ---- That message wasn't being received by the application listening on the port so Phil decided to try and send the same packet from Ruby which worked fine: [source,ruby] ---- require 'socket' udp = UDPSocket.new udp.send("hello", 0, "localhost", 8125) ---- We eventually worked out that 'localhost' wasn't being resolved by netcat which we thought was weird since it is correctly mapped: [source,text] ---- ~$ ping localhost PING localhost (127.0.0.1) 56(84) bytes of data. 64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.019 ms ---- We dumped the packets sent to port 8125 using tcpdump and noticed that the structure of the packets received when using localhost was massively different than when we used 127.0.0.1 but we couldn't work out what exactly was going wrong. A better way would actually have been to listen on the port with netcat like so: [source,text] ---- nc -l -u 8125 ---- In this case netcat doesn't output anything when we use the netcat command but does with the Ruby one. I http://hintsforums.macworld.com/archive/index.php/t-101635.html[came across this post] which explains exactly what's going on: ____ netcat is well behaved in that it will make the getaddrinfo() system call based on the arguments given to it. In the case of giving it the name "localhost", a port number and telling it to use UDP, netcat is not aware of the socket family to use for the getaddrinfo() system, so it will leave at it's default 0. getaddrinfo() will return *all possible* results for the query. In this case, where you aren't either specifying an actual IPv4 address (127.0.0.1), getaddrinfo() is *also* returning the IPv6 result, which is showing up first and therefore being used. ____ If we try that out in Ruby we can see what's going on: [source,ruby] ---- > Socket.getaddrinfo("localhost", 10002, nil, :DGRAM) => [["AF_INET6", 10002, "::1", "::1", 10, 2, 17], ["AF_INET", 10002, "127.0.0.1", "127.0.0.1", 2, 2, 17]] ---- netcat picks the first result which is "::1" - the IPv6 version of 'localhost' - and sends a UDP packet to that address. If we were using TCP then netcat would initially send a packet to that address, realise it had failed and then try the next address which is the IPv4 one. However since UDP is connectionless netcat can fire the packet and then forget about it, which is exactly what happens! We can get around the problem by passing the +++<cite>+++-4+++</cite>+++ flag to netcat which forces it to use IPv4 addresses only. The 'getaddrinfo' lookup would presumably then look like this: [source,ruby] ---- Socket.getaddrinfo("localhost", 10002, :INET, :DGRAM) => [["AF_INET", 10002, "127.0.0.1", "127.0.0.1", 2, 2, 17], ["AF_INET", 10002, "127.0.0.1", "127.0.0.1", 2, 2, 17]] ---- Our final netcat command to send UDP packets therefore looks like this: [source,text] ---- echo -n "hello" | nc -w 1 -u -4 localhost 8125 ----
null
null
[ -0.014386297203600407, -0.052477601915597916, -0.017052877694368362, 0.04301052540540695, 0.06063031777739525, 0.02791433036327362, 0.006753007415682077, 0.048732172697782516, 0.03042341209948063, -0.04103286191821098, -0.014679186046123505, 0.0020088369492441416, -0.08142191916704178, 0.028537409380078316, 0.0013627784792333841, 0.0769798532128334, 0.06737463176250458, -0.025190960615873337, 0.04348267987370491, 0.001321063027717173, -0.00004369813541416079, 0.06690609455108643, -0.023008400574326515, 0.04739397391676903, 0.009285083040595055, 0.021077286452054977, 0.0005638257716782391, 0.00500474451109767, -0.05497504398226738, 0.014342869631946087, 0.05666312202811241, 0.00003856112016364932, 0.013605833053588867, -0.015040039084851742, -0.007318388670682907, -0.020701725035905838, 0.0061768884770572186, 0.015505420975387096, 0.0020782167557626963, 0.013939126394689083, -0.08277546614408493, 0.0364663191139698, -0.004022277891635895, 0.016382651403546333, -0.03931151703000069, -0.006212091539055109, -0.0010835666907951236, 0.0032464275136590004, 0.027586830779910088, 0.02832154370844364, -0.09243349730968475, 0.021595420315861702, -0.025589773431420326, 0.013037119060754776, 0.011564088985323906, 0.04571692273020744, 0.023978155106306076, -0.08422408252954483, 0.016129840165376663, -0.05283253267407417, -0.0324971005320549, -0.0001462430809624493, 0.01560036651790142, 0.00437134550884366, -0.014680142514407635, -0.015780886635184288, -0.0035041726659983397, 0.03552864491939545, -0.03820179030299187, -0.01490796823054552, -0.008474744856357574, 0.024483339861035347, -0.05136381834745407, -0.03399518504738808, 0.052397094666957855, -0.0003901649615727365, 0.001163726788945496, 0.03032543696463108, 0.00593420909717679, 0.057342223823070526, -0.05195791646838188, 0.006897543091326952, 0.03286639228463173, 0.03818155452609062, 0.031142495572566986, -0.04141256958246231, -0.045478127896785736, 0.02326544187963009, -0.053827859461307526, 0.10599818825721741, 0.02438604272902012, -0.03182006999850273, 0.022212179377675056, -0.014982270076870918, -0.029283590614795685, 0.014109372161328793, -0.012529749423265457, -0.0007064512465149164, -0.002185227582231164, -0.039032142609357834, -0.041800059378147125, -0.0037334461230784655, 0.04063742980360985, 0.044072769582271576, -0.06266582012176514, 0.013071876019239426, -0.03283916041254997, -0.012957927770912647, -0.030917121097445488, 0.010389206930994987, -0.015166334807872772, -0.005986788775771856, 0.006840778514742851, -0.0011413503671064973, -0.0532066784799099, 0.07462531328201294, 0.007639904972165823, -0.07373039424419403, 0.01167110912501812, 0.007015741430222988, 0.02929454669356346, 0.04594118893146515, -0.026546010747551918, 0.07357031106948853, 0.021850192919373512, 0.005161341745406389, 0.023363962769508362, 0.040931396186351776, -0.030996043235063553, -0.04467543959617615, -0.021372921764850616, 0.07157272100448608, 0.012800448574125767, -0.0010252121137455106, -0.0045499722473323345, -0.0037543673533946276, -0.01888430304825306, -0.0011358227347955108, 0.017033278942108154, 0.05119309946894646, -0.019938962534070015, -0.010035301558673382, 0.003100101836025715, 0.02286345139145851, 0.028261752799153328, 0.010291069746017456, 0.006780853495001793, -0.03370802104473114, -0.014706605114042759, 0.01717262528836727, -0.0006443875026889145, 0.00011762991198338568, 0.07863602787256241, -0.022125376388430595, -0.022768907248973846, 0.06949558854103088, 0.03620437905192375, 0.011669090948998928, -0.06264973431825638, 0.018418358638882637, 0.037071749567985535, 0.05529572814702988, 0.012206933461129665, 0.029356079176068306, 0.016268443316221237, 0.0008517235983163118, 0.0013412010157480836, 0.03214201703667641, 0.027499809861183167, 0.006367058958858252, -0.03175181522965431, -0.05447128042578697, 0.07666521519422531, -0.023778021335601807, -0.006339538376778364, 0.00001822210651880596, 0.05963572487235069, 0.02435236983001232, 0.0012202155776321888, -0.004451556131243706, -0.0755668580532074, 0.0607297420501709, -0.02481118217110634, 0.03276140242815018, 0.020897656679153442, 0.003976534120738506, 0.06253553926944733, 0.033559318631887436, -0.020191658288240433, 0.012879323214292526, -0.05629529803991318, -0.08222778141498566, -0.04220597818493843, 0.02182224579155445, 0.04993762820959091, -0.01610138639807701, -0.023773903027176857, 0.056732453405857086, 0.03914843499660492, 0.024137618020176888, 0.011937442235648632, 0.014932192862033844, 0.0036953240633010864, -0.06124052405357361, -0.045356716960668564, 0.043584201484918594, 0.03894420340657234, -0.005438797175884247, -0.03769363462924957, 0.013028065674006939, -0.040567073971033096, -0.03564707934856415, 0.014109701849520206, -0.010732319205999374, 0.0521184466779232, 0.01191663183271885, 0.03641192615032196, -0.02312505804002285, 0.030721314251422882, -0.04582617059350014, 0.014025341719388962, 0.02498331479728222, 0.002745505888015032, 0.021022533997893333, 0.026498248800635338, 0.12314598262310028, 0.05438866838812828, 0.018047912046313286, -0.03925180435180664, 0.023078318685293198, 0.02884029783308506, -0.043035589158535004, -0.013938427902758121, -0.005801432300359011, -0.02212914265692234, -0.004936777055263519, -0.059556104242801666, -0.026180585846304893, -0.008958633989095688, -0.03474436327815056, -0.012216336093842983, 0.08353225141763687, 0.005747999530285597, 0.04146634787321091, -0.002659028396010399, -0.048162996768951416, 0.018592998385429382, -0.06604386121034622, -0.02917660027742386, 0.008646806702017784, 0.00782089028507471, -0.0005739895277656615, 0.0351000614464283, -0.027130017057061195, -0.024352943524718285, -0.025547808036208153, -0.046824369579553604, 0.044019605964422226, 0.020888714119791985, 0.031244467943906784, -0.0041339220479130745, 0.052444666624069214, 0.0004400405159685761, -0.006675516255199909, -0.02123347856104374, -0.04458519071340561, -0.03542841598391533, 0.018922097980976105, 0.005084301345050335, 0.009092767722904682, 0.017848024144768715, -0.002993520814925432, 0.010758894495666027, -0.029339615255594254, 0.005350517109036446, -0.02485755644738674, 0.03485869988799095, -0.0035748106893152, 0.00024373830819968134, -0.034421809017658234, -0.024958202615380287, 0.01927037350833416, -0.04547892138361931, -0.02962867170572281, 0.001192582189105451, -0.06731545925140381, 0.03487531095743179, -0.05118519812822342, -0.03281295299530029, -0.02537420205771923, 0.00035160311381332576, -0.008376570418477058, 0.018357887864112854, 0.015988800674676895, 0.07601068913936615, 0.003641707357019186, 0.028200972825288773, 0.044181063771247864, 0.0053566088899970055, 0.010262561962008476, 0.010893111117184162, 0.008288770914077759, 0.009121744893491268, -0.003259834833443165, -0.03627818450331688, -0.0777229592204094, 0.0060507757589221, -0.025023533031344414, -0.262811541557312, 0.0739629939198494, 0.014198214747011662, -0.04282939061522484, 0.038524746894836426, -0.039747320115566254, 0.033596914261579514, -0.035627156496047974, 0.004561930894851685, -0.0017961220582947135, -0.039811279624700546, -0.030463986098766327, -0.01123736146837473, -0.003402150934562087, 0.0007102321251295507, -0.029462149366736412, -0.016497978940606117, -0.06283699721097946, 0.040832553058862686, -0.0021102370228618383, 0.03291507065296173, -0.052070263773202896, 0.021400408819317818, 0.07448554784059525, 0.012717005796730518, 0.05596132203936577, -0.040772445499897, 0.0493696965277195, -0.01093453262001276, 0.018185658380389214, 0.02131464332342148, 0.0012007346376776695, 0.003932571038603783, 0.011079249903559685, -0.03243984282016754, -0.008270449936389923, 0.04689262807369232, -0.003000064054504037, 0.0100434934720397, -0.0004634477663785219, -0.03910527378320694, -0.007435787934809923, -0.0009813407668843865, -0.007653980050235987, 0.06104225292801857, -0.00938462559133768, -0.07338862866163254, -0.017789214849472046, -0.020725436508655548, 0.07320530712604523, -0.04232564568519592, -0.033715229481458664, 0.01425829716026783, 0.004706252831965685, -0.03378956392407417, -0.038559213280677795, -0.042448610067367554, -0.018748076632618904, -0.034193579107522964, -0.0436364971101284, 0.01998726651072502, -0.02532752975821495, -0.03228480741381645, -0.045947711914777756, 0.009669242426753044, -0.046652715653181076, -0.06613156199455261, -0.016465820372104645, 0.0729004442691803, 0.010723570361733437, -0.02842891775071621, 0.002646996406838298, -0.032015781849622726, -0.10200681537389755, 0.014543761499226093, -0.014464088715612888, -0.08334114402532578, 0.005304533056914806, 0.024245813488960266, 0.03397606313228607, -0.029320210218429565, -0.029510144144296646, -0.0023118702229112387, 0.026777446269989014, 0.013008163310587406, -0.006486041471362114, 0.012214803136885166, -0.00714404322206974, -0.010492159985005856, -0.004494417924433947, 0.0739847794175148, -0.051307495683431625, -0.034701284021139145, -0.02043769508600235, 0.0023351763375103474, 0.006553221493959427, -0.014095988124608994, 0.03191505745053291, 0.02967243082821369, 0.041380904614925385, 0.03605819121003151, -0.041998233646154404, -0.015656791627407074, -0.05901108309626579, -0.0014191666850820184, 0.030577072873711586, -0.04877441003918648, 0.04563404992222786, 0.009490464814007282, 0.013675099238753319, -0.0006472110981121659, -0.05990641191601753, 0.023257620632648468, -0.05270688608288765, -0.011381505988538265, 0.013619823381304741, 0.031288351863622665, -0.007435979321599007, 0.008304867893457413, -0.02997398190200329, -0.015529625117778778, -0.010712984018027782, 0.06372308731079102, 0.004201790783554316, -0.04610472545027733, -0.0238784346729517, -0.008893691003322601, -0.012861344963312149, 0.014878369867801666, -0.004239605274051428, 0.01423274353146553, 0.010845723561942577, 0.051879025995731354, -0.0008096485398709774, 0.008143729530274868, 0.023648345842957497, -0.044334135949611664, -0.025252193212509155, 0.02455812878906727, 0.018208397552371025, -0.009229147806763649, 0.016160210594534874, -0.01918790303170681, 0.02686680294573307, 0.03533818945288658, 0.004725547507405281, -0.008665346540510654, 0.010982880368828773, -0.0010909036500379443, -0.009766198694705963, 0.020814938470721245, -0.059337083250284195, 0.0023307297378778458, -0.010023117996752262, -0.03371348977088928, -0.0027620121836662292, 0.05404376611113548, -0.006847929675132036, -0.04624596983194351, -0.020323557779192924, 0.0356907844543457, -0.08332987874746323, -0.01524993684142828, 0.01225578598678112, -0.025782793760299683, 0.0324232392013073, 0.004829174838960171, 0.01793844625353813, 0.0021676986943930387, -0.027257662266492844, 0.009499560110270977, 0.036565542221069336, -0.020364031195640564, 0.02128356322646141, 0.037733111530542374, -0.004504889715462923, -0.013110477477312088, 0.02662239782512188, 0.042580705136060715, 0.03146842494606972, 0.029733246192336082, -0.013244428671896458, 0.03731021285057068, 0.03500879183411598, 0.04937393218278885, 0.029406649991869926, -0.0443783737719059, 0.013074385933578014, -0.006723911035805941, -0.006261772476136684, -0.03455420583486557, 0.00921704526990652, -0.02000909112393856, 0.025971269235014915, -0.03881844878196716, -0.07809983938932419, 0.041815176606178284, 0.021770771592855453, -0.008028221316635609, -0.002099829027429223, -0.002014318248257041, 0.004980084486305714, -0.04568963125348091, 0.05672607943415642, 0.04534243047237396, -0.03651418164372444, -0.001328183221630752, -0.00035916472552344203, 0.028029106557369232, -0.007207260932773352, 0.008265425451099873, -0.049460310488939285, -0.004592603538185358, 0.017295867204666138, 0.03921997919678688, -0.04666786640882492, -0.05629565566778183, -0.008175580762326717, -0.031108172610402107, -0.00855296291410923, 0.01748460717499256, -0.0031368297059088945, 0.0004982725367881358, 0.019751476123929024, -0.06084795296192169, 0.03451980650424957, -0.015790391713380814, -0.05187114700675011, 0.02078009955585003, -0.0028525274246931076, -0.006376876495778561, -0.013854485005140305, 0.05598222464323044, 0.017636019736528397, -0.005009960848838091, -0.03284647688269615, -0.05024030804634094, -0.009198852814733982, -0.04103797674179077, 0.07167566567659378, -0.04400615021586418, -0.025046322494745255, -0.04029446095228195, -0.007227271795272827, -0.023452429100871086, 0.012922779656946659, 0.0030281124636530876, -0.029499385505914688, 0.0269464161247015, 0.022244546562433243, 0.002693154150620103, 0.02762001007795334, 0.014575685374438763, -0.012828409671783447, 0.029087122529745102, -0.056613530963659286, -0.05878301337361336, 0.014951872639358044, -0.03793634474277496, 0.03370855748653412, 0.013397450558841228, -0.0005636590649373829, -0.09932912886142731, 0.03237464651465416, 0.04006294533610344, -0.013303644955158234, 0.04358543083071709, -0.006405796855688095, 0.004172115586698055, -0.008504771627485752, -0.018034443259239197, -0.08549558371305466, 0.03555966168642044, 0.01955520547926426, -0.009648575447499752, -0.02756132371723652, 0.02184268832206726, -0.02294076792895794, 0.011136728338897228, -0.0579494871199131, -0.027212411165237427, 0.020728498697280884, 0.03104856237769127, -0.011090963147580624, 0.01656864583492279, -0.04632568359375, 0.053202878683805466, 0.006072208750993013, -0.033154163509607315, -0.014076548628509045, -0.029623903334140778, 0.053275104612112045, 0.02572343312203884, 0.05130022019147873, -0.017611712217330933, -0.031216328963637352, 0.07068753242492676, 0.02128160186111927, 0.02597828209400177, 0.03770393133163452, -0.020551444962620735, 0.03512858226895332, 0.010412313044071198, -0.010492927394807339, 0.010007344186306, 0.017035188153386116, -0.008377347141504288, -0.056145165115594864, 0.007822907529771328, -0.00409152265638113, -0.025029022246599197, -0.04918285086750984, 0.06667174398899078, 0.003466047579422593, -0.039131686091423035, -0.05817490071058273, 0.01915416494011879, -0.027088239789009094, -0.031040506437420845, -0.015987779945135117, 0.047915276139974594, -0.045537032186985016, 0.05560155585408211, 0.050809264183044434, 0.015466677956283092, 0.043448325246572495, 0.02052730694413185, -0.03676994889974594, 0.03222855553030968, 0.0927356630563736, 0.0918552353978157, 0.009414528496563435, 0.029556505382061005, 0.05890272930264473, 0.02527402527630329, -0.051969122141599655, -0.022842252627015114, -0.047346945852041245, -0.0380595363676548, -0.014401748776435852, -0.0010367484064772725, 0.0811372920870781, -0.037235796451568604, 0.06383505463600159, -0.016116196289658546, 0.019038794562220573, 0.042973119765520096, -0.0037345904856920242, 0.03973796218633652, 0.021798577159643173, 0.02804364636540413, 0.06369193643331528, 0.03400740399956703, -0.021715622395277023, 0.023508287966251373, -0.024544358253479004, -0.037584733217954636, 0.00895127933472395, -0.006097184028476477, 0.008472508750855923, 0.004484961275011301, 0.01061037927865982, 0.0596952922642231, -0.015033022500574589, -0.019754773005843163, 0.010351692326366901, 0.05540743097662926, -0.008777900598943233, 0.015561401844024658, 0.004858632106333971, -0.02341555990278721, -0.02031041495501995, -0.014127847738564014, -0.010398062877357006, -0.04591543599963188, -0.013454419560730457, 0.019377432763576508, -0.009727009572088718, 0.0009143469505943358, 0.021919352933764458, -0.03025803342461586, -0.011906595900654793, -0.04543764516711235, -0.06467998027801514, -0.04076891019940376, -0.0419633612036705, -0.0382029190659523, 0.007403467781841755, -0.0061920201405882835, -0.030499229207634926, -0.013845028355717659, -0.0388333834707737, -0.04525986686348915, 0.03550324961543083, -0.03987499698996544, -0.024527424946427345, 0.009989810176193714, 0.008288168348371983, 0.05067058652639389, 0.03159709274768829, 0.03956577926874161, -0.01634916663169861, 0.0018746317364275455, -0.047998566180467606, -0.01263696514070034, 0.06917428225278854, -0.012159734964370728, -0.027789250016212463, -0.08546022325754166, 0.02673635445535183, 0.047033119946718216, 0.03205115720629692, -0.04924589395523071, -0.01041905116289854, 0.01791934296488762, 0.015480334870517254, 0.04813816770911217, -0.03159342333674431, -0.012155127711594105, -0.032762765884399414, -0.014529633335769176, -0.05146600678563118, -0.005314767360687256, 0.033422380685806274, 0.007297266740351915, 0.0660024881362915, 0.04444995895028114, -0.014842103235423565, -0.054174430668354034, -0.010789362713694572, 0.037677567452192307, 0.016196701675653458, -0.03793475031852722, -0.0588478222489357, -0.038109369575977325, -0.0866468995809555, -0.04941761493682861, 0.03910177946090698, 0.0007200321415439248, -0.029577307403087616, 0.02088160440325737, -0.02665109373629093, -0.05052241310477257, 0.004446499980986118, -0.06712783128023148, -0.014956005848944187, -0.011949247680604458, -0.04500538855791092, -0.03719770535826683, 0.040830567479133606, -0.029419267550110817, -0.04969874396920204, 0.030308779329061508, 0.008117955178022385, 0.009871643967926502, 0.010351734235882759, 0.04502905160188675, 0.045640137046575546, 0.010503081604838371, 0.019538186490535736 ]
[ -0.06654354184865952, -0.05458992347121239, -0.02643202245235443, -0.03472142294049263, 0.03980325534939766, -0.06719578057527542, 0.006715320982038975, 0.039119038730859756, -0.036540742963552475, -0.03260106220841408, 0.029110027477145195, -0.04442228749394417, 0.009117781184613705, -0.03219301626086235, 0.05741474777460098, -0.006718757096678019, -0.02512441761791706, -0.09383166581392288, -0.00951523520052433, 0.04541649669408798, -0.017079023644328117, -0.014793415553867817, -0.031082555651664734, -0.06036484241485596, 0.018755489960312843, 0.04871344566345215, 0.07696499675512314, -0.03760218620300293, -0.02173999510705471, -0.19640523195266724, 0.011728748679161072, 0.00479329377412796, -0.028131039813160896, -0.029296310618519783, -0.012694740667939186, 0.00657863263040781, 0.06215136870741844, -0.05519596487283707, 0.005753044970333576, 0.08245585858821869, 0.043122388422489166, 0.03146905452013016, -0.03097320906817913, 0.003806611057370901, 0.03414855897426605, -0.037350982427597046, -0.006151561625301838, -0.025232601910829544, 0.041899580508470535, -0.002323566237464547, -0.044219721108675, 0.02717706188559532, 0.012443301267921925, -0.044436484575271606, 0.022534577175974846, 0.010537170805037022, 0.06466714292764664, 0.07786161452531815, 0.008321942761540413, 0.002958974102512002, 0.013965265825390816, 0.011688575148582458, -0.17345863580703735, 0.07636396586894989, 0.0987556204199791, 0.017932584509253502, -0.034614197909832, 0.015062959864735603, -0.024536149576306343, 0.06362546980381012, 0.008074418641626835, -0.000004851653557125246, -0.046673282980918884, 0.07601576298475266, -0.006873249541968107, 0.003527624998241663, 0.013061647303402424, 0.03706338256597519, 0.02995741367340088, -0.06799308955669403, -0.04437896981835365, -0.014840176329016685, -0.022666873410344124, -0.02341293916106224, -0.02160424180328846, -0.008810179308056831, -0.013767734169960022, 0.062489017844200134, -0.008063390851020813, -0.024843405932188034, -0.008778252638876438, -0.015788720920681953, 0.009296879172325134, 0.012115642428398132, -0.09243059903383255, 0.007132990285754204, -0.021469419822096825, 0.00995862390846014, -0.05230734869837761, 0.388041615486145, -0.0020157950930297375, -0.00861891359090805, 0.05629729852080345, 0.025630934163928032, 0.00331166316755116, 0.012120199389755726, -0.009082173928618431, -0.02573239989578724, -0.006922868546098471, 0.028196826577186584, 0.022461526095867157, -0.013815564103424549, 0.031049588695168495, -0.034430429339408875, 0.03663823381066322, 0.02981960028409958, 0.01316422875970602, 0.02953282557427883, -0.019384218379855156, 0.03490741550922394, -0.05082980915904045, 0.005612882785499096, 0.034715183079242706, 0.0019417949952185154, 0.014346685260534286, -0.014998144470155239, 0.0419115349650383, 0.06353828310966492, 0.0004903658991679549, 0.06357340514659882, 0.0437481552362442, -0.07309308648109436, -0.04610651731491089, 0.009892831556499004, 0.005297013558447361, 0.043415725231170654, 0.04318377748131752, -0.058831945061683655, -0.011484670452773571, 0.04537027329206467, -0.01016537006944418, -0.0578288771212101, 0.000647980545181781, -0.013307495042681694, -0.02969072200357914, 0.06650175154209137, 0.014944733120501041, -0.020091116428375244, -0.018147284165024757, -0.039840713143348694, -0.034084878861904144, 0.03090672194957733, 0.002061660634353757, -0.042281851172447205, -0.011607102118432522, 0.008629931136965752, 0.05693330988287926, 0.02362644113600254, -0.02836488001048565, -0.0033249324187636375, -0.021953726187348366, -0.057442959398031235, 0.004293006379157305, 0.03796089440584183, 0.033534497022628784, -0.11442983150482178, -0.020023193210363388, 0.004186397418379784, 0.002779935719445348, -0.10850193351507187, -0.03950304165482521, 0.021111149340867996, -0.007494824007153511, -0.03090057708323002, -0.0010581789538264275, -0.05364274978637695, -0.012281601317226887, 0.013017415069043636, 0.057872969657182693, -0.013617495074868202, -0.02162102796137333, 0.026887482032179832, 0.0010385970817878842, -0.008341983892023563, 0.0004283906891942024, -0.07483627647161484, -0.06942178308963776, 0.02050500363111496, 0.007359009701758623, -0.04747895523905754, -0.05555409938097, -0.047929491847753525, -0.07694333046674728, 0.06536620855331421, 0.020764121785759926, -0.027138277888298035, 0.0037321816198527813, 0.009605648927390575, 0.0439903624355793, -0.01336158998310566, 0.026748456060886383, 0.025976110249757767, -0.016142060980200768, 0.022920578718185425, -0.09213822335004807, 0.040739234536886215, 0.040074460208415985, -0.03929947689175606, 0.05438202992081642, 0.014044730924069881, 0.0021401967387646437, 0.022094547748565674, 0.015624488703906536, 0.04188990220427513, -0.023517495021224022, -0.06594153493642807, 0.008816652931272984, 0.0358065627515316, 0.03277696296572685, 0.024213435128331184, -0.018775098025798798, -0.010393530130386353, -0.024945056065917015, -0.33313414454460144, -0.033016495406627655, 0.01813303865492344, -0.007065072655677795, 0.035229820758104324, -0.0658804252743721, 0.03225484862923622, 0.008829142898321152, 0.014961904846131802, 0.007105806842446327, 0.11036612093448639, -0.009595456533133984, 0.032398466020822525, -0.08833956718444824, -0.02981146052479744, 0.058445099741220474, -0.04228409007191658, 0.003326773177832365, 0.006300035398453474, 0.052170492708683014, -0.022516047582030296, -0.019563747569918633, -0.010317368432879448, -0.020791340619325638, 0.016233181580901146, -0.056145764887332916, 0.11023509502410889, 0.015551704913377762, 0.10306231677532196, -0.07123523950576782, 0.03489783778786659, 0.032114945352077484, 0.005824204999953508, -0.09790720045566559, -0.05387604981660843, -0.021575145423412323, 0.025910228490829468, 0.04748602584004402, 0.05790327116847038, 0.02295958250761032, -0.06578069180250168, 0.013621409423649311, -0.025551140308380127, -0.04607617110013962, -0.007074200082570314, 0.020349163562059402, -0.020889220759272575, -0.03793656826019287, -0.006572330370545387, 0.03191748261451721, 0.011783703230321407, 0.015676476061344147, 0.003251570975407958, -0.019135043025016785, 0.022898050025105476, -0.0072033298201859, -0.04553956910967827, -0.04165245220065117, 0.017970211803913116, 0.011776519939303398, 0.011873534880578518, 0.08047429472208023, 0.013553761877119541, -0.07662950456142426, 0.00818602554500103, 0.026299916207790375, 0.012745385058224201, 0.004739089868962765, 0.05519983544945717, 0.009491663426160812, 0.007642289623618126, 0.13162007927894592, 0.012037187814712524, 0.041148897260427475, -0.014465115033090115, 0.0013471582205966115, 0.01891881227493286, 0.01466259267181158, 0.03145039081573486, -0.01978374645113945, 0.04121866077184677, -0.014354552142322063, 0.08265205472707748, -0.04698643088340759, 0.017746029421687126, 0.05334804579615593, 0.022277945652604103, 0.01162844430655241, 0.021587155759334564, 0.022431019693613052, -0.037876393646001816, -0.020527252927422523, -0.007857739925384521, -0.05382766202092171, 0.031058017164468765, 0.004011229611933231, -0.23476532101631165, 0.005252976901829243, 0.046419862657785416, 0.015077458694577217, 0.014140923507511616, 0.018956080079078674, 0.04078671336174011, -0.031847450882196426, -0.04498998820781708, 0.03681918606162071, 0.035626139491796494, 0.0297074131667614, -0.018128005787730217, 0.0020351221319288015, 0.07404553145170212, 0.01614641398191452, 0.007353394292294979, -0.0004871671844739467, -0.036671873182058334, 0.008271842263638973, 0.02618921920657158, -0.011674675159156322, 0.13545283675193787, -0.005435463506728411, 0.04528200626373291, 0.04284573718905449, -0.03980306535959244, 0.04215957596898079, 0.07808014005422592, 0.0059964414685964584, -0.014307782985270023, -0.0035622422583401203, 0.001478597172535956, -0.02677001990377903, 0.000006698511242575478, -0.03896789252758026, 0.007490026298910379, 0.03523590415716171, -0.0029625482857227325, -0.05292150005698204, -0.059422802180051804, 0.02065640315413475, -0.007386075332760811, 0.04340779036283493, 0.03808632493019104, -0.011142571456730366, -0.047267381101846695, -0.04556729272007942, 0.007987155579030514, 0.010955814272165298, -0.021964650601148605, -0.08858928829431534, 0.044600710272789, -0.033975645899772644, 0.025892894715070724, 0.06546365469694138, -0.006034232210367918, -0.09331071376800537, -0.04674911126494408, 0.0384487509727478, -0.005469829775393009, -0.04453093558549881, 0.137312114238739, -0.005858458578586578, 0.03915068879723549 ]
[ 0.02074001356959343, 0.02988390065729618, 0.009510696865618229, -0.029848536476492882, 0.003251459449529648, -0.01779007911682129, -0.021429825574159622, 0.017650235444307327, -0.056398261338472366, 0.012438224628567696, -0.022706953808665276, 0.01021606381982565, -0.006684086751192808, -0.01389233861118555, -0.018154900521039963, -0.008993817493319511, 0.046514708548784256, -0.03449714928865433, 0.03179170563817024, -0.015615401789546013, -0.03679678961634636, 0.020796040073037148, 0.060811784118413925, -0.06383570283651352, -0.01615825667977333, 0.030914682894945145, 0.030171405524015427, 0.04896468296647072, 0.005895458627492189, -0.1304476410150528, -0.040313720703125, -0.008418232202529907, -0.011758489534258842, 0.019350863993167877, -0.005624469835311174, 0.011646488681435585, 0.0005415764171630144, 0.05728188902139664, -0.06377197802066803, 0.042245298624038696, 0.05545243248343468, -0.026259770616889, 0.011256889440119267, 0.03417389467358589, -0.031200528144836426, -0.024730108678340912, -0.029321275651454926, 0.005614353343844414, -0.006955391261726618, -0.03009769879281521, -0.02752695418894291, 0.03869530186057091, 0.0061011603102087975, 0.02645755186676979, 0.022490300238132477, -0.016146475449204445, -0.018931325525045395, -0.003361560869961977, -0.0076765031553804874, -0.00027115203556604683, 0.012050752528011799, 0.043007124215364456, -0.03363772854208946, -0.03845151513814926, 0.014786162413656712, -0.010871832258999348, -0.005367586854845285, -0.018467053771018982, -0.02783065475523472, 0.03230810537934303, -0.024245955049991608, 0.052792374044656754, -0.07408982515335083, 0.022714009508490562, -0.04721709340810776, 0.037654947489500046, 0.05920807272195816, -0.030946990475058556, 0.00030186091316863894, 0.032094474881887436, -0.05024723708629608, 0.0008594389073550701, -0.024099579080939293, -0.00293103139847517, -0.02729067951440811, 0.025800559669733047, -0.012546264566481113, 0.0005513723590411246, -0.0032813833095133305, -0.0003669217985589057, -0.022470621392130852, 0.01510306354612112, -0.029810462146997452, 0.03302370011806488, -0.08411519229412079, -0.05075114592909813, -0.0013395632850006223, -0.008870857767760754, -0.031094910576939583, 0.7903128862380981, -0.008729309774935246, -0.005012013949453831, -0.005999142769724131, 0.00031802940065972507, -0.02914232388138771, -0.0145472576841712, -0.004460083786398172, -0.022070331498980522, 0.0024719820357859135, -0.008073844946920872, 0.00026222621090710163, 0.002956302370876074, -0.009593651629984379, 0.04392874240875244, 0.018335865810513496, 0.007676225155591965, 0.036158110946416855, 0.047115132212638855, -0.0028236396610736847, 0.01101237814873457, 0.01874682866036892, 0.0025255789514631033, -0.01469147577881813, 0.03365881368517876, -0.03223388269543648, -0.16038253903388977, 0.052582286298274994, -7.067232198248892e-33, 0.016818266361951828, -0.02236909419298172, -0.042919546365737915, 0.01747717522084713, 0.05052034184336662, -0.011598145589232445, 0.03387761488556862, 0.04109574109315872, -0.041060641407966614, -0.024293972179293633, -0.004688279237598181, 0.010116388089954853, 0.004791817627847195, -0.02186906710267067, 0.013655954040586948, 0.013784405775368214, -0.014127600938081741, 0.04646603763103485, -0.0045924498699605465, 0.025688355788588524, 0.01311869453638792, 0.006364339031279087, 0.011868498288094997, -0.029606835916638374, 0.013366041705012321, 0.005753467790782452, -0.007849734276533127, -0.005779378116130829, 0.0038369428366422653, -0.06157195568084717, -0.00007797294529154897, 0.04989568516612053, -0.019020024687051773, -0.037177037447690964, 0.046556223183870316, -0.05024450272321701, -0.0025411599781364202, 0.00879376009106636, -0.04630235582590103, -0.01574590988457203, -0.03249850496649742, -0.028640437871217728, -0.041217077523469925, -0.021661903709173203, 0.006288237404078245, -0.029662301763892174, -0.04743034765124321, 0.011711987666785717, 0.013369018211960793, -0.024846136569976807, 0.06481673568487167, -0.007906395941972733, 0.016071241348981857, 0.03424007073044777, 0.014603770337998867, 0.0035193138755857944, 0.001447258866392076, 0.023379189893603325, 0.006779331248253584, -0.005316243506968021, 0.020136171951889992, 0.00030149566009640694, -0.012292185798287392, -0.03454139828681946, 0.017773739993572235, 0.003107932861894369, 0.03874824941158295, 0.01580113172531128, 0.012618918903172016, 0.021935399621725082, -0.054297056049108505, 0.020744267851114273, -0.009474744088947773, 0.034732718020677567, 0.0020791590213775635, 0.043241966515779495, 0.00006596380262635648, 0.020199118182063103, 0.03119458071887493, 0.023320091888308525, 0.02202443592250347, 0.026225797832012177, -0.011737439781427383, -0.0038793296553194523, 0.006508291233330965, 0.009054773487150669, 0.018675850704312325, -0.023160194978117943, 0.0018048499478027225, 0.022774022072553635, -0.005428203381597996, 0.026334986090660095, -0.003210881957784295, -0.044492222368717194, -0.030225183814764023, 6.46488097489672e-33, -0.009479942731559277, -0.012764113955199718, -0.08973227441310883, 0.004483883269131184, -0.007135714869946241, -0.06202107295393944, 0.05952410399913788, -0.013645060360431671, -0.020997818559408188, 0.006008820608258247, -0.01241593062877655, -0.054334208369255066, 0.04992659017443657, 0.025307176634669304, 0.07026375830173492, -0.06495434045791626, -0.002359033329412341, 0.023462962359189987, 0.034822121262550354, -0.007830007001757622, -0.03914439305663109, 0.016428526490926743, 0.014438308775424957, 0.003966423682868481, 0.012791831977665424, 0.006788879632949829, 0.0032293759286403656, 0.015713892877101898, -0.03951214253902435, -0.09101823717355728, 0.036432746797800064, 0.034530892968177795, 0.016035284847021103, -0.02513708360493183, -0.04903998225927353, 0.08174146711826324, 0.038999222218990326, 0.014533007517457008, 0.07224006950855255, -0.009349139407277107, 0.0544467568397522, -0.01691543124616146, -0.030225569382309914, 0.006185983773320913, -0.02561979554593563, 0.024952678009867668, -0.019318679347634315, -0.045800335705280304, -0.04015873745083809, 0.0456041544675827, 0.015616212971508503, 0.02394244633615017, 0.005992779973894358, 0.009829510003328323, 0.034285467118024826, 0.02805536426603794, -0.0011750598205253482, -0.014524952508509159, 0.058861542493104935, 0.026510708034038544, 0.0005882632685825229, -0.053668756037950516, -0.05537565425038338, 0.03190622851252556, -0.004334962461143732, 0.01191286463290453, 0.002038183156400919, -0.015437413938343525, 0.0293883103877306, -0.02385847084224224, -0.007419195957481861, 0.013481054455041885, 0.001181566622108221, 0.04791921749711037, 0.016576645895838737, 0.0005472266348078847, 0.006348264869302511, 0.025401802733540535, -0.0018772648181766272, 0.04432404413819313, -0.04311918839812279, 0.034217942506074905, -0.03887026757001877, 0.013873524963855743, 0.008233295753598213, 0.002168689388781786, -0.013096628710627556, 0.02114848420023918, -0.0009630478452891111, -0.03034696914255619, 0.020785478875041008, 0.006750472355633974, -0.04618236422538757, -0.0038069612346589565, -0.011438902467489243, -1.2220993106382139e-8, 0.037111226469278336, -0.009792279452085495, -0.02577989175915718, 0.038221847265958786, 0.005987571086734533, 0.044677235186100006, -0.01609613373875618, -0.011416973546147346, 0.009427444078028202, 0.003695283317938447, -0.011901628226041794, -0.011035002768039703, 0.021839341148734093, -0.0014212531968951225, 0.03194010630249977, 0.021505052223801613, -0.02701513282954693, -0.03135447949171066, 0.04204383119940758, -0.022631105035543442, 0.05622219294309616, 0.03212969750165939, -0.025164810940623283, 0.053263090550899506, -0.06155329570174217, -0.020965369418263435, 0.030326995998620987, -0.05519016832113266, -0.030944041907787323, -0.02657255157828331, -0.01721837744116783, -0.00807214342057705, -0.00334057305008173, 0.026524873450398445, 0.008144798688590527, -0.012220049276947975, -0.03825054317712784, 0.004366535227745771, 0.02199408784508705, 0.020229661837220192, -0.00031211102032102644, -0.01641298271715641, -0.05103423073887825, -0.03381579369306564, -0.0074874297715723515, 0.0036343273241072893, -0.01552379410713911, 0.039712775498628616, -0.02090141735970974, -0.011758474633097649, -0.00021610305702779442, 0.019111566245555878, 0.004451156593859196, -0.024131961166858673, 0.03668689355254173, -0.0030339458025991917, -0.00565083883702755, -0.06574239581823349, -0.029884736984968185, 0.02092316560447216, -0.03044252097606659, 0.03342827036976814, -0.029372509568929672, -0.015457230620086193 ]
netcat-localhost-resolution-not-working-when-sending-udp-packets
https://markhneedham.com/blog/2012/07/15/netcat-localhost-resolution-not-working-when-sending-udp-packets
false
2012-09-03 06:31:54
A rogue "\357\273\277" (UTF-8 byte order mark)
[ "software-development" ]
[ "Software Development" ]
We've been loading some data into neo4j from a CSV file - creating one node per row and using the value in the first column as the index lookup for the node. Unfortunately the index lookup wasn't working for the first row but was for every other row. By coincidence we started saving each row into a hash map and were then able to see what was going wrong: [source,ruby] ---- require 'rubygems' require 'fastercsv' things = FasterCSV.read("things.csv", :col_sep => "|") saved_things = {} things do |row| saved_things[row[0]] = row[1] end p saved_things ---- This is what we saw when we ran the script: [source,text] ---- {"\357\273\2771"=>"Thing1", "2" => "Thing2"} ---- A bit of googling suggests that "\357\273\277" http://www.highdots.com/forums/macromedia-dreamweaver/357-273-277-characters-placed-154281.html[represents a UTF-8 byte order mark] which apparently http://en.wikipedia.org/wiki/Byte_order_mark[isn't actually needed anyway]: ____ The Unicode Standard does permit the BOM in UTF-8, but does not require or recommend its use. Byte order has no meaning in UTF-8 so in UTF-8 the BOM serves only to identify a text stream or file as UTF-8. ____ We're not converting the CSV file back into any other format so the following awk command can be used to cleanup it up: [source,text] ---- awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' things.csv > things.nobom.csv ---- If we use the hexdump tool we can see that the BOM has been removed: Before: [source,text] ---- $ hexdump things.csv 0000000 ef bb bf 31 7c 50 72 69 6d 61 72 69 65 73 0d 0a ... ---- After: [source,text] ---- hexdump things.nobom.csv 0000000 31 7c 50 72 69 6d 61 72 69 65 73 0d 0a 31 30 7c ---- I was initially curious why Ruby and the hexdump were printing out different values but it's just a case of Ruby showing the Octal version of the BOM as compared to the Hexidecimal version. The values translate like so: [source,text] ---- Octal | Hexadecimal | Decimal 357 | EF | 239 273 | BB | 187 277 | BF | 191 ----
null
null
[ -0.02672571875154972, -0.00954772625118494, -0.004455051850527525, 0.030584223568439484, 0.08239804208278656, 0.006752735003829002, 0.011779919266700745, 0.05457928404211998, 0.010178920812904835, -0.009552322328090668, -0.0016162540996447206, -0.013472940772771835, -0.047134410589933395, 0.013090993277728558, -0.024467045441269875, 0.053976066410541534, 0.06376748532056808, 0.03418746590614319, 0.017923325300216675, -0.028586287051439285, 0.010740392841398716, 0.030359260737895966, -0.02050204575061798, 0.0650484561920166, 0.020455850288271904, 0.006692452356219292, -0.006423029582947493, 0.008393402211368084, -0.05584007874131203, 0.011280669830739498, 0.06611160188913345, 0.013944990001618862, 0.036627430468797684, -0.0001864589867182076, 0.04398466646671295, 0.002104446990415454, -0.06343087553977966, 0.005217871628701687, -0.006260037422180176, 0.018733326345682144, -0.06537780910730362, 0.03170517832040787, -0.00901535153388977, 0.022399775683879852, -0.03315029665827751, -0.015511919744312763, -0.06818782538175583, 0.011590013280510902, -0.031049882993102074, 0.029267633333802223, -0.06137612462043762, 0.02757750265300274, -0.01175201591104269, -0.02983756735920906, 0.020620182156562805, 0.05429885536432266, -0.010568997822701931, -0.05199066549539566, 0.05916108563542366, -0.006634166929870844, -0.0005497747333720326, -0.054315097630023956, 0.000016049125406425446, 0.03484587371349335, 0.008536414243280888, -0.05993175134062767, -0.022433903068304062, 0.060688771307468414, -0.054908785969018936, -0.048685818910598755, -0.0061442190781235695, 0.01528910081833601, -0.01832733489573002, -0.03907855600118637, 0.013302164152264595, -0.03671296685934067, -0.0018404279835522175, 0.04385433346033096, 0.009500396437942982, 0.08170849829912186, -0.02572164684534073, 0.02515322156250477, 0.008579380810260773, 0.020067406818270683, 0.01938891038298607, -0.038512878119945526, -0.047469574958086014, -0.03765415772795677, -0.05390004441142082, 0.04960070550441742, 0.023901257663965225, -0.03181689232587814, -0.017764143645763397, 0.015370861627161503, -0.04794840142130852, -0.004917954094707966, -0.013869320042431355, 0.021602174267172813, 0.0005530118360184133, 0.0020724101923406124, -0.059099193662405014, -0.033224500715732574, 0.016917340457439423, 0.01950516551733017, -0.0764227882027626, -0.0027051593642681837, -0.019355395808815956, -0.014442064799368382, 0.039480503648519516, -0.015309066511690617, -0.02277824841439724, -0.01671650819480419, -0.022418923676013947, -0.009673124179244041, -0.07310782372951508, 0.04554104059934616, 0.01931358315050602, -0.03467170149087906, -0.010960129089653492, 0.034829698503017426, 0.06530386954545975, 0.04887671023607254, -0.001859947806224227, 0.0842282697558403, 0.010673713870346546, 0.004696437623351812, 0.016642460599541664, 0.07022510468959808, -0.01601528935134411, -0.07678111642599106, -0.029277082532644272, 0.05977317690849304, 0.014001215808093548, 0.015782272443175316, -0.006498809438198805, -0.0060623520985245705, -0.025013456121087074, 0.010936982929706573, 0.052417393773794174, 0.014318600296974182, 0.021457279101014137, -0.05926380679011345, 0.03528435900807381, 0.007479730062186718, 0.032894011586904526, 0.015102971345186234, -0.01425557304173708, -0.042168498039245605, -0.016136299818754196, 0.030559232458472252, 0.03023441880941391, 0.02467074990272522, 0.0744759812951088, -0.0037438608705997467, -0.004156146664172411, 0.10167953372001648, 0.007594508584588766, 0.005898687988519669, -0.004402735270559788, 0.010277966968715191, 0.014923682436347008, 0.046833671629428864, 0.008750793524086475, 0.03421184793114662, -0.010641779750585556, -0.00021253174054436386, 0.008502396754920483, 0.041541632264852524, -0.04184931144118309, 0.01807052455842495, -0.02635142393410206, -0.04295728728175163, 0.07490493357181549, -0.025364261120557785, 0.010874566622078419, 0.0252150297164917, 0.05803260579705238, 0.04738200828433037, 0.028486397117376328, -0.017186535522341728, -0.08462205529212952, 0.0406520701944828, -0.0023768681567162275, 0.037288565188646317, 0.022225312888622284, 0.005991308484226465, 0.0620398223400116, 0.0383542999625206, 0.007866494357585907, 0.040033623576164246, -0.08352965861558914, -0.043134745210409164, -0.04358956962823868, -0.021477501839399338, 0.053363002836704254, -0.034317176789045334, 0.008341778069734573, 0.03752541542053223, 0.0031581928487867117, 0.018652085214853287, 0.0008088555769063532, -0.02031359076499939, 0.01634068414568901, -0.04306744784116745, -0.03592046722769737, 0.040105581283569336, 0.04912813380360603, -0.02399056777358055, -0.017178850248456, 0.015537205152213573, -0.0022951187565922737, 0.028501620516180992, 0.02560541220009327, -0.011011093854904175, 0.02888343296945095, 0.01702987775206566, 0.032645437866449356, -0.00018691917648538947, 0.03482431173324585, -0.05332785099744797, 0.04671056941151619, -0.004238974303007126, -0.021108129993081093, -0.04065035656094551, -0.013618786819279194, 0.12566199898719788, 0.047561224550008774, -0.004885844420641661, -0.057138487696647644, 0.013597198761999607, 0.004703019745647907, -0.041996486485004425, 0.0284352395683527, -0.0317130945622921, -0.020339520648121834, -0.00806742999702692, -0.040712758898735046, -0.02794748730957508, 0.004800115246325731, -0.005645511671900749, -0.012264840304851532, 0.056964289397001266, -0.004644420929253101, 0.018130715936422348, 0.01184698473662138, -0.034447602927684784, 0.01780514605343342, -0.061973001807928085, -0.07089449465274811, 0.015040555037558079, 0.028380364179611206, -0.001905173296108842, 0.045808374881744385, -0.040059544146060944, -0.02264340966939926, -0.00021806875884067267, -0.045926764607429504, 0.00845098216086626, 0.04510102421045303, 0.03765973448753357, -0.012332289479672909, 0.06318987905979156, -0.06590025126934052, -0.016739165410399437, -0.018734265118837357, -0.0230394396930933, -0.04922095313668251, -0.018721485510468483, 0.012384063564240932, 0.001961528090760112, 0.019948098808526993, 0.0010073133744299412, -0.0011259909952059388, -0.003563519101589918, 0.02596162259578705, -0.012276620604097843, 0.05357355251908302, 0.002135109854862094, -0.004960847087204456, -0.031789202243089676, -0.04057925194501877, 0.042068347334861755, -0.05727136507630348, -0.028482073917984962, 0.01439199224114418, -0.04058394208550453, 0.03806440532207489, -0.042079199105501175, -0.02808915078639984, -0.04176934063434601, 0.008648424409329891, 0.03163556009531021, 0.002515507861971855, -0.012409969232976437, 0.06290102005004883, 0.047199320048093796, 0.003189603565260768, 0.017343726009130478, 0.027214687317609787, 0.0577041432261467, 0.019458601251244545, 0.034211255609989166, 0.061671558767557144, -0.02918287366628647, -0.02727159671485424, -0.03740302845835686, -0.028837187215685844, -0.012285268865525723, -0.2633305490016937, 0.07229101657867432, -0.05995694547891617, -0.0600624606013298, 0.0349641777575016, -0.03505850210785866, -0.005177202168852091, -0.031013868749141693, -0.012478590942919254, 0.007834567688405514, -0.005427825730293989, -0.01876929961144924, -0.031022360548377037, 0.010589095763862133, 0.00923093780875206, 0.018955398350954056, -0.011933837085962296, -0.05971304699778557, 0.0007342651952058077, 0.0427754707634449, 0.02136281318962574, -0.02672884613275528, 0.015217994339764118, 0.04056045413017273, 0.008857048116624355, 0.0683412104845047, -0.08542118221521378, 0.028821052983403206, -0.036766018718481064, -0.042930059134960175, 0.014495911076664925, -0.04138348251581192, 0.03340018168091774, -0.002298023784533143, -0.007920298725366592, -0.019401589408516884, 0.05512199550867081, -0.005178214982151985, 0.0006110795075073838, 0.02869759500026703, -0.03937824070453644, -0.03970453888177872, -0.03250901773571968, -0.008830012753605843, 0.0776912197470665, -0.014575391076505184, -0.05069265887141228, -0.011017275974154472, -0.013576511293649673, 0.05330968275666237, -0.024301597848534584, -0.041414663195610046, -0.0029963357374072075, 0.05367280915379524, -0.011024300940334797, 0.0013593549374490976, -0.027060789987444878, 0.00023854814935475588, -0.030495338141918182, -0.040203310549259186, -0.012881806120276451, -0.06168775632977486, 0.019324027001857758, -0.06428215652704239, -0.013317298144102097, -0.06694000959396362, -0.06175226718187332, 0.0023576749954372644, 0.06709183752536774, 0.04757514223456383, -0.024847567081451416, 0.018512718379497528, 0.010229025036096573, -0.08735291659832001, -0.024718616157770157, -0.03084035962820053, 0.006879692897200584, -0.007062492426484823, -0.03502447158098221, 0.04560849443078041, -0.03780920058488846, -0.047069791704416275, 0.02545476146042347, 0.016322338953614235, 0.01536389160901308, -0.021692819893360138, 0.012155242264270782, -0.042005155235528946, -0.020830607041716576, -0.0078582176938653, 0.06293052434921265, -0.05236941948533058, -0.01949024200439453, -0.0010327891213819385, -0.00015127990627661347, 0.048403795808553696, -0.007927566766738892, -0.013653422705829144, 0.032219648361206055, 0.044649142771959305, 0.03390245884656906, -0.04724680632352829, 0.014229864813387394, -0.056041426956653595, -0.005594948306679726, -0.0019215940264984965, -0.03708049654960632, 0.01712632365524769, 0.010407540015876293, 0.016813265159726143, -0.012199019081890583, -0.010442220605909824, 0.020912421867251396, -0.04308300092816353, -0.02989674173295498, 0.013059844262897968, 0.013738010078668594, 0.0008932183845899999, 0.03526151925325394, -0.003686928888782859, -0.029849540442228317, 0.021071258932352066, 0.0426948107779026, -0.029231257736682892, -0.05820859223604202, -0.03667372092604637, -0.015695111826062202, -0.002890664851292968, -0.013782452791929245, 0.0008045208523981273, -0.009743688628077507, 0.01737688109278679, 0.010566499084234238, -0.01365208812057972, 0.06020599603652954, -0.011860060505568981, -0.027109358459711075, -0.03795546665787697, -0.016742702573537827, 0.014719193801283836, 0.008213809691369534, -0.023400260135531425, -0.01287691481411457, 0.05369091033935547, 0.029343005269765854, 0.020283296704292297, 0.035081226378679276, 0.007893441244959831, 0.027453873306512833, 0.020050393417477608, -0.002776449080556631, -0.02763570100069046, 0.026009730994701385, -0.018240805715322495, -0.046180374920368195, 0.0116023700684309, 0.049677569419145584, -0.0037665008567273617, 0.0014104582369327545, -0.04227682948112488, 0.03606618568301201, -0.03913396596908569, 0.025475725531578064, -0.016731956973671913, -0.007998975925147533, 0.043347712606191635, 0.01131148636341095, 0.021176205947995186, -0.031603604555130005, 0.022018251940608025, 0.01667463220655918, 0.039996709674596786, -0.03673827648162842, 0.0008233991684392095, 0.02467249520123005, -0.010090496391057968, 0.019412988796830177, 0.03619912639260292, 0.03072085976600647, 0.04347990080714226, -0.007371947169303894, -0.01674707606434822, 0.013538558967411518, 0.021951621398329735, 0.04066314920783043, 0.057988908141851425, -0.037613123655319214, 0.020961768925189972, -0.02611403539776802, -0.034085508435964584, -0.01824563555419445, -0.008313680998980999, -0.0016707939794287086, 0.0026590016204863787, -0.036728642880916595, -0.05088682845234871, 0.037800416350364685, -0.003775121411308646, -0.005233929958194494, 0.03933016210794449, 0.0006520489696413279, 0.011906384490430355, -0.03366575017571449, -0.004797647707164288, 0.032155368477106094, -0.04233967885375023, 0.006765222642570734, -0.018512899056077003, 0.005328096449375153, 0.004950953647494316, 0.03131670877337456, -0.0639541745185852, -0.029857611283659935, 0.010769560933113098, 0.03262984752655029, -0.01810445822775364, -0.03709321469068527, -0.027157148346304893, 0.00396078871563077, -0.024448106065392494, -0.0010834173299372196, 0.002030148869380355, 0.034381527453660965, -0.001358428387902677, 0.000979019096121192, 0.021786676719784737, -0.0007009711698628962, -0.00840499997138977, 0.03473181277513504, -0.008427843451499939, 0.025066817179322243, -0.01055328082293272, 0.03534113988280296, 0.029875561594963074, 0.009269606322050095, -0.027411334216594696, -0.051253486424684525, 0.009580126963555813, -0.006847964134067297, 0.04847906529903412, 0.008284637704491615, -0.0030223028734326363, -0.008979207836091518, 0.03296342492103577, -0.024854769930243492, 0.005965166725218296, -0.009450429119169712, -0.028334883973002434, 0.00013339689758140594, 0.047414377331733704, 0.012776599265635014, 0.06067525967955589, 0.012386706657707691, -0.06196557357907295, 0.0369470976293087, -0.05059663951396942, -0.04950942471623421, -0.02376730740070343, -0.05106937512755394, 0.017723694443702698, 0.014442705549299717, 0.013569056056439877, -0.03678687661886215, 0.04899440333247185, 0.04017539694905281, 0.02419871836900711, 0.039225734770298004, -0.0021800235845148563, 0.03886015713214874, -0.025280743837356567, -0.03448121249675751, -0.0946149155497551, 0.0076974425464868546, 0.039268285036087036, 0.0026225883048027754, 0.0008285102667286992, -0.03419068828225136, -0.026606829836964607, -0.025613050907850266, -0.0372023768723011, -0.03578703850507736, 0.03687091916799545, -0.021860094740986824, 0.023783529177308083, -0.0028922967612743378, -0.07021952420473099, 0.02198859117925167, 0.030249467119574547, -0.042547766119241714, -0.028404030948877335, -0.06143661215901375, 0.05687744542956352, -0.0405295304954052, 0.04716341197490692, -0.028347745537757874, -0.05724749714136124, 0.06826368719339371, 0.017353476956486702, 0.04289120435714722, 0.024273911491036415, -0.036626625806093216, 0.04373167082667351, 0.036869361996650696, -0.041325103491544724, 0.03277460113167763, 0.011250986717641354, -0.02760017290711403, -0.03270072117447853, -0.004620861727744341, 0.029302576556801796, 0.0032470596488565207, -0.03517531231045723, 0.0703955739736557, 0.03050348535180092, -0.022413084283471107, -0.04932799190282822, 0.02833545207977295, -0.017328044399619102, -0.009963232092559338, -0.040682535618543625, 0.02316325157880783, -0.03467412292957306, 0.04110760986804962, -0.013336543925106525, 0.0004692315706051886, 0.0982428714632988, -0.01145161408931017, -0.00047078944044187665, -0.005961976945400238, 0.09664285182952881, 0.10119295120239258, 0.03797676041722298, 0.01452343724668026, 0.03826162591576576, -0.03915302827954292, -0.0468316376209259, -0.01769798994064331, -0.021222276613116264, -0.00573324179276824, 0.01956658996641636, -0.032489579170942307, 0.05797242745757103, -0.04882098734378815, 0.0746355652809143, -0.02497154287993908, -0.0037029352970421314, -0.009803427383303642, -0.005587001331150532, 0.017910800874233246, 0.02461518719792366, 0.016485590487718582, 0.02736041508615017, -0.0417691133916378, -0.01880185678601265, 0.010572853498160839, 0.01753031089901924, -0.03763554245233536, 0.014118996448814869, -0.01149598415941, -0.012164469808340073, -0.012348689138889313, 0.017778707668185234, 0.09072998911142349, -0.025995366275310516, -0.009297657757997513, 0.010288998484611511, 0.010913359001278877, -0.0373380184173584, 0.019138766452670097, -0.0015573484124615788, -0.03169631212949753, -0.026910124346613884, -0.019931970164179802, -0.0035838878247886896, -0.001601761905476451, -0.029996566474437714, 0.01722072809934616, -0.005959466099739075, -0.010449378751218319, 0.039002399891614914, 0.006470649037510157, -0.04251904413104057, -0.06769859045743942, -0.06314560770988464, -0.05505683273077011, -0.092413991689682, 0.001923880074173212, 0.01833796501159668, -0.0198274627327919, -0.030528176575899124, -0.018015561625361443, -0.06471272557973862, -0.020346324890851974, 0.02718215063214302, -0.06014168635010719, -0.020900530740618706, 0.011155369691550732, 0.02885362133383751, 0.02350039593875408, 0.07033216953277588, 0.03776681423187256, -0.021090542897582054, 0.01895810291171074, 0.009954091161489487, -0.0038371861446648836, 0.05109274387359619, 0.0012537725269794464, -0.004327891394495964, -0.08525747060775757, 0.013301385566592216, 0.03330007195472717, -0.013145144097507, -0.06830204278230667, 0.0031583146192133427, 0.045067280530929565, -0.02747870795428753, 0.04472111910581589, -0.023008551448583603, 0.014337562955915928, -0.023082435131072998, -0.026202935725450516, -0.0208689346909523, -0.0034443538170307875, 0.038611989468336105, -0.015458635054528713, 0.07146085053682327, 0.07161581516265869, -0.011570672504603863, -0.057069458067417145, -0.0273135956376791, -0.012238351628184319, 0.029995465651154518, -0.033324580639600754, -0.026536496356129646, -0.09018639475107193, -0.05799157917499542, -0.011945713311433792, 0.016918379813432693, -0.03332427516579628, -0.026333317160606384, 0.012535305693745613, 0.03785458952188492, -0.021899593994021416, -0.0021941198501735926, -0.028307586908340454, 0.018581345677375793, -0.030541667714715004, -0.03402543067932129, -0.03286205232143402, 0.03936551511287689, 0.01308539230376482, -0.02773347683250904, 0.001062645111232996, -0.030892936512827873, 0.04451209306716919, -0.008212887682020664, 0.011905605904757977, 0.028689658269286156, 0.02927487902343273, 0.018129538744688034 ]
[ -0.06928360462188721, -0.020886927843093872, -0.03371180221438408, -0.02228236198425293, 0.06820439547300339, -0.04541632905602455, -0.03345031663775444, 0.010047612711787224, 0.0035218496341258287, -0.014081594534218311, 0.029958674684166908, -0.03863341361284256, -0.007199455983936787, -0.02025262825191021, 0.05344044044613838, -0.010076267644762993, -0.017768075689673424, -0.05125700682401657, -0.021322615444660187, 0.07180942595005035, -0.011082351207733154, -0.03369204327464104, -0.02219189703464508, -0.057159509509801865, -0.007276199292391539, 0.020041460171341896, 0.04862382635474205, -0.0084327831864357, -0.024361776188015938, -0.24653750658035278, 0.007838189601898193, 0.010472813621163368, 0.028197847306728363, -0.019384704530239105, 0.04244022071361542, 0.012075386941432953, 0.038682952523231506, -0.02404322847723961, 0.005581189412623644, 0.04140304774045944, -0.0006572063430212438, 0.006529738660901785, -0.06218589469790459, -0.0004247257311362773, 0.040860798209905624, 0.02519967034459114, -0.0201096273958683, -0.004182097967714071, 0.009993381798267365, 0.02213251031935215, -0.06256807595491409, 0.01853242516517639, 0.009532839059829712, -0.01692509837448597, 0.01023018267005682, 0.028728805482387543, 0.04220256209373474, 0.05240718275308609, 0.0023028342984616756, 0.021525051444768906, -0.0031917188316583633, 0.025924090296030045, -0.14155451953411102, 0.08393984287977219, 0.03167586401104927, 0.027302470058202744, -0.02945137955248356, -0.028820497915148735, -0.03052612766623497, 0.07806993275880814, -0.01406275387853384, -0.009452306665480137, -0.06985832005739212, 0.0926908329129219, 0.00005737283208873123, -0.005119910463690758, -0.010438121855258942, -0.002300423104315996, 0.02045499160885811, -0.038315076380968094, -0.07442920655012131, 0.0010924497619271278, -0.019796475768089294, -0.02514304220676422, -0.030478989705443382, 0.01956012472510338, -0.03579610958695412, 0.056036483496427536, 0.02170616015791893, 0.023986218497157097, 0.030379299074411392, 0.004825432784855366, 0.039002638310194016, 0.049559492617845535, -0.09162414073944092, -0.014429694041609764, 0.007599928416311741, 0.042406003922224045, 0.006969367619603872, 0.4443053603172302, -0.017271608114242554, -0.012413439340889454, 0.03692952170968056, 0.023136354982852936, 0.01721474900841713, -0.01327149011194706, -0.006091842893511057, -0.04528256878256798, 0.037188831716775894, -0.02538117952644825, 0.008618548512458801, -0.028889918699860573, 0.04535777494311333, -0.07930387556552887, 0.015479317866265774, 0.014460211619734764, 0.05348886176943779, 0.011870315298438072, -0.026627004146575928, 0.031202713027596474, -0.01800401322543621, 0.018032319843769073, 0.038563355803489685, 0.0007409045938402414, 0.031149063259363174, -0.028098003938794136, 0.013334336690604687, 0.06959257274866104, 0.04636116325855255, 0.026170674711465836, 0.04957587271928787, -0.00676974980160594, -0.06177215278148651, 0.01121345441788435, -0.010472355410456657, 0.014113525860011578, 0.025304127484560013, -0.04191313683986664, -0.011516924947500229, 0.008406001143157482, -0.005498119629919529, -0.03777582198381424, 0.0023947511799633503, 0.010408471338450909, -0.03583791106939316, 0.09642672538757324, -0.014080718159675598, -0.028234250843524933, -0.023649776354432106, -0.05412731319665909, 0.0008926141308620572, 0.0531216599047184, -0.008762352168560028, -0.047456543892621994, -0.013660921715199947, 0.0004539012734312564, 0.06723373383283615, -0.02497808076441288, -0.08383576571941376, -0.012598852626979351, -0.008386317640542984, -0.04523513466119766, -0.029733043164014816, 0.06505697965621948, 0.02950396202504635, -0.06971125304698944, -0.030737854540348053, 0.029802991077303886, 0.030197469517588615, -0.06559082865715027, 0.02649543061852455, -0.0003661398368421942, -0.05949484556913376, -0.017690042033791542, 0.04957398399710655, -0.027301372960209846, -0.021297097206115723, -0.028191234916448593, 0.030420377850532532, -0.0043206363916397095, -0.016446702182292938, 0.007384120021015406, -0.031092604622244835, 0.02457033470273018, -0.05828431248664856, -0.0666305273771286, -0.09014114737510681, 0.026526620611548424, -0.01434711366891861, -0.009926857426762581, -0.016994215548038483, -0.002885632449761033, -0.06689168512821198, 0.05178443342447281, -0.042029257863759995, -0.026803461834788322, -0.0038377309683710337, 0.03700760379433632, 0.00031949655385687947, -0.04518205299973488, 0.04565850645303726, 0.025440381839871407, -0.027493102476000786, 0.03249494358897209, -0.054745934903621674, -0.014149903319776058, 0.060142531991004944, -0.04334263876080513, 0.08114036917686462, 0.042090028524398804, -0.02356555685400963, 0.0051179607398808, -0.019215207546949387, 0.01081226859241724, -0.007123205345124006, -0.05417812243103981, 0.0009306377032771707, -0.019186662510037422, 0.03694372624158859, 0.03165380656719208, -0.03918686881661415, -0.047527704387903214, -0.032272811979055405, -0.34381812810897827, -0.02456722781062126, -0.00382190546952188, -0.012192564085125923, 0.017367836087942123, -0.027071034535765648, 0.0118457255885005, -0.011905735358595848, 0.0028864643536508083, 0.018540360033512115, 0.05066012963652611, -0.008687987923622131, 0.00155647995416075, -0.1022941842675209, -0.011914211325347424, 0.03454836457967758, 0.004302249755710363, -0.01362735778093338, 0.006515028886497021, 0.040418174117803574, -0.0035586345475167036, -0.04908546060323715, -0.021239660680294037, -0.04016544669866562, -0.002282726112753153, -0.03461894392967224, 0.10623227059841156, 0.024860955774784088, 0.05469783395528793, -0.03332782909274101, 0.04410106688737869, 0.00752234598621726, 0.0046975091099739075, -0.08679912984371185, -0.013982461765408516, -0.028176896274089813, -0.007555571850389242, 0.046377163380384445, 0.005997010972350836, 0.018673261627554893, -0.049501851201057434, -0.01428703311830759, -0.04326070100069046, -0.04475005343556404, 0.023418325930833817, 0.014827740378677845, -0.006372023373842239, -0.015774501487612724, 0.010535395704209805, 0.07702160626649857, 0.01810181699693203, 0.004995175637304783, 0.000766789133194834, 0.04198729246854782, 0.04452870413661003, -0.02884060889482498, -0.05061676353216171, -0.01777016371488571, 0.032783392816782, -0.007108852732926607, 0.01660360023379326, 0.02364508993923664, 0.037959836423397064, -0.07325641065835953, 0.0011565826134756207, -0.006796499248594046, -0.0038427170366048813, 0.005496574565768242, 0.050852760672569275, -0.037694141268730164, -0.023595450446009636, 0.10330884158611298, -0.0030708140693604946, 0.019841963425278664, 0.01794433780014515, 0.06729163229465485, -0.014867553487420082, 0.007365011144429445, 0.02391400747001171, 0.01382270734757185, 0.05035439133644104, -0.011971133761107922, 0.07884315401315689, -0.04205559194087982, 0.003342421492561698, 0.059011828154325485, 0.005475832149386406, -0.014184098690748215, 0.04216018691658974, 0.007104959338903427, -0.022255416959524155, -0.026059754192829132, -0.02164158970117569, -0.046573396772146225, 0.0757259875535965, -0.031802743673324585, -0.2668691873550415, 0.041288748383522034, 0.030324405059218407, 0.0667925626039505, 0.009985748678445816, 0.014230437576770782, 0.015502494759857655, -0.05842510238289833, -0.010833592154085636, 0.03249984234571457, 0.02640172839164734, 0.040015626698732376, -0.004261048976331949, -0.031118672341108322, 0.008224505931138992, -0.002776575041934848, 0.03856736049056053, 0.009313187561929226, 0.01455999631434679, 0.03177953138947487, 0.019057612866163254, -0.013304684311151505, 0.17518742382526398, 0.02776271477341652, -0.020286662504076958, 0.021636653691530228, -0.013858623802661896, 0.052219096571207047, 0.07121653109788895, 0.014911971054971218, -0.00408523716032505, 0.03817269206047058, 0.013970420695841312, 0.041038867086172104, 0.01685037463903427, -0.04297677055001259, -0.016589539125561714, 0.055741310119628906, 0.033582281321287155, -0.026918338611721992, -0.026687227189540863, 0.04826344922184944, -0.04678650572896004, 0.023991795256733894, 0.04766914248466492, -0.008018509484827518, 0.0016391471726819873, -0.015010860748589039, -0.02279953472316265, -0.02139529399573803, -0.032170746475458145, -0.025009257718920708, -0.012083425186574459, -0.008402382954955101, 0.0028457692824304104, 0.05571115389466286, 0.007459871005266905, -0.04031115397810936, 0.031159190461039543, 0.017789198085665703, -0.022961987182497978, -0.0758296400308609, 0.09203048050403595, 0.010829363949596882, -0.010259388014674187 ]
[ 0.02375064603984356, 0.047352999448776245, -0.05706574022769928, 0.016162008047103882, -0.0017468574224039912, -0.016521360725164413, 0.003723746631294489, 0.003662572940811515, -0.011354069225490093, 0.011847716756165028, -0.026993507519364357, 0.014466811902821064, 0.04349039867520332, -0.048905786126852036, -0.011163115501403809, -0.0016912281280383468, 0.00806611217558384, 0.028191084042191505, 0.025902798399329185, -0.005836432334035635, -0.04009018838405609, -0.002738076029345393, 0.030954930931329727, -0.02009189873933792, -0.016245784237980843, 0.04641716182231903, -0.014835958369076252, 0.021080732345581055, 0.011974883265793324, -0.1296076774597168, -0.03294046223163605, -0.007816240191459656, 0.014810722321271896, 0.020114105194807053, 0.01288193091750145, 0.027611302211880684, 0.016320979222655296, 0.00038932793540880084, -0.03231703117489815, 0.029467785730957985, 0.0046302699483931065, 0.007329355925321579, -0.02295403741300106, 0.011059432290494442, 0.010602738708257675, 0.010795742273330688, -0.02639848366379738, -0.00632539251819253, -0.003887427970767021, -0.03360937163233757, -0.05396967753767967, 0.025014488026499748, -0.02587749995291233, -0.00920192152261734, 0.0033947518095374107, -0.04949159920215607, 0.007812360301613808, -0.0313880629837513, 0.01014273427426815, 0.0015322729013860226, 0.0003573968424461782, 0.0031324538867920637, -0.013961774297058582, -0.02484147623181343, 0.023586956784129143, -0.013963649049401283, -0.027243534103035927, 0.015964457765221596, -0.008308971300721169, -0.0016043165232986212, -0.03226310759782791, 0.03724818676710129, -0.0611005537211895, 0.011374802328646183, -0.03477202728390694, 0.00804393645375967, 0.04351230338215828, -0.036536701023578644, 0.008786093443632126, -0.011502116918563843, -0.05497998744249344, -0.020543914288282394, -0.007978351786732674, -0.014758305624127388, -0.03937147185206413, -0.0092162499204278, -0.014494027011096478, 0.00915907509624958, 0.018522821366786957, 0.013670342974364758, 0.02428910695016384, 0.011861874721944332, 0.027978645637631416, 0.0042814952321350574, -0.08660361915826797, -0.004050270654261112, 0.008144374936819077, 0.004921090789139271, -0.004374440293759108, 0.8406933546066284, 0.0019374662078917027, 0.006368038710206747, 0.00471583241596818, 0.017797978594899178, 0.007723906543105841, -0.005776138510555029, 0.03990289941430092, 0.020871099084615707, 0.008867506869137287, -0.04314575344324112, 0.01733742468059063, 0.009083753451704979, 0.0013960986398160458, -0.02740470878779888, 0.01174723170697689, 0.026932867243885994, 0.012390773743391037, 0.002555837854743004, -0.002871657256036997, 0.01845218427479267, 0.00482307281345129, 0.022062236443161964, 0.004468661267310381, -0.014832254499197006, -0.008839612826704979, -0.15738819539546967, 0.02104637585580349, -7.100425219980236e-33, 0.03489231690764427, -0.0137642165645957, 0.03724861890077591, 0.019337903708219528, 0.03518671542406082, 0.014437248930335045, -0.009560905396938324, 0.005841630976647139, 0.001559323281981051, -0.02239212580025196, -0.009791419841349125, -0.001578061026521027, -0.010433308780193329, -0.021681057289242744, 0.019280584529042244, -0.024625705555081367, 0.0014697960577905178, 0.0033030007034540176, -0.004706013016402721, -0.00023743229394312948, 0.03204526752233505, 0.03432860225439072, 0.03598950430750847, 0.028737608343362808, 0.01868201605975628, 0.011685670353472233, -0.0066506825387477875, -0.031775157898664474, -0.0015658410266041756, -0.04968848451972008, -0.04386743903160095, 0.039220038801431656, 0.009152110666036606, -0.062171485275030136, 0.01613406278192997, -0.06807805597782135, -0.010339302942156792, 0.029324093833565712, -0.032243017107248306, -0.01532552856951952, -0.024655839428305626, 0.012827310711145401, -0.016891149803996086, -0.014856008812785149, -0.01817619986832142, -0.022293098270893097, -0.007824935019016266, 0.03333783894777298, 0.006895833183079958, 0.005978442262858152, 0.026284145191311836, 0.024877700954675674, 0.016667816787958145, 0.027116592973470688, 0.001936139422468841, -0.0017004954861477017, 0.0178171768784523, -0.026798950508236885, 0.011006975546479225, 0.016516026109457016, 0.037933316081762314, 0.009519395418465137, 0.006333065684884787, 0.039613042026758194, 0.02952791191637516, -0.0212694238871336, 0.07286373525857925, 0.010479535907506943, -0.007782161235809326, 0.02287258766591549, -0.059619128704071045, 0.013690614141523838, -0.0020439904183149338, -0.03229783475399017, 0.011862967163324356, -0.04806383326649666, -0.03213987499475479, -0.04115037992596626, 0.021170513704419136, 0.027004141360521317, 0.00471025425940752, -0.03098747693002224, 0.0026991257909685373, -0.03332136198878288, -0.031246744096279144, 0.014847568236291409, 0.02429749071598053, -0.01197010651230812, -0.011065819300711155, -0.003229578724130988, 0.02163410559296608, 0.03136496618390083, 0.012783244252204895, -0.04124687984585762, -0.0031919097527861595, 7.148488979933452e-33, 0.019251476973295212, -0.015473845414817333, -0.023610182106494904, 0.03428651764988899, 0.026578204706311226, 0.004284477327018976, 0.03765624761581421, -0.020883016288280487, -0.0353357195854187, 0.0394662506878376, -0.02437543496489525, -0.022279202938079834, -0.002053146483376622, 0.024178460240364075, 0.0844147726893425, 0.02733032964169979, -0.001510005909949541, 0.01907636597752571, -0.007835776545107365, -0.0035316566936671734, -0.025912825018167496, 0.018094172701239586, 0.016263369470834732, 0.01184382289648056, 0.057428084313869476, 0.009258832782506943, -0.023054426535964012, 0.007417424116283655, -0.0013990672305226326, -0.0006907060160301626, -0.007741845212876797, 0.012554768472909927, -0.008650788106024265, -0.002352951094508171, -0.040427207946777344, 0.0214249137789011, 0.0192930418998003, -0.008299745619297028, 0.02687056176364422, 0.007892241701483727, 0.04043629392981529, 0.010450027883052826, -0.05751596391201019, 0.030620189383625984, 0.0015105557395145297, 0.045832931995391846, 0.014283508993685246, 0.03377249464392662, -0.013912667520344257, 0.03555666655302048, 0.004827980883419514, -0.0020931169856339693, -0.014681869186460972, 0.002974927891045809, 0.03508824110031128, -0.04642949998378754, -0.03242180868983269, 0.027802636846899986, -0.035691000521183014, -0.011684398166835308, -0.03732619807124138, 0.007701254449784756, 0.0069338432513177395, 0.003431410528719425, -0.023852037265896797, 0.02505931258201599, -0.013503753580152988, 0.01349714770913124, 0.00344625161960721, -0.049594927579164505, -0.024187905713915825, -0.024955179542303085, -0.011961545795202255, 0.029472550377249718, -0.020948756486177444, 0.020424867048859596, -0.045115865767002106, -0.0060447342693805695, -0.02854013256728649, 0.027235615998506546, 0.004161587916314602, 0.02440571039915085, 0.011294295080006123, 0.029936380684375763, -0.0035678339190781116, 0.012129374779760838, -0.04337466508150101, -0.023819372057914734, 0.022460950538516045, 0.020860033109784126, -0.002671691821888089, -0.03493582457304001, -0.01486244983971119, 0.0018615217413753271, -0.03100334107875824, -1.2729509890618829e-8, -0.042698103934526443, 0.0035689494106918573, -0.032477688044309616, 0.016569538041949272, 0.02502104453742504, -0.0042946855537593365, -0.030991243198513985, 0.007889880798757076, 0.006124875973910093, -0.005560501478612423, 0.057070910930633545, -0.020062198862433434, 0.009042523801326752, 0.018345562741160393, 0.02247963659465313, -0.038303568959236145, 0.007982044480741024, -0.03327647224068642, 0.024001257494091988, -0.00020468237926252186, 0.0219668447971344, 0.04429169371724129, -0.0002961072896141559, -0.007281502243131399, 0.0006056461133994162, -0.004645095206797123, 0.004044638946652412, -0.09310014545917511, 0.0166883897036314, -0.001920505310408771, 0.032710086554288864, -0.0500481054186821, -0.01056203804910183, 0.003408400807529688, -0.00015108777733985335, -0.031041931360960007, 0.017619790509343147, 0.03767086938023567, 0.02299647033214569, 0.007334686815738678, 0.0016542957164347172, -0.01500437967479229, -0.04200959578156471, -0.02835315838456154, -0.04340238496661186, -0.011165741831064224, -0.059612832963466644, 0.008461637422442436, 0.02005387470126152, -0.0329788401722908, 0.009746458381414413, 0.013145511969923973, 0.021497230976819992, 0.0364682711660862, 0.043524883687496185, 0.013143166899681091, 0.012766200117766857, -0.02405049093067646, 0.02075468935072422, -0.02038552612066269, 0.02339337021112442, -0.003082991810515523, -0.0218668170273304, -0.025009389966726303 ]
a-rogue-357273277-utf-8-byte-order-mark
https://markhneedham.com/blog/2012/09/03/a-rogue-357273277-utf-8-byte-order-mark
false
2012-09-29 09:56:16
Upstart: Job getting stuck in the start/killed state
[ "upstart" ]
[ "Shell Scripting" ]
We're using http://upstart.ubuntu.com/[upstart] to handle the processes running on our machines and since the http://haproxy.1wt.eu/[haproxy] package only came package with an init.d script we wanted to make it upstartified. When defining an upstart script you need to specify an +++<cite>+++expect+++</cite>+++ stanza in which you specify whether or not the process which you're launching is going to fork. ____ If you do not specify the expect stanza, Upstart will track the life cycle of the first PID that it executes in the exec or script stanzas. However, most Unix services will "daemonize", meaning that they will create a new process (using fork(2)) which is a child of the initial process. Often services will "double fork" to ensure they have no association whatsoever with the initial process. ____ There is a table on the upstart cookbook under the 'http://upstart.ubuntu.com/cookbook/#id155[Implications of Misspecifying expect]' section which explains what will happen if we specify this incorrectly:+++<table border="1" class="docutils">++++++<caption>+++Expect Stanza Behaviour+++</caption>+++ +++<colgroup>++++++<col width="10%">++++++</col>+++ +++<col width="31%">++++++</col>+++ +++<col width="31%">++++++</col>+++ +++<col width="28%">++++++</col>++++++</colgroup>+++ +++<thead valign="bottom">++++++<tr>++++++<th class="head">+++&nbsp;+++</th>+++ +++<th class="head" colspan="3">+++Specification of Expect Stanza+++</th>++++++</tr>+++ +++<tr>++++++<th class="head">+++Forks+++</th>+++ +++<th class="head">+++no +++<tt class="docutils literal">+++expect+++</tt>++++++</th>+++ +++<th class="head">++++++<tt class="docutils literal">+++expect fork+++</tt>++++++</th>+++ +++<th class="head">++++++<tt class="docutils literal">+++expect daemon+++</tt>++++++</th>++++++</tr>++++++</thead>+++ +++<tbody valign="top">++++++<tr>++++++<td>+++0+++</td>+++ +++<td>+++Correct+++</td>+++ +++<td>++++++<a class="reference internal" href="#start">+++start+++</a>+++ hangs+++</td>+++ +++<td>++++++<a class="reference internal" href="#start">+++start+++</a>+++ hangs+++</td>++++++</tr>+++ +++<tr>++++++<td>+++1+++</td>+++ +++<td>+++Wrong pid tracked †+++</td>+++ +++<td>+++Correct+++</td>+++ +++<td>++++++<a class="reference internal" href="#start">+++start+++</a>+++ hangs+++</td>++++++</tr>+++ +++<tr>++++++<td>+++2+++</td>+++ +++<td>+++Wrong pid tracked+++</td>+++ +++<td>+++Wrong pid tracked+++</td>+++ +++<td>+++Correct+++</td>++++++</tr>++++++</tbody>++++++</table>+++ When we were defining our script we went for +++<cite>+++expect daemon+++</cite>+++ instead of +++<cite>+++expect fork+++</cite>+++ and had also mistyped the arguments to the haproxy script which meant it failed to start and ended up in the +++<cite>+++start/killed+++</cite>+++ state. From what we could tell upstart had a handle on a PID which didn't actually exist and when we tried a +++<cite>+++stop haproxy+++</cite>+++ the command seemed to succeed but didn't actually do anything. https://twitter.com/philandstuff[Phil] pointed us to https://bugs.launchpad.net/upstart/+bug/406397/comments/24[a neat script written by Clint Byrum] which spins up and then kills loads of processes in order to exhaust the PID space until a process with the PID upstart is tracking exists and can be re-attached and killed. It's http://heh.fi/tmp/workaround-upstart-snafu[available on his website] but that wasn't responding for a period of time yesterday so I'll repeat it here just in case: [source,ruby] ---- #!/usr/bin/env ruby1.8 class Workaround def initialize target_pid @target_pid = target_pid first_child end def first_child pid = fork do Process.setsid rio, wio = IO.pipe # Keep rio open until second_child rio, wio print "\e[A" end end Process.wait pid end def second_child parent_rio, parent_wio rio, wio = IO.pipe pid = fork do rio.close parent_wio.close puts "%20.20s" % Process.pid if Process.pid == @target_pid wio << 'a' wio.close parent_rio.read end end wio.close begin if rio.read == 'a' true else Process.wait pid false end ensure rio.close end end end if $0 == __FILE__ pid = ARGV.shift raise "USAGE: #{$0} pid" if pid.nil? Workaround.new Integer pid end ---- We can https://gist.github.com/3803604[put that into a shell script], run it and the world of upstart will get back into a good place again!
null
null
[ -0.028635984286665916, 0.01219260971993208, -0.015402848832309246, 0.04289699345827103, 0.11498924344778061, 0.012213427573442459, 0.01788320764899254, 0.042496513575315475, 0.010001789778470993, -0.0016470600385218859, -0.02261301688849926, -0.007370293140411377, -0.06779518723487854, 0.00828707404434681, 0.007760941982269287, 0.04272059351205826, 0.10005517303943634, 0.008177416399121284, 0.005901653785258532, 0.004833695013076067, 0.030742494389414787, 0.06435060501098633, 0.0069028171710669994, 0.01576618291437626, 0.0034268503077328205, 0.02361782267689705, -0.004625520668923855, -0.021019140258431435, -0.08633420616388321, -0.012265325523912907, 0.04297857731580734, -0.017160188406705856, -0.013037324883043766, -0.046181805431842804, 0.0264460276812315, 0.003273963462561369, -0.03556833416223526, 0.028067167848348618, -0.008280565962195396, 0.008896874263882637, -0.07683015614748001, 0.0105803944170475, -0.012717299163341522, -0.015243328176438808, -0.058003880083560944, -0.009249129332602024, -0.049114715307950974, 0.01469544880092144, -0.01500770729035139, -0.018582671880722046, -0.08437418192625046, 0.03762861341238022, -0.013545687310397625, -0.04301494359970093, 0.03228249400854111, 0.026095006614923477, 0.04526503384113312, -0.06591850519180298, 0.0171666219830513, -0.03464712202548981, 0.007565530948340893, 0.0015755670610815287, 0.005274571944028139, 0.016430485993623734, 0.02147047594189644, -0.04437508434057236, 0.0013821946922689676, 0.040731120854616165, -0.04762446880340576, -0.037735696882009506, 0.012707855552434921, 0.0014503335114568472, -0.04362103343009949, 0.00040771602652966976, 0.034818921238183975, -0.04334704205393791, -0.02656889148056507, 0.03605540096759796, 0.015755025669932365, 0.06741486489772797, -0.021690474823117256, 0.014777343720197678, 0.0551985539495945, 0.019365938380360603, -0.022242480888962746, -0.024390220642089844, -0.013380903750658035, -0.020517947152256966, -0.03687265142798424, 0.07955657690763474, 0.044636454433202744, -0.06635607033967972, 0.0171623807400465, 0.0035170724149793386, -0.03217630460858345, -0.0004990582820028067, 0.009191050194203854, 0.00913307722657919, 0.02245471440255642, -0.015013722702860832, -0.060229573398828506, 0.030051564797759056, -0.010720892809331417, -0.0018157365266233683, -0.05490792170166969, -0.010787291452288628, -0.022782858461141586, -0.055509716272354126, -0.008182769641280174, -0.038555290549993515, -0.013616232201457024, 0.02960694581270218, 0.014461258426308632, 0.03853035345673561, -0.08248595148324966, 0.07441133260726929, -0.00805266946554184, -0.04871837794780731, 0.03271256387233734, -0.01115063764154911, 0.05019141733646393, 0.036057133227586746, -0.03201373293995857, 0.09538264572620392, 0.015793776139616966, 0.03396117314696312, 0.005308555904775858, 0.04881700500845909, -0.015491366386413574, -0.060945380479097366, -0.021087203174829483, 0.09008189290761948, 0.021005064249038696, 0.0029992067720741034, -0.024685952812433243, 0.01113203726708889, 0.02232188545167446, -0.02382470853626728, 0.07018841058015823, 0.04151065647602081, -0.02305852435529232, -0.0182790607213974, 0.015798024833202362, -0.021107494831085205, 0.0249185711145401, -0.007358657196164131, 0.01329969521611929, -0.04149810969829559, -0.0546572171151638, 0.01575384847819805, -0.0019776602275669575, 0.017801716923713684, 0.0697212889790535, -0.012991495430469513, 0.021441232413053513, 0.05962912738323212, 0.05150839313864708, 0.016549402847886086, -0.03717225417494774, 0.01164280902594328, 0.01550030242651701, 0.023852506652474403, 0.01973654516041279, 0.039665337651968, 0.01778625138103962, 0.0003178460756316781, 0.017648490145802498, 0.028951695188879967, -0.006043140310794115, 0.02107607014477253, -0.060414932668209076, -0.06747596710920334, 0.07486617565155029, -0.03502489998936653, 0.019337458536028862, 0.008399467915296555, 0.07238706946372986, 0.01894812099635601, 0.023005466908216476, 0.00011217978317290545, -0.08688747882843018, 0.05346443131566048, 0.005427138414233923, 0.03158606216311455, 0.0063318973407149315, -0.044626057147979736, 0.05902840942144394, 0.027477877214550972, 0.007070780731737614, 0.008211159147322178, -0.06916452944278717, -0.10447242110967636, -0.005399810615926981, -0.010488062165677547, 0.04528040811419487, -0.053155090659856796, -0.028170209378004074, 0.06009193882346153, 0.023578085005283356, 0.01847343146800995, 0.007591188885271549, 0.018761273473501205, 0.0016179286176338792, -0.07933684438467026, -0.041738077998161316, 0.03595912829041481, 0.02569711022078991, -0.026451103389263153, -0.02785484679043293, 0.010309524834156036, -0.025306105613708496, 0.003333171596750617, 0.020869649946689606, 0.0053933667950332165, 0.041639186441898346, 0.0019207216100767255, 0.053750574588775635, -0.04024582728743553, 0.04447760805487633, -0.026335900649428368, 0.012177817523479462, -0.02495719864964485, -0.0050146980211138725, -0.006926894187927246, -0.005113603547215462, 0.10925387591123581, 0.04905926063656807, -0.022207781672477722, -0.027348237112164497, 0.04137074574828148, 0.01402856595814228, -0.06992155313491821, 0.005108744837343693, 0.0015164484502747655, -0.02333458885550499, 0.02730049192905426, -0.021010514348745346, -0.006157277151942253, 0.038789812475442886, -0.037887610495090485, 0.0058220201171934605, 0.07447177171707153, -0.034966643899679184, 0.048730093985795975, 0.009304464794695377, -0.03311216086149216, -0.002402388723567128, -0.03080391325056553, -0.0913238599896431, 0.007944991812109947, 0.021558022126555443, -0.006265133619308472, 0.05277051776647568, -0.044704221189022064, -0.05827037990093231, -0.010428830981254578, -0.06413818150758743, 0.052804362028837204, 0.0358242504298687, 0.05068414658308029, -0.058329880237579346, 0.03527556732296944, 0.008299051783978939, 0.007597150281071663, 0.009799833409488201, -0.024964310228824615, -0.033128127455711365, 0.00705501576885581, -0.023881494998931885, 0.021334955468773842, -0.009141708724200726, -0.006436347495764494, 0.006712991278618574, -0.009889700450003147, 0.01695137284696102, -0.007722536101937294, 0.012684574350714684, 0.02068835124373436, 0.0006612105644308031, -0.012314626015722752, -0.005701997317373753, 0.027348384261131287, -0.0619317889213562, -0.020155183970928192, 0.020928069949150085, -0.040854670107364655, 0.047965291887521744, -0.07411157339811325, -0.04217279702425003, -0.019763154909014702, 0.021741265431046486, 0.03582855314016342, 0.018463224172592163, 0.03176535665988922, 0.05654633417725563, 0.0280460212379694, 0.026325654238462448, 0.04680502414703369, 0.00003230812944821082, 0.042075030505657196, 0.0005581625155173242, 0.0008412926690652966, 0.03247736766934395, -0.004858190659433603, 0.004784716758877039, -0.026566684246063232, 0.008944474160671234, -0.035586871206760406, -0.2782144248485565, 0.021389653906226158, 0.030047966167330742, -0.016498668119311333, 0.026131100952625275, -0.027122829109430313, 0.0056647346355021, -0.031284380704164505, -0.03390063717961311, 0.037368420511484146, -0.017673933878540993, -0.0519724003970623, -0.021308844909071922, 0.005975799635052681, -0.012796294875442982, 0.044704120606184006, 0.015436637215316296, -0.04233597218990326, -0.013695904053747654, 0.017815014347434044, -0.0036527386400848627, -0.0396127887070179, 0.03788111358880997, 0.034338247030973434, 0.023754863068461418, 0.04344083368778229, -0.05247022584080696, 0.04968157038092613, -0.035517726093530655, -0.04231765493750572, 0.01729871705174446, -0.02616313099861145, -0.00012324718409217894, 0.002472570398822427, -0.002792268292978406, -0.014924815855920315, 0.027660300955176353, -0.001954118488356471, 0.008140947669744492, 0.0009987095836549997, -0.0018192082643508911, -0.04101584851741791, 0.02051669918000698, -0.009913892485201359, 0.04803890734910965, -0.010165979154407978, -0.0816524475812912, -0.03114449791610241, -0.016142234206199646, 0.0919605940580368, -0.0336618535220623, -0.028595993295311928, -0.016927022486925125, 0.02821151353418827, -0.006868128199130297, 0.01621963270008564, -0.022268621250987053, -0.0004508485144469887, -0.058222319930791855, -0.03684156760573387, -0.029077066108584404, -0.03364057093858719, -0.033407602459192276, -0.0372098870575428, 0.020809197798371315, -0.03304874151945114, -0.05120735615491867, -0.010914229787886143, 0.06546491384506226, -0.005383764393627644, -0.004348076414316893, -0.013129659928381443, -0.0013390380190685391, -0.1070772111415863, 0.015084338374435902, -0.058873359113931656, -0.04358367621898651, 0.00958038866519928, -0.010736614465713501, 0.014407636597752571, -0.04026162996888161, -0.022119823843240738, 0.012769135646522045, 0.01202278584241867, 0.029655104503035545, -0.030373482033610344, 0.012715444900095463, -0.024359220638871193, -0.03284793719649315, -0.0021563367918133736, 0.046133339405059814, -0.019581303000450134, -0.025937436148524284, -0.006169062107801437, 0.013318825513124466, 0.025576353073120117, -0.0010099273640662432, 0.02454107441008091, 0.0021415988449007273, 0.0032036772463470697, 0.03224736824631691, -0.05954720824956894, 0.0017174951499328017, -0.021651912480592728, -0.012896557338535786, 0.011892017908394337, -0.06937241554260254, 0.04115137830376625, 0.049430377781391144, 0.023206884041428566, -0.009323397651314735, -0.03857775405049324, 0.011196800507605076, -0.056753382086753845, -0.05351712182164192, -0.010516135953366756, -0.004627445712685585, 0.025764500722289085, 0.007151070050895214, -0.005562726408243179, -0.056837525218725204, 0.010238993912935257, -0.007907665334641933, -0.02302931621670723, -0.023349231109023094, -0.03209104388952255, -0.002950012218207121, 0.029048917815089226, 0.0265359990298748, -0.013940082862973213, 0.00003285409911768511, 0.008403961546719074, 0.03427603840827942, -0.01966060698032379, -0.004342325031757355, -0.013948101550340652, -0.05532388016581535, -0.030874455347657204, 0.0016091115539893508, 0.021199945360422134, -0.042363159358501434, 0.03557543456554413, 0.015472793951630592, 0.020894331857562065, 0.06933066248893738, 0.006373854819685221, 0.07592684775590897, -0.026454899460077286, 0.01887291856110096, 0.005639375653117895, 0.026327354833483696, -0.036951694637537, 0.011262109503149986, -0.0070877657271921635, -0.031326331198215485, -0.0024933740496635437, 0.03120534121990204, -0.01724276877939701, -0.026318270713090897, -0.017491227015852928, -0.00463062571361661, -0.08486980199813843, -0.0002363935054745525, -0.04339690878987312, 0.00771432975307107, 0.06443595886230469, 0.002307089976966381, 0.004835471976548433, -0.040772564709186554, -0.01712929643690586, 0.029805665835738182, 0.023775964975357056, -0.03844426944851875, 0.011645007878541946, 0.033469293266534805, 0.0030327392742037773, -0.0019201271934434772, 0.029150066897273064, 0.02496107667684555, -0.010517161339521408, 0.012192539870738983, 0.02053414098918438, 0.009058156982064247, 0.023397395387291908, 0.05602939799427986, -0.009955154731869698, -0.007010678295046091, 0.004474974237382412, -0.024407388642430305, -0.008141969330608845, -0.04012423753738403, 0.01807324029505253, -0.002181289717555046, 0.0021958875004202127, -0.020766228437423706, -0.08869891613721848, 0.025417178869247437, 0.037824321538209915, 0.022545242682099342, -0.008097298443317413, 0.01154643390327692, 0.002634553238749504, -0.055793747305870056, 0.03335817903280258, 0.08746828883886337, -0.04626447707414627, 0.006936493795365095, -0.0004055521567352116, 0.02893681265413761, 0.001043106196448207, 0.012372367084026337, -0.05274825543165207, 0.0017798715271055698, -0.010737938806414604, 0.004299808759242296, -0.03154154121875763, -0.058501947671175, -0.0405789352953434, 0.01023072563111782, 0.005987792741507292, 0.016252905130386353, -0.009942934848368168, 0.02484491467475891, 0.019339051097631454, -0.013626395724713802, -0.004347262904047966, -0.015749188140034676, -0.024303371086716652, 0.05653000250458717, -0.025156553834676743, 0.02503974549472332, -0.01620912365615368, 0.014653920195996761, -0.016935408115386963, -0.018665967509150505, -0.013377326540648937, -0.054341208189725876, -0.020237354561686516, -0.01027380209416151, 0.046620287001132965, -0.01269814558327198, 0.00853059347718954, -0.0027387281879782677, 0.006836204323917627, -0.03198544681072235, 0.009177898056805134, -0.0009309021406807005, -0.013513828627765179, 0.015185472555458546, 0.061974409967660904, 0.0004930270370095968, 0.03718727082014084, -0.039605144411325455, -0.018062572926282883, 0.029780346900224686, -0.0648399293422699, -0.04798038303852081, -0.02323468215763569, -0.06225394830107689, 0.05022802948951721, 0.058163996785879135, -0.005500167142599821, -0.06808335334062576, 0.02546130307018757, 0.05650273337960243, 0.04096049442887306, 0.02629091776907444, -0.026425201445817947, 0.021758688613772392, -0.04242464527487755, -0.024030765518546104, -0.09445839375257492, 0.018902499228715897, 0.008642330765724182, 0.016880415380001068, -0.02279302477836609, 0.003855446819216013, -0.015945201739668846, 0.03807928413152695, -0.0357886403799057, -0.005106959026306868, 0.06174703314900398, 0.0011668726801872253, 0.004613444209098816, 0.0029690954834222794, -0.07260627299547195, -0.0026716510765254498, -0.004246138036251068, -0.04462965950369835, 0.012537164613604546, -0.00023729211534373462, 0.05268826708197594, 0.022427992895245552, 0.0262017622590065, -0.029766129329800606, -0.03623948618769646, 0.07552993297576904, 0.002925276290625334, -0.010636026971042156, 0.04551492631435394, -0.013861940242350101, 0.05164633318781853, 0.04916997253894806, 0.0008000392699614167, -0.014016936533153057, -0.00329977017827332, -0.040907714515924454, -0.06061583757400513, 0.054774604737758636, -0.007812895812094212, -0.015521908178925514, -0.00967929046601057, 0.039764437824487686, -0.0038254274986684322, -0.05067194998264313, -0.05186639726161957, 0.02459076978266239, -0.039226874709129333, -0.011553344316780567, -0.004703384358435869, -0.003597787581384182, -0.04331180825829506, 0.051038242876529694, -0.013393782079219818, 0.01638670265674591, 0.05853230506181717, -0.020447317510843277, 0.002690922236070037, 0.011664945632219315, 0.048204127699136734, 0.08095183223485947, 0.026354551315307617, 0.017251182347536087, 0.04728741571307182, -0.038995977491140366, -0.02970745787024498, -0.007567092776298523, -0.03953497111797333, -0.021503856405615807, -0.020742639899253845, 0.020238377153873444, 0.07110030204057693, -0.018664885312318802, 0.06318309903144836, 0.0007250560447573662, 0.019813984632492065, 0.013436239212751389, 0.040121279656887054, 0.028967896476387978, 0.06956946849822998, 0.0233186986297369, 0.01793295331299305, 0.0065328096970915794, -0.03167639300227165, 0.023801477625966072, -0.043750014156103134, -0.027500523254275322, 0.0328998826444149, 0.012705767527222633, 0.006715032737702131, 0.00046022102469578385, 0.02124757319688797, 0.07874888181686401, -0.02017228864133358, -0.017108799889683723, 0.02223249338567257, 0.04534600302577019, -0.004551547579467297, 0.03488900884985924, 0.00247465749271214, 0.002599285449832678, 0.015089578926563263, -0.016832688823342323, -0.023244615644216537, 0.010223811492323875, -0.019701721146702766, 0.058688048273324966, -0.013963382691144943, 0.006836069747805595, 0.021225133910775185, -0.02075769007205963, -0.033827561885118484, -0.031377580016851425, -0.03878777474164963, -0.0418049581348896, -0.02381843328475952, -0.012434299103915691, -0.02536415122449398, -0.024932779371738434, -0.007891437038779259, -0.04602893069386482, -0.021923618391156197, -0.0018904804019257426, -0.010561732575297356, -0.06415263563394547, -0.018560418859124184, 0.005877968389540911, -0.005433277226984501, 0.004089903086423874, 0.009008749388158321, 0.04254111275076866, 0.010028538294136524, 0.015764528885483742, -0.02095283940434456, 0.02742023393511772, 0.021529948338866234, -0.01784455217421055, -0.0006499430746771395, -0.08521384745836258, 0.03895794227719307, 0.036255475133657455, 0.03224208205938339, -0.05992163345217705, 0.05671584606170654, 0.004867341369390488, -0.02631974034011364, 0.05783809721469879, -0.023724164813756943, 0.025507362559437752, -0.030531220138072968, -0.03459304943680763, -0.0026362526696175337, 0.016424955800175667, 0.05048217996954918, -0.025032415986061096, 0.0975058302283287, 0.05205557122826576, 0.006790899205952883, -0.0524715930223465, -0.010012119077146053, -0.02589903026819229, 0.015492988750338554, -0.02926814742386341, 0.004399155266582966, -0.0017156776739284396, -0.07399331033229828, -0.014285465702414513, 0.015445714816451073, -0.021676041185855865, -0.052399396896362305, 0.0395628958940506, 0.010257993824779987, -0.04206344485282898, 0.01675236225128174, -0.03338271379470825, 0.00477600796148181, -0.028685003519058228, -0.04189212620258331, -0.006395306903868914, 0.032932981848716736, -0.003949349280446768, -0.0034367828629910946, 0.022505445405840874, -0.037624139338731766, -0.013632849790155888, -0.017274945974349976, 0.051895689219236374, 0.03977145627140999, -0.0018264725804328918, 0.004010798875242472 ]
[ -0.09965111315250397, -0.01673159748315811, -0.005967930890619755, -0.03635136038064957, 0.036091431975364685, -0.05818305164575577, -0.03362705931067467, 0.02228941209614277, 0.009526226669549942, -0.030544795095920563, 0.014249091036617756, -0.027675695717334747, -0.025469128042459488, -0.06770041584968567, 0.07181251049041748, 0.013785704039037228, 0.0038769813254475594, -0.026379045099020004, -0.01595841720700264, 0.029058830812573433, 0.03350851684808731, -0.011279398575425148, -0.02448142133653164, -0.041252072900533676, 0.02988923341035843, 0.059088896960020065, 0.03886370360851288, 0.01805194281041622, -0.0005466605070978403, -0.20257656276226044, 0.04062202200293541, 0.00330947944894433, -0.006278135348111391, -0.06867117434740067, 0.03737524151802063, 0.08265785872936249, 0.021630825474858284, -0.022780336439609528, 0.0024280850775539875, 0.03108733706176281, 0.015043814666569233, 0.011598978191614151, -0.06196499988436699, -0.036895617842674255, 0.03170556202530861, -0.03484918177127838, -0.007417893502861261, -0.03638110309839249, -0.005678548011928797, -0.00865000206977129, -0.04451427981257439, 0.0328732430934906, 0.01624603569507599, -0.03820177912712097, -0.005206199828535318, 0.009237028658390045, 0.03623335435986519, 0.04818076267838478, 0.0157588142901659, 0.028861261904239655, -0.01128473412245512, -0.009110158309340477, -0.14842106401920319, 0.0755702406167984, 0.04689709469676018, 0.03232739493250847, -0.033170461654663086, -0.01819642074406147, -0.044739626348018646, 0.08359343558549881, -0.008725193329155445, -0.02727733738720417, -0.030211523175239563, 0.07848164439201355, -0.013084383681416512, -0.06065031886100769, 0.017727172002196312, -0.00438412930816412, 0.014092621393501759, -0.0344109907746315, -0.04025736078619957, -0.016025720164179802, -0.054501011967659, -0.01700449176132679, -0.04379650950431824, 0.025611110031604767, 0.007689253427088261, 0.09013756364583969, 0.025630546733736992, 0.03615095093846321, 0.019587503746151924, -0.01525377668440342, 0.030090393498539925, 0.0024899295531213284, -0.0770147442817688, 0.041194044053554535, -0.0006300719687715173, -0.0011084803845733404, -0.01897062547504902, 0.43380627036094666, -0.00782209262251854, 0.0026194241363555193, 0.023517465218901634, 0.03753277286887169, 0.04887448623776436, 0.01951930671930313, 0.024484500288963318, -0.01629452221095562, 0.008568054996430874, -0.04348859190940857, 0.015048038214445114, 0.013652460649609566, 0.08418840914964676, -0.095601886510849, 0.04228607565164566, -0.005872450768947601, 0.016523323953151703, -0.022390997037291527, -0.02550637163221836, 0.010430090129375458, -0.0055740042589604855, 0.033639028668403625, 0.04648211970925331, 0.012464410625398159, -0.0036902495194226503, -0.01725505106151104, 0.05271950364112854, 0.046614017337560654, 0.009795435704290867, 0.014167350716888905, 0.05070255696773529, -0.04015234112739563, -0.03491552174091339, 0.0013959472998976707, 0.001542267156764865, 0.04483235999941826, 0.010882953181862831, -0.025828838348388672, -0.013230065815150738, 0.013315510004758835, -0.007227609865367413, -0.005014481022953987, 0.023141901940107346, -0.053256791085004807, -0.010314484126865864, 0.08290732651948929, 0.014039043337106705, 0.00334226805716753, -0.006656051147729158, -0.02991344965994358, -0.051460251212120056, -0.007212360389530659, -0.0017169740749523044, -0.08232814818620682, 0.0006439838325604796, 0.023884214460849762, 0.036596573889255524, -0.03411697968840599, -0.06080174446105957, 0.011289906688034534, -0.008216051384806633, -0.04157870635390282, -0.05443764850497246, 0.024433104321360588, 0.020199237391352654, -0.08765944093465805, -0.01480878796428442, 0.019219301640987396, 0.038915373384952545, -0.04664057493209839, -0.0163105558604002, -0.006480359472334385, -0.021419381722807884, -0.037261005491018295, 0.02619798295199871, -0.03867625072598457, -0.014607695862650871, 0.03261449187994003, 0.036534521728754044, -0.011046258732676506, 0.023890862241387367, -0.019898483529686928, -0.03815925866365433, 0.001188196474686265, -0.033912744373083115, -0.10883717238903046, -0.0604822151362896, 0.010970174334943295, -0.03674697503447533, -0.013560321182012558, -0.04104476794600487, 0.004255861043930054, -0.07328435778617859, 0.06403777003288269, 0.0014247470535337925, -0.019464736804366112, -0.013407659716904163, 0.01213541254401207, 0.0023183380253612995, -0.0456622950732708, 0.0215372946113348, 0.09264709055423737, -0.025554485619068146, 0.02641344629228115, -0.06593463569879532, 0.039011094719171524, 0.03332388028502464, -0.009123588912189007, 0.05713789165019989, 0.013841546140611172, -0.0520598329603672, 0.000307440321194008, 0.027096658945083618, 0.04728168621659279, 0.004623443353921175, 0.008823450654745102, -0.030393384397029877, 0.031650640070438385, 0.018653567880392075, 0.041766464710235596, 0.011885132640600204, -0.011446469463407993, -0.019484849646687508, -0.3556954860687256, -0.024990547448396683, -0.009304414503276348, -0.015216916799545288, 0.024381248280405998, -0.03499777615070343, -0.0021623217035084963, -0.018890833482146263, -0.004421411547809839, -0.01726463995873928, 0.09650760889053345, -0.03373788297176361, 0.04010152071714401, -0.07071509212255478, 0.004014127887785435, 0.029518553987145424, -0.03422548249363899, -0.04567085951566696, 0.0030519196297973394, 0.024763816967606544, -0.016737431287765503, -0.02171497233211994, -0.039041668176651, -0.03507128357887268, -0.030111761763691902, -0.010886729694902897, 0.08292032778263092, 0.04903550446033478, 0.08590208739042282, -0.05350557342171669, 0.031007081270217896, 0.010055102407932281, 0.012628942728042603, -0.11350460350513458, 0.014331063255667686, -0.0029961438849568367, 0.03897172957658768, 0.0021203330252319574, 0.0029121527913957834, -0.009338301606476307, -0.05782223120331764, 0.03870053216814995, -0.05105135962367058, -0.04912421479821205, -0.02199900709092617, 0.01968388259410858, -0.021088512614369392, 0.005321007687598467, 0.011177191510796547, 0.03363597393035889, 0.018561307340860367, 0.0234729815274477, -0.0153964227065444, 0.019482754170894623, 0.011823972687125206, -0.025734661146998405, -0.0740283727645874, 0.012668436393141747, 0.016111288219690323, -0.015606781467795372, 0.06444239616394043, 0.0808487981557846, 0.008946454152464867, -0.04627331718802452, 0.01722370646893978, -0.003371527651324868, -0.014723313972353935, -0.0010146688437089324, 0.05390915647149086, -0.015794118866324425, -0.009589558467268944, 0.09182184934616089, -0.00136031792499125, 0.025045795366168022, 0.01872638240456581, 0.018236536532640457, -0.016515087336301804, -0.019950535148382187, -0.03623712807893753, 0.008474045433104038, -0.0039011596236377954, -0.028925279155373573, 0.021956805139780045, -0.016481658443808556, -0.03128896281123161, 0.03890740126371384, -0.019327964633703232, -0.030789118260145187, 0.07096509635448456, 0.010948045179247856, -0.018616536632180214, 0.008350243791937828, -0.02054854854941368, -0.06034879758954048, 0.09519696980714798, 0.018169520422816277, -0.2849646508693695, 0.01744760386645794, 0.03400823473930359, 0.04497000575065613, 0.00031488947570323944, -0.004128563683480024, 0.037926048040390015, -0.02363666146993637, -0.0018352917395532131, 0.025472259148955345, -0.007715229410678148, 0.01879909634590149, 0.001659038127399981, 0.021325889974832535, 0.012201388366520405, -0.00767751969397068, 0.06165646016597748, -0.005610065069049597, -0.025497810915112495, -0.018331460654735565, 0.007878277450799942, -0.0015852414071559906, 0.17567424476146698, -0.013371366076171398, 0.005924421362578869, 0.0014005210250616074, -0.002514505060389638, 0.0422154925763607, 0.07246051728725433, 0.035063888877630234, -0.014285584911704063, 0.018457770347595215, 0.01645730808377266, 0.0001708533091004938, 0.042922135442495346, -0.034354135394096375, -0.00022377319692168385, 0.024971969425678253, 0.02125050686299801, 0.0009149953839369118, -0.043766580522060394, 0.029382897540926933, -0.016781337559223175, 0.008752139285206795, 0.04595239460468292, -0.03124728426337242, -0.017689881846308708, -0.0121467811986804, -0.046492621302604675, 0.025957882404327393, -0.03563464805483818, -0.03043833002448082, 0.01684175245463848, 0.017669618129730225, 0.010134725831449032, 0.0677112489938736, 0.03420339524745941, -0.00797528401017189, 0.004757164046168327, 0.02344624698162079, -0.0025826217606663704, -0.04361619055271149, 0.1448041796684265, 0.04195564612746239, 0.010219602845609188 ]
[ -0.017433473840355873, 0.02584027871489525, -0.023725733160972595, -0.022716669365763664, 0.008934173732995987, 0.018028859049081802, 0.008870333433151245, 0.03797491267323494, -0.01636941358447075, -0.009376417845487595, -0.010222061537206173, 0.014667957089841366, 0.03466321900486946, -0.0397779680788517, 0.003944458439946175, -0.03439166396856308, 0.02804517187178135, -0.015597729943692684, 0.042704418301582336, -0.04395325854420662, -0.009667830541729927, 0.015983445569872856, 0.019821858033537865, -0.01831953227519989, -0.009286300279200077, 0.026789240539073944, -0.048341456800699234, -0.005509425885975361, 0.017673349007964134, -0.14291606843471527, -0.014003989286720753, -0.03355652838945389, -0.020075811073184013, -0.032622478902339935, -0.0013240425614640117, 0.01591314747929573, 0.006803825031965971, -0.007976946420967579, 0.008223001845180988, 0.017852965742349625, 0.04799695685505867, -0.02633284404873848, -0.030205771327018738, 0.02498411014676094, -0.00684027886018157, -0.012961320579051971, -0.036993466317653656, -0.021807223558425903, -0.011183911934494972, -0.022444484755396843, -0.019880611449480057, 0.011301212944090366, 0.02945043332874775, -0.0056620375253260136, 0.0042235953733325005, 0.00009795838559512049, -0.016702981665730476, 0.0025510487612336874, 0.02858675643801689, 0.006428560242056847, -0.055046916007995605, 0.0014125329907983541, -0.02074027992784977, -0.029871387407183647, 0.008089021779596806, -0.05477133020758629, -0.016660215333104134, 0.0009630643762648106, -0.008630357682704926, 0.01663755066692829, -0.014683034271001816, 0.007997892796993256, -0.034477025270462036, 0.012021570466458797, -0.005026543512940407, 0.024132762104272842, 0.020165445283055305, 0.01371921319514513, -0.010124390944838524, -0.008840152062475681, -0.05636530742049217, 0.013811081647872925, 0.0076287551783025265, 0.02051571197807789, -0.023600146174430847, 0.007566594984382391, 0.01832013577222824, 0.012120225466787815, 0.021823078393936157, 0.015734247863292694, -0.017780812457203865, 0.02579416334629059, -0.0064483084715902805, 0.026826981455087662, -0.07383233308792114, 0.013847819529473782, -0.022661171853542328, -0.012144060805439949, -0.00612187385559082, 0.8459224104881287, -0.017549697309732437, 0.0032941908575594425, 0.015448673628270626, 0.01962212100625038, 0.007691369391977787, -0.03803528845310211, -0.0044822534546256065, -0.00510522210970521, 0.02023882046341896, -0.0601799301803112, 0.004918756429105997, -0.029700355604290962, 0.00015313588664866984, 0.010117785073816776, 0.00673186918720603, 0.017310265451669693, 0.029948053881525993, -0.04869787395000458, 0.00305379880592227, -0.02979515865445137, 0.036645498126745224, 0.017717445269227028, 0.004903190303593874, 0.010381254367530346, -0.006088374648243189, -0.18999259173870087, 0.0048321629874408245, -7.740728013132675e-33, 0.020084477961063385, -0.033895403146743774, 0.006125808693468571, -0.012238331139087677, 0.02413860894739628, 0.007308813743293285, -0.009906083345413208, 0.03954296559095383, 0.010059990920126438, -0.029241131618618965, 0.0007547523709945381, -0.019291942939162254, 0.00969118345528841, -0.020615480840206146, 0.027078574523329735, -0.03106188029050827, 0.014233586378395557, 0.04348534718155861, 0.011766603216528893, 0.009617824107408524, 0.009786213748157024, 0.010375232435762882, 0.005240017082542181, 0.035879313945770264, 0.01262319553643465, 0.0086418017745018, -0.009543279185891151, 0.003022029995918274, 0.015061486512422562, -0.04076649248600006, 0.004630105569958687, 0.015054329298436642, -0.02414662390947342, -0.0360247977077961, -0.017296820878982544, -0.04660947620868683, -0.015942685306072235, 0.026538148522377014, -0.028442135080695152, -0.005611656699329615, -0.043823111802339554, 0.033227454870939255, -0.020185228437185287, 0.014968088828027248, -0.025011293590068817, -0.037409938871860504, -0.011974240653216839, 0.026638545095920563, 0.014244748279452324, 0.0037500059697777033, 0.02345765382051468, 0.0015468428609892726, 0.04496940225362778, -0.019080495461821556, -0.0051642293110489845, 0.05901285260915756, -0.013840247876942158, 0.017092591151595116, 0.010150406509637833, 0.002466789446771145, 0.03068144991993904, -0.014336030930280685, -0.013176582753658295, 0.03442158177495003, 0.03156222030520439, -0.023267701268196106, 0.013724178075790405, 0.03557460755109787, 0.006587771233171225, 0.04324896261096001, -0.051337990909814835, -0.019068164750933647, 0.004912059288471937, 0.010390612296760082, 0.03890356048941612, -0.014091845601797104, 0.005716048646718264, 0.016897721216082573, 0.001638739719055593, 0.02154766581952572, 0.025205932557582855, -0.01651068590581417, -0.01567278616130352, -0.03700236976146698, -0.01917535811662674, -0.00032895736512728035, 0.03038828819990158, -0.005372937768697739, -0.025592371821403503, 0.02939053252339363, 0.01635356992483139, -0.005117624998092651, 0.04275284335017204, 0.014222311787307262, -0.03841599076986313, 7.72278703060325e-33, -0.0034655819181352854, 0.01910942606627941, -0.02445145696401596, 0.008364684879779816, 0.01614030823111534, 0.020246701315045357, 0.0760243758559227, 0.003464938374236226, -0.04606853425502777, 0.039191510528326035, 0.019367778673768044, 0.006454315967857838, -0.03250598534941673, 0.040253568440675735, 0.021493468433618546, -0.004777221940457821, -0.001102717244066298, 0.017184536904096603, 0.024704709649086, 0.004589584656059742, -0.0019521071808412671, -0.018643969669938087, -0.024650024250149727, 0.0067090182565152645, 0.007413688115775585, 0.04395671561360359, -0.013981427997350693, 0.0045791612938046455, -0.04288490489125252, -0.023815441876649857, -0.023206593468785286, -0.0036042057909071445, 0.007054994814097881, 0.016667116433382034, -0.040701210498809814, 0.036634378135204315, 0.0018041556468233466, 0.002567209070548415, 0.01666191779077053, -0.018344124779105186, 0.021482041105628014, -0.0261002779006958, -0.01241113431751728, 0.01328856311738491, 0.009752457030117512, 0.023287048563361168, 0.010435584932565689, -0.02058793418109417, -0.05703054741024971, 0.020413624122738838, -0.008008094504475594, 0.03946605324745178, 0.04246126860380173, 0.03767532855272293, 0.011645250022411346, -0.030597148463129997, -0.010642153210937977, 0.023428404703736305, -0.02406351827085018, 0.020676959306001663, 0.025241104885935783, -0.007398981600999832, -0.01053265668451786, 0.06258576363325119, -0.014045936986804008, -0.04877449944615364, -0.028155352920293808, -0.01879080757498741, -0.014944794587790966, 0.0010577375069260597, -0.01297433115541935, 0.014279693365097046, -0.035212721675634384, 0.01343682873994112, 0.02196774259209633, -0.02342885360121727, 0.0007087981211952865, -0.008126119151711464, -0.03250745311379433, 0.03558739647269249, 0.0031222517136484385, -0.003002885729074478, -0.02085057459771633, -0.002482549287378788, 0.011876588687300682, 0.007887272164225578, -0.011970018036663532, -0.001921190763823688, 0.04899078607559204, 0.012731132097542286, -0.01020122691988945, -0.019733721390366554, -0.024130122736096382, 0.018355567008256912, -0.012197557836771011, -1.3169749735197911e-8, 0.015160978771746159, 0.014320503920316696, -0.014277447946369648, 0.032131873071193695, 0.04773213341832161, 0.01533858198672533, -0.057118456810712814, -0.023312045261263847, -0.03633575141429901, 0.005565944593399763, -0.004545895848423243, -0.025228891521692276, 0.028763771057128906, 0.001432543620467186, 0.0281321220099926, -0.034106798470020294, -0.005499834194779396, 0.009882374666631222, 0.035936228930950165, 0.021739689633250237, -0.008471102453768253, 0.06942353397607803, -0.009044995531439781, 0.0018327276920899749, -0.0011866544373333454, -0.01075801532715559, 0.027181759476661682, -0.08141603320837021, -0.026315806433558464, 0.016083519905805588, -0.008142014965415001, -0.022989077493548393, -0.030575860291719437, -0.00848881620913744, -0.006228258833289146, -0.016862431541085243, -0.024721482768654823, -0.010570405051112175, 0.007875584065914154, 0.002533071441575885, -0.016582103446125984, 0.012087446637451649, -0.011786365881562233, -0.027742573991417885, -0.003931031096726656, 0.02376113086938858, -0.03311033919453621, 0.005272679030895233, 0.014713522046804428, -0.02199181355535984, 0.034310244023799896, -0.007169289514422417, 0.03686436265707016, -0.006311312783509493, 0.008236749097704887, 0.02256656251847744, 0.03416235372424126, -0.048499010503292084, -0.021401604637503624, -0.004585063084959984, 0.03397797793149948, 0.013898654840886593, 0.0055762724950909615, -0.014711604453623295 ]
upstart-job-getting-stuck-in-the-startkilled-state
https://markhneedham.com/blog/2012/09/29/upstart-job-getting-stuck-in-the-startkilled-state
false
2012-09-16 13:35:56
zsh: Don't verify substituted history expansion a.k.a. disabling histverify
[ "zsh" ]
[ "Shell Scripting" ]
I use http://www.zsh.org/[zsh] on my Mac terminal and in general I prefer it to bash but it has an annoying default setting whereby when you try to repeat a command via substituted history expansion it asks you to verify that. For example let's say by mistake I try to vi into a directory rather than cd'ing into it: [source,text] ---- vi ~/.oh-my-zsh ---- If I try to cd into the directory by using '!$' to grab the last argument from the previous command it will make me confirm that I want to do this: [source,text] ---- $ cd !$ $ cd ~/.oh-my-zsh ---- While reading another one of Peter Krumins' blog posts, this time about http://www.catonmat.net/blog/the-definitive-guide-to-bash-command-line-history/[bash command line history], I came to learn that this is because a setting called +++<cite>+++http://wiki.bash-hackers.org/internals/shell_options#histverify[histverify]+++</cite>+++ has been enabled. ____ histverify Allow to review a history substitution result by loading the resulting line into the editing buffer, rather than directly executing it. ____ I found http://stackoverflow.com/questions/11917567/how-to-view-default-zsh-settings-histsize-savehist[a thread on StackOverflow which explains all the zsh settings in more detail] but for my purposes I needed to run the following command to disable +++<cite>+++histverify+++</cite>+++: [source,text] ---- unsetopt histverify ---- I also put that into my +++<cite>+++~/.zshrc+++</cite>+++ file so it will carry across to any new terminal sessions that I open.
null
null
[ -0.00041568116284906864, 0.030321741476655006, -0.035751089453697205, 0.009956305846571922, 0.10062394291162491, 0.0003477003483567387, 0.01583263650536537, 0.043588537722826004, 0.03577931970357895, -0.03760353848338127, -0.013909637928009033, 0.02619563601911068, -0.049398377537727356, -0.000009102623153012246, -0.016116509214043617, 0.04312113672494888, 0.0852711871266365, -0.02357039973139763, -0.01406885962933302, 0.01901380345225334, 0.026383263990283012, 0.05969952046871185, -0.0049367607571184635, -0.010288173332810402, -0.0017074180068448186, 0.0003521708131302148, 0.010827820748090744, -0.006880804896354675, -0.06457481533288956, 0.014289841055870056, 0.021027307957410812, -0.03700684383511543, 0.008172118104994297, -0.022648179903626442, -0.0005084645817987621, -0.020567981526255608, -0.024082433432340622, -0.0295425858348608, 0.003404230112209916, 0.013272885233163834, -0.06873908638954163, 0.03072621487081051, -0.0027597444131970406, 0.0008334851008839905, -0.012782838195562363, 0.02597401663661003, -0.03308721259236336, 0.03422222658991814, -0.045672621577978134, -0.01648334227502346, -0.042837079614400864, 0.030386723577976227, -0.004738685209304094, -0.036617767065763474, 0.018043184652924538, 0.03156394883990288, 0.012774023227393627, -0.08258062601089478, 0.017650427296757698, -0.009593323804438114, 0.007460660766810179, 0.011572590097784996, 0.019994711503386497, 0.04689257591962814, 0.01834840700030327, -0.02318522520363331, 0.01804812066257, 0.018451357260346413, -0.039176590740680695, -0.006295140367001295, 0.02033938281238079, 0.034689970314502716, -0.016742965206503868, -0.01604457013309002, 0.021911589428782463, 0.004089396446943283, -0.002104517538100481, 0.03772985190153122, 0.013466520234942436, 0.05856030806899071, -0.04296828806400299, 0.01363403256982565, 0.01954289898276329, 0.012045574374496937, 0.0009277294739149511, -0.07088490575551987, -0.01550234667956829, -0.01385632436722517, -0.03058282844722271, 0.04740520194172859, -0.010639380663633347, -0.024167489260435104, 0.027024108916521072, 0.003980003297328949, 0.018513090908527374, 0.003182908520102501, 0.009282447397708893, -0.0011622976744547486, 0.01953248307108879, 0.011944892816245556, -0.0744931772351265, 0.014160429127514362, 0.0029878171626478434, 0.020519955083727837, -0.08262328803539276, 0.019481446593999863, -0.012789943255484104, 0.007425783202052116, 0.007840359583497047, -0.03426732122898102, -0.020915750414133072, 0.012693115510046482, 0.027350090444087982, 0.00905513484030962, -0.08344153314828873, 0.053296640515327454, 0.00892407912760973, -0.026597315445542336, 0.030606038868427277, 0.017475033178925514, 0.025828124955296516, 0.06401894241571426, 0.0052034808322787285, 0.05218205600976944, 0.04047087952494621, 0.03632066398859024, 0.0021354255732148886, 0.02835194766521454, -0.026195939630270004, -0.0669403225183487, -0.001382867805659771, 0.04952380806207657, 0.014179029501974583, -0.004566130228340626, -0.026204098016023636, -0.019031669944524765, -0.009708883240818977, -0.022870514541864395, 0.06640113145112991, 0.03452693670988083, 0.002157866256311536, -0.016347017139196396, -0.029697712510824203, -0.025995904579758644, 0.018883293494582176, -0.015925878658890724, 0.021828871220350266, -0.023902473971247673, -0.03658454865217209, 0.012624287977814674, 0.012728133238852024, 0.022579509764909744, 0.05281141400337219, -0.03406461328268051, -0.008959983475506306, 0.08321810513734818, 0.033722929656505585, 0.013875638134777546, -0.014030824415385723, -0.0003027200873475522, 0.03988436982035637, 0.06236103177070618, 0.022699739784002304, 0.07945029437541962, -0.015273544937372208, -0.039123646914958954, -0.04228353127837181, 0.03942054510116577, -0.013711094856262207, -0.00499581266194582, -0.03748832643032074, -0.04721033573150635, 0.07777433842420578, -0.005122398491948843, 0.03858762979507446, 0.052784621715545654, 0.0746193453669548, 0.03320378437638283, 0.03429890051484108, -0.008397671394050121, -0.08415352553129196, 0.05487324297428131, 0.0008128531044349074, 0.06834886223077774, 0.048458728939294815, 0.0015977229923009872, 0.07636067271232605, -0.004009915050119162, 0.06522372364997864, 0.02163383737206459, -0.09204787015914917, -0.08226390182971954, -0.009399531409144402, 0.017342545092105865, 0.07275858521461487, -0.01377200148999691, -0.01604757271707058, 0.06537687033414841, 0.025176221504807472, 0.038523636758327484, 0.026640895754098892, -0.031148096546530724, 0.05423761159181595, -0.07915693521499634, -0.04683922976255417, -0.0033624335192143917, 0.018169211223721504, -0.022774910554289818, 0.00009763395064510405, 0.013413289561867714, -0.01491784118115902, 0.028602736070752144, 0.0036022390704602003, -0.01311537530273199, 0.0455697625875473, 0.04492613673210144, 0.016580894589424133, -0.036314599215984344, -0.009340756572782993, -0.028515009209513664, 0.0024688085541129112, -0.02111256681382656, -0.02441815845668316, -0.004676860757172108, -0.024274922907352448, 0.11401213705539703, 0.03527013957500458, -0.0199460219591856, -0.011147432960569859, 0.026555638760328293, -0.008920223452150822, -0.02264172025024891, -0.015400470234453678, -0.004957584664225578, 0.008771995082497597, 0.014404423534870148, -0.040059372782707214, -0.008647214621305466, 0.005970627535134554, -0.00523216649889946, 0.0002651700342539698, 0.053993307054042816, -0.014607186429202557, 0.03386342525482178, -0.013762928545475006, -0.026116302236914635, -0.0239348653703928, -0.03446260839700699, -0.0761934220790863, -0.03139820322394371, 0.030976703390479088, -0.013472583144903183, 0.047239940613508224, -0.0538550466299057, -0.0090477941557765, -0.016880705952644348, -0.06873978674411774, 0.032984454184770584, 0.004834262188524008, 0.053893037140369415, -0.039085038006305695, 0.0329599529504776, -0.03689689189195633, 0.024484887719154358, -0.0056375726126134396, -0.030487172305583954, -0.057668350636959076, 0.019099880009889603, -0.024491259828209877, -0.017299572005867958, -0.005460937973111868, 0.021962374448776245, 0.0253960769623518, -0.04089224711060524, 0.0031493566930294037, 0.01635626144707203, 0.027647601440548897, 0.011256322264671326, -0.000013235014193924144, -0.029831357300281525, 0.0023937306832522154, 0.04227671027183533, -0.030769918113946915, -0.0009002072620205581, 0.0012224339880049229, -0.047166235744953156, 0.030615923926234245, -0.04139043763279915, -0.031560417264699936, -0.014195463620126247, 0.001543307094834745, 0.011043566279113293, -0.008566009812057018, 0.05008489266037941, 0.044850125908851624, 0.04122678190469742, 0.022738425061106682, 0.01869223266839981, 0.0038664601743221283, 0.03853343427181244, -0.01670442894101143, -0.009750980883836746, 0.0192598607391119, 0.021833552047610283, -0.01444892305880785, -0.037164513021707535, -0.001787002314813435, -0.034959472715854645, -0.27614760398864746, 0.02589992992579937, -0.02729477919638157, -0.015102666802704334, 0.01095525547862053, -0.034559156745672226, -0.02187161147594452, -0.05762190371751785, -0.014276858419179916, 0.024188891053199768, -0.03303784877061844, -0.039754126220941544, -0.004558234009891748, 0.024142764508724213, -0.02772277221083641, 0.005783686414361, 0.028423011302947998, -0.03301634639501572, -0.02752094715833664, -0.0017745918594300747, -0.0034446774516254663, -0.04550907760858536, 0.026941994205117226, 0.04531101509928703, 0.010108379647135735, 0.07214772701263428, -0.05724182724952698, 0.07452543824911118, -0.043695028871297836, -0.0435006320476532, -0.006975513882935047, -0.03606846556067467, -0.027706177905201912, 0.03363896161317825, -0.028934296220541, 0.01188858412206173, 0.021876009181141853, -0.006640153005719185, 0.04782574251294136, 0.013768819160759449, -0.007849075831472874, -0.030944636091589928, 0.017838699743151665, -0.006769074592739344, 0.0751415267586708, -0.03588015213608742, -0.05270664766430855, -0.02345282956957817, -0.025153804570436478, 0.08257601410150528, -0.04966316372156143, -0.038358017802238464, -0.033369410783052444, 0.05107409507036209, -0.008728892542421818, -0.010880699381232262, -0.024638421833515167, -0.022792352363467216, -0.02971879206597805, -0.015905892476439476, -0.03534337878227234, -0.012565283104777336, -0.039436548948287964, -0.06042977049946785, 0.016362041234970093, -0.04664108157157898, -0.0649028792977333, -0.013951802626252174, 0.05635620281100273, 0.0500267818570137, -0.0339386947453022, 0.024325620383024216, -0.02478490024805069, -0.09968490153551102, -0.0186807569116354, -0.05276026576757431, -0.06726362556219101, -0.0010591128375381231, 0.008984868414700031, 0.04969656094908714, -0.054009851068258286, -0.0342235267162323, 0.027982616797089577, 0.004975178744643927, -0.010612701997160912, -0.026646200567483902, 0.014712068252265453, -0.0005100522539578378, -0.015909159556031227, -0.015637725591659546, 0.06681311130523682, -0.04930850490927696, -0.06660258024930954, 0.00799624528735876, -0.004653808660805225, 0.017252590507268906, 0.0013336853589862585, -0.01960967481136322, 0.0427800714969635, 0.02595970593392849, 0.06233849376440048, -0.03632863238453865, 0.014886612072587013, -0.059725381433963776, -0.020604470744729042, -0.018700558692216873, -0.051396261900663376, 0.046072229743003845, 0.016538117080926895, 0.016053665429353714, -0.026779457926750183, -0.01679062284529209, 0.02421479858458042, -0.06510361284017563, -0.04596381634473801, 0.0030158874578773975, 0.02145691215991974, 0.014536009170114994, 0.05441763997077942, -0.011327702552080154, -0.03561151772737503, -0.007361138705164194, 0.0029359187465161085, -0.030937494710087776, -0.03685203939676285, -0.028624936938285828, -0.006736121140420437, 0.004609598312526941, 0.02425876259803772, 0.005055864341557026, -0.030289756134152412, -0.00043980247573927045, 0.047262582927942276, -0.00581678282469511, 0.035807523876428604, -0.03623473271727562, -0.018662402406334877, -0.020106853917241096, -0.013301008380949497, 0.006518872920423746, -0.07404394447803497, 0.014000208117067814, -0.00032892756280489266, 0.04457731544971466, 0.04122749716043472, 0.0043717119842767715, 0.04384555295109749, -0.0029182543512433767, 0.018452411517500877, 0.001568657229654491, 0.0007875422015786171, -0.05591302365064621, 0.018138885498046875, -0.0038698420394212008, -0.026411794126033783, -0.0033409791067242622, 0.0327087864279747, -0.01312680821865797, -0.029058381915092468, -0.044478639960289, 0.011038091965019703, -0.05664781481027603, 0.011947210878133774, 0.008654918521642685, -0.04063764959573746, 0.05320031940937042, -0.007491790223866701, 0.040075693279504776, 0.027862228453159332, 0.014080002903938293, 0.011433226056396961, 0.04306909069418907, -0.059428438544273376, -0.02169027365744114, -0.0028905952349305153, -0.026988200843334198, 0.01399135496467352, 0.04984603822231293, 0.02755279652774334, -0.0066975187510252, 0.015363381244242191, -0.01006824430078268, 0.003075998043641448, 0.03533134236931801, 0.05439985170960426, 0.0022012086119502783, -0.006961609702557325, 0.01671718619763851, -0.019777974113821983, -0.06694813072681427, -0.03011147864162922, -0.0006753652123734355, -0.01807163842022419, -0.03182090446352959, -0.022558119148015976, -0.06884054839611053, 0.013889853842556477, 0.028513148427009583, 0.00823598075658083, -0.002779941540211439, -0.0032944115810096264, -0.009950694628059864, -0.05714526027441025, 0.011495181359350681, 0.08055542409420013, -0.03445611894130707, 0.005329679232090712, -0.006803968921303749, 0.025424662977457047, -0.006355544086545706, 0.024211693555116653, -0.06407223641872406, 0.002123034093528986, -0.013017388060688972, 0.056437503546476364, -0.05216802656650543, -0.03398266062140465, -0.014428322203457355, -0.003157289233058691, -0.012418408878147602, -0.0021774943452328444, -0.013321672566235065, 0.01171965803951025, 0.03320036455988884, -0.03677654638886452, -0.017268385738134384, -0.019773142412304878, -0.000013189541277824901, 0.05635108798742294, -0.010904191061854362, 0.03744090348482132, -0.004951897542923689, 0.07636329531669617, 0.03430747985839844, -0.010641916655004025, -0.01652224361896515, 0.00022066329256631434, 0.015505368821322918, -0.0739259347319603, 0.045128628611564636, 0.004530893638730049, -0.00950505118817091, -0.0598779171705246, 0.01112502533942461, -0.007417784072458744, -0.032545365393161774, -0.023547517135739326, -0.01583128422498703, 0.023252543061971664, 0.07618626207113266, -0.0022816979326307774, 0.016326528042554855, -0.023625768721103668, -0.06447771191596985, 0.0406063050031662, -0.051667798310518265, -0.04828569293022156, -0.022077394649386406, -0.048715509474277496, 0.05686600133776665, 0.027008799836039543, 0.06052742898464203, -0.056716930121183395, 0.038587071001529694, 0.005643282551318407, 0.009408562444150448, 0.03779860585927963, 0.014094593934714794, 0.015553510747849941, -0.04594054073095322, -0.04097834601998329, -0.11354929953813553, 0.023174721747636795, 0.018775617703795433, -0.01785382814705372, -0.0027266202960163355, 0.05057959258556366, -0.024398211389780045, 0.03443211317062378, -0.05100761726498604, -0.027446303516626358, 0.023911122232675552, -0.002426247810944915, 0.010005030781030655, 0.02448982186615467, -0.062217243015766144, 0.017821284011006355, 0.03551318868994713, -0.014078207314014435, -0.0015409431653097272, -0.055371176451444626, 0.07011829316616058, 0.02609879896044731, 0.042611848562955856, -0.016343042254447937, -0.012196753174066544, 0.07536731660366058, 0.027505425736308098, 0.0416177362203598, 0.03943268954753876, 0.008399926126003265, 0.0004095745971426368, 0.027753815054893494, -0.0025568052660673857, 0.017318829894065857, -0.004104589112102985, -0.03070666827261448, -0.038075041025877, 0.011683887802064419, -0.003822990460321307, -0.006012045778334141, -0.023329978808760643, 0.06058206036686897, 0.004224058706313372, -0.03715173900127411, -0.0934092178940773, 0.042000576853752136, -0.014118662104010582, -0.031046690419316292, -0.04303424060344696, 0.008320475928485394, -0.009406249038875103, 0.03228268399834633, -0.001161632826551795, 0.04695603996515274, 0.058664288371801376, 0.004834390711039305, -0.03805234283208847, -0.0017078228993341327, 0.058154962956905365, 0.07332736253738403, 0.04118017107248306, 0.012306500226259232, 0.034323133528232574, -0.007811141200363636, -0.042780887335538864, -0.021032167598605156, -0.0032326949294656515, 0.018028557300567627, -0.02049904502928257, -0.007762634661048651, 0.0714789554476738, -0.051546692848205566, 0.08148996531963348, 0.005146467126905918, 0.021554159000515938, -0.03889835998415947, 0.022666463628411293, 0.044172704219818115, 0.03725413233041763, 0.02232207916676998, 0.02011909708380699, 0.018491405993700027, -0.0468609482049942, 0.06789891421794891, -0.028749654069542885, 0.0034211601596325636, 0.023610105738043785, -0.0063108098693192005, 0.02974560670554638, 0.020950082689523697, 0.03698519244790077, 0.035850852727890015, -0.021251501515507698, 0.03440619632601738, 0.04161032661795616, 0.05247129127383232, -0.04773762449622154, 0.05267530679702759, 0.003422056557610631, -0.0072993384674191475, -0.000025155144612654112, -0.035464052110910416, -0.012829132378101349, -0.0018684940878301859, -0.02958781085908413, 0.03666749596595764, -0.010339779779314995, 0.008906679227948189, 0.02062726952135563, 0.0018291374435648322, -0.01593673601746559, -0.008454553782939911, -0.029174624010920525, -0.01230533979833126, -0.042559217661619186, 0.003966074902564287, 0.004010416101664305, -0.012813439592719078, -0.04736132547259331, -0.020527750253677368, -0.04607964679598808, -0.029621601104736328, -0.01387519296258688, -0.03695891425013542, -0.02926340326666832, -0.013395094312727451, 0.009268514811992645, 0.007439065724611282, 0.032707806676626205, 0.04598335549235344, 0.008813927881419659, -0.01604149304330349, -0.005299055948853493, -0.014663643203675747, 0.05597711727023125, -0.025912415236234665, -0.023363851010799408, -0.08125671744346619, 0.05104007571935654, 0.007116541266441345, 0.0276365727186203, -0.07120823860168457, 0.009370516985654831, 0.00026702237664721906, -0.032039131969213486, 0.04605342820286751, -0.029145292937755585, 0.025613920763134956, -0.021607674658298492, -0.0021760882809758186, -0.025987185537815094, 0.0067832572385668755, 0.05638016760349274, 0.00017026062414515764, 0.09235454350709915, 0.040077902376651764, -0.002467608544975519, -0.029176227748394012, -0.017713427543640137, -0.004228714853525162, 0.013866645283997059, -0.005516613367944956, 0.0012665566755458713, -0.056043677031993866, -0.07458014786243439, -0.006645019166171551, 0.006476882379502058, -0.030283182859420776, -0.047906141728162766, -0.020665500313043594, -0.0011439109221100807, -0.04187034070491791, 0.014446604065597057, -0.037258509546518326, -0.023570260033011436, -0.02079029008746147, -0.007025889120995998, -0.008225439116358757, 0.041062477976083755, -0.010642444714903831, 0.009033158421516418, 0.041899673640728, -0.03813479095697403, -0.01723034679889679, -0.005687762051820755, 0.015306942164897919, 0.046280357986688614, -0.032894693315029144, 0.02228926494717598 ]
[ -0.06304528564214706, 0.016313569620251656, 0.019725294783711433, -0.02188972383737564, 0.0166831836104393, -0.07324253022670746, 0.022055016830563545, -0.0222404133528471, -0.040825147181749344, -0.01493643969297409, 0.021702544763684273, 0.0014233881374821067, -0.001955559942871332, 0.014103743247687817, 0.0464266799390316, 0.019588498398661613, -0.057033248245716095, 0.021822260692715645, -0.024563677608966827, 0.0014657846186310053, -0.028234977275133133, -0.04439855366945267, 0.044890787452459335, -0.008363837376236916, 0.037374332547187805, 0.06182844191789627, -0.01156671904027462, -0.0012664275709539652, -0.008684288710355759, -0.22781217098236084, 0.04312063008546829, 0.0229310505092144, -0.053768936544656754, -0.007961012423038483, -0.0032213323283940554, 0.02322867512702942, -0.019504664465785027, 0.010998988524079323, 0.006745908409357071, 0.06478472054004669, 0.06440254300832748, 0.03575170040130615, -0.01332179270684719, -0.016448989510536194, -0.030270256102085114, -0.07709789276123047, 0.02774501033127308, -0.030992703512310982, 0.022892719134688377, 0.04083685949444771, -0.0152865806594491, 0.024730680510401726, -0.003906798083335161, -0.012371041812002659, -0.02734740637242794, 0.011531917378306389, 0.03919116035103798, 0.07485401630401611, -0.02254573069512844, -0.004585233982652426, 0.0017650889931246638, 0.022728195413947105, -0.1728082001209259, 0.09266707301139832, 0.03393596038222313, -0.021205062046647072, 0.012402502819895744, -0.030182620510458946, -0.06398414075374603, 0.08560609072446823, -0.06610114127397537, -0.027930114418268204, -0.08252697438001633, 0.0649428516626358, -0.03466316685080528, -0.04274201765656471, 0.01684774085879326, 0.006193568464368582, 0.02419961988925934, -0.06137749180197716, -0.025547023862600327, -0.031484026461839676, -0.003003789111971855, -0.0473688468337059, -0.008984283544123173, -0.04788145050406456, -0.03176882117986679, 0.026341091841459274, 0.03143930435180664, 0.010041747242212296, -0.00019148694991599768, -0.04623826965689659, 0.1057516410946846, 0.007998615503311157, -0.06617385149002075, 0.04955285042524338, 0.046583279967308044, 0.02569350227713585, -0.014830512925982475, 0.3842320442199707, 0.0030076170805841684, -0.01219662930816412, -0.043664850294589996, -0.005873407702893019, 0.05425773933529854, 0.030212484300136566, 0.002357104327529669, 0.04715089499950409, 0.03824898600578308, -0.023533176630735397, 0.012439284473657608, -0.04326513782143593, 0.08509179204702377, -0.056846845895051956, 0.04887957125902176, 0.012753453105688095, 0.04435916617512703, 0.041748810559511185, -0.0066101825796067715, -0.0013341663870960474, 0.016294971108436584, -0.03275929018855095, 0.042795196175575256, 0.05420898273587227, 0.012950033880770206, -0.03092750906944275, 0.006622659042477608, 0.07106288522481918, 0.028823839500546455, -0.05241386964917183, 0.02185041643679142, -0.06985919177532196, -0.05315510556101799, 0.006612503435462713, -0.04549795761704445, 0.09092051535844803, 0.019896216690540314, -0.08359309285879135, 0.04462651535868645, -0.015265416353940964, -0.008030623197555542, -0.00985506922006607, 0.003740716725587845, 0.012508639134466648, -0.0425553098320961, 0.059445660561323166, -0.0023242065217345953, 0.01633272133767605, -0.0047865454107522964, -0.05055725947022438, 0.011613309383392334, -0.01664680428802967, -0.012632209807634354, -0.0469975471496582, 0.0002974215894937515, 0.025030959397554398, 0.07470858097076416, -0.005522573366761208, -0.0537758432328701, -0.004549536854028702, -0.07477077096700668, -0.04543496295809746, -0.012212177738547325, 0.05608119070529938, 0.04777109995484352, -0.031005734577775, -0.04178015887737274, 0.05514869466423988, 0.013666104525327682, -0.08118027448654175, 0.017452489584684372, -0.04730600118637085, -0.04131698235869408, -0.004668163601309061, 0.004431482404470444, -0.03584808111190796, -0.05549025535583496, 0.02222752757370472, 0.04676799848675728, 0.02855949103832245, 0.01652759313583374, -0.04040411859750748, -0.055624183267354965, 0.029645130038261414, -0.007016713730990887, -0.07454364001750946, -0.07564499974250793, 0.04878469184041023, 0.010776394046843052, 0.012692291289567947, -0.017529064789414406, -0.015696847811341286, -0.04019813612103462, 0.02191111072897911, -0.006513596512377262, -0.007545900996774435, 0.0010441284393891692, 0.037448376417160034, -0.016511987894773483, -0.06693125516176224, 0.04954150691628456, 0.021712200716137886, 0.007242330349981785, 0.008046623319387436, -0.0786847323179245, 0.013304615393280983, 0.018335426226258278, -0.027030831202864647, 0.052439238876104355, -0.0027218270115554333, -0.06288233399391174, 0.009129315614700317, -0.011695541441440582, -0.007315163966268301, -0.016571419313549995, -0.04077449068427086, -0.026956873014569283, -0.03149997070431709, 0.010455001145601273, 0.022851886227726936, 0.010611901059746742, -0.052074555307626724, -0.053779758512973785, -0.33855804800987244, -0.04433106631040573, -0.012948024086654186, 0.012281438335776329, 0.08561500906944275, -0.10256072878837585, 0.02515248768031597, 0.0027103088796138763, -0.021416155621409416, -0.005603201221674681, -0.007294070441275835, -0.046069756150245667, -0.023793818429112434, -0.042538389563560486, -0.011196414940059185, 0.019651290029287338, 0.007875413633883, -0.0616612508893013, -0.02728458121418953, 0.041116174310445786, -0.017025426030158997, -0.012043902650475502, -0.03276903182268143, -0.045334476977586746, -0.003379051573574543, -0.012452434748411179, 0.04033461585640907, 0.04286801442503929, 0.09423893690109253, -0.05015990883111954, 0.10139789432287216, 0.03421271964907646, -0.008108888752758503, -0.1005278155207634, -0.06229464337229729, 0.043032605201005936, -0.026490341871976852, -0.012707943096756935, 0.038870517164468765, -0.007631979882717133, -0.007221504580229521, -0.01388164609670639, -0.014688974246382713, -0.04576663300395012, -0.015328813344240189, 0.01627969555556774, 0.005784067790955305, 0.013223627582192421, 0.018757009878754616, 0.03808502480387688, -0.009456544183194637, 0.032886702567338943, -0.01574435643851757, 0.033946678042411804, 0.04932500422000885, -0.009029297158122063, -0.03391728177666664, -0.02598172053694725, 0.03159309923648834, -0.05503293499350548, 0.013808393850922585, 0.062391526997089386, 0.035206932574510574, -0.02238824963569641, -0.041063547134399414, 0.002205688040703535, -0.012620300985872746, 0.010594302788376808, 0.01773453690111637, -0.02420530468225479, -0.01947837881743908, 0.0790143683552742, -0.036034081131219864, 0.015273261815309525, 0.041234832257032394, 0.04020646959543228, -0.02633512392640114, 0.017572127282619476, -0.02712838537991047, -0.044978104531764984, 0.025717424228787422, -0.003695740131661296, 0.04105805233120918, 0.010953947901725769, 0.05469993129372597, 0.05904726684093475, 0.03193850815296173, 0.029839489609003067, 0.0826045572757721, 0.014122366905212402, -0.03898875042796135, -0.03135591000318527, 0.0007618408417329192, -0.06336668133735657, 0.05631019547581673, -0.005514996126294136, -0.21952421963214874, 0.03287997469305992, 0.03130560368299484, 0.06609439849853516, 0.008679625578224659, 0.008290750905871391, 0.032658904790878296, -0.06675316393375397, 0.0014068365562707186, 0.03533940389752388, -0.0018393974751234055, 0.056852180510759354, -0.008259417489171028, -0.0025786294136196375, 0.031059561297297478, -0.024839095771312714, 0.08587252348661423, 0.033329855650663376, -0.017461560666561127, -0.01746901497244835, 0.013866192661225796, -0.02394571527838707, 0.1398347020149231, 0.03606746718287468, 0.015051905065774918, 0.006382600869983435, 0.025784095749258995, 0.026957405731081963, 0.007611788809299469, 0.03424534201622009, 0.005066062323749065, -0.02070220187306404, 0.02775464951992035, 0.026639634743332863, 0.010846275836229324, -0.031547531485557556, -0.006315674167126417, 0.06143204867839813, 0.0321689136326313, -0.046070270240306854, -0.07348255068063736, 0.000288298906525597, -0.0637420043349266, 0.03916822373867035, 0.09669999778270721, -0.03293894976377487, 0.03775317221879959, 0.006823403295129538, -0.009503288194537163, 0.008921456523239613, -0.014549403451383114, -0.033445753157138824, 0.004322033375501633, 0.027435675263404846, 0.019318170845508575, 0.04541600123047829, 0.01822105422616005, -0.005290322471410036, 0.038316577672958374, 0.023470792919397354, -0.007203525863587856, -0.020099809393286705, 0.17121239006519318, 0.03372393921017647, 0.03291806951165199 ]
[ 0.010000675916671753, 0.053582366555929184, -0.016292663291096687, -0.00551227480173111, 0.022816266864538193, 0.0034756255336105824, -0.02316957339644432, 0.04111075773835182, -0.0033433225471526384, 0.018831150606274605, 0.024470536038279533, -0.04070036858320236, 0.032121751457452774, 0.008774468675255775, -0.03499540314078331, -0.024758972227573395, -0.002790720434859395, -0.029301781207323074, -0.0017072341870516539, -0.011733663268387318, -0.004582872614264488, 0.06394064426422119, 0.051784586161375046, -0.02592315524816513, 0.015653779730200768, -0.011249549686908722, -0.037282999604940414, 0.02641703188419342, 0.028038403019309044, -0.1072295755147934, -0.05348905920982361, -0.005137429106980562, 0.0029491239693015814, -0.005784283392131329, 0.03206636384129524, -0.010614612139761448, 0.03082008846104145, 0.05577113479375839, -0.02000201866030693, 0.014043724164366722, 0.006459377706050873, 0.023270707577466965, 0.0019151803571730852, -0.008061487227678299, -0.029463866725564003, 0.007444527931511402, -0.011553488671779633, -0.04712018743157387, -0.005360582377761602, 0.007796949706971645, -0.0071158935315907, 0.008979208767414093, 0.020292973145842552, 0.008362116292119026, 0.0025544874370098114, -0.005094453692436218, -0.03220672905445099, 0.010486707091331482, 0.00823578704148531, -0.025472642853856087, -0.004577358718961477, 0.00150964199565351, -0.08475379645824432, -0.026535358279943466, 0.01642867550253868, -0.025708574801683426, -0.002492504892870784, 0.03202129527926445, -0.035684484988451004, 0.031055578961968422, -0.00942492950707674, 0.007338646333664656, -0.021397840231657028, -0.017805520445108414, -0.012581256218254566, -0.004652257543057203, 0.04361776262521744, -0.03029400296509266, -0.02012731321156025, -0.018057970330119133, -0.029840953648090363, 0.012277171015739441, 0.03731482848525047, -0.004503344651311636, 0.039072368294000626, 0.037585824728012085, -0.014241717755794525, 0.007320552598685026, -0.003930626902729273, -0.025320066139101982, 0.013524308800697327, -0.02924424409866333, 0.00756646366789937, 0.015423119999468327, -0.09390217810869217, -0.018997758626937866, 0.006324438378214836, -0.0253545343875885, 0.002892611548304558, 0.7777471542358398, 0.029553618282079697, 0.031489048153162, 0.032266609370708466, -0.017786117270588875, 0.002698383992537856, 0.03855113685131073, 0.026494506746530533, 0.010554985143244267, 0.0336458683013916, 0.0073510827496647835, -0.003106194082647562, 0.0005429594893939793, 0.0324874073266983, -0.00891405064612627, 0.030173761770129204, 0.03550562262535095, 0.01084094773977995, -0.008718376979231834, -0.04706878215074539, 0.014701688662171364, 0.053633321076631546, -0.013886410742998123, 0.002958115190267563, 0.04012635350227356, -0.026382194831967354, -0.18762053549289703, 0.04891610145568848, -6.883348882265792e-33, 0.010189364664256573, 0.001048272824846208, 0.00415573175996542, -0.013152786530554295, -0.016336942091584206, 0.04590409994125366, 0.012250212952494621, 0.03328520432114601, -0.05999409779906273, -0.017585160210728645, 0.021195994690060616, -0.030076710507273674, -0.04573721066117287, -0.027768688276410103, -0.01065734587609768, -0.04502451419830322, -0.005275656934827566, 0.04996751993894577, 0.01206454262137413, 0.02505251206457615, 0.023432547226548195, 0.038737375289201736, 0.0005277152522467077, -0.007609004154801369, 0.04964441806077957, -0.0018549480009824038, 0.015953021124005318, -0.011306951753795147, -0.014815658330917358, -0.03879351168870926, -0.009190462529659271, 0.03920896723866463, -0.02542681246995926, -0.05787424370646477, -0.007822089828550816, -0.02709776908159256, -0.013044341467320919, -0.02049037255346775, 0.02687937393784523, -0.07146383076906204, -0.012237049639225006, -0.012102494947612286, -0.06607020646333694, 0.012149122543632984, 0.005615090951323509, 0.0032113331835716963, 0.013987027108669281, -0.030326813459396362, 0.0014634660910815, -0.005895259790122509, 0.0160832442343235, 0.012789995409548283, -0.020857596769928932, 0.021896861493587494, -0.03488777205348015, 0.052600663155317307, -0.04955240339040756, -0.01390832383185625, 0.007422001101076603, 0.024535218253731728, 0.03767573833465576, 0.03052409738302231, -0.028101565316319466, 0.0739179328083992, 0.0038312822580337524, -0.04721382260322571, -0.0014209707733243704, -0.019630981609225273, -0.008509385399520397, 0.056429993361234665, -0.06787385046482086, 0.008836468681693077, 0.015650352463126183, -0.02515416592359543, 0.0095581766217947, -0.04341181367635727, -0.020382393151521683, 0.018499968573451042, 0.04868709295988083, 0.00014479801757261157, -0.015880195423960686, -0.03658469021320343, -0.0630892813205719, -0.009396485053002834, 0.023596864193677902, -0.003949354402720928, 0.054939836263656616, -0.019468804821372032, -0.06596106290817261, -0.014432947151362896, 0.051809340715408325, -0.016366029158234596, 0.03365679085254669, -0.049127303063869476, -0.020992685109376907, 6.1307408282037306e-33, 0.019351603463292122, 0.016330700367689133, -0.004468358121812344, -0.00018669151177164167, 0.01287089567631483, -0.012212497182190418, 0.02329183742403984, -0.01796501874923706, -0.0974859893321991, -0.04857325181365013, -0.007387874182313681, 0.030360177159309387, -0.033474866300821304, -0.027534861117601395, 0.053231604397296906, -0.005953508894890547, -0.02783714048564434, -0.046325523406267166, 0.04914354160428047, -0.0185176320374012, 0.03285140544176102, -0.04114395007491112, 0.015098151750862598, 0.013140357099473476, 0.013150511309504509, 0.029737818986177444, 0.01469459943473339, 0.04425220191478729, 0.04003613814711571, 0.02089638262987137, 0.0013942337827757, 0.026016244664788246, -0.017942974343895912, -0.04941951856017113, -0.007965052500367165, 0.048410963267087936, -0.008107185363769531, 0.007407880388200283, 0.006968695670366287, -0.00199106358923018, 0.012263054959475994, 0.020498383790254593, -0.028803866356611252, -0.018307793885469437, -0.010754235088825226, 0.059851258993148804, -0.02370777539908886, 0.00495061744004488, 0.01609547808766365, -0.021160602569580078, 0.020661717280745506, 0.010732152499258518, -0.0314176045358181, -0.019311819225549698, 0.03354246914386749, 0.001448232214897871, -0.03679507598280907, 0.00019709883781615645, -0.08025478571653366, -0.016026455909013748, -0.01870749145746231, 0.08120021969079971, -0.023126037791371346, -0.007428695913404226, -0.0321790836751461, -0.04165976494550705, 0.009962912648916245, -0.01349654607474804, 0.008350219577550888, -0.0004410932888276875, 0.04496670514345169, 0.02710905857384205, 0.005743555724620819, 0.01534328330308199, 0.03257259353995323, -0.03269524127244949, -0.012897227890789509, -0.003475129371508956, -0.013354925438761711, 0.03772219270467758, -0.008099054917693138, 0.036287128925323486, 0.0348823219537735, 0.026607638224959373, -0.019991816952824593, 0.01674117147922516, -0.040366727858781815, 0.022486796602606773, 0.03925945982336998, -0.007352297659963369, 0.023013604804873466, -0.04042702913284302, -0.021202336996793747, -0.003024955978617072, -0.060088496655225754, -1.2426464301995566e-8, -0.029203392565250397, -0.03651205077767372, -0.005423849448561668, -0.011530722491443157, -0.021809956058859825, -0.013656850904226303, -0.002176722278818488, -0.0035631442442536354, -0.046918466687202454, -0.011143075302243233, 0.05283971130847931, 0.028317956253886223, 0.03115289844572544, 0.02568923495709896, 0.040794581174850464, -0.011118536815047264, 0.038949720561504364, -0.016178609803318977, 0.023029804229736328, 0.005062739364802837, -0.021475542336702347, 0.08096493780612946, -0.00933021865785122, -0.02845023013651371, -0.021725613623857498, 0.05245920270681381, -0.0380297526717186, -0.05672888830304146, -0.027822114527225494, -0.003127795411273837, 0.0797826424241066, -0.0099355299025774, -0.011428209021687508, 0.025515636429190636, -0.011682860553264618, -0.07287326455116272, -0.02043863944709301, -0.04257677495479584, -0.033861011266708374, -0.03129030764102936, 0.04388987272977829, -0.014645353890955448, 0.027638999745249748, -0.02634717896580696, -0.028525101020932198, -0.05376017093658447, 0.026213567703962326, 0.0013839309103786945, 0.059142302721738815, -0.038584545254707336, 0.016197189688682556, 0.030812006443738937, -0.02269069477915764, 0.040419306606054306, 0.04286235570907593, 0.002161062555387616, -0.01812085695564747, -0.00014228712825570256, -0.020704295486211777, -0.0042198882438242435, -0.0008178908028639853, -0.01824004389345646, -0.020183220505714417, 0.01624632067978382 ]
zsh-dont-verify-substituted-history-expansion-a-k-a-disabling-histverify
https://markhneedham.com/blog/2012/09/16/zsh-dont-verify-substituted-history-expansion-a-k-a-disabling-histverify
false
2012-09-19 07:00:22
Finding ways to use bash command line history shortcuts
[ "bash" ]
[ "Shell Scripting" ]
A couple of months ago I wrote about a http://www.markhneedham.com/blog/2012/07/05/bash-shell-reusing-parts-of-previous-commands/[bunch of command line history shortcuts] that https://twitter.com/philandstuff[Phil] had taught me and after recently coming across http://www.catonmat.net/download/bash-history-cheat-sheet.pdf[Peteris Krumins' bash history cheat sheet] I thought it'd be interesting to find some real ways to use them. A few weeks ago I wrote about http://www.markhneedham.com/blog/2012/09/03/a-rogue-357273277-utf-8-byte-order-mark/[a UTF-8 byte order mark (BOM) that I wanted to remove from a file] I was working on and I realised this evening that there were some other files with the same problem. The initial command read like this: [source,text] ---- awk '{if(NR==1)sub(/^\xef\xbb\xbf/,"");print}' data/Taxonomy/Products.csv > data/Taxonomy/Products.csv.bak ---- The version of the file without the BOM is +++<cite>+++data/Taxonomy/Products.csv.bak+++</cite>+++ but I wanted it to be +++<cite>+++data/Taxonomy/Products.csv+++</cite>+++ so I needed to +++<cite>+++mv+++</cite>+++ it to that location. By making use of history expansion we can write this as follows: [source,text] ---- mv !$ !!:2 ---- +++<cite>+++!$+++</cite>+++ represents the last argument which is +++<cite>+++data/Taxonomy/Products.csv.bak+++</cite>+++ and +++<cite>+++!!:2+++</cite>+++ gets the 2nd argument passed to the last command which in this case is +++<cite>+++data/Taxonomy/Products.csv+++</cite>+++. As you're typing it will expand to the following: [source,text] ---- mv data/Taxonomy/Products.csv.bak data/Taxonomy/Products.csv ---- One of the things that we do quite frequently is look at the nginx configurations and logs of our different applications which involved doing the following: [source,text] ---- $ tail -f /var/log/nginx/site-1-access.log $ tail -f /var/log/nginx/site-2-access.log ---- or [source,text] ---- $ vi /etc/nginx/sites-enabled/site-1-really-long-name-cause-we-can $ vi /etc/nginx/sites-enabled/site-2-really-long-name-cause-we-can ---- Everything except for the file name is the same but typing the up arrow to get the previous command and then manually deleting the file name can end up taking longer than just writing out the whole command again if the site name is long. Ctrl-w deletes the whole path so that doesn't help us either. An alternative is the use the 'h' modifier which "Removes a trailing pathname component, leaving the head." In this case we could do the following: [source,text] ---- $ vi /etc/nginx/sites-enabled/site-1-really-long-name-cause-we-can $ vi !$:h/site-2-really-long-name-cause-we-can ---- We still have to type out the whole file name and we don't get any auto complete help which is a bit annoying. I realised that on my zsh if I type a space after a history expansion command it expands what I've typed to the full paths of everything, which is due to the following key binding: [source,text] ---- .oh-my-zsh $ grep -rn "magic-space" * lib/key-bindings.zsh:20:bindkey ' ' magic-space # also do history expansion on space ---- We can do the same thing in bash by running the following command: [source,text] ---- bind Space:magic-space ---- Then if I wanted to open that second nginx file I could do the following: [source,text] ---- $ vi !$:h # then type a space which will expand it to: $ vi /etc/nginx/sites-enabled/ # I can then type backspace, then type 'site-2' and tab and open the file ---- It's not completely smooth because of the backspace but I think it's marginally quicker than the other options. Another one which I mentioned in the first post is the +++<cite>+++{caret}original{caret}replacement+++</cite>+++ which will run the previous command but replace the first instance of 'original' with 'replacement'. With this one it often seems faster to type the up arrow and change what you want manually or retype the command but when doing a grep of a specific folder I think this is faster. e.g. [source,text] ---- $ grep -rn "magic-space" ~/.oh-my-zsh/lib /Users/mneedham/.oh-my-zsh/lib/key-bindings.zsh:20:bindkey ' ' magic-space # also do history expansion on space ---- Let's say I was intrigued about +++<cite>+++bindkey+++</cite>+++ and wanted to find all the instances of that. One way to do that would be to type up and then manually go back along the line using +++<cite>+++Meta-B+++</cite>+++ until I get to 'bind-key' when I can delete that with a few +++<cite>+++Ctrl-W+++</cite>+++'s but in this case the search/replace approach is quicker: [source,text] ---- $ ^magic-space^bindkey grep -rn "bindkey" ~/.oh-my-zsh/lib /Users/mneedham/.oh-my-zsh/lib/completion.zsh:24:bindkey -M menuselect '^o' accept-and-infer-next-history /Users/mneedham/.oh-my-zsh/lib/completion.zsh:71: bindkey "^I" expand-or-complete-with-dots ---- I'm still looking for other ways to re-use bash history more effectively so let me know any other cool tricks in the comments.
null
null
[ -0.01540012564510107, -0.017726704478263855, -0.04372836649417877, 0.02185947075486183, 0.0957711935043335, 0.002580729080364108, 0.009086910635232925, 0.041537512093782425, 0.0027976701967418194, -0.0021064893808215857, -0.0008199367439374328, 0.0222663301974535, -0.040573470294475555, 0.014505340717732906, -0.028196128085255623, 0.06142398715019226, 0.02415069006383419, -0.005822372157126665, 0.02268693596124649, 0.014017865061759949, 0.029131228104233742, 0.04899132624268532, 0.021685125306248665, 0.022289592772722244, 0.024294424802064896, -0.009466064162552357, 0.026076922193169594, -0.0006544649950228631, -0.06380622088909149, 0.026185518130660057, 0.02059025876224041, -0.01244491059333086, -0.002059489255771041, 0.0025077108293771744, 0.004184949677437544, -0.01146970596164465, -0.021065957844257355, -0.0005944510921835899, 0.0032661999575793743, 0.006281162612140179, -0.06960486620664597, 0.0517977774143219, -0.012668756768107414, 0.0037498169112950563, -0.04800856113433838, 0.025608686730265617, -0.02175888977944851, -0.002694641938433051, -0.034797005355358124, -0.004688252694904804, -0.06397461891174316, 0.01307064201682806, -0.010036606341600418, -0.02852427028119564, -0.001278340700082481, 0.044342488050460815, 0.009279465302824974, -0.07300270348787308, 0.020983049646019936, -0.012677500024437904, 0.00661590276286006, 0.0010625242721289396, 0.016627540811896324, 0.027273228392004967, -0.0003828975313808769, -0.04772978276014328, -0.0042733787558972836, 0.04340067133307457, -0.046055153012275696, 0.01241086795926094, 0.007535453420132399, 0.01083646435290575, -0.02347605675458908, -0.01614316552877426, 0.005061903968453407, -0.0337960459291935, 0.014781909994781017, 0.051615048199892044, 0.008243262767791748, 0.07171951234340668, -0.03641175106167793, 0.011548290960490704, 0.007312461733818054, 0.002195021603256464, 0.014323958195745945, -0.04296553134918213, 0.0025983501691371202, -0.02519683912396431, -0.061671312898397446, 0.03488251939415932, 0.02278110571205616, -0.03579121083021164, 0.0038823261857032776, 0.01480498444288969, 0.00761621305719018, -0.004100843798369169, 0.007840133272111416, 0.007780279032886028, 0.009446489624679089, -0.02005890943109989, -0.05594279617071152, 0.00017165929602924734, 0.01756604202091694, 0.01642703264951706, -0.09067502617835999, -0.008291075006127357, -0.017298754304647446, 0.01688234508037567, 0.02176205813884735, -0.0035149171017110348, 0.010849894024431705, 0.02309049852192402, -0.011693411506712437, 0.0064184339717030525, -0.07366560399532318, 0.05744970589876175, 0.007401131559163332, -0.06447359919548035, 0.031892698258161545, 0.014076336286962032, 0.027373597025871277, 0.05645058676600456, 0.008827966637909412, 0.07077793776988983, 0.032080959528684616, -0.0055008199997246265, 0.03185386583209038, 0.03474694490432739, -0.026781639084219933, -0.06896989792585373, -0.003013075329363346, 0.06133481487631798, -0.024612534791231155, 0.003031104803085327, -0.013886996544897556, -0.01694549433887005, -0.01290083583444357, 0.008456365205347538, 0.0421069972217083, 0.048948999494314194, 0.0248137004673481, -0.029947616159915924, -0.02106121927499771, 0.007450097240507603, 0.03521817922592163, -0.003963232971727848, -0.003205931978300214, -0.03552508354187012, -0.043405935168266296, 0.004450140055269003, 0.005319423973560333, 0.010092198848724365, 0.05680074542760849, -0.02949044108390808, 0.022097516804933548, 0.08340594917535782, 0.0398259311914444, 0.017033332958817482, -0.018612805753946304, 0.008677598088979721, 0.04602612182497978, 0.042899057269096375, 0.006200676783919334, 0.0417013056576252, 0.006126187276095152, -0.03484578803181648, -0.018645532429218292, 0.03181258961558342, -0.02336885966360569, 0.010681870393455029, -0.038171373307704926, -0.05952101945877075, 0.06457029283046722, -0.004630225244909525, 0.01542335469275713, 0.05019054934382439, 0.08073574304580688, 0.07185248285531998, 0.03457131236791611, -0.00484365364536643, -0.08138428628444672, 0.06049485504627228, 0.01677420176565647, 0.03295202553272247, 0.042608436197042465, 0.006132200825959444, 0.05987143516540527, 0.028148088604211807, 0.02212117239832878, 0.02607680670917034, -0.08739429712295532, -0.09256850928068161, -0.03138279542326927, 0.0060609788633883, 0.049494270235300064, -0.02608584426343441, -0.006114982534199953, 0.07177232950925827, 0.0048026046715676785, 0.06660951673984528, -0.007649761624634266, 0.00021903608285356313, 0.04742973670363426, -0.07911286503076553, -0.05292405188083649, 0.040829453617334366, 0.02698356844484806, -0.002997597213834524, -0.013762296177446842, 0.028456104919314384, -0.042399752885103226, 0.03367110714316368, 0.024558385834097862, -0.012678968720138073, 0.03440922498703003, 0.027533629909157753, 0.029424622654914856, -0.032887011766433716, 0.013132413849234581, -0.0555986724793911, -0.0050267670303583145, -0.0027362278196960688, -0.03539170324802399, 0.007290147710591555, -0.007300720550119877, 0.11481497436761856, 0.03358669579029083, -0.021886512637138367, -0.018799353390932083, 0.009827086701989174, 0.01735200546681881, -0.03169205039739609, -0.009446422569453716, -0.026885133236646652, 0.022223882377147675, 0.006975576281547546, -0.03377659246325493, -0.02527811750769615, 0.00617325771600008, -0.012227600440382957, -0.00754537433385849, 0.05481763929128647, -0.008189438842236996, 0.05705576390028, -0.005157215055078268, 0.004009299445897341, -0.012703608721494675, -0.03232366591691971, -0.08569896221160889, -0.016871800646185875, 0.01415484119206667, -0.0031045146752148867, 0.05914213880896568, -0.053603414446115494, -0.034645918756723404, -0.015324168838560581, -0.06369112432003021, 0.009978770278394222, 0.015427317470312119, 0.05804450064897537, -0.04217835143208504, 0.07873062789440155, -0.017731348052620888, 0.0386301688849926, -0.005950216669589281, -0.02137497439980507, -0.05847751349210739, -0.017326543107628822, 0.002499087480828166, 0.01337932888418436, -0.0008015994098968804, 0.030392218381166458, 0.016065621748566628, -0.004529495257884264, 0.028244653716683388, -0.01331307552754879, 0.016002746298909187, 0.0033952207304537296, -0.015011274255812168, -0.054027486592531204, -0.02882075123488903, 0.04282324016094208, -0.041346095502376556, -0.020312974229454994, 0.03514546900987625, -0.06598027050495148, 0.063265360891819, -0.02350221574306488, -0.03069213405251503, 0.0010729485657066107, -0.008863021619617939, 0.030078100040555, -0.0026646237820386887, 0.017891207709908485, 0.04999522119760513, 0.032809529453516006, -0.0045071011409163475, -0.001193298026919365, 0.005793644580990076, 0.04481282830238342, -0.023588869720697403, -0.008220273070037365, 0.0410984568297863, 0.009800633415579796, 0.007494690362364054, -0.028584390878677368, -0.0011619537835940719, -0.017644420266151428, -0.2781572639942169, 0.04051574319601059, -0.02979952096939087, -0.054143909364938736, 0.020698651671409607, -0.022181160748004913, 0.019786279648542404, -0.06224273145198822, -0.03190558776259422, -0.004940015263855457, -0.024973172694444656, -0.03174753859639168, -0.00157270731870085, 0.027175288647413254, -0.00728309853002429, 0.05132581666111946, 0.03516818955540657, -0.056139037013053894, -0.009975799359381199, 0.022647486999630928, 0.006498067639768124, -0.051160309463739395, 0.010661287233233452, 0.03837968781590462, 0.024419210851192474, 0.06629814207553864, -0.07031504064798355, 0.07676402479410172, -0.04492747411131859, -0.02846533991396427, 0.0031498244497925043, -0.006936968769878149, -0.008177156560122967, 0.003965042997151613, -0.0006417320691980422, -0.008601627312600613, 0.05429406091570854, 0.018830787390470505, 0.040543824434280396, 0.011744768358767033, -0.009275870397686958, -0.03383396938443184, 0.011766432784497738, -0.0019397838041186333, 0.07175188511610031, -0.0034386874176561832, -0.05642640218138695, -0.016359305009245872, -0.009845716878771782, 0.07424059510231018, -0.05061478540301323, -0.0410568043589592, -0.023299837484955788, 0.0418349951505661, -0.012090560048818588, -0.03126993402838707, -0.0008944013970904052, -0.03841470554471016, -0.028021614998579025, -0.025323228910565376, -0.0026433542370796204, -0.045814160257577896, -0.0034925476647913456, -0.05230831354856491, -0.004616370424628258, -0.06227099522948265, -0.07760749757289886, -0.013653477653861046, 0.09057946503162384, 0.03257881477475166, -0.0401478111743927, 0.021186457946896553, -0.010699388571083546, -0.09764038771390915, -0.000055726963182678446, -0.02745259366929531, -0.06385639309883118, -0.011143903248012066, -0.0030722334049642086, 0.04652237147092819, -0.025136655196547508, -0.05580106005072594, 0.02598833665251732, 0.009439910762012005, 0.008470566011965275, -0.05792512744665146, 0.010528109967708588, 0.022894449532032013, -0.04471792280673981, -0.00947209820151329, 0.05673004314303398, -0.025807084515690804, -0.0446862056851387, -0.004484900273382664, -0.008817233145236969, 0.007343562785536051, 0.004024704452604055, -0.0027683633379638195, 0.04303481802344322, 0.05181850865483284, 0.03398447483778, -0.053272370249032974, 0.01448636781424284, -0.07512970268726349, -0.02492479979991913, -0.012471999041736126, -0.04265425726771355, 0.024736791849136353, 0.0249988604336977, 0.019123002886772156, -0.006294731982052326, -0.012263559736311436, 0.025564979761838913, -0.06554194539785385, -0.024019813165068626, 0.023928381502628326, 0.011903499253094196, 0.022505134344100952, 0.05740285664796829, -0.016343342140316963, -0.03737721964716911, 0.010359295643866062, -0.010808481834828854, -0.03547925129532814, -0.06891950964927673, -0.048727307468652725, -0.016818301752209663, -0.0005860654637217522, 0.01397736556828022, 0.013343434780836105, -0.028073277324438095, -0.011642246507108212, 0.044635988771915436, -0.019118329510092735, 0.025716839358210564, -0.03359225019812584, -0.054096873849630356, -0.044759925454854965, -0.014874988235533237, 0.010754324495792389, -0.049338921904563904, -0.005307898391038179, -0.009498783387243748, 0.03779137507081032, 0.024041729047894478, 0.007946645841002464, 0.04570271819829941, -0.003958965186029673, 0.04898414388298988, 0.029018407687544823, -0.010710375383496284, -0.025388656184077263, 0.019824327901005745, -0.02195024862885475, -0.015091990120708942, -0.0054542855359613895, 0.04179533198475838, -0.010544813238084316, -0.013413362205028534, -0.03187871351838112, 0.0029458573553711176, -0.04749544709920883, 0.012851583771407604, -0.005815722513943911, -0.027059584856033325, 0.053564947098493576, -0.00636063888669014, 0.03788972273468971, 0.017537225037813187, -0.0015390610788017511, 0.019764019176363945, 0.022872384637594223, -0.03468229994177818, 0.0004883001674897969, 0.007209278643131256, -0.015596275217831135, 0.03635184094309807, 0.04154878854751587, 0.030926337465643883, 0.02551969513297081, 0.01590406335890293, -0.04774464666843414, -0.001970719313248992, 0.024045396596193314, 0.046801794320344925, 0.022978251799941063, -0.015735043212771416, 0.0067310151644051075, -0.037011630833148956, -0.03711611405014992, -0.013453581370413303, 0.021227514371275902, 0.0018642842769622803, -0.023710159584879875, -0.02740151807665825, -0.08158501237630844, 0.04572024196386337, 0.008331453427672386, -0.0036422901321202517, 0.003180909436196089, -0.0018071255180984735, -0.014999319799244404, -0.026106713339686394, 0.05849204957485199, 0.04826628416776657, -0.055058691650629044, 0.005104112904518843, -0.03553023189306259, -0.012766947969794273, 0.006099885329604149, 0.025242403149604797, -0.050838351249694824, -0.019177094101905823, -0.017318634316325188, 0.045531876385211945, -0.05493512377142906, -0.023340372368693352, -0.0176326185464859, 0.0156268160790205, 0.014771818183362484, -0.009570528753101826, -0.00563351484015584, 0.02242029272019863, 0.015973500907421112, -0.018605321645736694, 0.016498075798153877, -0.0296635702252388, 0.0015375964576378465, 0.03441886976361275, -0.032514672726392746, 0.029157176613807678, -0.04348255693912506, 0.04049968719482422, 0.026995012536644936, -0.01475818082690239, -0.016517754644155502, -0.022989220917224884, -0.0023553974460810423, -0.03731490671634674, 0.04479574039578438, 0.006170214153826237, -0.013619288802146912, -0.04000881686806679, 0.016602253541350365, -0.03946985676884651, -0.021182242780923843, -0.03277270868420601, -0.0030012582428753376, -0.006339352577924728, 0.06263699382543564, -0.005770282354205847, 0.03277066722512245, -0.02819632738828659, -0.032784927636384964, 0.060845326632261276, -0.04745437949895859, -0.0390888936817646, -0.029797695577144623, -0.06788866221904755, 0.025655372068285942, 0.0386863648891449, 0.05214947089552879, -0.0630122721195221, 0.04984859377145767, 0.029836256057024002, -0.006255757994949818, 0.04477778449654579, 0.02142454870045185, 0.012298076413571835, -0.03906822204589844, -0.03974518924951553, -0.09756217896938324, 0.015109510160982609, 0.05033720284700394, 0.0027978720609098673, -0.011897080577909946, 0.011365179903805256, -0.042036619037389755, 0.041474632918834686, -0.06687994301319122, -0.04777848348021507, -0.0014483813429251313, -0.0434696227312088, -0.006315580103546381, 0.017168136313557625, -0.08442740142345428, 0.03654629364609718, 0.04853006452322006, -0.03858556970953941, -0.009333467110991478, -0.06548536568880081, 0.07775583118200302, 0.018663892522454262, 0.05170143023133278, -0.00552495988085866, -0.04111088439822197, 0.04274587333202362, 0.005111861042678356, 0.014134380966424942, 0.036769378930330276, -0.00871265958994627, 0.013686846010386944, 0.03971889242529869, 0.001336007146164775, 0.026879893615841866, -0.0029309075325727463, -0.036572881042957306, -0.02894408442080021, 0.012083127163350582, 0.018437352031469345, -0.015808885917067528, -0.02750898152589798, 0.06122343987226486, 0.01306567806750536, -0.01721903309226036, -0.07719957828521729, 0.044509682804346085, -0.016308709979057312, -0.008044946007430553, -0.040769632905721664, 0.020315177738666534, -0.03537788614630699, 0.03857313096523285, -0.004976557567715645, 0.03472839668393135, 0.06010735034942627, -0.023799167945981026, -0.016739241778850555, -0.02047928236424923, 0.05380692705512047, 0.07581119239330292, 0.05863182246685028, 0.005286323372274637, 0.04441792517900467, -0.030841875821352005, -0.043472256511449814, -0.00454750657081604, 0.010262509807944298, -0.0004682675062213093, -0.005360335577279329, -0.01095784641802311, 0.07735886424779892, -0.05384570360183716, 0.06770668178796768, -0.008631356060504913, 0.008683884516358376, -0.03502930328249931, 0.03203676640987396, 0.04648943245410919, 0.037020158022642136, -0.002364703454077244, 0.031482238322496414, 0.010734880343079567, -0.042147908359766006, 0.04555989429354668, -0.0309764314442873, 0.0005161244771443307, 0.028213931247591972, -0.02178899571299553, 0.0020487881265580654, 0.005557835102081299, 0.040056727826595306, 0.06114726513624191, -0.022813165560364723, 0.028019540011882782, 0.030456529930233955, 0.0337844155728817, -0.011312794871628284, 0.04669753089547157, -0.004716141149401665, 0.002898000879213214, -0.011766403913497925, -0.03721829503774643, -0.009016166441142559, -0.013390365056693554, -0.025253325700759888, 0.0375581793487072, -0.010643853805959225, 0.004122442565858364, 0.02852807193994522, -0.0023699875455349684, -0.03203775733709335, -0.05630861595273018, -0.03451600298285484, -0.02241935208439827, -0.05241144448518753, 0.0048532634973526, 0.012586685828864574, -0.010382236912846565, -0.037410613149404526, -0.020483100786805153, -0.08428161591291428, -0.04885455220937729, 0.019090762361884117, -0.04703451320528984, -0.004788098391145468, -0.018834004178643227, 0.03847941383719444, 0.017254993319511414, 0.02512972429394722, 0.042710304260253906, -0.002460331190377474, 0.003617112059146166, -0.008703210391104221, 0.014296915382146835, 0.05301155894994736, -0.010817078873515129, -0.001940927468240261, -0.08559704571962357, 0.05332154408097267, 0.020665202289819717, 0.026531962677836418, -0.08307640254497528, 0.0003561119083315134, 0.003673047060146928, -0.0364924818277359, 0.03336533531546593, -0.03122255578637123, 0.01345974300056696, -0.021330665796995163, 0.00898799765855074, -0.03265048563480377, -0.006727781146764755, 0.05313187837600708, -0.016155999153852463, 0.07543722540140152, 0.05132336914539337, 0.014276091009378433, -0.05146462842822075, -0.032434720546007156, 0.00439004972577095, 0.006529009435325861, -0.024585194885730743, -0.029671858996152878, -0.03946942463517189, -0.07322034984827042, -0.027763081714510918, 0.006917330902069807, -0.022013243287801743, -0.030221164226531982, 0.019806619733572006, 0.008223890326917171, -0.023310715332627296, -0.0014134491793811321, -0.02710609883069992, -0.0077529288828372955, -0.00526586314663291, -0.0017943427665159106, -0.02957874722778797, 0.04899093881249428, 0.007070693653076887, 0.02711840346455574, 0.0073512643575668335, -0.041087016463279724, -0.0006284103146754205, -0.009124528616666794, 0.01615275628864765, 0.05826504901051521, 0.00039113982347771525, -0.012598167173564434 ]
[ -0.0850081816315651, 0.0177715253084898, 0.005051182582974434, -0.0424656867980957, 0.04691912233829498, -0.06982654333114624, -0.03946230560541153, 0.028079304844141006, -0.01682574488222599, -0.02985343150794506, 0.01059467252343893, -0.03242132440209389, -0.006289223674684763, -0.03060590848326683, 0.0529213473200798, -0.0008652328979223967, -0.029380058869719505, -0.013540464453399181, 0.01102316752076149, 0.00006671294977422804, -0.01611212268471718, -0.023710597306489944, -0.017815638333559036, -0.0029864634852856398, -0.0006551850819960237, 0.05592169985175133, 0.016456808894872665, -0.015048937872052193, -0.01576615869998932, -0.22398680448532104, 0.0337124764919281, 0.023647231981158257, 0.010464123450219631, -0.015783024951815605, 0.031181931495666504, 0.0730336457490921, 0.007402059622108936, 0.0398881621658802, -0.020042676478624344, 0.06573298573493958, 0.058766983449459076, 0.01984165422618389, -0.02376222051680088, -0.00805874727666378, -0.004114667885005474, -0.016830017790198326, 0.018781393766403198, -0.04086128994822502, 0.025190917775034904, 0.00827549584209919, -0.052671629935503006, 0.020571349188685417, 0.005062180571258068, -0.03379157558083534, -0.01741427555680275, 0.025362739339470863, 0.06566944718360901, 0.0694919303059578, -0.004823001567274332, -0.002589995739981532, 0.0021089783404022455, 0.0029613047372549772, -0.1787872463464737, 0.10232799500226974, 0.035930272191762924, 0.03836597874760628, -0.020282890647649765, -0.023311074823141098, -0.041925013065338135, 0.10393621772527695, -0.0684906393289566, -0.018442247062921524, -0.06386978924274445, 0.05557901784777641, -0.016749242320656776, -0.009671719744801521, -0.002566809533163905, 0.008042357861995697, 0.0016754483804106712, -0.08642949908971786, -0.05132151022553444, -0.015696663409471512, -0.017926586791872978, -0.048772621899843216, -0.042845677584409714, -0.027746981009840965, -0.012129365466535091, 0.048214271664619446, 0.018850233405828476, 0.027733666822314262, 0.040215376764535904, -0.02038193866610527, 0.10131393373012543, 0.0035758463200181723, -0.09526338428258896, 0.005726529285311699, 0.021261125802993774, 0.04585276544094086, -0.008171909488737583, 0.4046894311904907, -0.0164941493421793, -0.03352485969662666, 0.0282818004488945, -0.009346774779260159, 0.054663944989442825, 0.039735835045576096, -0.00738875474780798, -0.007086907047778368, 0.02232637070119381, -0.03459715098142624, 0.02139856480062008, -0.0034581234212964773, 0.08252020925283432, -0.04478049278259277, 0.04556168243288994, -0.01662370003759861, 0.022573349997401237, 0.01052949484437704, -0.002786886878311634, -0.007062644697725773, -0.007429293356835842, -0.024804556742310524, 0.056802406907081604, 0.021527916193008423, 0.02958136424422264, -0.04438374936580658, 0.022898098453879356, 0.04845813661813736, 0.05670466646552086, -0.016057658940553665, 0.01503236684948206, -0.0479491762816906, -0.025211920961737633, 0.013652520254254341, 0.0035530943423509598, 0.034394536167383194, 0.026362264528870583, -0.04157425835728645, 0.012361438944935799, -0.0069857193157076836, -0.023856015875935555, -0.014376351609826088, 0.007528373505920172, 0.021919608116149902, -0.05669029429554939, 0.08980172127485275, 0.0137484734877944, -0.03777041658759117, -0.03745788708329201, -0.03674423322081566, -0.01601509563624859, 0.02075156942009926, 0.037822119891643524, -0.05021651089191437, 0.028804071247577667, 0.017010942101478577, 0.0875110849738121, -0.005731713492423296, -0.07381733506917953, -0.004033892881125212, -0.02098710462450981, -0.058155808597803116, -0.03033437766134739, 0.07220946252346039, 0.05506746098399162, -0.05990265682339668, -0.028782200068235397, 0.01430093590170145, 0.0419175960123539, -0.05400549992918968, 0.03002067655324936, -0.012911596335470676, 0.0020426742266863585, -0.012330213561654091, 0.02213945798575878, -0.01607193984091282, -0.007151142228394747, 0.033694494515657425, 0.05025939643383026, 0.006232740357518196, -0.00984977651387453, -0.03340645134449005, -0.05215812847018242, 0.023942794650793076, -0.04216745123267174, -0.08927499502897263, -0.09837262332439423, 0.03171443194150925, -0.024857856333255768, 0.03755509853363037, 0.002907830523326993, -0.005351363681256771, -0.046488385647535324, 0.04361548647284508, -0.02017614059150219, -0.022525710985064507, -0.01926950179040432, 0.014824431389570236, -0.02700214274227619, -0.06160396710038185, -0.005910464562475681, 0.01770237646996975, -0.028213001787662506, 0.0005881819524802268, -0.06225443258881569, 0.028116444125771523, 0.04331948980689049, -0.027089275419712067, 0.09295762330293655, 0.017115697264671326, -0.04755345359444618, -0.011859734542667866, -0.013969439081847668, -0.0044669294729828835, 0.003366823075339198, -0.02488270215690136, -0.01832601986825466, -0.018775276839733124, 0.014713934622704983, 0.0067654261365532875, -0.03916674479842186, -0.056106433272361755, -0.03561816364526749, -0.34532880783081055, -0.04065266624093056, -0.02997756563127041, 0.009353608824312687, 0.05283105745911598, -0.06332998722791672, 0.01995851658284664, -0.012234095484018326, -0.017252394929528236, -0.001263007172383368, 0.029096441343426704, -0.05250721797347069, -0.0017931045731529593, -0.06241970136761665, -0.024478645995259285, 0.01065914798527956, -0.006917676888406277, -0.04789929464459419, -0.034074462950229645, 0.04918499290943146, -0.0025074994191527367, -0.038937631994485855, -0.05800572410225868, -0.03678572550415993, 0.005752100609242916, -0.033040571957826614, 0.07879835367202759, 0.03618966042995453, 0.0772012397646904, -0.026144107803702354, 0.08622801303863525, 0.020551420748233795, 0.02409515157341957, -0.08831377327442169, -0.017662011086940765, 0.00829437468200922, -0.01700430177152157, -0.014243836514651775, 0.03890400379896164, -0.0022476431913673878, -0.03397844359278679, -0.0025554492603987455, -0.031012404710054398, -0.030129021033644676, -0.03253757953643799, -0.0019016970181837678, 0.0035637770779430866, -0.02871270850300789, -0.006182721350342035, 0.0740417093038559, 0.023054072633385658, 0.021641481667757034, -0.014340657740831375, -0.004106140695512295, 0.0050085741095244884, -0.01569746434688568, -0.034787409007549286, 0.010600519366562366, 0.024928336963057518, -0.038601621985435486, 0.03752748295664787, 0.053403232246637344, 0.05371870473027229, -0.03950793668627739, -0.022952165454626083, 0.024042371660470963, -0.0361635684967041, 0.002438023453578353, 0.026367630809545517, -0.0153913963586092, -0.033378519117832184, 0.10074217617511749, -0.029338715597987175, 0.007810363546013832, 0.023360993713140488, 0.042103011161088943, -0.01679496094584465, 0.039276741445064545, -0.006894208490848541, -0.0457732118666172, 0.03877580165863037, -0.018369533121585846, 0.05131039768457413, -0.03189193084836006, -0.01362580992281437, 0.04982120916247368, 0.0037119430489838123, -0.039769645780324936, 0.08326733112335205, 0.025450056418776512, -0.01866813749074936, -0.03245287761092186, -0.01729077287018299, -0.0649474486708641, 0.0914439931511879, 0.008168285712599754, -0.23839835822582245, 0.025973308831453323, 0.059847306460142136, 0.07391276210546494, 0.0059547726996243, 0.029242590069770813, 0.043093323707580566, -0.048674698919057846, 0.027447307482361794, 0.024685755372047424, 0.037317290902137756, 0.05213707312941551, -0.021518109366297722, -0.0005120670539326966, 0.0014250196982175112, -0.04216453433036804, 0.06499910354614258, 0.002418536925688386, -0.007312856148928404, 0.005107143893837929, 0.015169510617852211, -0.040771469473838806, 0.1584528088569641, 0.0018778174417093396, 0.0015457142144441605, 0.008726012893021107, 0.00713827321305871, 0.038666870445013046, 0.045743223279714584, 0.034034613519907, 0.014403139241039753, 0.0033625545911490917, 0.03620075806975365, 0.023102670907974243, 0.02361770160496235, -0.04581933096051216, -0.011539698578417301, 0.03929084539413452, 0.0370195172727108, -0.018759295344352722, -0.040054067969322205, 0.0282101109623909, -0.033697813749313354, 0.02343735471367836, 0.0639914944767952, -0.01760796830058098, 0.0028146919794380665, -0.023332633078098297, -0.028445608913898468, 0.0029288495425134897, -0.012918200343847275, -0.03972608596086502, -0.01934255287051201, 0.01718795858323574, 0.040377624332904816, 0.06451570987701416, 0.021377259865403175, -0.01774701476097107, 0.03509526699781418, 0.014539512805640697, -0.027084460482001305, -0.05437634512782097, 0.14693215489387512, 0.032841797918081284, 0.04060938209295273 ]
[ 0.0014913597842678428, 0.033421631902456284, -0.045047301799058914, -0.012684470973908901, 0.008925328962504864, -0.0006262441747821867, -0.004719370044767857, 0.022712212055921555, -0.005067180376499891, -0.0031790011562407017, 0.004806890618056059, 0.008597620762884617, 0.05433759093284607, -0.03580471873283386, -0.00023355422308668494, -0.027100063860416412, -0.035052210092544556, -0.02714565210044384, 0.011143045499920845, -0.04421551525592804, -0.017043661326169968, 0.040861040353775024, 0.041684433817863464, 0.017212213948369026, -0.013648765161633492, 0.00893230177462101, -0.027874596416950226, -0.0000896532365004532, 0.009255412966012955, -0.13810372352600098, -0.010201624594628811, 0.006085473112761974, 0.018140507861971855, -0.0070723495446145535, -0.0011947180610150099, 0.008705660700798035, 0.005514694843441248, 0.005144551862031221, 0.0005972469807602465, 0.008069275878369808, 0.016072077676653862, -0.0037788578774780035, -0.007217070087790489, -0.0005449209129437804, -0.007964715361595154, -0.004142570309340954, -0.023420734331011772, -0.021730367094278336, -0.003281941171735525, 0.03637147322297096, -0.04439421370625496, 0.017926525324583054, -0.02073046565055847, 0.020171498879790306, 0.01689748279750347, -0.04208195209503174, -0.026318257674574852, 0.012906516902148724, 0.008924146182835102, -0.024184221401810646, 0.012340122833848, -0.004464133642613888, -0.0505126528441906, -0.02076534926891327, 0.008557774126529694, -0.018142636865377426, -0.007977438159286976, 0.005016167648136616, 0.0019099228084087372, 0.022610070183873177, -0.03056664951145649, 0.027358828112483025, -0.05303054302930832, -0.0015484762843698263, -0.0071052019484341145, -0.014407997019588947, 0.005567301530390978, 0.0018959599547088146, -0.03302681818604469, -0.03050057962536812, -0.03442608565092087, 0.010880452580749989, 0.035239655524492264, 0.004017345607280731, -0.011045601218938828, 0.003390164813026786, -0.012429635971784592, -0.010572007857263088, 0.013059583492577076, 0.011333540081977844, 0.031024005264043808, -0.008118882775306702, 0.02001596800982952, -0.011741414666175842, -0.0727192610502243, -0.020689697936177254, 0.012805579230189323, -0.004147693514823914, -0.02399475686252117, 0.8496056199073792, 0.015768619254231453, 0.019001975655555725, 0.003943430259823799, 0.0011144706513732672, 0.02207191474735737, 0.010992207564413548, -0.0010350935626775026, 0.01794283092021942, 0.04135320335626602, -0.03638289123773575, 0.03296074643731117, 0.0118069713935256, 0.01746118813753128, -0.012109446339309216, 0.004527296870946884, 0.027594290673732758, 0.0026752231642603874, -0.026604626327753067, -0.004629163071513176, 0.008059072308242321, 0.0017537778476253152, -0.016008518636226654, -0.0027051419019699097, 0.015818221494555473, -0.005454776808619499, -0.1599309742450714, 0.022128591313958168, -6.403019850000728e-33, 0.05319705978035927, -0.009960534982383251, -0.018422668799757957, -0.014165655709803104, 0.01925170049071312, -0.0022957485634833574, 0.01651419699192047, 0.020313015207648277, -0.04902057349681854, -0.014921736903488636, 0.034302968531847, 0.010216091759502888, -0.017438551411032677, -0.02559499256312847, 0.04154488444328308, -0.04594716802239418, -0.0040722014382481575, 0.037720516324043274, 0.010753857903182507, -0.0010798786533996463, 0.008202171884477139, 0.02926517464220524, 0.018722832202911377, 0.0004390383546706289, 0.03780225291848183, 0.01724214293062687, 0.010515227913856506, -0.0024762614630162716, -0.012909927405416965, -0.04412829503417015, -0.010484997183084488, 0.01868300512433052, -0.026897193863987923, -0.051649801433086395, 0.007827718742191792, -0.05879957601428032, -0.014826631173491478, -0.017521562054753304, -0.01256678905338049, -0.03271176666021347, -0.021923450753092766, -0.0008707154192961752, -0.027814513072371483, 0.001623966614715755, -0.0038382387720048428, -0.05074385553598404, -0.008433465845882893, 0.010308578610420227, 0.033397335559129715, 0.02452879771590233, 0.04629801958799362, 0.013213936239480972, 0.04512178525328636, -0.019535614177584648, -0.029561998322606087, 0.01086547039449215, -0.036077387630939484, -0.01894521899521351, -0.0022810071241110563, 0.04188765212893486, 0.03417084366083145, 0.004895585123449564, 0.001977255567908287, 0.04204893857240677, 0.006198104005306959, -0.015562119893729687, 0.030790084972977638, 0.027341807261109352, 0.019631939008831978, 0.015567251481115818, -0.03361610323190689, 0.012813917361199856, 0.0044603170827031136, -0.03596048057079315, 0.02367791160941124, -0.003928246442228556, -0.02099183388054371, 0.01314875204116106, 0.028902700170874596, 0.02157830074429512, 0.018883559852838516, -0.023734549060463905, 0.004827606491744518, -0.014847001060843468, -0.014721755869686604, 0.02799752913415432, 0.04360423609614372, -0.03870821371674538, -0.027198608964681625, -0.0016683528665453196, 0.016137994825839996, 0.026341641321778297, -0.01135378610342741, -0.017094386741518974, -0.006629711948335171, 6.847272960639056e-33, 0.003890011692419648, -0.014031309634447098, 0.009118547663092613, 0.020936990156769753, -0.00760892778635025, -0.028380196541547775, 0.02198752760887146, 0.014005315490067005, -0.06470876187086105, 0.008567349053919315, 0.005476503632962704, 0.026830710470676422, -0.022552579641342163, -0.010210851207375526, 0.0774613544344902, -0.01964314468204975, 0.0002275818114867434, -0.02114340476691723, -0.0006914488039910793, -0.03171982988715172, -0.0015823673456907272, -0.017192445695400238, 0.004610544536262751, 0.030373552814126015, 0.01794574037194252, 0.025315895676612854, -0.01860140636563301, 0.01667753979563713, -0.010156683623790741, -0.0009774634381756186, -0.027602268382906914, 0.004918796941637993, -0.014405330643057823, -0.008275921456515789, -0.02070234902203083, 0.04181865602731705, -0.007468638941645622, 0.024294182658195496, 0.04344533011317253, -0.014396240003407001, 0.04184861108660698, 0.02652604691684246, -0.0031327952165156603, 0.0133826220408082, 0.010585055686533451, 0.01631784997880459, -0.004857848398387432, 0.02441846951842308, -0.011520478874444962, 0.03877568617463112, 0.017940865829586983, 0.02574596367776394, 0.0032305093482136726, -0.02569749765098095, -0.01123407855629921, -0.007913687266409397, -0.030121931806206703, 0.01440309640020132, -0.060069095343351364, -0.0033429921604692936, -0.019405707716941833, 0.03909578546881676, -0.008947680704295635, 0.018424538895487785, -0.01807931251823902, -0.004641181789338589, -0.02574884705245495, -0.010584299452602863, 0.018372464925050735, -0.03339904174208641, 0.028162093833088875, -0.013312118127942085, -0.025437375530600548, 0.0328996479511261, 0.04198985919356346, -0.018889931961894035, -0.0004443065554369241, 0.040780212730169296, -0.01726733334362507, 0.0452129989862442, 0.028306594118475914, 0.023835068568587303, 0.010418733581900597, -0.011883312836289406, -0.005995544139295816, 0.043302420526742935, -0.0551392063498497, 0.009616178460419178, 0.018399205058813095, -0.02310062386095524, -0.004597435239702463, -0.043525565415620804, 0.0037703230045735836, 0.008144106715917587, 0.009241464547812939, -1.248684444732362e-8, -0.05077531561255455, -0.00021122975158505142, -0.018292328342795372, 0.022790996357798576, 0.03971339762210846, 0.024839729070663452, -0.034698352217674255, -0.02584441751241684, -0.013100697658956051, -0.01587175391614437, 0.04701637849211693, -0.02931082993745804, -0.01207291055470705, 0.025618011131882668, 0.0007211976335383952, -0.028685133904218674, 0.01746235601603985, -0.056805454194545746, 0.009321454912424088, 0.0033698263578116894, 0.029915357008576393, 0.057022228837013245, 0.010434038937091827, 0.0008300641202367842, -0.013408198952674866, 0.007312859874218702, 0.007740487344563007, -0.04707470163702965, -0.0010277536930516362, 0.032957643270492554, 0.04986181855201721, -0.036705367267131805, -0.05335012078285217, 0.013061062432825565, 0.0040266732685267925, -0.05306495726108551, 0.009979353286325932, 0.012949484400451183, -0.010796668007969856, -0.0016979207284748554, -0.010511478409171104, -0.02099103294312954, 0.008313385769724846, -0.02800559811294079, -0.0459480844438076, -0.033346083015203476, -0.022366387769579887, 0.01307671144604683, 0.03779982402920723, -0.048884276300668716, 0.042812034487724304, -0.011793817393481731, 0.027856411412358284, 0.04925328865647316, 0.008242130279541016, -0.004594562109559774, 0.036143310368061066, -0.01158383022993803, -0.007895483635365963, 0.016660593450069427, 0.03196840360760689, -0.01578698307275772, -0.0068995170295238495, -0.006791272200644016 ]
finding-ways-to-use-bash-command-line-history-shortcuts
https://markhneedham.com/blog/2012/09/19/finding-ways-to-use-bash-command-line-history-shortcuts
false
2012-09-07 15:45:16
Apt-Cacher-Server: Extra junk at end of file
[ "software-development" ]
[ "Software Development" ]
We've been installing https://help.ubuntu.com/community/Apt-Cacher-Server[Apt-Cache-Server] so that we can cache some of the packages that we're installing using apt-get on our own network. (Almost) Following the instructions from the home page we added the following to +++<cite>+++/etc/apt/apt.conf.d/01proxy+++</cite>+++: [source,text] ---- Acquire::http::Proxy "http://apt-cache-server:3142" ---- And when we ran 'apt-get update' we were getting the following error: [source,text] ---- E: Syntax error /etc/apt/apt.conf.d/01proxy:2: Extra junk at end of file ---- We initially thought it must be a problem with having an extra space or line ending but it turns out we had just left off the semi colon. D'oh! The following is what we needed: [source,text] ---- Acquire::http::Proxy "http://apt-cache-server:3142"; ---- We also came across http://askubuntu.com/questions/61540/how-to-update-software-through-proxy[a post on StackOverflow] which suggested that sometimes that doesn't work and something more like this is required: [source,text] ---- Acquire::http { Proxy "http://apt-cache-server:3142"; }; ---- Either of those seem to work for us but I guess YMMV.
null
null
[ -0.0005365198012441397, -0.017421092838048935, -0.007785288151353598, 0.026716163381934166, 0.08508755266666412, 0.005717011634260416, 0.019226301461458206, 0.043862320482730865, 0.02060415782034397, -0.0417594388127327, -0.03912166878581047, 0.013212098740041256, -0.05945485085248947, 0.005648343358188868, -0.00576734310016036, 0.059669770300388336, 0.08368906378746033, 0.025419481098651886, -0.035370923578739166, 0.00447456631809473, 0.035148024559020996, 0.06115620210766792, -0.03047027438879013, 0.020458407700061798, 0.0001136155187850818, 0.03219160437583923, -0.004058531951159239, 0.004773214925080538, -0.07589105516672134, -0.0146401422098279, 0.04021396115422249, 0.013394283130764961, 0.017102360725402832, -0.04253976047039032, 0.005125273484736681, 0.013820813968777657, -0.035720426589250565, 0.01807236857712269, 0.0036257540341466665, 0.03881876915693283, -0.06831087917089462, 0.020767971873283386, 0.010414384305477142, -0.001488161738961935, -0.057406045496463776, 0.01777847670018673, -0.04717971757054329, 0.02234809659421444, -0.024098413065075874, -0.038315970450639725, -0.03892938420176506, 0.02261052094399929, -0.007490372285246849, -0.015171266160905361, 0.04442804679274559, 0.05133866146206856, -0.0026046582497656345, -0.0713663324713707, 0.01763741485774517, -0.034748487174510956, -0.027826663106679916, 0.021948670968413353, 0.0066405246034264565, 0.01724175736308098, -0.013381234370172024, -0.021036416292190552, 0.0030162702314555645, 0.04399601370096207, -0.04030856490135193, -0.03734148293733597, 0.0018828584579750896, 0.02102397195994854, -0.034330468624830246, -0.02895408868789673, 0.004571058321744204, -0.029673831537365913, -0.021927988156676292, 0.045920103788375854, 0.006721950136125088, 0.08061590045690536, -0.04138653725385666, 0.007967215962707996, 0.018396012485027313, 0.0003491449751891196, 0.012888617813587189, -0.023304816335439682, -0.03672058880329132, 0.015290860086679459, -0.05069079250097275, 0.07153382152318954, 0.03036670945584774, -0.06934749335050583, 0.025899238884449005, 0.01424094196408987, -0.012752900831401348, -0.00853789784014225, -0.01501070149242878, 0.005323137156665325, 0.03797987848520279, 0.009916197508573532, -0.03410923853516579, 0.011839679442346096, 0.004696728195995092, 0.014118039049208164, -0.05372639745473862, 0.007972784340381622, -0.024401579052209854, -0.030643658712506294, -0.022883493453264236, -0.03542117774486542, 0.01409633457660675, 0.030965732410550117, -0.0036418000236153603, 0.01189407054334879, -0.08514755964279175, 0.06450255215167999, -0.013684508390724659, -0.05958390235900879, 0.013042807579040527, 0.025192277505993843, 0.0412091463804245, 0.04194680228829384, -0.01816287823021412, 0.06766710430383682, 0.029128406196832657, 0.04973965510725975, 0.019948910921812057, 0.02891816943883896, -0.026802662760019302, -0.05710693076252937, 0.0019375485135242343, 0.07774858921766281, 0.021710626780986786, 0.0081794960424304, -0.0018132207915186882, 0.008692992851138115, -0.04070747271180153, -0.020515108481049538, 0.06245629861950874, -0.014629865996539593, -0.032300423830747604, -0.010736088268458843, -0.030489599332213402, 0.015121624805033207, 0.04925618693232536, 0.012475907802581787, 0.022204365581274033, -0.04671969264745712, -0.03133575618267059, 0.028616223484277725, 0.03390470892190933, 0.016403991729021072, 0.033182211220264435, -0.03167691081762314, 0.010108686983585358, 0.06684579700231552, 0.04065454751253128, 0.01935637556016445, -0.045331403613090515, 0.010907664895057678, 0.007862496189773083, 0.05141419917345047, -0.0009644395322538912, 0.046144068241119385, -0.018904516473412514, -0.046914491802453995, -0.044325072318315506, 0.06752939522266388, 0.01430950965732336, 0.030561355873942375, -0.05381215363740921, -0.053429462015628815, 0.06359189748764038, -0.046055350452661514, -0.004907466471195221, 0.03979148715734482, 0.08362404257059097, 0.03421298786997795, 0.021738946437835693, 0.03298180550336838, -0.08284351974725723, 0.06231214851140976, 0.026639072224497795, 0.021637361496686935, -0.00717905955389142, 0.0014210969675332308, 0.09731321781873703, 0.03771532326936722, 0.03652184456586838, 0.027946628630161285, -0.0965423732995987, -0.09286530315876007, -0.034602656960487366, 0.008598057553172112, 0.046169210225343704, -0.038689106702804565, -0.02642277255654335, 0.05138280615210533, 0.04675337299704552, 0.03611719235777855, -0.0017575793899595737, 0.0013202580157667398, 0.04013200104236603, -0.08606193959712982, -0.057818006724119186, 0.048485949635505676, 0.008167163468897343, -0.03871474787592888, -0.03698239475488663, 0.027208128944039345, -0.011291156522929668, -0.013147459365427494, 0.023147759959101677, -0.015437583439052105, 0.033519599586725235, -0.004954122938215733, 0.05871026962995529, -0.035374462604522705, 0.04648946598172188, -0.04522420093417168, 0.0046309297904372215, -0.007770586758852005, -0.02259552665054798, 0.018974777311086655, 0.0007301362929865718, 0.11668273061513901, 0.04743894562125206, -0.00187450903467834, 0.003088250057771802, 0.015889780595898628, 0.024970849975943565, -0.03764410689473152, -0.002657518023625016, 0.031849171966314316, -0.006218703929334879, 0.010597444139420986, -0.01139899343252182, -0.03975275903940201, 0.006507958751171827, -0.05012236535549164, -0.00109670904930681, 0.06878232210874557, -0.025080876424908638, 0.04612894356250763, 0.01202267687767744, -0.0380525141954422, -0.026848962530493736, -0.06597573310136795, -0.08116202056407928, -0.00252322549931705, 0.028654377907514572, -0.018901165574789047, 0.026066264137625694, -0.052458181977272034, -0.0344528965651989, -0.025025181472301483, -0.054902948439121246, 0.020319238305091858, 0.04494777321815491, 0.038105037063360214, -0.04348449409008026, 0.03201483562588692, -0.0020674760453402996, 0.01223381981253624, 0.008415354415774345, -0.050702229142189026, -0.05529888719320297, -0.003199876518920064, -0.009091398678719997, 0.007355960551649332, 0.02089998871088028, 0.006756702437996864, -0.004523229319602251, -0.01734929159283638, 0.00820129457861185, -0.025989927351474762, 0.035333991050720215, 0.029588570818305016, 0.016530977562069893, -0.04609717056155205, 0.006664671935141087, 0.03915206342935562, -0.03690528869628906, -0.03096049651503563, -0.0009629931882955134, -0.06569790095090866, 0.03607752174139023, -0.05555271729826927, -0.08056764304637909, -0.0032063962426036596, -0.002371440175920725, 0.007993526756763458, -0.017152434214949608, 0.008344212546944618, 0.0449284203350544, 0.012126217596232891, 0.01108882948756218, -0.0005791813600808382, 0.03003879450261593, 0.014234522357583046, 0.034185390919446945, -0.0017758967587724328, 0.007227442227303982, 0.014421827159821987, -0.006431933492422104, -0.06642798334360123, 0.010281411930918694, -0.05397471413016319, -0.23566384613513947, 0.05335557833313942, 0.012763334438204765, -0.04571332037448883, 0.04068411886692047, -0.036637332290410995, -0.020950214937329292, -0.04008893668651581, -0.02552315965294838, 0.012908058241009712, -0.017457053065299988, -0.03736317157745361, 0.052756935358047485, 0.029654765501618385, -0.034712862223386765, 0.022868556901812553, 0.0023825056850910187, -0.013243705034255981, -0.014881191775202751, 0.012226481921970844, 0.014193335548043251, -0.06515303999185562, 0.053419917821884155, 0.030173705890774727, 0.039111070334911346, 0.04561150074005127, -0.05513962730765343, 0.06317197531461716, -0.04706225544214249, -0.023423198610544205, 0.02358262799680233, -0.0049344627186656, 0.007644056808203459, 0.025756370276212692, -0.04580763727426529, 0.0117267444729805, 0.025957869365811348, 0.006028080824762583, -0.002661921549588442, 0.01382658164948225, -0.028015486896038055, -0.017917554825544357, 0.021304704248905182, -0.03379712998867035, 0.04888875409960747, 0.00026045271079055965, -0.06824345886707306, -0.024628980085253716, -0.029865363612771034, 0.06835021823644638, -0.025921057909727097, -0.03179683908820152, -0.019269820302724838, 0.02958180010318756, -0.008674759417772293, -0.0033950696233659983, -0.018450437113642693, -0.008825012482702732, -0.029825661331415176, -0.02168825827538967, -0.000031277468224288896, -0.01712741330265999, -0.03038640506565571, -0.04428696259856224, 0.021844299510121346, -0.03704619035124779, -0.029118623584508896, -0.04485803842544556, 0.06931724399328232, 0.019279591739177704, -0.018922122195363045, -0.04950818791985512, -0.00501280790194869, -0.08544421195983887, 0.003998825326561928, -0.061918772757053375, -0.059814006090164185, -0.0044782450422644615, -0.030099863186478615, 0.049854688346385956, -0.04225819557905197, -0.0004043292719870806, 0.005951486527919769, 0.01643003337085247, 0.020228186622262, -0.01954510435461998, 0.024172166362404823, -0.011239676736295223, -0.026607902720570564, -0.006438498850911856, 0.06097587198019028, -0.04481080546975136, -0.04331381991505623, -0.03385717794299126, -0.007002460304647684, -0.0008110618218779564, -0.007001126650720835, 0.047149185091257095, 0.030794190242886543, 0.047774720937013626, 0.04309387132525444, -0.058414556086063385, 0.012810914777219296, -0.05091126263141632, -0.015439575538039207, 0.0192367322742939, -0.02729295939207077, -0.013794735074043274, 0.02464963309466839, 0.021514978259801865, -0.002556359861046076, -0.027180155739188194, 0.010144299827516079, -0.029089124873280525, -0.07723645865917206, 0.01145961880683899, 0.012600986286997795, 0.020965788513422012, -0.008291952311992645, -0.02110433764755726, -0.036232322454452515, 0.024284852668642998, 0.03390153497457504, -0.0023003872483968735, -0.028465580195188522, -0.03944755718111992, -0.010804473422467709, -0.02221771515905857, 0.03321482986211777, 0.021165072917938232, 0.0027586454525589943, 0.016686830669641495, 0.05360424891114235, -0.04018806293606758, 0.02089579962193966, -0.017626317217946053, -0.005291569046676159, -0.017870621755719185, 0.00941663607954979, -0.001264269812963903, -0.04641294851899147, 0.011671469546854496, -0.006428517401218414, 0.037041570991277695, 0.049406860023736954, 0.0071120369248092175, 0.05351986736059189, -0.03910898417234421, 0.008973858319222927, -0.004575477447360754, 0.004398616496473551, -0.03295043110847473, 0.036652229726314545, -0.021675536409020424, -0.03397930786013603, -0.0005694704013876617, 0.03242684528231621, -0.003193784272298217, -0.02894800715148449, -0.017087025567889214, 0.008505532518029213, -0.09959854185581207, 0.023459551855921745, 0.008154516108334064, -0.03871091455221176, 0.04259655252099037, 0.0013054250739514828, -0.007345220074057579, -0.04097101464867592, -0.0008949163602665067, 0.049945034086704254, 0.05685155466198921, -0.013788601383566856, 0.02072753570973873, 0.007875693030655384, -0.0125692468136549, 0.013322615064680576, 0.024217721074819565, 0.0400693379342556, 0.008826403878629208, -0.011013880372047424, 0.01195717602968216, 0.028594011440873146, 0.008216247893869877, 0.03498196601867676, -0.021209951490163803, -0.036956921219825745, -0.005475647747516632, -0.027573933824896812, -0.04848127067089081, -0.019352633506059647, 0.0015920341247692704, -0.005657948553562164, 0.024844227358698845, 0.004596598446369171, -0.08974012732505798, 0.03466925770044327, 0.042722877115011215, -0.014190453104674816, 0.029633821919560432, -0.0012064649490639567, 0.004480988718569279, -0.07085733115673065, 0.05361972749233246, 0.047666240483522415, -0.05181474983692169, 0.015868723392486572, -0.0016414806013926864, 0.018756013363599777, -0.0013255785452201962, 0.014484977349638939, -0.04639039188623428, -0.019749250262975693, 0.008526451885700226, 0.012900309637188911, -0.0250034648925066, -0.05658547580242157, -0.005646637640893459, 0.002958947326987982, -0.0017766628880053759, 0.02372034639120102, 0.01061930600553751, 0.0016526584513485432, 0.007658213376998901, -0.05451823025941849, 0.01706131361424923, -0.009741303510963917, -0.04201703891158104, 0.018665965646505356, -0.002881373045966029, 0.05183907598257065, -0.01577943004667759, 0.0405643954873085, 0.006528932135552168, 0.0011465154821053147, -0.010488743893802166, -0.04405127465724945, -0.008109952323138714, -0.0249305609613657, 0.013569244183599949, -0.022249016910791397, 0.002697973046451807, -0.03491511568427086, -0.01274735014885664, -0.04406973347067833, 0.022248009219765663, 0.009130267426371574, -0.0031970704440027475, -0.036092761904001236, 0.05979671701788902, 0.0004029909032396972, 0.0020995342638343573, -0.037675391882658005, -0.002310472074896097, 0.05965427681803703, -0.05836017057299614, -0.05737709254026413, 0.005933716893196106, -0.037085890769958496, 0.05801789462566376, 0.03965722396969795, -0.001983635127544403, -0.0562230721116066, 0.034214168787002563, 0.023818088695406914, -0.01468005869537592, 0.03132783994078636, -0.007162670139223337, 0.01300135813653469, -0.03405517339706421, -0.035508472472429276, -0.08451423048973083, 0.013959319330751896, 0.009270085021853447, 0.005244073923677206, -0.025989091023802757, 0.04489767923951149, -0.039815835654735565, 0.025097088888287544, -0.08309707790613174, -0.00577537203207612, 0.0503971241414547, -0.0003797464887611568, -0.023517195135354996, -0.002798099536448717, -0.06836365163326263, 0.0006778013193979859, 0.022101815789937973, -0.06723017990589142, -0.006366492714732885, -0.0430065356194973, 0.04733289033174515, 0.039695195853710175, 0.02626464143395424, -0.021199584007263184, 0.016367482021450996, 0.0748061090707779, 0.02466741017997265, 0.036833252757787704, 0.0169559083878994, -0.03631114214658737, 0.02734213136136532, 0.04337162524461746, 0.012250376865267754, -0.0008072390919551253, 0.006384824402630329, -0.01907452568411827, -0.05569976195693016, 0.013998203910887241, -0.01911279745399952, -0.011877208016812801, -0.042929839342832565, 0.044144585728645325, 0.0017876666970551014, -0.03378762677311897, -0.033600397408008575, 0.03087995946407318, -0.035554785281419754, -0.03299596905708313, -0.006108549889177084, 0.01239730603992939, -0.05264124274253845, 0.0587506927549839, 0.02517838217318058, 0.03411120921373367, 0.06580325961112976, 0.00240169744938612, -0.020633844658732414, -0.004938916303217411, 0.04196486994624138, 0.09117911756038666, -0.011168655939400196, 0.04834885895252228, 0.07921817153692245, 0.011933211237192154, -0.03574445843696594, 0.007326145656406879, -0.028288651257753372, -0.025673124939203262, -0.03059948980808258, 0.0005789686110801995, 0.06383059918880463, 0.0016665187431499362, 0.07426217943429947, -0.014758432283997536, 0.052394602447748184, 0.0004299872962292284, 0.03362159803509712, 0.030928103253245354, 0.011075220070779324, -0.008492626249790192, 0.031092602759599686, 0.00926713552325964, -0.023193998262286186, 0.017970263957977295, 0.013112181797623634, 0.01377691887319088, -0.008568713441491127, -0.009414969012141228, -0.0006694547482766211, 0.013883833773434162, 0.008147545158863068, 0.07473174482584, -0.007257103454321623, -0.011198562569916248, -0.009180556982755661, 0.04446765035390854, -0.006974071264266968, 0.04276484251022339, 0.006253695115447044, -0.02397155575454235, 0.010728280991315842, -0.018384525552392006, -0.01605963334441185, -0.02966431714594364, -0.00665565999224782, 0.04297568276524544, -0.026234131306409836, 0.020137278363108635, 0.020295530557632446, -0.008914748206734657, -0.05015503615140915, -0.030015146359801292, -0.03962768241763115, -0.008464331738650799, -0.03206038475036621, 0.013082555495202541, 0.015702320262789726, 0.003371492028236389, -0.026144681498408318, -0.01586267724633217, -0.03855906054377556, -0.016779281198978424, -0.006806876510381699, -0.059198979288339615, -0.014872743748128414, 0.019413482397794724, 0.024322567507624626, 0.013982756994664669, -0.010008228942751884, 0.052825190126895905, 0.02422504499554634, 0.025310903787612915, 0.013571214862167835, -0.007694909814745188, 0.012363980524241924, 0.007437021471560001, 0.029143601655960083, -0.09638164937496185, 0.032200537621974945, 0.05069755017757416, 0.010304554365575314, -0.06192079558968544, 0.02567528747022152, 0.041282013058662415, -0.041855618357658386, 0.056563276797533035, -0.02574753947556019, 0.015258226543664932, -0.00972973182797432, -0.019391754642128944, -0.0001394509308738634, 0.018781552091240883, 0.022581305354833603, 0.01156422309577465, 0.09561935067176819, 0.0349583737552166, -0.004746789112687111, -0.058750443160533905, 0.002258562482893467, 0.025485800579190254, 0.023010920733213425, -0.049914516508579254, 0.0060891336761415005, -0.06080498546361923, -0.10623738914728165, -0.049224868416786194, 0.027405038475990295, -0.030107630416750908, -0.048617295920848846, -0.004835826810449362, -0.016159415245056152, -0.04850786179304123, 0.0026284107007086277, -0.013880123384296894, 0.01632247120141983, -0.0166404377669096, -0.025405626744031906, -0.007156048901379108, 0.034648019820451736, -0.007809430360794067, -0.029999883845448494, 0.041604265570640564, -0.04855158552527428, 0.007519613020122051, -0.020616792142391205, 0.02287459187209606, 0.08830680698156357, -0.005323103629052639, 0.01603604108095169 ]
[ -0.07764770090579987, -0.026350609958171844, -0.0011797402985394, -0.030685512349009514, 0.04172738268971443, -0.09761029481887817, -0.030734999105334282, -0.0028944648802280426, -0.005704241339117289, -0.031009726226329803, 0.03162594884634018, -0.0674579069018364, 0.03536989539861679, -0.026484929025173187, 0.08782936632633209, 0.04026731103658676, -0.00684439018368721, -0.047286733984947205, 0.007734152488410473, 0.006044045556336641, 0.011103681288659573, -0.0243110042065382, -0.037430670112371445, -0.021344827488064766, -0.031369175761938095, 0.037012483924627304, 0.043080586940050125, -0.029907051473855972, -0.0232451930642128, -0.18310235440731049, 0.020589860156178474, -0.023132402449846268, -0.01730438508093357, -0.017190024256706238, 0.04287337884306908, 0.0553278885781765, 0.013543237000703812, -0.008190685883164406, -0.007077700924128294, 0.0570184662938118, 0.009899897500872612, 0.02112416923046112, -0.07828310132026672, -0.027612261474132538, 0.009277842938899994, -0.0026307725347578526, -0.003198363585397601, -0.019253406673669815, 0.04458344355225563, 0.0017563282744958997, -0.052903901785612106, 0.05871361866593361, -0.00910507794469595, -0.018702929839491844, -0.029201986268162727, 0.01871827058494091, 0.07660536468029022, 0.06877562403678894, -0.00033442562562413514, 0.011937442235648632, 0.035557396709918976, -0.008353766053915024, -0.13288617134094238, 0.09172464162111282, 0.08440086245536804, 0.03541983291506767, -0.010814016684889793, -0.01694595068693161, 0.004010094329714775, 0.08050253987312317, -0.01571047492325306, 0.002473577857017517, -0.04736832156777382, 0.08493833243846893, 0.011798446998000145, -0.0025542289949953556, -0.0022834502160549164, 0.0363847091794014, 0.040336381644010544, -0.049654271453619, -0.039802733808755875, -0.029675522819161415, -0.026033228263258934, 0.012884858064353466, -0.045363590121269226, -0.0026995313819497824, -0.015673350542783737, 0.08587287366390228, 0.03144838660955429, 0.02422926388680935, 0.034162625670433044, -0.0006815218366682529, 0.06417195498943329, 0.026171306148171425, -0.1207394227385521, -0.013383614830672741, -0.002577625447884202, 0.033229973167181015, -0.05695497244596481, 0.4255303144454956, -0.005508746020495892, -0.03702826425433159, 0.050060074776411057, 0.020862732082605362, 0.0346103273332119, 0.02107195556163788, 0.009381874464452267, -0.02837217040359974, -0.0004573888727463782, -0.027684031054377556, 0.025050712749361992, -0.012544633820652962, 0.060453686863183975, -0.055788151919841766, 0.04229883477091789, -0.011413898319005966, 0.026057204231619835, -0.004951281938701868, -0.014003230258822441, 0.005996220745146275, -0.031511176377534866, -0.0004026417445857078, 0.04113937169313431, 0.025655239820480347, 0.025157764554023743, -0.034637730568647385, 0.008448413573205471, 0.04894518479704857, 0.025390028953552246, 0.0665375217795372, 0.00674324668943882, -0.032866183668375015, -0.029314076527953148, 0.010994547046720982, -0.017922233790159225, 0.03321373090147972, -0.004128242377191782, -0.021526983007788658, -0.02136993035674095, 0.012499401345849037, -0.04828931391239166, -0.020560508593916893, 0.02037963643670082, -0.007112887687981129, -0.012407442554831505, 0.08100118488073349, 0.0243570264428854, -0.0027284063398838043, -0.03992800787091255, -0.05486379191279411, -0.024088021367788315, 0.021766439080238342, 0.03754342719912529, -0.05114790052175522, 0.01578953117132187, 0.0022057765163481236, 0.06083521991968155, -0.015797428786754608, -0.06934366375207901, -0.003447782713919878, -0.005066103767603636, -0.022421089932322502, -0.03967141732573509, 0.02574208937585354, 0.07266179472208023, -0.07507972419261932, -0.05710415169596672, 0.022781647741794586, 0.015092217363417149, -0.04353976249694824, -0.00004832694321521558, 0.014975626952946186, -0.007610337808728218, -0.04623198136687279, 0.04030920937657356, -0.058049868792295456, -0.0045594945549964905, 0.004164590034633875, 0.01101056206971407, -0.012137521989643574, 0.006340934429317713, 0.010549264959990978, -0.05083809420466423, 0.03356650844216347, -0.032762110233306885, -0.12645655870437622, -0.05708780512213707, 0.017579026520252228, -0.007339556701481342, -0.025456521660089493, -0.08978114277124405, -0.005272699519991875, -0.053885895758867264, 0.061660286039114, -0.0025297401007264853, -0.007947560399770737, -0.009712109342217445, 0.02502678893506527, -0.03147774562239647, -0.05821993574500084, 0.08365624397993088, 0.04903600364923477, -0.0494026355445385, 0.017102090641856194, -0.08497709780931473, -0.009408281184732914, 0.03010987490415573, -0.020529836416244507, 0.07083772122859955, 0.029510846361517906, -0.006321853492408991, 0.01581008918583393, 0.0024845630396157503, 0.043762918561697006, 0.003127287607640028, -0.02562655135989189, -0.010316235013306141, -0.001578545430675149, 0.061922863125801086, 0.04209724813699722, 0.0007793189724907279, -0.006367547437548637, -0.0447087325155735, -0.3429829180240631, -0.0161918792873621, -0.02420787885785103, 0.0027778022922575474, 0.025717251002788544, -0.04821353405714035, 0.04121489077806473, -0.01757587119936943, -0.028620243072509766, 0.02771603874862194, 0.059380754828453064, -0.037954192608594894, 0.030454961583018303, -0.03653126582503319, 0.004032544791698456, 0.008706832304596901, -0.0034530041739344597, 0.000016368216165574268, -0.01813274249434471, -0.004067480564117432, -0.02367311343550682, -0.07621727138757706, -0.01310091745108366, -0.0402526818215847, 0.0346609465777874, -0.01049558725208044, 0.08966431021690369, 0.07102120667695999, 0.0411948524415493, -0.06590962409973145, 0.06449034810066223, 0.03314101696014404, 0.0315384715795517, -0.1413830667734146, 0.008368910290300846, 0.023625975474715233, 0.01270598080009222, 0.014218482188880444, 0.0386577732861042, -0.03389837592840195, -0.05014588683843613, 0.013068869709968567, -0.04315750673413277, -0.04190957918763161, -0.013278793543577194, -0.001388555858284235, -0.011160802096128464, -0.005795488599687815, -0.03835344314575195, 0.0447719469666481, 0.0050956173799932, 0.04150715097784996, -0.007819666527211666, -0.00910293497145176, 0.0021201488561928272, 0.011018233373761177, -0.013311482965946198, -0.027169151231646538, 0.06486144661903381, -0.03122870996594429, 0.03298017010092735, 0.06092743203043938, 0.04133021458983421, -0.0788373276591301, -0.004984135273844004, 0.015118072740733624, 0.007855953648686409, -0.009661216288805008, 0.023019397631287575, -0.008407020941376686, -0.01629272848367691, 0.118205726146698, -0.019278230145573616, 0.02206713892519474, -0.019823919981718063, 0.011462777853012085, -0.019474199041724205, 0.023459233343601227, 0.0005791808944195509, -0.04204986244440079, 0.0686451718211174, -0.0250900499522686, 0.03843245282769203, -0.06600240617990494, 0.004570069722831249, 0.06211907044053078, -0.03860357031226158, -0.057322099804878235, 0.06525854021310806, 0.03662842884659767, -0.005214788019657135, -0.015705831348896027, -0.03379439935088158, -0.06695064902305603, 0.07070927321910858, 0.0038388005923479795, -0.23256437480449677, 0.029514217749238014, 0.08411150425672531, 0.030790239572525024, -0.0026065013371407986, -0.010458135977387428, 0.043300312012434006, -0.012658128514885902, -0.0014930970501154661, 0.036307960748672485, 0.02683473564684391, 0.04475677013397217, -0.03451380506157875, -0.015569840557873249, 0.01902865432202816, -0.033946454524993896, 0.0519983135163784, 0.008984415791928768, -0.002939030295237899, -0.04488489031791687, -0.008029147982597351, -0.05972456932067871, 0.13444338738918304, 0.023639138787984848, -0.014590928331017494, 0.016447002068161964, -0.02320599928498268, 0.036406010389328, 0.049699582159519196, -0.005951027385890484, -0.02384541742503643, 0.03727696090936661, -0.01791141927242279, -0.01956867054104805, 0.010320110246539116, 0.0011335645103827119, -0.0016541862860321999, 0.015816131606698036, 0.029046621173620224, 0.0028841267339885235, -0.026903269812464714, 0.02539145201444626, -0.02157469652593136, 0.07452350854873657, 0.04472817853093147, -0.03913845494389534, 0.014218444935977459, -0.01618855446577072, -0.03805292770266533, 0.01728668436408043, -0.01030012872070074, 0.003529126988723874, -0.00443578464910388, -0.02267375960946083, 0.02672310546040535, 0.035114094614982605, -0.016094781458377838, -0.04739542677998543, -0.022168897092342377, 0.02596866898238659, 0.008400287479162216, -0.036832161247730255, 0.13436810672283173, -0.027586162090301514, 0.03340199589729309 ]
[ 0.0025193619076162577, 0.025470111519098282, 0.021514978259801865, -0.02256683260202408, -0.03299283981323242, -0.020394664257764816, 0.01431407779455185, -0.002239818451926112, -0.011519504711031914, 0.01076353620737791, -0.005986299831420183, 0.02606636844575405, 0.014995880424976349, -0.03377167135477066, 0.013824498280882835, 0.011501340195536613, 0.021833913400769234, -0.004085332155227661, 0.042283058166503906, -0.03409670665860176, -0.03740542009472847, 0.015466767363250256, 0.012388129718601704, 0.003269405337050557, -0.008080719038844109, 0.03518768027424812, -0.10264991968870163, 0.0018641198985278606, 0.03824848681688309, -0.14504973590373993, 0.027013173326849937, -0.028571369126439095, -0.01647489331662655, -0.0024225455708801746, -0.02147744409739971, 0.0015508569777011871, -0.054175395518541336, 0.01767577975988388, 0.040152646601200104, 0.023451386019587517, 0.054942045360803604, -0.011482596397399902, 0.008037369698286057, 0.041054803878068924, -0.029132138937711716, -0.019639870151877403, -0.026668047532439232, -0.024291355162858963, 0.0022116999607533216, -0.061157241463661194, -0.017662832513451576, 0.009734672494232655, -0.012934337370097637, 0.04241582378745079, 0.00876290537416935, -0.018535200506448746, -0.022836357355117798, 0.013440309092402458, -0.011647894978523254, -0.0017506856238469481, 0.0025717883836477995, 0.003290982684120536, -0.024709127843379974, -0.018903886899352074, -0.006714723538607359, -0.015831558033823967, -0.004507140256464481, -0.011618419550359249, 0.012688533402979374, 0.008981219492852688, -0.02111334353685379, 0.030602142214775085, -0.031040271744132042, -0.0111808767542243, -0.00043845962500199676, 0.028913069516420364, 0.02004675567150116, 0.03697316348552704, 0.03663178160786629, -0.020807940512895584, -0.006736489478498697, 0.005431885831058025, 0.0017990419873967767, 0.023163970559835434, -0.021794918924570084, -0.015767468139529228, 0.007861427962779999, -0.00723845511674881, 0.039127130061388016, -0.022396448999643326, 0.019156478345394135, 0.03909197449684143, -0.00005055041765444912, 0.010773499496281147, -0.09173358976840973, 0.0051752058789134026, 0.013974911533296108, -0.007409177720546722, -0.04674242436885834, 0.8109720349311829, 0.014739902690052986, -0.005764685571193695, 0.03277653083205223, -0.00210294546559453, -0.01606423407793045, -0.0026870407164096832, 0.016967732459306717, -0.00819152221083641, 0.028801437467336655, -0.002570120617747307, -0.004885160364210606, -0.005485003814101219, 0.015540986321866512, 0.012464277446269989, -0.02468130551278591, 0.008404728956520557, 0.042817965149879456, -0.008186579681932926, 0.010469428263604641, -0.023367391899228096, 0.030372178182005882, -0.02990579605102539, 0.003483673557639122, -0.0006379743572324514, -0.01530504785478115, -0.18413741886615753, 0.03950795903801918, -7.599424041272236e-33, 0.06571479886770248, 0.017954235896468163, -0.03055731952190399, 0.015648072585463524, 0.04668208584189415, -0.020658137276768684, 0.010110854171216488, 0.025140680372714996, -0.022064654156565666, -0.026209844276309013, 0.023719122633337975, -0.044941894710063934, -0.007528155576437712, 0.0014855415793135762, 0.04499251767992973, -0.012550043873488903, -0.020813697949051857, 0.052262816578149796, 0.06854228675365448, 0.0004477976181078702, -0.023198967799544334, 0.011055181734263897, 0.013007652945816517, 0.004699293989688158, 0.015573312528431416, 0.001288235536776483, 0.023704616352915764, 0.02131744474172592, -0.0475296750664711, -0.06767701357603073, 0.05149664357304573, 0.024456970393657684, -0.003137467196211219, -0.009880262427031994, 0.022023538127541542, -0.06805680692195892, 0.03466978669166565, 0.0009000571444630623, -0.021137995645403862, -0.0031856000423431396, -0.0252525731921196, 0.014144598506391048, 0.014729299582540989, -0.01473035104572773, -0.009947220794856548, -0.036962877959012985, 0.00010065942478831857, -0.0022098696790635586, 0.040415383875370026, -0.017081860452890396, 0.034075889736413956, -0.01601511240005493, -0.012963061220943928, -0.011924264952540398, -0.016919828951358795, 0.048452842980623245, 0.009822485037147999, 0.032724227756261826, 0.0006516358116641641, 0.01280085276812315, -0.0179684367030859, -0.001720618805848062, -0.009241725318133831, -0.005323272198438644, 0.01943393051624298, -0.024506013840436935, -0.010841640643775463, 0.04531988874077797, 0.03413587436079979, 0.0510319247841835, -0.018110644072294235, -0.020896462723612785, -0.03193715587258339, -0.03502124920487404, 0.02370912954211235, 0.0054422058165073395, -0.019156519323587418, -0.017250223085284233, 0.03145632892847061, 0.029092319309711456, 0.05228050798177719, -0.039775192737579346, -0.013894153758883476, 0.034175172448158264, -0.05832362174987793, 0.0048632631078362465, 0.012803111225366592, 0.012083873152732849, 0.016157306730747223, 0.0113546596840024, 0.0217013917863369, 0.012911800295114517, 0.027825921773910522, 0.00046016796841286123, -0.0396784283220768, 7.978533459039901e-33, -0.020452134311199188, 0.003583930665627122, -0.00030873456853441894, 0.0014879925874993205, 0.04077101871371269, -0.014739311300218105, 0.0313652828335762, 0.043051086366176605, -0.008999520912766457, 0.04232911393046379, -0.00987241044640541, 0.025853382423520088, -0.0003317827358841896, 0.003368554636836052, 0.015658844262361526, -0.010218598879873753, -0.017310552299022675, -0.04134069383144379, 0.005915121175348759, 0.018319955095648766, 0.013587834313511848, -0.009037359617650509, -0.034464843571186066, 0.03615677356719971, 0.05664002522826195, 0.05517140403389931, 0.012220836244523525, 0.023729950189590454, -0.011423743329942226, -0.02697095461189747, 0.008086610585451126, -0.01057334616780281, -0.013654896058142185, -0.0015980842290446162, -0.0063386899419128895, 0.03323136642575264, 0.027445822954177856, 0.033835578709840775, -0.012260958552360535, -0.03752383589744568, 0.05154436081647873, -0.014669662341475487, -0.007819637656211853, 0.023293297737836838, 0.0518467091023922, -0.04274909570813179, 0.0010331392986699939, 0.008518815971910954, -0.0270355436950922, 0.022157596424221992, -0.01114303432404995, 0.0029396770987659693, 0.004460125230252743, 0.01860082522034645, 0.01201996486634016, 0.015477173030376434, -0.02342998795211315, 0.04022831469774246, 0.014219416305422783, -0.015022971667349339, -0.023777632042765617, -0.015325753949582577, -0.038136787712574005, 0.041148606687784195, -0.046211447566747665, -0.027608057484030724, -0.05890263617038727, -0.03781807795166969, 0.005298370495438576, 0.0154466163367033, 0.002641466446220875, -0.026825929060578346, -0.05096634849905968, -0.012953247874975204, 0.033940963447093964, -0.03181350603699684, 0.02761559747159481, -0.025892768055200577, -0.03393189236521721, 0.06324921548366547, 0.011563065461814404, 0.027927713468670845, -0.011198003776371479, 0.0011502749985083938, 0.007176409009844065, 0.004347895737737417, -0.043094735592603683, -0.0020023309625685215, 0.03996371477842331, -0.04083165526390076, -0.019984297454357147, 0.0015613187570124865, -0.0419355109333992, -0.011735480278730392, -0.010614486411213875, -1.2924329162444792e-8, 0.04160295054316521, -0.007182702887803316, -0.005399883724749088, 0.036823343485593796, 0.01049091387540102, -0.0008601550362072885, -0.00948462076485157, -0.014104720205068588, -0.020588567480444908, 0.02602045051753521, 0.03479771688580513, -0.0013519501080736518, -0.01828910782933235, 0.0495770126581192, 0.0015146255027502775, -0.02263881266117096, -0.01584969088435173, -0.014900896698236465, 0.02738730050623417, -0.02133737877011299, -0.0064272512681782246, 0.021971844136714935, 0.0005134797538630664, 0.007966157048940659, 0.004517459310591221, -0.014181622304022312, 0.017863573506474495, -0.06515617668628693, 0.005681406240910292, 0.03243115544319153, 0.002243044087663293, -0.014952925965189934, -0.024699121713638306, -0.017814157530665398, 0.029336318373680115, -0.025095293298363686, -0.0040578339248895645, -0.02128707617521286, 0.031035520136356354, 0.03835620731115341, 0.013001421466469765, 0.030476046726107597, 0.020785154774785042, -0.022704916074872017, -0.03488752245903015, -0.012284747324883938, -0.043614380061626434, 0.03745018318295479, 0.02153358981013298, -0.03863385319709778, 0.0742923691868782, -0.06522524356842041, -0.03425474092364311, -0.037036143243312836, -0.02341269887983799, -0.01937670260667801, 0.004828884731978178, -0.034980207681655884, -0.01341196894645691, -0.026864394545555115, 0.04161757603287697, 0.024114815518260002, -0.03801151365041733, -0.06450525671243668 ]
apt-cacher-server-extra-junk-at-end-of-file
https://markhneedham.com/blog/2012/09/07/apt-cacher-server-extra-junk-at-end-of-file
false
2012-09-07 23:49:41
logstash not picking up some files
[ "software-development", "logstash" ]
[ "Software Development" ]
We're using http://logstash.net/[logstash] to collect all the logs across the different machines that we use in various environments and had noticed that on some of the nodes log files which we'd told the logstash-client to track weren't being collected. We wanted to check what the open file descriptors of logstash-client were so we first had to grab its process id: [source,text] ---- $ ps aux | grep logstash logstash 19896 134 9.1 711404 187768 ? Ssl 09:13 0:06 java -Xms128m -Xmx256m -jar /var/apps/logstash/logstash-1.1.1-rc2-monolithic.jar agent -f /etc/logstash/logstash-client.conf root 19910 0.0 0.0 7624 936 pts/1 S+ 09:13 0:00 grep --color=auto logstash ---- And then list the open file descriptors: [source,text] ---- $ ls -alh /proc/19896/fd lr-x------ 1 root root 64 2012-09-07 09:16 9 -> /var/log/syslog ... ---- That seemed to be restricted to 50 files for some reason so we also tried 'lsof': [source,text] ---- $ lsof -p 19896 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME root 20230 root txt REG 8,1 39584 22895 /var/log/syslog ... ---- Either way we weren't seeing most of the files we were supposed to be tracking so we put some print statements into the https://github.com/jordansissel/ruby-filewatch[ruby-filewatch] gem (which is included in the logstash jar) and redeployed the jar to see if we could figure out what was going on. Eventually we narrowed it down to the +++<cite>+++watch.rb+++</cite>+++ file's +++<cite>+++https://github.com/jordansissel/ruby-filewatch/blob/master/lib/filewatch/watch.rb#L114[_discover_file]+++</cite>+++ method which was making a call to +++<cite>+++Dir.glob+++</cite>+++ and returning an empty array even for some paths which definitely existed. [source,ruby] ---- def _discover_file(path, initial=false) Dir.glob(path).each do |file| # if Dir.glob is empty the file doesn't get watched! next if @files.member?(file) next unless File.file?(file) ---- logstash 1.1.1 uses the JRuby 1.6.7 interpreter so we installed that locally to check if we could replicate the problem but we didn't really end up getting anywhere so we ended up https://github.com/alphagov/ruby-filewatch/commit/9daaab8381719188af6158acc13996235075df75[writing some code to work around the problem]. The beginning of the +++<cite>+++_discover_file+++</cite>+++ method now looks like this: [source,ruby] ---- def _discover_file(path, initial=false) globbed_dirs = Dir.glob(path) @logger.debug("_discover_file_glob: #{path}: glob is: #{globbed_dirs}") if globbed_dirs.empty? && File.file?(path) globbed_dirs = [path] @logger.debug("_discover_file_glob: #{path}: glob is: #{globbed_dirs} because glob did not work") end globbed_dirs.each do |file| next if @files.member?(file) next unless File.file?(file) @logger.debug("_discover_file: #{path}: new: #{file} (exclude is #{@exclude.inspect})") ... ---- With this hack we can still ensure that a file will be watched even if +++<cite>+++Dir.glob+++</cite>+++ returns an empty array.
null
null
[ -0.020693853497505188, -0.016507774591445923, -0.009423966519534588, 0.026761779561638832, 0.11363685131072998, 0.011531648226082325, 0.02027752436697483, 0.03219343721866608, -0.005330634769052267, -0.024224216118454933, 0.0026828832924365997, -0.020695164799690247, -0.06991568207740784, 0.009049219079315662, -0.014384640380740166, 0.06369796395301819, 0.07527757436037064, 0.010761238634586334, 0.0517243891954422, -0.004451447632163763, 0.046144865453243256, 0.027386294677853584, 0.003980563022196293, 0.013983088545501232, 0.015382682904601097, 0.03685257211327553, 0.0026873925235122442, 0.004174338653683662, -0.05698370561003685, 0.027993325144052505, 0.03289315104484558, -0.014479578472673893, 0.014829392544925213, 0.005100681912153959, 0.022770287469029427, 0.013049621134996414, -0.044019218534231186, 0.005345415789633989, 0.0003455068508628756, 0.042408157140016556, -0.06063799560070038, 0.041769251227378845, -0.037171557545661926, 0.03446289151906967, -0.044665273278951645, 0.0243676770478487, -0.04444706812500954, -0.0008470860193483531, 0.040075112134218216, 0.010671813040971756, -0.07637841999530792, 0.022956181317567825, -0.040479741990566254, -0.01931348256766796, -0.002815278945490718, 0.03216303512454033, 0.057113274931907654, -0.06229245662689209, 0.04706139862537384, -0.03585496172308922, -0.03365260735154152, -0.05120740458369255, -0.0027675607707351446, 0.031692005693912506, 0.009032486006617546, -0.023500479757785797, 0.01608678139746189, 0.05201920494437218, -0.007148245815187693, -0.013320033438503742, 0.02433963492512703, 0.009073935449123383, -0.030007971450686455, -0.023455122485756874, 0.028808636590838432, 0.0024257535114884377, 0.006050983443856239, 0.025505203753709793, 0.008410978130996227, 0.07063727080821991, -0.03924527391791344, 0.024891173467040062, 0.010993634350597858, 0.03745182231068611, 0.012335606850683689, -0.030723536387085915, -0.022688549011945724, 0.014841235242784023, -0.05231107771396637, 0.07471565157175064, 0.027332935482263565, -0.044416554272174835, 0.006677825935184956, 0.013751048594713211, -0.016750765964388847, 0.006954243406653404, -0.0066906060092151165, 0.0014175608521327376, -0.003016267903149128, -0.023262279108166695, -0.03860922530293465, 0.020896241068840027, -0.002306862734258175, 0.04334403574466705, -0.07064932584762573, -0.018152989447116852, -0.01577942818403244, -0.011590525507926941, 0.009628722444176674, -0.03217684477567673, 0.004867688287049532, 0.018905866891145706, -0.028481900691986084, 0.01872538961470127, -0.08699502050876617, 0.06142234429717064, 0.010965541936457157, -0.06476853787899017, 0.03518567234277725, 0.026457777246832848, 0.053496353328228, 0.05495905131101608, -0.016457581892609596, 0.07043475657701492, 0.0040847789496183395, 0.0015033204108476639, 0.00362454354763031, 0.0397518053650856, -0.023685330525040627, -0.0603882372379303, -0.02010781317949295, 0.060481421649456024, 0.022897379472851753, 0.03628261759877205, 0.0033405243884772062, -0.013788088224828243, -0.022270403802394867, -0.0017281939508393407, 0.04692855849862099, 0.035127703100442886, -0.003499681828543544, -0.0383775532245636, 0.000003465780764599913, -0.026002436876296997, 0.030957840383052826, 0.011479697190225124, 0.004367703106254339, -0.04725363850593567, -0.05460071563720703, 0.01637011207640171, -0.01580790802836418, 0.04043544456362724, 0.06717580556869507, -0.04413004219532013, -0.007968587800860405, 0.09842444956302643, 0.006385509390383959, -0.015944767743349075, -0.020334577187895775, -0.011190921068191528, 0.03400491923093796, 0.024490609765052795, -0.0007829049718566239, 0.04687056317925453, 0.00820414163172245, -0.016031891107559204, 0.0008422008831985295, 0.029927972704172134, 0.012835872359573841, 0.010303773917257786, -0.046980828046798706, -0.04923431575298309, 0.07783393561840057, -0.023764552548527718, -0.01826869137585163, 0.04413992166519165, 0.09667830914258957, 0.03165532648563385, 0.031086746603250504, 0.00048787391278892756, -0.07403507083654404, 0.04373439773917198, -0.015015006996691227, 0.021905740723013878, 0.029213838279247284, -0.01984298974275589, 0.08351071923971176, 0.0367065891623497, 0.015189042314887047, 0.003287574974820018, -0.0759185329079628, -0.08374196290969849, 0.009100656025111675, -0.01272251084446907, 0.045764192938804626, -0.028143644332885742, 0.017126986756920815, 0.006511452607810497, 0.031525615602731705, 0.026966892182826996, 0.01033706683665514, -0.002181451302021742, 0.006903561297804117, -0.08729259669780731, -0.06557381898164749, 0.05022122710943222, 0.03306353837251663, -0.041254471987485886, -0.016746971756219864, -0.0011754753068089485, -0.0402144119143486, 0.001673951861448586, 0.03956069424748421, -0.02831166796386242, 0.05957922339439392, 0.03384925797581673, 0.03407379984855652, -0.03377041593194008, 0.04933039844036102, -0.04402659088373184, -0.003972126170992851, -0.011534243822097778, -0.034483652561903, 0.007832108065485954, -0.010429201647639275, 0.11989013105630875, 0.05719918757677078, -0.01569315791130066, -0.05465896427631378, 0.0352051816880703, 0.02517848089337349, -0.09121854603290558, -0.025710996240377426, -0.029321538284420967, -0.005858065094798803, 0.01594541408121586, -0.06448936462402344, -0.023332111537456512, 0.0033172687981277704, -0.028246672824025154, 0.01147587038576603, 0.0577029250562191, 0.00440951669588685, 0.03551061078906059, 0.030795235186815262, -0.01570720225572586, 0.023562077432870865, -0.03115863911807537, -0.061917129904031754, 0.006418732460588217, 0.00993803609162569, -0.0015661191428080201, 0.023982051759958267, -0.045633040368556976, -0.026875577867031097, -0.029652537778019905, -0.03664189577102661, 0.034064698964357376, 0.027806656435132027, 0.06746140122413635, -0.015376877970993519, 0.038631610572338104, -0.04041488096117973, 0.029712138697504997, 0.0016191115137189627, -0.05090057849884033, -0.012625006958842278, -0.006060237064957619, -0.006038233637809753, 0.02593902125954628, 0.0017576480749994516, 0.02054326795041561, 0.02267535589635372, 0.011154544539749622, 0.027363181114196777, -0.009855223819613457, 0.05251048505306244, 0.005903440527617931, -0.01647539623081684, -0.03642736375331879, -0.01586698554456234, 0.04759257286787033, -0.04393661394715309, 0.008363154716789722, -0.0019456918817013502, -0.06393776088953018, 0.033886805176734924, -0.05155418440699577, -0.03461518883705139, -0.02989286743104458, -0.004167675040662289, 0.009189983829855919, 0.04333992674946785, 0.01798708550632, 0.055888187140226364, 0.038305118680000305, -0.0009242656524293125, 0.030898170545697212, 0.04673518240451813, 0.041511476039886475, -0.019319824874401093, -0.0030905602034181356, 0.021413609385490417, -0.0035521453246474266, -0.027200870215892792, -0.031357843428850174, 0.008110055699944496, -0.03251942992210388, -0.26599952578544617, 0.0330631360411644, -0.00023309484822675586, -0.04893145337700844, 0.005233987234532833, -0.003917652182281017, 0.019145401194691658, -0.06667055934667587, -0.014358258806169033, 0.016771676018834114, -0.00681425491347909, -0.031556274741888046, 0.02602020837366581, 0.03785625472664833, -0.00473823444917798, 0.016500156372785568, 0.016707954928278923, -0.03608563169836998, 0.03421434760093689, -0.01578480191528797, -0.0004426783125381917, -0.06120767444372177, -0.003720181295648217, 0.03387317433953285, 0.031404756009578705, 0.08389762043952942, -0.08490968495607376, 0.04592332988977432, -0.03330564498901367, -0.01870681904256344, -0.005914117209613323, -0.04403870180249214, -0.009376187808811665, 0.001264165504835546, -0.02710975706577301, -0.04613088443875313, 0.020462794229388237, 0.00542039331048727, 0.017097221687436104, 0.0037969716358929873, -0.030922511592507362, -0.03446749225258827, -0.03500792384147644, -0.019405879080295563, 0.07844152301549911, -0.005628825630992651, -0.06873110681772232, -0.0264267697930336, -0.008812858723104, 0.07173551619052887, -0.02873818203806877, -0.04586567357182503, -0.02285958081483841, 0.02748839557170868, -0.010392705909907818, -0.024015503004193306, -0.016406258568167686, -0.010307848453521729, -0.05438072606921196, -0.03478693217039108, 0.01357103418558836, -0.02814030461013317, 0.0025676945224404335, -0.06889358907938004, -0.033103425055742264, -0.05679075047373772, -0.041888680309057236, 0.007146457675844431, 0.08196330070495605, -0.0017642256570979953, -0.028521621599793434, 0.02991226501762867, -0.014164567925035954, -0.09770370274782181, -0.02440030872821808, -0.024152636528015137, -0.04831099137663841, -0.01350456289947033, -0.005097763612866402, 0.03910436853766441, -0.0513279028236866, -0.012544014491140842, 0.009149606339633465, 0.007505090907216072, 0.02611563168466091, -0.03364132344722748, 0.011951196938753128, -0.005732460413128138, -0.02379707433283329, -0.00918073020875454, 0.05107166990637779, -0.04586198925971985, -0.039126280695199966, -0.005367891397327185, 0.010112684220075607, 0.03249577060341835, 0.017633065581321716, 0.009945089928805828, 0.015009162947535515, 0.04802974686026573, 0.034298188984394073, -0.02270178124308586, 0.012743856757879257, -0.04544336348772049, -0.023568568751215935, -0.0030447046738117933, -0.029033763334155083, 0.022290028631687164, 0.03380429744720459, 0.014670513570308685, -0.007540052756667137, -0.02822181209921837, 0.03265703096985817, -0.06491149216890335, -0.026502374559640884, 0.00208130176179111, -0.0034684580750763416, 0.03269313648343086, 0.05852285400032997, -0.019451159983873367, -0.045122891664505005, -0.0001737874117679894, 0.014459418132901192, -0.0347171351313591, -0.051278695464134216, -0.03310449793934822, -0.010882094502449036, -0.0037927308585494757, 0.02084020897746086, 0.019540367648005486, -0.013117008842527866, 0.027113351970911026, 0.0465780645608902, -0.02334650233387947, 0.034352920949459076, -0.006288515403866768, -0.051023319363594055, -0.046587564051151276, 0.026549704372882843, 0.0156625434756279, -0.031354617327451706, 0.009415099397301674, -0.00229268753901124, 0.04690216854214668, 0.04465313255786896, 0.013792767189443111, 0.04275844991207123, -0.01257785502821207, 0.02117222733795643, -0.02169145829975605, 0.02594147063791752, -0.03745017945766449, 0.03781590610742569, -0.028193548321723938, -0.024807892739772797, -0.025365354493260384, 0.03394175320863724, 0.001359919784590602, -0.037191037088632584, -0.019525282084941864, 0.033562034368515015, -0.05547461286187172, 0.009311046451330185, -0.019416997209191322, -0.0005994869861751795, 0.03366050124168396, -0.01660151034593582, 0.02711310423910618, -0.01304619200527668, -0.003995447885245085, -0.0062710284255445, 0.012000668793916702, -0.026362940669059753, 0.04170546308159828, 0.018344474956393242, 0.0032153704669326544, 0.019217360764741898, 0.006163433659821749, 0.027330949902534485, 0.02238539792597294, -0.01602165773510933, -0.004133629612624645, -0.0019750443752855062, 0.02406001277267933, 0.03583899512887001, 0.03648043051362038, -0.03116423822939396, 0.014747963286936283, -0.030067890882492065, 0.018752604722976685, -0.019832158461213112, 0.0038518330547958612, -0.03292322903871536, 0.019406165927648544, -0.015100575983524323, -0.10360607504844666, 0.033779293298721313, 0.008360767737030983, 0.01150419469922781, -0.0025426573120057583, -0.00950649380683899, 0.028475556522607803, -0.028655366972088814, 0.01042177528142929, 0.05792476236820221, -0.04832364618778229, 0.004756523296236992, -0.0058579640462994576, 0.013826834969222546, 0.02625635638833046, 0.015137420035898685, -0.043030813336372375, -0.03154074028134346, 0.006980076897889376, 0.04094014689326286, -0.05963524430990219, -0.017177149653434753, -0.011291851289570332, 0.011451064608991146, -0.01393872406333685, 0.02071532793343067, 0.010412119328975677, 0.008193546906113625, -0.015265391208231449, -0.029212825000286102, 0.003949784208089113, -0.003136264393106103, 0.009326660074293613, 0.0022543363738805056, -0.005363724194467068, 0.01511200238019228, -0.04284542426466942, 0.03504978120326996, 0.029253367334604263, -0.01951676420867443, 0.014204062521457672, -0.04101094976067543, -0.004351709969341755, 0.004705458879470825, 0.05737920477986336, 0.00502224825322628, 0.02394086867570877, -0.029940562322735786, 0.0019199379021301866, -0.035771824419498444, 0.011064428836107254, -0.02818605676293373, -0.023203924298286438, 0.012186793610453606, 0.04229135811328888, 0.0074623823165893555, 0.04465112462639809, -0.013516495935618877, -0.024013925343751907, 0.06733369827270508, -0.05515221878886223, -0.03356035798788071, -0.01898004859685898, -0.06886614114046097, 0.005697919521480799, 0.021537112072110176, 0.005405899602919817, -0.04929673671722412, 0.04750191420316696, 0.04865027964115143, -0.004387943539768457, 0.00005251006587059237, -0.00011051099863834679, 0.0194541122764349, -0.0428275540471077, -0.03643453121185303, -0.06623414903879166, 0.0157267227768898, 0.04654666781425476, -0.012908094562590122, -0.006441762670874596, 0.02278173714876175, -0.045878175646066666, 0.02228502556681633, -0.05751381069421768, -0.049667153507471085, 0.05027468875050545, -0.021220745518803596, 0.00659835385158658, -0.013079151511192322, -0.05320455878973007, 0.02811548486351967, 0.0458795428276062, -0.04597984999418259, -0.009387300349771976, -0.030878499150276184, 0.05215967074036598, -0.03736209124326706, -0.00500447629019618, -0.011546597816050053, -0.0647391825914383, 0.07582738995552063, 0.00819751713424921, 0.0030288780108094215, 0.0566907599568367, -0.018645474687218666, 0.03069312870502472, 0.01900653913617134, -0.030101025477051735, 0.0043422444723546505, 0.01455876138061285, -0.016894949600100517, -0.032755155116319656, 0.010003306902945042, -0.018036380410194397, -0.00414063036441803, -0.01748890057206154, 0.04910554736852646, 0.03647664561867714, -0.0295889750123024, -0.08941677212715149, 0.038302358239889145, -0.022730570286512375, -0.009351852349936962, -0.03176829218864441, 0.01149460207670927, -0.03253059461712837, 0.05698258802294731, -0.012782281264662743, 0.019588040187954903, 0.0861758142709732, -0.014872933737933636, 0.0018978072330355644, 0.010851928032934666, 0.08872963488101959, 0.08284029364585876, 0.015781816095113754, 0.03099426068365574, 0.0524095855653286, -0.03939032927155495, -0.031764715909957886, -0.0066372728906571865, -0.019546665251255035, -0.013996956869959831, 0.013318951241672039, 0.03293191269040108, 0.050692085176706314, -0.012495314702391624, 0.07755231112241745, -0.05396029353141785, 0.01513268519192934, -0.014451474882662296, 0.00012639873602893203, 0.0462476871907711, 0.03569039702415466, -0.008847110904753208, 0.026888327673077583, -0.011038885451853275, -0.010533864609897137, 0.029260952025651932, -0.018736327067017555, -0.0226520374417305, 0.03660721331834793, -0.018322385847568512, 0.000726607337128371, 0.006391860079020262, 0.037774600088596344, 0.052900999784469604, -0.020422518253326416, -0.0048926523886621, -0.014952088706195354, 0.0253587793558836, 0.000020234805560903624, 0.011173874139785767, -0.02489699423313141, 0.007686188910156488, -0.01022764015942812, -0.06659631431102753, -0.04180896282196045, -0.02633535861968994, -0.029232889413833618, 0.03230607882142067, -0.005792637355625629, 0.028033019974827766, 0.01575733907520771, 0.012822385877370834, -0.006852835416793823, -0.04539832845330238, -0.06370958685874939, -0.04330045357346535, -0.05991578474640846, 0.013215593062341213, 0.005542255472391844, 0.04720785468816757, -0.022374561056494713, -0.019000910222530365, -0.025128530338406563, -0.008231106214225292, 0.021390803158283234, -0.045728087425231934, -0.030553091317415237, 0.014752634800970554, 0.020700419321656227, 0.012761552818119526, 0.02343970164656639, 0.07235401123762131, -0.025092585012316704, -0.005232561379671097, -0.028770819306373596, 0.018056996166706085, 0.04860593378543854, -0.01586448960006237, -0.01527094654738903, -0.07206548750400543, 0.008255061693489552, 0.05634880065917969, -0.0006394294905476272, -0.07157564163208008, 0.0031252370681613684, 0.040532927960157394, -0.01778608188033104, 0.04147856682538986, -0.030270986258983612, -0.00874875858426094, -0.04666675627231598, -0.047578174620866776, 0.026472045108675957, 0.024381384253501892, 0.031167004257440567, 0.007390044629573822, 0.07862108945846558, 0.07691504061222076, -0.026811789721250534, -0.04345627874135971, -0.01219996064901352, -0.030349314212799072, 0.0010036519961431623, -0.03832500800490379, -0.03678559139370918, -0.02298075519502163, -0.10199014097452164, -0.020931778475642204, -0.005756549071520567, -0.0025980654172599316, -0.05013154819607735, 0.0015416803071275353, 0.008131797425448895, -0.01661325991153717, 0.0022417549043893814, -0.05541009083390236, -0.004467999096959829, -0.03172909468412399, -0.03987814113497734, -0.014442979358136654, 0.021374309435486794, 0.02126249484717846, -0.008118439465761185, 0.004149025771766901, -0.028512341901659966, -0.012209625914692879, -0.01697569712996483, 0.04913956671953201, 0.08066397160291672, 0.003212724579498172, -0.022418109700083733 ]
[ -0.06871651113033295, -0.001972514670342207, -0.047681402415037155, -0.05773056671023369, 0.07551661133766174, -0.059220798313617706, -0.01978125609457493, -0.02287394180893898, -0.012940552085638046, -0.04657438024878502, 0.028681917116045952, -0.030988311395049095, -0.0262654609978199, 0.006833994761109352, 0.06060541421175003, -0.0005010465974919498, 0.007063841447234154, -0.04009418189525604, -0.014128458686172962, 0.015505636110901833, -0.003278225427493453, -0.03957086056470871, -0.008396608754992485, -0.0365799181163311, -0.007487869821488857, 0.047818850725889206, 0.007720275316387415, -0.030263004824519157, -0.039930250495672226, -0.19704067707061768, 0.029725460335612297, -0.03392072767019272, 0.03294045478105545, -0.03022732213139534, 0.01637198217213154, 0.038408201187849045, 0.030110975727438927, 0.030515531077980995, 0.009166190400719643, 0.02633526548743248, 0.025954799726605415, 0.019994450733065605, -0.07005495578050613, -0.026073720306158066, -0.00978561770170927, -0.043129850178956985, 0.0038809608668088913, -0.024999316781759262, 0.011093911714851856, -0.0001978640357265249, -0.06819503754377365, 0.015611765906214714, 0.030751140788197517, -0.017313046380877495, -0.02503064274787903, -0.017734535038471222, 0.03136223927140236, 0.04691304266452789, 0.00862997118383646, 0.017393136397004128, 0.01875806413590908, -0.00575989717617631, -0.13781295716762543, 0.052623067051172256, 0.024662528187036514, 0.04040273651480675, -0.03255163133144379, -0.0775444507598877, -0.017167391255497932, 0.07195376604795456, -0.015191955491900444, -0.009012538008391857, -0.05274023488163948, 0.04263420030474663, -0.02979934588074684, -0.031284552067518234, -0.00716496491804719, 0.02862798050045967, -0.0019283683504909277, -0.04982593655586243, -0.07834305614233017, -0.016124360263347626, -0.006866774521768093, -0.024648787453770638, -0.04370535910129547, 0.013971298933029175, 0.005763189867138863, 0.05371500551700592, 0.040215864777565, 0.02482033520936966, 0.043653588742017746, -0.020814254879951477, 0.05087021365761757, 0.003531478578224778, -0.09299167990684509, -0.03352057933807373, 0.022890256717801094, 0.07144732028245926, -0.011077268980443478, 0.4395669400691986, -0.009434143081307411, -0.02252267487347126, 0.060810670256614685, -0.00039187021320685744, 0.014166068285703659, 0.017830897122621536, -0.019028013572096825, -0.031985051929950714, 0.0060882894322276115, -0.0013563159154728055, 0.06653525680303574, -0.00819830410182476, 0.06518365442752838, -0.05329233407974243, 0.04334317892789841, 0.011894402094185352, 0.020572738721966743, 0.029078785330057144, -0.06096486747264862, 0.02244073525071144, 0.002782215131446719, -0.003239306854084134, 0.05369427800178528, -0.004799972753971815, 0.032199349254369736, 0.004800637252628803, 0.026083867996931076, 0.056256674230098724, 0.04265644773840904, 0.018498212099075317, -0.006050129886716604, -0.04794890061020851, -0.05354965478181839, 0.006129613146185875, 0.003727046074345708, 0.02641444094479084, 0.04301997646689415, -0.04696984589099884, -0.013540150597691536, 0.039386086165905, -0.006621197331696749, -0.019067266955971718, 0.03827672824263573, -0.01377138402312994, -0.0300177950412035, 0.1138317734003067, 0.010678241960704327, -0.041881777346134186, -0.04209192469716072, -0.07079412043094635, -0.015185363590717316, 0.058530304580926895, 0.002322196261957288, -0.05020421743392944, 0.014401640743017197, 0.02932783216238022, 0.05232610926032066, -0.010339717380702496, -0.06388529390096664, 0.018850084394216537, 0.006603718269616365, -0.06060391291975975, -0.003511556191369891, 0.02661796659231186, 0.039955444633960724, -0.07011240720748901, -0.028759067878127098, 0.03780306130647659, 0.02471170946955681, -0.06490481644868851, 0.0030011613853275776, 0.023764049634337425, 0.020187394693493843, -0.06289118528366089, 0.001005146885290742, -0.02834775112569332, -0.0006557587184943259, 0.0104011045768857, 0.0008108101319521666, -0.007547712419182062, -0.03502105921506882, -0.0027170374523848295, -0.06333726644515991, 0.014437773264944553, -0.02327176183462143, -0.10700801014900208, -0.08229315280914307, 0.02787741832435131, -0.020758315920829773, 0.023901712149381638, -0.04531944543123245, -0.040641650557518005, -0.04846920818090439, 0.035380881279706955, 0.004911577329039574, -0.009902519173920155, 0.007983441464602947, 0.026679422706365585, -0.0542491190135479, -0.020465662702918053, 0.030542433261871338, 0.0512244775891304, -0.002419636817649007, 0.045674264430999756, -0.06656237691640854, 0.052804239094257355, -0.007860780693590641, -0.023119265213608742, 0.0630384162068367, 0.015471083112061024, -0.010361352004110813, -0.016329819336533546, -0.005583532154560089, 0.026178106665611267, -0.02407958172261715, -0.03078329563140869, -0.02531559392809868, 0.0077185616828501225, 0.04886870086193085, 0.035840511322021484, -0.022751647979021072, -0.01790539175271988, -0.030189083889126778, -0.3490234911441803, -0.06886323541402817, 0.005654935259371996, 0.027917688712477684, 0.017525680363178253, -0.052701935172080994, 0.021896885707974434, 0.01058568712323904, -0.01997895911335945, 0.0065943654626607895, 0.06687508523464203, -0.021654294803738594, -0.004196077585220337, -0.10287834703922272, 0.016557596623897552, 0.03368256986141205, -0.03821858391165733, -0.011593586765229702, -0.030944278463721275, 0.04931667819619179, 0.036665719002485275, -0.05048578605055809, -0.010899955406785011, -0.01981983706355095, -0.005282833706587553, -0.03484266251325607, 0.10107950866222382, 0.03639274463057518, 0.0575636588037014, -0.05359981209039688, 0.03583772853016853, 0.02003370225429535, -0.012432456016540527, -0.09185825288295746, -0.02504306472837925, -0.013617613352835178, -0.02290942333638668, 0.0385269932448864, 0.039692286401987076, -0.015984537079930305, -0.07185178995132446, 0.04517482966184616, -0.037572942674160004, -0.051044803112745285, -0.04353388771414757, 0.01102389581501484, -0.017992578446865082, -0.048809003084897995, 0.014508599415421486, 0.029552990570664406, 0.03834940493106842, 0.015871014446020126, 0.015195190906524658, 0.011732632294297218, 0.011522685177624226, -0.050022225826978683, -0.0514289028942585, -0.021879643201828003, -0.005358634516596794, -0.00876283273100853, 0.007448164746165276, 0.06391950696706772, 0.010214198380708694, -0.048512768000364304, 0.0453692190349102, 0.010699230246245861, -0.024029042571783066, 0.015451840125024319, 0.039528097957372665, -0.04369993507862091, -0.006192471832036972, 0.08371531963348389, -0.013981950469315052, 0.017675530165433884, 0.01629953645169735, 0.044172585010528564, 0.007143749855458736, 0.00786287896335125, 0.007392889354377985, -0.01443071011453867, 0.05425681173801422, -0.01683790795505047, 0.04467722773551941, -0.036275528371334076, -0.012791994027793407, 0.0761946439743042, -0.006107074674218893, -0.021534938365221024, 0.08111898601055145, -0.020234474912285805, -0.013901622034609318, -0.0025573382154107094, 0.019463643431663513, -0.102205291390419, 0.09362534433603287, 0.025779226794838905, -0.24880486726760864, 0.017841584980487823, 0.05780896544456482, 0.06335876137018204, 0.020446494221687317, 0.027932168915867805, 0.037126194685697556, -0.0037601706571877003, 0.04032468423247337, 0.014928750693798065, 0.023580005392432213, 0.025997024029493332, -0.03127617388963699, -0.015311121009290218, 0.0032598248217254877, 0.014257977716624737, 0.026963569223880768, 0.021576635539531708, 0.03552873805165291, -0.001238008146174252, -0.02414250373840332, -0.0066134086810052395, 0.14201179146766663, 0.04030323401093483, 0.024074463173747063, 0.05060558766126633, -0.0063327583484351635, 0.012819617986679077, 0.06765934824943542, 0.017062531784176826, 0.011739416047930717, -0.03131216764450073, 0.04923161491751671, 0.015669114887714386, 0.0455135852098465, -0.02874179556965828, 0.03863980993628502, 0.034914273768663406, 0.031106283888220787, -0.013830498792231083, -0.016122711822390556, -0.0010877312161028385, -0.015279893763363361, 0.026006724685430527, 0.08641450107097626, -0.014133574441075325, -0.017053524032235146, -0.031186066567897797, -0.049281615763902664, 0.024219414219260216, -0.01327406894415617, -0.05307820811867714, 0.0016493437578901649, 0.021109214052557945, 0.024324296042323112, 0.08237028867006302, 0.03697602078318596, -0.03200226277112961, 0.0004723775200545788, -0.003379336092621088, 0.0033455451484769583, -0.01796572282910347, 0.13034634292125702, -0.01446272898465395, 0.008220724761486053 ]
[ 0.004664560779929161, 0.03075546585023403, -0.0026432815939188004, 0.026153000071644783, 0.021826382726430893, -0.010723743587732315, -0.01196384895592928, 0.026887815445661545, 0.003942075185477734, 0.03421023488044739, -0.008673631586134434, -0.0073548671789467335, 0.03459877148270607, 0.00881277583539486, 0.004270078148692846, -0.035346295684576035, 0.01476692408323288, -0.0032290532253682613, 0.015513903461396694, 0.0049255951307713985, -0.002506836084648967, 0.047749754041433334, 0.009538396261632442, -0.021948551759123802, 0.01561267301440239, 0.005039239767938852, -0.014952807687222958, -0.05716332048177719, -0.0006201021024025977, -0.11100750416517258, -0.040508054196834564, -0.03344978392124176, -0.017383774742484093, 0.03260568156838417, 0.0026868844870477915, -0.016088008880615234, 0.03790134936571121, 0.02532254159450531, -0.02810041792690754, 0.03366657719016075, 0.011801086366176605, -0.006691726855933666, -0.0061772167682647705, -0.03640080243349075, -0.020378798246383667, -0.04657440632581711, -0.03785645589232445, -0.055123500525951385, -0.006668670568615198, 0.032776422798633575, -0.04409024491906166, 0.009620667435228825, 0.022709812968969345, 0.01734969951212406, 0.018401524052023888, -0.02203735150396824, 0.010458613745868206, 0.0067181577906012535, -0.005848488304764032, -0.0061204442754387856, 0.024355413392186165, -0.0008376544574275613, -0.0699545368552208, -0.02808256819844246, -0.021627895534038544, -0.03822945058345795, -0.00035467746783979237, -0.001272372785024345, 0.0065315659157931805, 0.024363812059164047, -0.02327110804617405, 0.014952300116419792, -0.022197045385837555, -0.05273286625742912, -0.029597751796245575, 0.007544387131929398, 0.0479583814740181, -0.00795941986143589, -0.01445112656801939, -0.010819515213370323, -0.040443796664476395, 0.027332644909620285, -0.006876702886074781, 0.02800467051565647, -0.024385543540120125, 0.02835453487932682, -0.024896664544939995, 0.04469950497150421, 0.03390791639685631, -0.00963219441473484, -0.000566714268643409, -0.003228900721296668, -0.031066235154867172, 0.006291157100349665, -0.0887148454785347, -0.004496974870562553, -0.04371173307299614, 0.04105156660079956, -0.018203699961304665, 0.8110787272453308, 0.009196888655424118, 0.028457945212721825, 0.04153791442513466, 0.01673145405948162, -0.02441137470304966, 0.0036196450237184763, -0.019917288795113564, 0.00033225506194867194, -0.013652363792061806, -0.06332049518823624, 0.040254391729831696, 0.008372748270630836, 0.021104447543621063, 0.08540697395801544, 0.05385137349367142, 0.049524251371622086, 0.0032515835482627153, -0.008327458053827286, -0.022833921015262604, 0.054775722324848175, 0.0597638338804245, 0.007441833149641752, -0.009699024260044098, 0.03803004324436188, 0.0380319245159626, -0.10108453035354614, 0.0005996002582833171, -6.75757906825147e-33, 0.012988125905394554, 0.009869750589132309, 0.024403207004070282, 0.0022992989979684353, 0.030562615022063255, 0.005513014737516642, -0.04455775022506714, -0.003935409244149923, -0.017233088612556458, -0.011909502558410168, -0.0005913057248108089, 0.01478569209575653, 0.009700033813714981, -0.04197672754526138, 0.026910390704870224, -0.03674886003136635, -0.01161222904920578, 0.03606817498803139, 0.010692722164094448, 0.0027790828607976437, -0.003739886684343219, 0.028745539486408234, -0.02923392690718174, -0.023471247404813766, 0.0014965016162022948, 0.019385993480682373, 0.01951773278415203, -0.01683395728468895, 0.01700681261718273, -0.04153364896774292, 0.0005057016969658434, 0.01680067740380764, 0.015367045067250729, -0.01956016942858696, -0.028886910527944565, -0.03879079967737198, -0.058607589453458786, -0.004037526901811361, -0.02193673886358738, -0.09215182065963745, -0.04146276414394379, 0.011069990694522858, -0.06806587427854538, 0.017190439626574516, -0.03786212578415871, -0.04836944863200188, -0.03799712285399437, 0.03411252796649933, -0.009135384112596512, 0.011532271280884743, 0.03871777281165123, -0.007262374274432659, 0.005958663299679756, -0.01203483622521162, 0.027056211605668068, 0.03437250852584839, 0.026327388361096382, -0.01033477671444416, -0.0006454960093833506, 0.03770525008440018, 0.03657516837120056, -0.012696248479187489, 0.004163107369095087, 0.04003877937793732, 0.03853726014494896, -0.013266474939882755, 0.05519874766469002, 0.004095992539077997, -0.024250080808997154, 0.04179471358656883, -0.04191536083817482, -0.02930447645485401, 0.024159351363778114, 0.011885767802596092, 0.018285689875483513, -0.026317475363612175, 0.009902848862111568, 0.04559849947690964, -0.0281829871237278, 0.026229893788695335, -0.009549664333462715, -0.045541342347860336, -0.037874456495046616, -0.0325150191783905, -0.04988976940512657, 0.024387644603848457, -0.008997665718197823, -0.028432132676243782, 0.007293105125427246, 0.02632882632315159, 0.02571066841483116, 0.051546357572078705, 0.005484194494783878, -0.0010850261896848679, -0.03170817345380783, 7.355376720362144e-33, -0.01654178462922573, -0.011895178817212582, 0.0007825974025763571, -0.02784493751823902, 0.03225218877196312, -0.0043321941047906876, 0.03818477690219879, -0.04195048287510872, -0.03925849869847298, 0.01658807136118412, -0.030188390985131264, 0.009194552898406982, -0.020464731380343437, 0.022125594317913055, 0.07783276587724686, 0.01154332049190998, 0.04907195642590523, 0.012504341080784798, 0.015437128022313118, -0.01213792059570551, 0.0241414625197649, 0.017535917460918427, 0.022349203005433083, 0.023957690224051476, 0.06160017102956772, 0.017130056396126747, -0.012870069593191147, 0.04206336289644241, -0.01694580540060997, -0.04610111564397812, 0.02291915751993656, -0.039802439510822296, -0.006489403545856476, -0.06164572760462761, -0.016770781949162483, 0.014242662116885185, -0.0012836464447900653, 0.010172173380851746, 0.03664112836122513, 0.02147083356976509, 0.027550987899303436, 0.02425185590982437, -0.002786066383123398, 0.036967433989048004, -0.007177191786468029, 0.03662436082959175, 0.01744312234222889, -0.0037878756411373615, -0.0003903441538568586, -0.016530318185687065, -0.029856836423277855, -0.004915865603834391, 0.025756383314728737, 0.019535209983587265, -0.025236373767256737, 0.017235729843378067, -0.00796462595462799, 0.02417052537202835, -0.014575994573533535, -0.006591217126697302, 0.01817335933446884, -0.003116942010819912, -0.05035063624382019, 0.013129583559930325, -0.03545742481946945, -0.06125466153025627, -0.0036018274258822203, -0.007761584594845772, -0.00973144918680191, -0.025622231885790825, 0.004017745144665241, -0.01577693782746792, -0.03018522448837757, 0.07929215580224991, 0.011729049496352673, -0.02242848090827465, -0.017355650663375854, -0.025399038568139076, -0.05076248571276665, 0.0017584043089300394, 0.010922029614448547, 0.05986395478248596, -0.030315440148115158, 0.022469284012913704, 0.029991431161761284, 0.01164033729583025, -0.03033626452088356, 0.036287855356931686, 0.02480165660381317, -0.02102026715874672, -0.016903305426239967, -0.0015608416870236397, -0.020023304969072342, 0.017202330753207207, -0.014482730068266392, -1.2454335340805756e-8, -0.0035456849727779627, -0.042398735880851746, 0.002826790325343609, 0.03924502804875374, 0.020064620301127434, 0.015773532912135124, -0.028815636411309242, 0.014611966907978058, -0.029031286016106606, 0.030797317624092102, -0.01035221479833126, -0.025578469038009644, 0.018959932029247284, 0.00675744516775012, 0.012874497100710869, -0.03356746956706047, 0.025416966527700424, 0.016648152843117714, 0.0319715291261673, 0.02847917564213276, 0.0668569803237915, 0.02181878499686718, -0.023147670552134514, 0.01673639751970768, -0.04375821724534035, 0.0018123207846656442, 0.03729189559817314, -0.07656612247228622, -0.06137460842728615, 0.0014789263950660825, 0.007815408520400524, -0.018978890031576157, -0.013783111236989498, 0.002783549251034856, -0.027820482850074768, -0.002141872886568308, -0.015883861109614372, 0.00445212097838521, 0.0022376030683517456, 0.009777714498341084, -0.026525238528847694, 0.03141799196600914, -0.009614568203687668, -0.012985486537218094, -0.033547598868608475, -0.03298971801996231, -0.030149582773447037, -0.03595364838838577, 0.032726842910051346, -0.0009247831767424941, 0.021253369748592377, -0.0010447809472680092, 0.04501836374402046, -0.0029057981446385384, 0.02409364841878414, -0.004738723859190941, 0.036210428923368454, -0.06072212755680084, -0.012623507529497147, 0.02750890702009201, 0.06734806299209595, 0.006101775448769331, -0.0028817264828830957, -0.013316228054463863 ]
logstash-not-picking-up-some-files
https://markhneedham.com/blog/2012/09/07/logstash-not-picking-up-some-files
false
2012-09-09 22:29:33
neo4j/cypher: CREATE UNIQUE - "SyntaxException: string matching regex ``$' expected but ``p' found"
[ "neo4j", "cypher" ]
[ "neo4j" ]
I've been playing around with the mutating cypher syntax of neo4j which allows you to make changes to the graph as well as query it, a feature introduced into cypher in May in http://blog.neo4j.org/2012/05/neo4j-18m01-release-vindeln-vy.html[release 1.8 M01]. I was trying to make use of the 'http://docs.neo4j.org/chunked/milestone/query-create-unique.html[CREATE UNIQUE]' syntax which allows you to create nodes/relationships if they're missing but won't do anything if they already exists. I had something like the following: [source,text] ---- START product1=node:products('product_id:1') CREATE UNIQUE product1-[:sold]->(sales200010 {type:"product_sales", value: 1, name: "Oct 2000 Sales"}) ---- So I already have a product indexed with a 'product_id' of 1 and I wanted to create a relationship to a node defining the sales for that product. When I tried to execute that query I was ending up with the following error: [source,text] ---- SyntaxException: string matching regex `$' expected but `p' found Think we should have better error message here? Help us by sending this query to [email protected]. Thank you, the Neo4j Team. ---- I was a bit puzzled as to why that wouldn't work but eventually I read the http://blog.neo4j.org/2012/08/neo4j-18m07-sharing-is-caring.html[release notes for 1.8 M07] where I learnt that in earlier versions of neo4j 'CREATE UNIQUE' had actually been known as 'RELATE' instead. Since I'm using 1.8 M06 at the moment I just needed to change 'CREATE UNIQUE' to 'RELATE' but http://neo4j.org/download-thanks/?edition=community&release=1.8.RC1&platform=unix[RC1 is now available] so I'll soon switch to that and go back to 'CREATE UNIQUE' again.
null
null
[ 0.0041717784479260445, 0.0051746973767876625, -0.008238288573920727, 0.037605538964271545, 0.09875364601612091, 0.011248823255300522, 0.029996341094374657, 0.023852188140153885, 0.03927523270249367, -0.006838815286755562, -0.02031112089753151, -0.005166562739759684, -0.07090286165475845, 0.0343254953622818, -0.03461255878210068, 0.05901991203427315, 0.06805764883756638, 0.0257488414645195, 0.012208985164761543, -0.009003947488963604, -0.0016161889070644975, 0.04123077169060707, 0.006273115053772926, 0.028655825182795525, 0.0672704428434372, 0.014260645024478436, -0.00028729255427606404, -0.020297769457101822, -0.05434087663888931, 0.014201282523572445, 0.04359372332692146, -0.00403550872579217, 0.03450553119182587, -0.048769764602184296, 0.02198196016252041, 0.0011339170159772038, -0.05503034591674805, -0.015073202550411224, 0.0026713020633906126, -0.003539511701092124, -0.06071997433900833, 0.016373122110962868, 0.00234734988771379, 0.004852732643485069, -0.0480843149125576, 0.010506555438041687, -0.06725870817899704, 0.022344224154949188, 0.012563801370561123, 0.05452955886721611, -0.10638304054737091, 0.002956974320113659, -0.012417156249284744, -0.007283685263246298, -0.0043670437298715115, 0.0404699333012104, 0.005777412094175816, -0.06449969857931137, 0.034219782799482346, -0.02822435274720192, 0.0018115590792149305, -0.004095058422535658, -0.015255819074809551, 0.03377525508403778, -0.012839511036872864, -0.041241176426410675, 0.00009601789497537538, 0.04532825946807861, -0.06770434975624084, -0.02559460513293743, -0.004621478263288736, -0.00001975314262381289, 0.013083410449326038, -0.019316667690873146, 0.005073015112429857, -0.024322956800460815, -0.013121694326400757, 0.03186783194541931, 0.03733457252383232, 0.07486101984977722, -0.01574755273759365, 0.02875339426100254, 0.005761033855378628, 0.012117111124098301, 0.007586282677948475, -0.044570762664079666, -0.0190765131264925, -0.005859608296304941, -0.05488773062825203, 0.031910721212625504, 0.027010241523385048, -0.07753225415945053, 0.018476853147149086, -0.0023913055192679167, -0.032803136855363846, 0.01439042016863823, -0.018840551376342773, -0.005953976884484291, 0.027926180511713028, -0.014182751066982746, -0.03210057318210602, -0.0066980160772800446, -0.029302069917321205, -0.0019323016749694943, -0.0831211730837822, -0.013572996482253075, -0.029846765100955963, -0.023230213671922684, 0.017188575118780136, -0.019454488530755043, -0.04964893311262131, 0.010496743954718113, -0.00425679050385952, 0.049192313104867935, -0.0914175808429718, 0.07551168650388718, 0.025262294337153435, -0.011910786852240562, -0.030577320605516434, 0.0231598149985075, 0.043930474668741226, -0.0009273397736251354, -0.01776512898504734, 0.0708087757229805, -0.00810370221734047, 0.06463545560836792, -0.01587352342903614, 0.05167559161782265, -0.020174935460090637, -0.07221274077892303, -0.020017309114336967, 0.06582874059677124, -0.0055345892906188965, 0.004816483240574598, -0.0206699650734663, -0.010710779577493668, 0.0032944197300821543, 0.006333158351480961, 0.06560949236154556, 0.027846312150359154, 0.020630592480301857, -0.03164743259549141, 0.006875487510114908, 0.0021148533560335636, 0.014507719315588474, 0.041811324656009674, -0.04823870584368706, -0.043960846960544586, -0.025522718206048012, 0.001439355663023889, 0.027979888021945953, 0.02874206006526947, 0.04811884090304375, -0.0010007178643718362, 0.01725739985704422, 0.11325771361589432, 0.020521651953458786, 0.014204766601324081, -0.0037367534823715687, 0.021611662581562996, 0.051792584359645844, 0.03224022686481476, 0.015115052461624146, 0.04346824809908867, 0.014752661809325218, -0.010408595204353333, 0.0017655778210610151, 0.06859268248081207, -0.010851208120584488, -0.0358603373169899, -0.05617442727088928, -0.07637705653905869, 0.05354177579283714, -0.0562741719186306, 0.0019409414380788803, 0.05287021026015282, 0.05352696403861046, 0.02063031494617462, 0.016961947083473206, 0.03365194797515869, -0.06277801096439362, 0.06167272850871086, -0.0009724467527121305, -0.006374808494001627, 0.01404387317597866, 0.013271456584334373, 0.06992515921592712, 0.04249690845608711, 0.012034720741212368, 0.02367880940437317, -0.09795091301202774, -0.06452304869890213, -0.012285801582038403, -0.01467307098209858, 0.06272677332162857, -0.039428189396858215, 0.007994428277015686, 0.044746946543455124, -0.0042777517810463905, 0.01500830240547657, 0.012944054789841175, 0.003828351618722081, 0.008826658129692078, -0.05050838738679886, -0.042781271040439606, 0.041728708893060684, 0.027914000675082207, -0.07282552868127823, -0.07119645178318024, 0.01936793141067028, -0.005031320732086897, 0.02536590024828911, 0.025965038686990738, -0.013578122481703758, 0.04960931837558746, 0.03193118795752525, 0.03139914199709892, -0.006927185691893101, -0.004969455301761627, -0.03149507939815521, 0.03191623464226723, 0.020415175706148148, -0.010465851984918118, -0.0043077850714325905, -0.0022022223565727472, 0.10852397978305817, 0.05211479961872101, -0.028660070151090622, -0.04163794592022896, 0.04318036139011383, 0.01914411038160324, -0.005980073940008879, 0.007467898074537516, -0.011550693772733212, -0.0014403352979570627, -0.030639197677373886, -0.002157650887966156, 0.012760568410158157, -0.006820703856647015, -0.043789710849523544, 0.0062715900130569935, 0.06224894896149635, -0.048504579812288284, 0.04988107830286026, 0.015044496394693851, 0.004298622719943523, -0.016792932525277138, -0.051569607108831406, -0.05492531135678291, 0.03284528851509094, 0.006454344838857651, -0.0019919590558856726, 0.07064659893512726, -0.020887887105345726, -0.03545974940061569, -0.008876142092049122, -0.03425717353820801, 0.03876136243343353, 0.04155208542943001, 0.05142427980899811, -0.02387092262506485, 0.050534721463918686, -0.01933714747428894, 0.02219906635582447, -0.02467004396021366, -0.04514933004975319, -0.053376369178295135, -0.007567990105599165, 0.018383298069238663, 0.016243940219283104, 0.00718813668936491, -0.010745318606495857, 0.010690141469240189, 0.0045700110495090485, 0.020376546308398247, -0.014978327788412571, 0.021807843819260597, -0.011698109097778797, -0.0075826807878911495, -0.04526472091674805, -0.03541334718465805, 0.04184722155332565, -0.05061011388897896, -0.053106680512428284, -0.04520731046795845, -0.056991662830114365, 0.03645700216293335, -0.07286224514245987, -0.04721853882074356, 0.015126239508390427, 0.044187434017658234, 0.06259007006883621, -0.005152510013431311, 0.021117176860570908, 0.09263432770967484, 0.0045767673291265965, 0.011114715598523617, 0.0070062074810266495, -0.010013336315751076, 0.06214518845081329, -0.009749331511557102, 0.04130012169480324, 0.036947377026081085, -0.022548802196979523, 0.001921332092024386, -0.02913597784936428, -0.0016531249275431037, -0.018838535994291306, -0.2656344473361969, 0.026301391422748566, -0.03784565627574921, -0.04653604328632355, 0.02260572835803032, -0.03225914388895035, 0.0009255665354430676, -0.020825205370783806, -0.02270183153450489, 0.006953143514692783, 0.012160195969045162, -0.02434159256517887, -0.0018988008378073573, 0.01689155213534832, 0.01082780584692955, 0.0014242749894037843, -0.022073015570640564, -0.04601940140128136, -0.0159943625330925, 0.030947064980864525, -0.010341902263462543, -0.02982460893690586, -0.011637721210718155, 0.000384935992769897, 0.03547195345163345, 0.019887933507561684, -0.08183608204126358, 0.03593270480632782, -0.05911184474825859, -0.02264699526131153, -0.003722279565408826, -0.006551793776452541, 0.02372099831700325, -0.0002748208644334227, -0.017364732921123505, 0.007412273436784744, 0.05491843819618225, 0.009335041977465153, 0.028537970036268234, 0.02174956351518631, -0.04619120433926582, -0.0625002309679985, 0.008066942915320396, 0.0006292879115790129, 0.07549580931663513, -0.004351295065134764, -0.08005303144454956, -0.011159848421812057, -0.02576959878206253, 0.07021290063858032, -0.03145961835980415, -0.04603537544608116, 0.020715219900012016, 0.017461836338043213, 0.020684605464339256, -0.011227826587855816, -0.01014896109700203, -0.02029954269528389, -0.03660622611641884, -0.02147814817726612, 0.004868680145591497, -0.06567808240652084, 0.013114966452121735, -0.04338544234633446, -0.0037208530120551586, -0.06362884491682053, -0.07711870223283768, -0.04589373245835304, 0.054712649434804916, 0.03212955966591835, 0.004892150871455669, 0.04727670177817345, -0.00041649513877928257, -0.09985111653804779, -0.036490172147750854, -0.04819298908114433, 0.0013127692509442568, -0.009176013059914112, -0.031195634976029396, 0.04784919321537018, -0.03367191553115845, -0.03553444519639015, -0.0165047999471426, 0.025133207440376282, 0.027057813480496407, 0.012481889687478542, 0.029799629002809525, -0.045448187738657, -0.04045604541897774, 0.008521271869540215, 0.06363814324140549, -0.018662340939044952, -0.022193269804120064, -0.01383364200592041, 0.001651149126701057, -0.002902343636378646, 0.00933164358139038, 0.004548560827970505, 0.005085896700620651, 0.047532934695482254, 0.04889574646949768, -0.03370548039674759, 0.010634834878146648, -0.013198020868003368, -0.03028043545782566, -0.006687965244054794, -0.0395037978887558, 0.009471318684518337, 0.011681794188916683, 0.02348233200609684, -0.024929039180278778, -0.02697622962296009, 0.00671832961961627, -0.04090408235788345, -0.020683439448475838, -0.04172946512699127, 0.00861078966408968, 0.025971481576561928, 0.04189380258321762, -0.04552895948290825, -0.04361864551901817, 0.029609695076942444, 0.04758584126830101, -0.012473356910049915, -0.04915820062160492, -0.0359448567032814, -0.019363267347216606, -0.0025665985886007547, 0.019700489938259125, 0.024461654946208, -0.037473734468221664, 0.025863416492938995, 0.02052885666489601, -0.039501141756772995, 0.04016443341970444, 0.004269036464393139, -0.021951448172330856, -0.008500097319483757, -0.005011872388422489, -0.006113103125244379, -0.015711449086666107, 0.010186456143856049, -0.026232823729515076, 0.034407228231430054, 0.024609500542283058, -0.002080454956740141, 0.03076944500207901, 0.01339894998818636, 0.01718180999159813, -0.0030419763643294573, -0.010331141762435436, -0.050919145345687866, 0.01715865358710289, -0.029755596071481705, -0.020019372925162315, -0.003406293923035264, 0.043273258954286575, -0.010734020732343197, -0.028647752478718758, -0.015877656638622284, 0.02295582741498947, -0.062067896127700806, 0.03629592806100845, -0.002744592959061265, 0.013212213292717934, 0.028348958119750023, -0.024174829944968224, 0.02340231090784073, -0.026909928768873215, -0.017684882506728172, 0.009981490671634674, 0.020611466839909554, -0.02870846912264824, -0.008354679681360722, -0.011120644398033619, 0.008756984956562519, 0.011061934754252434, 0.03939005732536316, 0.03019491210579872, 0.015092295594513416, 0.008158989250659943, -0.012767055071890354, 0.023165728896856308, 0.03616546094417572, 0.045818619430065155, 0.002698948374018073, -0.012062324211001396, -0.0004303712921682745, -0.03325923532247543, -0.004234661348164082, -0.008793369866907597, -0.009682154282927513, -0.0479622520506382, 0.028418967500329018, -0.036989957094192505, -0.06091298162937164, 0.043166276067495346, -0.01429674867540598, 0.01665758155286312, 0.037552736699581146, 0.018684888258576393, -0.000005519288151845103, -0.032287582755088806, 0.04570247232913971, 0.05403648316860199, -0.03601524233818054, -0.03713565692305565, -0.015951868146657944, -0.035181719809770584, -0.02240360714495182, 0.046085797250270844, -0.0715201124548912, -0.010048286989331245, -0.0294883344322443, 0.012700757943093777, -0.015539828687906265, -0.05298583582043648, -0.009020388126373291, -0.0028159278444945812, 0.01287891250103712, 0.04401513561606407, 0.010513180866837502, 0.02400084026157856, -0.005526397842913866, 0.007973121479153633, 0.06752852350473404, -0.04586171358823776, -0.002746580634266138, 0.004432749003171921, 0.010983018204569817, 0.03555908799171448, -0.027008218690752983, 0.03660784661769867, 0.009394034743309021, 0.014902409166097641, -0.018690429627895355, -0.06584871560335159, 0.03548232838511467, -0.027858853340148926, 0.041941095143556595, -0.005570441484451294, 0.005860676523298025, -0.03587212786078453, 0.013036665506660938, -0.031140966340899467, -0.014457750134170055, -0.003865923499688506, -0.03111390210688114, 0.01001295167952776, 0.024392899125814438, -0.0019696170929819345, 0.03554157167673111, -0.01715690828859806, -0.02993110939860344, 0.05452593415975571, -0.03723705932497978, -0.031773824244737625, 0.00040837956476025283, -0.06822705268859863, 0.0027548635844141245, 0.02671714313328266, 0.026598894968628883, -0.05817369371652603, 0.06878145039081573, 0.050854068249464035, 0.030087964609265327, 0.010264731012284756, -0.022110341116786003, 0.019957762211561203, -0.027931805700063705, -0.021107524633407593, -0.08361759781837463, 0.011780578643083572, 0.05233108997344971, -0.006161642726510763, 0.011354384012520313, -0.024509798735380173, -0.021503737196326256, 0.0013505088863894343, -0.03423147648572922, -0.01944400742650032, 0.04475298896431923, -0.005289777182042599, 0.047805339097976685, 0.018724985420703888, -0.04587023705244064, -0.0017521546687930822, 0.07235324382781982, -0.02908787690103054, -0.04165248945355415, -0.04448825493454933, 0.04768308252096176, -0.00716254860162735, 0.040681954473257065, -0.02126116119325161, -0.03743873909115791, 0.06468958407640457, 0.023108962923288345, 0.04609185457229614, 0.06400160491466522, -0.005909639876335859, 0.011714445427060127, 0.03189484030008316, -0.002198338508605957, 0.011668927036225796, 0.05918953940272331, -0.021880481392145157, -0.05214051902294159, 0.024338435381650925, 0.01017564907670021, -0.02489837259054184, -0.04935416579246521, 0.07540363818407059, 0.008131691254675388, -0.046759504824876785, -0.04080895707011223, 0.034323014318943024, -0.043223410844802856, 0.0013097956543788314, -0.04576875641942024, -0.0006343656568787992, -0.038761623203754425, 0.0517619363963604, -0.020670797675848007, 0.015742937102913857, 0.06772822141647339, -0.011653267778456211, 0.028689533472061157, -0.012614309787750244, 0.07026248425245285, 0.08313566446304321, 0.06365428119897842, 0.014157633297145367, 0.05239748954772949, -0.003326009027659893, -0.031672559678554535, -0.005810644011944532, -0.05915576219558716, -0.033395636826753616, 0.013896632939577103, 0.004342155996710062, 0.05558212846517563, -0.03676708787679672, 0.0703425481915474, -0.015095608308911324, -0.013698695227503777, -0.015526441857218742, -0.02935457043349743, 0.05800095200538635, 0.07465547323226929, 0.020590921863913536, 0.03904632851481438, -0.02727494388818741, -0.025868786498904228, 0.007146304007619619, -0.017549604177474976, -0.02495584450662136, 0.037070922553539276, 0.018486814573407173, 0.004660665988922119, -0.008108268491923809, 0.03941631317138672, 0.0833730399608612, -0.027949655428528786, 0.010821790434420109, 0.012786660343408585, 0.01702713966369629, -0.01005687564611435, 0.02718823216855526, -0.0015845678281039, -0.02914556674659252, -0.03534843027591705, -0.049966566264629364, -0.01939254067838192, -0.04052620008587837, -0.022871242836117744, 0.016594408079981804, -0.011178039945662022, -0.014243011362850666, 0.006649485789239407, -0.014787175692617893, -0.0172071885317564, -0.038047704845666885, -0.0300145223736763, -0.0379394069314003, -0.0707203820347786, 0.0004497596528381109, 0.007705019321292639, -0.00004331355739850551, -0.0031780186109244823, -0.0034020282328128815, -0.03100883588194847, 0.007646254729479551, 0.05350014194846153, -0.027389053255319595, 0.006593870464712381, 0.0014466379070654511, 0.013329296372830868, -0.02199402265250683, 0.03228679299354553, 0.026622794568538666, 0.007386161480098963, 0.0012842799769714475, -0.03478163480758667, 0.02882973663508892, 0.03628632798790932, 0.011665120720863342, 0.004603903740644455, -0.06403446942567825, -0.007060822565108538, 0.00873634498566389, -0.01895429566502571, -0.07172845304012299, -0.004889432340860367, 0.04835358262062073, -0.017988359555602074, 0.03464878723025322, 0.014594200998544693, -0.027539342641830444, -0.006075333338230848, 0.0006633989978581667, 0.009027715772390366, -0.00464610243216157, 0.03393201529979706, -0.033915258944034576, 0.06895937770605087, 0.023991432040929794, -0.0111080976203084, -0.02587505243718624, -0.01489722914993763, 0.008213849738240242, 0.006484746467322111, -0.025681745260953903, -0.04792698100209236, -0.0431123822927475, -0.08081495016813278, -0.030892087146639824, -0.00883775670081377, -0.026792332530021667, -0.0073567344807088375, 0.0015009173657745123, 0.03219233825802803, -0.03682097792625427, 0.044322121888399124, -0.03560223802924156, 0.05340715870261192, -0.02303493209183216, -0.03066140040755272, -0.04739467799663544, -0.019566303119063377, -0.014491276815533638, 0.01016616728156805, 0.02969224378466606, -0.059254057705402374, 0.0010622027330100536, -0.05969790741801262, 0.028639907017350197, 0.0028741229325532913, 0.03197659179568291, 0.022970832884311676 ]
[ -0.05480318143963814, -0.026868829503655434, -0.03998053818941116, -0.0005920414696447551, 0.03454248979687691, -0.05300658568739891, -0.040999915450811386, 0.028375254943966866, 0.0038086010608822107, -0.01998131349682808, 0.044510368257761, -0.026547420769929886, 0.008855865336954594, -0.0036453227512538433, 0.0631600171327591, 0.014124331064522266, -0.04180428385734558, -0.05678804591298103, -0.04669646546244621, 0.04538119211792946, -0.02887796051800251, -0.048027947545051575, -0.030388405546545982, -0.040592633187770844, 0.009592801332473755, 0.04598565772175789, 0.044548965990543365, -0.006438475102186203, 0.02434978075325489, -0.2051864117383957, 0.005904672667384148, 0.034557685256004333, 0.012358883395791054, 0.004002091009169817, 0.019837575033307076, 0.00914059393107891, 0.04684045538306236, -0.025195393711328506, 0.030007652938365936, 0.054093167185783386, 0.003490343689918518, -0.007007731590420008, -0.03833182156085968, -0.0038348152302205563, 0.0689416229724884, 0.05095416679978371, -0.022912228479981422, -0.007932959124445915, -0.0409855879843235, 0.023415181785821915, -0.018312280997633934, -0.025666771456599236, 0.008989558555185795, -0.0001862445060396567, 0.02357366494834423, 0.058945897966623306, 0.012851874344050884, 0.07754086703062057, 0.034034404903650284, 0.04329026862978935, 0.030722998082637787, 0.00809804629534483, -0.11638043820858002, 0.07615548372268677, 0.007060122676193714, 0.01569240354001522, -0.0694953054189682, -0.006800729315727949, -0.04096653684973717, 0.0858418270945549, 0.048761315643787384, -0.015093917958438396, -0.054012980312108994, 0.07459515333175659, -0.01725068874657154, 0.04926413670182228, 0.002629110123962164, 0.024532625451683998, 0.026346933096647263, -0.00648092944175005, -0.054777082055807114, 0.013911332003772259, -0.05005834251642227, -0.023883653804659843, -0.03262333944439888, 0.051521435379981995, 0.00475319242104888, 0.03347887098789215, 0.015226173214614391, 0.03837211802601814, -0.0010032979771494865, 0.00388884823769331, 0.04320605844259262, 0.03185712918639183, -0.08143575489521027, -0.018288495019078255, -0.0077078696340322495, 0.014517275616526604, 0.006904550828039646, 0.37757420539855957, 0.008888967335224152, 0.0038045926485210657, 0.013899517245590687, 0.06797231733798981, -0.013180587440729141, -0.012059845961630344, -0.02257847785949707, -0.05636792257428169, 0.04212444648146629, -0.01302332989871502, -0.01418811921030283, -0.034494493156671524, 0.021187953650951385, -0.10489244014024734, -0.00995053630322218, 0.0060081928968429565, 0.029261479154229164, 0.03754318505525589, -0.019316038116812706, -0.01824094168841839, 0.0034093381837010384, 0.02854319103062153, 0.040703702718019485, -0.005300335586071014, 0.01151280477643013, 0.033800601959228516, -0.00469776289537549, 0.043397631496191025, 0.024068031460046768, 0.00530766136944294, 0.0733308345079422, 0.003937867935746908, -0.06406988948583603, 0.026074545457959175, -0.018013378605246544, -0.012503847479820251, 0.00973742175847292, -0.02298654057085514, -0.012908145785331726, 0.03625824674963951, -0.02259759232401848, -0.008655564859509468, 0.0030802579130977392, -0.009588145650923252, -0.02713625319302082, 0.1165628433227539, 0.00035388232208788395, -0.032056231051683426, -0.041118837893009186, 0.0031559818889945745, -0.02457253262400627, 0.012174107134342194, -0.019250569865107536, -0.05778683349490166, -0.02453499473631382, 0.008267107419669628, 0.09591514617204666, -0.01975543424487114, -0.07077820599079132, 0.008118737488985062, 0.005478189326822758, -0.014688940718770027, -0.03126763924956322, 0.0788661390542984, 0.036607030779123306, -0.14542534947395325, -0.0092348987236619, 0.0225500650703907, 0.016732707619667053, -0.06424408406019211, -0.008608312346041203, 0.0233840923756361, -0.038812071084976196, -0.008279834873974323, 0.06680113077163696, -0.018429629504680634, -0.03370794653892517, -0.03198942542076111, 0.02538028173148632, 0.012821665965020657, 0.0162926334887743, -0.0008571845828555524, -0.016739143058657646, 0.0019019934115931392, -0.09162309020757675, -0.10541429370641708, -0.07149681448936462, 0.04284296929836273, -0.06003843992948532, -0.022431036457419395, -0.018510956317186356, 0.020967135205864906, -0.0160747729241848, 0.09976790845394135, -0.04794805869460106, -0.012722337618470192, -0.01569749414920807, -0.012123904190957546, -0.021054673939943314, -0.06284639984369278, 0.031892385333776474, 0.027613220736384392, -0.010539498180150986, 0.036858346313238144, -0.08104992657899857, 0.02032129280269146, 0.1088208332657814, -0.046810638159513474, 0.047824591398239136, 0.02868175320327282, -0.07858458161354065, 0.024273166432976723, -0.03700423240661621, 0.028658557683229446, -0.01452487800270319, -0.02256627380847931, -0.046127621084451675, 0.011000199243426323, 0.04247279837727547, 0.04268438741564751, -0.03783489018678665, -0.038368113338947296, -0.023518335074186325, -0.34091538190841675, -0.05964360013604164, -0.02035057730972767, -0.01708356663584709, 0.037885770201683044, 0.0019906661473214626, 0.0012252592714503407, -0.014904185198247433, -0.024273455142974854, 0.018399260938167572, 0.0847916230559349, -0.0036926474422216415, -0.01109766960144043, -0.07399264723062515, 0.016384121030569077, 0.058418504893779755, -0.0013424482895061374, -0.01979418843984604, 0.004749222192913294, 0.0031042802147567272, -0.012889818288385868, -0.0492551326751709, 0.01983288675546646, -0.051203902810811996, -0.023909632116556168, -0.005492853000760078, 0.10386787354946136, 0.018320627510547638, 0.017203547060489655, -0.06387097388505936, 0.045489728450775146, 0.013045928440988064, -0.016925306990742683, -0.06938685476779938, 0.01593402773141861, -0.01156788133084774, 0.004775252193212509, 0.036427855491638184, -0.02651776373386383, -0.017930621281266212, -0.035746246576309204, -0.02580859139561653, -0.040443964302539825, -0.03457118198275566, -0.00074673694325611, 0.030653206631541252, -0.05724407732486725, 0.009618154726922512, 0.007225241977721453, 0.09537965059280396, 0.006837211083620787, 0.042128972709178925, 0.02064511552453041, 0.014028511941432953, -0.003734454046934843, -0.020597543567419052, -0.06363452225923538, -0.009950905106961727, 0.03338656947016716, 0.013838670216500759, 0.016878411173820496, 0.03733062371611595, 0.022515980526804924, -0.08428067713975906, 0.04677386209368706, -0.007436362095177174, 0.017904113978147507, -0.015494514256715775, 0.03136824443936348, -0.03737043961882591, -0.02760091982781887, 0.11276257038116455, 0.02539115771651268, -0.0015393669018521905, 0.03745819628238678, 0.0325002446770668, -0.029674122110009193, -0.004671126138418913, 0.024492990225553513, -0.007030889857560396, -0.002009727293625474, -0.04511202499270439, 0.07175561040639877, -0.007105107884854078, -0.03308679535984993, 0.05888211354613304, -0.0035392032004892826, -0.0480802096426487, 0.06266878545284271, -0.008661272004246712, -0.0298820361495018, -0.004666933789849281, -0.018326587975025177, -0.027589187026023865, 0.08232416212558746, -0.035608869045972824, -0.2578796148300171, 0.041276708245277405, 0.023364506661891937, 0.0681525394320488, -0.008264565840363503, 0.022392651066184044, 0.02381892502307892, -0.015563060529530048, 0.001874888432212174, 0.00181249575689435, 0.04806702956557274, 0.0335056334733963, 0.004631963092833757, -0.002840138738974929, 0.006676764227449894, 0.004452162887901068, 0.03564206138253212, 0.013287939131259918, 0.04097706452012062, -0.002076917327940464, 0.06236148998141289, -0.01816881075501442, 0.19059017300605774, 0.0677904263138771, -0.00869546178728342, 0.027101920917630196, -0.04673184081912041, 0.019736463204026222, 0.04782577604055405, 0.008260354399681091, -0.00645276065915823, 0.05481309816241264, 0.012990672141313553, 0.03670371696352959, 0.019828181713819504, -0.04835967347025871, 0.008409255184233189, 0.007383480202406645, 0.0034391782246530056, -0.06333921104669571, -0.03326822444796562, 0.003755990182980895, -0.03352435678243637, 0.033830467611551285, 0.07330987602472305, -0.03654240071773529, -0.010543550364673138, -0.013718241825699806, -0.11646490544080734, -0.00018792491755448282, -0.04516925662755966, -0.04150119423866272, -0.040439147502183914, 0.009618041105568409, -0.015798494219779968, 0.02678169496357441, 0.023516427725553513, -0.0007477276958525181, 0.031208809465169907, 0.01995808072388172, -0.0222358126193285, -0.019382184371352196, 0.09422449767589569, 0.005397321190685034, 0.0023232856765389442 ]
[ -0.021517524495720863, 0.028105994686484337, -0.02119651436805725, -0.0024564568884670734, -0.017310431227087975, 0.022714819759130478, -0.012340140528976917, 0.022515391930937767, -0.03510686382651329, -0.028171272948384285, 0.006417316850274801, 0.038752518594264984, 0.09083358198404312, -0.007122877519577742, -0.01554169226437807, 0.02755378559231758, -0.00750195374712348, 0.019372083246707916, 0.005559662356972694, -0.03012368641793728, -0.009069759398698807, -0.018151909112930298, 0.027090057730674744, -0.015834154561161995, -0.005132801365107298, -0.006071300245821476, 0.006330699194222689, 0.015661019831895828, 0.02751113846898079, -0.09240998327732086, -0.025444451719522476, -0.012640432454645634, 0.0014558385591953993, 0.02973032183945179, -0.010931158438324928, -0.009185545146465302, 0.028795374557375908, -0.005506872199475765, -0.01733674854040146, -0.0036506596952676773, 0.04352512210607529, -0.0241185761988163, -0.06432465463876724, 0.003719793865457177, 0.014239588752388954, -0.022819101810455322, -0.006582155358046293, 0.004839144181460142, 0.020556773990392685, -0.008092333562672138, -0.05308346450328827, -0.0064583951607346535, -0.014487755484879017, 0.005866928957402706, 0.036504536867141724, 0.021371781826019287, -0.05044592171907425, -0.012025089003145695, 0.017405983060598373, -0.014388048090040684, 0.0397275909781456, -0.03357097879052162, -0.03877609968185425, -0.03909582272171974, -0.018855692818760872, 0.011751450598239899, -0.014306193217635155, 0.046867817640304565, -0.025011377409100533, 0.01663854718208313, 0.008021255023777485, 0.05044660344719887, -0.09318818151950836, -0.005967709235846996, -0.0300731398165226, 0.07026674598455429, 0.05105290189385414, -0.03940273076295853, -0.007689749822020531, 0.015057171694934368, -0.06788215041160583, 0.0345362052321434, -0.02685639262199402, -0.029708346351981163, -0.033385019749403, 0.018329670652747154, -0.003406066680327058, -0.01253601722419262, 0.031276457011699677, 0.014716138131916523, -0.05452968552708626, 0.010174037888646126, -0.02259027026593685, -0.037801213562488556, -0.09692659974098206, 0.007454074919223785, 0.036392323672771454, -0.00028834480326622725, 0.03757990151643753, 0.7778116464614868, 0.021903039887547493, -0.020566200837492943, 0.00499160960316658, 0.023333603516221046, -0.026487773284316063, 0.015042130835354328, -0.021501902490854263, 0.018258744850754738, -0.00297098932787776, 0.02091977931559086, -0.05260659009218216, 0.02320941351354122, -0.009359963238239288, 0.03069387748837471, 0.005716495681554079, 0.014878768473863602, 0.01739099621772766, -0.012565910816192627, -0.018325110897421837, 0.0260686706751585, 0.007295661140233278, 0.037194784730672836, 0.01922052539885044, 0.015886280685663223, -0.013591628521680832, -0.16594207286834717, -0.026916971430182457, -7.388465416969853e-33, 0.017473967745900154, 0.01728268340229988, 0.06025148183107376, 0.01047072559595108, -0.007893274538218975, 0.06572380661964417, -0.004626195877790451, 0.001820691511966288, -0.053396157920360565, -0.024708133190870285, -0.042373329401016235, -0.0031548687256872654, 0.01181083545088768, -0.04090966284275055, 0.0012488614302128553, -0.019250836223363876, 0.026958899572491646, 0.0004755074332933873, 0.009281495586037636, -0.0425034798681736, 0.008422300219535828, 0.04086862504482269, -0.03577838093042374, 0.06263304501771927, -0.016301847994327545, 0.020275114104151726, -0.000790107122156769, 0.015079573728144169, 0.012459131889045238, -0.04352079704403877, -0.05880400165915489, 0.017084483057260513, 0.013443497009575367, -0.018352681770920753, -0.03666055202484131, -0.04671978950500488, -0.04508862644433975, -0.0011833935277536511, -0.018147023394703865, -0.08675749599933624, -0.051566921174526215, 0.004774201661348343, 0.017271708697080612, -0.016269894316792488, -0.04967888072133064, 0.00684297876432538, -0.030837496742606163, 0.015396722592413425, 0.010851061902940273, 0.013518460094928741, -0.011524595320224762, 0.0479774996638298, 0.04181089252233505, -0.003618977265432477, -0.06525879353284836, -0.06202152743935585, -0.012464579194784164, -0.046822067350149155, -0.025178460404276848, -0.011070871725678444, 0.03572383150458336, 0.0026314728893339634, -0.0046120285987854, 0.029714267700910568, 0.005752996541559696, 0.04950476065278053, 0.009311063215136528, 0.006918736267834902, -0.0011359566124156117, 0.041656676679849625, -0.05323166772723198, 0.023822179064154625, -0.02823019027709961, -0.040574051439762115, 0.03945808485150337, -0.07402537763118744, 0.00945340096950531, -0.026906142011284828, 0.02660982310771942, 0.04134736582636833, -0.059449702501297, -0.015589183196425438, 0.020553991198539734, 0.012115847319364548, -0.03291066363453865, -0.01174953393638134, 0.004876814316958189, 0.02515740692615509, 0.04265492036938667, 0.03948235884308815, 0.05330369248986244, 0.03258288651704788, -0.008916758000850677, 0.002281052526086569, 0.013450571335852146, 6.361743100555572e-33, -0.013098591938614845, -0.0022374102845788, 0.010536537505686283, 0.005321386735886335, 0.043959613889455795, -0.002091874834150076, -0.03465704992413521, -0.005318421870470047, -0.039860647171735764, 0.02310281991958618, -0.0003333931090310216, -0.04233970493078232, 0.0025651517789810896, 0.017666583880782127, 0.042249102145433426, 0.01390848495066166, 0.0005539804114960134, -0.026816880330443382, 0.0267377607524395, 0.011209411546587944, 0.011393050663173199, 0.028038615360856056, -0.006549172103404999, 0.041150059551000595, 0.01051189936697483, 0.006577360909432173, -0.002112716669216752, 0.01536721084266901, -0.004518360830843449, -0.03716864064335823, 0.0017988726031035185, -0.04368120804429054, -0.03330577164888382, -0.023619629442691803, 0.02442137897014618, -0.01824241317808628, -0.018015041947364807, -0.024037137627601624, 0.039912790060043335, -0.03307841718196869, 0.017144860699772835, -0.024738362058997154, -0.04065994918346405, 0.11053194105625153, 0.022289607673883438, 0.010291678830981255, 0.045199569314718246, -0.0188345555216074, 0.028687404468655586, 0.0016145537374541163, 0.004338239319622517, 0.061616793274879456, 0.008082553744316101, 0.012821028009057045, 0.018918104469776154, -0.03371560946106911, 0.025892170146107674, 0.05967799946665764, 0.007249939721077681, -0.0004035856109112501, 0.016474783420562744, -0.0008137013064697385, -0.06728711724281311, 0.044799864292144775, -0.01669887639582157, -0.040199119597673416, 0.00026221320149488747, 0.005314996931701899, -0.01363892201334238, -0.026104746386408806, -0.0195639505982399, 0.031599681824445724, -0.014500950463116169, -0.00242689810693264, 0.019781729206442833, -0.03768831118941307, -0.033203210681676865, -0.01200223807245493, -0.04540066048502922, 0.011024773120880127, 0.0034268489107489586, 0.036307442933321, 0.05047878995537758, 0.014751779846847057, -0.005433998536318541, 0.0205317884683609, -0.01771395653486252, 0.02991580404341221, -0.0066248890943825245, -0.0014234727714210749, 0.00028120397473685443, -0.005259150639176369, -0.07355231791734695, 0.07546374946832657, -0.04857573285698891, -1.263105353643823e-8, -0.04302756488323212, 0.030343104153871536, -0.0346684530377388, 0.0063919927924871445, -0.010591922327876091, 0.0009520889143459499, 0.02219771035015583, 0.011690925806760788, -0.023155612871050835, 0.030506225302815437, 0.0059087141416966915, -0.014897280372679234, -0.012198273092508316, 0.003029477782547474, 0.017585748806595802, -0.060867201536893845, 0.0017234564293175936, 0.009552724659442902, 0.028373923152685165, 0.03004276566207409, 0.010322014801204205, 0.07232517004013062, -0.009184304624795914, 0.0015708251157775521, 0.004887766670435667, -0.055881571024656296, 0.047871995717287064, -0.04062714800238609, 0.029514027759432793, 0.001055134111084044, -0.0028384204488247633, -0.0386931337416172, -0.018343498930335045, 0.038314200937747955, -0.0235762819647789, -0.032110799103975296, 0.0052281515672802925, 0.0790485367178917, -0.005132327321916819, 0.017611045390367508, 0.004369804169982672, -0.005078267306089401, -0.02907710149884224, -0.005330116953700781, -0.04449739679694176, 0.02290772832930088, -0.020678484812378883, -0.026127273216843605, 0.065240778028965, -0.023315181955695152, -0.013145675882697105, -0.013454889878630638, 0.043980974704027176, -0.03155127540230751, 0.011705150827765465, -0.01907411590218544, 0.003808652749285102, -0.019153939560055733, 0.009871179237961769, -0.05159848555922508, 0.030541228130459785, -0.02433834597468376, 0.005461186170578003, -0.009210108779370785 ]
neo4jcypher-create-unique-syntaxexception-string-matching-regex-expected-but-p-found
https://markhneedham.com/blog/2012/09/09/neo4jcypher-create-unique-syntaxexception-string-matching-regex-expected-but-p-found
false
2012-09-30 14:58:11
Data Science: Making sense of the data
[ "data-science-2" ]
[ "Data Science" ]
Over the past month or so https://twitter.com/a5hok[Ashok] and I have been helping one of our clients explore and visualise some of their data and one of the first things we needed to do was make sense of the data that was available. == Start small Ashok suggested that we *work with a subset of our eventual data set* so that we could get a feel for the data and quickly see whether what we were planning to do made sense. Although our data set isn't at 'big data' levels - we're working with hundreds of thousands/millions of data points rather than the terabytes of data I often read about - I think this worked out well for us. The data we're working with was initially stored in a SQL Server database so the quickest way to get moving was to export it as CSV files and then work with those. One problem we had with that approach was that we hadn't realised that some product names could have commas in them and since we were using a comma as our field separator this led to products being imported with some quite strange properties! Since we only had a few thousand records we were able to see that quickly even when running queries which returned all records. We've been http://www.markhneedham.com/blog/2012/05/05/neo4j-what-question-do-you-want-to-answer/[asking questions of the data] and with the small data set we were able to very quickly get an answer to these questions for a few records and decide whether it would be interesting to find the answer for the whole data set. == Visual verification of the data Another useful, and in hindsight obvious, technique is to spend a little bit of time *skimming over the data and look for any patterns which stand out when visualising scanning the file*. For example, one import that we did had several columns with NULL values in and we initially tried to parse the file and load it into neo4j. After going back and skimming the file we realised that we hadn't understood how one of the domain concepts worked and those NULL values did actually make sense and we'd need to change our import script. On another occasion skimming the data made it clear that we'd made a mistake with the way we'd exported the data and we had to go back and try again. I'm sure there are other useful techniques we can use when first playing around with a new data set so feel free to point those out in the comments!
null
null
[ 0.029673578217625618, -0.0031615574844181538, -0.0006564651266671717, 0.0565350279211998, 0.10635991394519806, 0.01039566658437252, 0.015532649122178555, 0.02503192238509655, 0.011399091221392155, -0.013449094258248806, -0.02833830937743187, -0.007986348122358322, -0.0631016194820404, 0.024290921166539192, -0.009751267731189728, 0.07263868302106857, 0.05364510416984558, 0.025709636509418488, 0.03940558433532715, -0.0030240146443247795, 0.01818147487938404, 0.0408940464258194, 0.01368151418864727, 0.03752822056412697, 0.029777370393276215, -0.0027151519898325205, 0.004282255191355944, -0.0042302836664021015, -0.06197112798690796, 0.010048704221844673, 0.045897141098976135, 0.002518826862797141, 0.00984134990721941, 0.004509413614869118, 0.023724259808659554, -0.007404698990285397, -0.03642798960208893, 0.032048534601926804, -0.020196031779050827, -0.005573790520429611, -0.0898275375366211, 0.05232243239879608, -0.009511635638773441, 0.023810477927327156, -0.03465403988957405, -0.005822238977998495, -0.060575928539037704, 0.02332771010696888, -0.010383401066064835, 0.015500220470130444, -0.06921496242284775, 0.0360485203564167, -0.016978487372398376, 0.0015638659242540598, -0.022186709567904472, 0.05162806808948517, 0.015784718096256256, -0.06789828091859818, 0.027278564870357513, -0.03337628394365311, 0.010737157426774502, -0.013386523351073265, -0.003963499795645475, 0.013466093689203262, 0.02000407688319683, -0.035706836730241776, 0.004314799793064594, 0.06154483184218407, -0.04700220748782158, 0.00665050046518445, 0.00536387600004673, 0.013675367459654808, -0.013770734891295433, -0.016574475914239883, -0.0015579847386106849, -0.04237479344010353, 0.0048874677158892155, 0.04511051997542381, 0.01548316515982151, 0.039608199149370193, -0.0347246453166008, 0.015313168056309223, 0.012432247400283813, 0.025810368359088898, 0.0053688944317400455, -0.07341098040342331, -0.03438355773687363, -0.03132729232311249, -0.04533085972070694, 0.045363664627075195, 0.026130376383662224, -0.03462798148393631, 0.02116568386554718, 0.018004827201366425, -0.014307761564850807, 0.009625676088035107, 0.01945662312209606, -0.012089358642697334, -0.0010331346420571208, -0.016436373814940453, -0.03555522859096527, -0.02726706676185131, 0.02565992996096611, 0.015269991010427475, -0.0774981677532196, -0.0225368682295084, -0.03200499340891838, 0.007615605369210243, 0.017920924350619316, 0.0036414347123354673, -0.025123199447989464, -0.007898770272731781, -0.02915848232805729, 0.015990879386663437, -0.08119115978479385, 0.06035292521119118, 0.01921917125582695, -0.02261674404144287, -0.02292565256357193, 0.016295302659273148, 0.06073591485619545, 0.022876664996147156, -0.005738972686231136, 0.07496023178100586, -0.009244424290955067, 0.004761811345815659, 0.0038982625119388103, 0.054035671055316925, -0.00940793938934803, -0.06125251576304436, -0.01941833086311817, 0.05211208015680313, -0.030973605811595917, 0.0019129007123410702, 0.02164863795042038, -0.04729919880628586, 0.002957775257527828, 0.00301850913092494, 0.05055262893438339, 0.016488714143633842, 0.026464318856596947, -0.030327849090099335, 0.000977748422883451, 0.022083168849349022, 0.037782441824674606, 0.023784184828400612, -0.007771681062877178, -0.03582654520869255, -0.04909631609916687, -0.007358289323747158, 0.01106868963688612, 0.02636803314089775, 0.05602278932929039, -0.042151983827352524, 0.02617640420794487, 0.11349470168352127, 0.01718750223517418, 0.008950912393629551, -0.00268071168102324, 0.026948437094688416, 0.042456455528736115, 0.03449906036257744, 0.013229808770120144, 0.026979535818099976, 0.00027365487767383456, -0.021072210744023323, -0.005537874531000853, 0.034488022327423096, -0.0196316447108984, 0.0305765513330698, -0.0490058995783329, -0.046263646334409714, 0.08060868084430695, -0.03675955906510353, -0.03030206821858883, 0.07030509412288666, 0.070689357817173, 0.03522787615656853, 0.039316970854997635, -0.005503938067704439, -0.08660213649272919, 0.045741934329271317, -0.005417197942733765, 0.020124517381191254, 0.023249821737408638, -0.000839515938423574, 0.07509983330965042, 0.03660321980714798, 0.01481671817600727, 0.037641942501068115, -0.07401135563850403, -0.08318061381578445, -0.02542547881603241, -0.02071598544716835, 0.038976170122623444, -0.025587577372789383, 0.0362359993159771, 0.08440998196601868, -0.007519210688769817, 0.04669033735990524, 0.005489239003509283, 0.021661626175045967, 0.022143809124827385, -0.050912532955408096, -0.04012484848499298, 0.052390147000551224, 0.026507951319217682, -0.020124154165387154, -0.02707165852189064, 0.020500224083662033, -0.032251086086034775, -0.01720767468214035, 0.04455237090587616, -0.020293252542614937, 0.041218120604753494, 0.022142505273222923, 0.04103931039571762, -0.014397882856428623, 0.022012852132320404, -0.04965972155332565, 0.035115282982587814, 0.017701074481010437, -0.021174347028136253, 0.007678141817450523, -0.0006954041891731322, 0.13427415490150452, 0.08203611522912979, -0.024592097848653793, -0.05509355664253235, 0.01756523735821247, 0.008557709865272045, -0.04110317304730415, 0.005790216848254204, -0.026940206065773964, 0.007965194061398506, 0.007749231066554785, -0.0542001947760582, -0.026241302490234375, 0.009787717834115028, -0.018219618126749992, 0.00891427043825388, 0.04072900488972664, -0.01064198836684227, 0.04929129406809807, 0.01662440039217472, -0.016098076477646828, -0.00026542492560110986, -0.01814575307071209, -0.05790257081389427, 0.013657690025866032, 0.008258773013949394, -0.0023841923102736473, 0.03698035329580307, -0.01838149130344391, -0.01106230728328228, -0.023877950385212898, -0.0403209924697876, 0.025002218782901764, 0.05160078778862953, 0.06565971672534943, -0.009280593134462833, 0.06967350095510483, -0.018355857580900192, 0.013565050438046455, -0.005187149625271559, -0.050807397812604904, -0.04026070237159729, -0.019689956679940224, 0.015963755548000336, 0.012326064519584179, 0.023744935169816017, -0.0037658154033124447, 0.011724083684384823, 0.02528305910527706, 0.01979554444551468, -0.028384650126099586, 0.02988136187195778, -0.007755891885608435, -0.017790265381336212, -0.02449755184352398, -0.030477968975901604, 0.0673346072435379, -0.05224369466304779, -0.02163378894329071, 0.025553354993462563, -0.06872978806495667, 0.04219578951597214, -0.044668618589639664, -0.036463961005210876, -0.0088838255032897, 0.02487906441092491, 0.015638016164302826, 0.010259517468512058, -0.004180749412626028, 0.0691170021891594, 0.004121318459510803, 0.001957744127139449, -0.004225434735417366, 0.021144485101103783, 0.054050859063863754, -0.0030949986539781094, 0.030792487785220146, 0.04229958355426788, 0.000951508292928338, -0.005246398504823446, -0.029203636571764946, 0.014715765602886677, -0.024488573893904686, -0.2901545464992523, 0.04963996633887291, -0.013983889482915401, -0.057467445731163025, 0.018572242930531502, -0.05125321447849274, 0.015297177247703075, -0.04121857509016991, -0.02877732552587986, 0.005354997236281633, -0.006750382483005524, -0.0412558875977993, -0.029570607468485832, 0.046544164419174194, 0.02526632510125637, 0.04414922744035721, 0.022177839651703835, -0.03304634988307953, 0.011354997754096985, 0.05072491243481636, -0.010666057467460632, -0.04702196642756462, 0.016073275357484818, 0.04627309367060661, 0.03418980538845062, 0.07357490062713623, -0.07542537152767181, 0.026206664741039276, -0.060674674808979034, -0.03001854009926319, 0.018083719536662102, -0.01838773488998413, 0.003577784402295947, -0.017217889428138733, -0.02759610116481781, -0.026668159291148186, 0.038592804223299026, 0.016837313771247864, 0.01852581650018692, 0.012879766523838043, -0.02688847854733467, -0.030846046283841133, -0.011034180410206318, 0.012033667415380478, 0.07092434167861938, -0.005597877316176891, -0.07854531705379486, 0.012414230965077877, -0.006020844914019108, 0.05815868452191353, -0.029830310493707657, -0.03676646202802658, -0.03150859847664833, 0.029067374765872955, -0.02184806764125824, -0.02338673174381256, -0.01728086918592453, -0.010224594734609127, -0.0563066303730011, -0.036478567868471146, -0.0028232827316969633, -0.04902908205986023, -0.0015559163875877857, -0.04997723922133446, -0.016018837690353394, -0.06423375010490417, -0.07023884356021881, -0.02369106374680996, 0.08308380842208862, 0.04054922237992287, -0.02831082046031952, 0.0364568755030632, 0.01228729821741581, -0.10160870105028152, -0.004273178521543741, -0.03461429476737976, 0.0011756506282836199, 0.0063576605170965195, -0.023200390860438347, 0.05273478105664253, -0.040973223745822906, -0.055714238435029984, 0.02767288126051426, 0.02121361345052719, 0.023256175220012665, -0.04677868261933327, 0.029977431520819664, 0.018629534170031548, -0.037209831178188324, 0.025450600311160088, 0.07060428708791733, -0.02616419643163681, -0.018715087324380875, -0.0006558571476489305, -0.012596041895449162, 0.01229727454483509, 0.009338476695120335, -0.010581335984170437, 0.010906307026743889, 0.03289101645350456, 0.03431638702750206, -0.05190647020936012, 0.03284654766321182, -0.04845818877220154, -0.028957605361938477, -0.03225446492433548, -0.04179375618696213, 0.026399793103337288, 0.004809337202459574, 0.02428314834833145, -0.0055862292647361755, -0.01718061976134777, 0.008646087720990181, -0.05814511328935623, -0.03062717616558075, -0.0048509202897548676, 0.000654134782962501, 0.01592107117176056, 0.017350997775793076, -0.03668912127614021, -0.03310776129364967, 0.0010013519786298275, 0.034894753247499466, -0.0038498141802847385, -0.05302102118730545, -0.02438495308160782, -0.004526698030531406, -0.010013062506914139, 0.0010747057385742664, 0.01574336551129818, -0.015155436471104622, 0.01017154473811388, 0.0340404137969017, -0.030843129381537437, 0.039677057415246964, -0.02194835990667343, -0.05760720744729042, -0.025035513564944267, 0.0065861474722623825, 0.012526294216513634, -0.001054445980116725, 0.008462585508823395, -0.0013754478422924876, 0.04331211373209953, 0.03785135969519615, 0.00821047741919756, 0.005809626542031765, -0.001756367040798068, 0.03645540773868561, -0.004258580971509218, -0.01656581461429596, -0.05696413293480873, 0.03003639169037342, -0.04924800246953964, -0.02751952037215233, -0.018495643511414528, 0.05437242612242699, -0.030333783477544785, -0.02555161900818348, -0.01652885600924492, 0.005568463355302811, -0.053968194872140884, -0.021315457299351692, -0.015134848654270172, -0.003269453067332506, 0.05560800060629845, -0.012118929997086525, 0.01342734508216381, 0.0010896570747718215, 0.015705309808254242, 0.013361304067075253, 0.025784090161323547, -0.04639696329832077, 0.0033847547601908445, 0.023424526676535606, -0.008263169787824154, 0.010662071406841278, 0.01061802264302969, 0.03841429576277733, 0.033909037709236145, -0.00909684132784605, -0.022099120542407036, -0.0057818652130663395, 0.03170469403266907, 0.05026574432849884, 0.05969502404332161, -0.011476394720375538, 0.012209801934659481, -0.004205901175737381, -0.01927984319627285, -0.0430070236325264, -0.016484390944242477, -0.011381881311535835, 0.02027197927236557, -0.030688023194670677, -0.0654306709766388, 0.07046123594045639, 0.024686116725206375, 0.0021334923803806305, 0.05556806921958923, 0.0017730946419760585, -0.012982921674847603, -0.004210262093693018, 0.028378412127494812, 0.05871405825018883, -0.06369605660438538, -0.012858988717198372, -0.00626101391389966, -0.015920467674732208, 0.013303996063768864, 0.0007095577311702073, -0.040913358330726624, -0.035491056740283966, -0.02549094520509243, 0.034139689058065414, -0.04622195288538933, -0.017603186890482903, -0.015925342217087746, 0.015555910766124725, -0.012203246355056763, -0.0263434536755085, 0.004407837055623531, 0.013838419690728188, -0.02607603557407856, -0.016364827752113342, 0.020131366327404976, -0.010239300318062305, 0.004176085814833641, 0.009846112690865993, -0.03810494393110275, -0.0065897731110453606, -0.024763286113739014, -0.001259134034626186, 0.015107552520930767, -0.01385505497455597, -0.023425433784723282, -0.03648543357849121, 0.014356383122503757, -0.00279527110978961, 0.036575183272361755, -0.01287276204675436, -0.029920024797320366, -0.025628510862588882, -0.001299179857596755, -0.029791397973895073, 0.01270585972815752, -0.03940731659531593, -0.01777508668601513, 0.028649557381868362, 0.037066396325826645, 0.006131822243332863, 0.012260000221431255, -0.028468076139688492, -0.04485839977860451, 0.06172461435198784, -0.04495459794998169, -0.02081354707479477, -0.03860431909561157, -0.061198920011520386, -0.0008995938114821911, 0.013025818392634392, 0.0018873426597565413, -0.011018909513950348, 0.05300268530845642, 0.03443573787808418, 0.01783604919910431, 0.03705007955431938, 0.028186894953250885, 0.050417739897966385, -0.040811311453580856, -0.02109989896416664, -0.09175260365009308, 0.0033145383931696415, 0.03652386739850044, -0.01176130585372448, -0.0163956917822361, -0.009532857686281204, -0.04186081141233444, 0.01460809726268053, -0.06382637470960617, -0.03674381598830223, 0.026726510375738144, 0.007838639430701733, -0.001270671491511166, 0.0029634260572493076, -0.05539729446172714, 0.023305343464016914, 0.03777328133583069, -0.03975451737642288, -0.035474129021167755, -0.053265854716300964, 0.06027866527438164, -0.013717219233512878, 0.023729274049401283, -0.03481682389974594, -0.02827596105635166, 0.06590022891759872, 0.017864808440208435, 0.02327788807451725, 0.032416585832834244, -0.017144976183772087, 0.03623538836836815, 0.03229617327451706, -0.03258199989795685, -0.004117602948099375, 0.02566186711192131, -0.02110438235104084, -0.06119140237569809, 0.0007396961445920169, 0.01300713699311018, -0.011937931180000305, -0.04549537971615791, 0.07911238819360733, 0.024288130924105644, -0.014953039586544037, -0.060465555638074875, 0.011388333514332771, -0.03267720341682434, 0.0027960864827036858, -0.029547499492764473, 0.01512800995260477, -0.0334501676261425, 0.041621528565883636, -0.02710525505244732, -0.0056252446956932545, 0.07429349422454834, 0.0011416265042498708, 0.007053046021610498, -0.006873902399092913, 0.09729062765836716, 0.07689192146062851, 0.0636153519153595, 0.022233467549085617, 0.05773245915770531, -0.024012409150600433, -0.04282454401254654, 0.02040453441441059, -0.018941711634397507, -0.01082871574908495, -0.01115857157856226, 0.007778413128107786, 0.07332583516836166, -0.02161751687526703, 0.08621586114168167, -0.03190529718995094, -0.005075960885733366, -0.007974421605467796, 0.001039609662257135, 0.018860111013054848, 0.05214442312717438, 0.0008099749102257192, 0.01845976710319519, -0.014548213221132755, -0.028930872678756714, 0.007457858417183161, -0.004272242076694965, -0.023649020120501518, 0.025765839964151382, -0.010532073676586151, 0.01133266743272543, -0.012837023474276066, 0.039865583181381226, 0.08101371675729752, -0.03960750624537468, 0.01054407749325037, 0.004325407557189465, 0.04444136470556259, -0.013706756755709648, 0.033660098910331726, -0.02538273110985756, -0.015571474097669125, 0.0009079245501197875, -0.03124593012034893, -0.02064262330532074, -0.022611888125538826, -0.03562988340854645, 0.008490018546581268, -0.016784146428108215, -0.02067551761865616, 0.029081817716360092, 0.002763019874691963, -0.02034875750541687, -0.05518835037946701, -0.05090377479791641, -0.037524644285440445, -0.08070061355829239, -0.011767685413360596, 0.021077783778309822, -0.006047969684004784, -0.0114758824929595, -0.021883999928832054, -0.04394116625189781, -0.03203146904706955, 0.04914113134145737, -0.0391903892159462, -0.015327444300055504, 0.010065236128866673, 0.024979243054986, 0.01843402348458767, 0.014482592232525349, 0.03996865451335907, -0.008464545011520386, 0.005806781351566315, -0.009648822247982025, 0.013283342123031616, 0.051276642829179764, 0.014077712781727314, -0.01443914882838726, -0.07908464223146439, 0.011277114041149616, 0.009032041765749454, -0.021966328844428062, -0.08901485800743103, 0.011158650740981102, 0.04853992164134979, -0.0034222647082060575, 0.041918348520994186, -0.015142821706831455, -0.006083126645535231, -0.02537662349641323, -0.02013714239001274, -0.008063101209700108, 0.018585912883281708, 0.02805907279253006, -0.01876060664653778, 0.08170057833194733, 0.04423269256949425, -0.01727104000747204, -0.032711222767829895, -0.01264632772654295, -0.008242671377956867, 0.021231068298220634, -0.0291895791888237, -0.04318508133292198, -0.03916358947753906, -0.08333665132522583, -0.04221465066075325, 0.0075468868017196655, -0.03829096257686615, -0.033304713666439056, 0.010593174025416374, 0.033040352165699005, -0.036422085016965866, 0.006572079379111528, -0.03390372544527054, 0.045193202793598175, -0.031452082097530365, -0.04181428998708725, -0.03350496292114258, 0.010010553523898125, 0.0031234147027134895, -0.014035046100616455, -0.0036168338265269995, -0.06024991348385811, 0.0005360889481380582, -0.001739204628393054, 0.032283831387758255, 0.02456420660018921, 0.01650428958237171, 0.006203563418239355 ]
[ -0.04587937518954277, -0.007788806688040495, -0.026324713602662086, -0.04703789949417114, 0.07160346955060959, -0.022312738001346588, -0.0134927649050951, 0.016379058361053467, -0.013006020337343216, -0.026410359889268875, 0.02801784873008728, -0.056335777044296265, -0.005091741215437651, 0.006469142157584429, 0.0502585768699646, 0.004612316377460957, -0.005481880623847246, -0.09308788180351257, 0.0017763430951163173, 0.060482416301965714, -0.03896003216505051, -0.04332466423511505, -0.02799074351787567, -0.041445791721343994, 0.011589010246098042, 0.022504759952425957, 0.03567063435912132, -0.030576499179005623, -0.01841816119849682, -0.21925212442874908, 0.0032387778628617525, 0.000163481236086227, 0.04434835910797119, -0.00033656717278063297, 0.024798059836030006, 0.034118376672267914, 0.050348829478025436, 0.006716961972415447, 0.015758244320750237, 0.02723785862326622, 0.01872354745864868, -0.010432175360620022, -0.053506385535001755, -0.003432236611843109, 0.027990266680717468, 0.01410712394863367, -0.015152639709413052, -0.023026034235954285, -0.01459660567343235, 0.0287704486399889, -0.06284994632005692, -0.004411309026181698, -0.030713511630892754, -0.0004273058439139277, -0.01140972226858139, 0.039688628166913986, 0.05032259225845337, 0.06125692278146744, 0.01628674939274788, 0.020753365010023117, 0.0327199324965477, 0.013941487297415733, -0.10886584967374802, 0.08502025157213211, 0.02503800392150879, 0.02808404341340065, -0.033499471843242645, -0.026798376813530922, -0.02675584889948368, 0.05647307261824608, -0.008006412535905838, -0.025886600837111473, -0.039529215544462204, 0.06489452719688416, 0.008060963824391365, 0.005521233193576336, -0.009942176751792431, 0.024151301011443138, 0.007162544876337051, -0.04708227515220642, -0.01825261302292347, 0.035954758524894714, -0.016142653301358223, -0.014733129180967808, -0.06332848221063614, 0.020029058679938316, -0.03658145293593407, 0.060029350221157074, 0.01281293760985136, 0.025058630853891373, 0.05829371511936188, 0.015691805630922318, 0.030137348920106888, 0.011852498166263103, -0.08067202568054199, -0.034829504787921906, 0.0029483307152986526, 0.03971795737743378, 0.013835864141583443, 0.4251563549041748, -0.011355605907738209, -0.02230876311659813, 0.05101834610104561, 0.049114394932985306, -0.03612286224961281, -0.018826326355338097, -0.018453475087881088, -0.05343659594655037, 0.056053269654512405, 0.0007493286393582821, 0.013824614696204662, -0.008449966087937355, 0.03477509692311287, -0.05559719353914261, 0.017943110316991806, 0.0009076041751541197, 0.023317167535424232, 0.00029298546724021435, -0.012426921166479588, -0.0006930528907105327, -0.026522452011704445, 0.013890894129872322, 0.041801631450653076, 0.004175102803856134, 0.02889275550842285, -0.013517490588128567, 0.027223316952586174, 0.047562338411808014, 0.02986518293619156, 0.02185777947306633, 0.0514959916472435, -0.007633693050593138, -0.10156940668821335, 0.03292275220155716, -0.005484245717525482, -0.0102271419018507, 0.043842900544404984, -0.021222533658146858, -0.004681184887886047, 0.008497980423271656, -0.009437388740479946, -0.01803969405591488, 0.023842398077249527, 0.01525324210524559, -0.05157434567809105, 0.11850473284721375, 0.0206922497600317, -0.04439211264252663, -0.01867164485156536, -0.05998736992478371, 0.027022629976272583, 0.0443289689719677, -0.003146493574604392, -0.06280650943517685, 0.0073642367497086525, 0.019219690933823586, 0.10499341040849686, -0.034414004534482956, -0.10851960629224777, -0.006239833310246468, -0.02688002958893776, -0.03391239419579506, -0.037722937762737274, 0.06299496442079544, 0.06055448204278946, -0.11815746873617172, -0.020748473703861237, 0.01482949685305357, 0.0506141260266304, -0.050839509814977646, 0.018858401104807854, 0.014133190736174583, -0.04448660463094711, -0.02402583695948124, 0.039306461811065674, -0.03441017121076584, -0.03270461782813072, -0.011124850250780582, 0.01933608204126358, 0.011782604269683361, 0.006052693352103233, -0.01274942047894001, -0.030072499066591263, 0.02235320582985878, -0.07366767525672913, -0.08830837905406952, -0.06797636300325394, 0.04248296096920967, -0.03533923998475075, -0.003861428936943412, 0.003244797931984067, -0.018267329782247543, -0.08054842054843903, 0.08036082983016968, -0.04664948582649231, -0.029929984360933304, -0.00946575403213501, 0.023096803575754166, -0.05252573639154434, -0.025139912962913513, -0.0014080700930207968, 0.003413007827475667, -0.011546164751052856, 0.04480135440826416, -0.04884737730026245, 0.03694676235318184, 0.0831286832690239, -0.03105972707271576, 0.08909045159816742, 0.05081092193722725, -0.005686115939170122, -0.00391788687556982, -0.015084939077496529, 0.016176749020814896, -0.008847462013363838, -0.008524407632648945, 0.018188659101724625, -0.018196554854512215, 0.018525227904319763, 0.033606868237257004, -0.03378427401185036, -0.02699902281165123, -0.020151987671852112, -0.36178043484687805, -0.0484754778444767, -0.018956124782562256, 0.006896418984979391, 0.021695014089345932, -0.04747253283858299, 0.025622356683015823, 0.0022751344367861748, 0.010057074017822742, 0.01293525006622076, 0.06274013221263885, 0.0026607441250234842, 0.0010542296804487705, -0.09312858432531357, -0.006432261783629656, 0.014935147948563099, -0.0032149923499673605, 0.012794047594070435, -0.04624292626976967, -0.0038444960955530405, -0.015782663598656654, -0.04037787765264511, -0.02286595106124878, -0.05604123696684837, 0.008040249347686768, -0.031139088794589043, 0.11794234812259674, -0.01463067065924406, 0.053660862147808075, -0.036054983735084534, 0.03932769596576691, -0.004013576079159975, -0.006695893127471209, -0.09428396075963974, 0.005551301874220371, -0.023148778825998306, 0.0070727188140153885, 0.032922662794589996, -0.01585995778441429, -0.020176518708467484, -0.0333930104970932, -0.023351915180683136, -0.03402849659323692, -0.03523785620927811, -0.035997819155454636, 0.03363310173153877, -0.03147280216217041, 0.002253598300740123, -0.015933293849229813, 0.07683654874563217, 0.0063561671413481236, 0.024509655311703682, 0.01747380755841732, 0.018130537122488022, 0.00046939830644987524, -0.03476449102163315, -0.07260558009147644, 0.01814662106335163, 0.02660798653960228, 0.03120371513068676, 0.019518360495567322, 0.04183302819728851, 0.03939199447631836, -0.07555995136499405, -0.0037214518524706364, -0.0020184461027383804, -0.011591564863920212, 0.007857123389840126, 0.03622155636548996, -0.027913037687540054, -0.03216873109340668, 0.12328343093395233, -0.04687565565109253, 0.02084537222981453, 0.0220449510961771, 0.06469444185495377, -0.012723988853394985, 0.008830005303025246, 0.029054608196020126, 0.02125362493097782, 0.043895967304706573, -0.01604931242763996, 0.0445491187274456, -0.023456962779164314, 0.01571223884820938, 0.06707397848367691, 0.019774261862039566, -0.06150306388735771, 0.046809058636426926, 0.021068399772047997, -0.004956438206136227, -0.010288123972713947, -0.008647228591144085, -0.07275480777025223, 0.07795856893062592, -0.010596520267426968, -0.22988764941692352, 0.025288211181759834, 0.038975972682237625, 0.059870071709156036, -0.0012952215038239956, -0.0040306951850652695, 0.023080185055732727, -0.02245592512190342, 0.04411890357732773, 0.012073567137122154, 0.021007832139730453, 0.01232045516371727, 0.011973678134381771, -0.014239526353776455, 0.015115986578166485, -0.014146861620247364, 0.03077072650194168, 0.01135261356830597, 0.03506617248058319, -0.005306503735482693, 0.030224068090319633, -0.037197425961494446, 0.1660795509815216, 0.04921010509133339, -0.011950154788792133, 0.028758952394127846, -0.009790316224098206, 0.009556518867611885, 0.04930053651332855, 0.01445637084543705, -0.019588381052017212, 0.017881086096167564, -0.003149482188746333, 0.028863290324807167, 0.017921142280101776, -0.04787677526473999, -0.05235941708087921, 0.04506158083677292, 0.03829893097281456, -0.0010610821191221476, 0.024393867701292038, 0.002957722172141075, -0.04135667532682419, 0.05233537778258324, 0.05671653896570206, -0.0013050546403974295, 0.022093946114182472, -0.04639366269111633, -0.07766295224428177, -0.022285401821136475, -0.04057633876800537, -0.041698601096868515, -0.019510656595230103, -0.03680352494120598, 0.006945183966308832, 0.07647912204265594, 0.0036604246124625206, -0.018761564046144485, 0.04193342104554176, 0.009961837902665138, -0.017780961468815804, -0.0448300838470459, 0.08586527407169342, -0.0024866692256182432, 0.004254930652678013 ]
[ -0.0014716645237058401, 0.016177581623196602, -0.03517541289329529, 0.007907837629318237, -0.010125324130058289, -0.02659180387854576, 0.030229121446609497, 0.029576854780316353, -0.03239503875374794, -0.013068532571196556, -0.01863539218902588, -0.00367071689106524, 0.051694393157958984, -0.04644433408975601, 0.004115178249776363, 0.01903173327445984, -0.00043888247455470264, -0.013404836878180504, 0.02440883219242096, -0.014970941469073296, -0.03828853741288185, -0.01436749380081892, 0.009275971911847591, -0.0058483281172811985, -0.020018871873617172, 0.05131833627820015, 0.0031930143013596535, -0.016044756397604942, -0.00522926589474082, -0.1212022677063942, -0.05767252668738365, -0.018626181408762932, -0.032706692814826965, 0.039900243282318115, -0.0014494259376078844, -0.005523625295609236, 0.012657017447054386, 0.025472979992628098, -0.00836731307208538, -0.016722004860639572, 0.03410014510154724, -0.03202575817704201, -0.035873930901288986, 0.03511113300919533, -0.007998230867087841, -0.0013636345975100994, -0.0018650772981345654, -0.02229916863143444, 0.01001072209328413, -0.01679082214832306, -0.06401659548282623, 0.016023168340325356, -0.042270202189683914, 0.03143983334302902, -0.002173247979953885, -0.02107110060751438, -0.0029433127492666245, -0.009654836729168892, 0.0004195815708953887, 0.03956974670290947, 0.012500757351517677, -0.03708986937999725, -0.02059192769229412, -0.0134940966963768, -0.00046336904051713645, -0.009346612729132175, -0.034376125782728195, 0.02541455626487732, -0.005382849369198084, -0.010433599352836609, -0.018215196207165718, 0.06339576095342636, -0.07641136646270752, -0.010824012570083141, -0.0475793331861496, 0.022303853183984756, 0.026044966652989388, -0.04115239903330803, -0.0064475699327886105, 0.0011723391944542527, -0.06194690614938736, 0.03335678577423096, -0.02394852228462696, 0.012426250614225864, -0.023199137300252914, -0.020282380282878876, -0.0050516859628260136, 0.004499666392803192, 0.0044321962632238865, 0.014571231789886951, -0.004606308881193399, 0.019090401008725166, -0.017314761877059937, 0.008516548201441765, -0.09848581999540329, -0.003289872780442238, 0.0011161880102008581, -0.013611173257231712, 0.008187665604054928, 0.8526946306228638, 0.002959722653031349, 0.006734653376042843, 0.018740318715572357, 0.01122563611716032, -0.027062583714723587, -0.00748823955655098, 0.02606639638543129, 0.005072300788015127, -0.005404300522059202, -0.0369284451007843, -0.014513494446873665, 0.019512120634317398, 0.023926161229610443, -0.009703312069177628, -0.005787480156868696, 0.014029325917363167, -0.031067490577697754, -0.013056094758212566, -0.02663966827094555, 0.0019103504018858075, 0.014048552140593529, 0.01542284619063139, 0.006848261691629887, -0.005237760487943888, 0.044591065496206284, -0.1356835663318634, -0.005558905657380819, -7.555238677992765e-33, 0.02028140239417553, -0.02204948104918003, 0.04020698741078377, 0.015744244679808617, 0.017728976905345917, 0.02112283930182457, 0.019588984549045563, 0.0005832090973854065, -0.02970096841454506, 0.002106995787471533, -0.014217665418982506, -0.006384889595210552, -0.015350115485489368, -0.022646024823188782, 0.037663884460926056, 0.014481370337307453, 0.008988043293356895, 0.009130388498306274, -0.019968267530202866, -0.013999302871525288, 0.02693108096718788, 0.05895324423909187, 0.019436556845903397, 0.033353179693222046, 0.028549881651997566, 0.004300856031477451, -0.005169969517737627, 0.012401517480611801, -0.00006361261330312118, -0.028165355324745178, -0.04118525981903076, 0.025229528546333313, 0.015056991949677467, -0.018255891278386116, 0.020114319398999214, -0.03595804423093796, -0.019485637545585632, 0.008756732568144798, -0.007899821735918522, -0.02007354237139225, -0.016336290165781975, -0.001082979142665863, -0.019839460030198097, 0.004691474139690399, -0.034526851028203964, 0.0013859543250873685, -0.007936980575323105, 0.04131640866398811, -0.006077499128878117, -0.004757239483296871, 0.01931152679026127, 0.024473151192069054, 0.025449596345424652, -0.00787787139415741, -0.020373962819576263, -0.01100269053131342, -0.010313036851584911, -0.057356107980012894, 0.018035639077425003, 0.016767757013440132, -0.008739703334867954, 0.00834388006478548, 0.0016776539850980043, 0.018782684579491615, -0.009009307250380516, 0.030843354761600494, 0.05461942404508591, -0.0029289559461176395, 0.00027806253638118505, 0.006949456408619881, -0.033576659858226776, 0.020204436033964157, 0.002876406302675605, -0.03771700710058212, 0.0323607437312603, -0.01272526290267706, 0.0006958753219805658, 0.0003552065754774958, 0.023403314873576164, 0.03306137025356293, 0.01740514487028122, -0.025213070213794708, -0.013134222477674484, -0.032190289348363876, -0.05093372240662575, 0.01825694739818573, 0.02146776206791401, 0.02482304349541664, 0.006700871977955103, -0.0065805078484117985, 0.03299938887357712, 0.03126566857099533, -0.013388529419898987, -0.0415230356156826, -0.01408862043172121, 7.461656103355864e-33, 0.026222912594676018, -0.01003955863416195, -0.010071596130728722, 0.01309648621827364, 0.03763985261321068, -0.0027376823127269745, 0.00844430923461914, 0.03828894719481468, -0.021414989605545998, 0.05117017403244972, 0.009199983440339565, -0.014161917380988598, -0.009832711890339851, 0.011500386521220207, 0.02477298676967621, 0.02685580588877201, 0.020655948668718338, -0.008524205535650253, -0.004949384834617376, -0.0063162799924612045, 0.007884888909757137, 0.013765305280685425, -0.0034034177660942078, 0.02322532795369625, 0.020050162449479103, 0.03203241899609566, -0.015066669322550297, 0.005381267052143812, -0.008057249709963799, -0.007376566994935274, -0.0018002943834289908, -0.04327581077814102, 0.018321173265576363, -0.04027309641242027, -0.04124457761645317, 0.02058505266904831, 0.002747156424447894, -0.026345176622271538, 0.02591509371995926, -0.006343076005578041, 0.03987724334001541, 0.016238238662481308, -0.009182482957839966, 0.05824312940239906, -0.008702664636075497, 0.009869268164038658, 0.011321529746055603, 0.00797748938202858, 0.0025806373450905085, 0.019413014873862267, -0.0006704305997118354, 0.019441571086645126, 0.009009069763123989, -0.008950771763920784, 0.0197905283421278, -0.02261468954384327, -0.0113751869648695, 0.02471332810819149, -0.03549835458397865, -0.011233886703848839, -0.0354347787797451, 0.009800705127418041, -0.008157972246408463, -0.005760893691331148, -0.019609849900007248, 0.011466206051409245, -0.00886410940438509, 0.015343921259045601, -0.0010019514011219144, -0.050931416451931, -0.015806440263986588, -0.011797509156167507, 0.003075546585023403, 0.011574155651032925, 0.019565364345908165, -0.019738800823688507, -0.04915464669466019, 0.015638262033462524, -0.012707196176052094, 0.05242683365941048, 0.042896535247564316, 0.005090903490781784, 0.04114697501063347, 0.009042414836585522, -0.004435328766703606, 0.03672946244478226, -0.025564681738615036, 0.008383795619010925, 0.006538283545523882, 0.00025155788171105087, -0.03460905700922012, -0.019399870187044144, -0.007953912019729614, 0.039127398282289505, -0.012192370370030403, -1.307944597073174e-8, -0.04241355508565903, -0.008815614506602287, 0.007720198016613722, 0.019176414236426353, 0.048492126166820526, 0.016995076090097427, -0.01589723490178585, 0.028281377628445625, 0.009080823510885239, 0.02705972269177437, 0.032149314880371094, -0.033516839146614075, -0.015622046776115894, -0.001205237815156579, 0.0020074620842933655, -0.0419362410902977, -0.0031552095897495747, -0.030700989067554474, 0.02390112914144993, 0.004286685958504677, 0.02940145879983902, 0.06126090884208679, -0.017813554033637047, 0.022764010354876518, 0.033886730670928955, -0.004401625134050846, -0.0016626404831185937, -0.08165273815393448, -0.008274616673588753, -0.011619571596384048, 0.008496674709022045, -0.048562370240688324, -0.0011474889470264316, 0.035017043352127075, -0.01336440909653902, -0.0592709444463253, 0.03890037164092064, 0.05583909898996353, -0.014135275967419147, -0.0006907206843607128, -0.031153663992881775, -0.01665380224585533, -0.02369292639195919, -0.028136789798736572, -0.04295816272497177, 0.00877696368843317, -0.05233284458518028, 0.0052829706110060215, 0.010903915390372276, -0.030724285170435905, 0.004843779839575291, -0.01272913720458746, 0.03169824928045273, 0.037162698805332184, 0.0162053182721138, -0.010467429645359516, 0.03614601492881775, 0.005671279970556498, -0.01481267437338829, -0.015290097333490849, 0.0027546731289476156, -0.0075111305341124535, -0.020923705771565437, -0.006787799298763275 ]
data-science-making-sense-of-the-data
https://markhneedham.com/blog/2012/09/30/data-science-making-sense-of-the-data
false
2012-09-30 15:48:10
Testing XML generation with vimdiff
[ "coding", "testing" ]
[ "Testing" ]
A couple of weeks ago I spent a bit of time writing a Ruby DSL to automate the setup of load balancers, firewall and NAT rules through the http://communities.vmware.com/community/vmtn/developer/forums/vcloudapi?rct=j&q=&esrc=s&source=web&cd=1&ved=0CC4QFjAA&url=http://www.vmware.com/go/vcloudapi&ei=QWNoUOz4JqOG0AX74oHwBA&usg=AFQjCNHrnaSOCy4H4jMXwEvIB9WEhp2eXg&sig2=cBNs29bb-q8VoCGf_wN38w[VCloud API]. The VCloud API deals primarily in XML so the DSL is just a thin layer which creates the appropriate mark up. When we started out we configured everything manually through the web console and then exported the XML so the first thing that the DSL needed to do was create XML that matched what we already had. My previous experience using testing frameworks to do this is that they'll tell you whether the XML you've generated is equivalent to your expected XML but if they differ *it isn't easy to work out what was different*. I therefore decided to use a poor man's approach where I first copied one rule into an XML file, attempted to replicate that in the DSL, and then used http://vimdoc.sourceforge.net/htmldoc/diff.html[vimdiff] to compare the files. Although I had to manually verify whether or not the code was working I found this approach useful as any differences between the two pieces of XML were very easy to see. 90% of the rules were almost identical so I focused on the 10% that were different and once I'd got those working it was reasonably plain sailing. My vimdiff command read like this: [source,text] ---- ruby generate_networking_xml.rb > bar && vimdiff -c 'set diffopt+=iwhite' bar initialFirewall.xml ---- After I was reasonably confident that I understood the way that the XML should be generated I created an Rspec test which checked that we could correctly create all of the existing configurations using the DSL. While discussing this approach with https://twitter.com/jennifersmithco[Jen] she suggested that an alternative would be to start with a Rspec test with most of the rules hard coded in XML and then replace them one by one with the DSL. I think that probably does make more sense but I still quite like my hacky approach as well!
null
null
[ 0.04317270964384079, 0.014509965665638447, -0.0012198196491226554, 0.05786142498254776, 0.07790099829435349, 0.006346656009554863, 0.0394485667347908, 0.01848113164305687, 0.001651696627959609, -0.02297460474073887, -0.04318389296531677, 0.010427775792777538, -0.07767386734485626, 0.033620234578847885, -0.015854666009545326, 0.07786179333925247, 0.062151700258255005, -0.008202144876122475, 0.030465004965662956, -0.00883935671299696, 0.027275338768959045, 0.060294222086668015, -0.004329540301114321, 0.029870934784412384, 0.0336967408657074, 0.015786264091730118, -0.0036835407372564077, -0.003924485761672258, -0.06038905307650566, 0.014777851291000843, 0.045308154076337814, -0.026460567489266396, 0.015613032504916191, -0.005393792409449816, 0.01459433138370514, -0.001517258700914681, -0.027239538729190826, 0.0014968294417485595, -0.002158824587240815, 0.024135753512382507, -0.06691615283489227, 0.058161891996860504, -0.01957061141729355, 0.00796416960656643, -0.027973979711532593, 0.011909542605280876, -0.024707669392228127, -0.0038334885612130165, 0.0014328521210700274, 0.024451501667499542, -0.07803738117218018, 0.024279626086354256, -0.014833198860287666, 0.00598246930167079, -0.00800529308617115, 0.02791151963174343, 0.004181733354926109, -0.08687244355678558, 0.04495846852660179, -0.031379204243421555, -0.01178712397813797, -0.007407855242490768, 0.0032917384523898363, 0.049404241144657135, 0.018206246197223663, -0.02302328683435917, -0.010678762570023537, 0.05820140615105629, -0.05374596640467644, -0.005555551033467054, -0.001006944919936359, 0.001549776061438024, -0.024379001930356026, -0.019609268754720688, 0.02710883691906929, -0.053358498960733414, -0.015512071549892426, 0.04064478725194931, 0.03251119703054428, 0.045144304633140564, -0.042755838483572006, 0.03605825826525688, 0.020924942567944527, 0.015341605991125107, 0.012615465559065342, -0.03786484897136688, -0.02685360610485077, 0.02030910924077034, -0.04691684991121292, 0.07456662505865097, 0.026929957792162895, -0.04050419107079506, 0.020771706476807594, -0.004223486874252558, -0.009696192108094692, 0.0014703162014484406, 0.0015803207643330097, 0.009999520145356655, -0.008123841136693954, 0.0002591787779238075, -0.0299724992364645, -0.029070071876049042, 0.009758365340530872, -0.0009329427848570049, -0.08816355466842651, 0.000005554727067647036, -0.028666488826274872, 0.00004700935824075714, -0.0066497428342700005, 0.003972112666815519, -0.021622376516461372, 0.0006503608310595155, -0.01853901892900467, -0.002980757737532258, -0.05820757523179054, 0.06339899450540543, 0.03506791219115257, -0.05761256441473961, -0.0006275190971791744, 0.017187362536787987, 0.04909609630703926, 0.012862046249210835, -0.03118492104113102, 0.07388614118099213, 0.01445694174617529, 0.015751026570796967, 0.006189882289618254, 0.05910329893231392, -0.012502879835665226, -0.049994297325611115, -0.015265334397554398, 0.06318756192922592, -0.008203587494790554, 0.023796118795871735, -0.003861181903630495, 0.009172691032290459, -0.001162705011665821, -0.015993796288967133, 0.037624508142471313, 0.010722854174673557, -0.015978176146745682, -0.03517695143818855, -0.002994665177538991, -0.005524920765310526, 0.02275783382356167, 0.026743251830339432, -0.009175337851047516, -0.035366762429475784, -0.024440035223960876, 0.013032887130975723, -0.016096556559205055, 0.029481573030352592, 0.04221227392554283, -0.033936187624931335, 0.03401660919189453, 0.09954720735549927, 0.04998917505145073, 0.023336566984653473, -0.01912875287234783, 0.0051789721474051476, 0.012301821261644363, 0.0514727458357811, 0.0159032940864563, 0.05503251031041145, -0.00003958085653721355, -0.005335658323019743, -0.000661476340610534, 0.06502603739500046, 0.020125430077314377, 0.004100929945707321, -0.06901311874389648, -0.02874213084578514, 0.039504844695329666, -0.015808340162038803, -0.012435206212103367, 0.04766560345888138, 0.08823531866073608, 0.05060994625091553, 0.021993374451994896, -0.01021259743720293, -0.0789453312754631, 0.030740978196263313, 0.008058330975472927, 0.036846231669187546, 0.03360074386000633, -0.00014063110575079918, 0.06639226526021957, 0.024218987673521042, 0.001071671606041491, 0.03206266090273857, -0.08395125716924667, -0.07190953195095062, -0.03238501399755478, -0.02027287520468235, 0.052260514348745346, -0.025631366297602654, -0.018332885578274727, 0.05200345069169998, 0.00872145313769579, 0.0589095838367939, 0.035279590636491776, 0.0014591057552024722, -0.00459413742646575, -0.06012749299407005, -0.05639974772930145, 0.01843925006687641, 0.032437074929475784, -0.013311079703271389, -0.05882948264479637, -0.011165455915033817, -0.01165129616856575, -0.009680901654064655, 0.029213227331638336, -0.013481725938618183, 0.035321928560733795, 0.050745997577905655, 0.031611304730176926, -0.03160548955202103, 0.042249344289302826, -0.042968958616256714, 0.0362776517868042, -0.00211689923889935, -0.027910776436328888, 0.007683536969125271, -0.01693323254585266, 0.12031139433383942, 0.06956003606319427, -0.018864167854189873, -0.06297627836465836, 0.011348416097462177, -0.013697577640414238, -0.04392480105161667, -0.010758505202829838, -0.020738454535603523, -0.013572419062256813, 0.005160074215382338, -0.05672245845198631, -0.02960886061191559, 0.009964722208678722, -0.022559918463230133, 0.014108213596045971, 0.05106275528669357, 0.01161202136427164, 0.042646780610084534, 0.006586659234017134, -0.0025617191568017006, -0.00239963480271399, -0.025515202432870865, -0.056401606649160385, 0.017616771161556244, 0.008659161627292633, 0.00017523429414723068, 0.05335862189531326, 0.007846727967262268, -0.010659224353730679, -0.027737917378544807, -0.0346696600317955, 0.03549312427639961, 0.02764531783759594, 0.07291176915168762, 0.01967019774019718, 0.04462355747818947, -0.03131373971700668, 0.004695062525570393, 0.01759176328778267, -0.055403999984264374, -0.04227394238114357, 0.013839279301464558, 0.009046057239174843, 0.018781209364533424, 0.0013256706297397614, 0.01445428654551506, 0.0020730921532958746, -0.006097841076552868, 0.010424122214317322, -0.03057091310620308, 0.03323177248239517, -0.0022907471284270287, 0.005539419129490852, -0.027621310204267502, -0.0384540855884552, 0.028261661529541016, -0.02687457576394081, -0.006254193838685751, -0.008401617407798767, -0.048363130539655685, 0.06366151571273804, -0.07114065438508987, -0.05151643976569176, -0.041293028742074966, -0.00134438241366297, 0.02715270221233368, 0.014824893325567245, 0.041998621076345444, 0.060860201716423035, 0.041029345244169235, 0.008866033516824245, 0.034347403794527054, -0.0016047072131186724, 0.04064788669347763, 0.006112121045589447, 0.005858435295522213, 0.024500368162989616, -0.012722027488052845, -0.029939645901322365, -0.04886989668011665, 0.02180751971900463, -0.01983308233320713, -0.28696301579475403, 0.033604156225919724, 0.00006871744699310511, -0.07032392919063568, 0.01907740719616413, -0.021806171163916588, -0.010698004625737667, -0.06135062500834465, -0.007342541124671698, 0.0355246476829052, -0.046306733042001724, -0.03710375353693962, -0.011875377967953682, 0.02336283028125763, 0.006429777015000582, 0.026257455348968506, 0.036034345626831055, -0.06003802642226219, 0.029505150392651558, 0.022631194442510605, -0.019968567416071892, -0.058067090809345245, 0.03235025703907013, 0.01286772545427084, 0.03840668499469757, 0.05733765289187431, -0.04069429636001587, 0.03979122266173363, -0.025316482409834862, -0.01783129759132862, 0.013171638362109661, -0.0148911252617836, 0.001452856115065515, -0.007953483611345291, -0.014362298883497715, -0.02969774417579174, 0.04617700353264809, 0.012431471608579159, 0.033604253083467484, 0.008157688193023205, -0.027279455214738846, -0.04256905987858772, 0.00019400140445213765, -0.013707511126995087, 0.08075489848852158, -0.01411132887005806, -0.07618274539709091, -0.024462267756462097, -0.027536410838365555, 0.08047138154506683, -0.03949056565761566, -0.02420622855424881, 0.012652400881052017, 0.048903945833444595, -0.02391730435192585, -0.008469812572002411, -0.004676386713981628, -0.019802777096629143, -0.02948554791510105, -0.0361713282763958, 0.004230497870594263, -0.03469284251332283, -0.020615775138139725, -0.04576614499092102, 0.018781691789627075, -0.03614269569516182, -0.06893865764141083, -0.024699190631508827, 0.05667019635438919, 0.0278487429022789, -0.03852543234825134, 0.01281686220318079, -0.017945006489753723, -0.10374873131513596, -0.0001581327524036169, -0.038518983870744705, -0.029963098466396332, 0.0077278162352740765, 0.0068275341764092445, 0.0318874754011631, -0.023983050137758255, -0.0466601587831974, 0.010585624724626541, -0.0030582370236516, -0.00015582774358335882, -0.007839190773665905, 0.025745756924152374, 0.004832947161048651, -0.016098568215966225, -0.0002875711943488568, 0.07057742029428482, -0.03258659318089485, -0.042812008410692215, -0.009251805953681469, 0.010634628124535084, 0.010526096448302269, 0.016570188105106354, 0.00172939314506948, 0.039192572236061096, 0.0484265461564064, 0.016844527795910835, -0.05826934427022934, 0.015767529606819153, -0.05642438307404518, -0.006899417378008366, 0.011663127690553665, -0.054718758910894394, -0.006248746067285538, 0.024136478081345558, 0.028750693425536156, -0.036637671291828156, -0.03440454974770546, 0.01774468459188938, -0.05490076169371605, -0.019444884732365608, -0.022776726633310318, 0.008940332569181919, 0.016650142148137093, 0.0070461705327034, -0.042638443410396576, -0.04759533703327179, 0.007412017323076725, 0.05411100387573242, -0.017437230795621872, -0.05061125010251999, -0.021007006987929344, -0.008952062577009201, 0.015258324332535267, 0.028025884181261063, 0.019081998616456985, -0.01038704626262188, 0.015137587673962116, 0.03818816691637039, -0.03127659484744072, -0.010977821424603462, 0.011952873319387436, -0.05602968484163284, -0.022440079599618912, 0.015368102118372917, 0.011874993331730366, -0.017718223854899406, 0.00798550434410572, -0.0018736575730144978, 0.04159123823046684, 0.04677944630384445, 0.015669478103518486, 0.031916502863168716, 0.0010072026634588838, 0.0025771951768547297, -0.0228485818952322, -0.01012758444994688, -0.08308321237564087, 0.009376881644129753, -0.033753328025341034, -0.03439033031463623, -0.0431111715734005, 0.05968915671110153, -0.008091515861451626, -0.03201829269528389, -0.030714748427271843, 0.028758864849805832, -0.0633588507771492, -0.015126491896808147, -0.01985592395067215, 0.01258840598165989, 0.055243656039237976, -0.01755404658615589, 0.013091116212308407, -0.014661350287497044, -0.02289138175547123, -0.0029672353994101286, 0.04980101063847542, -0.02680768445134163, 0.0251921396702528, -0.006131378933787346, 0.01751135289669037, -0.007425012532621622, 0.016737865284085274, 0.04866070672869682, 0.027782022953033447, 0.02792182005941868, -0.02175038307905197, 0.0418170727789402, 0.019922586157917976, 0.045871835201978683, 0.009978520683944225, -0.03282991424202919, 0.021187322214245796, -0.013472739607095718, 0.02899683639407158, -0.02146906964480877, -0.0027809259481728077, -0.027937589213252068, 0.018018689006567, -0.029448172077536583, -0.08417074382305145, 0.04638136550784111, 0.03306862711906433, 0.0007738639833405614, -0.005366184748709202, -0.019693372771143913, -0.009191076271235943, -0.005691933445632458, 0.026542140170931816, 0.06016078218817711, -0.04745963215827942, -0.025786705315113068, -0.0028551204595714808, -0.00717060174793005, -0.006731856614351273, 0.02053750492632389, -0.04701155796647072, -0.029591739177703857, -0.009334980510175228, -0.0010255224769935012, -0.026577645912766457, -0.051542773842811584, -0.02254023216664791, 0.001653966261073947, -0.01961841993033886, 0.024955516681075096, -0.024978403002023697, 0.020899120718240738, -0.007968171499669552, -0.0489666573703289, 0.028386522084474564, -0.015238833613693714, -0.007177920546382666, 0.002198749454692006, -0.00412184139713645, 0.008427567780017853, -0.044516101479530334, 0.034689076244831085, 0.038886237889528275, -0.022022416815161705, -0.007993761450052261, -0.04558873921632767, 0.0029857323970645666, -0.019851254299283028, 0.04269690439105034, -0.019241271540522575, 0.0054644332267344, -0.050129156559705734, 0.013429109007120132, -0.022284504026174545, 0.001986832357943058, -0.025750119239091873, -0.021722951903939247, 0.007438007742166519, 0.03539341315627098, -0.02476249262690544, 0.03170714154839516, -0.0034088147804141045, -0.018068920820951462, 0.04691730812191963, -0.07147415727376938, -0.01916121132671833, -0.025145767256617546, -0.06546178460121155, 0.02342546172440052, 0.015276063233613968, 0.027777893468737602, -0.054479535669088364, 0.07747261226177216, 0.03686730936169624, -0.001958708046004176, 0.035520557314157486, -0.005140357185155153, 0.01984386146068573, -0.041166190057992935, -0.00864033680409193, -0.10201587527990341, 0.032594259828329086, 0.047115229070186615, 0.010014260187745094, -0.024701537564396858, -0.02079589106142521, -0.03770554065704346, 0.059621818363666534, -0.04600173979997635, -0.03632697835564613, 0.02073383703827858, 0.004976773634552956, 0.005636691115796566, -0.01465741265565157, -0.0603933222591877, 0.03570744767785072, 0.05930141359567642, -0.03830328583717346, -0.006058865692466497, -0.01951904594898224, 0.03737884387373924, -0.006930289324373007, 0.033035580068826675, -0.01763087883591652, -0.04453601315617561, 0.06898237019777298, -0.0033002705313265324, 0.005658883601427078, 0.030397363007068634, 0.002175607718527317, 0.036260902881622314, 0.034110382199287415, -0.013274608179926872, 0.03169205039739609, 0.00682562543079257, -0.005580500699579716, -0.04759562388062477, 0.03783775120973587, 0.022677790373563766, -0.006048965733498335, -0.03193565085530281, 0.05008554831147194, 0.01954251155257225, -0.031788427382707596, -0.043635010719299316, 0.039768803864717484, -0.03884032741189003, -0.020957302302122116, -0.023799395188689232, 0.002841635374352336, -0.031821127980947495, 0.048021432012319565, -0.02459479309618473, -0.005503996275365353, 0.08330142498016357, 0.0024137713480740786, -0.01814219169318676, 0.021498795598745346, 0.09096954017877579, 0.08773721009492874, 0.024619238451123238, 0.008585412055253983, 0.06739085912704468, -0.010936804115772247, -0.055644482374191284, -0.012997444719076157, -0.008525056764483452, -0.014714731834828854, -0.012324430048465729, 0.018521906808018684, 0.09229154884815216, 0.0033302991650998592, 0.06581158936023712, -0.011422239243984222, 0.007950486615300179, -0.010798176750540733, -0.0004550216253846884, 0.03088856302201748, 0.04628065600991249, 0.022475168108940125, 0.004547410178929567, 0.01807541772723198, -0.04044817388057709, 0.01769852265715599, -0.01885947585105896, -0.04142867028713226, 0.0011431738967075944, 0.012258583679795265, 0.0029896895866841078, -0.020617440342903137, 0.012344984337687492, 0.0947234109044075, -0.014517443254590034, -0.020206520333886147, -0.016538497060537338, 0.044410590082407, -0.0010236246744170785, 0.011369637213647366, -0.026324821636080742, -0.022493161261081696, -0.02265382744371891, -0.04235940799117088, -0.03089107945561409, -0.03292325511574745, -0.0019345516338944435, 0.021163810044527054, -0.006480900105088949, 0.0005849194712936878, 0.03163699433207512, 0.008110950700938702, -0.02847224473953247, -0.043497372418642044, -0.07143419235944748, -0.05117631331086159, -0.06993180513381958, -0.02576754428446293, 0.015510139055550098, 0.02978438138961792, -0.06019128859043121, -0.036351628601551056, -0.029240919277071953, -0.01763158291578293, 0.04164033383131027, -0.04020587354898453, -0.015655232593417168, 0.0036114242393523455, 0.008154871873557568, 0.02871805429458618, 0.027763839811086655, 0.031474772840738297, -0.006561818532645702, -0.021371714770793915, -0.04557473957538605, 0.0023464146070182323, 0.05470970645546913, 0.00863650068640709, -0.009208260104060173, -0.08097456395626068, 0.021415503695607185, 0.013775914907455444, 0.019605999812483788, -0.06882763653993607, 0.012467105872929096, 0.043354593217372894, 0.004970133770257235, 0.08316588401794434, -0.04381963610649109, 0.014164337888360023, -0.0321446917951107, -0.0305519737303257, -0.018633024767041206, 0.005718222353607416, 0.03101927973330021, 0.0008355408790521324, 0.09967678785324097, 0.026343878358602524, -0.030514907091856003, -0.055441565811634064, -0.01899722032248974, 0.008203397504985332, -0.008088057860732079, -0.0243995301425457, -0.030809171497821808, -0.0438721738755703, -0.0774911418557167, -0.05015372112393379, 0.014945837669074535, -0.022351041436195374, -0.021230600774288177, 0.0037136843893676996, 0.029014449566602707, -0.08527683466672897, 0.031783293932676315, -0.043986838310956955, -0.005965227726846933, -0.014803951606154442, -0.026441840454936028, 0.008044558577239513, 0.019826985895633698, -0.015257381834089756, 0.003211377887055278, 0.013932928442955017, -0.02414342574775219, -0.008448156528174877, 0.031611423939466476, 0.041639748960733414, 0.026350736618041992, 0.01640271581709385, 0.014426157809793949 ]
[ -0.10492130368947983, -0.029735511168837547, -0.056516848504543304, -0.043968670070171356, 0.06274085491895676, -0.045853931456804276, -0.03380436450242996, 0.0001513374736532569, -0.023843782022595406, -0.024950234219431877, 0.01792837120592594, -0.022030267864465714, 0.0012624453520402312, -0.05272332578897476, 0.09391672164201736, -0.01547231525182724, 0.006676787510514259, -0.06678417325019836, -0.024005046114325523, 0.049539752304553986, -0.009144223295152187, -0.03678816184401512, -0.032500334084033966, -0.052112217992544174, 0.008687783032655716, 0.03021935187280178, 0.03961561992764473, 0.0048233503475785255, -0.004264465533196926, -0.19191113114356995, 0.034444816410541534, 0.009406776167452335, 0.030437912791967392, -0.0318811759352684, 0.004952616523951292, 0.0044658309780061245, 0.020088333636522293, 0.0036394738126546144, 0.018276864662766457, 0.029498128220438957, 0.04202517122030258, -0.00993015244603157, -0.06053241714835167, 0.011692220345139503, -0.0033993010874837637, 0.0006115194410085678, -0.015992702916264534, 0.002909161616116762, 0.0167055893689394, -0.000906476576346904, -0.0342765748500824, 0.007590728346258402, -0.004006197676062584, -0.02953367494046688, -0.006183934397995472, 0.0018723778193816543, 0.0361839160323143, 0.06277298927307129, 0.022258833050727844, 0.037502579391002655, 0.0042666783556342125, 0.00012453911767806858, -0.15557150542736053, 0.08169183880090714, 0.01754249446094036, 0.028388991951942444, -0.04901308938860893, -0.01816071942448616, -0.013843067921698093, 0.0819610059261322, 0.0008151121437549591, -0.010638071224093437, -0.061029691249132156, 0.045308917760849, -0.010637130588293076, 0.014800693839788437, 0.001994737423956394, 0.009802480228245258, 0.035410553216934204, -0.02016763761639595, -0.05425563454627991, -0.02018025331199169, -0.03840620815753937, -0.010132121853530407, -0.03995596617460251, 0.014993062242865562, -0.023555124178528786, 0.07256615906953812, 0.05655854940414429, 0.028958795592188835, 0.004205590113997459, -0.011392141692340374, 0.015297743491828442, 0.015280001796782017, -0.10313600301742554, -0.028922151774168015, -0.011841865256428719, -0.005757433827966452, -0.048447780311107635, 0.4182688593864441, 0.004041050095111132, -0.043360430747270584, 0.06052260845899582, 0.006683638319373131, 0.017259631305933, 0.022327138110995293, 0.0006501497700810432, -0.04389013350009918, -0.00022250643814913929, -0.027226323261857033, 0.02215397357940674, -0.016985557973384857, 0.05803069844841957, -0.06761293858289719, 0.003967639058828354, 0.014065363444387913, 0.011608180589973927, 0.0176860261708498, -0.009378700517117977, 0.010322186164557934, -0.05682440102100372, 0.012745394371449947, 0.022251339629292488, 0.014396284706890583, 0.02643010951578617, -0.0258798748254776, 0.06362257897853851, 0.06493683159351349, -0.008954905904829502, 0.02973291091620922, 0.030611343681812286, -0.03948809206485748, -0.07295446842908859, -0.030050283297896385, 0.00003800770718953572, 0.03776928037405014, 0.041495732963085175, -0.03197816014289856, 0.0057891844771802425, 0.026554517447948456, -0.0280306413769722, 0.018215350806713104, 0.023865055292844772, -0.0018704499816522002, -0.01607837714254856, 0.07457353174686432, 0.0164543054997921, -0.027239400893449783, -0.015603053383529186, -0.032528385519981384, 0.020888807252049446, 0.03577393665909767, 0.006704968400299549, -0.0596933551132679, -0.011965074576437473, 0.01651930809020996, 0.0606810487806797, -0.008077348582446575, -0.044299013912677765, -0.009295267052948475, -0.006536694243550301, -0.06791187822818756, -0.02039163187146187, 0.057805225253105164, 0.010415606200695038, -0.14940623939037323, -0.04699992761015892, 0.02086464688181877, 0.008072923868894577, -0.07345204800367355, -0.01761055178940296, 0.020665036514401436, -0.0190971028059721, -0.034736379981040955, 0.004192945547401905, -0.03329179808497429, -0.030063940212130547, 0.024767274037003517, 0.030981210991740227, -0.016339782625436783, -0.03621458262205124, -0.0011380516225472093, -0.032632868736982346, -0.010361461900174618, -0.012845429591834545, -0.04553251713514328, -0.07750997692346573, -0.0006007495685480535, -0.03534426912665367, -0.04906703531742096, -0.04577307775616646, -0.01774798519909382, -0.06807426363229752, 0.0579243041574955, 0.004929236136376858, 0.009806881658732891, 0.00010681462299544364, 0.007447557523846626, 0.011614853516221046, -0.03519022837281227, 0.0030130078084766865, 0.04231232404708862, 0.012392024509608746, 0.038783539086580276, -0.09147922694683075, 0.026820648461580276, 0.034686170518398285, -0.03077002801001072, 0.05263048782944679, 0.04958459734916687, -0.014630728401243687, 0.002090099500492215, 0.01909358985722065, 0.019851507619023323, -0.03717256709933281, -0.0032880562357604504, -0.0328027680516243, 0.022508786991238594, 0.017025938257575035, 0.047145552933216095, -0.04505031183362007, 0.01052133459597826, 0.0015700759831815958, -0.3509262800216675, -0.042433012276887894, -0.010088948532938957, 0.005284092854708433, 0.02214847505092621, -0.06428498774766922, 0.044001560658216476, -0.013766649179160595, -0.021440299227833748, 0.0011856984347105026, 0.11553514003753662, 0.0018729257863014936, 0.018655790016055107, -0.09562895447015762, -0.013414202257990837, 0.05265527963638306, -0.011931581422686577, -0.025522850453853607, -0.013280073180794716, 0.03698159009218216, -0.025785168632864952, -0.0399509035050869, -0.000149190760566853, -0.04800083115696907, 0.02835874632000923, -0.029811063781380653, 0.09794478863477707, -0.027323689311742783, 0.10055719316005707, -0.03860471770167351, 0.058899249881505966, 0.008557163178920746, 0.020320545881986618, -0.09697664529085159, -0.018921850249171257, -0.033553678542375565, 0.03099443018436432, 0.055166084319353104, 0.05455869436264038, 0.00867382064461708, -0.030150748789310455, 0.02600976452231407, -0.06195853650569916, -0.06419049203395844, -0.009680517017841339, 0.007423218339681625, -0.006847923155874014, -0.00817591417580843, -0.031448040157556534, 0.025909526273608208, 0.018038012087345123, -0.011736510321497917, 0.018414050340652466, 0.04235373064875603, 0.022422822192311287, -0.04114235192537308, -0.07417953759431839, -0.021591894328594208, 0.02353905886411667, -0.01703803427517414, 0.026816241443157196, 0.06963896006345749, 0.025235533714294434, -0.09020324051380157, 0.02791576460003853, 0.02117834985256195, 0.018586819991469383, 0.012817192822694778, 0.05111018940806389, -0.027241265401244164, -0.00256525631994009, 0.10222109407186508, -0.01332844328135252, 0.013993069529533386, 0.02927171066403389, 0.0392996147274971, -0.03589179739356041, 0.031221969053149223, 0.02166992612183094, 0.012110451236367226, 0.010180567391216755, -0.003727467730641365, 0.050934676080942154, -0.025580424815416336, -0.015824519097805023, 0.03735774755477905, -0.011401263065636158, 0.008062074892222881, 0.07167958468198776, 0.017075084149837494, -0.025967543944716454, -0.007220850326120853, 0.02053329162299633, -0.04119093716144562, 0.0632227435708046, -0.0074044568464159966, -0.26260533928871155, -0.004820805508643389, 0.05187489464879036, 0.07468461245298386, -0.028619874268770218, 0.04081638529896736, 0.04988974332809448, -0.06095634400844574, -0.010956860147416592, 0.0039916932582855225, 0.030530640855431557, 0.03440327197313309, 0.027942869812250137, -0.02051469124853611, 0.05004730075597763, -0.004827134311199188, 0.03592713549733162, -0.0068691205233335495, -0.0073412382043898106, 0.01606028713285923, -0.008789889514446259, -0.019251074641942978, 0.13995671272277832, -0.02679469995200634, -0.008789336308836937, 0.05433167517185211, -0.018231244757771492, 0.0243561752140522, 0.07621566951274872, 0.041945524513721466, 0.008468616753816605, 0.003883922705426812, 0.04943972826004028, 0.028599508106708527, 0.03429003804922104, -0.05134248360991478, -0.04580477997660637, 0.025484418496489525, 0.03673326596617699, -0.027993157505989075, -0.012785222381353378, 0.014767959713935852, -0.014923362992703915, 0.041560519486665726, 0.06522335112094879, 0.0010099136270582676, -0.013378170318901539, -0.0020851767621934414, 0.004497312009334564, -0.013827716931700706, -0.02241087704896927, -0.04520164802670479, 0.008984499610960484, 0.046112190932035446, 0.03017064929008484, 0.07423210144042969, 0.021329529583454132, -0.03953295573592186, -0.005348287522792816, 0.018331948667764664, 0.00758681446313858, -0.04738340154290199, 0.124956876039505, 0.003378785913810134, 0.04707006365060806 ]
[ 0.013680894859135151, 0.0028140274807810783, -0.004773902241140604, 0.018173011019825935, -0.017836889252066612, -0.010192320682108402, 0.0014177086995914578, 0.03268398717045784, 0.011086056008934975, -0.0038645300082862377, -0.010866404511034489, -0.011604524217545986, -0.00036471569910645485, -0.029501931741833687, 0.04330494627356529, 0.005969482008367777, 0.029007358476519585, 0.0028060285840183496, 0.02544952929019928, 0.017750035971403122, 0.004294531885534525, 0.05386445298790932, -0.026184936985373497, -0.019920531660318375, -0.012524295598268509, 0.024096716195344925, -0.03365330398082733, 0.05538756400346756, 0.04144474118947983, -0.126760795712471, 0.014225861988961697, -0.04135164991021156, 0.015270442701876163, 0.04909474402666092, 0.003039747942239046, -0.04594507813453674, 0.03141437843441963, 0.0046811229549348354, -0.03932788968086243, 0.025105923414230347, 0.01929563470184803, 0.015078348107635975, -0.010426154360175133, 0.00985831581056118, -0.006255545653402805, -0.0018582451157271862, -0.011864429339766502, -0.02068294584751129, -0.0066063255071640015, -0.026846619322896004, -0.010142040438950062, -0.021033966913819313, 0.0031389386858791113, 0.030246129259467125, -0.01040975283831358, -0.00932712946087122, 0.01172156073153019, -0.014369937591254711, -0.0017467162106186152, -0.016543511301279068, 0.009461654350161552, 0.009108192287385464, -0.03396850824356079, -0.01144552230834961, -0.032684989273548126, 0.019180992618203163, 0.012575256638228893, 0.01050036121159792, 0.003562608966603875, -0.02321512997150421, -0.0506473109126091, 0.037650641053915024, -0.029148351401090622, 0.008192933164536953, -0.01264939270913601, 0.002628898248076439, -0.004827077034860849, -0.0045190188102424145, 0.03445161134004593, -0.034781649708747864, -0.03681877255439758, -0.002521432703360915, -0.004410587251186371, 0.046135544776916504, -0.026168523356318474, 0.03699340671300888, 0.021352509036660194, 0.0032638569828122854, 0.04906299337744713, 0.023822719231247902, -0.027605587616562843, 0.04428210109472275, 0.026390202343463898, 0.016657914966344833, -0.08063273876905441, -0.037289585918188095, 0.030834712088108063, -0.06778758019208908, -0.007726732641458511, 0.839102566242218, -0.0018801795085892081, 0.005365266930311918, 0.02311081811785698, 0.0152533408254385, 0.014530083164572716, 0.024818895384669304, 0.027818085625767708, 0.0222062636166811, -0.00882125273346901, -0.05233917012810707, 0.02527991309762001, 0.036533936858177185, 0.019555727019906044, -0.025003565475344658, 0.013558522798120975, 0.03387643024325371, 0.013831711374223232, 0.011097919195890427, -0.009546002373099327, 0.0081761060282588, 0.015699077397584915, -0.011747872456908226, -0.011466621421277523, -0.006308524403721094, -0.0050379084423184395, -0.1731288731098175, 0.023079073056578636, -6.19201567529225e-33, -0.012462754733860493, -0.009645780548453331, -0.0353175587952137, 0.028069430962204933, 0.042344000190496445, 0.0010717591503635049, -0.000300826970487833, -0.0023070008028298616, -0.023717189207673073, -0.03041946329176426, -0.003610163927078247, -0.03726799786090851, 0.02024284563958645, -0.015010127797722816, 0.01805698126554489, -0.011812777258455753, -0.013715669512748718, 0.050814732909202576, 0.010291729122400284, 0.004686924163252115, 0.022889213636517525, -0.010583051480352879, 0.041372150182724, -0.013126649893820286, -0.003864588448777795, 0.005324873607605696, 0.011728158220648766, 0.00041286268969997764, 0.02403203584253788, -0.06325802952051163, -0.006136492360383272, 0.01340711209923029, -0.007497265934944153, -0.03509217128157616, -0.016779284924268723, -0.014280904084444046, -0.015646621584892273, -0.012837405316531658, -0.039333511143922806, 0.02444729022681713, -0.033303603529930115, 0.03208348527550697, -0.04795752465724945, 0.0016652850899845362, -0.0031105249654501677, -0.014634319581091404, -0.04886861890554428, 0.02046666480600834, -0.008124519139528275, 0.016300128772854805, 0.010634221136569977, 0.0046638669446110725, -0.019754355773329735, -0.01808404177427292, -0.009276255965232849, 0.000698057992849499, 0.012632899917662144, 0.04382887855172157, -0.010142563842236996, 0.025314297527074814, 0.028467752039432526, -0.03635349124670029, -0.027235282585024834, 0.03858537971973419, 0.02621036022901535, -0.004532620310783386, 0.029124543070793152, -0.018275516107678413, -0.014921140857040882, -0.022846940904855728, -0.05316758155822754, 0.041251104325056076, -0.011437039822340012, -0.02241205982863903, -0.0019750711508095264, -0.07637900859117508, 0.0004886863171122968, 0.004540775436908007, -0.0067949420772492886, 0.05132226645946503, -0.005289641674607992, 0.018309853971004486, -0.02170856110751629, -0.009339343756437302, -0.020521817728877068, -0.031507428735494614, 0.04781867563724518, -0.037156470119953156, -0.05379543825984001, 0.022437570616602898, 0.0409153513610363, -0.02107340842485428, 0.03386814892292023, -0.00824173167347908, 0.00012509345833677799, 6.766743516084068e-33, -0.037244174629449844, 0.017320310696959496, -0.00006818240217398852, 0.0010111815063282847, 0.017699826508760452, -0.012299961410462856, 0.05600994452834129, 0.014828789979219437, -0.044542379677295685, 0.025082645937800407, -0.0010570322629064322, 0.015742754563689232, -0.034182753413915634, 0.05961627885699272, 0.04120440036058426, 0.021726388484239578, 0.020976310595870018, -0.051738135516643524, 0.023352820426225662, -0.005685973446816206, 0.01679753139615059, 0.03264537826180458, 0.003078548004850745, 0.015205644071102142, 0.01708570122718811, 0.028537413105368614, 0.003853817004710436, 0.014319070614874363, -0.037421368062496185, -0.013620368205010891, 0.031016958877444267, 0.005457174964249134, 0.002268814481794834, -0.04222879558801651, 0.009899401105940342, 0.03968111053109169, 0.03540113568305969, 0.015363252721726894, 0.020561063662171364, 0.0018624986987560987, 0.007235601078718901, -0.006603627000004053, -0.04615408927202225, 0.0005245010834187269, -0.03370998427271843, 0.03283067047595978, 0.01712273806333542, -0.016307590529322624, -0.010788796469569206, 0.03405115753412247, 0.02222956158220768, -0.027755631133913994, -0.015975477173924446, 0.04503978416323662, -0.01580820232629776, -0.00866907648742199, -0.011187635362148285, 0.0418524444103241, -0.010420537553727627, -0.01706470549106598, -0.008614491671323776, 0.01742333173751831, -0.011838187463581562, 0.022917985916137695, -0.024723060429096222, -0.002261404413729906, -0.0006791065097786486, 0.00402440968900919, 0.0018994209822267294, -0.016169577836990356, -0.032695524394512177, -0.0027256417088210583, 0.002709541469812393, 0.03327808529138565, 0.01079543773084879, -0.0319230780005455, 0.00579217029735446, -0.013720632530748844, -0.060980018228292465, 0.029558677226305008, -0.021854976192116737, 0.020704565569758415, 0.013260617852210999, -0.00004081438237335533, -0.004434188362210989, 0.014832116663455963, -0.02370624989271164, 0.02443860098719597, 0.024684088304638863, 0.01095863152295351, -0.04131144657731056, -0.047818005084991455, -0.008925756439566612, 0.007955724373459816, 0.0072954813949763775, -1.2351711653479924e-8, -0.00158149644266814, 0.0004978175275027752, -0.026214608922600746, 0.023257790133357048, 0.0027322538662701845, 0.05227995291352272, 0.004371844232082367, -0.0034240742679685354, -0.04403563588857651, 0.013576081022620201, 0.013531574048101902, 0.025942832231521606, -0.012290460988879204, 0.018563883379101753, 0.02006993629038334, -0.017097018659114838, -0.01759066805243492, 0.001859421143308282, 0.022110484540462494, -0.04090765491127968, 0.03225827217102051, 0.006791855674237013, 0.0006069312221370637, -0.004708936903625727, 0.028900230303406715, 0.02222873829305172, -0.018235815688967705, -0.09937988221645355, -0.023396305739879608, -0.014472058042883873, 0.03168107569217682, -0.007886448875069618, -0.048000629991292953, -0.014441368170082569, -0.018568461760878563, -0.031076189130544662, 0.005418390966951847, 0.02223467454314232, 0.028046922758221626, -0.004816331434994936, 0.009756727144122124, -0.017334068194031715, -0.01051481906324625, -0.02832946367561817, -0.006250029429793358, -0.002432520966976881, -0.03986943140625954, 0.013467859476804733, 0.04687554016709328, -0.04059813916683197, 0.02731601893901825, 0.0025664137210696936, 0.012272581458091736, 0.03254791721701622, -0.015078368596732616, -0.014859713613986969, 0.013339771889150143, 0.00016115584003273398, -0.012866216711699963, 0.011064121499657631, -0.00586284464225173, 0.015648571774363518, -0.003263307036831975, -0.02972644567489624 ]
testing-xml-generation-with-vimdiff
https://markhneedham.com/blog/2012/09/30/testing-xml-generation-with-vimdiff
false
2012-09-30 19:47:32
neo4j: Handling SUM's scientific notation
[ "neo4j", "cypher" ]
[ "neo4j" ]
In some of the recent work I've been doing with neo4j the queries I've written have been summing up the values from multiple nodes and after a certain number is reached the value returned used scientific notation. For example in a cypher query like this: [source,text] ---- START category = node:categories('category_id:1') MATCH p = category-[:has_child*1..5]->subCategory-[:has_product]->product-[:sold]->sales RETURN EXTRACT(n in NODES(p) : n.category_id?),subCategory.category_id, SUM(sales.sales) ---- I might get a result set like this: [source,text] ---- +------------------------------------------------------------------------------------------------+ | EXTRACT(n in NODES(p) : n.category_id?) | subCategory.category_id | SUM(sales.sales) | +------------------------------------------------------------------------------------------------+ | ["246","254","255","3279",<null>,<null>] | "3279" | 3.07213e07 | | ["246","3649","3650","4362",<null>,<null>] | "4362" | 1.023412e06 | | ["246","287","291","308",<null>,<null>] | "308" | 504712.5999448135 | +------------------------------------------------------------------------------------------------+ ---- I wanted to be able to add the first two rows together but still have them return separately which meant I needed to convert the values into decimal notation in order to do so. I came across http://stackoverflow.com/questions/8586357/how-to-convert-a-scientific-notation-string-to-decimal-notation[a Stack Overflow thread explaining how to do it in Ruby]: [source,ruby] ---- > "%f" % "3.07213e07" => "30721300.000000" ---- or [source,ruby] ---- > "3.07213e07".to_f => 30721300.0 ---- If we want to http://www.coderanch.com/t/417237/java/java/format-scientific-notation-double-non[do the same thing in Java] it'd read like this: [source,java] ---- double d = Double.parseDouble("3.07213e07"); NumberFormat formatter = new DecimalFormat("###.#####"); String f = formatter.format(d); System.out.println(f); // returns 30721300 ---- I couldn't see a way to make the SUM function return in decimal notation but it'd be neat if there was a way to. For now we have to apply some formatting on the result if we want to do any calculations with it.
null
null
[ 0.013147208839654922, -0.006242203991860151, -0.0015920862788334489, 0.029577216133475304, 0.09090301394462585, 0.007292513269931078, 0.011464462615549564, 0.001911998726427555, 0.014779490418732166, -0.003795414697378874, -0.012356228195130825, 0.003346683457493782, -0.06877076625823975, 0.011126566678285599, -0.011112545616924763, 0.08051089942455292, 0.06611710041761398, 0.02975384332239628, 0.018164196982979774, -0.04935673996806145, -0.002335203578695655, 0.0318787582218647, 0.002510526916012168, 0.026911363005638123, 0.06440725177526474, 0.008549600839614868, -0.012907394208014011, -0.011856618337333202, -0.042271532118320465, 0.014283380471169949, 0.058898646384477615, 0.0171536635607481, 0.00986071489751339, -0.009190646931529045, 0.02330305241048336, 0.0015613975701853633, -0.04748781770467758, -0.010539292357861996, -0.02729112282395363, -0.04067230969667435, -0.06361653655767441, 0.016039345413446426, -0.039532069116830826, 0.029806479811668396, -0.03481432422995567, 0.0030524220783263445, -0.07106839120388031, 0.030878325924277306, -0.010907366871833801, 0.023146145045757294, -0.08261796832084656, 0.016557542607188225, -0.025079121813178062, 0.0002547109907027334, -0.006299455184489489, 0.06409888714551926, 0.0015013142256066203, -0.05059289559721947, 0.05616912990808487, -0.031168341636657715, -0.012960554100573063, -0.009187210351228714, -0.02000943198800087, 0.014367339201271534, 0.0015017115511000156, -0.04295295476913452, -0.00522747403010726, 0.053354546427726746, -0.07144542783498764, -0.024201028048992157, -0.0053923241794109344, 0.026935812085866928, -0.01624029129743576, -0.028125673532485962, -0.015523375011980534, -0.04372558370232582, -0.0001290014188271016, 0.031027060002088547, 0.019570045173168182, 0.04662315919995308, -0.02994604967534542, 0.022043459117412567, 0.034155651926994324, 0.009347839280962944, 0.009134775958955288, -0.025867054238915443, -0.033957529813051224, -0.04147540405392647, -0.02614186517894268, 0.04058405011892319, 0.012226669117808342, -0.04937854781746864, 0.0004904103698208928, -0.0017786425305530429, -0.0372883602976799, 0.006114077288657427, -0.006214519031345844, -0.018263913691043854, 0.012521679513156414, -0.0063910577446222305, -0.030177753418684006, -0.03198576718568802, 0.03192092105746269, -0.014835509471595287, -0.08181259781122208, -0.028308143839240074, -0.03523124009370804, -0.015702445060014725, 0.014027518220245838, -0.005384526681154966, -0.056220270693302155, -0.015594761818647385, -0.022708481177687645, 0.03939524292945862, -0.07699612528085709, 0.0561419315636158, 0.02860083058476448, 0.0079413540661335, -0.033320102840662, 0.02431241050362587, 0.05328238382935524, 0.006159482058137655, 0.005918110255151987, 0.07476437836885452, -0.024448812007904053, 0.04256349056959152, 0.03755147010087967, 0.0586177334189415, -0.01398076955229044, -0.06669807434082031, -0.00870551262050867, 0.0768936276435852, -0.0010654771467670798, 0.01501954160630703, -0.007534933742135763, -0.03484782949090004, -0.010759402066469193, 0.014149523340165615, 0.06279213726520538, 0.026890384033322334, 0.020041434094309807, -0.040960412472486496, 0.018910318613052368, -0.013570831157267094, 0.034124575555324554, 0.03546905890107155, -0.034813765436410904, -0.024038996547460556, -0.026070719584822655, 0.004434214439243078, 0.01812908984720707, 0.02780861407518387, 0.06064937636256218, -0.00830567255616188, 0.016124464571475983, 0.11468172073364258, 0.028379326686263084, 0.015860212966799736, -0.005661582574248314, -0.0011639466974884272, 0.060551099479198456, 0.017514044418931007, 0.015273618511855602, 0.05801323801279068, -0.0076007358729839325, 0.008754100650548935, -0.010354051366448402, 0.07693284749984741, -0.023052940145134926, 0.018883267417550087, -0.034106090664863586, -0.07073264569044113, 0.06427637487649918, -0.043317314237356186, -0.012230663560330868, 0.03016628324985504, 0.07684064656496048, 0.02645857445895672, 0.052141137421131134, 0.010652119293808937, -0.07786084711551666, 0.05574646592140198, -0.010994340293109417, 0.008756155148148537, 0.011760927736759186, 0.017445389181375504, 0.08028016984462738, 0.03688224405050278, 0.007051562424749136, 0.024369532242417336, -0.0841856598854065, -0.07206440716981888, -0.015307800844311714, -0.021181033924221992, 0.06380192190408707, -0.010206609033048153, 0.023964937776327133, 0.040762897580862045, -0.010316085070371628, 0.020894091576337814, 0.007651992607861757, 0.011475741863250732, 0.02989901416003704, -0.040260765701532364, -0.04198233410716057, 0.04619987681508064, 0.019387992098927498, -0.054303381592035294, -0.05051467940211296, 0.03126699849963188, -0.043805282562971115, 0.003965622279793024, 0.02669985592365265, -0.028421882539987564, 0.028085362166166306, 0.03824540227651596, 0.041516851633787155, -0.008268024772405624, 0.00763269979506731, -0.03259965032339096, 0.031085120514035225, 0.014635434374213219, -0.03194392845034599, -0.019788093864917755, 0.0022041539195924997, 0.11298663169145584, 0.06659635156393051, -0.005512243136763573, -0.054083652794361115, 0.045198116451501846, -0.013514460995793343, -0.028500579297542572, 0.04050127789378166, -0.0390079990029335, -0.01774168387055397, -0.009210453368723392, -0.020945442840456963, -0.0046652681194245815, 0.0035743992775678635, -0.04699210822582245, 0.007553751580417156, 0.05385061353445053, -0.03652612119913101, 0.06393057107925415, 0.02811819687485695, 0.019275367259979248, -0.013047591783106327, -0.03075730986893177, -0.04548313468694687, 0.0256101805716753, -0.008072198368608952, -0.006147290579974651, 0.02366272360086441, -0.033930495381355286, -0.020823581144213676, -0.01734049804508686, -0.0262758806347847, 0.03676186874508858, 0.048680104315280914, 0.04099409654736519, 0.003083130344748497, 0.03146173059940338, -0.01760251261293888, -0.00033415891812182963, -0.022326091304421425, -0.06011677533388138, -0.041406236588954926, -0.01754828169941902, 0.02575760707259178, -0.009947588667273521, 0.03415173664689064, -0.0013617967488244176, 0.029008574783802032, 0.018552042543888092, 0.011261895298957825, -0.024524422362446785, 0.06545201689004898, -0.01310175284743309, -0.027167685329914093, -0.03515581786632538, -0.020085744559764862, 0.06218469515442848, -0.061271484941244125, -0.04272261634469032, -0.006154982373118401, -0.05092981085181236, 0.048758409917354584, -0.048530206084251404, -0.020324403420090675, -0.007203082088381052, 0.013074194081127644, 0.03610853850841522, 0.0002701724006328732, 0.016313768923282623, 0.07673312723636627, -0.003966999240219593, 0.010272858664393425, 0.0362652949988842, 0.007345020305365324, 0.04556882753968239, -0.029883496463298798, 0.05058938264846802, 0.06424006074666977, -0.016263147816061974, -0.0002528780896682292, -0.04558425769209862, -0.009354629553854465, -0.011517345905303955, -0.27157503366470337, 0.04136991500854492, -0.06093680113554001, -0.036093976348638535, 0.0013428208185359836, -0.03452729061245918, 0.005405868869274855, -0.01926569826900959, -0.014835938811302185, 0.0014589327620342374, 0.016176681965589523, -0.04111303761601448, -0.021884918212890625, 0.04774436354637146, 0.024772867560386658, -0.0024714646860957146, -0.015760984271764755, -0.044965725392103195, 0.013843188062310219, 0.038250647485256195, 0.009632616303861141, -0.044962190091609955, -0.0035910436417907476, 0.019116239622235298, 0.032577499747276306, 0.036164361983537674, -0.0701284408569336, 0.00737744802609086, -0.07846646755933762, -0.03765066713094711, -0.005641068797558546, -0.03380894288420677, 0.016661282628774643, -0.004162877798080444, -0.01744578219950199, -0.009899191558361053, 0.03268057852983475, 0.00275824754498899, 0.023434728384017944, 0.03614751249551773, -0.041504766792058945, -0.04719287529587746, -0.012947747483849525, -0.004881285130977631, 0.07101904600858688, 0.017286712303757668, -0.06712911278009415, 0.0007452251156792045, -0.0024941887240856886, 0.0643496885895729, -0.030701708048582077, -0.024789156392216682, -0.023731976747512817, 0.008804813958704472, -0.02367570996284485, -0.03616030886769295, -0.006840295623987913, -0.012272646650671959, -0.06431536376476288, -0.013199209235608578, -0.020470120012760162, -0.06024128571152687, 0.014061120338737965, -0.04879492148756981, -0.017968671396374702, -0.03446227312088013, -0.08337381482124329, -0.03201201930642128, 0.04163046181201935, 0.0025575170293450356, -0.012975030578672886, 0.033331695944070816, -0.00424332357943058, -0.11416551470756531, -0.05146840214729309, -0.0526597835123539, 0.0023706534411758184, 0.0015316001372411847, -0.025233691558241844, 0.04533977434039116, -0.03952208533883095, -0.06194034963846207, -0.006382571533322334, 0.033094022423028946, 0.023287009447813034, -0.015221972018480301, -0.009950907900929451, -0.0290894266217947, -0.03382587805390358, 0.020316436886787415, 0.08081550896167755, -0.02466566488146782, -0.006033783312886953, 0.01240718923509121, 0.009816421195864677, 0.045744530856609344, -0.007959386333823204, -0.01856299303472042, 0.024033235386013985, 0.04304400086402893, 0.04771186038851738, -0.019437594339251518, 0.03699282556772232, -0.03299116715788841, -0.04482785984873772, -0.01428106240928173, -0.05233558639883995, 0.011677171103656292, 0.02596922777593136, -0.00851599033921957, -0.014041653834283352, 0.022553827613592148, 0.01415198016911745, -0.02343672327697277, -0.0073645408265292645, -0.029203368350863457, 0.01935206726193428, 0.01227650698274374, 0.04844624549150467, -0.02645302005112171, -0.042824890464544296, 0.012810295447707176, 0.041537992656230927, -0.017087053507566452, -0.06751096993684769, -0.04431521147489548, -0.015663031488656998, -0.015304017812013626, -0.013402524404227734, 0.009115978144109249, -0.027168067172169685, 0.04493309557437897, 0.008894843980669975, -0.020252039656043053, 0.04262559488415718, 0.018156934529542923, -0.033220548182725906, -0.0038879455532878637, 0.011339724063873291, -0.011452124454081059, 0.005497966893017292, -0.006597372703254223, 0.0020283402409404516, 0.06299415230751038, 0.013732852414250374, -0.0050828480161726475, 0.012894579209387302, -0.016905615106225014, 0.017569517716765404, 0.012371880933642387, -0.024233484640717506, -0.013946179300546646, 0.018986226990818977, -0.03849392384290695, 0.0020047256257385015, 0.0007470061536878347, 0.05020727217197418, -0.02910209447145462, -0.032141298055648804, -0.03651382029056549, 0.012514892034232616, -0.03871080279350281, 0.0005699277389794588, -0.01997147500514984, 0.008987861685454845, 0.036696482449769974, -0.03131784871220589, 0.03570737689733505, -0.02716188132762909, 0.0028887204825878143, 0.02224409021437168, 0.007321369368582964, -0.031590983271598816, 0.02308381162583828, -0.009950465522706509, -0.015677710995078087, 0.02580893412232399, 0.03529403731226921, -0.006695793941617012, 0.025294560939073563, -0.01428190153092146, -0.015870962291955948, 0.008056235499680042, 0.029734371230006218, 0.04835740849375725, 0.05000029131770134, -0.01830235682427883, -0.001984883565455675, -0.02080650068819523, -0.00740292202681303, -0.009786407463252544, -0.018149370327591896, -0.038899216800928116, 0.006934382952749729, -0.029241379350423813, -0.044953443109989166, 0.033444520086050034, 0.014271858148276806, 0.01350310817360878, 0.046057894825935364, 0.04258507490158081, 0.004568018019199371, -0.015144703909754753, 0.00027694148593582213, 0.04189161956310272, -0.056933533400297165, -0.01728176325559616, -0.018627740442752838, -0.013952260836958885, -0.002341666491702199, 0.03493395075201988, -0.06098638102412224, -0.04961784556508064, 0.013548259623348713, 0.027591522783041, -0.01814037747681141, -0.028272559866309166, 0.005273743998259306, -0.02071981132030487, -0.017868973314762115, 0.060582321137189865, 0.006166989449411631, 0.01315306220203638, -0.03717993199825287, 0.014418445527553558, 0.02533124014735222, -0.02070465497672558, -0.00046665093395859003, 0.009032479487359524, -0.0074905771762132645, 0.028491802513599396, -0.019887927919626236, 0.007371379993855953, 0.024789588525891304, 0.030066238716244698, -0.009614414535462856, -0.06864412128925323, 0.023074232041835785, -0.021295983344316483, 0.035840533673763275, -0.006428118795156479, -0.022496383637189865, -0.02148321270942688, 0.00591704435646534, -0.020177481696009636, 0.009215127676725388, -0.00531283812597394, -0.022997260093688965, -0.0032188708428293467, 0.027308428660035133, -0.015233226120471954, 0.033701349049806595, -0.018744880333542824, -0.03311378136277199, 0.08255501091480255, -0.02595217525959015, -0.02868785709142685, -0.019170064479112625, -0.04911017045378685, 0.005121048539876938, 0.012638370506465435, 0.02810026705265045, -0.018061084672808647, 0.06642015278339386, 0.06036880612373352, 0.037980686873197556, 0.007328862324357033, -0.004868555348366499, 0.028749799355864525, -0.029474608600139618, -0.01325424574315548, -0.08458908647298813, 0.003062005853280425, 0.044426750391721725, 0.0016977982595562935, 0.005524634383618832, -0.018956905230879784, -0.0370493121445179, -0.004063645843416452, -0.06221643090248108, -0.014322536997497082, 0.043068788945674896, -0.00912320613861084, 0.03610900789499283, 0.0073454235680401325, -0.06098025664687157, 0.007740785833448172, 0.052809856832027435, -0.010023290291428566, -0.009883176535367966, -0.050314825028181076, 0.06938055902719498, -0.03929698467254639, 0.02112722396850586, -0.015467424876987934, -0.007121871691197157, 0.07299686223268509, 0.049810148775577545, 0.04047873988747597, 0.04373037815093994, -0.03992128372192383, 0.036256980150938034, 0.041719112545251846, -0.014587907120585442, 0.0033973059616982937, 0.03540444001555443, -0.01993631199002266, -0.04149583354592323, 0.0031206763815134764, 0.0023452574387192726, -0.017018059268593788, -0.04891766607761383, 0.07398413866758347, 0.006641674786806107, -0.030730823054909706, -0.0569973960518837, 0.034963469952344894, -0.02195919118821621, -0.02596117928624153, -0.029473455622792244, 0.019221769645810127, -0.03925115242600441, 0.0725594237446785, -0.011566780507564545, -0.002274111146107316, 0.05760755017399788, -0.008852357044816017, 0.004883382935076952, 0.039603255689144135, 0.09053677320480347, 0.08868300169706345, 0.057903796434402466, 0.006928376387804747, 0.053215984255075455, -0.029245970770716667, -0.04500545933842659, -0.01614658161997795, -0.03970097750425339, -0.0021181285846978426, 0.026748161762952805, 0.007537779863923788, 0.06501619517803192, -0.019933929666876793, 0.08607456088066101, -0.02146051824092865, 0.004067971371114254, 0.001475382363423705, -0.032629672437906265, 0.04507851600646973, 0.06013178825378418, -0.0009649114799685776, 0.030649838969111443, -0.02506442926824093, -0.006373685318976641, 0.010555731132626534, 0.0008609071373939514, -0.025179553776979446, 0.02558821067214012, -0.04530032351613045, 0.008940533734858036, 0.0039769611321389675, 0.05151687189936638, 0.10218950361013412, -0.008866745978593826, -0.0007278133416548371, 0.006428886670619249, 0.01940697617828846, -0.02083592861890793, -0.004609960597008467, -0.019322426989674568, -0.013400780968368053, -0.032839469611644745, -0.047293439507484436, -0.02830464579164982, -0.02136383205652237, -0.04984308034181595, 0.015743231400847435, -0.000939765595830977, -0.0064598144963383675, 0.0008427358698099852, -0.02051486261188984, 0.001039844355545938, -0.045898523181676865, -0.055383577942848206, -0.048745542764663696, -0.08293003588914871, 0.025834791362285614, -0.0047881752252578735, 0.012864249758422375, 0.0008119880803860724, 0.0027772020548582077, -0.02370692789554596, -0.016221696510910988, 0.04495131969451904, -0.03235475346446037, 0.018481703475117683, 0.017025141045451164, 0.018662117421627045, -0.0017701615579426289, 0.01543469913303852, 0.05253465473651886, -0.019696328788995743, 0.02075517736375332, 0.004954091273248196, -0.009529839269816875, 0.05794920399785042, 0.026314955204725266, 0.005533067509531975, -0.06140949949622154, -0.01233310904353857, 0.014274085871875286, -0.021034860983490944, -0.09015324711799622, -0.0013868529349565506, 0.03370518237352371, -0.02164207026362419, 0.021840183064341545, -0.015686001628637314, -0.014138326048851013, -0.016927653923630714, 0.00981485191732645, 0.017591537907719612, 0.014495961368083954, 0.033066000789403915, -0.040474019944667816, 0.06193825975060463, 0.018743818625807762, -0.043260883539915085, -0.016815727576613426, -0.008814032189548016, -0.017599403858184814, 0.00824316032230854, -0.055334437638521194, -0.01986205391585827, -0.05733465403318405, -0.08704439550638199, -0.02985188737511635, -0.01425433624535799, -0.03220845386385918, -0.04018402472138405, -0.010831876657903194, 0.011154670268297195, -0.015341076999902725, 0.03961461782455444, -0.0267893448472023, 0.04891887307167053, -0.02228199876844883, -0.02973771095275879, -0.038614578545093536, 0.01815967448055744, -0.008856040425598621, 0.04200714826583862, 0.01518879272043705, -0.054098550230264664, -0.006785561330616474, -0.04197782650589943, 0.03579810634255409, 0.011897051706910133, 0.03806259110569954, 0.029952282086014748 ]
[ -0.0563465841114521, -0.013202398084104061, -0.037924911826848984, -0.011281630955636501, 0.04662201181054115, -0.039475247263908386, 0.015999313443899155, 0.01057835016399622, 0.05608078092336655, -0.019952455535531044, 0.016246331855654716, -0.0419047586619854, 0.0014857876813039184, -0.008828060701489449, 0.05596410855650902, -0.021967031061649323, -0.022086555138230324, -0.03824714943766594, -0.049409039318561554, 0.07000334560871124, 0.029433129355311394, -0.023309826850891113, -0.037330348044633865, -0.031600456684827805, 0.03692937269806862, 0.05034114792943001, 0.02830955572426319, -0.024541253224015236, -0.019239213317632675, -0.2018001228570938, -0.002920914441347122, 0.013805009424686432, 0.008842681534588337, -0.036528702825307846, 0.021698495373129845, 0.04300597682595253, -0.00045938172843307257, -0.006870492361485958, 0.03471282869577408, 0.06190335378050804, 0.039951443672180176, -0.016637392342090607, -0.06103222072124481, -0.01038204226642847, 0.032524291425943375, 0.0014651130186393857, -0.009941274300217628, -0.019005676731467247, -0.0029526548460125923, 0.028858674690127373, -0.042020283639431, -0.002786616561934352, -0.01126689463853836, 0.03327115997672081, 0.021897783502936363, 0.034335315227508545, 0.04690064862370491, 0.056368984282016754, 0.03329073265194893, 0.05012625828385353, 0.014356476254761219, 0.010726287961006165, -0.1232621818780899, 0.04368399828672409, 0.01289638876914978, 0.013686642050743103, -0.0488276369869709, -0.004029548726975918, -0.03369363397359848, 0.10180281102657318, 0.06216616556048393, -0.028313953429460526, -0.04485080763697624, 0.0748147964477539, -0.010553913190960884, 0.025116709992289543, -0.039820101112127304, -0.0142976064234972, 0.018649619072675705, -0.018593885004520416, -0.07142508029937744, -0.0014162493171170354, -0.05776619166135788, -0.023942310363054276, -0.028162188827991486, 0.05853365734219551, -0.019953059032559395, 0.057374514639377594, 0.042811814695596695, 0.0397886298596859, 0.011880317702889442, 0.02067987434566021, 0.004060770850628614, 0.0560559518635273, -0.06614982336759567, -0.014963551424443722, 0.012574751861393452, 0.013429389335215092, 0.025691471993923187, 0.3687598407268524, 0.027661355212330818, 0.003566222032532096, 0.01258707046508789, 0.038121335208415985, -0.004249649588018656, -0.018975846469402313, -0.01049280259758234, -0.059148386120796204, 0.04255714640021324, -0.031113481149077415, -0.03347184136509895, -0.02451571263372898, 0.03180883452296257, -0.12190984934568405, 0.0045393602922558784, 0.026620017364621162, 0.05291636288166046, 0.013913331553339958, 0.0000011992721056230948, -0.003980489447712898, -0.013657253235578537, 0.020985163748264313, 0.02681170031428337, 0.011711793951690197, 0.04000435397028923, 0.050666019320487976, 0.044910233467817307, 0.05357684940099716, 0.010213774628937244, 0.04611968249082565, 0.06141109764575958, 0.0032795609440654516, -0.09242518991231918, 0.0033011422492563725, -0.016934551298618317, 0.000003685322099045152, 0.022808032110333443, -0.00656428188085556, -0.024901781231164932, 0.04270266741514206, -0.01599898561835289, -0.01973406784236431, 0.004895380698144436, -0.003811309579759836, -0.034835297614336014, 0.1455831080675125, -0.015074286609888077, -0.04433493688702583, -0.0164326224476099, -0.04566778987646103, -0.0314645990729332, 0.03720357269048691, 0.010823962278664112, -0.05674972012639046, -0.03461936488747597, 0.03933485969901085, 0.07763155549764633, -0.018444066867232323, -0.09232029318809509, -0.022414391860365868, -0.009135822765529156, -0.03443391993641853, -0.0486464761197567, 0.09379231184720993, 0.05318059027194977, -0.09801504015922546, -0.024359215050935745, 0.012281994335353374, -0.0046387119218707085, -0.1010478287935257, 0.012887251563370228, 0.005313450004905462, -0.05802949517965317, -0.04483683034777641, 0.07415012270212173, -0.015835491940379143, -0.030475910753011703, -0.03274518623948097, 0.019386086612939835, 0.015030010603368282, -0.024808574467897415, 0.011213522404432297, -0.04551160708069801, 0.012105067260563374, -0.055420856922864914, -0.045227427035570145, -0.0944124236702919, 0.024685537442564964, -0.04532017186284065, -0.04395809397101402, -0.015882382169365883, 0.002711514476686716, -0.06444016098976135, 0.09114902466535568, -0.04423794150352478, -0.03866774961352348, -0.010591103695333004, 0.00850751530379057, -0.03422343358397484, -0.0369352251291275, 0.05479421839118004, 0.01962769217789173, 0.006692735478281975, 0.014206741005182266, -0.03786124661564827, 0.017833011224865913, 0.0801544040441513, -0.02538466639816761, 0.053268298506736755, 0.03313750401139259, -0.03368387371301651, 0.03629390150308609, -0.01679687760770321, 0.02726558968424797, -0.007314254529774189, -0.0009332724730484188, -0.0010956951882690191, -0.008939061313867569, 0.020215146243572235, 0.04288065433502197, -0.032266877591609955, -0.03581688925623894, -0.0023884864058345556, -0.3522821068763733, -0.04117615520954132, 0.0009651556028984487, -0.028459884226322174, 0.013310855254530907, -0.00221076188609004, -0.005290541797876358, -0.0233840923756361, 0.0039005910512059927, 0.011451522819697857, 0.07533197104930878, -0.002156552392989397, -0.015879539772868156, -0.10365191847085953, -0.02276773564517498, 0.02892531268298626, -0.015362611971795559, -0.021225543692708015, -0.02103610150516033, 0.018673798069357872, 0.004290768411010504, -0.06511073559522629, -0.005448297597467899, -0.05988696962594986, -0.00010542546078795567, 0.0017886031419038773, 0.11634891480207443, 0.0034194241743534803, 0.008534438908100128, -0.07353398948907852, 0.05213537812232971, 0.01462162472307682, -0.04561648517847061, -0.03333260864019394, 0.014443768188357353, -0.02910158410668373, 0.0010138737270608544, 0.03374997153878212, -0.04389968886971474, -0.012894506566226482, -0.03446228429675102, -0.005124799441546202, -0.053823016583919525, -0.019325710833072662, -0.0009274265030398965, 0.01325263362377882, -0.04683047533035278, -0.022017911076545715, 0.025099502876400948, 0.07765236496925354, 0.007226394023746252, 0.044292185455560684, 0.0013895242009311914, 0.03332097455859184, 0.026388222351670265, -0.011227015405893326, -0.07870906591415405, -0.020586594939231873, 0.0003830799541901797, -0.0020303588826209307, 0.025991162285208702, 0.03857722133398056, 0.04131307080388069, -0.08145606517791748, 0.025433097034692764, -0.015356219373643398, 0.009969192557036877, 0.005071338731795549, 0.02953094244003296, -0.03887150436639786, -0.03278684243559837, 0.08400174975395203, 0.015561273321509361, 0.012372685596346855, 0.05393870547413826, 0.061508335173130035, -0.028599610552191734, -0.005716041661798954, 0.03618427366018295, 0.04564327746629715, 0.04998788610100746, -0.018944358453154564, 0.062467630952596664, -0.0198865607380867, -0.010980448685586452, 0.05140651762485504, 0.01533886231482029, -0.037684500217437744, 0.044821713119745255, 0.0016755082178860903, -0.0332585908472538, 0.020229190587997437, -0.020570551976561546, -0.04534735158085823, 0.053559258580207825, -0.02667410671710968, -0.2679969072341919, 0.05821347236633301, 0.004133726004511118, 0.06036292389035225, 0.015565956011414528, 0.009755515493452549, 0.0055798618122935295, -0.02973059006035328, -0.03597480058670044, 0.005447052419185638, 0.013131827116012573, 0.04068532958626747, 0.0027529678773134947, -0.042971380054950714, 0.0012245562393218279, -0.004437827970832586, 0.02359871380031109, -0.0002979171113111079, 0.02567211538553238, 0.0017005808185786009, 0.06510293483734131, 0.012340355664491653, 0.1996946483850479, 0.07024258375167847, 0.00378561788238585, 0.012995428405702114, -0.03315426781773567, 0.013653978705406189, 0.08880805969238281, 0.011517362669110298, -0.010425788350403309, 0.04555241018533707, 0.047883547842502594, 0.06016089767217636, 0.008681093342602253, -0.026009388267993927, -0.01163155771791935, 0.04144293814897537, 0.02672612853348255, -0.03272857517004013, -0.0018587951781228185, 0.02308555506169796, -0.05701398104429245, 0.018335659056901932, 0.07345058023929596, -0.037722356617450714, 0.0017324223881587386, -0.03132566809654236, -0.050214916467666626, -0.010874349623918533, -0.043958574533462524, -0.019253261387348175, -0.028361104428768158, -0.017223533242940903, -0.020671667531132698, 0.05920962244272232, 0.007373862434178591, -0.03213205933570862, 0.029743142426013947, 0.005032118409872055, -0.03188078850507736, -0.034305453300476074, 0.07801289111375809, -0.011651626788079739, -0.013046864420175552 ]
[ 0.0287169199436903, 0.06848065555095673, -0.035420481115579605, 0.04990608990192413, -0.036982014775276184, 0.003433428006246686, -0.019016029313206673, -0.010755548253655434, -0.00904556643217802, -0.010551533661782742, -0.037418849766254425, -0.026891907677054405, 0.01825905591249466, -0.04830676689743996, -0.059563104063272476, 0.0043061356991529465, -0.002732619410380721, 0.04219145327806473, 0.03432735428214073, -0.06717730313539505, -0.04304793104529381, 0.007307827938348055, 0.04440214857459068, -0.018790384754538536, -0.0106298066675663, 0.030175291001796722, -0.03792748972773552, -0.021301746368408203, 0.03779643401503563, -0.0766371339559555, -0.0597088448703289, -0.014713026583194733, 0.001904545584693551, 0.03975681588053703, -0.03609781339764595, -0.020342346280813217, 0.0014966052258387208, 0.02272610180079937, 0.02607918344438076, 0.06277722120285034, 0.03223163262009621, -0.020549945533275604, -0.028481628745794296, -0.0029613731894642115, 0.0010210155742242932, -0.051067039370536804, -0.06068727374076843, -0.013220095075666904, 0.032881028950214386, -0.01937977410852909, -0.03862033411860466, 0.004995021969079971, -0.044270120561122894, 0.007964891381561756, -0.005239113233983517, -0.010861334390938282, -0.029124904423952103, -0.025157971307635307, -0.00345623423345387, 0.002950433176010847, 0.044344350695610046, -0.02572557143867016, -0.021868687123060226, -0.035611413419246674, 0.013553458265960217, -0.011792273260653019, -0.02718239650130272, 0.005524428561329842, -0.010966276749968529, -0.0019481409108266234, 0.011369576677680016, 0.029839269816875458, -0.07385236769914627, -0.0051874215714633465, -0.007510276511311531, 0.016851847991347313, 0.0540744848549366, -0.04919935762882233, 0.011169771663844585, 0.004611702635884285, -0.051311641931533813, 0.020176904276013374, -0.028330877423286438, -0.01610746793448925, -0.03503119945526123, -0.0334492027759552, 0.01838637888431549, 0.02103148028254509, 0.021539688110351562, 0.0127941919490695, -0.055303364992141724, -0.02353634312748909, -0.034144703298807144, -0.013789980672299862, -0.10422312468290329, 0.0013578587677329779, -0.0006361481500789523, -0.0035957549698650837, 0.04304557293653488, 0.7905160784721375, 0.015484792180359364, 0.01675247959792614, -0.004794966895133257, -0.012535078451037407, -0.09116045385599136, 0.019001591950654984, 0.04889218881726265, 0.0330219641327858, -0.00010326549818273634, -0.019252276048064232, -0.024336116388440132, 0.014825322665274143, 0.005352570675313473, 0.05049604922533035, -0.03333784639835358, 0.048501208424568176, 0.042342934757471085, 0.008648872375488281, 0.012031038291752338, 0.007848894223570824, 0.017548663541674614, 0.024639155715703964, 0.021360956132411957, 0.01709497720003128, 0.002948244335129857, -0.17483174800872803, -0.032103415578603745, -6.956425692636568e-33, -0.007809708826243877, -0.013114186935126781, 0.07343317568302155, -0.009784392081201077, 0.037591755390167236, 0.06213963031768799, 0.007323560770601034, -0.025745801627635956, -0.004115722142159939, -0.019383586943149567, 0.02037784457206726, 0.027944188565015793, -0.04565414413809776, -0.040082208812236786, 0.02642131596803665, -0.0002260044711874798, 0.023345766589045525, 0.015888506546616554, -0.008075781166553497, -0.03832513466477394, 0.027446454390883446, 0.02953401952981949, 0.011988862417638302, 0.07176081091165543, 0.03128994628787041, 0.03989255055785179, -0.008256761357188225, 0.011590813286602497, 0.001421359833329916, -0.03164920210838318, -0.028365543112158775, 0.030893519520759583, 0.00017492704500909895, -0.026054268702864647, -0.02323232963681221, -0.05754529684782028, -0.0009253996540792286, 0.006620742846280336, 0.009052986279129982, -0.054264575242996216, -0.061786048114299774, 0.03729118034243584, 0.03312142565846443, -0.02597113512456417, -0.036543916910886765, 0.026605859398841858, 0.007427339907735586, 0.04958769679069519, -0.001207062159664929, 0.039420921355485916, -0.021241070702672005, 0.0008376503828912973, 0.012929760850965977, 0.02828417904675007, -0.01597183756530285, 0.005067730322480202, 0.017163537442684174, 0.009146248921751976, -0.017868218943476677, -0.012929144315421581, -0.0270704198628664, 0.007350647822022438, 0.01151321455836296, 0.05744735896587372, -0.0026373828295618296, 0.05861356109380722, 0.05020352452993393, -0.008243720047175884, -0.007654707878828049, 0.03806120529770851, -0.03196928650140762, 0.0452742800116539, -0.013746931217610836, -0.03387051448225975, 0.021661141887307167, -0.06474442034959793, -0.008050582371652126, 0.0036832443438470364, 0.0035017249174416065, 0.027382848784327507, 0.0051619210280478, -0.0022203237749636173, 0.042675696313381195, -0.03268207609653473, 0.004795806482434273, 0.012205357663333416, 0.009552405215799809, 0.06531497836112976, 0.03500641882419586, 0.004759242758154869, 0.010541796684265137, 0.04812447726726532, 0.00005652933396049775, -0.016711564734578133, -0.015031395480036736, 6.603374045890755e-33, -0.04772784933447838, 0.0007003449136391282, -0.0025579107459634542, 0.010243834927678108, -0.01157562155276537, -0.0012719251681119204, -0.026162348687648773, -0.003304117126390338, -0.0175460297614336, 0.04510728642344475, 0.006611822638660669, -0.04899149388074875, -0.005161167588084936, -0.00430490355938673, 0.03641628473997116, -0.007929082959890366, 0.01052556186914444, -0.015933381393551826, 0.010571968741714954, 0.05103882774710655, -0.02152027003467083, 0.021318700164556503, 0.0037720734253525734, 0.03050597384572029, 0.024326510727405548, 0.010931411758065224, -0.015702761709690094, 0.028570009395480156, -0.028038930147886276, -0.022760923951864243, 0.006029779091477394, -0.04753919690847397, -0.022984487935900688, -0.012751846574246883, 0.003267513820901513, 0.00048287585377693176, 0.021254757419228554, -0.0017630730289965868, 0.028925670310854912, 0.015472779050469398, 0.02185790240764618, 0.0044466289691627026, -0.0002541499852668494, 0.08557653427124023, 0.01914055086672306, -0.009799158200621605, 0.03574476018548012, 0.005754082929342985, 0.027699779719114304, 0.010020786896348, 0.002045277040451765, 0.004477918613702059, -0.029408540576696396, 0.033110156655311584, -0.008776934817433357, -0.020510412752628326, -0.006671453360468149, 0.026388019323349, -0.06075486168265343, -0.024678165093064308, -0.06390541046857834, -0.016454733908176422, -0.0398712232708931, 0.04341821372509003, -0.02474706619977951, -0.022818582132458687, -0.01288551278412342, -0.028539754450321198, 0.006259795278310776, -0.02738969959318638, 0.00771035673096776, -0.006962493993341923, -0.008350765332579613, 0.00033072862424887717, -0.007471371907740831, -0.008485488593578339, -0.02339583821594715, -0.02447708509862423, -0.01624993048608303, 0.043086469173431396, 0.03479107841849327, -0.00639357790350914, 0.054322294890880585, -0.02051243558526039, 0.015924746170639992, -0.029918383806943893, -0.01094331406056881, 0.025331875309348106, -0.012089195661246777, 0.001393147511407733, 0.02354925312101841, -0.00397440604865551, -0.027454089373350143, 0.02347748912870884, -0.03384747728705406, -1.2229701695787298e-8, -0.01881929114460945, 0.022630158811807632, -0.009333942085504532, 0.021755434572696686, 0.039898112416267395, -0.022612612694501877, 0.000289861491182819, 0.0016726014437153935, -0.018484871834516525, 0.03429332375526428, -0.013332598842680454, -0.014502480626106262, 0.008871250785887241, 0.015413515269756317, -0.00016514745948370546, -0.04034537076950073, 0.004751543514430523, -0.008659187704324722, 0.03609205782413483, 0.0036201307084411383, 0.006199177820235491, 0.04813094064593315, -0.005876574199646711, 0.017361585050821304, -0.001033439883030951, -0.014276335015892982, 0.049686022102832794, -0.05931689962744713, 0.0008220071904361248, -0.011510537005960941, 0.007327113300561905, -0.023456929251551628, 0.0016539727803319693, 0.047272078692913055, -0.041445761919021606, -0.054920703172683716, 0.03179137408733368, 0.054325882345438004, -0.007947825826704502, 0.046418797224760056, -0.003191206604242325, 0.005373467691242695, -0.038293320685625076, -0.02384668029844761, -0.059164244681596756, 0.004879985470324755, -0.053646624088287354, -0.006471139844506979, 0.07560300081968307, -0.02287871576845646, 0.019549766555428505, -0.03350338712334633, 0.021707650274038315, -0.02349906414747238, 0.011973515152931213, 0.01857193373143673, 0.01299828477203846, -0.007797257974743843, -0.021480854600667953, -0.007899614982306957, 0.019421974197030067, -0.048673104494810104, -0.03343864530324936, -0.0009271883172914386 ]
neo4j-handling-sums-scientific-notation
https://markhneedham.com/blog/2012/09/30/neo4j-handling-sums-scientific-notation
false
2012-09-30 13:44:18
Data Science: Scrapping the data together
[ "data-science-2" ]
[ "Data Science" ]
On Friday http://martinfowler.com/[Martin], https://twitter.com/drnsmth[Darren] and I were discussing the ThoughtWorks graph that I was working on earlier in the year and Martin pointed out that an interesting aspect of this type of work is that *the data you want to work with isn't easily available*. You therefore need to find a way to scrap the data together to make some headway and then maybe at a later stage once some progress has been made it will become easier to replace that with a cleaner solution. In this case I became curious about exploring the relationships between people in ThoughtWorks but there aren't any APIs on our internal systems so I had to find another way to get the data that I wanted. The obvious way to do that was to get a copy of the database used by our internal staffing system but I didn't know anybody who worked on that team and trying to get the data that way *would therefore be slow and lose my initial enthusiasm*. My only alternative was to go via our staffing application and derive the data that way. I ended up writing some Selenium scripts to crawl the application for people, projects and clients and save that data to JSON files which I later parsed to build up the graph. The other bit of data that I was curious about was the sponsor relationships inside the company which is kept in a Google spreadsheet. I wasn't allowed access to that spreadsheet until I was able to show what I was going to use the data for so I first needed to put together something using the other data I'd screen scrapped. Once I did get the spreadsheet I spent around 3 hours cleaning the data so I could integrate it with the other data I had. This involved fixing misspelt names and updating the spreadsheets where I knew that the data was out of date - it's certainly not very glamorous work but it helped me to http://www.markhneedham.com/blog/2012/06/21/visualising-a-neo4j-graph-using-gephi/[get to a visualisation which I wrote about in an earlier post]. I haven't done a lot of work in this area but I wouldn't be surprised if it's common that we have to use relatively guerilla tactics like the above to get us up and running.
null
null
[ 0.03480038791894913, 0.026798274368047714, 0.01749110221862793, 0.053512200713157654, 0.0909208431839943, 0.026042014360427856, 0.02099013514816761, 0.04203999042510986, 0.014669402502477169, -0.03390957787632942, -0.010667088441550732, -0.010617361404001713, -0.06038043648004532, 0.026076575741171837, -0.006871924735605717, 0.07009068876504898, 0.0657319650053978, 0.02318873442709446, 0.010845390148460865, -0.014975381083786488, 0.042420968413352966, 0.06549613177776337, 0.017399480566382408, 0.0380517840385437, 0.023367125540971756, 0.003067346289753914, 0.007854939438402653, -0.009310443885624409, -0.04089241102337837, -0.010168819688260555, 0.04141583666205406, -0.001978146843612194, 0.015284992754459381, 0.0066627394407987595, 0.028654826804995537, -0.02058498188853264, -0.01810239627957344, 0.027665002271533012, -0.003867287887260318, 0.01414690725505352, -0.08128304779529572, 0.05581998452544212, -0.028694557026028633, 0.022132189944386482, -0.045896802097558975, 0.008163615129888058, -0.043884746730327606, 0.01528090424835682, 0.021757259964942932, 0.007853218354284763, -0.07315289229154587, 0.04153577610850334, 0.022254131734371185, 0.008556782267987728, -0.040594495832920074, 0.05795671418309212, 0.026161277666687965, -0.0685880184173584, 0.022165389731526375, -0.026254970580339432, -0.007980807684361935, -0.003928602673113346, -0.004270071163773537, 0.03633065149188042, 0.015338039956986904, -0.04615264758467674, 0.020231615751981735, 0.05735752731561661, -0.03187309950590134, 0.014656462706625462, 0.00006303672853391618, 0.010902541689574718, -0.01836872287094593, -0.02069646492600441, 0.0017377148615196347, -0.05346154794096947, 0.012645050883293152, 0.06089569255709648, 0.01943243108689785, 0.038745492696762085, -0.0340263694524765, 0.03361181169748306, 0.006324972491711378, 0.03154005855321884, -0.014526545070111752, -0.055237140506505966, -0.02292286418378353, -0.04591154679656029, -0.07275871932506561, 0.0494149774312973, 0.014474711380898952, -0.04926576465368271, 0.012865292839705944, 0.023753242567181587, -0.010672027245163918, 0.009160651825368404, 0.03094078227877617, 0.002564036985859275, -0.017314817756414413, -0.02462640218436718, -0.04429658502340317, -0.03666211664676666, 0.00541220186278224, 0.016349345445632935, -0.07678784430027008, -0.018783442676067352, -0.015432641841471195, 0.00034869887167587876, 0.005328953731805086, -0.005920948460698128, -0.034056130796670914, 0.014566296711564064, -0.0229417085647583, 0.017914609983563423, -0.06264157593250275, 0.07121244072914124, 0.013850508257746696, -0.04341982305049896, -0.02392028085887432, 0.00251171481795609, 0.04428146407008171, 0.025259308516979218, -0.006579553242772818, 0.07628720253705978, -0.010994824580848217, 0.02299620769917965, -0.00979626551270485, 0.037889014929533005, -0.019048525020480156, -0.0545736700296402, 0.00959841813892126, 0.0663953423500061, -0.03360508009791374, 0.0057600694708526134, 0.015976207330822945, -0.04781517758965492, -0.0004206645826343447, -0.00003226953049306758, 0.05942092463374138, 0.04879768565297127, 0.01740405336022377, -0.04794555902481079, 0.005874278023838997, 0.030776148661971092, 0.03560556471347809, -0.006408436689525843, -0.00579761853441596, -0.01976890303194523, -0.058267224580049515, -0.02393786981701851, 0.013709183782339096, 0.015492130070924759, 0.013305770233273506, -0.02331509254872799, 0.037714455276727676, 0.1006193682551384, 0.03701013699173927, 0.005982900504022837, -0.01264934241771698, 0.034703172743320465, 0.03418779373168945, 0.04115154594182968, 0.0029127083253115416, 0.031679656356573105, -0.005730397067964077, -0.018352339044213295, 0.0017913373885676265, 0.0231162142008543, -0.014482627622783184, 0.011589144356548786, -0.04756465181708336, -0.052281007170677185, 0.06085439398884773, -0.055624473839998245, -0.03171980381011963, 0.0825776606798172, 0.07921579480171204, 0.03244378790259361, 0.032346565276384354, 0.0035224768798798323, -0.08687883615493774, 0.02280406281352043, 0.02457832731306553, 0.017500268295407295, 0.01003916747868061, -0.016715453937649727, 0.06962846964597702, 0.02678830735385418, 0.007959355600178242, 0.035514961928129196, -0.08288942277431488, -0.08919838070869446, -0.0048127672635018826, -0.009507253766059875, 0.03964725136756897, -0.025629492476582527, 0.037349630147218704, 0.054460134357213974, -0.0007228801841847599, 0.047506459057331085, 0.01653706096112728, -0.001623678021132946, 0.016128873452544212, -0.06271886080503464, -0.051674485206604004, 0.04841258004307747, 0.040095385164022446, -0.027215803042054176, -0.0416417233645916, 0.02469083108007908, -0.02756352722644806, -0.011217916384339333, 0.04775182902812958, -0.02933158352971077, 0.02749141864478588, 0.03263615071773529, 0.054387520998716354, -0.010370328091084957, 0.02122326008975506, -0.04356961324810982, 0.021426526829600334, 0.0206028763204813, -0.019626764580607414, 0.0003661123337224126, 0.004455326125025749, 0.11958255618810654, 0.0741511806845665, -0.04741760715842247, -0.05335152894258499, 0.02717740461230278, 0.017226751893758774, -0.03015545755624771, -0.0020384753588587046, -0.01289853174239397, 0.00036879105027765036, -0.001219996833242476, -0.06236433982849121, -0.04604698717594147, 0.014519504271447659, -0.038272712379693985, 0.02093534544110298, 0.04647400975227356, -0.018341707065701485, 0.06419890373945236, -0.004964293912053108, 0.00662235077470541, -0.03442457690834999, -0.028745410963892937, -0.0501503050327301, 0.029334278777241707, -0.009610339067876339, -0.00405428372323513, 0.03424462303519249, -0.01635577902197838, -0.017138909548521042, -0.031177155673503876, -0.02970139868557453, 0.022238273173570633, 0.05396557226777077, 0.07158806920051575, -0.0020375049207359552, 0.04732042923569679, -0.01652248203754425, 0.03383328393101692, 0.017284270375967026, -0.04738878831267357, -0.049782633781433105, -0.04663937911391258, 0.013720691204071045, 0.033639077097177505, 0.028204018250107765, -0.008879296481609344, 0.001098450506106019, 0.03887217864394188, 0.01177896000444889, -0.021866967901587486, 0.029156848788261414, -0.013391626998782158, -0.008670840412378311, -0.031300801783800125, -0.019077414646744728, 0.06212189421057701, -0.02235388569533825, -0.0046213907189667225, 0.011598452925682068, -0.0681271031498909, 0.04677186906337738, -0.04682124778628349, -0.028162430971860886, -0.006160868797451258, 0.0024558776058256626, 0.03805821016430855, 0.018797608092427254, -0.012440674938261509, 0.0558452345430851, 0.0011355038732290268, 0.02118544653058052, -0.017907053232192993, -0.00816118624061346, 0.033585187047719955, 0.00019800673180725425, -0.0005078702815808356, 0.0598587691783905, -0.014144833199679852, 0.010396466590464115, -0.043480802327394485, 0.037227872759103775, -0.04463951662182808, -0.3053991496562958, 0.04020804166793823, 0.0026580975390970707, -0.03868808597326279, 0.00843893364071846, -0.01077756192535162, 0.009314833208918571, -0.051318179816007614, -0.015969859436154366, -0.009904071688652039, -0.019111840054392815, -0.0385257825255394, -0.026765454560518265, 0.05642233043909073, 0.019144976511597633, 0.03002685122191906, 0.02451981231570244, -0.05166175216436386, 0.008087188936769962, 0.040323857218027115, -0.008470267057418823, -0.05139150097966194, -0.012496106326580048, 0.04321497306227684, 0.0531497485935688, 0.07395502179861069, -0.08102750033140182, 0.018590731546282768, -0.06554459780454636, -0.003971276804804802, 0.017411835491657257, -0.011403202079236507, 0.012395420111715794, -0.01415072288364172, -0.012302562594413757, -0.033031269907951355, 0.052308324724435806, 0.006886391434818506, 0.010377837345004082, -0.005675571504980326, -0.015805991366505623, -0.025862859562039375, -0.034318841993808746, -0.006950032897293568, 0.08179260045289993, 0.005384920164942741, -0.0860818475484848, -0.00026008952409029007, -0.020810570567846298, 0.05856436863541603, -0.028891650959849358, -0.024839526042342186, -0.015142141841351986, 0.02804025448858738, -0.006105111911892891, -0.009419812820851803, -0.021307582035660744, -0.016743287444114685, -0.05205917730927467, -0.050909727811813354, -0.0004367535002529621, -0.027732450515031815, -0.013228491879999638, -0.042932379990816116, -0.018040023744106293, -0.0635407343506813, -0.06421017646789551, -0.027034828439354897, 0.08452153950929642, 0.011555365286767483, -0.034361883997917175, 0.031166430562734604, 0.024159839376807213, -0.09837361425161362, 0.009672114625573158, -0.0035473790485411882, -0.029588790610432625, 0.002773991087451577, 0.002456777961924672, 0.05405813083052635, -0.013788815587759018, -0.0675194263458252, 0.023724570870399475, 0.01960168592631817, 0.019051240757107735, -0.0108956852927804, 0.02788887545466423, 0.00980335846543312, -0.028952542692422867, 0.011432361789047718, 0.06557129323482513, -0.01775578409433365, -0.013831566087901592, -0.004339171107858419, 0.002624514512717724, 0.03959043696522713, 0.00698392279446125, -0.008330017328262329, 0.009302685968577862, 0.0441109798848629, 0.025573188439011574, -0.04941902682185173, 0.028977198526263237, -0.02870773896574974, 0.0014806531835347414, -0.025818023830652237, -0.03475607931613922, 0.010671228170394897, 0.01578592136502266, 0.02728908136487007, -0.0018456924008205533, -0.03858303278684616, 0.015946650877594948, -0.05512799322605133, -0.04395930841565132, -0.014269589446485043, 0.012038193643093109, 0.02908973954617977, 0.0010265616001561284, -0.015355551615357399, -0.04792013019323349, -0.000956495467107743, 0.007211121264845133, -0.01381738018244505, -0.06694869697093964, -0.02469823509454727, -0.0018249066779389977, -0.016685092821717262, 0.0335257463157177, 0.023335158824920654, -0.017938779667019844, 0.02351105958223343, 0.012884379364550114, -0.038114506751298904, 0.028302570804953575, -0.03679795563220978, -0.045652471482753754, -0.023735446855425835, 0.011728934943675995, -0.0011636598501354456, 0.0072059971280395985, 0.023788074031472206, -0.014532073400914669, 0.02846548892557621, 0.05527840182185173, 0.011627018451690674, 0.014593034982681274, -0.02252882905304432, 0.029044456779956818, 0.00709373177960515, -0.021071182563900948, -0.054596804082393646, 0.010429717600345612, -0.047948963940143585, -0.026881473138928413, -0.011914195492863655, 0.04658772423863411, -0.012093006633222103, -0.0318022258579731, -0.006421022117137909, -0.004551529418677092, -0.08464638888835907, -0.01959536038339138, -0.010060261934995651, -0.0036257996689528227, 0.052180562168359756, -0.029160279780626297, 0.023362794890999794, 0.004097734112292528, 0.00866479892283678, 0.02490631677210331, 0.03319575637578964, -0.04151252284646034, 0.010489664040505886, 0.010407283902168274, 0.004640629980713129, 0.01133730635046959, 0.004301362205296755, 0.0501394160091877, 0.03228404372930527, -0.034032192081213, -0.03066817857325077, -0.011442122049629688, 0.02139340154826641, 0.05061911791563034, 0.029079491272568703, -0.012413600459694862, 0.007102667819708586, -0.004340748302638531, -0.010497618466615677, -0.03404645249247551, -0.02016304060816765, -0.008617774583399296, 0.014872374013066292, -0.021256783977150917, -0.07935886085033417, 0.07125919312238693, -0.0031838808208703995, 0.02562558837234974, 0.02895244210958481, -0.01453552208840847, -0.005199680104851723, -0.018942074850201607, 0.04187358543276787, 0.055600572377443314, -0.06279254704713821, -0.012619602493941784, -0.010711099952459335, 0.000658107572235167, 0.004980362020432949, 0.006581198889762163, -0.023128986358642578, -0.03516078367829323, -0.028660232201218605, 0.025867318734526634, -0.046258389949798584, 0.0010571035090833902, -0.02922477200627327, 0.000627021596301347, -0.014357512816786766, -0.00218376936390996, -0.0024802687112241983, -0.009741622023284435, 0.002842269605025649, -0.02542441338300705, 0.02198115922510624, -0.018986497074365616, -0.015950128436088562, 0.0013803538167849183, -0.032783858478069305, 0.009041531011462212, -0.023230833932757378, 0.004450588021427393, 0.035026710480451584, -0.029815644025802612, 0.005941062234342098, -0.033010292798280716, -0.0005857354262843728, 0.014738292433321476, 0.03648349270224571, -0.012265236116945744, -0.02666959911584854, -0.049506574869155884, -0.010022255592048168, -0.02813052386045456, 0.0095255421474576, -0.03299728408455849, -0.002678919117897749, 0.03605575114488602, 0.034271489828825, 0.01672900654375553, 0.015925565734505653, -0.01427343301475048, -0.04075213894248009, 0.030735284090042114, -0.053369808942079544, -0.03160063549876213, -0.03856969624757767, -0.03955455124378204, -0.002960641635581851, -0.006879066117107868, 0.017741085961461067, -0.011989416554570198, 0.04975396767258644, 0.030673056840896606, 0.033019158989191055, 0.044471465051174164, 0.0013830541865900159, 0.041021205484867096, -0.054280951619148254, -0.004387654364109039, -0.06588204205036163, -0.022271251305937767, 0.031540196388959885, -0.003936769440770149, -0.00019885117944795638, 0.005052818916738033, -0.019550766795873642, 0.030109254643321037, -0.0722055658698082, -0.036455295979976654, 0.04603002592921257, -0.007063059136271477, -0.006691730581223965, 0.009729837998747826, -0.07253973186016083, 0.018531473353505135, 0.015091195702552795, -0.033411070704460144, -0.044666651636362076, -0.023448549211025238, 0.052717432379722595, -0.026603437960147858, 0.04136575385928154, -0.019382664933800697, -0.008678758516907692, 0.05946267023682594, 0.013629617169499397, 0.0004309248470235616, 0.047713395208120346, -0.003963629715144634, 0.022163070738315582, 0.0337141752243042, 0.010711139999330044, -0.005369630642235279, 0.026943596079945564, -0.006355681456625462, -0.04834427312016487, 0.00722952326759696, 0.008189160376787186, -0.022601965814828873, -0.04745491221547127, 0.07674161344766617, 0.024304764345288277, -0.024932315573096275, -0.05655989050865173, 0.009342614561319351, -0.0376722477376461, 0.007376278750598431, -0.019666198641061783, 0.0011716991430148482, -0.03881719335913658, 0.031034167855978012, -0.01960594952106476, -0.0029472713358700275, 0.06606052815914154, 0.011517315171658993, 0.004731899593025446, -0.019395455718040466, 0.09224554896354675, 0.08849954605102539, 0.06563953310251236, 0.027567170560359955, 0.07149866968393326, -0.020747823640704155, -0.04684897139668465, 0.01097339577972889, -0.010450776666402817, -0.02250768058001995, -0.009039322845637798, 0.018422814086079597, 0.060946110635995865, -0.02987123839557171, 0.08167582005262375, -0.016012858599424362, -0.014856226742267609, -0.010483263060450554, 0.008881252259016037, 0.02040093019604683, 0.06701848655939102, -0.013888799585402012, 0.02311503328382969, -0.044305555522441864, -0.0410696342587471, 0.022666463628411293, -0.03982448950409889, -0.020595232024788857, 0.04620944708585739, -0.00793332140892744, 0.020055709406733513, -0.0006825533928349614, 0.04125067591667175, 0.08146454393863678, -0.04267355799674988, 0.012759885750710964, -0.017270401120185852, 0.0159143079072237, -0.002949066460132599, 0.018254965543746948, -0.014234520494937897, -0.005365739110857248, -0.012938285246491432, -0.033302195370197296, -0.026990436017513275, -0.031198279932141304, -0.026483705267310143, 0.04100295156240463, -0.03425674885511398, -0.015963325276970863, 0.0114881107583642, -0.00894425343722105, -0.03942951560020447, -0.04604800418019295, -0.04384307935833931, -0.03683960437774658, -0.07373960316181183, -0.02020631916821003, 0.01730537787079811, -0.003033402608707547, -0.03307310864329338, 0.0029409481212496758, -0.03462744504213333, -0.027164462953805923, 0.03299056366086006, -0.051787249743938446, -0.020900867879390717, 0.00874478928744793, 0.033388420939445496, 0.01868510991334915, 0.017391813918948174, 0.05670628696680069, -0.005853018257766962, -0.0008428571745753288, -0.012336785905063152, 0.023679718375205994, 0.03308118134737015, 0.018581729382276535, 0.00515965698286891, -0.07417847961187363, 0.01108927745372057, -0.0037658242508769035, -0.03430605307221413, -0.07361121475696564, 0.01674429327249527, 0.03870689123868942, 0.008715546689927578, 0.051319725811481476, -0.00817151740193367, -0.011869795620441437, -0.038690682500600815, 0.0007214355864562094, 0.0038433175068348646, 0.0006901528686285019, 0.0382816307246685, -0.020192204043269157, 0.09116183966398239, 0.02654806524515152, -0.019009064882993698, -0.0157361701130867, -0.022216536104679108, 0.015111269429326057, -0.009324481710791588, -0.030251089483499527, -0.055802732706069946, -0.02965114824473858, -0.08232328295707703, -0.03853577375411987, 0.011388225480914116, -0.02896394208073616, -0.029552536085247993, 0.005475375801324844, 0.020252658054232597, -0.028107088059186935, 0.03795899450778961, -0.04439707100391388, 0.039163678884506226, -0.015047892928123474, -0.02236197330057621, -0.01794016920030117, 0.0038754574488848448, 0.009238950908184052, -0.003028678707778454, 0.001295803114771843, -0.06274506449699402, 0.0019360687583684921, -0.01260201632976532, 0.021649204194545746, 0.023331768810749054, 0.018959395587444305, 0.003288620850071311 ]
[ -0.06661617755889893, -0.002059101825580001, -0.032855842262506485, -0.04626191779971123, 0.06713693588972092, -0.03452463448047638, -0.03480906039476395, 0.03463312238454819, 3.347122117247636e-7, -0.007859336212277412, 0.026561809703707695, -0.03847769647836685, 0.013689959421753883, -0.013572950847446918, 0.06802709400653839, 0.013808134011924267, -0.020816396921873093, -0.07746685296297073, -0.004423527512699366, 0.030771516263484955, -0.024944841861724854, -0.04510665684938431, -0.03999769687652588, -0.03577524796128273, -0.008051015436649323, 0.04116548225283623, 0.013363196514546871, -0.0405462384223938, 0.0015925966436043382, -0.17413577437400818, 0.02139466255903244, -0.008654249832034111, 0.04126955568790436, 0.00708755711093545, 0.03207510709762573, 0.0612865686416626, 0.051450129598379135, 0.018234869465231895, -0.00269114226102829, 0.04309658333659172, 0.026151018217206, 0.004557203967124224, -0.06361684948205948, -0.0000026192928999080323, 0.012289425358176231, 0.015056927688419819, 0.002405228791758418, -0.018430598080158234, -0.04302041977643967, 0.023426927626132965, -0.05234970152378082, -0.02399539202451706, -0.022683946415781975, -0.0007481192005798221, -0.0010177636286243796, 0.04144999384880066, 0.03318314626812935, 0.06236347556114197, -0.0004226771416142583, 0.034789200872182846, 0.025252440944314003, -0.005854269955307245, -0.11443936079740524, 0.07096163183450699, 0.03510027751326561, 0.036014676094055176, -0.050613466650247574, -0.04249393939971924, -0.024312850087881088, 0.0793086439371109, 0.004369261208921671, -0.035657647997140884, -0.038355741649866104, 0.0171190332621336, 0.034028515219688416, 0.021542957052588463, -0.010562954470515251, 0.01303553394973278, 0.02486499585211277, -0.048250190913677216, -0.0452963225543499, 0.012867245823144913, -0.004816106986254454, 0.008829941973090172, -0.03984057903289795, 0.03223099187016487, -0.019252832978963852, 0.06430336833000183, 0.03854593262076378, 0.0219555776566267, 0.05108682066202164, 0.012913797050714493, 0.05111170560121536, -0.0026015485636889935, -0.07658720761537552, -0.028520656749606133, 0.012924551963806152, 0.0558338463306427, -0.033844273537397385, 0.4543141722679138, -0.03564067929983139, -0.007322906982153654, 0.08081971853971481, 0.0387541726231575, -0.03117731213569641, -0.03351660445332527, -0.012387706898152828, -0.05490591749548912, 0.03177952393889427, -0.015181446447968483, 0.024347061291337013, 0.005864986218512058, 0.04729398339986801, -0.045008640736341476, 0.02013309858739376, 0.0027051365468651056, -0.0037089057732373476, 0.002601135987788439, -0.008545801043510437, 0.0034065295476466417, -0.005768342409282923, 0.014145022258162498, 0.03106471337378025, 0.015432626008987427, -0.007137876935303211, 0.0035860189236700535, 0.009045757353305817, 0.04815223440527916, 0.023181255906820297, 0.01040832418948412, 0.06051509454846382, -0.02934136986732483, -0.0742059275507927, 0.023569002747535706, -0.01595289260149002, 0.002515095518901944, 0.05120587721467018, -0.02594064734876156, 0.007683715783059597, 0.03280414268374443, 0.017393676564097404, -0.011765269562602043, 0.01103773433715105, -0.005449671298265457, -0.015330816619098186, 0.14084798097610474, 0.03425094112753868, -0.05112144723534584, -0.023285284638404846, -0.05612575262784958, -0.0013745126780122519, 0.036936648190021515, 0.00470269750803709, -0.06866668164730072, 0.018127581104636192, 0.011242601089179516, 0.08519377559423447, -0.012152163311839104, -0.06669119745492935, 0.018717611208558083, -0.019491059705615044, -0.028545578941702843, -0.05671509727835655, 0.05151662230491638, 0.07508442550897598, -0.1205238401889801, -0.008750001899898052, 0.01343147549778223, 0.031080683693289757, -0.05582396686077118, 0.005881911143660545, 0.03234626725316048, -0.018668346107006073, 0.0023479543160647154, 0.05547437071800232, -0.03597688674926758, -0.04080049321055412, 0.021341873332858086, 0.03378293663263321, 0.016377268359065056, 0.026953717693686485, -0.0263114795088768, -0.0462598092854023, -0.01786811463534832, -0.0854947417974472, -0.08276237547397614, -0.03036385588347912, 0.019337734207510948, -0.04914041608572006, 0.0013488733675330877, -0.009401727467775345, -0.010796306654810905, -0.07811636477708817, 0.06377436965703964, -0.02984778769314289, -0.03119504824280739, -0.014180527999997139, -0.011783801950514317, -0.03920959308743477, -0.0075689805671572685, -0.012832535430788994, -0.006442865822464228, -0.02021948993206024, 0.02131950668990612, -0.072498619556427, 0.04042290151119232, 0.06229756399989128, -0.032770272344350815, 0.11283677071332932, 0.024402379989624023, -0.022117847576737404, -0.039140455424785614, 0.0019997998606413603, 0.02191094681620598, 0.012473120354115963, 0.0034825934562832117, 0.012498654425144196, -0.013530847616493702, 0.017577843740582466, 0.034022074192762375, -0.01752493344247341, 0.01187707856297493, -0.027415264397859573, -0.3446696102619171, -0.05591549351811409, -0.040026020258665085, 0.009646214544773102, 0.0019017356680706143, -0.051759976893663406, 0.033106278628110886, -0.0020901556126773357, -0.030322210863232613, 0.05994939059019089, 0.08192726224660873, 0.002611945616081357, -0.007220970466732979, -0.10390744358301163, -0.006848350167274475, -0.01331830769777298, -0.014177502132952213, -0.00818423181772232, -0.06772632151842117, -0.00514246104285121, -0.0242625642567873, -0.018650857731699944, -0.021415801718831062, -0.05187780782580376, 0.008885021321475506, -0.020707624033093452, 0.11985863745212555, -0.00872622337192297, 0.06093877553939819, -0.040114037692546844, 0.011854677461087704, -0.0022032910492271185, -0.0012073678663000464, -0.09347829222679138, 0.011056355200707912, -0.033447008579969406, 0.0062652588821947575, -0.008975684642791748, 0.0071516381576657295, -0.028650162741541862, -0.07224953174591064, -0.015177877619862556, -0.04149100184440613, -0.040280818939208984, -0.034852977842092514, 0.029641035944223404, -0.03412328660488129, -0.03400758281350136, -0.03457527980208397, 0.07659328728914261, 0.014183228835463524, 0.017062224447727203, 0.04338686913251877, 0.004358312115073204, -0.022208990529179573, -0.02155410498380661, -0.06780055165290833, 0.03665951266884804, -0.004504106473177671, 0.009610608220100403, 0.014236397109925747, 0.0428432896733284, 0.013706226833164692, -0.05431653559207916, 0.019766652956604958, -0.002101658843457699, 0.008109621703624725, 0.006649882532656193, 0.0450812429189682, -0.023722294718027115, -0.0010558970971032977, 0.09268514066934586, -0.02432910166680813, 0.03285545855760574, 0.01384528074413538, 0.06233292818069458, -0.014567731879651546, 0.02027706801891327, 0.006210597697645426, 0.008107814006507397, -0.005414833780378103, -0.018636254593729973, 0.048513758927583694, -0.015173341147601604, -0.008957743644714355, 0.06592711061239243, 0.0014721910702064633, -0.06335030496120453, 0.054511431604623795, 0.0015481472946703434, -0.003170037642121315, -0.01070956140756607, -0.026543475687503815, -0.059136103838682175, 0.0869079977273941, -0.0010548776481300592, -0.2331506609916687, 0.024614132940769196, 0.04961477220058441, 0.029457855969667435, -0.0018866818863898516, 0.017815306782722473, 0.040587231516838074, -0.023209989070892334, 0.029614990577101707, 0.018987605348229408, 0.019687028601765633, 0.023029014468193054, 0.006614960730075836, -0.024765074253082275, 0.03902308642864227, -0.0027301330119371414, 0.02867387793958187, 0.005108518525958061, -0.003398653818294406, 0.00791036244481802, 0.04642026871442795, -0.02288351207971573, 0.17285263538360596, 0.033239178359508514, 0.013338863849639893, 0.0407324880361557, 0.006112571340054274, 0.0017585299210622907, 0.06891759485006332, 0.0030394725035876036, -0.018477249890565872, 0.005564041901379824, -0.0019454946741461754, 0.007789363618940115, 0.026420550420880318, -0.09353179484605789, -0.04948164522647858, 0.026792636141180992, 0.032996393740177155, -0.012073541060090065, 0.021566471084952354, 0.008826442994177341, -0.030793994665145874, 0.032010458409786224, 0.07609016448259354, 0.016778448596596718, -0.003920402843505144, -0.03730931133031845, -0.062032658606767654, -0.010880088433623314, -0.047552354633808136, -0.06734011322259903, -0.02327445149421692, -0.0015577443409711123, 0.008987789042294025, 0.0835123062133789, 0.018882129341363907, 0.00573494378477335, 0.016309287399053574, 0.007205276750028133, -0.023496221750974655, -0.02196226827800274, 0.07943464815616608, 0.0050304606556892395, 0.020596327260136604 ]
[ -0.02366429567337036, 0.029515927657485008, -0.002047145739197731, 0.0055475300177931786, -0.011894678696990013, -0.008957216516137123, 0.007111386861652136, 0.004164037760347128, -0.033137403428554535, -0.019582340493798256, 0.014794259332120419, 0.006025449838489294, 0.03357680141925812, -0.0345270112156868, 0.01960282400250435, 0.0018137601437047124, 0.009818052873015404, -0.0303672906011343, 0.03505565971136093, -0.013821442611515522, -0.023212680593132973, -0.02527358941733837, -0.031265903264284134, -0.01427739392966032, 0.025560438632965088, 0.019109515473246574, 0.00042407590080983937, 0.002421177225187421, 0.02362831123173237, -0.10922933369874954, -0.021496625617146492, -0.02793075516819954, -0.0285723265260458, 0.033314820379018784, -0.013578983023762703, 0.0068154167383909225, 0.019650788977742195, 0.038846202194690704, 0.012038840912282467, 0.010040028020739555, 0.0032685715705156326, -0.015852974727749825, 0.002181259449571371, 0.004880573600530624, -0.01369944866746664, -0.0027090348303318024, -0.0006623908411711454, -0.008960524573922157, 0.0012020259164273739, 0.014168317429721355, -0.06157965213060379, -0.0475836843252182, 0.0015452057123184204, 0.03102857433259487, 0.00459701381623745, 0.010853413492441177, -0.010918860323727131, -0.007058166433125734, -0.0069630020298063755, 0.029826607555150986, 0.04344184696674347, -0.0012216290924698114, -0.05146002769470215, -0.02018273063004017, -0.02447071112692356, -0.008784648030996323, -0.024947218596935272, 0.026540270075201988, -0.017986459657549858, 0.012312575243413448, 0.013561198487877846, 0.023955807089805603, -0.08077187836170197, -0.039125971496105194, -0.009159114211797714, 0.016435032710433006, -0.008585203438997269, -0.007117540575563908, -0.000035392044082982466, -0.03339608758687973, -0.020221088081598282, 0.02872595004737377, -0.00769573962315917, 0.04290724918246269, -0.043079111725091934, 0.006739818025380373, 0.0021268674172461033, 0.010401926003396511, 0.0077039157040417194, 0.0105562349781394, -0.019468868151307106, 0.020165182650089264, -0.008939835242927074, -0.011619332246482372, -0.10234437882900238, 0.005600085482001305, -0.008854665793478489, -0.001687489915639162, -0.006657205522060394, 0.8462176322937012, -0.020293137058615685, -0.0011103808647021651, 0.043333835899829865, 0.016793735325336456, -0.022945336997509003, 0.0025035247672349215, 0.019783321768045425, 0.011021027341485023, -0.01145901158452034, -0.010524779558181763, -0.0030927052721381187, 0.047856807708740234, -0.007053476292639971, 0.010009783320128918, 0.002619965700432658, -0.009216285310685635, -0.008389348164200783, -0.001413140562362969, 0.010080556385219097, 0.012967093847692013, 0.023429563269019127, 0.03843337297439575, 0.00014594735694117844, -0.024949779734015465, 0.022334827110171318, -0.18110229074954987, -0.03491333872079849, -7.04553477658462e-33, 0.03845420852303505, -0.008520196191966534, 0.012046737596392632, 0.023132629692554474, 0.01956965960562229, 0.01185300387442112, 0.0006128365639597178, 0.004478133749216795, -0.026256931945681572, 0.0019004218047484756, -0.0137165617197752, 0.029184121638536453, 0.0269287321716547, -0.03306224197149277, 0.004471044521778822, -0.010608325712382793, 0.016897035762667656, 0.04395793378353119, -0.011855279095470905, -0.0020946578588336706, 0.03098220005631447, 0.02825063280761242, 0.003031132509931922, 0.02228928729891777, 0.02450985461473465, 0.014255818910896778, -0.02245859056711197, 0.032369766384363174, 0.009108282625675201, -0.03608481585979462, -0.01853751391172409, 0.02354465238749981, 0.0250709131360054, -0.03684958443045616, -0.0010483169462531805, -0.031911011785268784, -0.04069248214364052, -0.03078637085855007, -0.010416745208203793, -0.03775108978152275, -0.04146237671375275, 0.017513135448098183, 0.0037424904294312, -0.019739745184779167, -0.041841231286525726, 0.03219316154718399, 0.01948580890893936, -0.002634685020893812, 0.014189894311130047, 0.0013196764048188925, 0.02849244326353073, -0.01086433045566082, -0.009090346284210682, 0.0033976647537201643, -0.05945824086666107, -0.006050754338502884, -0.004868930205702782, 0.02125716395676136, 0.0070521715097129345, 0.013188883662223816, 0.012189827859401703, -0.010895514860749245, -0.008419451303780079, 0.019231481477618217, 0.005545266438275576, 0.011447007767856121, -0.0022571783047169447, -0.0025616881903260946, 0.008749356493353844, -0.01172543689608574, -0.055389828979969025, 0.03309798985719681, -0.007497018203139305, -0.012237378396093845, 0.017315911129117012, -0.025752687826752663, -0.014250523410737514, 0.03264666348695755, 0.008658988401293755, 0.03292015939950943, -0.011227368377149105, -0.024437913671135902, -0.009132284671068192, -0.040430452674627304, -0.026873966678977013, 0.020224997773766518, 0.04354643076658249, -0.0037143316585570574, -0.011696022935211658, 0.035233091562986374, 0.026241609826683998, 0.026294494047760963, -0.02515788935124874, -0.005503172520548105, -0.01151116844266653, 7.029240955514285e-33, 0.0031977344769984484, -0.012823522090911865, 0.021926308050751686, -0.0130703030154109, 0.07357767224311829, 0.01683417148888111, 0.04316257685422897, 0.019652284681797028, -0.042030781507492065, 0.056257978081703186, 0.008456903509795666, -0.031268324702978134, -0.01164759136736393, 0.023024847730994225, 0.05058705434203148, -0.005812864750623703, 0.016150008887052536, -0.060950685292482376, -0.02198094129562378, -0.024456193670630455, 0.003522189799696207, 0.010689585469663143, -0.008375873789191246, 0.021414758637547493, 0.059037137776613235, 0.04063858836889267, -0.038884781301021576, 0.02226186729967594, 0.005849492736160755, 0.00920119695365429, -0.010168717242777348, -0.050381097942590714, 0.015488988719880581, -0.01827116683125496, 0.013609223999083042, 0.015703832730650902, -0.024006543681025505, -0.012960340827703476, 0.04284779727458954, -0.031808771193027496, 0.014059308916330338, 0.011186064220964909, 0.009118938818573952, 0.057081710547208786, 0.021585531532764435, 0.027442149817943573, -0.0005702777998521924, -0.020337512716650963, -0.0021774887572973967, 0.006934817880392075, 0.0036256101448088884, 0.01866798661649227, 0.017919771373271942, -0.0013548147398978472, 0.015130539424717426, -0.036328837275505066, 0.0019412472611293197, 0.012462947517633438, -0.02960364893078804, 0.002209015190601349, -0.030011571943759918, -0.011935600079596043, -0.015124863013625145, 0.050872884690761566, -0.02642775885760784, -0.008409285917878151, -0.02110636606812477, 0.004126233980059624, 0.005771326366811991, -0.008939195424318314, -0.02694964036345482, -0.020554035902023315, -0.00946479756385088, -0.011434566229581833, 0.05277496576309204, -0.026994500309228897, -0.022034840658307076, 0.012701163068413734, -0.037369996309280396, 0.031052039936184883, 0.03543609380722046, 0.012889373116195202, 0.025213636457920074, 0.0049957456067204475, 0.028008539229631424, 0.01266785804182291, -0.00030926280305720866, 0.03493659570813179, 0.008943556807935238, 0.007060921750962734, -0.008969339542090893, -0.0315958596765995, -0.005555352661758661, 0.03448260575532913, 0.011946246959269047, -1.2726583342725917e-8, -0.04934981092810631, -0.006857946515083313, 0.0016780908918008208, -0.016774462535977364, 0.01372910849750042, 0.021466445177793503, 0.006882963702082634, 0.00273247086443007, -0.019782111048698425, 0.0366307757794857, 0.018325481563806534, -0.035051364451646805, -0.014088144525885582, 0.011844799853861332, -0.002739937976002693, -0.06877948343753815, -0.0024088548962026834, -0.05681315436959267, 0.023209547623991966, 0.01567605696618557, 0.01660730130970478, 0.033919528126716614, -0.041480470448732376, 0.029383502900600433, 0.020415840670466423, 0.016055889427661896, -0.01112519670277834, -0.07375777512788773, -0.0011464827693998814, 0.0403200127184391, 0.002642333973199129, -0.031624842435121536, -0.019909609109163284, 0.011414074338972569, -0.02225249819457531, -0.04358568415045738, 0.037303727120161057, 0.0254682470113039, 0.014606276527047157, 0.013890105299651623, 0.02133296988904476, 0.038615673780441284, -0.03506353124976158, -0.024590566754341125, -0.022171488031744957, 0.008653846569359303, -0.04463965818285942, -0.011600876227021217, 0.012962770648300648, -0.04851648584008217, 0.008999256417155266, -0.019069017842411995, 0.019372351467609406, 0.028815262019634247, 0.00690759252756834, -0.02991226315498352, 0.009148815646767616, -0.010644995607435703, -0.01617533341050148, -0.013129202648997307, 0.017791859805583954, -0.023045634850859642, 0.0038597930688410997, -0.01777927577495575 ]
data-science-scrapping-the-data-together
https://markhneedham.com/blog/2012/09/30/data-science-scrapping-the-data-together
false
2012-09-23 19:23:54
Network Address Translation
[ "snat", "nat", "dnat" ]
[ "Networking" ]
I've often heard people talking about Network Address Translation (NAT) but I never really understood exactly how it worked until we started configuring some virtual data centres on my current project. This is an attempt at documenting my own current understanding so I won't forget in future. In our case we've been provisioning a bunch of machines into different private networks, and each machine therefore has an IP in the range of http://en.wikipedia.org/wiki/Private_network[IPv4 addresses reserved for private networks]: * 10.0.0.0 - 10.255.255.255 * 172.16.0.0 - 172.31.255.255 * 192.168.0.0 - 192.168.255.255 We've been using IP addresses from the 10._._.* allocation so all our machines have an IP address in that range. As I understand it private IP addresses were initially allocated because there are a http://www.technewsworld.com/story/71793.html[limited number of IPv4 addresses available] and because we don't necessarily want every machine to be directly accessible to the internet. NAT becomes necessary when we want machines outside the private network to access our machine (e.g. we want to host a web server) or if we want to access things outside the network from our machine (e.g. we want to run an 'apt-get update'). In the first case we'd already have a publicly accessible IP address but creating a connection to it would only take us to a router/firewall. If we want the connection to make its way to our web server we'd need to create a Destination NAT (*DNAT*) rule which will translate the destination IP address and port in the IP header of the IP packet accordingly. image::{{<siteurl>}}/uploads/2012/09/dnat.png[Dnat,515] We've created a little DSL which allows us to define these rules: [source,ruby] ---- dnat :original => { :ip => "217.191.90.72", :port => 80 }, :translated => { :ip => "10.0.0.2", :port => 80 } ---- As far as I understand it there would be a table which keeps track of these rules and if it sees request coming in on 217.191.90.72 on port 80 it will forward that on to 10.0.0.2 port 80. If it's for any other port then there will will be no such forwarding. If we want to access the internet from our 10.0.0.2 machine we will need to put in a Source NAT (*SNAT*) rule to translate our source IP address and port otherwise any machines we send a request to will have no way of routing the response back to us. In this case we wrote a more encompassing rule since we want all the machines in any of our networks to be treated the same way: [source,ruby] ---- snat :original => { :ip => "10.0.0.0/8" }, # this means 10.*.*.* :translated => { :ip => "217.191.90.72" } ---- In this example 217.191.90.72 would be a public IP address that we have available and any requests coming from machines within our network will look like they came from there. If we make a request to google (74.125.230.142) from 10.0.0.2 we might create a TCP connection using port 23479 so our NAT software would at least need to translate the source IP from 10.0.0.2 to 217.191.90.72 and possibly the port too. The NAT software creates some sort of internal state in a NAT session to remember the translations that have been done so that when the response comes back from google it can be routed back to 10.0.0.2 on port 23479. image::{{<siteurl>}}/uploads/2012/09/snat.png[Snat,491] There is more going on behind the scenes to ensure that the checksums are changed accordingly but conceptually this is what's happening. The http://www.redbooks.ibm.com/abstracts/gg243376.html[TCP/IP red book] has a section where it explains this in more detail but I found the chapter in http://www.amazon.co.uk/TCP-Illustrated-Protocols-Addison-Wesley-Professional/dp/0321336313/ref=sr_1_2?ie=UTF8&qid=1348427594&sr=8-2[TCP/IP Illustrated: The Protocols] an easier read. If I've got anything wrong please feel free to point it out in the comments and I'll update the post.
null
null
[ 0.0064496248960494995, -0.011878125369548798, -0.018154243007302284, 0.03043908067047596, 0.05449923500418663, -0.006529291160404682, 0.037125114351511, 0.026404840871691704, 0.020106274634599686, -0.008613437414169312, -0.015606951899826527, -0.012629002332687378, -0.06439495086669922, 0.02605818584561348, -0.019635476171970367, 0.053646527230739594, 0.07577960193157196, -0.035326555371284485, 0.006325668189674616, -0.004441483411937952, 0.00011401218216633424, 0.05837118253111839, 0.013786203227937222, 0.05733237415552139, 0.015436222776770592, 0.0036858569364994764, -0.0016477016033604741, 0.004464286379516125, -0.051219046115875244, -0.00856874417513609, 0.05290587991476059, -0.01774396002292633, 0.0020288382656872272, 0.012639936991035938, 0.03689928352832794, -0.017103390768170357, -0.022446641698479652, -0.003589997300878167, 0.00625234330072999, 0.0077024418860673904, -0.05395233631134033, 0.02649126760661602, -0.04114934802055359, 0.008647704496979713, -0.04890208691358566, -0.00532741192728281, -0.05761511251330376, 0.03409416973590851, 0.019457461312413216, 0.023752620443701744, -0.07012283802032471, 0.035143107175827026, -0.04404895380139351, 0.015821874141693115, 0.029295682907104492, 0.030124977231025696, 0.003406209172680974, -0.06513937562704086, 0.022123010829091072, -0.04305427893996239, 0.036047883331775665, -0.016350895166397095, 0.02299594320356846, 0.029586080461740494, 0.010018537752330303, -0.020948976278305054, 0.015527944080531597, 0.026199379935860634, -0.04061469808220863, -0.009227154776453972, -0.03500254079699516, -0.0011116231326013803, -0.03963864967226982, -0.024861693382263184, 0.02165801078081131, -0.033974405378103256, -0.029179442673921585, 0.04943152144551277, 0.029386481270194054, 0.07482926547527313, -0.055587880313396454, 0.016419237479567528, 0.0070847198367118835, 0.02211233414709568, 0.03151863440871239, -0.05155123025178909, -0.03041079454123974, 0.014131021685898304, -0.04365096241235733, 0.037858858704566956, 0.013711441308259964, -0.03623964264988899, 0.01272229477763176, -0.021166715770959854, -0.003355981782078743, -0.014593014493584633, 0.0037153074517846107, -0.005673496518284082, 0.007658159360289574, -0.018328217789530754, -0.0035951482132077217, -0.026547672227025032, 0.008206628262996674, 0.011460775509476662, -0.07475632429122925, -0.024880044162273407, -0.019144058227539062, -0.011018767952919006, -0.014090696349740028, -0.009870103560388088, -0.008259235881268978, 0.012972163036465645, -0.0035441049840301275, 0.007126441691070795, -0.0695994421839714, 0.04433564841747284, 0.019012611359357834, -0.06723849475383759, 0.004146298859268427, 0.015950076282024384, 0.028666555881500244, 0.014415738172829151, -0.03529942408204079, 0.05881182849407196, 0.005404510069638491, -0.0017766362288966775, 0.0031918566673994064, 0.05151990428566933, -0.01100003719329834, -0.06699114292860031, -0.019004246219992638, 0.05754775181412697, 0.018686143681406975, 0.015674514696002007, 0.0014803559752181172, -0.028164831921458244, -0.015092114917933941, -0.0039823646657168865, 0.04989052191376686, 0.0036294220481067896, -0.005231581628322601, -0.03207852691411972, 0.019267315044999123, 0.00897177867591381, 0.03154914081096649, 0.01179566327482462, 0.00021617586025968194, -0.0641775131225586, -0.019595200195908546, 0.006032421253621578, -0.002150187501683831, 0.04587773606181145, 0.09709200263023376, -0.03810365870594978, -0.015244782902300358, 0.05985378101468086, 0.08471143245697021, 0.042017992585897446, -0.01967563107609749, 0.01081874780356884, 0.02863173931837082, 0.030066508799791336, 0.0022637767251580954, 0.051897499710321426, -0.00456695631146431, -0.0047347694635391235, -0.010272892192006111, 0.08356048166751862, 0.031137660145759583, 0.0075820442289114, -0.0355500690639019, -0.03457052260637283, 0.07387503236532211, -0.011497130617499352, -0.01284074503928423, 0.04502283036708832, 0.053712453693151474, 0.024995002895593643, 0.028521502390503883, -0.00046411374933086336, -0.07670196145772934, 0.04759589210152626, -0.006399129051715136, 0.020657824352383614, 0.03907201811671257, -0.009725368581712246, 0.05210699513554573, 0.025791898369789124, -0.005451287608593702, 0.0541672557592392, -0.052424799650907516, -0.07418185472488403, -0.04653913900256157, -0.002999953692778945, 0.04410197585821152, -0.0310564823448658, 0.00414219731464982, 0.09862946718931198, 0.006861977279186249, 0.04867370426654816, 0.006733308080583811, 0.021802803501486778, 0.03877677023410797, -0.06370007991790771, -0.08754166215658188, 0.039055995643138885, 0.009705346077680588, 0.0017360667698085308, -0.04706849902868271, 0.009849542751908302, -0.02466118521988392, -0.02303946204483509, 0.01288920920342207, -0.04743819683790207, 0.017285611480474472, 0.00390777550637722, 0.016489222645759583, -0.026136279106140137, 0.03952239081263542, -0.0354401059448719, 0.03739539906382561, 0.014546849764883518, -0.009929537773132324, 0.021041816100478172, -0.0062122405506670475, 0.1350923329591751, 0.047680508345365524, -0.011282764375209808, -0.04264037683606148, 0.049039725214242935, 0.007961119525134563, -0.049903754144907, 0.010026415809988976, -0.02564912848174572, 0.005354928784072399, 0.013988527469336987, -0.0637027695775032, -0.042550232261419296, -0.00489046610891819, -0.04146614298224449, -0.002382934093475342, 0.08850919455289841, 0.007617119699716568, 0.04094336926937103, 0.0027998797595500946, -0.011815996840596199, 0.008666055276989937, -0.07425841689109802, -0.037278175354003906, 0.01143660955131054, 0.017905130982398987, -0.022821297869086266, 0.0365128368139267, -0.017138205468654633, -0.015540719963610172, -0.03822014853358269, -0.014826847240328789, 0.046626750379800797, 0.03733282908797264, 0.051381126046180725, -0.00827860925346613, 0.04586731269955635, -0.02625443786382675, 0.0043705604039132595, -0.020730383694171906, -0.06518641859292984, -0.030760761350393295, 0.0048341392539441586, 0.027031544595956802, -0.007154887076467276, 0.03721713647246361, -0.003926950506865978, 0.006066048052161932, -0.009569196961820126, 0.007883737795054913, -0.0291878804564476, 0.029294924810528755, 0.016853144392371178, 0.00204375758767128, -0.027051705867052078, -0.027818774804472923, 0.030841683968901634, -0.03680266812443733, -0.02943114936351776, 0.007574956398457289, -0.07286634296178818, 0.018140647560358047, -0.09206020832061768, -0.03306880593299866, -0.028088659048080444, 0.027523141354322433, -0.008331344462931156, 0.03020426630973816, 0.014311308041214943, 0.07942362129688263, 0.02082669921219349, 0.0034613306634128094, 0.037780582904815674, 0.011839722283184528, 0.01083773747086525, 0.004411456175148487, 0.016204416751861572, -0.016998978331685066, -0.019539305940270424, -0.02081371285021305, -0.052811555564403534, 0.01962874084711075, -0.026477903127670288, -0.2673443853855133, 0.03215668350458145, 0.006986803375184536, -0.047647733241319656, 0.008042500354349613, -0.01624593324959278, 0.03302815556526184, -0.035183269530534744, -0.04467705637216568, 0.018799038603901863, -0.017112817615270615, -0.0703665018081665, 0.018954137340188026, 0.011396713554859161, -0.019516758620738983, 0.01810184307396412, 0.00405276520177722, -0.056554246693849564, 0.010988971218466759, 0.01574571058154106, 0.014038227498531342, -0.051910046488046646, 0.022348511964082718, 0.040639761835336685, 0.012264431454241276, 0.04631327465176582, -0.03684835508465767, 0.042892228811979294, -0.04990323260426521, -0.0028531174175441265, -0.0002796499466057867, 0.000795823463704437, 0.02564169093966484, -0.012498813681304455, -0.043079763650894165, -0.042827773839235306, 0.05648171901702881, -0.00454024039208889, 0.017381969839334488, 0.016802627593278885, -0.061464905738830566, -0.0028905989602208138, 0.0002232838305644691, 0.00794845912605524, 0.06809955090284348, -0.01730155572295189, -0.06870583444833755, 0.005109995603561401, -0.017763597890734673, 0.07684843242168427, -0.027976874262094498, -0.005962497554719448, 0.004675129894167185, 0.025577737018465996, -0.05390458554029465, -0.030995121225714684, -0.025463927537202835, -0.009863209910690784, -0.05262056738138199, -0.023937717080116272, -0.005458877421915531, -0.015201487578451633, -0.011918577365577221, -0.04526503384113312, 0.033793915063142776, -0.03366446867585182, -0.0752556100487709, -0.03194088488817215, 0.07513773441314697, 0.018483620136976242, -0.042097825556993484, -0.0023296906147152185, -0.024562988430261612, -0.10570093244314194, -0.01689726673066616, -0.03453785553574562, -0.0535154864192009, 0.012190628796815872, -0.009983006864786148, 0.030645832419395447, -0.03446199372410774, -0.03139590844511986, -0.007598730269819498, 0.042009323835372925, 0.02380872331559658, -0.01879708282649517, 0.017562417313456535, -0.005940556991845369, -0.014768476597964764, -0.003704771865159273, 0.06268403679132462, -0.018815016373991966, -0.02127097360789776, -0.049609988927841187, -0.007937763817608356, -0.006686981767416, -0.010884146206080914, 0.012526248581707478, 0.029127754271030426, 0.04112580791115761, 0.02579537406563759, -0.05515917018055916, 0.003760548308491707, -0.02683025598526001, -0.0003947679069824517, 0.02529533952474594, -0.044003669172525406, 0.028262682259082794, 0.010942665860056877, 0.013367627747356892, -0.023647025227546692, -0.049729619175195694, 0.0008127494365908206, -0.047487955540418625, -0.043391525745391846, 0.0022912321146577597, 0.018195612356066704, 0.008160681463778019, 0.033278968185186386, -0.021042676642537117, -0.03500927984714508, 0.017681974917650223, 0.07121963798999786, -0.01579609140753746, -0.05451149120926857, -0.008608673699200153, -0.003929860889911652, -0.0018452956574037671, 0.04274551197886467, 0.011540125124156475, -0.013133155182003975, 0.020753080025315285, 0.05223383009433746, -0.051190335303545, 0.014715485274791718, 0.022324305027723312, -0.04054425656795502, -0.022588107734918594, 0.011472569778561592, 0.018521739169955254, -0.0391673818230629, 0.017158804461359978, 0.006400507874786854, 0.043202437460422516, 0.052106279879808426, 0.02049003168940544, 0.03391583263874054, -0.013300443068146706, -0.003381334478035569, -0.00022281543351709843, 0.007003748789429665, -0.05902160704135895, 0.0327749028801918, -0.011422952637076378, -0.014465754851698875, 0.0014332362916320562, 0.027540283277630806, -0.007164389360696077, -0.05199644714593887, -0.017163801938295364, 0.03222380951046944, -0.07845398038625717, 0.005092646926641464, 0.008449220098555088, 0.019175976514816284, 0.05772944539785385, -0.02619084343314171, -0.004406304564327002, -0.02012227289378643, -0.026995284482836723, 0.02066437155008316, 0.0366659052670002, -0.03426777571439743, 0.032351698726415634, 0.008561117574572563, 0.014023804105818272, -0.023296808823943138, 0.026452435180544853, 0.05787815898656845, 0.0141669362783432, 0.021418236196041107, 0.00421929731965065, 0.03220390900969505, 0.0279401745647192, 0.05228659510612488, 0.014117622748017311, -0.016858519986271858, 0.0065162633545696735, -0.004768409300595522, -0.002534120110794902, -0.008612058125436306, 0.014609863981604576, -0.051075808703899384, 0.014374823309481144, -0.02798554114997387, -0.050728604197502136, 0.0198117196559906, 0.01245125662535429, -0.001422054716385901, 0.021258767694234848, -0.0008610907825641334, -0.007900040596723557, -0.023847302421927452, 0.03891174867749214, 0.03276516869664192, -0.03389660269021988, 0.0038723659235984087, 0.03119538724422455, 0.011787657625973225, 0.02948293648660183, 0.0008568001794628799, -0.04375309869647026, -0.014110811054706573, -0.011521691456437111, 0.03575574979186058, -0.05963805317878723, -0.05501306429505348, -0.007702487055212259, -0.0047469171695411205, -0.008871262893080711, 0.032123055309057236, -0.007277143187820911, 0.012975525110960007, -0.0244792178273201, -0.0500638447701931, 0.014838620088994503, -0.008337708190083504, 0.009030469693243504, -0.014031568542122841, -0.01866528019309044, 0.002279881853610277, -0.022894829511642456, 0.04300600290298462, 0.002322825836017728, -0.015488095581531525, -0.01823742501437664, -0.050898246467113495, 0.0025503477081656456, -0.027978241443634033, 0.07334096729755402, -0.002619110979139805, -0.01903061382472515, -0.052689239382743835, -0.005006086081266403, -0.0331328809261322, -0.0007633984787389636, -0.008051901124417782, -0.02527252770960331, 0.027176039293408394, 0.01234729215502739, -0.006300161127001047, 0.018398484215140343, -0.020435310900211334, -0.01262669637799263, 0.05829464644193649, -0.06990117579698563, -0.02953396737575531, 0.023779725655913353, -0.029598988592624664, 0.02945036254823208, 0.009979983791708946, -0.00356002664193511, -0.07213112711906433, 0.024372205138206482, 0.05695163086056709, 0.002379003679379821, 0.025578513741493225, -0.012142855674028397, 0.02179194614291191, -0.025391291826963425, -0.020840508863329887, -0.10045120865106583, 0.03859959915280342, 0.00887663196772337, 0.017879314720630646, -0.03393901512026787, 0.027323763817548752, -0.02342172898352146, 0.0009785119909793139, -0.10060331970453262, -0.03745458647608757, 0.03649386391043663, 0.026379400864243507, -0.025632604956626892, -0.023075874894857407, -0.0378609336912632, 0.016021767631173134, 0.0223686583340168, -0.041132405400276184, 0.0021908923517912626, -0.018709225580096245, 0.038352444767951965, 0.0014639818109571934, 0.05735233798623085, -0.032652582973241806, -0.03108263574540615, 0.0677105039358139, 0.017509333789348602, 0.016339315101504326, 0.05064906179904938, -0.021765263751149178, 0.029868049547076225, 0.03448406606912613, -0.02514149621129036, 0.010271068662405014, 0.00998997874557972, 0.023582858964800835, -0.05879256874322891, 0.03861391171813011, 0.0044310675002634525, -0.02835661545395851, -0.06832823157310486, 0.06745896488428116, -0.00029258051654323936, -0.04175226017832756, -0.05231934413313866, 0.06342686712741852, -0.02564648538827896, -0.04195370525121689, -0.027963683009147644, 0.01287886779755354, -0.025864776223897934, 0.046359069645404816, 0.002815220970660448, 0.006609496660530567, 0.06750097125768661, 0.014468556270003319, -0.02823585271835327, 0.024367349222302437, 0.08967112749814987, 0.10230948030948639, 0.020709173753857613, -0.0022006940562278032, 0.06998810172080994, 0.003853247733786702, -0.04830054193735123, -0.032862190157175064, -0.03836335241794586, -0.03288385644555092, 0.004150591790676117, 0.013046452775597572, 0.07241570949554443, -0.03421127423644066, 0.0752781480550766, -0.023770201951265335, 0.022459864616394043, 0.027835937216877937, 0.023787038400769234, 0.05463644862174988, 0.05291631817817688, 0.04261602461338043, 0.03933686390519142, 0.01591324806213379, -0.035509657114744186, 0.012873178347945213, 0.01902078278362751, -0.04773504659533501, -0.004746356513351202, -0.017917532473802567, -0.00024276736075989902, 0.005489420145750046, 0.023208364844322205, 0.08544918894767761, -0.031526654958724976, -0.03678768500685692, -0.0034578966442495584, 0.05275818333029747, -0.026881195604801178, 0.024362046271562576, -0.0017535854130983353, 0.005582217127084732, -0.025928065180778503, -0.035848218947649, -0.03561548516154289, -0.028046181425452232, -0.028727099299430847, 0.01307942159473896, -0.010345062240958214, -0.013625035062432289, -0.0003264963161200285, 0.007641059346497059, -0.01574348285794258, -0.04006826877593994, -0.07610095292329788, -0.04841352254152298, -0.04730360954999924, -0.034583769738674164, -0.0021296730265021324, -0.026866460219025612, -0.02217794954776764, -0.029562950134277344, -0.02300577610731125, -0.027985112741589546, 0.03989617899060249, -0.0527615062892437, -0.01926656812429428, 0.03644663840532303, 0.024342579767107964, 0.027714282274246216, 0.03726666793227196, 0.05630962923169136, -0.009503968991339207, 0.015795093029737473, -0.021604757755994797, -0.00025699796970002353, 0.05238362029194832, -0.005296830553561449, -0.029254954308271408, -0.07439669966697693, 0.0034248351585119963, 0.06677237153053284, 0.018472831696271896, -0.06503024697303772, -0.01584232784807682, 0.026615368202328682, 0.022701291367411613, 0.04225524142384529, -0.03243027254939079, -0.005641922354698181, -0.0006570982513949275, 0.005157903768122196, -0.004339525010436773, -0.011509417556226254, 0.042811501771211624, -0.024412747472524643, 0.07368262857198715, 0.06780942529439926, -0.015390546061098576, -0.025132477283477783, -0.002329351846128702, -0.02111074887216091, 0.0248669795691967, -0.03500881418585777, -0.0461968295276165, -0.04210924729704857, -0.08849559724330902, -0.05662279576063156, 0.03905788064002991, -0.022905899211764336, -0.008412878960371017, 0.012727607972919941, 0.018626688048243523, -0.03485767915844917, 0.02364381030201912, -0.028480177745223045, -0.0018578823655843735, -0.010354962199926376, -0.02347099594771862, -0.02448408305644989, 0.044074010103940964, -0.015253202058374882, -0.00035994514473713934, 0.05690830573439598, -0.012332283891737461, -0.007157903164625168, -0.004158306866884232, 0.05322801321744919, 0.03831695392727852, -0.0024130120873451233, 0.03296508640050888 ]
[ -0.06451133638620377, -0.0341869480907917, -0.04029427468776703, -0.03519609570503235, 0.062140580266714096, -0.035743679851293564, 0.00014403174282051623, 0.011529991403222084, -0.00019239801622461528, -0.017118558287620544, 0.018485188484191895, -0.0414113812148571, 0.01925772801041603, -0.03915088623762131, 0.08037912100553513, 0.0019054809818044305, -0.041046392172575, -0.1046643778681755, 0.02466282621026039, 0.0715322494506836, 0.0015468780184164643, -0.02883111499249935, -0.015339834615588188, -0.029116496443748474, 0.00720395240932703, 0.025324266403913498, 0.042393654584884644, 0.005103227216750383, 0.013110075145959854, -0.18909649550914764, 0.020868955180048943, 0.008478732779622078, -0.0032159958500415087, -0.003279288997873664, 0.0034539480693638325, 0.0036192196421325207, 0.033190496265888214, -0.050490230321884155, 0.006574826780706644, 0.052648451179265976, 0.018952008336782455, 0.008106939494609833, -0.028148509562015533, -0.024726951494812965, 0.038719046860933304, 0.014892110601067543, -0.00041132906335406005, 0.01383907999843359, -0.013943979516625404, 0.0036621829494833946, -0.04835711792111397, 0.02663414366543293, -0.00005451382457977161, -0.021459253504872322, 0.023713285103440285, 0.020502520725131035, 0.0451229102909565, 0.062143247574567795, 0.011560027487576008, 0.005667433608323336, 0.03391382843255997, -0.0020497748628258705, -0.16067391633987427, 0.09757944196462631, 0.04393412917852402, 0.048585567623376846, -0.048174258321523666, 0.009534184820950031, -0.04230041056871414, 0.047798801213502884, 0.00399000896140933, 0.004934058524668217, -0.0700221136212349, 0.053930994123220444, 0.008932188153266907, 0.015520515851676464, -0.022193051874637604, 0.04234307259321213, 0.0417092889547348, -0.04857070744037628, -0.005608041770756245, -0.020401092246174812, -0.03406321257352829, -0.0057802703231573105, -0.04860980436205864, 0.0173843614757061, -0.020140744745731354, 0.061964940279722214, -0.01780337281525135, 0.014354532584547997, -0.0048807403072714806, 0.027759499847888947, 0.023387152701616287, 0.015560217201709747, -0.07606333494186401, 0.0017500844551250339, 0.0026274919509887695, 0.0206601619720459, -0.05458939075469971, 0.4148919880390167, 0.021292254328727722, -0.046951912343502045, 0.036082543432712555, 0.018022241070866585, 0.0153656005859375, 0.010352668352425098, -0.02312253601849079, -0.026052184402942657, 0.026343410834670067, 0.001110238372348249, 0.0076304152607917786, -0.014476940035820007, 0.0601203478872776, -0.04255273565649986, 0.03406538814306259, 0.01717408001422882, 0.023549262434244156, 0.02840643748641014, 0.0004063333326485008, -0.007365257013589144, -0.04786944016814232, 0.022322384640574455, 0.004170913714915514, 0.003664335934445262, 0.03269527107477188, -0.022877858951687813, 0.041079990565776825, 0.04445569962263107, 0.009984799660742283, 0.06380727887153625, 0.02184111438691616, -0.03489462286233902, -0.043439507484436035, 0.005207468289881945, 0.001634372165426612, 0.020315250381827354, 0.01618971861898899, -0.04847005009651184, -0.03817673772573471, 0.042927321046590805, -0.0033625620417296886, -0.011162187904119492, 0.010861972346901894, 0.012715456075966358, -0.01885065995156765, 0.08250194787979126, 0.02356746420264244, -0.02288893237709999, -0.010927625000476837, -0.04325500503182411, 0.004880452528595924, 0.04281296208500862, -0.014298787340521812, -0.07250905781984329, -0.019250834360718727, 0.006173443514853716, 0.09760061651468277, -0.02641923911869526, -0.058708902448415756, -0.02376658283174038, -0.0207387525588274, -0.03288562595844269, -0.0542951337993145, 0.07095372676849365, 0.06355345994234085, -0.12306895852088928, -0.03546585515141487, 0.014935377985239029, 0.020892031490802765, -0.09060584753751755, -0.04274585470557213, 0.0051492867060005665, -0.014258574694395065, -0.0021140112075954676, 0.03564092144370079, -0.04882349446415901, -0.040855906903743744, 0.0017251212848350406, 0.009837916120886803, -0.006784423254430294, -0.03777781128883362, -0.0048751081340014935, -0.0052368114702403545, -0.0023273101542145014, -0.037753231823444366, -0.07260537147521973, -0.09126812219619751, 0.023431016132235527, -0.021820031106472015, -0.03527025505900383, -0.06586625427007675, 0.005136032588779926, -0.0884995236992836, 0.09409130364656448, -0.006214249413460493, -0.023249084129929543, 0.00330960750579834, 0.0206149872392416, 0.02447805553674698, -0.025884930044412613, 0.01629665121436119, 0.06184768304228783, -0.027503767982125282, 0.008932993747293949, -0.126163512468338, 0.012414611876010895, 0.07587157934904099, -0.05035116896033287, 0.039335042238235474, 0.04592374712228775, -0.018353905528783798, 0.014708681032061577, 0.018209097906947136, 0.0301227830350399, -0.0070653632283210754, -0.028215859085321426, 0.010810610838234425, 0.03255532681941986, 0.05266315117478371, 0.05059746652841568, -0.02529769204556942, -0.017626089975237846, -0.024862317368388176, -0.34719881415367126, -0.04009539633989334, -0.008252901956439018, -0.008351602591574192, 0.05572351813316345, -0.06216057389974594, 0.0012967032380402088, 0.00009205550304614007, 0.011091843247413635, 0.01872776262462139, 0.10144083201885223, -0.01911444403231144, 0.015038857236504555, -0.05705206096172333, -0.005031469278037548, 0.044534578919410706, -0.014479023404419422, 0.004340589977800846, -0.03131154924631119, 0.007926847785711288, -0.0007004868239164352, -0.023320181295275688, -0.05365784838795662, -0.0342230349779129, -0.012011047452688217, -0.02284538373351097, 0.12086107581853867, -0.052883367985486984, 0.08401060104370117, -0.05144965276122093, 0.058899346739053726, -0.0016726820031180978, 0.010144973173737526, -0.1064920723438263, -0.030681468546390533, -0.011641976423561573, 0.01787191815674305, 0.05692855641245842, 0.029310667887330055, 0.006755935959517956, -0.056544624269008636, -0.00215531256981194, -0.05114041268825531, -0.032986294478178024, -0.018646256998181343, 0.019426293671131134, -0.023125797510147095, -0.004230536986142397, -0.006471963133662939, 0.041068606078624725, 0.01488072145730257, 0.018903812393546104, -0.0147074731066823, 0.018905766308307648, 0.021301250904798508, -0.03165905922651291, -0.05285612493753433, -0.019132642075419426, 0.019582627341151237, 0.026197193190455437, 0.02334543876349926, 0.0566202737390995, 0.02252686396241188, -0.09385134279727936, 0.014271420426666737, 0.014368820004165173, 0.004273731727153063, 0.030649257823824883, 0.051654569804668427, 0.0012595236767083406, -0.014948796480894089, 0.11009815335273743, 0.017853811383247375, 0.02908015437424183, 0.016939053311944008, 0.0482272207736969, -0.014499812386929989, 0.023134402930736542, 0.028764633461833, -0.010226178914308548, 0.040689703077077866, -0.0637153908610344, 0.056655801832675934, -0.03374376893043518, 0.0018976081628352404, 0.04071725159883499, 0.024285422638058662, 0.0018245922401547432, 0.04047667607665062, 0.0469621978700161, -0.02154265157878399, -0.02592998743057251, -0.009867417626082897, -0.08912267535924911, 0.051448628306388855, -0.024491406977176666, -0.25844794511795044, 0.0016268091276288033, 0.04157259687781334, 0.06530912965536118, 0.010332860983908176, 0.020893823355436325, 0.049431655555963516, -0.012025213800370693, -0.02877037599682808, 0.027324965223670006, 0.025480905547738075, 0.010338791646063328, 0.0025904655922204256, -0.004094819538295269, 0.025338420644402504, -0.001090511679649353, 0.03407994657754898, 0.006939401384443045, -0.02421495132148266, -0.0038792972918599844, 0.03520936518907547, -0.019359147176146507, 0.15492485463619232, 0.007116187829524279, 0.010024950839579105, 0.038834694772958755, -0.03404005244374275, 0.059642329812049866, 0.037542253732681274, -0.007165571674704552, -0.023058071732521057, 0.015661578625440598, 0.01532879751175642, -0.027079151943325996, 0.028995610773563385, -0.05162506550550461, -0.0003678474167827517, 0.01942780800163746, 0.039248544722795486, -0.03040335699915886, -0.04317759722471237, 0.01357189193367958, -0.024883730337023735, 0.03970376029610634, 0.04390474036335945, -0.0051602511666715145, -0.029811890795826912, -0.009380697272717953, -0.008164044469594955, -0.013338368386030197, -0.0425715334713459, -0.045616503804922104, 0.028212331235408783, -0.006731089204549789, 0.01746957376599312, 0.053553882986307144, 0.010472222231328487, -0.08322979509830475, -0.04352661967277527, 0.03160311281681061, 0.006784570403397083, -0.03980614244937897, 0.10076788812875748, 0.003994245547801256, 0.0134801734238863 ]
[ 0.00945795513689518, 0.02617824636399746, 0.015445791184902191, 0.0026553859934210777, 0.04306283965706825, 0.012239616364240646, 0.0041138045489788055, 0.009110021404922009, -0.02828856185078621, -0.002465300029143691, -0.007553911302238703, 0.009924124926328659, -0.014994080178439617, 0.006647969596087933, 0.01740802265703678, 0.015611905604600906, -0.0008048966992646456, 0.026397524401545525, 0.03588844835758209, -0.018492160364985466, -0.033524613827466965, 0.030820637941360474, 0.041724588721990585, -0.024133410304784775, -0.008346476592123508, 0.029751917347311974, -0.01649857871234417, 0.02033633552491665, 0.03812846168875694, -0.16662399470806122, -0.030686702579259872, -0.03175431862473488, -0.02905786968767643, 0.0452398844063282, -0.02362934872508049, -0.034476134926080704, 0.0007398054003715515, 0.008149058558046818, -0.019999060779809952, 0.02806040085852146, 0.05714675039052963, -0.010922166518867016, 0.018023479729890823, -0.0031440393067896366, 0.007731393910944462, 0.01479009073227644, -0.013968728482723236, 0.012944856658577919, 0.035180673003196716, -0.03480616211891174, -0.026459889486432076, -0.006232036277651787, 0.0026867787819355726, 0.010828874073922634, 0.039768315851688385, -0.012610876001417637, 0.00018660430214367807, -0.03252796456217766, -0.020656783133745193, -0.008202577009797096, 0.03369215875864029, 0.025980234146118164, -0.026611538603901863, -0.007161763962358236, -0.032632261514663696, -0.015872467309236526, 0.0005745859234593809, -0.0034403225872665644, -0.007489513140171766, -0.009658856317400932, 0.0006742720142938197, 0.06789085268974304, -0.041609473526477814, 0.005866229999810457, -0.025394929572939873, 0.017638346180319786, 0.019083768129348755, 0.0031182528473436832, 0.005413588136434555, 0.03393254801630974, -0.005000003147870302, 0.007435399107635021, 0.01686168648302555, 0.008854643441736698, -0.04400193318724632, -0.0438186414539814, 0.00798051431775093, -0.006282611284404993, 0.019007446244359016, -0.011143418028950691, -0.04867461323738098, 0.0016133232275024056, -0.008177528157830238, 0.03209472447633743, -0.09691513329744339, -0.00792450737208128, 0.010601682588458061, -0.028072036802768707, -0.028807418420910835, 0.8145508170127869, -0.006063372828066349, -0.007635824382305145, 0.017482642084360123, 0.001548500033095479, 0.02589712105691433, 0.013787233270704746, 0.024586748331785202, -0.010958520695567131, 0.0036854567006230354, -0.023997727781534195, 0.0012192931026220322, 0.013019174337387085, -0.00822568777948618, 0.001587991719134152, 0.006182312965393066, -0.010638092644512653, 0.05231164023280144, 0.014896349050104618, -0.017220228910446167, -0.010292996652424335, 0.002846557181328535, 0.013819223269820213, 0.0207553468644619, -0.008246765471994877, -0.04703962802886963, -0.18659764528274536, 0.015632087364792824, -8.369419126150898e-33, 0.011146198026835918, -0.003183544846251607, -0.021692272275686264, 0.014223137870430946, 0.04741554707288742, -0.02628200314939022, 0.029066719114780426, 0.02244352549314499, -0.030937761068344116, -0.04816323146224022, -0.0001332946412730962, -0.022349270060658455, 0.028452396392822266, 0.02017238363623619, 0.02604350447654724, -0.01213808637112379, -0.005106204655021429, 0.058735668659210205, 0.0220915786921978, 0.02932841144502163, 0.0112299844622612, -0.010592414997518063, 0.00380975310690701, 0.03176295384764671, 0.02838113345205784, 0.008027426898479462, -0.019832681864500046, -0.0075199417769908905, -0.002801849041134119, -0.057434868067502975, 0.016935424879193306, 0.06359660625457764, -0.00554109551012516, -0.046384554356336594, 0.038568418473005295, -0.04231181740760803, 0.019025718793272972, -0.0032359950710088015, -0.014842717908322811, -0.044518277049064636, -0.02903924509882927, -0.015458722598850727, -0.039747048169374466, -0.009202687069773674, -0.017007427290081978, -0.0158719290047884, -0.005445590242743492, 0.04569890722632408, 0.014725524000823498, -0.006614618469029665, -0.01394492294639349, 0.015277698636054993, -0.02734551578760147, 0.03536912798881531, 0.018800480291247368, 0.006051165517419577, 0.039336688816547394, 0.031217707321047783, -0.001363869640044868, 0.0025930844713002443, 0.004164937883615494, -0.014137855730950832, -0.029425349086523056, 0.028538227081298828, -0.007575730327516794, 0.0060183387249708176, 0.024386385455727577, -0.014562616124749184, 0.02458149380981922, 0.0033567899372428656, -0.0594930425286293, 0.004228544887155294, -0.02938310243189335, 0.0025690742768347263, 0.02939734421670437, -0.0017666936619207263, -0.013338248245418072, -0.021382706239819527, -0.010780803859233856, 0.047519002109766006, 0.02316713146865368, 0.044951196759939194, -0.026269927620887756, 0.00624889275059104, -0.013463134877383709, -0.03913075476884842, 0.02214650809764862, 0.025201676413416862, 0.01829112507402897, 0.025867871940135956, 0.022752435877919197, 0.01457290444523096, 0.008646510541439056, -0.04140718653798103, -0.030470825731754303, 8.434485677204789e-33, -0.021356355398893356, 0.023286759853363037, -0.09388730674982071, -0.0152554577216506, -0.016342222690582275, -0.053367357701063156, 0.08638705313205719, 0.04128435626626015, -0.011961815878748894, 0.01807071641087532, -0.006155073642730713, -0.005531172268092632, 0.016214732080698013, 0.025063345208764076, 0.034438714385032654, -0.03305695578455925, -0.024847228080034256, 0.0017182861920446157, 0.007269064895808697, 0.023476405069231987, -0.021829688921570778, 0.04590916261076927, -0.0036022192798554897, -0.013137130066752434, 0.04646828770637512, 0.05962467938661575, 0.0027492521330714226, 0.021327389404177666, -0.05692401900887489, -0.011926508508622646, -0.016567504033446312, 0.005596434697508812, 0.003258573589846492, -0.027209484949707985, -0.0216328464448452, 0.02737323008477688, 0.020465876907110214, 0.01916654407978058, 0.030264759436249733, -0.013832765631377697, 0.032664697617292404, 0.013625121675431728, -0.054509229958057404, -0.022080618888139725, 0.005103711038827896, 0.034554608166217804, 0.003905984340235591, -0.02165791764855385, -0.0364006869494915, 0.010667075403034687, -0.0074225738644599915, 0.015418910421431065, 0.009846165776252747, 0.00886273942887783, 0.00848325528204441, -0.007768287789076567, -0.05573282018303871, 0.025239503011107445, 0.03129051625728607, 0.01745932176709175, 0.004466900136321783, -0.04377375543117523, -0.05440644919872284, 0.03243342414498329, -0.041546352207660675, -0.006797370966523886, -0.01391544844955206, -0.03838326781988144, 0.032479748129844666, -0.03486967831850052, -0.021176600828766823, 0.014414381235837936, 0.02263261005282402, 0.07385454326868057, -0.0007290092180483043, -0.005229967646300793, 0.022066030651330948, 0.00012772373156622052, -0.016458092257380486, 0.03425317257642746, -0.02624538354575634, 0.013350051827728748, -0.01867527887225151, -0.022906534373760223, 0.027986489236354828, 0.015470489859580994, -0.04227051883935928, 0.009822417981922626, -0.016355110332369804, -0.010375800542533398, -0.022311806678771973, -0.009874265640974045, -0.040922194719314575, 0.0038903760723769665, -0.009815654717385769, -1.3393766984393096e-8, -0.006818902213126421, 0.026018042117357254, 0.03071892261505127, 0.03407469764351845, 0.02138584479689598, 0.019349975511431694, -0.012695292942225933, -0.03750377148389816, 0.016599003225564957, 0.011673225089907646, 0.015668492764234543, 0.01913338527083397, -0.012234390713274479, 0.021775102242827415, 0.00751445721834898, -0.0032208608463406563, -0.007932172156870365, -0.011035316623747349, 0.034053653478622437, -0.009370003826916218, 0.020677674561738968, 0.04394427686929703, -0.020161770284175873, 0.01405461598187685, -0.008894547820091248, 0.01564428023993969, 0.02600294165313244, -0.09148304164409637, -0.01626557484269142, -0.011134980246424675, 0.016214368864893913, -0.012702199630439281, -0.01304133702069521, 0.04095454886555672, -0.019100230187177658, -0.010147872380912304, -0.02949032373726368, 0.04412631690502167, 0.0328378789126873, 0.007445224095135927, -0.0210285484790802, -0.0073431311175227165, -0.03257949277758598, -0.028680501505732536, -0.013567053712904453, -0.010154523886740208, -0.02880433388054371, 0.027690188959240913, 0.008616076782345772, -0.04914280027151108, 0.02139175310730934, 0.0021896022371947765, 0.007311007007956505, 0.007402526214718819, 0.02416645549237728, -0.03202155604958534, 0.005294543690979481, -0.04943738132715225, -0.05816696584224701, 0.012495226226747036, -0.004618166014552116, 0.04361656308174133, -0.02990642562508583, -0.026532433927059174 ]
network-address-translation
https://markhneedham.com/blog/2012/09/23/network-address-translation
false
2012-09-23 10:29:10
neo4j: The Batch Inserter and the sunk cost fallacy
[ "neo4j" ]
[ "neo4j" ]
About a year and a half ago http://www.markhneedham.com/blog/2011/04/17/the-sunk-cost-fallacy/[I wrote about the sunk cost fallacy] which is defined like so: ____ *The Misconception*: You make rational decisions based on the future value of objects, investments and experiences. *The Truth*: Your decisions are tainted by the emotional investments you accumulate, and the more you invest in something the harder it becomes to abandon it. ____ Over the past few weeks https://twitter.com/A5HOK[Ashok] and I have been doing some exploration of one of our client's data by modelling it in a neo4j graph and seeing what interesting things the traversals reveal. We needed to import around 800,000 nodes with ~ 2 million relationships and because I find that the feedback loop in Ruby is much quicker than Java I suggested that we write the data loading code using the https://github.com/andreasronge/neo4j[neo4j.rb] gem. Initially we just loaded a small subset of the data so that we could get a rough feel for it and check that we were creating relationships between nodes that actually made sense. It took a couple of minutes to load everything but that was quick enough. Eventually, however, we wanted to load the full data set and realised that this approach wasn't really going to scale very well. The first version created every node/relationship within its own transaction and took around an hour to load everything. To speed that up we batched up the nodes and only committed a transaction every 10,000 nodes which took the time down to around 20 minutes which was not bad but not amazing. At one stage Ashok suggested we should try out the http://docs.neo4j.org/chunked/stable/batchinsert.html[batch inserter API] but having spent quite a few hours getting the Ruby version into shape *I really didn't want to let it go* - the sunk cost fallacy in full flow! A couple of days later we got some new data to load on top of the initial graph and Ashok suggested we use the batch inserter just for that bit of data. Since that didn't involve deleting any of the code we'd already written I was more keen to try that out. This time we were adding around 200 nodes but another 1 million relationships to the existing nodes and the end to end time for this bit of code to run was 24 seconds. Having finally been convinced that the batcher inserter was way better than anything else I spent a couple of hours earlier this week moving all our Ruby code over and it now takes just under 2 minutes to load the whole graph. To learn how to write code for the batcher inserter we followed the examples from https://github.com/neo4j/community/blob/1.7.2/kernel/src/test/java/examples/BatchInsertExampleTest.java[BatchInsertExampleTest] which covered everything that we wanted to do. Hopefully the next time I come across such a situation I'll be better able to judge when I'm holding onto something even when I should just let go!
null
null
[ 0.007238985970616341, -0.004126543179154396, -0.002263311529532075, 0.057139135897159576, 0.08942488580942154, 0.03339531272649765, 0.03009972535073757, 0.04450661689043045, 0.020535465329885483, -0.012058603577315807, -0.012099788524210453, 0.005594754125922918, -0.062156934291124344, 0.016307052224874496, -0.020300015807151794, 0.05544576421380043, 0.06189722195267677, -0.002919744001701474, 0.021305229514837265, -0.006280212197452784, 0.027729645371437073, 0.07011907547712326, 0.00007019574695732445, 0.04941430315375328, 0.04245568439364433, -0.0011245631612837315, 0.0025665860157459974, -0.014484028331935406, -0.05224303528666496, -0.00886266864836216, 0.04665971174836159, 0.0033288963604718447, 0.01379330176860094, 0.008982120081782341, 0.020052777603268623, -0.0035792829003185034, -0.034934546798467636, 0.01798303611576557, -0.01831408403813839, 0.016893574967980385, -0.08536157011985779, 0.061136338859796524, -0.0021954327821731567, 0.03446248173713684, -0.04560781642794609, -0.009267290122807026, -0.0717078298330307, 0.020871460437774658, -0.0029529768507927656, 0.0022311313077807426, -0.07826102524995804, 0.02084016241133213, 0.001457741018384695, -0.008903887122869492, -0.03305785357952118, 0.05054613947868347, 0.023654168471693993, -0.06162486597895622, 0.03663179278373718, -0.03684721887111664, 0.015845751389861107, 0.0025545686949044466, -0.0007816915749572217, -0.0008823007810860872, 0.013753136619925499, -0.04469463601708412, 0.022534817457199097, 0.05289669334888458, -0.03526037558913231, 0.0038082583341747522, -0.010773556306958199, 0.008800584822893143, -0.029901709407567978, -0.006054531782865524, -0.020063262432813644, -0.056615691632032394, -0.007762000896036625, 0.05005105212330818, 0.0413842499256134, 0.03954419121146202, -0.027346545830368996, 0.02464728057384491, 0.008278138004243374, 0.02514633908867836, 0.0175678338855505, -0.04130934178829193, 0.00534434150904417, -0.03435952588915825, -0.08310260623693466, 0.05196541175246239, 0.02055673860013485, -0.04275622218847275, 0.02288418635725975, 0.021734219044446945, -0.02736399509012699, 0.014947356656193733, 0.022685635834932327, 0.015058156102895737, 0.001800303696654737, -0.025103779509663582, -0.053591061383485794, -0.025493545457720757, -0.020917106419801712, 0.007956977002322674, -0.05407050997018814, -0.019865911453962326, -0.03936869278550148, -0.013224868103861809, 0.002126500243321061, -0.008377359248697758, -0.04176962748169899, 0.02165375091135502, -0.023368151858448982, 0.015406358055770397, -0.06725815683603287, 0.0525207594037056, 0.011308547109365463, -0.04497098550200462, -0.03987772762775421, 0.004481627605855465, 0.053328145295381546, 0.0343107134103775, -0.006956852972507477, 0.06847614794969559, -0.009944785386323929, 0.020352695137262344, 0.0060294927097857, 0.033275555819272995, -0.01454086136072874, -0.05508584901690483, -0.0033331168815493584, 0.05261217802762985, -0.047632403671741486, -0.007195456884801388, -0.004210000392049551, -0.02657323330640793, -0.00044682275620289147, 0.03133205696940422, 0.05721725896000862, 0.02104094810783863, 0.01268337294459343, -0.047543905675411224, 0.034417830407619476, 0.025959018617868423, 0.023321691900491714, -0.0032316355500370264, 0.009528659284114838, -0.027645541355013847, -0.048583392053842545, -0.025875357910990715, -0.0022612500470131636, 0.0331476554274559, 0.015664948150515556, -0.024720678105950356, 0.02832498960196972, 0.09975177049636841, 0.012140048667788506, 0.002117969561368227, -0.0131518030539155, 0.061968035995960236, 0.03792693093419075, 0.027965694665908813, 0.02275063470005989, 0.025931399315595627, 0.021968219429254532, -0.05217723548412323, 0.01310456357896328, 0.04839178919792175, -0.04176056385040283, 0.03423352912068367, -0.03193572536110878, -0.05379391089081764, 0.06324399262666702, -0.05079333856701851, -0.022316018119454384, 0.04095509648323059, 0.06237278878688812, 0.028845829889178276, 0.031452588737010956, -0.006131982896476984, -0.07330188900232315, 0.05530792847275734, 0.02453531138598919, 0.027100251987576485, -0.011653930880129337, -0.012922719120979309, 0.06328162550926208, 0.012590412981808186, 0.014655735343694687, 0.04056746885180473, -0.07660598307847977, -0.07343120872974396, -0.006094313692301512, -0.023946456611156464, 0.060916222631931305, -0.015163829550147057, 0.01078760251402855, 0.056260161101818085, 0.008216960355639458, 0.05627337843179703, 0.0197726059705019, 0.010422891937196255, 0.013087955303490162, -0.04539094492793083, -0.029057424515485764, 0.05260705575346947, 0.03763960301876068, -0.03338834270834923, -0.0645112544298172, 0.026896122843027115, -0.028233176097273827, -0.017233744263648987, 0.033101871609687805, -0.03662992641329765, 0.02292250096797943, 0.016488268971443176, 0.031151141971349716, -0.009447985328733921, 0.02382647432386875, -0.04227717965841293, 0.002106212079524994, 0.013630827888846397, -0.0115582887083292, 0.0006765603902749717, 0.0021661848295480013, 0.100986547768116, 0.052702631801366806, -0.038626961410045624, -0.03874416649341583, 0.020642459392547607, 0.008185031823813915, -0.03125298023223877, -0.010450719855725765, -0.026455959305167198, 0.010767913423478603, 0.0020881020464003086, -0.06934990733861923, -0.03946791589260101, 0.004132507368922234, -0.022794391959905624, 0.003361692652106285, 0.032325007021427155, -0.020039794966578484, 0.054902251809835434, 0.008584131486713886, -0.0017074637580662966, -0.027043834328651428, -0.036081328988075256, -0.07909335196018219, 0.03082122653722763, 0.005063004791736603, -0.0016209227032959461, 0.05159243568778038, -0.002101187827065587, -0.01646435260772705, -0.03149298578500748, -0.02796914242208004, 0.0188625268638134, 0.02467138133943081, 0.07864666730165482, 0.00867561437189579, 0.06885775923728943, -0.022979559376835823, 0.018238835036754608, 0.001913428190164268, -0.05894957110285759, -0.051989663392305374, -0.02420000359416008, 0.02874259278178215, 0.015856053680181503, 0.014085845090448856, -0.021010350435972214, 0.030612334609031677, 0.04035968706011772, 0.011385442689061165, -0.03943631425499916, 0.035756949335336685, 0.015454334206879139, -0.025060737505555153, -0.019606830552220345, -0.044020216912031174, 0.054441630840301514, -0.04563063010573387, 0.014184589497745037, 0.021153030917048454, -0.06978745013475418, 0.06793411076068878, -0.036231011152267456, -0.013130832463502884, 0.011054462753236294, 0.02892640419304371, 0.041407182812690735, 0.01628784090280533, -0.0023264610208570957, 0.07903283089399338, 0.01559099368751049, 0.012463103979825974, -0.014997152611613274, -0.010673160664737225, 0.05027739703655243, 0.005377719644457102, 0.009175186976790428, 0.02522754855453968, 0.0018240673234686255, 0.011505273170769215, -0.012706532143056393, 0.024020731449127197, -0.001205599051900208, -0.2932240068912506, 0.0544353723526001, -0.0009253574535250664, -0.05335194244980812, 0.0033265408128499985, -0.028508104383945465, 0.013494945131242275, -0.02187243290245533, -0.02081185393035412, 0.016429737210273743, -0.023978713899850845, -0.047342393547296524, -0.020611723884940147, 0.0383145734667778, 0.020004063844680786, 0.008796442300081253, 0.031801581382751465, -0.04404236376285553, -0.010563242249190807, 0.04189584031701088, -0.02258635312318802, -0.061016496270895004, -0.020071394741535187, 0.03992529585957527, 0.030842667445540428, 0.06372764706611633, -0.07868897914886475, 0.019166789948940277, -0.0618881955742836, -0.01075129397213459, -0.005285981576889753, -0.010696480050683022, 0.020221995189785957, -0.008694227784872055, -0.0013287428300827742, -0.0164813082665205, 0.03562716022133827, 0.0179207231849432, -0.00625087833032012, 0.010631101205945015, -0.01048040110617876, -0.026806510984897614, -0.022744325920939445, 0.02398313395678997, 0.08493661880493164, 0.0066527207382023335, -0.08821015059947968, 0.007790864910930395, -0.006582062691450119, 0.05775982886552811, -0.01785617135465145, -0.03638358786702156, -0.031493186950683594, 0.01742691732943058, -0.007061681244522333, -0.03875718638300896, -0.011946612037718296, -0.010384387336671352, -0.028521135449409485, -0.028541075065732002, -0.007127199321985245, -0.02011527307331562, 0.011736143380403519, -0.019276276230812073, -0.02586074359714985, -0.042284850031137466, -0.07144206762313843, -0.013641668483614922, 0.07199841737747192, 0.02177744172513485, -0.02883683331310749, 0.03609805554151535, 0.011208897456526756, -0.10783448815345764, -0.024725785478949547, -0.013787688687443733, -0.022390494123101234, 0.009403440169990063, -0.015561236999928951, 0.054785147309303284, -0.0284567903727293, -0.061577603220939636, 0.020740119740366936, -0.0047515868209302425, 0.027422957122325897, -0.02206987701356411, 0.01780926063656807, 0.02092706225812435, -0.02992958202958107, 0.026896389201283455, 0.05345737934112549, 0.011957206763327122, -0.03367343172430992, -0.015691326931118965, 0.008226343430578709, 0.041263479739427567, 0.00931510142982006, -0.009067672304809093, 0.009104768745601177, 0.031082147732377052, 0.02734718844294548, -0.05084545537829399, 0.03036653622984886, -0.023123400285840034, -0.0415518581867218, -0.040222592651844025, -0.03985781595110893, 0.02151714265346527, 0.01650024577975273, 0.041964609175920486, -0.0014781795907765627, -0.017668742686510086, 0.017716387286782265, -0.047531407326459885, -0.03280685096979141, -0.008617173880338669, -0.02310527302324772, 0.02711636945605278, 0.005148705095052719, -0.0020879912190139294, -0.05932867154479027, 0.017731044441461563, 0.019247418269515038, -0.012063502334058285, -0.05519920587539673, -0.02219744399189949, -0.023875093087553978, -0.026977648958563805, 0.0021913363598287106, 0.008171042427420616, 0.012457700446248055, 0.030283529311418533, 0.017177753150463104, -0.02399134635925293, 0.02181169204413891, -0.041020654141902924, -0.041550163179636, -0.04175259917974472, 0.01943744532763958, -0.012030712328851223, 0.005443239118903875, -0.014049269258975983, 0.006910907104611397, 0.039428092539310455, 0.029591862112283707, 0.016569679602980614, 0.025171153247356415, -0.004919667262583971, 0.04997726529836655, -0.005530625581741333, -0.0029558141250163317, -0.06740731000900269, 0.011009271256625652, -0.04926205798983574, -0.018889036029577255, -0.027194781228899956, 0.02958165854215622, -0.029592333361506462, -0.03570946305990219, -0.017756743356585503, 0.000915088108740747, -0.06135159358382225, -0.030597472563385963, -0.029142649844288826, 0.012211587280035019, 0.061265166848897934, -0.023684652522206306, 0.012016513384878635, -0.004609851166605949, -0.017325082793831825, 0.006121532525867224, 0.015283617191016674, -0.050099991261959076, -0.005899002309888601, 0.02828592248260975, 0.0031627241987735033, -0.001227458124049008, -0.012685663066804409, 0.0353979729115963, 0.022937560454010963, -0.02987835742533207, -0.03014143742620945, 0.01412129681557417, -0.002724812366068363, 0.0595795214176178, 0.045165788382291794, -0.006424968130886555, 0.02525392919778824, -0.01896359957754612, -0.00025929114781320095, -0.053171709179878235, -0.01548829022794962, 0.005464845336973667, 0.024725517258048058, -0.021913940086960793, -0.06609618663787842, 0.06854001432657242, 0.021838132292032242, 0.006402983330190182, 0.025087151676416397, 0.014966461807489395, -0.018312867730855942, -0.0295887291431427, 0.02999892830848694, 0.0779925063252449, -0.05539065971970558, -0.029189210385084152, 0.007116088178008795, 0.017492348328232765, 0.02547144517302513, 0.00775145273655653, -0.048238255083560944, -0.04262717440724373, -0.03267066180706024, 0.0331517718732357, -0.04100876301527023, -0.04421777278184891, -0.04255934804677963, 0.003520895726978779, 0.0018724402179941535, -0.01980346441268921, 0.0005733334110118449, -0.009605472907423973, -0.013769981451332569, -0.03175294026732445, 0.019503096118569374, -0.021365810185670853, -0.008717467077076435, -0.009258679114282131, -0.030884571373462677, -0.003893947694450617, -0.006048607174307108, 0.020071109756827354, 0.014016496017575264, -0.01927596889436245, 0.01946132816374302, -0.011522278189659119, 0.03657570853829384, -0.017094328999519348, 0.028089191764593124, -0.01593964919447899, -0.021537380293011665, -0.016991129145026207, 0.0011963648721575737, -0.036959342658519745, -0.005818095989525318, -0.01502275001257658, 0.004533714614808559, 0.024779265746474266, 0.044704094529151917, 0.012632188387215137, 0.023656189441680908, -0.023272927850484848, -0.014457747340202332, 0.04922190308570862, -0.07883855700492859, -0.024832239374518394, -0.036677055060863495, -0.04962611943483353, 0.008082321844995022, 0.017923692241311073, 0.012100149877369404, -0.03240763023495674, 0.044630154967308044, 0.03162376210093498, 0.031521111726760864, 0.054635923355817795, 0.016345063224434853, 0.04802379384636879, -0.05677786469459534, 0.01100132055580616, -0.09723640233278275, -0.01567779667675495, 0.0324569009244442, -0.001032371772453189, 0.005389423109591007, -0.01157181803137064, -0.03094513528048992, 0.0063118175603449345, -0.05541369318962097, -0.03169146552681923, 0.041304249316453934, -0.027873367071151733, -0.011616431176662445, 0.00786183774471283, -0.07481219619512558, 0.0017559813568368554, 0.018281733617186546, -0.04687853157520294, -0.02736266888678074, -0.029274452477693558, 0.059223826974630356, 0.009169744327664375, 0.03960990905761719, -0.0492015965282917, -0.023410197347402573, 0.08532296121120453, 0.012276248075067997, 0.028317522257566452, 0.04615068808197975, -0.006404433865100145, 0.02965519391000271, 0.03870483115315437, 0.014291691593825817, 0.013117967173457146, 0.01695033721625805, -0.01912972889840603, -0.04649569094181061, 0.031745780259370804, 0.006636468693614006, -0.028416598215699196, -0.04078730195760727, 0.05811426416039467, 0.014916880056262016, -0.020887676626443863, -0.06408055126667023, 0.0070648714900016785, -0.0509495735168457, -0.009988878853619099, -0.015075336210429668, -0.0024407056625932455, -0.017915470525622368, 0.04821313917636871, -0.023146361112594604, 0.017585577443242073, 0.0774679183959961, 0.0035712383687496185, -0.011834174394607544, 0.0010445516090840101, 0.08960084617137909, 0.0931139811873436, 0.054487619549036026, -0.011747910641133785, 0.07005312293767929, -0.0029659427236765623, -0.0336293987929821, 0.018392745405435562, -0.013807360082864761, -0.023868786171078682, -0.01813775859773159, 0.021420717239379883, 0.05502034351229668, -0.03620288148522377, 0.07461902499198914, -0.04537883400917053, 0.004172006621956825, 0.002769883256405592, -0.00030686543323099613, 0.00970180332660675, 0.07446892559528351, 0.019386474043130875, 0.0311195719987154, -0.037136636674404144, -0.057673584669828415, 0.026181122288107872, -0.019909897819161415, -0.020582059398293495, 0.03603163734078407, -0.01886655203998089, 0.01321929506957531, 0.0449715256690979, 0.05901801958680153, 0.08681296557188034, -0.05938432365655899, 0.00011104287841590121, -0.002331626368686557, 0.012950706295669079, -0.008933806791901588, 0.016741137951612473, 0.0088407127186656, -0.016033994033932686, 0.012669033370912075, -0.02270650491118431, -0.017888754606246948, -0.0030555385164916515, -0.017260897904634476, 0.02363916113972664, -0.027319228276610374, -0.004117270465940237, 0.029310423880815506, -0.0026957369409501553, -0.026622654870152473, -0.05816268548369408, -0.005472003482282162, -0.05464131385087967, -0.0787285566329956, -0.005501208361238241, 0.00610002176836133, 0.0062525044195353985, -0.03530922904610634, -0.007452352438122034, -0.012097036466002464, -0.029844699427485466, 0.07222791016101837, -0.06951013207435608, 0.01132328063249588, 0.013124302960932255, 0.02097725309431553, 0.009219278581440449, 0.02494722791016102, 0.02885493077337742, -0.001962405862286687, 0.006596283055841923, 0.004212064668536186, 0.023123737424612045, 0.041735921055078506, 0.007507802918553352, -0.011614207178354263, -0.08488496392965317, 0.000430457730544731, 0.022837407886981964, -0.03001091256737709, -0.08018885552883148, 0.02894638478755951, 0.010145852342247963, 0.014508968219161034, 0.0661175549030304, 0.005351982545107603, 0.0029274597764015198, -0.04777766764163971, 0.008411782793700695, -0.0043347724713385105, -0.013264845125377178, 0.02097918838262558, -0.025464288890361786, 0.07756267488002777, 0.04434390738606453, -0.033968936651945114, -0.03918915614485741, -0.030876901000738144, 0.0019036950543522835, -0.017668433487415314, -0.01899895630776882, -0.04741774499416351, -0.012474932707846165, -0.08651566505432129, -0.028171850368380547, 0.005324495490640402, -0.031251709908246994, -0.028150660917162895, 0.03577603027224541, 0.03046402335166931, -0.014932610094547272, 0.01740163378417492, -0.05585607513785362, 0.032939620316028595, -0.01706564612686634, -0.028487561270594597, -0.01667325384914875, 0.02262479066848755, -0.008497564122080803, -0.0038258805871009827, 0.0066768028773367405, -0.05353669822216034, -0.01569998450577259, 0.0008679902530275285, 0.04512222483754158, 0.02853756584227085, 0.010660804808139801, -0.018842386081814766 ]
[ -0.058692168444395065, -0.027025898918509483, -0.0646856352686882, -0.015687735751271248, 0.0446377769112587, -0.03201853483915329, -0.017727073282003403, 0.025137612596154213, 0.019315971061587334, -0.019515886902809143, 0.030260581523180008, -0.028479985892772675, 0.009562465362250805, -0.004418947268277407, 0.06984725594520569, 0.019712641835212708, -0.025226937606930733, -0.06618885695934296, -0.014308073557913303, 0.044937532395124435, -0.007790654897689819, -0.062182988971471786, -0.009344112128019333, -0.048955511301755905, 0.018882080912590027, 0.02108035609126091, 0.031941335648298264, -0.024545056745409966, -0.010008011944591999, -0.20632560551166534, 0.03177659958600998, -0.008292690850794315, 0.03947579860687256, -0.019243700429797173, 0.0059849233366549015, 0.047095902264118195, 0.03501191735267639, -0.0044438657350838184, 0.012834194116294384, 0.06039329618215561, 0.018893828615546227, 0.03424065560102463, -0.06917106360197067, -0.008829698897898197, 0.024919608607888222, 0.03431529551744461, -0.0037196408957242966, -0.022235475480556488, -0.02192109078168869, 0.00147668132558465, -0.06385380774736404, -0.014099763706326485, -0.01655024290084839, -0.02107953280210495, 0.005229641683399677, 0.04701792821288109, 0.03917185589671135, 0.10349590331315994, 0.01232706569135189, 0.027577770873904228, 0.029082253575325012, -0.004939093720167875, -0.12786570191383362, 0.037735965102910995, 0.057627514004707336, 0.02493566833436489, -0.05836334824562073, -0.015818163752555847, -0.038308557122945786, 0.0836392343044281, 0.012139490805566311, -0.005892050452530384, -0.021285617724061012, 0.045914214104413986, 0.00376113154925406, 0.006759741809219122, 0.008768890053033829, 0.027250945568084717, 0.023556137457489967, -0.034884870052337646, -0.021801942959427834, 0.027650224044919014, -0.03373559191823006, -0.0065072160214185715, -0.06745078414678574, 0.008328673429787159, -0.018544770777225494, 0.048492707312107086, 0.02615164779126644, 0.03326663374900818, 0.05178321152925491, 0.022582922130823135, 0.04739174246788025, 0.006698001641780138, -0.08419419080018997, 0.013501261360943317, 0.011862430721521378, 0.0374525710940361, -0.03253627568483353, 0.4316639304161072, -0.0075324950739741325, -0.00668614124879241, 0.048866160213947296, 0.03624257817864418, -0.03419278562068939, -0.02295961044728756, -0.0142486821860075, -0.05760645866394043, 0.03718388453125954, -0.0041957576759159565, 0.01418907381594181, -0.008356912061572075, 0.07863468676805496, -0.05383812636137009, 0.002486087381839752, 0.01634448952972889, 0.023664254695177078, 0.024477245286107063, -0.01458220649510622, 0.016217809170484543, -0.040948353707790375, 0.027849987149238586, 0.03650553524494171, 0.00937248207628727, 0.0008702088380232453, -0.024629052728414536, 0.013211912475526333, 0.06073559820652008, 0.010749935172498226, -0.005677997600287199, 0.039289020001888275, -0.04012687876820564, -0.08965394645929337, 0.03800029307603836, -0.0023934426717460155, 0.006282065995037556, 0.04376140609383583, -0.009330464527010918, 0.01012883335351944, 0.03929273784160614, -0.013765946961939335, -0.0075510223396122456, 0.0054446980357170105, 0.0018915305845439434, -0.051215458661317825, 0.11727593839168549, 0.051580071449279785, -0.04817194119095802, 0.005088631063699722, -0.038720980286598206, -0.009341317228972912, 0.03242413327097893, 0.001826498657464981, -0.08327681571245193, -0.01656174287199974, 0.005208966787904501, 0.05827789753675461, -0.00578258978202939, -0.09777882695198059, 0.001276121474802494, -0.03810674697160721, -0.03795000910758972, -0.05318630859255791, 0.0407337062060833, 0.05427146330475807, -0.08805578947067261, -0.024124382063746452, 0.005720801651477814, 0.03181183710694313, -0.06842329353094101, -0.005137015134096146, 0.009047211147844791, -0.029720250517129898, -0.024018818512558937, 0.05660033971071243, -0.03372170776128769, -0.03368224948644638, -0.011175215244293213, 0.029223401099443436, -0.014292922802269459, 0.022208666428923607, 0.0019803373143076897, -0.020196182653307915, 0.000956517702434212, -0.06350541859865189, -0.06548873335123062, -0.09144935756921768, 0.011904633603990078, -0.031725671142339706, -0.010023849084973335, -0.050550393760204315, -0.01865866594016552, -0.0812787190079689, 0.08255043625831604, -0.02609797567129135, -0.040488727390766144, 0.001984980423003435, 0.03370286896824837, -0.04146328940987587, 0.0035797134041786194, -0.036569613963365555, 0.014538687653839588, -0.03954638913273811, 0.01963024213910103, -0.06897636502981186, 0.04000628739595413, 0.05460861325263977, -0.017791230231523514, 0.11003974080085754, 0.026841187849640846, -0.013846230693161488, -0.006967612076550722, -0.02107960730791092, 0.05726633593440056, -0.017956793308258057, -0.00605824775993824, 0.019199209287762642, -0.019479213282465935, 0.006618070416152477, 0.023252956569194794, -0.030498234555125237, -0.024583104997873306, 0.007529539987444878, -0.35558652877807617, -0.05043657869100571, -0.026487408205866814, 0.00009010043868329376, 0.02171841450035572, -0.04972098022699356, 0.03360624238848686, -0.026957480236887932, -0.001835537957958877, 0.021186143159866333, 0.061539389193058014, -0.010840676724910736, -0.015268346294760704, -0.07814245671033859, 0.007562896236777306, 0.016512556001544, -0.04075758531689644, 0.00274413893930614, -0.04470961540937424, 0.028709637001156807, -0.02394735999405384, -0.0432562492787838, 0.0019939544145017862, -0.05945364385843277, 0.017075330018997192, -0.0235894825309515, 0.12057705968618393, -0.008460522629320621, 0.05182455852627754, -0.00802712794393301, 0.03257942199707031, 0.00018010672647505999, 0.006964636500924826, -0.06502504646778107, 0.002402091631665826, -0.009606724604964256, 0.04164579138159752, -0.018433770164847374, -0.012543887831270695, -0.02104046382009983, -0.06518421322107315, -0.006239071488380432, -0.050442833453416824, -0.057906374335289, -0.04127689450979233, 0.05352914705872536, -0.033952418714761734, -0.023087281733751297, 0.0056424327194690704, 0.06888695806264877, 0.04269380494952202, 0.014103480614721775, 0.04060700163245201, -0.010217035189270973, 0.020026667043566704, -0.043881941586732864, -0.07463802397251129, 0.011645880527794361, 0.016008442267775536, 0.028582412749528885, 0.004146075341850519, 0.02449253387749195, 0.015216133557260036, -0.06569777429103851, 0.029026364907622337, -0.013659285381436348, 0.009301298297941685, -0.0007021826459094882, -0.002314021810889244, -0.020834121853113174, -0.002684477251023054, 0.12722885608673096, 0.003831544192507863, -0.02890191227197647, 0.019709445536136627, 0.05220484361052513, -0.02273208275437355, 0.020248666405677795, 0.006799607537686825, 0.035769253969192505, 0.03739241883158684, -0.04174051061272621, 0.06332427263259888, 0.002633211435750127, -0.020866665989160538, 0.04813680425286293, 0.019326969981193542, -0.05412951111793518, 0.05160260573029518, 0.019499225541949272, -0.04301297292113304, 0.0046806493774056435, -0.057777658104896545, -0.05042427405714989, 0.0857931599020958, -0.01695636659860611, -0.2471311092376709, 0.03160805255174637, 0.04875337705016136, 0.03297475352883339, 0.012501503340899944, 0.036573056131601334, 0.033802565187215805, -0.018259508535265923, 0.02598324604332447, 0.009969798848032951, 0.03539523482322693, 0.0566699393093586, 0.013652274385094643, -0.0025450424291193485, 0.04053889214992523, -0.03133198246359825, 0.0418676920235157, -0.01858890801668167, 0.014809331856667995, 0.004280974622815847, 0.032683245837688446, -0.007173280697315931, 0.14908410608768463, 0.015532797202467918, -0.02068847417831421, 0.041561368852853775, -0.04089557006955147, 0.026170002296566963, 0.060611970722675323, -0.002369598252698779, -0.03900369629263878, 0.04282277077436447, 0.00754720950499177, 0.012595714069902897, 0.024875514209270477, -0.046161897480487823, -0.0401490144431591, 0.032860249280929565, 0.03128773719072342, -0.02597629465162754, 0.03431876748800278, -0.0017149022314697504, -0.014943813905119896, 0.04666820913553238, 0.07134583592414856, -0.0035633558873087168, -0.0031886391807347536, -0.0378555953502655, -0.04879661276936531, -0.00500147370621562, -0.02469796873629093, -0.04821554571390152, -0.0145895229652524, -0.012078317813575268, 0.013788314536213875, 0.0798397809267044, -0.0021372383926063776, -0.0009870296344161034, 0.019615784287452698, -0.016044246032834053, -0.018192829564213753, -0.022037649527192116, 0.08691054582595825, 0.004097938071936369, 0.02035880647599697 ]
[ 0.008973455056548119, 0.017107566818594933, -0.026417970657348633, 0.06794394552707672, -0.02782665379345417, 0.0028794149402529, -0.00729329464957118, 0.010926520451903343, -0.024143125861883163, -0.0006796003435738385, -0.010221496224403381, 0.03446892648935318, 0.04369352012872696, -0.0071106054820120335, -0.004276080057024956, 0.016149533912539482, -0.011665365658700466, 0.025061648339033127, 0.014214560389518738, -0.00489610293880105, -0.03315695375204086, -0.030337324365973473, 0.00840897485613823, -0.02404312789440155, -0.008177693001925945, 0.009770363569259644, -0.013412556611001492, -0.013527964241802692, 0.002723211422562599, -0.12124201655387878, 0.0013553234748542309, -0.012888415716588497, -0.013474853709340096, 0.010446006432175636, -0.027625108137726784, 0.010736827738583088, 0.016735929995775223, 0.030237775295972824, 0.025881513953208923, 0.008871400728821754, 0.06211462616920471, -0.00408766558393836, -0.013575820252299309, 0.008445577695965767, 0.010800140909850597, -0.016800401732325554, -0.017892995849251747, -0.009601226076483727, 0.009168139658868313, -0.023705128580331802, -0.05725758895277977, -0.014732995070517063, -0.004690802190452814, -0.0004385045904200524, -0.027888992801308632, 0.004277606960386038, 0.02932008169591427, -0.032226819545030594, -0.004356385208666325, 0.0351296104490757, 0.04623696580529213, -0.004700918681919575, -0.04362748935818672, -0.022712767124176025, -0.014887244440615177, 0.009932870976626873, 0.002238113898783922, 0.04969959333539009, -0.013002010993659496, 0.024954337626695633, 0.011133203282952309, 0.017019102349877357, -0.09629816561937332, -0.02954997681081295, -0.04487815499305725, 0.024441616609692574, 0.04626841843128204, -0.021887127310037613, -0.022707294672727585, -0.002619304694235325, -0.053110070526599884, 0.013215468265116215, -0.00417335145175457, -0.04112042486667633, -0.0665363296866417, 0.037220582365989685, 0.000015442212315974757, -0.022847697138786316, 0.017105307430028915, 0.019722802564501762, -0.02047276683151722, 0.013980085030198097, -0.01077206339687109, -0.004136258270591497, -0.09458134323358536, -0.015009456314146519, 0.02767835557460785, -0.0018659263150766492, 0.006048200652003288, 0.8183913230895996, 0.029812218621373177, 0.007143078371882439, 0.002489027101546526, 0.007620107848197222, -0.009877604432404041, 0.01448538713157177, 0.02299395203590393, 0.02415003627538681, -0.007029422093182802, -0.023462537676095963, -0.0012221664655953646, 0.0328073725104332, 0.026425588876008987, 0.029968004673719406, 0.007479287218302488, 0.008144734427332878, 0.01141369342803955, -0.012589522637426853, 0.0017602125881239772, 0.028623532503843307, 0.01270875334739685, 0.03237008675932884, 0.008263927884399891, -0.012280220165848732, -0.015882005915045738, -0.17552600800991058, -0.04384763538837433, -7.487245146005327e-33, 0.023390742018818855, -0.012930491007864475, 0.028480898588895798, 0.009056756272912025, -0.007145335432142019, 0.02366429567337036, -0.01614103652536869, -0.03890279307961464, -0.02696618251502514, -0.030655259266495705, -0.007582479622215033, -0.006267085205763578, -0.016767457127571106, -0.022973710671067238, 0.0012404872104525566, -0.045244984328746796, -0.0004446261445991695, 0.030792318284511566, 0.008728022687137127, -0.02365138754248619, 0.006548532750457525, 0.034731246531009674, -0.029893511906266212, 0.04339694604277611, 0.008658474311232567, 0.025883745402097702, -0.007876753807067871, 0.008529886603355408, 0.0032873766031116247, -0.04797036945819855, -0.028240716084837914, 0.03402378037571907, 0.0035076390486210585, -0.017647475004196167, 0.012437106110155582, -0.04147117957472801, -0.020896973088383675, 0.011813183315098286, -0.021445903927087784, -0.08452796190977097, -0.043792057782411575, 0.0019233564380556345, -0.030033273622393608, -0.014696719124913216, -0.039622653275728226, 0.014153670519590378, 0.005642316769808531, 0.03267771750688553, -0.002386724576354027, -0.002729941625148058, -0.011893630027770996, 0.018764672800898552, 0.013994671404361725, 0.02468133345246315, -0.054576072841882706, -0.017502421513199806, 0.022030025720596313, -0.0035176987294107676, -0.0014177918201312423, 0.023725999519228935, 0.040460675954818726, -0.015073256567120552, -0.022867918014526367, 0.0181488785892725, 0.0024014555383473635, 0.027717795222997665, 0.014962291345000267, 0.016256438568234444, 0.006909423507750034, 0.030584901571273804, -0.05140051990747452, 0.059344567358493805, -0.013053711503744125, 0.009210007265210152, 0.024350492283701897, -0.04856935143470764, 0.00481816940009594, -0.014214384369552135, -0.0025330090429633856, 0.05283357948064804, -0.028388958424329758, -0.007057679817080498, 0.002737567527219653, -0.031742390245199203, -0.01768960803747177, 0.007742171175777912, 0.023040052503347397, 0.01393096148967743, 0.03438883647322655, 0.0043057845905423164, 0.04181065782904625, 0.021950624883174896, -0.009880533441901207, -0.0360487662255764, 0.015519510954618454, 7.422391653302522e-33, -0.009731325320899487, -0.015841402113437653, -0.0022499028127640486, 0.02192367985844612, 0.04579238221049309, 0.007039980962872505, 0.0069223870523273945, -0.013118812814354897, -0.0462772361934185, 0.045515310019254684, -0.03416525945067406, -0.020855950191617012, 0.003636572975665331, 0.041031498461961746, 0.053992725908756256, -0.01784360595047474, 0.026824530214071274, -0.06627900153398514, 0.014344756491482258, 0.012436405755579472, -0.005483879707753658, 0.01455751247704029, -0.009488931857049465, 0.020022476091980934, 0.06517978757619858, 0.029978733509778976, -0.030859792605042458, 0.021521136164665222, -0.008379184640944004, -0.012430980801582336, 0.0034358161501586437, -0.04573194682598114, 0.01348202209919691, 0.00393274798989296, -0.011131147854030132, 0.009732702746987343, -0.0064760781824588776, -0.003279966302216053, 0.01886923238635063, 0.0002825133269652724, 0.015473657287657261, 0.012868806719779968, -0.041815634816884995, 0.07616881281137466, 0.010101993568241596, 0.04082030430436134, -0.001626918325200677, 0.013531772419810295, 0.009529548697173595, 0.002327786525711417, -0.0001487257395638153, 0.020744366571307182, -0.001197348115965724, 0.00591141264885664, 0.014233940280973911, -0.054426513612270355, 0.01228971965610981, 0.04980538785457611, -0.005159882828593254, 0.012188948690891266, -0.04782731458544731, -0.001931827049702406, -0.009240999817848206, 0.022581826895475388, -0.03746507316827774, -0.03540994971990585, 0.03188643977046013, 0.0021347259171307087, -0.007493016310036182, -0.03681638836860657, 0.0012237195624038577, 0.011253414675593376, -0.0038390024565160275, 0.03171880915760994, 0.06175874173641205, -0.0341000109910965, -0.04043375328183174, 0.010870414786040783, -0.02622740902006626, 0.019442467018961906, 0.007768160197883844, 0.038903865963220596, 0.01702490821480751, 0.0006919772713445127, 0.025500986725091934, 0.014287781901657581, -0.008936407044529915, 0.0327942855656147, -0.019971748813986778, -0.00378618435934186, 0.006246531847864389, -0.029331697151064873, -0.006278976798057556, 0.0112232631072402, -0.03824595361948013, -1.2862911624722528e-8, -0.0367518849670887, -0.0015211196150630713, 0.009867093525826931, 0.01499453280121088, 0.03595348075032234, 0.023920834064483643, 0.02396092191338539, 0.015794403851032257, -0.030726585537195206, 0.03136395663022995, 0.02756688930094242, -0.026031645014882088, -0.009251720272004604, 0.017940731719136238, -0.016952093690633774, -0.08082668483257294, -0.013546019792556763, -0.018734890967607498, 0.03890721872448921, 0.03795338794589043, 0.017071615904569626, 0.04572290554642677, -0.042425937950611115, 0.023527342826128006, 0.0031948680989444256, -0.015878191217780113, 0.025487635284662247, -0.06981046497821808, 0.007222361862659454, -0.01732763461768627, 0.007678929716348648, -0.034218546003103256, -0.005692620296031237, 0.009731044061481953, -0.03885325416922569, -0.004952256102114916, 0.033903028815984726, 0.051812537014484406, -0.0006616979953832924, 0.03270948678255081, -0.025331230834126472, 0.009855757467448711, -0.018697045743465424, -0.030053721740841866, -0.04295729845762253, 0.013112964108586311, -0.04991414397954941, -0.007800398860126734, 0.05604236572980881, -0.06745443493127823, -0.01956736296415329, -0.0071897017769515514, 0.03397456556558609, 0.04310512915253639, 0.030079558491706848, -0.005854478571563959, 0.004582214634865522, -0.016082942485809326, 0.0019160170340910554, -0.012378540821373463, 0.03157587721943855, -0.023900002241134644, -0.026859814301133156, -0.027385903522372246 ]
neo4j-the-batch-inserter-and-the-sunk-cost-fallacy
https://markhneedham.com/blog/2012/09/23/neo4j-the-batch-inserter-and-the-sunk-cost-fallacy
false
2012-09-23 22:46:09
Java: Parsing CSV files
[ "java" ]
[ "Java" ]
As I mentioned in a previous post I recently moved a http://www.markhneedham.com/blog/2012/09/23/neo4j-the-batch-inserter-and-the-sunk-cost-fallacy/[bunch of neo4j data loading code from Ruby to Java] and as part of that process I needed to parse some CSV files. In Ruby I was using http://fastercsv.rubyforge.org/[FasterCSV] which became the http://stackoverflow.com/questions/5011395/what-is-ruby-1-9-standard-csv-library[standard CSV library from Ruby 1.9] but it's been a while since I had to parse CSV files in Java so I wasn't sure which library to use. I needed a library which could parse a comma separated file where there might be commas in the values of one of the fields. I think that's fairly standard behaviour in any CSV library but my http://www.linuxquestions.org/questions/linux-general-1/parsing-a-comma-separated-csv-file-where-fields-have-commas-in-to-714332/[googling led me to OpenCSV]. It can be http://downloads.sourceforge.net/project/opencsv/opencsv/2.3/opencsv-2.3-src-with-libs.tar.gz?r=&ts=1348439616&use_mirror=ignum[downloaded from here] and so far seems to do the job! This is an example of how I'm using it: [source,java] ---- String filePath = "/Users/mneedham/data/awesome-csv-file.csv"; CSVReader reader = new CSVReader(new FileReader(filePath), ','); List<String[]> csvEntries = reader.readAll(); Iterator<String[]> iterator = csvEntries.iterator(); while (iterator.hasNext()) { String[] row = iterator.next(); System.out.println("field 1: " + row[0]); } ---- There are more use cases described on the http://opencsv.sourceforge.net/[home page].
null
null
[ 0.02769661881029606, -0.023727327585220337, -0.021441102027893066, 0.02363711968064308, 0.08190837502479553, 0.015938062220811844, 0.03280850872397423, 0.03989216685295105, 0.009519597515463829, -0.004242158029228449, 0.0014410068979486823, -0.03851912543177605, -0.05852678790688515, 0.03107278235256672, -0.009542405605316162, 0.06625799834728241, 0.05528729036450386, 0.008549481630325317, 0.03015797957777977, -0.01668381132185459, -0.000051793420425383374, 0.041552528738975525, 0.019615665078163147, 0.019646545872092247, 0.028135662898421288, -0.015921255573630333, -0.011004412546753883, 0.010449410416185856, -0.05108289420604706, -0.013041289523243904, 0.04164251685142517, 0.030213136225938797, 0.022843655198812485, -0.0010347452480345964, 0.021472951397299767, -0.00575621984899044, -0.03289417549967766, 0.01474084798246622, -0.008461551740765572, -0.0028554589953273535, -0.056641921401023865, 0.043092843145132065, -0.017191177234053612, 0.016913622617721558, -0.05718551576137543, 0.007002545055001974, -0.014100623317062855, 0.027813313528895378, -0.0047493283636868, 0.0019620712846517563, -0.05651652812957764, 0.0077401502057909966, -0.011049789376556873, -0.026943182572722435, 0.020650696009397507, 0.04202459752559662, 0.021369360387325287, -0.06059735640883446, 0.04688285291194916, -0.012471335008740425, -0.01775679551064968, -0.029598338529467583, -0.015043184161186218, 0.024042747914791107, 0.008455333299934864, -0.04999462142586708, -0.021039297804236412, 0.05810047686100006, -0.05119254067540169, -0.0355348065495491, 0.002146708080545068, 0.039036259055137634, -0.008556882850825787, -0.010557207278907299, 0.031701453030109406, -0.051006168127059937, 0.0014433570904657245, 0.04998444393277168, 0.004206008277833462, 0.04659881815314293, -0.03286001458764076, 0.014730160124599934, 0.02222716063261032, 0.02043873444199562, 0.03811561316251755, -0.04981329292058945, -0.049509868025779724, -0.015453406609594822, -0.038344234228134155, 0.04452097415924072, 0.039180248975753784, -0.02172580361366272, 0.0006206477410160005, 0.013186618685722351, -0.032541610300540924, 0.032198257744312286, -0.01189101580530405, 0.001864700810983777, 0.004925224930047989, -0.019557835534214973, -0.07857499271631241, -0.025367293506860733, 0.0062065268866717815, 0.0007160407258197665, -0.06867770105600357, -0.022188570350408554, -0.020359259098768234, -0.00875563733279705, 0.04163878411054611, 0.011081088334321976, -0.02303716167807579, -0.0064826300367712975, -0.025428328663110733, 0.011819463223218918, -0.09319866448640823, 0.04831662029027939, 0.026606537401676178, -0.024736780673265457, -0.028137721121311188, 0.03863820061087608, 0.04495152458548546, 0.05081663280725479, 0.00721312640234828, 0.08213891834020615, -0.0067106736823916435, 0.02906190976500511, 0.0020132509525865316, 0.05569076910614967, -0.02439291402697563, -0.07756999880075455, -0.020092083141207695, 0.054583966732025146, -0.00898214615881443, 0.018870271742343903, -0.02428911067545414, -0.004637910984456539, -0.01878548413515091, 0.004870571196079254, 0.05003827065229416, 0.018772076815366745, 0.019374890252947807, -0.03501260653138161, 0.02991306409239769, 0.008707793429493904, 0.027160391211509705, 0.02291126176714897, -0.02052128128707409, 0.00026809514383785427, -0.023982850834727287, 0.019640494138002396, 0.023321593180298805, 0.023572055622935295, 0.07025463134050369, -0.029333852231502533, 0.025945473462343216, 0.10828451067209244, 0.018681995570659637, 0.026301277801394463, -0.01177717000246048, 0.02680514007806778, 0.03375609964132309, 0.05627400800585747, 0.002906828885897994, 0.030919797718524933, -0.013882502913475037, -0.012457482516765594, 0.005041681230068207, 0.02809721603989601, -0.03805889934301376, -0.006088444031774998, -0.036521900445222855, -0.022634785622358322, 0.06365559995174408, -0.06934744119644165, 0.0047464873641729355, 0.018182409927248955, 0.056359730660915375, 0.03258064016699791, 0.045556891709566116, -0.030917445197701454, -0.08663339167833328, 0.032326970249414444, -0.021299390122294426, 0.0247734896838665, -0.003789155278354883, 0.016000626608729362, 0.07556980103254318, 0.046785928308963776, 0.0005357021582312882, 0.02514535002410412, -0.07621214538812637, -0.06049812585115433, -0.04335131496191025, -0.011283952742815018, 0.06635908037424088, -0.025134913623332977, -0.0017149513587355614, 0.013801326975226402, 0.002965332241728902, 0.038059115409851074, -0.004145934712141752, -0.01920321024954319, 0.010915153659880161, -0.053399838507175446, -0.06596416980028152, 0.052347611635923386, 0.04381798207759857, -0.04102124273777008, -0.03122640587389469, 0.028857050463557243, -0.027994226664304733, 0.012451211921870708, 0.034069307148456573, -0.017552871257066727, 0.038615621626377106, 0.055613912642002106, 0.01924474909901619, -0.004002900328487158, 0.04479599744081497, -0.07262676954269409, 0.035216074436903, 0.005814342759549618, -0.010173987597227097, -0.010011283680796623, 0.007798728998750448, 0.11759581416845322, 0.04560805857181549, -0.011372290551662445, -0.06509838253259659, 0.007462330162525177, 0.01639696955680847, -0.04800352826714516, 0.0027207855600863695, -0.020910222083330154, 0.0070960200391709805, -0.009032759815454483, -0.02925293706357479, -0.037678901106119156, 0.0041368319652974606, -0.009260703809559345, -0.005116888787597418, 0.06009446084499359, -0.004680996295064688, 0.0456869937479496, -0.0008805875550024211, -0.025885801762342453, -0.01878129504621029, -0.05738332122564316, -0.0651313066482544, 0.010908234864473343, 0.02344895899295807, -0.002124388935044408, 0.048083193600177765, -0.031014524400234222, -0.018368560820817947, -0.00930950790643692, -0.06272365897893906, 0.022935345768928528, 0.06667513400316238, 0.05566408857703209, 0.01270307321101427, 0.08000514656305313, -0.04027605801820755, -0.012243746779859066, -0.029570642858743668, -0.029848679900169373, -0.03694954141974449, -0.022704757750034332, 0.03941560164093971, 0.012700539082288742, -0.019312560558319092, 0.004799531772732735, 0.038478508591651917, 0.03525010496377945, 0.006610141601413488, -0.028413565829396248, 0.02935098297894001, -0.009213382378220558, -0.009365521371364594, -0.045843541622161865, -0.04700266197323799, 0.053841136395931244, -0.06164596229791641, -0.00814476702362299, -0.0005848360015079379, -0.055063046514987946, 0.05379631742835045, -0.045387234538793564, -0.0410284660756588, -0.02137971855700016, 0.021544497460126877, 0.0399971567094326, 0.021540530025959015, -0.003901384538039565, 0.058916959911584854, 0.026345333084464073, 0.023075047880411148, 0.00531782116740942, 0.026508193463087082, 0.0413760244846344, -0.022106526419520378, 0.031806234270334244, 0.05556140094995499, 0.014752359129488468, 0.00038800956099294126, -0.04241981357336044, 0.002862527035176754, -0.010956942103803158, -0.2836860418319702, 0.056076858192682266, -0.06020626425743103, -0.0645035058259964, 0.025751136243343353, -0.029984142631292343, 0.00545347249135375, -0.03906948119401932, -0.012859114445745945, 0.0061437468975782394, -0.028527680784463882, -0.025648081675171852, -0.04132113605737686, 0.03093947097659111, -0.0022295743692666292, 0.023994462564587593, 0.002689379034563899, -0.05045519396662712, 0.012388118542730808, 0.03390103206038475, 0.023272965103387833, -0.039392758160829544, -0.00368334143422544, 0.04886377975344658, 0.01342804729938507, 0.07794512063264847, -0.09027152508497238, 0.0552896149456501, -0.03584649786353111, -0.018603965640068054, 0.01883028820157051, -0.03182065859436989, 0.017319049686193466, -0.00963315274566412, -0.018072182312607765, -0.008291356265544891, 0.027139097452163696, 0.05334518104791641, 0.03114284761250019, 0.022152673453092575, -0.04165730997920036, -0.041525375097990036, -0.00786972139030695, -0.020310478284955025, 0.08250845968723297, -0.005560665391385555, -0.053095463663339615, -0.013872364535927773, -0.02771948091685772, 0.07075163722038269, -0.011003559455275536, -0.054464925080537796, -0.0031727321911603212, 0.03567646071314812, 0.00956603791564703, -0.026864631101489067, -0.007000410463660955, -0.01402734313160181, -0.030733022838830948, -0.03978242352604866, -0.013662494719028473, -0.047249823808670044, 0.004589539486914873, -0.05829368904232979, -0.021035442128777504, -0.05787462741136551, -0.07101193815469742, -0.008321654051542282, 0.07174396514892578, 0.04126890003681183, -0.02417731285095215, 0.027462992817163467, 0.0061159683391451836, -0.10035903006792068, -0.009755969978868961, -0.03011365607380867, -0.0034177459310740232, -0.005315733607858419, -0.022545460611581802, 0.07411154359579086, -0.054975416511297226, -0.06083301082253456, 0.03199737146496773, -0.00028378365095704794, 0.03447961062192917, -0.01683182828128338, -0.007869760505855083, -0.02596079744398594, -0.02785164676606655, -0.0016181590035557747, 0.05167977139353752, -0.04490792006254196, -0.019589651376008987, -0.004679907113313675, 0.009527239948511124, 0.07365739345550537, 0.023104174062609673, 0.008675329387187958, 0.02625414729118347, 0.05697564408183098, 0.05418442189693451, -0.04873836040496826, 0.014149926602840424, -0.035044386982917786, -0.012830928899347782, -0.018017597496509552, -0.029982831329107285, 0.020216846838593483, 0.016563069075345993, 0.02019057236611843, -0.007441678550094366, -0.059163887053728104, 0.026350300759077072, -0.050500448793172836, -0.010724988766014576, -0.012166142463684082, 0.009378802962601185, 0.0033848676830530167, 0.024716833606362343, -0.004564960952848196, -0.03967779129743576, 0.0024293744936585426, 0.017360441386699677, -0.021976910531520844, -0.056479062885046005, -0.015991762280464172, 0.005991422105580568, -0.012629459612071514, -0.011766784824430943, 0.0028357584960758686, -0.05211693048477173, 0.012234020046889782, 0.008483875542879105, -0.04569318890571594, 0.030508598312735558, -0.011783769354224205, -0.024479785934090614, -0.03272778168320656, -0.0036362677346915007, -0.005105899181216955, 0.009509705938398838, -0.03800920769572258, 0.00893557071685791, 0.05376820266246796, 0.025507325306534767, 0.015621541999280453, -0.006347369402647018, 0.024593938142061234, 0.022838149219751358, -0.025582274422049522, -0.01144274603575468, -0.041308384388685226, 0.017845148220658302, -0.015783606097102165, -0.05652669444680214, -0.016638627275824547, 0.03667778521776199, 0.0006414491217583418, -0.033433955162763596, -0.029849398881196976, 0.030063552781939507, -0.04268912971019745, 0.009642906486988068, -0.01676640473306179, -0.007158465683460236, 0.04509070888161659, -0.006915078032761812, 0.03639482334256172, -0.009118489921092987, 0.013034258037805557, 0.0018748552538454533, 0.0434521846473217, -0.03093573823571205, 0.008893749676644802, 0.029356515035033226, 0.00793406367301941, 0.0359862744808197, 0.045772381126880646, 0.021610986441373825, 0.03239373117685318, -0.004866685718297958, -0.03360014781355858, 0.009915448725223541, 0.03265058621764183, 0.032652221620082855, 0.05046053230762482, -0.014042767696082592, -0.006507656536996365, -0.019645337015390396, 0.002129945671185851, -0.04022180289030075, -0.010312271304428577, -0.029927268624305725, 0.01710929162800312, -0.034274064004421234, -0.059397097676992416, 0.03724637255072594, 0.01760806515812874, 0.010125580243766308, 0.04134400933980942, 0.0038978958036750555, -0.018934741616249084, -0.004282804671674967, -0.011008801870048046, 0.057558536529541016, -0.05693927779793739, -0.011276897974312305, -0.0023568635806441307, -0.006221480201929808, 0.008301387540996075, 0.013590317219495773, -0.07620932161808014, 0.014748448505997658, -0.009189183823764324, 0.013385530561208725, -0.03370080515742302, -0.029292641207575798, -0.021794764325022697, -0.0206849854439497, -0.03527180850505829, -0.017133908346295357, 0.002361864550039172, 0.03720270097255707, -0.028306378051638603, -0.018158165737986565, 0.021682733669877052, -0.014957542531192303, -0.019753240048885345, 0.0068497625179588795, -0.035155102610588074, 0.02159138396382332, -0.0234310831874609, 0.03052874654531479, 0.01782173663377762, -0.009551233612000942, -0.017319276928901672, -0.036646705120801926, 0.013903492130339146, -0.01934715360403061, 0.04181189090013504, 0.02074258215725422, -0.015926558524370193, -0.02017997018992901, 0.00832467433065176, -0.03285231813788414, -0.002772318199276924, -0.019414830952882767, -0.010581644251942635, -0.007502442691475153, 0.04055488854646683, 0.011145935393869877, 0.04866795241832733, -0.013460854068398476, -0.04559580981731415, 0.050673067569732666, -0.046720873564481735, -0.059365034103393555, -0.0061653307639062405, -0.05845485255122185, 0.014344706200063229, 0.025351595133543015, 0.006314471829682589, -0.03373005613684654, 0.07737108319997787, 0.03272981941699982, 0.00034567058901302516, 0.036568254232406616, -0.008654198609292507, 0.023486459627747536, -0.024675408378243446, -0.009589692577719688, -0.09834688901901245, 0.029218345880508423, 0.06412340700626373, 0.008373684249818325, 0.01523594930768013, -0.043759383261203766, -0.02823754772543907, 0.003016734030097723, -0.04438034072518349, -0.038699716329574585, 0.03735944628715515, -0.04041900485754013, 0.011669963598251343, -0.021035099402070045, -0.051469940692186356, 0.03348584845662117, 0.03898106515407562, -0.04481963440775871, -0.04780075326561928, -0.04749394208192825, 0.037059515714645386, -0.016198433935642242, 0.04165470227599144, -0.01935061439871788, -0.026350226253271103, 0.05849767476320267, 0.01853804476559162, 0.015716422349214554, 0.035137731581926346, -0.015099282376468182, 0.03216848894953728, 0.04453141242265701, -0.026814546436071396, 0.006988849025219679, 0.03667479380965233, -0.01184533629566431, -0.018623344600200653, -0.011348335072398186, 0.021045850589871407, -0.0017413269961252809, -0.02152731455862522, 0.0741100162267685, 0.020287979394197464, -0.030176403000950813, -0.04639558121562004, 0.03579796105623245, -0.025647897273302078, 0.011994327418506145, -0.04527229815721512, 0.035052016377449036, -0.04431256651878357, 0.022958070039749146, -0.01608125865459442, -0.011952589266002178, 0.07457215338945389, -0.008268899284303188, -0.010335547849535942, -0.01036832295358181, 0.08885633945465088, 0.09034427255392075, 0.03789504989981651, 0.016337156295776367, 0.05892137810587883, -0.013030480593442917, -0.042621172964572906, -0.002821784233674407, -0.026226723566651344, 0.010963337495923042, -0.007374082691967487, -0.0022995201870799065, 0.07323829084634781, -0.016682760789990425, 0.07073129713535309, -0.02999243512749672, -0.0159038957208395, -0.01844717748463154, 0.01891595683991909, 0.024043262004852295, 0.038220420479774475, 0.020072191953659058, 0.03968772664666176, -0.03426600247621536, -0.002051964169368148, 0.018147775903344154, 0.01895940862596035, -0.0231934804469347, 0.028349703177809715, -0.002503757830709219, 0.007947610691189766, -0.003040851792320609, 0.049583904445171356, 0.06843739748001099, -0.046789925545454025, 0.0051606944762170315, -0.012816269882023335, 0.008070513606071472, -0.020771441981196404, -0.01282921526581049, -0.01581580750644207, -0.02857322059571743, -0.03033307194709778, -0.03395034745335579, -0.018079513683915138, -0.011409326456487179, -0.03990114852786064, -0.003486485918983817, -0.016527624800801277, 0.01007365994155407, 0.04018763452768326, -0.002832458121702075, -0.030070779845118523, -0.03925017639994621, -0.04934346675872803, -0.0662764236330986, -0.09348015487194061, -0.001196614932268858, -0.001855303649790585, 0.01769605651497841, -0.031360235065221786, -0.030375666916370392, -0.047706060111522675, -0.029663540422916412, 0.038596466183662415, -0.055045902729034424, -0.0074450368992984295, -0.0011823864188045263, 0.028659014031291008, 0.019860735163092613, 0.051297739148139954, 0.048406634479761124, -0.013943169265985489, 0.010532381944358349, -0.017656728625297546, -0.006733857560902834, 0.05299070477485657, 0.0494561642408371, 0.001418587751686573, -0.07885834574699402, 0.025558920577168465, 0.010522707365453243, -0.025325914844870567, -0.07113520801067352, 0.004963910207152367, 0.040388189256191254, 0.0036283223889768124, 0.04839225485920906, 0.006346970330923796, -0.003291867673397064, -0.020487865433096886, -0.018083615228533745, 0.003347660880535841, -0.0035000985953956842, 0.027878880500793457, 0.010797146707773209, 0.07889163494110107, 0.04566238820552826, -0.001361369271762669, -0.048759303987026215, -0.008267507888376713, 0.009685792028903961, 0.012489271350204945, -0.038444485515356064, -0.039794471114873886, -0.06131486967206001, -0.060323357582092285, -0.02198207937180996, 0.009731651283800602, -0.02570771984755993, -0.03264875337481499, 0.012478571385145187, 0.020008374005556107, -0.024700555950403214, 0.025687992572784424, -0.01910528540611267, 0.05231499671936035, -0.01004404854029417, -0.0549800880253315, -0.033897362649440765, 0.01956922747194767, -0.00566432811319828, -0.0010161948157474399, -0.007870353758335114, -0.035216283053159714, -0.0016336356056854129, -0.01523994654417038, 0.021890079602599144, 0.05142327770590782, 0.025877153500914574, -0.015882715582847595 ]
[ -0.053962595760822296, -0.010186932049691677, -0.058904170989990234, -0.036855995655059814, 0.07725387811660767, -0.06492974609136581, -0.03120376169681549, 0.030486471951007843, -0.011956832371652126, -0.02109222672879696, 0.0022441770415753126, -0.04483603686094284, -0.01966777630150318, -0.010444018989801407, 0.051182229071855545, -0.0191575326025486, -0.0013264850713312626, -0.040393710136413574, -0.03173261880874634, 0.09751657396554947, -0.03103655017912388, -0.02487329952418804, 0.003646359546110034, -0.09407830238342285, -0.004265452269464731, 0.014237137511372566, 0.05426551029086113, -0.054419487714767456, -0.03846016526222229, -0.19927161931991577, -0.0085638128221035, -0.011327224783599377, 0.04722773656249046, -0.009027867577970028, -0.013547662645578384, 0.0022717337124049664, 0.051442526280879974, -0.018014218658208847, -0.0064928545616567135, 0.06297633796930313, 0.02060156688094139, 0.0247203279286623, -0.05972988158464432, 0.021179892122745514, 0.001770772971212864, 0.008692297153174877, -0.0034291560295969248, -0.020711885765194893, 0.009071294218301773, -0.011591891758143902, -0.07885085791349411, 0.03459303453564644, 0.013182099908590317, -0.02529544197022915, -0.01517918985337019, 0.011523040942847729, 0.046229057013988495, 0.07168315351009369, -0.006987004075199366, 0.01923653483390808, -0.016208466142416, 0.003757650498300791, -0.14439380168914795, 0.08359235525131226, 0.010825114324688911, 0.015925470739603043, -0.0427766814827919, -0.0261364933103323, -0.0261122714728117, 0.0879354476928711, -0.015939908102154732, 0.0032332823611795902, -0.05074512958526611, 0.11241831630468369, -0.023568078875541687, -0.005034002009779215, -0.0017630006186664104, 0.005633551627397537, 0.036058660596609116, -0.04494372010231018, -0.08083294332027435, -0.012486091814935207, -0.017806820571422577, -0.030535627156496048, -0.050953179597854614, 0.040768928825855255, -0.020839354023337364, 0.040922775864601135, 0.024605493992567062, 0.025034936144948006, 0.019735947251319885, 0.0008307716343551874, 0.04663918539881706, 0.03553098440170288, -0.0830172598361969, -0.048314958810806274, 0.01453468855470419, 0.026293575763702393, 0.01568116806447506, 0.39821189641952515, -0.04569708928465843, -0.05060650035738945, 0.03733929991722107, 0.004864189308136702, -0.013857170939445496, -0.00954477209597826, -0.0069323997013270855, -0.04330185428261757, 0.04279426485300064, -0.026929795742034912, 0.011916927993297577, -0.02511957660317421, 0.0614500567317009, -0.07269150763750076, 0.00105934904422611, 0.02486630715429783, 0.04132051765918732, 0.003062313888221979, -0.022553810849785805, 0.03430195152759552, -0.010699724778532982, -0.0033072566147893667, 0.0314132459461689, -0.0013140487717464566, 0.03952113538980484, -0.016773123294115067, 0.0045044152066111565, 0.057622965425252914, 0.0461198128759861, 0.024195481091737747, 0.06461235880851746, -0.01893792860209942, -0.09357697516679764, 0.008389751426875591, 0.005515430588275194, 0.03238457068800926, 0.04427063837647438, -0.04604610055685043, -0.0043031140230596066, -0.0017583661247044802, -0.004724457859992981, -0.041342783719301224, 0.016420481726527214, 0.01432743575423956, -0.048307303339242935, 0.08013808727264404, -0.027054382488131523, -0.028421707451343536, -0.01625492237508297, -0.06159151345491409, 0.01264643482863903, 0.06736575812101364, 0.00870132353156805, -0.027835344895720482, -0.0035869916900992393, 0.0015403312863782048, 0.05844171345233917, -0.032709117978811264, -0.07315205782651901, -0.007869170047342777, -0.05202563479542732, -0.03427592292428017, -0.005346526391804218, 0.06567878276109695, 0.056444987654685974, -0.0906582847237587, -0.033206354826688766, 0.008624782785773277, 0.03794071078300476, -0.050888724625110626, 0.019453473389148712, -0.0011378730414435267, -0.04475065693259239, -0.006823630537837744, 0.04986393451690674, -0.03385632857680321, -0.0146985137835145, -0.009671617299318314, 0.04384900629520416, 0.030408397316932678, 0.021295690909028053, 0.03443401679396629, -0.015815624967217445, 0.043585699051618576, -0.06662700325250626, -0.060618363320827484, -0.09347463399171829, 0.011848652735352516, -0.0012872390216216445, -0.02303454838693142, -0.03182373195886612, -0.0048048170283436775, -0.0847078338265419, 0.041418034583330154, -0.019870543852448463, 0.0007644930738024414, 0.02976076863706112, -0.00023838202469050884, -0.01055059302598238, -0.028871484100818634, 0.029006602242588997, 0.03875605762004852, -0.009743331000208855, 0.03454706817865372, -0.06284992396831512, -0.037710681557655334, 0.0672266036272049, -0.039690203964710236, 0.0511978417634964, 0.01755473017692566, -0.02719779498875141, 0.012949725612998009, -0.02056126482784748, 0.011319892480969429, -0.048232682049274445, -0.038968492299318314, 0.0013022710336372256, -0.030428241938352585, 0.03730505332350731, 0.05245153233408928, -0.03944620490074158, -0.06414251774549484, -0.010227249003946781, -0.3442462384700775, -0.020172199234366417, 0.005216248799115419, -0.022417768836021423, 0.03383399173617363, -0.025958972051739693, 0.004257403314113617, -0.036604009568691254, -0.00312441261485219, 0.026749195531010628, 0.0905987024307251, -0.005160358268767595, 0.0025619547814130783, -0.10818923264741898, -0.004093834664672613, 0.04793539643287659, -0.002800270216539502, -0.018678011372685432, -0.009741566143929958, 0.04795965552330017, 0.013738257810473442, -0.04827092960476875, 0.01557950023561716, -0.028093762695789337, 0.019908331334590912, -0.05405624210834503, 0.08043241500854492, 0.03329038992524147, 0.05743967369198799, -0.056289155036211014, 0.047788482159376144, 0.0026945332065224648, 0.0015207899268716574, -0.09276217222213745, -0.01535859890282154, -0.0465516671538353, 0.003420432098209858, 0.040151841938495636, 0.011743464507162571, 0.015185095369815826, -0.0008894336642697453, -0.016005253419280052, -0.03757448494434357, -0.03544902056455612, 0.008539309725165367, 0.0006022431771270931, 0.008303336799144745, -0.034551236778497696, 0.028691235929727554, 0.05648709461092949, -0.0020944068673998117, 0.009972446598112583, 0.008771729655563831, 0.03671073913574219, 0.04482542350888252, -0.04148934409022331, -0.06936755776405334, -0.004769640974700451, 0.042033616453409195, 0.023472657427191734, 0.006508663762360811, 0.03604312613606453, 0.05207033082842827, -0.04889339953660965, 0.000021744053810834885, 0.02748916670680046, 0.00039253191789612174, 0.029783077538013458, 0.034618861973285675, -0.021176481619477272, -0.05409476161003113, 0.09224450588226318, -0.015851950272917747, 0.025787657126784325, 0.03548070415854454, 0.08666648715734482, 0.003902579192072153, 0.006444730330258608, 0.0458873026072979, 0.01480720192193985, 0.04444847255945206, 0.004365009255707264, 0.07397699356079102, -0.014372413046658039, 0.028248954564332962, 0.06385323405265808, 0.039129629731178284, -0.008034068159759045, 0.024735793471336365, -0.0014183510793372989, -0.020862028002738953, -0.01970217004418373, -0.012959910556674004, -0.02564869076013565, 0.06277433782815933, -0.020724212750792503, -0.2611362636089325, 0.045378636568784714, 0.027795158326625824, 0.04356003180146217, 0.017644714564085007, 0.010174471884965897, 0.02692636474967003, -0.07660209387540817, 0.003949687350541353, 0.04295531287789345, 0.03508368879556656, 0.040460895746946335, 0.0078092291951179504, -0.017577046528458595, 0.022909987717866898, -0.014369138516485691, 0.04107562080025673, 0.022728033363819122, 0.017663072794675827, 0.007727598771452904, 0.032468054443597794, -0.017625734210014343, 0.1643703132867813, 0.010025270283222198, 0.006292365025728941, 0.031997211277484894, -0.01658751256763935, 0.01916315034031868, 0.08693625032901764, 0.027802497148513794, -0.013314487412571907, 0.005536819342523813, 0.042082127183675766, 0.04199966788291931, 0.008296720683574677, -0.04237976670265198, -0.009690900333225727, 0.06558338552713394, 0.02117326483130455, -0.04415951669216156, -0.026934081688523293, 0.042456939816474915, -0.05479415878653526, 0.02516845427453518, 0.05507678538560867, -0.019856642931699753, -0.036039017140865326, -0.03475063294172287, -0.0338236428797245, -0.018203090876340866, -0.0169815793633461, -0.0629073828458786, -0.02077297307550907, -0.028053482994437218, 0.009561811573803425, 0.06770864129066467, -0.007431684527546167, -0.039627254009246826, -0.0016279139090329409, -0.005090347956866026, 0.024780286476016045, -0.04716716334223747, 0.09885826706886292, 0.04886527732014656, -0.018300499767065048 ]
[ 0.0027141012251377106, 0.02912897989153862, -0.05516524240374565, 0.010409827344119549, -0.020989390090107918, -0.003581990720704198, -0.0009701696108095348, 0.041657522320747375, -0.017253614962100983, -0.004439008887857199, -0.022552816197276115, 0.009853586554527283, 0.026699865236878395, -0.04133123159408569, -0.0038194209337234497, -0.03732617199420929, -0.016148604452610016, 0.014215772971510887, 0.013284916989505291, -0.030686497688293457, -0.03264331817626953, 0.014653315767645836, 0.03930852189660072, -0.014986444264650345, -0.023897171020507812, 0.04316972568631172, -0.014860587194561958, -0.02462860383093357, -0.013673816807568073, -0.1274978667497635, -0.007612084504216909, -0.044402122497558594, 0.013286253437399864, 0.016381533816456795, -0.012192880734801292, -0.002054948825389147, 0.010301613248884678, 0.03590260073542595, -0.01942373812198639, 0.028115330263972282, -0.01241612434387207, 0.02009674720466137, -0.012205179780721664, 0.021885894238948822, -0.0026282016187906265, -0.02682371810078621, -0.014572611078619957, -0.009021584875881672, -0.007773979566991329, -0.01050442736595869, -0.05923812463879585, 0.015884434804320335, -0.0013406130019575357, -0.0016559303039684892, 0.002203808631747961, -0.030693404376506805, -0.002122014993801713, -0.030022701248526573, 0.00708977272734046, 0.01890774816274643, 0.03325675055384636, -0.008798702619969845, -0.03764760494232178, -0.01384373102337122, 0.016889041289687157, -0.04074648395180702, 0.007387069053947926, 0.016372650861740112, 0.026397904381155968, -0.026949871331453323, -0.02080925926566124, 0.06174205243587494, -0.07622547447681427, -0.0019014349672943354, -0.03876255080103874, -0.008128195069730282, 0.028035352006554604, -0.027816161513328552, -0.0010815835557878017, -0.000058008943597087637, -0.04908008500933647, -0.018354369327425957, -0.009393924847245216, -0.012044940143823624, -0.02987801283597946, 0.004797957371920347, -0.023463668301701546, 0.0248666200786829, -0.002086183289065957, 0.01803257130086422, 0.010354126803576946, 0.005733876023441553, -0.003007971914485097, 0.01329525001347065, -0.07124490290880203, 0.025248439982533455, 0.016127057373523712, -0.014006733894348145, 0.004974350333213806, 0.8326765298843384, 0.012756296433508396, -0.0062114521861076355, 0.02479916252195835, 0.0008539858390577137, -0.008596383966505527, -0.022322220727801323, 0.030171282589435577, 0.04531010985374451, 0.010299654677510262, -0.047653090208768845, 0.03565181791782379, 0.007250262424349785, 0.02164018154144287, -0.018141264095902443, 0.0028546189423650503, 0.03721180185675621, 0.02188759110867977, 0.0034864270128309727, 0.007645345292985439, 0.0204445943236351, 0.007908908650279045, 0.0034673833288252354, -0.012615814805030823, -0.0018065569456666708, 0.005792425014078617, -0.17425081133842468, 0.020268209278583527, -6.964144282417654e-33, 0.023762470111250877, -0.042028795927762985, 0.023706087842583656, 0.02524605207145214, 0.009254115633666515, 0.023621995002031326, 0.0037412522360682487, 0.02305169589817524, -0.017892912030220032, -0.031574588268995285, 0.01768290251493454, -0.012368417344987392, -0.010391941294074059, -0.019407551735639572, -0.0067237005569040775, -0.021082211285829544, -0.0018166874069720507, 0.00001854328002082184, -0.011603101156651974, -0.014076095074415207, 0.037453312426805496, 0.031418509781360626, 0.04735146462917328, 0.05435265600681305, 0.027030164375901222, 0.015828881412744522, 0.006756086368113756, -0.010340296663343906, 0.008697891607880592, -0.04140679910778999, 0.007707124575972557, -0.00586766516789794, 0.0015252239536494017, -0.0319690965116024, 0.051933977752923965, -0.03459649160504341, -0.013539168983697891, -0.0011279855389147997, -0.01761442981660366, -0.04782009869813919, -0.02712363936007023, -0.014345057308673859, -0.014309140853583813, 0.027213938534259796, -0.02897408977150917, -0.014149644412100315, -0.005751956719905138, 0.033449526876211166, -0.008291705511510372, 0.0181109718978405, 0.020042167976498604, 0.04191864654421806, 0.027197295799851418, 0.009572461247444153, -0.033691275864839554, 0.011628171429038048, 0.0032704195473343134, -0.007886753417551517, -0.0186634361743927, 0.014531899243593216, 0.027145469561219215, 0.019446533173322678, -0.014054672792553902, 0.018033768981695175, 0.024922948330640793, -0.029967542737722397, 0.06476321071386337, 0.008889303542673588, 0.021402545273303986, 0.03049328923225403, -0.03862158954143524, 0.03241336718201637, -0.014170518144965172, -0.021256577223539352, 0.01376701332628727, -0.01826411485671997, -0.00799794215708971, -0.009295285679399967, 0.008554612286388874, 0.01011318527162075, 0.004439903888851404, -0.016226502135396004, 0.007630583364516497, -0.011957131326198578, -0.01684567891061306, 0.033245623111724854, 0.017553966492414474, -0.007972628809511662, 0.011182988993823528, -0.01628497987985611, 0.036129023879766464, 0.05172381177544594, -0.014635554514825344, -0.017120029777288437, -0.026593167334794998, 6.753494225382362e-33, 0.018977809697389603, -0.029710736125707626, 0.0074279517866671085, 0.03041510097682476, 0.04425700008869171, 0.023389117792248726, 0.01962122693657875, -0.005940769799053669, -0.03664427250623703, -0.0008862988906912506, -0.03139439970254898, -0.009581249207258224, 0.0030332307796925306, 0.01776973158121109, 0.08211251348257065, -0.0006343628047034144, 0.005988903343677521, -0.00048022874398157, -0.0044252616353333, -0.0006886270130053163, -0.013813703320920467, 0.013347635976970196, 0.02916702814400196, 0.006077254191040993, 0.06402470916509628, 0.0036427120212465525, -0.03199795261025429, -0.004333056043833494, -0.02094591036438942, 0.018315503373742104, 0.017331834882497787, -0.003861253382638097, -0.011865041218698025, -0.03128793090581894, -0.062173277139663696, 0.016378358006477356, 0.005073252134025097, 0.02591407112777233, 0.04365118220448494, 0.02899373695254326, 0.0223299078643322, 0.002094459952786565, -0.02089819870889187, 0.0127189252525568, 0.01028443407267332, 0.040944620966911316, 0.0004206770390737802, 0.042123518884181976, -0.00273537146858871, 0.06588413566350937, -0.007479428313672543, 0.013515154831111431, -0.028755903244018555, 0.019981056451797485, 0.05777222663164139, -0.017189720645546913, -0.03253503516316414, -0.0007074381574057043, -0.02980019524693489, -0.019098972901701927, -0.06059883534908295, -0.02556028962135315, 0.009526053443551064, 0.009368902072310448, -0.023522667586803436, -0.001018207403831184, -0.015269605442881584, 0.0004505189135670662, 0.014632858335971832, -0.059191472828388214, 0.00409718556329608, -0.014268740080296993, -0.02420554682612419, 0.018631787970662117, -0.02221003733575344, -0.01045492198318243, -0.028865361586213112, -0.0038764551281929016, -0.042651962488889694, 0.027744153514504433, 0.03800737485289574, 0.009098510257899761, 0.030585577711462975, 0.02264319360256195, 0.03996942937374115, 0.012735349126160145, -0.013346062041819096, -0.0314209908246994, 0.02007133699953556, 0.020839126780629158, -0.011269657872617245, -0.006719829514622688, 0.01885922998189926, -0.012231498025357723, -0.019834335893392563, -1.2602351162627201e-8, -0.0311732180416584, -0.007469244301319122, -0.04178265109658241, 0.013380742631852627, 0.03683774173259735, 0.028286516666412354, -0.02740100771188736, -0.005474543198943138, -0.024801887571811676, 0.018932972103357315, 0.037742916494607925, -0.027277180925011635, 0.01623358204960823, 0.023040929809212685, 0.02098395861685276, -0.03212542086839676, 0.003547622123733163, -0.04234429821372032, 0.012241639196872711, 0.011237631551921368, 0.037349145859479904, 0.024626171216368675, -0.019686950370669365, 0.030522998422384262, 0.00475082965567708, 0.0007441096240654588, -0.006645228248089552, -0.09112988412380219, 0.0180291049182415, -0.03713458403944969, 0.022377585992217064, -0.03779133781790733, -0.00022204898414202034, -0.022005800157785416, -0.022434817627072334, -0.02892456389963627, 0.011495085433125496, 0.02821975201368332, -0.004086822271347046, 0.02187231183052063, -0.0033458834514021873, -0.007260715123265982, -0.02512880228459835, -0.022363964468240738, -0.034299127757549286, -0.06873577833175659, -0.06831730902194977, 0.018321476876735687, 0.013860220089554787, -0.017506180331110954, -0.0018668287666514516, 0.01229843869805336, 0.03369108587503433, 0.04039042070508003, 0.05810560658574104, -0.015937162563204765, 0.029108906164765358, -0.004487090278416872, -0.02080155536532402, 0.00035114638740196824, 0.03400381654500961, -0.02871113084256649, -0.04937133193016052, -0.04013345390558243 ]
java-parsing-csv-files
https://markhneedham.com/blog/2012/09/23/java-parsing-csv-files
false
2012-09-15 07:54:04
Bash: Piping data into a command using heredocs
[ "shell" ]
[ "Shell Scripting" ]
I've been playing around with some data modelled in neo4j recently and one thing I wanted to do is run an adhoc query in the http://docs.neo4j.org/chunked/stable/shell-starting.html[neo4j-shell] and grab the results and do some text manipulation on them. For example I wrote a query which outputted the following to the screen and I wanted to sum together all the values in the 3rd column: [source,text] ---- | ["1","2","3"] | "3" | 1234567 | | ["4","5","6"] | "6" | 8910112 | ---- Initially I was pasting the output into a text file and then running the following sequence of commands to work it out: [source,text] ---- $ cat blah2.txt| cut -d"|" -f 4 | awk '{s+=$0} END {print s}' 10144679 ---- One way to avoid having to create +++<cite>+++blah2.txt+++</cite>+++ would be to echo the output into standard out like so: [source,text] ---- $ echo "| ["1","2","3"] | "3" | 1234567 | | ["4","5","6"] | "6" | 8910112 | " | cut -d"|" -f 4 | awk '{s+=$0} END {print s}' 10144679 ---- But it gets a bit confusing as the number of lines of results increases and you have to keep copy/pasting the cut and awk parts of the chain around which was annoying. One of the things I read on the bus this week was a blog post going through a bunch of http://www.catonmat.net/blog/bash-one-liners-explained-part-three/[bash one liners] and half way through it covers piping data into commands using heredocs which I'd completely forgotten about! A simple example could be to send a simple message to +++<cite>+++cat+++</cite>+++ which will output the message to standard out: [source,text] ---- $ cat <<EOL heredoc> hello i am mark heredoc> EOL hello i am mark ---- That works if we want to pipe data into a single command but I didn't know how we'd be able to pipe the output of that command to another command. In fact it's actually reasonably simple: [source,text] ---- $ cat <<EOL | cut -d"|" -f 4 | awk '{s+=$0} END {print s}' pipe pipe heredoc> | ["1","2","3"] | "3" | 1234567 | pipe pipe heredoc> | ["4","5","6"] | "6" | 8910112 | pipe pipe heredoc> EOL 10144679 ---- And now I have no need to create random text files all over my machine!
null
null
[ 0.004110768437385559, -0.02816452458500862, -0.020379239693284035, 0.015546935610473156, 0.07749829441308975, -0.008803946897387505, 0.0316702201962471, 0.01387186348438263, 0.03007349744439125, -0.01343457493931055, -0.008626586757600307, 0.01416703313589096, -0.07148448377847672, -0.015343448147177696, 0.00017157704860437661, 0.055067650973796844, 0.081748366355896, -0.00002808920544339344, 0.01532171294093132, -0.03504453971982002, 0.0016939155757427216, 0.02655959501862526, 0.007678823079913855, 0.019646557047963142, 0.030903303995728493, 0.0024740544613450766, 0.0024555122945457697, -0.008288140408694744, -0.04940177500247955, 0.0020610240753740072, 0.05152258276939392, -0.019964123144745827, 0.02810678631067276, -0.004245859570801258, 0.02342316322028637, -0.01063641905784607, -0.04681677743792534, -0.015458174981176853, -0.00004933792297379114, -0.013416243717074394, -0.08096710592508316, 0.02588312327861786, -0.02789430320262909, 0.02227882668375969, -0.02669244445860386, -0.00485646165907383, -0.040499601513147354, 0.02665081061422825, -0.021429486572742462, 0.030370738357305527, -0.09416238963603973, 0.023592619225382805, -0.00817784108221531, -0.01593477465212345, 0.013743089511990547, 0.04881085827946663, 0.021569060161709785, -0.07009489089250565, 0.06811502575874329, -0.013132531195878983, -0.0075312210246920586, -0.030758636072278023, -0.01857137121260166, 0.023818979039788246, 0.021924519911408424, -0.04927598685026169, -0.005702297203242779, 0.04553063586354256, -0.03920019045472145, 0.004353067371994257, 0.009823714382946491, 0.008027021773159504, -0.02616250328719616, -0.03874201327562332, 0.009645835496485233, -0.036018256098032, 0.024927861988544464, 0.047366682440042496, 0.02739604562520981, 0.06284800171852112, -0.03294195979833603, 0.012861239723861217, -0.0016234975773841143, 0.015514777973294258, 0.012824277393519878, -0.036970656365156174, -0.02115863561630249, -0.016367193311452866, -0.04819490760564804, 0.047084271907806396, -0.00785844586789608, -0.05310867354273796, -0.018561648204922676, 0.009875002317130566, -0.007736720144748688, 0.021110814064741135, 0.002130830194801092, 0.019302522763609886, 0.04456326365470886, -0.018354395404458046, -0.031896453350782394, -0.01990528590977192, 0.01877661980688572, 0.008217464201152325, -0.08158430457115173, -0.009899363853037357, -0.0442509800195694, -0.030481459572911263, 0.021361973136663437, 0.012295689433813095, -0.012456709519028664, -0.006445135921239853, -0.017182255163788795, 0.0007863345672376454, -0.09313394129276276, 0.05742456391453743, 0.02054998092353344, -0.011232411488890648, 0.015419542789459229, 0.01990778185427189, 0.030050696805119514, 0.030327264219522476, 0.009948339313268661, 0.08900301903486252, -0.025376811623573303, 0.03492789715528488, 0.03408033773303032, 0.05347125232219696, -0.012055688537657261, -0.06548374891281128, -0.018056511878967285, 0.06929124891757965, -0.0010113086318597198, 0.02975952997803688, -0.014915655367076397, -0.029334556311368942, -0.03830020874738693, 0.015507866628468037, 0.05865520238876343, 0.04890625923871994, 0.024024518206715584, -0.02984454482793808, 0.017968958243727684, -0.021120572462677956, 0.0337865874171257, 0.018752148374915123, -0.040493227541446686, -0.03940817341208458, -0.036576054990291595, 0.013164728879928589, 0.021556446328759193, 0.018565181642770767, 0.04999667406082153, -0.028022298589348793, 0.03139404207468033, 0.10412940382957458, 0.04228048771619797, 0.026132559403777122, -0.017568081617355347, 0.024072501808404922, 0.0481380894780159, 0.050841283053159714, 0.019814711064100266, 0.04733886569738388, -0.00955223012715578, -0.028526388108730316, -0.013814002275466919, 0.017415160313248634, -0.022064702585339546, 0.022736256942152977, -0.023333463817834854, -0.056566350162029266, 0.07574781775474548, -0.016209764406085014, 0.010409065522253513, 0.015614647418260574, 0.07061948627233505, 0.028798967599868774, 0.05643434077501297, 0.014923861250281334, -0.07998909801244736, 0.07048822194337845, 0.0073670088313519955, 0.014857225120067596, 0.014594542793929577, 0.008946397341787815, 0.05044074356555939, 0.045392680913209915, 0.019723396748304367, 0.03294297307729721, -0.08080583810806274, -0.10994187742471695, -0.010182137601077557, -0.0011180485598742962, 0.05236021429300308, -0.027662504464387894, 0.023765496909618378, 0.044175952672958374, 0.015345845371484756, 0.025937454774975777, 0.013898475095629692, 0.006613421719521284, 0.06001782417297363, -0.0630127415060997, -0.04796230047941208, 0.038279131054878235, 0.012632308527827263, -0.044959332793951035, -0.04512987285852432, 0.03932410478591919, -0.03607427328824997, 0.026778195053339005, 0.03724335506558418, -0.012906349264085293, 0.048903945833444595, 0.026045694947242737, 0.032102249562740326, -0.017077259719371796, 0.013116080313920975, -0.021157490089535713, 0.026499560102820396, 0.022902874276041985, -0.029664436355233192, 0.0001991755561903119, -0.006435266695916653, 0.10946077108383179, 0.055741310119628906, -0.004819749854505062, -0.0556473545730114, 0.02426777221262455, -0.005470708478242159, -0.02104405127465725, 0.01036190427839756, -0.012908889912068844, -0.01287376880645752, 0.006611116696149111, -0.02700694091618061, 0.0007510959985665977, 0.004857966210693121, -0.014303384348750114, 0.0024991361424326897, 0.07830093055963516, -0.018309853971004486, 0.05228357017040253, 0.009145241230726242, -0.0022711947094649076, -0.012638363987207413, -0.03673100844025612, -0.02733708918094635, 0.014588719233870506, 0.0018722889944911003, -0.010748355649411678, 0.06365319341421127, -0.058071475476026535, -0.028865966945886612, -0.015428734943270683, -0.0570073164999485, 0.04017507657408714, 0.03641178086400032, 0.043157853186130524, -0.0327787846326828, 0.05154955014586449, -0.025119617581367493, 0.02174946665763855, -0.012955390848219395, -0.039778996258974075, -0.07119525969028473, -0.01389368623495102, 0.012271523475646973, -0.003866151673719287, 0.0230313278734684, -0.004469320178031921, 0.025767365470528603, -0.02243742346763611, 0.017655855044722557, -0.03223349526524544, 0.01884925179183483, -0.008942793123424053, -0.024174517020583153, -0.048150915652513504, -0.03786124289035797, 0.05514863133430481, -0.05538789927959442, -0.044452447444200516, 0.04437282308936119, -0.04519525542855263, 0.06419777125120163, -0.047600157558918, -0.037243787199258804, 0.00739651033654809, -0.0031407217029482126, 0.054490070790052414, -0.005357669200748205, 0.012302915565669537, 0.08144650608301163, 0.021840808913111687, 0.0020559702534228563, 0.006895748898386955, 0.0035139676183462143, 0.03821902349591255, -0.01247454434633255, 0.02386334165930748, 0.028805918991565704, -0.02657841145992279, -0.017178256064653397, -0.0474415086209774, -0.009360209107398987, -0.014766747131943703, -0.25620201230049133, 0.06260690838098526, -0.04943693429231644, -0.04589947313070297, 0.02361113391816616, -0.05916127935051918, -0.0015414005611091852, -0.03563065081834793, -0.019957009702920914, -0.0026083688717335463, -0.020795011892914772, -0.02264478988945484, -0.016278710216283798, 0.029666520655155182, 0.014757703989744186, 0.027643566951155663, 0.0014152541989460588, -0.0615190714597702, 0.020256346091628075, 0.020362405106425285, 0.015210209414362907, -0.038554735481739044, 0.006266702897846699, 0.017720451578497887, 0.027701595798134804, 0.05574136599898338, -0.06581325829029083, 0.03649479150772095, -0.039825186133384705, -0.037245120853185654, -0.017467394471168518, -0.035676635801792145, -0.010903306305408478, 0.02022317424416542, -0.021009497344493866, -0.00819853600114584, 0.0579698421061039, -0.0033406619913876057, 0.01566319726407528, 0.014099037274718285, -0.023598747327923775, -0.05152951925992966, -0.019123012199997902, -0.020271053537726402, 0.06582733243703842, -0.0067773559130728245, -0.05328358709812164, -0.026730192825198174, 0.0037944491486996412, 0.06722836196422577, -0.02777036279439926, -0.03508085384964943, -0.016860589385032654, 0.01980869472026825, -0.01116130780428648, -0.04988366737961769, -0.04396229609847069, -0.002749853068962693, -0.034401632845401764, -0.009162884205579758, -0.023624420166015625, -0.06498458981513977, 0.018122032284736633, -0.06838951259851456, -0.002859072759747505, -0.04703189805150032, -0.05916853994131088, -0.03889269754290581, 0.07232224941253662, 0.028789302334189415, -0.024142805486917496, 0.04151356220245361, -0.023031579330563545, -0.10722901672124863, -0.043541014194488525, -0.05070889741182327, -0.004602082539349794, -0.0005446041468530893, -0.013560974970459938, 0.02883145585656166, -0.04230242222547531, -0.05310617759823799, 0.006652790121734142, 0.014614224433898926, 0.024668853729963303, -0.026588963344693184, -0.006916449870914221, -0.01629646122455597, -0.025713449344038963, 0.007416149601340294, 0.0811019167304039, -0.038430433720350266, -0.010865684598684311, -0.013685503043234348, 0.015675272792577744, 0.025888698175549507, -0.0013185114366933703, -0.005973688326776028, -0.0011880880920216441, 0.0479637011885643, 0.056508369743824005, -0.026884881779551506, 0.0320381335914135, -0.05839511379599571, -0.014452134259045124, -0.02944379858672619, -0.04782592132687569, 0.05429500713944435, 0.005027906969189644, 0.0316542349755764, -0.006733405403792858, -0.01057814434170723, 0.028455927968025208, -0.04433943331241608, -0.03710906580090523, 0.009385334327816963, 0.004398089833557606, 0.013433711603283882, 0.04970373585820198, -0.030791403725743294, -0.04355042800307274, 0.005672079045325518, 0.04796384647488594, -0.03584401309490204, -0.04816585034132004, -0.03871922567486763, -0.016630373895168304, -0.004577747080475092, 0.0033888542093336582, 0.018281307071447372, -0.018525755032896996, 0.006772641092538834, 0.03810460865497589, -0.011823965236544609, 0.03848816081881523, -0.013669470325112343, -0.03269284591078758, -0.04032483324408531, 0.004217928275465965, 0.031196830794215202, -0.02972487360239029, -0.0029676868580281734, -0.03748033568263054, 0.06598512828350067, 0.018466589972376823, 0.0007470758864656091, 0.021609000861644745, -0.014695500023663044, 0.027556557208299637, 0.004717806354165077, -0.026989152655005455, -0.0303751640021801, 0.01073937676846981, -0.02663317136466503, -0.03348071128129959, -0.015865469351410866, 0.04633728787302971, -0.042832475155591965, -0.022414613515138626, -0.03303176537156105, 0.007160443812608719, -0.03466544300317764, 0.0250209029763937, 0.0006218409980647266, -0.0245282594114542, 0.0261139627546072, -0.03434835374355316, 0.044113535434007645, -0.02287331037223339, 0.009289161302149296, 0.0115486616268754, 0.019918818026781082, -0.01956893689930439, 0.004261013586074114, 0.014165932312607765, 0.005313037429004908, 0.03287827596068382, 0.04945407062768936, 0.013391275890171528, 0.01997489295899868, 0.01150739099830389, -0.020518027245998383, 0.005751037038862705, 0.02958783134818077, 0.06104990094900131, 0.03633319213986397, 0.0007879891782067716, 0.017916586250066757, -0.024730917066335678, -0.0006318539963103831, -0.012372467666864395, 0.006841564550995827, -0.012125696055591106, -0.0048792436718940735, -0.0374157577753067, -0.0657375156879425, 0.05694013833999634, 0.04326014965772629, -0.018497034907341003, 0.01172875240445137, 0.0068912263959646225, 0.0002018485392909497, -0.041387539356946945, 0.05669556185603142, 0.023908233270049095, -0.05068739503622055, -0.005548698361963034, -0.01995031349360943, 0.004195380490273237, -0.0007828925736248493, 0.02006468176841736, -0.05706978589296341, -0.05139736831188202, 0.00280206510797143, 0.037168752402067184, -0.008446875959634781, -0.04603172093629837, -0.025779107585549355, 0.002277177292853594, -0.03240696340799332, 0.03001859411597252, 0.003931885119527578, 0.020166782662272453, -0.006954987999051809, -0.025728000327944756, 0.017741888761520386, -0.032209139317274094, -0.0277875829488039, 0.03089662827551365, -0.004796105902642012, 0.01484159380197525, -0.022034237161278725, 0.03557906672358513, 0.03755980730056763, 0.02637333981692791, -0.026187971234321594, -0.04918329790234566, 0.01040350366383791, -0.03954217582941055, 0.05280029773712158, -0.01380215771496296, 0.0007825985667295754, -0.022703107446432114, 0.000197471454157494, -0.01682668924331665, -0.019435806199908257, -0.01716984622180462, -0.03313116729259491, -0.009032235480844975, 0.060098711401224136, 0.020472576841711998, 0.06175997108221054, -0.010693063959479332, -0.041255466639995575, 0.0499536395072937, -0.03836420178413391, -0.03657766431570053, -0.005912426393479109, -0.07807235419750214, 0.04849525913596153, 0.010314593091607094, 0.008757476694881916, -0.05532185733318329, 0.05898173898458481, 0.05052775889635086, 0.017982983961701393, 0.01595797762274742, -0.01232235785573721, 0.04441606625914574, -0.01927340403199196, -0.02080180123448372, -0.08765166997909546, -0.021567905321717262, 0.030319519340991974, 0.008851458318531513, -0.009968540631234646, -0.0018305102130398154, -0.027743326500058174, 0.008087859489023685, -0.04710923507809639, -0.04508654773235321, 0.04329396039247513, -0.023134803399443626, 0.011439024470746517, 0.030062515288591385, -0.04767525568604469, -0.0032089482992887497, 0.046601951122283936, -0.026088792830705643, -0.02657812461256981, -0.034548692405223846, 0.056093718856573105, -0.0377977155148983, 0.03402058035135269, -0.03259437158703804, -0.052967220544815063, 0.08410609513521194, 0.02601662278175354, 0.015910763293504715, 0.04043202847242355, -0.027303170412778854, 0.022945770993828773, 0.02173628658056259, 0.003555755829438567, 0.013541976921260357, 0.04162556678056717, -0.037037186324596405, -0.04239315539598465, -0.008760090917348862, 0.037512585520744324, -0.012630937620997429, -0.022696318104863167, 0.07432809472084045, 0.004230889957398176, -0.03390812873840332, -0.07104739546775818, 0.0436224564909935, -0.02808344177901745, 0.005309759639203548, -0.056890763342380524, 0.016691312193870544, -0.05957212299108505, 0.04919987916946411, -0.0011020895326510072, 0.005026688799262047, 0.08461394160985947, -0.009299013763666153, -0.004493784159421921, 0.02146393619477749, 0.060199666768312454, 0.08077981323003769, 0.0532664880156517, -0.004159998148679733, 0.02846989966928959, -0.021592866629362106, -0.037659816443920135, -0.02673848532140255, -0.023276859894394875, 0.020871581509709358, 0.01667065918445587, -0.012273035943508148, 0.09293521195650101, -0.04298705235123634, 0.07343098521232605, -0.017272276803851128, -0.0018549708183854818, -0.007670484017580748, -0.015488410368561745, 0.027658192440867424, 0.05086295306682587, 0.01909196563065052, 0.05955801159143448, -0.01643989607691765, -0.025509392842650414, 0.025987928733229637, -0.007284050341695547, -0.007459412794560194, 0.032731834799051285, -0.006586706731468439, -0.00392573606222868, 0.00346778123639524, 0.0632699579000473, 0.08304639905691147, -0.0061069680377841, 0.004068186040967703, 0.0015784560237079859, 0.04121144860982895, -0.025514710694551468, 0.04137975350022316, -0.005890367552638054, -0.025450127199292183, -0.02813447080552578, -0.03880468010902405, -0.04687318578362465, -0.010911098681390285, -0.00859070010483265, 0.004287996329367161, -0.019204560667276382, -0.005588587839156389, 0.002638863865286112, -0.014128301292657852, -0.015279984101653099, -0.06149198114871979, -0.027311405166983604, -0.03824440762400627, -0.05372847989201546, -0.011308268643915653, 0.00668703205883503, -0.0052293878979980946, -0.017507554963231087, -0.0023027381394058466, -0.0528143011033535, -0.032837849110364914, 0.043572306632995605, -0.02513963356614113, 0.009263020008802414, -0.0011016872012987733, 0.041811395436525345, 0.0014714100398123264, 0.045678265392780304, 0.04440843686461449, 0.011949064210057259, 0.011042069643735886, 0.01436386164277792, 0.011497446335852146, 0.052373114973306656, -0.0009438507258892059, -0.008319796063005924, -0.06637649983167648, -0.007276336662471294, 0.01818755827844143, 0.024561654776334763, -0.0752662792801857, 0.0035270419903099537, 0.05595715343952179, -0.029088716953992844, 0.03347259387373924, -0.03386975824832916, -0.000381246383767575, -0.007696062326431274, 0.0028013649862259626, -0.021830659359693527, 0.00004800902752322145, 0.03521132469177246, -0.029586326330900192, 0.0656985342502594, 0.058414507657289505, -0.028997955843806267, -0.034612804651260376, -0.031029457226395607, -0.0032070823945105076, 0.02418435551226139, -0.05350678786635399, -0.04382336512207985, -0.06143256649374962, -0.08418745547533035, -0.02954552322626114, 0.0014233010588213801, -0.013182664290070534, -0.021421225741505623, -0.0013844450004398823, 0.0261850468814373, -0.029089687392115593, 0.03892481327056885, -0.027789441868662834, 0.02566523849964142, -0.03695215284824371, -0.033706359565258026, -0.016331791877746582, 0.02859257347881794, -0.018305232748389244, 0.006208179984241724, 0.008007940836250782, -0.03601997718214989, 0.007980638183653355, -0.010181419551372528, 0.009661948308348656, 0.021742524579167366, 0.020436447113752365, 0.010237091220915318 ]
[ -0.0687410980463028, -0.015381285920739174, -0.03790988028049469, -0.021270165219902992, 0.04279014468193054, -0.04844167083501816, -0.015006698668003082, 0.01924949325621128, 0.009038328193128109, -0.019976980984210968, 0.020793801173567772, -0.027892017737030983, -0.0064218612387776375, -0.0071739694103598595, 0.06402669847011566, -0.007279406301677227, -0.025008607655763626, -0.05051218345761299, -0.028433073312044144, 0.05888576805591583, -0.01365287508815527, -0.034525733441114426, -0.03688614070415497, -0.029216231778264046, 0.003605172038078308, 0.04669681563973427, 0.04584324359893799, -0.025834551081061363, -0.022879816591739655, -0.21165288984775543, 0.011751249432563782, 0.022707784548401833, 0.023249005898833275, -0.015564341098070145, 0.023662663996219635, 0.04557411000132561, 0.0333654060959816, 0.007053406909108162, -0.00042168961954303086, 0.048607826232910156, 0.016347235068678856, 0.003705140668898821, -0.05901416391134262, -0.007332911249250174, 0.05135190486907959, 0.014326813630759716, -0.023516424000263214, -0.02344590052962303, 0.00038999950629658997, 0.021266158670186996, -0.04361302778124809, 0.004245981574058533, -0.0012111013056710362, -0.016163354739546776, 0.010869947262108326, 0.01586693711578846, 0.04099082201719284, 0.0576905831694603, 0.02400279976427555, 0.025555185973644257, 0.00598997063934803, 0.02088010497391224, -0.1374584436416626, 0.0771496593952179, 0.0369698591530323, 0.01506627257913351, -0.03981787711381912, -0.011456419713795185, -0.02497072145342827, 0.08478507399559021, 0.012944667600095272, -0.019158724695444107, -0.05231956019997597, 0.06217415630817413, -0.01849580556154251, 0.015322321094572544, -0.01315919030457735, 0.01072388980537653, 0.01903202384710312, -0.047887928783893585, -0.06385987997055054, 0.014242558740079403, -0.044126637279987335, -0.002685597399249673, -0.05701687932014465, 0.03155307471752167, -0.023854387924075127, 0.06802765280008316, 0.0097210006788373, 0.033510126173496246, 0.0402071550488472, 0.019636034965515137, 0.04740774258971214, 0.0215932484716177, -0.09690147638320923, -0.02670389600098133, 0.0019903588108718395, 0.016340358182787895, 0.007230647373944521, 0.4117715358734131, 0.019880937412381172, -0.007730201352387667, 0.029854251071810722, 0.02293270267546177, -0.010845492593944073, 0.00046263521653600037, -0.00511390995234251, -0.05793074145913124, 0.03588719666004181, -0.009843162260949612, 0.00994806457310915, -0.022809743881225586, 0.05588671565055847, -0.09967254102230072, 0.016424987465143204, 0.02253384329378605, 0.05262035131454468, 0.024608803912997246, -0.02908477745950222, 0.0015839397674426436, -0.0217642430216074, -0.00005534456795430742, 0.0280146561563015, 0.022861532866954803, 0.058150701224803925, -0.011194420047104359, 0.03218311071395874, 0.052529990673065186, 0.02418176457285881, 0.023609187453985214, 0.049446601420640945, 0.004930275958031416, -0.051024485379457474, 0.026890883222222328, -0.008975132368505001, 0.007744849659502506, 0.02544003538787365, -0.0324142761528492, -0.01909792609512806, 0.04131731018424034, -0.04152148962020874, -0.02306024543941021, 0.010402859188616276, 0.00375322625041008, -0.03763427957892418, 0.11290010064840317, 0.018534531816840172, -0.04273354262113571, -0.02546926774084568, -0.0437082014977932, 0.001159784267656505, 0.055036887526512146, 0.009997958317399025, -0.059477027505636215, -0.009937047958374023, 0.01640264503657818, 0.08069472759962082, -0.007996635511517525, -0.09645405411720276, -0.012064686045050621, -0.01613103412091732, -0.0320318266749382, -0.03680233657360077, 0.07986482232809067, 0.044304847717285156, -0.08321917802095413, -0.02077835239470005, 0.029625335708260536, 0.02269737608730793, -0.06046570464968681, 0.02534930408000946, -0.005955382250249386, -0.05757160484790802, -0.043325576931238174, 0.05212921276688576, -0.02003907412290573, -0.023199915885925293, 0.0010143392719328403, 0.04835982620716095, 0.0012348139425739646, -0.012072259560227394, 0.003063247771933675, -0.040942445397377014, 0.008471501059830189, -0.06806869059801102, -0.09537896513938904, -0.09208424389362335, 0.03397557884454727, -0.052970997989177704, -0.009253541007637978, -0.01603521779179573, -0.003450852818787098, -0.08360740542411804, 0.08530870825052261, -0.0554056242108345, -0.046192511916160583, -0.003619590774178505, 0.03425673395395279, -0.03351273015141487, -0.03822033107280731, 0.020219482481479645, 0.020352179184556007, -0.030729414895176888, 0.0258006788790226, -0.032525766640901566, 0.009864214807748795, 0.05987013876438141, -0.021646250039339066, 0.08743879944086075, 0.0366644486784935, -0.0431164987385273, 0.010475890710949898, -0.0022339641582220793, 0.03761591389775276, -0.01312248595058918, -0.017236750572919846, -0.01681957207620144, -0.03032384254038334, 0.024661976844072342, 0.03183147311210632, -0.039153967052698135, -0.025949625298380852, -0.0018362246919423342, -0.3457220792770386, -0.04170762002468109, -0.007063254714012146, -0.01666501723229885, 0.03871104493737221, -0.03653382137417793, 0.02935163490474224, -0.012675910256803036, 0.01497702021151781, 0.0020325835794210434, 0.06172061711549759, -0.026271989569067955, 0.02108812890946865, -0.09309662878513336, -0.004110401961952448, 0.059398356825113297, -0.015955651178956032, -0.02129817195236683, -0.017471125349402428, 0.028057437390089035, 0.0014037409564480186, -0.0605756901204586, -0.02298578806221485, -0.04781701788306236, -0.002370534697547555, -0.012789549306035042, 0.09814002364873886, 0.0197108406573534, 0.05722595006227493, -0.033596135675907135, 0.052048325538635254, -0.00035737804137170315, -0.026045553386211395, -0.07631455361843109, -0.007590193301439285, -0.019956128671765327, 0.022159768268465996, 0.026284245774149895, -0.017398685216903687, 0.003398069180548191, -0.05040731653571129, -0.016779804602265358, -0.07119326293468475, -0.04045946151018143, -0.006314689293503761, 0.023901959881186485, -0.04916632920503616, 0.017233358696103096, -0.0086873359978199, 0.07071828097105026, 0.01149576622992754, 0.028999339789152145, 0.0012925730552524328, 0.019091876223683357, 0.028129762038588524, -0.02425011619925499, -0.08296028524637222, -0.02507176622748375, 0.02771308459341526, 0.008451650850474834, 0.024415934458374977, 0.06028791144490242, 0.031023820862174034, -0.06647634506225586, 0.005505305249243975, 0.012735540047287941, -0.028586728498339653, -0.00036052032373845577, 0.04394729807972908, -0.03839237615466118, -0.025809522718191147, 0.10259697586297989, -0.000497852626722306, 0.03083333559334278, 0.02147424966096878, 0.03765660896897316, -0.01844574138522148, 0.008879991248250008, 0.016536109149456024, 0.01393313892185688, 0.041830502450466156, -0.024180229753255844, 0.06465296447277069, -0.0314866341650486, -0.03654034063220024, 0.05737685039639473, 0.022640937939286232, -0.0630003809928894, 0.06918817013502121, 0.012601593509316444, -0.03408768028020859, 0.0009962354088202119, -0.012740525417029858, -0.06558024883270264, 0.06760723143815994, -0.025513499975204468, -0.2636262774467468, 0.02933778055012226, 0.020612947642803192, 0.06982281804084778, 0.005509215407073498, 0.003982591908425093, 0.017047394067049026, -0.03128788620233536, -0.0034326999448239803, 0.015263164415955544, 0.022294435650110245, 0.0744430422782898, -0.02768552489578724, -0.0024475210811942816, 0.006255753803998232, -0.004668284673243761, 0.029150206595659256, 0.007708652876317501, 0.002331743948161602, 0.023834308609366417, 0.02777876891195774, -0.03453325480222702, 0.1693277806043625, 0.028838060796260834, -0.00985066406428814, 0.03581434115767479, -0.032877758145332336, 0.030921731144189835, 0.06295903772115707, -0.004751648288220167, -0.0008214718545787036, 0.04949559271335602, 0.0042466456070542336, 0.02481687068939209, 0.03812328726053238, -0.03363819047808647, -0.025880705565214157, 0.06735752522945404, 0.038184985518455505, -0.012968170456588268, -0.005140350665897131, 0.03954240307211876, -0.02829568460583687, 0.03181460127234459, 0.055872686207294464, -0.03228963539004326, 0.001617732923477888, -0.024217769503593445, -0.06912385672330856, 0.0015126026701182127, -0.04281987249851227, -0.0441892109811306, -0.024351399391889572, -0.019857412204146385, 0.003672196064144373, 0.07966635376214981, 0.01651303842663765, -0.02896443009376526, 0.045584142208099365, 0.00878872349858284, -0.024489130824804306, -0.049395397305488586, 0.10374941676855087, -0.0031722828280180693, 0.018713876605033875 ]
[ 0.03811413794755936, 0.05745770409703255, -0.05378677695989609, 0.05152728036046028, -0.03003877028822899, -0.017604133114218712, -0.007669564802199602, -0.011674425564706326, -0.0017726791556924582, -0.01454914454370737, -0.03201759606599808, 0.005016977898776531, 0.03182859346270561, -0.04033651947975159, -0.03296709433197975, 0.010090825147926807, 0.0019100736826658249, 0.03883855789899826, 0.02258901298046112, -0.021272404119372368, -0.03497761860489845, 0.0063179004937410355, 0.04989005997776985, -0.0012223519152030349, -0.007460558321326971, 0.030584555119276047, -0.014675197191536427, -0.02997346594929695, 0.0005917008966207504, -0.12729839980602264, -0.01097565982490778, -0.021697452291846275, 0.015003496780991554, 0.006962647661566734, -0.010910989716649055, 0.0070791468024253845, 0.06510376185178757, 0.053388576954603195, -0.00008577755943406373, 0.03749190643429756, 0.023108260706067085, -0.0024538575671613216, -0.021150680258870125, -0.022908059880137444, 0.011218417435884476, -0.04369974136352539, -0.06763367354869843, -0.043334074318408966, 0.018400544300675392, 0.016253909096121788, -0.04818495735526085, 0.014269930310547352, -0.02556055411696434, 0.01920820213854313, -0.012780607677996159, -0.02217646688222885, -0.02188667468726635, 0.009021404199302197, -0.01674496755003929, -0.0021949629299342632, 0.0182828139513731, -0.013049844652414322, -0.057398609817028046, -0.017301425337791443, 0.004241537768393755, -0.030722998082637787, 0.00974398385733366, 0.01974419876933098, 0.030559534206986427, 0.027299808338284492, -0.016234420239925385, 0.04618704691529274, -0.05546732619404793, -0.026123855262994766, -0.034442685544490814, 0.037883318960666656, 0.045552413910627365, -0.02727651037275791, 0.00018338552035856992, 0.012072122655808926, -0.02803216688334942, 0.021462198346853256, -0.019168861210346222, 0.00923698116093874, -0.05250842496752739, 0.02202209271490574, -0.01883423700928688, 0.0027561960741877556, -0.002261390443891287, -0.01040177047252655, 0.004224854055792093, -0.010116654448211193, -0.000988472136668861, -0.038891758769750595, -0.08140221983194351, -0.03328564390540123, -0.00878429226577282, 0.026378769427537918, 0.010239246301352978, 0.8243351578712463, 0.0077720158733427525, 0.03329258784651756, -0.02459525689482689, -0.003406952368095517, -0.005464584566652775, -0.013318240642547607, 0.062357667833566666, 0.02207043208181858, 0.010157201439142227, -0.014986171387135983, -0.008321781642735004, -0.013410559855401516, 0.022663509473204613, 0.001701917266473174, 0.0037949043326079845, 0.012833363376557827, -0.0006950658280402422, -0.04431852698326111, 0.00841932650655508, 0.020331058651208878, 0.014166009612381458, 0.00416934909299016, -0.0020014168694615364, 0.03545788675546646, 0.03303411602973938, -0.13989894092082977, -0.011314865201711655, -6.799738173143711e-33, 0.047363217920064926, -0.02358810417354107, 0.061124976724386215, 0.01567729562520981, 0.0246941726654768, 0.045992814004421234, 0.012673486955463886, -0.03150532767176628, 0.00059650803450495, -0.03200513496994972, 0.009111003018915653, -0.014841275289654732, -0.004945951513946056, -0.006898610852658749, 0.005873912945389748, -0.052137795835733414, 0.015981236472725868, 0.0037235035561025143, -0.0019871611148118973, 0.010443693026900291, 0.0076806191354990005, 0.03636517748236656, -0.007534083444625139, 0.050416141748428345, 0.011585503816604614, 0.017594771459698677, -0.008786371909081936, 0.0007132245227694511, -0.023561934009194374, -0.036394357681274414, -0.049978531897068024, 0.01722082495689392, -0.024440256878733635, -0.026901479810476303, 0.009328003041446209, -0.05136765539646149, -0.014586400240659714, 0.008431286551058292, 0.01875595934689045, -0.03945087641477585, -0.0495927557349205, -0.011147801764309406, -0.013464216142892838, -0.017763691022992134, -0.022011473774909973, -0.03764919564127922, -0.016533108428120613, 0.06661368906497955, -0.009090282954275608, 0.01928647793829441, 0.019704915583133698, 0.01117467787116766, 0.03220938518643379, 0.011975668370723724, -0.020782526582479477, -0.021996626630425453, 0.004283739719539881, -0.014169415459036827, 0.0016290898201987147, 0.052505090832710266, 0.006493819877505302, 0.022176455706357956, -0.013609252870082855, 0.04421713203191757, 0.032591313123703, 0.017313797026872635, 0.026588179171085358, 0.030440393835306168, 0.0011944264406338334, 0.0456724651157856, -0.02808290719985962, 0.054957065731287, -0.004693420138210058, 0.0003717832441907376, 0.02159375511109829, -0.02635485865175724, -0.009759129025042057, -0.007308407220989466, 0.01269909180700779, 0.03906292840838432, -0.016282308846712112, -0.014118334278464317, 0.02013154700398445, -0.03035900555551052, -0.007737971842288971, -0.005688638426363468, 0.03398068621754646, 0.02712557464838028, -0.01022542268037796, 0.017482738941907883, 0.04532594233751297, 0.019562633708119392, -0.03994128480553627, -0.02967122197151184, 0.007630628999322653, 6.97131553264164e-33, 0.003734755329787731, 0.003387085162103176, -0.031181147322058678, 0.00932615902274847, -0.002594204153865576, 0.02431476302444935, 0.016965894028544426, -0.0007324836333282292, -0.03861606493592262, 0.034203920513391495, -0.0008719201432541013, 0.008308783173561096, -0.0035291574895381927, 0.03758746385574341, 0.05986246466636658, -0.000031372401281259954, -0.005631914362311363, -0.046496596187353134, 0.036786384880542755, 0.02543088234961033, -0.013241162523627281, -0.001163605134934187, 0.007126662880182266, 0.04010958597064018, 0.03413290157914162, 0.0007950537838041782, -0.004211644642055035, 0.005079246126115322, -0.00552476616576314, 0.002248297678306699, -0.002838386921212077, -0.05660780519247055, -0.012412057258188725, 0.01856972649693489, -0.03078920766711235, 0.025195635855197906, -0.0009679670329205692, 0.020601850003004074, 0.03941367194056511, 0.006256862077862024, 0.00788195338100195, 0.00162191700655967, -0.016072584316134453, 0.03848309814929962, 0.009777865372598171, 0.017612561583518982, 0.03269859775900841, 0.01464170590043068, -0.024694548919796944, -0.004356270655989647, -0.0013791914097964764, 0.009504403918981552, -0.015023268759250641, 0.042000558227300644, 0.0044376179575920105, -0.03956824541091919, -0.019329290837049484, 0.007939263246953487, -0.04543861374258995, 0.0011189836077392101, -0.05541713535785675, 0.026886215433478355, -0.008733957074582577, 0.027589526027441025, -0.038240522146224976, -0.016643894836306572, 0.011555221863090992, -0.028163298964500427, -0.012111513875424862, -0.029409212991595268, 0.03908826783299446, -0.009472628124058247, -0.014425089582800865, 0.04256070405244827, 0.006968463771045208, -0.021263452246785164, -0.05490245670080185, 0.023941645398736, -0.040156979113817215, 0.060267124325037, 0.02298705279827118, 0.0022992815356701612, 0.038596607744693756, 0.0030341334640979767, 0.02003462426364422, 0.012105019763112068, -0.019908254966139793, 0.03702080249786377, -0.007564493454992771, -0.026468589901924133, 0.019951870664954185, -0.008179563097655773, -0.04451650753617287, 0.03958140313625336, -0.025777066126465797, -1.2356213829889384e-8, -0.01577778533101082, -0.00281341141089797, -0.023342180997133255, 0.034667402505874634, 0.02862009033560753, -0.0016597573412582278, -0.03238533437252045, -0.030218463391065598, -0.0488082617521286, 0.006644404027611017, 0.012346256524324417, -0.025341292843222618, -0.0073878346011042595, 0.004868109244853258, 0.007130032405257225, -0.03951103985309601, 0.04186378791928291, -0.03579782694578171, 0.03087746538221836, 0.007035727147012949, -0.018874410539865494, 0.05587893724441528, -0.017412656918168068, -0.003062847536057234, -0.00907509122043848, -0.0005081274430267513, 0.017846474424004555, -0.06856227666139603, -0.0010525757679715753, -0.02695196121931076, 0.03957011550664902, -0.03821594640612602, -0.05017691105604172, 0.0012972451513633132, -0.007482561748474836, -0.07031522691249847, 0.026999456807971, 0.012929772958159447, 0.005928540136665106, 0.007467090617865324, -0.011938944458961487, 0.017641207203269005, -0.02470085397362709, -0.03649957850575447, -0.01786871813237667, -0.0032578688114881516, -0.031011225655674934, -0.04640013724565506, 0.03850340470671654, -0.03511059284210205, 0.029770568013191223, 0.019231043756008148, 0.028827760368585587, 0.0413779616355896, 0.018118171021342278, 0.012196949683129787, 0.02655407227575779, -0.02524508535861969, -0.014645807445049286, 0.015883971005678177, 0.02522958442568779, 0.011680065654218197, -0.02052493207156658, -0.022317511960864067 ]
bash-piping-data-into-a-command-using-heredocs
https://markhneedham.com/blog/2012/09/15/bash-piping-data-into-a-command-using-heredocs
false
2012-09-15 09:06:02
cURL and the case of the carriage return
[ "shell" ]
[ "Shell Scripting" ]
We were doing some work this week where we needed to make a couple of calls to an API via a shell script and in the first call we wanted to capture one of the lines of the HTTP response headers and use that as in input to the second call. The way we were doing this was something like the following: [source,text] ---- #!/bin/bash # We were actually grabbing a different header but for the sake # of this post we'll say it was 'Set-Cookie' AUTH_HEADER=`curl -I http://www.google.co.uk | grep Set-Cookie` echo $AUTH_HEADER ---- When we echoed +++<cite>+++$AUTH_HEADER+++</cite>+++ it looked exactly as we'd expect... [source,text] ---- $ ./blah.txt 2>/dev/null Set-Cookie: NID=63=gwfYa4fhbdqYyEdySrFn1AYybExgjQbQUKPdC5sZ5orRznGY-bt3gTwlc0XaPXv TxmCIyjDzKWOGBCYlOouQ5-2l7gQGOAj90VrY3LLabRqwJ5Y3zlf-dNR6Y5U3VDKw; expires=Sun, 17-Mar-2013 08:28:25 GMT; path=/; domain=.google.co.uk; HttpOnly ---- ...but when we passed that value into the next cURL command it was returning a 401 response code which suggested that we hadn't even sent the header at all. We changed the code so that we manually assigned +++<cite>+++AUTH_HEADER+++</cite>+++ with the correct value and then everything worked fine which suggested there was something weird in the value we were getting back from cURL. We were constructing the arguments to our next cURL command like so: [source,text] ---- #!/bin/bash # We were actually grabbing a different header but for the sake # of this post we'll say it was 'Set-Cookie' AUTH_HEADER=`curl -I http://www.google.co.uk | grep Set-Cookie` echo $AUTH_HEADER ARGS="-H $AUTH_HEADER OTHER RANDOM STUFF HERE" echo $ARGS ---- When we ran that we noticed that +++<cite>+++$ARGS+++</cite>+++ was displaying some quite strange behaviour where the text after +++<cite>+++$AUTH_HEADER+++</cite>+++ was overriding the value of +++<cite>+++$AUTH_HEADER+++</cite>+++: [source,text] ---- $ ./blah.txt 2>/dev/null Set-Cookie: NID=63=rma3ah7oBhyirDUqFPODHfaTK9XOqs0CPapYVgTM6vHyCgDTcXs2P_mVDI_hnsap 33E3E6k54b50J8MLc85JadBAiMdhq5HDeH-LbLqwy_hUAOj-1w-YwZOHW7okuiEy; expires=Sun, 17-Mar-2013 08:37:47 GMT; path=/; domain=.google.co.uk; HttpOnly Set-Cookie: NID=63=rma3ah7oBhyirDUqFPODHfaTK9XOqs0CPapYVgTM6vHyCgDTcXs2P_mVDI_hnsap 33E3E6k54b50J8MLc85JadBAiMdhq5HDeH-LbLqwy_hUAOj-1w-YwZOHW7okuiEy; expires=Sun, 17-Mar-2013 08:37:47 GMT; path=/; dom RANDOM TEXT SO RANDOMpOnly ---- https://twitter.com/psd[Paul] was wondering by at the time so we asked him if he could think of anything that could be leading to what we were seeing. He suggested there was probably a http://www.maxi-pedia.com/Line+termination+line+feed+versus+carriage+return+0d0a[carriage return] lurking at the end of the line. https://twitter.com/nickstenning[Nick] showed us how we could prove that was the case using +++<cite>+++http://linuxcommand.org/man_pages/xxd1.html[xxd]+++</cite>+++: [source,text] ---- xxd <<< $AUTH_HEADER ---- When we ran the script again we could see the carriage return character (0d) at the end of the line: [source,text] ---- $ ./blah.txt 2>/dev/null Set-Cookie: NID=63=QDECY69302tLN0CSMyug-TzzczxzGNWs70i8huV60qM7BFv18F63dNSz4trqzHXvzbKXNLb gBcLKKCTuOSTCjS6w_6UNJVrkZ6G_lLxSSyCeHaK4iJGW8XWu86i7CsOB; expires=Sun, 17-Mar-2013 08:55:37 GMT; path=/; domain=.google.co.uk; HttpOnly ... 0000160: 2f3b 2064 6f6d 6169 6e3d 2e67 6f6f 676c /; domain=.googl 0000170: 652e 636f 2e75 6b3b 2048 7474 704f 6e6c e.co.uk; HttpOnl 0000180: 790d 0d0a y.. ---- Nick then showed us how to get rid of it using +++<cite>+++tr+++</cite>+++ like so: [source,text] ---- AUTH_HEADER=`curl -I http://www.google.co.uk | grep Set-Cookie` | tr -d '\r'` ----
null
null
[ 0.01131274364888668, -0.01548893004655838, -0.01609261892735958, 0.03283493220806122, 0.06526511162519455, -0.0028059035539627075, 0.010122229345142841, 0.03935754671692848, 0.014795564115047455, -0.019127164036035538, -0.033960774540901184, 0.0020194079261273146, -0.06858113408088684, -0.012413819320499897, -0.023109177127480507, 0.05068839341402054, 0.06859403848648071, -0.008477848954498768, -0.01591756008565426, -0.0035505753476172686, 0.03330540284514427, 0.035708945244550705, -0.012037886306643486, -0.009137319400906563, 0.03685079142451286, 0.013444717042148113, -0.021305494010448456, -0.033775243908166885, -0.09046538174152374, 0.025325335562229156, 0.028623338788747787, 0.00533908698707819, 0.003510267473757267, -0.019689245149493217, 0.02719305269420147, -0.0028157911729067564, -0.0021923487074673176, -0.007219596765935421, 0.006193290930241346, 0.04394170269370079, -0.04275916889309883, 0.013732302002608776, -0.025127338245511055, 0.022243330255150795, -0.061663735657930374, -0.008704809471964836, -0.03336654603481293, 0.01416171994060278, -0.0035099575761705637, -0.011716634035110474, -0.06309939175844193, 0.016247812658548355, -0.03518876060843468, -0.051821667701005936, 0.04739445075392723, 0.0406884141266346, 0.009615585207939148, -0.07348628342151642, 0.00374759454280138, -0.05318097397685051, 0.005128090735524893, 0.00762235838919878, 0.0034312373027205467, 0.001143569010309875, -0.015349272638559341, -0.009138149209320545, 0.0025026651564985514, 0.034569624811410904, -0.04802797734737396, -0.01329054869711399, 0.013567245565354824, 0.012849625200033188, -0.03799485042691231, -0.012404480017721653, 0.023251807317137718, -0.018859535455703735, -0.007056564558297396, 0.038128528743982315, 0.008762353099882603, 0.07978519797325134, -0.032503437250852585, 0.007884493097662926, 0.023975351825356483, 0.01605440303683281, 0.004282756242901087, -0.03179870918393135, -0.011777411215007305, -0.0011140505084767938, -0.023157581686973572, 0.06357905268669128, 0.02890174277126789, -0.0564446896314621, 0.0009072395623661578, 0.02581676095724106, 0.0071006957441568375, 0.002680734498426318, 0.014491497538983822, -0.0012744488194584846, -0.011121287941932678, -0.007421954069286585, -0.061278317123651505, 0.006784254685044289, 0.0120444530621171, 0.012869511730968952, -0.08020010590553284, 0.011917670257389545, -0.027785105630755424, -0.027013642713427544, -0.006892307195812464, -0.014373758807778358, -0.00006010834840708412, 0.01961527019739151, -0.006394607946276665, 0.010206191800534725, -0.050539787858724594, 0.04868023842573166, 0.007168459240347147, -0.052889373153448105, 0.004824967123568058, 0.04043005034327507, 0.016661930829286575, 0.045874129980802536, -0.0095547279343009, 0.06685063242912292, 0.03866785764694214, 0.03953411057591438, 0.013584775850176811, 0.030066249892115593, -0.006037195213139057, -0.08462569862604141, -0.014544488862156868, 0.06955645978450775, 0.0022093388251960278, 0.009780341759324074, 0.007405302952975035, -0.00007234551594592631, -0.015348325483500957, -0.02261122316122055, 0.059842273592948914, 0.010217833332717419, -0.0025976086035370827, -0.01790759526193142, -0.02996484562754631, 0.003936379216611385, 0.054801203310489655, 0.014785582199692726, -0.00915513839572668, -0.05541640520095825, -0.03581664711236954, 0.041623689234256744, 0.004577286075800657, -0.020305825397372246, 0.048976507037878036, -0.0374833382666111, -0.018757274374365807, 0.04800603166222572, 0.028405610471963882, 0.04166114702820778, -0.04724687337875366, -0.0062978919595479965, 0.02407924085855484, 0.030080335214734077, -0.007167517673224211, 0.04617932438850403, 0.018352054059505463, -0.010252322070300579, -0.013283228501677513, 0.043540000915527344, -0.01027030497789383, 0.01743319444358349, -0.058685511350631714, -0.06935146450996399, 0.07646573334932327, -0.0035860692150890827, -0.0027873043436557055, 0.003409431781619787, 0.07371918112039566, 0.01627967320382595, 0.06636646389961243, 0.010188331827521324, -0.07103841751813889, 0.0472133532166481, 0.030311862006783485, 0.061862293630838394, 0.04437488317489624, 0.0025840920861810446, 0.06927039474248886, 0.02030160464346409, 0.007940332405269146, 0.023939188569784164, -0.08168720453977585, -0.07639756798744202, -0.03570078685879707, 0.014607427641749382, 0.05409904941916466, -0.033880751579999924, 0.004581857472658157, 0.07744226604700089, 0.020071497187018394, 0.026683587580919266, -0.00498116435483098, -0.0011338923359289765, 0.056360844522714615, -0.0530337356030941, -0.04436032474040985, 0.014224228449165821, 0.05030990391969681, -0.007278083823621273, -0.019938133656978607, 0.0023671032395213842, -0.054190102964639664, 0.04667850211262703, 0.025232331827282906, -0.022092191502451897, 0.0119872335344553, -0.003277186071500182, 0.04579590633511543, -0.01170197781175375, 0.03000391647219658, -0.05365435779094696, 0.036816924810409546, 0.0244076456874609, -0.016972623765468597, 0.025348247960209846, -0.012106847949326038, 0.1373225599527359, 0.0641157403588295, 0.0030236782040446997, -0.028516337275505066, 0.023358410224318504, 0.020038630813360214, -0.05383952707052231, -0.022153418511152267, -0.011813223361968994, -0.055072102695703506, 0.047109369188547134, -0.022817926481366158, -0.012610454112291336, 0.015802457928657532, -0.030372455716133118, 0.011823311448097229, 0.07419805973768234, -0.015385287813842297, 0.05207376182079315, -0.040298447012901306, 0.007645688485354185, -0.03221749886870384, -0.046375226229429245, -0.05395646020770073, -0.011102668009698391, 0.02161661721765995, -0.010025816038250923, 0.02931150607764721, -0.04418327286839485, -0.015103716403245926, -0.012035594321787357, -0.06942427158355713, 0.018597032874822617, 0.02093382366001606, 0.059788789600133896, -0.032811399549245834, 0.06565970182418823, 0.005784178152680397, 0.03029097244143486, -0.0076103853061795235, -0.03377753496170044, -0.04002853110432625, -0.0037755356170237064, -0.01607649214565754, 0.019406478852033615, 0.02861757017672062, 0.021886048838496208, 0.006359536666423082, -0.006119958125054836, -0.0008643552428111434, -0.017209922894835472, 0.03639976680278778, -0.017512770369648933, -0.003319919342175126, -0.0364110991358757, 0.01345882285386324, 0.04428312927484512, -0.06957365572452545, -0.00532714044675231, 0.020967910066246986, -0.06683234125375748, 0.055202145129442215, -0.06127374246716499, -0.04735635593533516, -0.022486455738544464, -0.007711528800427914, 0.022276943549513817, 0.007527082692831755, 0.04969847574830055, 0.06488137692213058, 0.0012214495800435543, 0.00408830726519227, 0.018131842836737633, 0.026961732655763626, 0.03856407478451729, -0.0031973221339285374, 0.00969791878014803, -0.00495246984064579, -0.029011761769652367, -0.032116688787937164, -0.04749821498990059, -0.008656776510179043, -0.04164920747280121, -0.2626561224460602, 0.03133406862616539, 0.021458661183714867, -0.023155104368925095, 0.02143499255180359, -0.019909942522644997, 0.022388868033885956, -0.05749157443642616, 0.002151845721527934, 0.025446541607379913, 0.016829242929816246, -0.05678737908601761, -0.010672267526388168, 0.02036590687930584, -0.014867923222482204, 0.011506686918437481, 0.0036351699382066727, -0.05803345888853073, 0.032632675021886826, -0.007535142824053764, 0.011684391647577286, -0.03798014670610428, 0.0336388535797596, 0.05429738014936447, 0.016885118559002876, 0.054912175983190536, -0.03407676890492439, 0.06961162388324738, -0.06327100843191147, -0.026501549407839775, 0.008878151886165142, -0.01644659787416458, 0.02143673598766327, 0.03971051797270775, -0.009704934433102608, -0.0016288134502246976, 0.061487022787332535, 0.011934000998735428, 0.020711857825517654, -0.010591758415102959, -0.024048728868365288, -0.04227950796484947, -0.00655988696962595, -0.024768993258476257, 0.09378881752490997, -0.028298230841755867, -0.0502341166138649, -0.041350431740283966, -0.013356958515942097, 0.059670574963092804, -0.03367816284298897, -0.03182700648903847, -0.06336143612861633, 0.02380308136343956, -0.017689324915409088, -0.0022532781586050987, -0.03752174228429794, -0.016613885760307312, -0.03991073742508888, -0.024960659444332123, 0.02840355969965458, -0.02812514640390873, -0.010865950956940651, -0.07143452018499374, -0.0010186252184212208, -0.03935089707374573, -0.03136575594544411, -0.04366476088762283, 0.08872116357088089, 0.023467589169740677, -0.02197214961051941, 0.026196274906396866, -0.026660555973649025, -0.10027429461479187, 0.012054743245244026, -0.062362223863601685, -0.02811768278479576, 0.009618229232728481, -0.009629704989492893, 0.010511361993849277, -0.026290105655789375, -0.0451919361948967, 0.006673963740468025, -0.007834509946405888, 0.020714769139885902, -0.040887780487537384, 0.014352500438690186, -0.007376523222774267, -0.006721473298966885, 0.006059792824089527, 0.08230679482221603, -0.05470314249396324, -0.0792582780122757, -0.019572369754314423, -0.004138311371207237, 0.01972329057753086, -0.000765205011703074, -0.009531736373901367, -0.00038473878521472216, 0.03783981874585152, 0.038209956139326096, -0.04731067642569542, 0.009765353053808212, -0.08129411190748215, -0.01247811783105135, 0.0007314037065953016, -0.05207068473100662, 0.033328041434288025, 0.019247379153966904, 0.03888444975018501, -0.015347689390182495, 0.00019818991131614894, 0.018177444115281105, -0.03433605656027794, -0.0349508635699749, -0.009495032951235771, -0.00911545380949974, 0.02434268221259117, 0.03985109180212021, -0.021791430190205574, -0.03844105079770088, -0.0050891730934381485, 0.04461556673049927, -0.02010512165725231, -0.035878829658031464, -0.0536019504070282, 0.008310091681778431, 0.015758607536554337, 0.013038338162004948, 0.01726546511054039, -0.004520604386925697, 0.024801678955554962, 0.036325667053461075, -0.014680656604468822, -0.00546779902651906, 0.006107356399297714, -0.02405441366136074, -0.025884408503770828, 0.0083778640255332, 0.024139925837516785, -0.038148894906044006, 0.005733477883040905, 0.0016369189834222198, 0.05520548298954964, 0.05344991385936737, -0.003636529203504324, 0.01924240030348301, -0.008789748884737492, -0.01075518038123846, -0.0007135955966077745, 0.02441375143826008, -0.027241069823503494, 0.01227492094039917, -0.025387488305568695, -0.01027652807533741, -0.019223352894186974, 0.05273504927754402, 0.0216254573315382, -0.029810823500156403, -0.011245613917708397, 0.010145220905542374, -0.075733982026577, 0.004930304363369942, 0.022082379087805748, -0.03394261747598648, 0.021453654393553734, -0.029652267694473267, 0.02633500099182129, 0.0024118090514093637, -0.0020119708497077227, 0.007607159670442343, 0.04344671592116356, -0.03110802359879017, 0.02442442625761032, 0.0005211246316321194, -0.009624610655009747, 0.002110235160216689, 0.014598013833165169, 0.01933964528143406, -0.02145007811486721, 0.00320951989851892, -0.015045681037008762, 0.021668007597327232, 0.018600504845380783, 0.06697408854961395, 0.019565049558877945, 0.0015473500825464725, 0.012047137133777142, 0.0007972153252921999, -0.016049271449446678, -0.0346229188144207, -0.02087472379207611, -0.004894294776022434, 0.01170408632606268, -0.014904135838150978, -0.0751378983259201, 0.04132549464702606, 0.04999474808573723, 0.009122820571064949, -0.0007548935245722532, -0.011374049820005894, 0.03035406768321991, -0.03686351701617241, 0.031746141612529755, 0.019697850570082664, -0.05297310650348663, -0.00875065103173256, -0.015480086207389832, 0.010135744698345661, 0.014979597181081772, 0.005565551575273275, -0.060840073972940445, -0.020265016704797745, -0.011178247630596161, 0.04627125337719917, -0.05685724318027496, -0.06552863866090775, -0.015431093983352184, 0.018108537420630455, -0.018429400399327278, 0.014409597963094711, 0.0028119301423430443, 0.020261257886886597, -0.006346477195620537, -0.03429853916168213, -0.007975838147103786, -0.03950011730194092, -0.0003687260905280709, 0.025047147646546364, -0.002605559304356575, 0.057368408888578415, -0.000027910245989914984, 0.030595820397138596, 0.01831279695034027, -0.02635096199810505, -0.05548497289419174, -0.03161647543311119, -0.0008983116713352501, -0.059998828917741776, 0.05096077173948288, 0.0021480212453752756, -0.014541364274919033, -0.021942686289548874, -0.011977632530033588, -0.0007524295942857862, 0.011300361715257168, -0.015604190528392792, -0.0016627854201942682, 0.01411411538720131, 0.07296675443649292, 0.014555883593857288, 0.03245750814676285, 0.006826434750109911, -0.03911697864532471, 0.04965886101126671, -0.04120896756649017, -0.021824143826961517, -0.026665518060326576, -0.0513632632791996, 0.029339877888560295, 0.04436725750565529, 0.024135500192642212, -0.09886422008275986, 0.05052554979920387, 0.030009498819708824, 0.024744579568505287, 0.03939568251371384, -0.010925349779427052, 0.024721553549170494, -0.03324960172176361, -0.024417148903012276, -0.06927432864904404, 0.022606397047638893, 0.01898880861699581, -0.02284976840019226, -0.02103985659778118, 0.02074565179646015, -0.028941132128238678, 0.027441097423434258, -0.067644864320755, -0.04202720895409584, 0.03845592960715294, -0.00981105025857687, -0.02328687347471714, 0.020235933363437653, -0.08843428641557693, 0.02313334494829178, 0.05315958708524704, -0.051988981664180756, -0.008057257160544395, -0.03340212628245354, 0.09877089411020279, -0.00993664376437664, 0.05805538594722748, -0.030924223363399506, -0.05300411209464073, 0.06882254779338837, 0.02561211958527565, -0.019172947853803635, 0.04094019904732704, -0.023249952122569084, 0.009702043607831001, 0.0009167002863250673, -0.015628313645720482, 0.00575908413156867, 0.005235347896814346, -0.01225646398961544, -0.03308313339948654, -0.003746338887140155, -0.02300599031150341, -0.02994786947965622, -0.012956085614860058, 0.06054868921637535, -0.0038255678955465555, -0.03260248526930809, -0.06949526816606522, 0.026134824380278587, -0.03214744105935097, -0.05309054255485535, 0.0047182077541947365, 0.02054661139845848, -0.022830462083220482, 0.062379784882068634, 0.011293760500848293, 0.016104239970445633, 0.06550836563110352, -0.002396783558651805, -0.006870107259601355, 0.017153864726424217, 0.06583032011985779, 0.06761004030704498, 0.02061307057738304, 0.01848989725112915, 0.03703336790204048, -0.002989139873534441, -0.03125925362110138, 0.012872290797531605, -0.02693893574178219, -0.030119186267256737, -0.019466828554868698, -0.009895441122353077, 0.07784520834684372, -0.0251532681286335, 0.057353224605321884, -0.0043334984220564365, 0.0060470267198979855, -0.006451013498008251, 0.04990518465638161, 0.05410967394709587, 0.04455474019050598, 0.021273016929626465, 0.01328915823251009, -0.01247768010944128, -0.05552983283996582, 0.04108652099967003, -0.00273339357227087, -0.013141530565917492, 0.015768254175782204, -0.02486473321914673, 0.030597057193517685, 0.0027026254683732986, 0.0069810776039958, 0.06577954441308975, -0.001772811752744019, -0.004760324023663998, 0.008671636693179607, 0.052434634417295456, 0.007398888934403658, 0.04204697161912918, 0.003549487330019474, -0.006572303827852011, -0.02426534704864025, -0.07659641653299332, -0.04944312945008278, -0.010218312032520771, -0.016489369794726372, 0.04788697138428688, 0.0025016076397150755, -0.001326694735325873, 0.024562595412135124, 0.017845388501882553, -0.008050121366977692, -0.05364863947033882, -0.06858016550540924, -0.04265313595533371, -0.024320192635059357, -0.05189204588532448, 0.030012279748916626, 0.007549722213298082, -0.05091521516442299, 0.002419979777187109, -0.049709975719451904, -0.007244309410452843, 0.016474692150950432, -0.03823087364435196, -0.00439479248598218, 0.020853398367762566, 0.016774099320173264, 0.015561756677925587, 0.006955339573323727, 0.016097450628876686, 0.011856986209750175, 0.007458878681063652, -0.004702552687376738, 0.00277486233972013, 0.04746957868337631, -0.0006941235042177141, -0.04379528388381004, -0.07303538918495178, 0.01250664982944727, 0.020317833870649338, 0.05263260379433632, -0.08236420899629593, 0.026856916025280952, 0.011546220630407333, -0.04627254605293274, 0.04698489233851433, -0.03905298188328743, -0.00782782956957817, -0.01591493748128414, -0.05351334810256958, 0.015775833278894424, -0.0025172040332108736, 0.04789762571454048, 0.015172893181443214, 0.10506614297628403, 0.06409752368927002, -0.03681628033518791, -0.02718675695359707, -0.0013153653126209974, -0.0196071807295084, 0.01483267080038786, -0.024138502776622772, -0.0319879874587059, -0.04242020100355148, -0.0720621645450592, -0.029272807762026787, 0.03361329436302185, 0.005050752777606249, -0.020574815571308136, 0.028910206630825996, 0.004303131718188524, -0.025210725143551826, 0.02743075042963028, -0.033213164657354355, 0.0018990262178704143, -0.02323608472943306, -0.01807284727692604, -0.014108952134847641, 0.039351291954517365, -0.00892997719347477, 0.011228864081203938, 0.02156556397676468, -0.021166451275348663, -0.030457381159067154, 0.008697303012013435, 0.0338267907500267, 0.05544693022966385, -0.037090763449668884, 0.035186804831027985 ]
[ -0.07406052201986313, -0.028281787410378456, -0.050330523401498795, -0.042708978056907654, 0.040628910064697266, -0.05691889300942421, 0.006887972820550203, 0.009775995276868343, -0.009853767231106758, -0.021419238299131393, 0.01882304437458515, -0.03516678139567375, 0.010640569031238556, -0.019430695101618767, 0.07477372139692307, -0.0025052425917237997, -0.0051206680946052074, -0.0708824023604393, -0.07387492805719376, 0.06022985279560089, 0.017710788175463676, -0.02012464590370655, -0.03004840575158596, -0.031014563515782356, -0.013018359430134296, 0.030525648966431618, 0.027033239603042603, -0.012392302975058556, -0.012675033882260323, -0.16858749091625214, 0.03547314926981926, -0.007658814545720816, 0.007403215393424034, -0.015963658690452576, 0.020473595708608627, 0.04788832738995552, 0.03656997159123421, -0.008569597266614437, 0.013492648489773273, 0.06757878512144089, 0.05929609015583992, 0.0019809179939329624, -0.06332360208034515, -0.03645627200603485, 0.032560672610998154, -0.012178385630249977, -0.0243417676538229, 0.0037640249356627464, -0.0017373876180499792, 0.01625254936516285, -0.06036854907870293, 0.01545795425772667, 0.020155388861894608, -0.017082709819078445, -0.0032375811133533716, 0.026578139513731003, 0.033200111240148544, 0.07140370458364487, -0.0038239893037825823, 0.02731117233633995, -0.005451845470815897, -0.02606305666267872, -0.14460335671901703, 0.10654345899820328, 0.035034943372011185, 0.04064882546663284, -0.03702116757631302, -0.008429031819105148, -0.02539323829114437, 0.07375826686620712, -0.014944815076887608, -0.032287392765283585, -0.07860790193080902, 0.05255594477057457, -0.00006233201565919444, 0.006626025773584843, 0.005050799809396267, 0.03984643518924713, 0.039517682045698166, -0.03180140629410744, -0.047557417303323746, -0.0253316480666399, -0.03212358430027962, -0.006282034795731306, -0.036229390650987625, -0.017558667808771133, 0.00046785565791651607, 0.073989138007164, 0.04765481501817703, 0.013705450110137463, 0.026021966710686684, -0.049608148634433746, 0.01980208232998848, 0.016337497159838676, -0.09074221551418304, 0.021811028942465782, 0.002988457912579179, 0.03556465357542038, -0.05246582254767418, 0.4229337275028229, 0.008588048629462719, -0.011025545187294483, 0.01396104320883751, -0.02498553693294525, 0.041068706661462784, 0.005812813527882099, 0.0033172122202813625, -0.04760952666401863, 0.006198652554303408, -0.04945879057049751, 0.012656393460929394, 0.0014177534030750394, 0.06451781839132309, -0.06068184971809387, -0.0048980494029819965, 0.01682988367974758, 0.025563402101397514, 0.020280539989471436, -0.021999623626470566, -0.010359826497733593, -0.010304724797606468, -0.011858906596899033, 0.03476801887154579, 0.017512165009975433, 0.02269604429602623, -0.0069167460314929485, 0.06283228099346161, 0.06693906337022781, 0.0034328745678067207, 0.04709126055240631, 0.05101955682039261, -0.031149012967944145, -0.02334437519311905, -0.008807675912976265, -0.020730219781398773, 0.04387027025222778, 0.026340628042817116, -0.031116293743252754, 0.0134897381067276, 0.04120601713657379, -0.018031412735581398, -0.03693799674510956, -0.006604712922126055, -0.02914697863161564, -0.04094819352030754, 0.11467033624649048, 0.01363050751388073, -0.017151812091469765, -0.04697659984230995, -0.03085482493042946, -0.02364792488515377, 0.04321577027440071, 0.02050289697945118, -0.04009691998362541, 0.006738699972629547, 0.02315998077392578, 0.04721478372812271, -0.0044815316796302795, -0.029164930805563927, -0.010459894314408302, 0.011000752449035645, -0.056499186903238297, -0.04777903109788895, 0.027437996119260788, 0.05535665899515152, -0.10144737362861633, -0.0126420259475708, 0.004007164854556322, 0.0101662278175354, -0.045736879110336304, 0.011985431425273418, -0.01277701836079359, -0.038942910730838776, -0.03879263997077942, 0.010356883518397808, -0.04076647013425827, -0.013664273545145988, 0.03061501309275627, 0.03162602335214615, 0.0031072506681084633, -0.013299320824444294, -0.004235186614096165, -0.05740274488925934, 0.0023749873507767916, -0.038704246282577515, -0.0846899002790451, -0.08337051421403885, 0.028203420341014862, -0.04125908389687538, 0.00925849936902523, -0.06137174367904663, -0.036301616579294205, -0.06707730144262314, 0.04913658648729324, -0.0045309532433748245, -0.018631068989634514, 0.008373161777853966, 0.020991627126932144, -0.0030866472516208887, -0.03131549805402756, 0.03946511819958687, 0.030643146485090256, -0.010362092405557632, 0.03367144986987114, -0.060635339468717575, 0.05075422674417496, 0.07042588293552399, -0.02350938692688942, 0.08069691807031631, 0.06489676982164383, -0.026528295129537582, 0.014541689306497574, -0.00458619836717844, 0.01674560271203518, -0.009720738977193832, -0.0265384241938591, -0.009170934557914734, 0.026529083028435707, 0.03171364963054657, 0.006491533946245909, -0.020373977720737457, -0.021097445860505104, -0.004225186537951231, -0.33637797832489014, -0.052057381719350815, -0.007940037176012993, -0.017318664118647575, 0.05582042410969734, -0.07383677363395691, 0.02691604197025299, -0.00449998676776886, -0.00449202349409461, 0.014815247617661953, 0.07866868376731873, -0.017837559804320335, 0.010661504231393337, -0.08267488330602646, -0.020526686683297157, 0.01640133373439312, -0.03270688280463219, -0.03762698546051979, 0.012885281816124916, 0.05210326984524727, -0.016666941344738007, -0.02583891712129116, -0.028663182631134987, -0.05031281337141991, 0.01815488561987877, -0.021514495834708214, 0.10160539299249649, 0.05221458524465561, 0.07917343080043793, -0.05887390673160553, 0.07576125115156174, -0.005348375532776117, 0.029170840978622437, -0.1270618587732315, 0.016756217926740646, -0.007743070367723703, -0.009718182496726513, -0.00024638435570523143, 0.054624442011117935, -0.017393743619322777, -0.0547744557261467, 0.005997966974973679, -0.04671537131071091, -0.028653373941779137, -0.007326564285904169, -0.008386507630348206, -0.014563016593456268, -0.047630343586206436, -0.04337099567055702, 0.04774362966418266, 0.02531292289495468, -0.007329884916543961, -0.0031902596820145845, -0.007765277288854122, 0.019698424264788628, -0.019168488681316376, -0.041827667504549026, -0.038082025945186615, 0.019599366933107376, -0.015398874878883362, 0.03977404534816742, 0.057971980422735214, 0.02565505914390087, -0.03889618068933487, 0.014003909192979336, -0.00005339717972674407, -0.007514608092606068, 0.019046489149332047, 0.028474293649196625, -0.04508824646472931, -0.018672283738851547, 0.10692504793405533, 0.03431638330221176, 0.05277368426322937, 0.02498897910118103, 0.03753938898444176, 0.006815024185925722, 0.012009195983409882, -0.023330284282565117, 0.004845309536904097, 0.05526921898126602, -0.021414602175354958, 0.04524898901581764, -0.05180094391107559, -0.015561932697892189, 0.05720634385943413, -0.032377853989601135, -0.03646320104598999, 0.08867230266332626, -0.017537860199809074, -0.02550477534532547, -0.01991938054561615, -0.029814058914780617, -0.08606928586959839, 0.07491607218980789, 0.009719187393784523, -0.25193673372268677, 0.040084704756736755, 0.036470986902713776, 0.060267940163612366, 0.02525864541530609, 0.050922200083732605, 0.052946917712688446, -0.03196977823972702, -0.056671079248189926, 0.05345262214541435, 0.00252831750549376, 0.0289074145257473, 0.0007043053628876805, 0.004234797321259975, 0.01623857580125332, -0.0010395038407295942, 0.018605241551995277, -0.0033095632679760456, -0.029878132045269012, 0.022171491757035255, -0.002987693063914776, -0.03331249952316284, 0.158526211977005, 0.029798239469528198, -0.001084061455912888, 0.040526535362005234, -0.01847735606133938, 0.040264446288347244, 0.10759416222572327, 0.018282610923051834, -0.0022068251855671406, -0.0012853193329647183, 0.0244505163282156, -0.022956715896725655, 0.0487937405705452, -0.07232457399368286, -0.01775241456925869, -0.010281938128173351, 0.022234907373785973, -0.00881662406027317, -0.03189319372177124, 0.024595124647021294, 0.006489248014986515, 0.0197711493819952, 0.03457466512918472, -0.004437126684933901, 0.008940017782151699, -0.031389422714710236, -0.026220686733722687, 0.004236268810927868, -0.0011670429958030581, -0.06359056383371353, -0.016329200938344002, 0.00536381546407938, 0.027855822816491127, 0.09374386072158813, 0.022837376222014427, -0.044190164655447006, -0.01860288716852665, 0.029450299218297005, -0.023521926254034042, -0.033443327993154526, 0.12312258034944534, 0.008602934889495373, 0.021517599001526833 ]
[ -0.020611120387911797, 0.06795148551464081, -0.026987658813595772, -0.01271729450672865, 0.002998019102960825, -0.009321177378296852, -0.01231388933956623, 0.012781653553247452, 0.010973017662763596, -0.005144593305885792, -0.028012165799736977, -0.02674879878759384, 0.020806092768907547, -0.034710999578237534, 0.025480642914772034, -0.013801644556224346, -0.021917905658483505, 0.01796785555779934, 0.02022102288901806, -0.02707689255475998, -0.03718724846839905, 0.05794938653707504, 0.034883588552474976, 0.0020913376938551664, -0.032375916838645935, 0.017908846959471703, -0.035364486277103424, -0.029195165261626244, 0.016635417938232422, -0.13858142495155334, 0.01666000857949257, -0.035837601870298386, -0.023828934878110886, -0.006128528621047735, -0.02293560467660427, 0.013926477171480656, 0.02632615529000759, 0.038782358169555664, 0.012759760953485966, 0.009504704736173153, 0.017809929326176643, -0.030223838984966278, -0.03329560160636902, -0.03951239585876465, -0.009540967643260956, 0.016642188653349876, -0.03528402000665665, -0.0151286032050848, -0.03388795256614685, -0.01535187941044569, 0.01464926265180111, -0.0010207301238551736, -0.02055024728178978, 0.025276251137256622, -0.0390322245657444, -0.006891973782330751, -0.06035574525594711, 0.02950465865433216, -0.001966276904568076, -0.00019476325542200357, -0.030425088480114937, -0.015206186100840569, -0.045593127608299255, -0.015717502683401108, -0.018535031005740166, -0.02535947412252426, -0.0174910556524992, -0.012269113212823868, 0.005876748822629452, 0.02733752876520157, 0.00021030267816968262, 0.023191042244434357, -0.08270909637212753, -0.03867613151669502, 0.002606448018923402, 0.024285659193992615, 0.007098405621945858, -0.0034262535627931356, -0.015303604304790497, 0.0065392726100981236, -0.026225829496979713, 0.013972774147987366, 0.015421727672219276, 0.044971875846385956, 0.00438366224989295, -0.0030437493696808815, 0.006369243375957012, 0.04118812084197998, -0.016066063195466995, 0.0033622561022639275, -0.005416661035269499, 0.010577077977359295, 0.01098914910107851, 0.031508639454841614, -0.07324483245611191, -0.007698130328208208, -0.018902763724327087, -0.009038177318871021, -0.001652227365411818, 0.8155077695846558, 0.02122551202774048, 0.0002718793984968215, 0.029040634632110596, 0.011553626507520676, 0.004111426882445812, -0.034451838582754135, -0.018982062116265297, 0.004520751070231199, 0.04835042729973793, -0.05265204980969429, 0.03199636563658714, -0.01506004761904478, 0.0212953332811594, 0.004684284329414368, -0.008262932300567627, 0.05025799944996834, 0.0004934660391882062, -0.024064145982265472, 0.010931230150163174, 0.026469264179468155, 0.04647935554385185, -0.0010571968741714954, -0.0006081234896555543, 0.006050382275134325, 0.005467322655022144, -0.20421364903450012, 0.061326079070568085, -7.178909304364794e-33, 0.022102784365415573, -0.02279120311141014, -0.0123524134978652, 0.004194189794361591, 0.000350971648003906, 0.03478597477078438, -0.0003965884679928422, 0.043802160769701004, -0.018564652651548386, -0.02323787286877632, 0.028789840638637543, -0.013172918930649757, 0.02470588870346546, 0.01861538738012314, 0.005764362867921591, -0.006733802147209644, -0.010558615438640118, 0.036462683230638504, 0.051412563771009445, 0.009665696881711483, -0.009307541884481907, 0.048374298959970474, 0.027871929109096527, -0.011621183715760708, 0.0015830602496862411, 0.03572768718004227, 0.02176116406917572, -0.0279073603451252, -0.037166252732276917, -0.04416570067405701, 0.0061076004058122635, -0.007629899308085442, 0.001722143031656742, -0.03807414323091507, 0.03478233516216278, -0.03575140982866287, 0.009970670565962791, 0.009654213674366474, -0.031583547592163086, -0.02911878377199173, -0.014350393787026405, 0.012092203833162785, -0.03305834159255028, -0.004393181763589382, -0.017196174710989, -0.025619054213166237, -0.03938065469264984, 0.0028425550553947687, 0.02622000128030777, 0.02264023758471012, 0.02470952272415161, 0.03439870476722717, 0.03297725319862366, 0.007518646772950888, 0.013578933663666248, 0.007031188812106848, -0.015346928499639034, 0.00776553712785244, -0.020281167700886726, -0.0039986539632081985, 0.03629588335752487, 0.023268064484000206, -0.006787822116166353, 0.006068074610084295, 0.028767401352524757, -0.004475572146475315, 0.010734612122178078, 0.08042977750301361, 0.012576143257319927, 0.03396610915660858, -0.012392733246088028, 0.009035058319568634, -0.005754480138421059, -0.003089810721576214, 0.007102614734321833, -0.018069082871079445, 0.034390054643154144, 0.048120494931936264, 0.028662389144301414, 0.05751976743340492, 0.06251882016658783, 0.014883420430123806, 0.00021367277076933533, -0.023877108469605446, -0.03332595154643059, -0.010359189473092556, 0.016726190224289894, -0.012218700721859932, -0.03757570683956146, 0.02821631170809269, 0.019195258617401123, 0.020121542736887932, 0.002836734987795353, -0.006749149411916733, -0.03610377386212349, 7.37496412966669e-33, -0.014363216236233711, -0.026521576568484306, -0.026569008827209473, 0.006321752443909645, 0.028008922934532166, -0.0027554866392165422, 0.04955596104264259, 0.00008397886267630383, -0.02681371383368969, 0.02278275229036808, -0.016439957544207573, 0.03246626257896423, -0.0065006897784769535, 0.04261498898267746, 0.06029244139790535, -0.01870374009013176, -0.027174005284905434, -0.044058796018362045, 0.05053822323679924, -0.011773865669965744, -0.026331791654229164, -0.009753277525305748, -0.016150152310729027, 0.033055808395147324, 0.007211602292954922, 0.04016387462615967, -0.01501764077693224, 0.007261110469698906, 0.005777260754257441, -0.030915983021259308, -0.00824829563498497, 0.006932670250535011, 0.005341935902833939, -0.010823904536664486, -0.009892752394080162, 0.04571707174181938, 0.015773482620716095, 0.0421266071498394, -0.0002695404109545052, -0.020367639139294624, 0.010387210175395012, 0.0077939992770552635, 0.019388265907764435, -0.015647906810045242, 0.046839743852615356, 0.015079491771757603, 0.0007684436859562993, -0.002728061517700553, -0.03763153403997421, 0.031279321759939194, -0.006499915849417448, 0.01968453824520111, -0.01571902446448803, 0.010061847046017647, 0.006473853252828121, -0.028020737692713737, -0.04211760684847832, 0.001183506567031145, -0.031051907688379288, -0.039910007268190384, 0.0023308172821998596, -0.02009819820523262, -0.0021501199807971716, 0.06069639325141907, -0.04464618116617203, -0.012847352772951126, -0.03638963773846626, -0.04175367206335068, 0.014267911203205585, 0.004467731341719627, -0.015401598997414112, -0.024383198469877243, -0.020614393055438995, -0.005220163147896528, 0.04913492128252983, -0.013655247166752815, 0.019164109602570534, -0.025906411930918694, -0.008888870477676392, 0.029779789969325066, -0.007425322663038969, 0.008910349570214748, -0.0034969723783433437, -0.02375229448080063, 0.029832961037755013, 0.015038497745990753, -0.0736331045627594, 0.00969407893717289, 0.02113455906510353, -0.02300136722624302, -0.013177025131881237, 0.025165000930428505, -0.04680821672081947, -0.016587737947702408, -0.03793846070766449, -1.2764133749953999e-8, 0.005914389621466398, -0.02781848981976509, -0.008209831081330776, 0.0482761412858963, 0.01864778995513916, 0.03149602189660072, -0.019223658367991447, -0.026081427931785583, -0.04211856797337532, -0.005878683645278215, 0.01895899698138237, -0.016714133322238922, 0.020053790882229805, 0.023443251848220825, 0.0004915788304060698, -0.022759824991226196, -0.025970617309212685, -0.020786399021744728, 0.04179603233933449, -0.028651738539338112, -0.010112401098012924, 0.08175531029701233, 0.022036511451005936, -0.03680172190070152, 0.005432234611362219, -0.00878855399787426, 0.030966641381382942, -0.044264327734708786, -0.0341850146651268, -0.006618608254939318, 0.010813621804118156, -0.032187867909669876, -0.028862202540040016, -0.0352124460041523, 0.021669624373316765, -0.04139559715986252, -0.0226740725338459, 0.006889112293720245, -0.020247790962457657, -0.04448256641626358, 0.01689911261200905, 0.03941313922405243, 0.001782244653441012, -0.018434755504131317, -0.002822088310495019, -0.02533002197742462, 0.00859919935464859, 0.04256102815270424, 0.026454733684659004, -0.035936735570430756, 0.02386196330189705, -0.003534751944243908, 0.01506958156824112, 0.02408469282090664, 0.022101255133748055, -0.006006305105984211, 0.029487770050764084, -0.06596095860004425, -0.021294722333550453, -0.024581845849752426, 0.02032187581062317, 0.02334684692323208, 0.004759886302053928, -0.008763136342167854 ]
curl-and-the-case-of-the-carriage-return
https://markhneedham.com/blog/2012/09/15/curl-and-the-case-of-the-carriage-return
false
2012-09-12 22:53:39
While waiting for VMs to provision...
[ "shell" ]
[ "Shell Scripting" ]
https://twitter.com/philandstuff[Phil] and I spent part of the day provisioning new virtual machines for some applications that we need to deploy which involves running a provisioning script and then opening another terminal and repeatedly trying to ssh into the box until it succeeds. Eventually we got bored of doing that so we figured out a nice little one liner to use instead: [source,text] ---- while :; do ssh 10.0.0.2; done ---- The ':' is a http://urchin.earth.li/~twic/Some_Bash_Scripting_Notes.html[bash noop] and is http://tldp.org/LDP/abs/html/special-chars.html[defined like so]: ____ *null command [colon].* This is the shell equivalent of a "NOP" (no op, a do-nothing operation). It may be considered a synonym for the shell builtin true. The ":" command is itself a Bash builtin, and its exit status is true (0). ____ In this case it helps us to create an infinite loop which exits once an ssh session is established, meaning that the machine has its ssh daemon running and is ready to roll. Since we're using a puppet client/server setup we also want to run something on the puppet master to make sure that the client's certificate has been signed. Here we can use the 'http://en.wikipedia.org/wiki/Watch_(Unix)[watch]' command to help us out: [source,text] ---- watch "puppet cert list -a | grep new-client-new" ---- So we'll see an empty screen until the client has sent a certificate request that's been picked up by the puppet master and then we'll see it come up. As usual if you know any cooler ways to do the same things let me know in the comments!
null
null
[ -0.0030798183288425207, -0.0018411106429994106, -0.0010188936721533537, 0.03511873632669449, 0.09522118419408798, 0.01996600441634655, 0.026684926822781563, 0.035108085721731186, 0.006382392253726721, -0.01999882236123085, -0.01785210892558098, 0.007175367325544357, -0.06605556607246399, 0.0335761159658432, -0.019920440390706062, 0.04976492002606392, 0.09939462691545486, -0.011050066910684109, 0.0073078288696706295, 0.0032816752791404724, 0.023624088615179062, 0.0608658604323864, 0.017746901139616966, 0.01084531843662262, -0.0017413810128346086, 0.03469910845160484, 0.0046966965310275555, -0.001686811912804842, -0.06891579926013947, -0.021566398441791534, 0.04341426119208336, -0.004589392337948084, 0.0035984287969768047, -0.02593871019780636, 0.017527984455227852, -0.010152751579880714, -0.012254761531949043, 0.005669374018907547, -0.008194557391107082, 0.0076109543442726135, -0.059740111231803894, 0.04540311172604561, 0.011748440563678741, 0.020308008417487144, -0.03432643786072731, -0.00006551888509420678, -0.03480289876461029, 0.011375238187611103, 0.024620797485113144, 0.004780985414981842, -0.07124195247888565, 0.04701967164874077, -0.03705665469169617, -0.01749563403427601, 0.012671079486608505, -0.0009421961149200797, 0.02723035030066967, -0.08895911276340485, 0.019539710134267807, -0.03095848113298416, 0.0026037294883280993, -0.005258181132376194, 0.02071857824921608, 0.02061661332845688, 0.013802706263959408, -0.03962056338787079, 0.04358678683638573, 0.049801673740148544, -0.03959982097148895, -0.013040555641055107, 0.022556932643055916, 0.025683226063847542, -0.03252705931663513, -0.012388830073177814, 0.048589445650577545, -0.032370179891586304, 0.0020425119437277317, 0.04446718469262123, 0.01305828895419836, 0.05632428824901581, -0.046581387519836426, 0.011486207135021687, 0.02877848967909813, 0.017190612852573395, -0.015637407079339027, -0.04573194310069084, 0.0014867315767332911, 0.005229477304965258, -0.06745567917823792, 0.06856342405080795, 0.03125026449561119, -0.03201456367969513, 0.014344265684485435, 0.005643388722091913, 0.009996543638408184, -0.012967764399945736, 0.0013753867242485285, -0.015758398920297623, 0.00889489334076643, -0.009069300256669521, -0.029886217787861824, 0.0020466656424105167, -0.003447616472840309, -0.0006822197465226054, -0.08626332879066467, -0.0052553219720721245, -0.018685059621930122, 0.005942885763943195, -0.01658996380865574, -0.005328026600182056, -0.022442638874053955, 0.020106812939047813, 0.012308833189308643, 0.026823703199625015, -0.06058046594262123, 0.07872501015663147, -0.01091757882386446, -0.07813601940870285, 0.011119921691715717, 0.01056910865008831, 0.06757666170597076, 0.04624255374073982, -0.014941154047846794, 0.06353054940700531, 0.023470884189009666, -0.002016052370890975, -0.0009666611440479755, 0.030216678977012634, -0.01093091070652008, -0.053793225437402725, 0.003491130890324712, 0.08521663397550583, 0.014282436110079288, 0.0028492070268839598, -0.016983311623334885, -0.036014631390571594, -0.0051242816261947155, -0.013737794943153858, 0.06838695704936981, 0.0417194589972496, -0.009379977360367775, -0.008990650996565819, 0.001809240784496069, 0.01581321284174919, 0.032697491347789764, 0.01393942255526781, 0.00950141716748476, -0.0331612192094326, -0.06479978561401367, 0.003244229359552264, 0.002602118067443371, 0.0013286955654621124, 0.025601662695407867, -0.02500293031334877, 0.01539643481373787, 0.05074746906757355, 0.054024837911129, 0.003917508292943239, -0.01676282286643982, -0.0003561487246770412, 0.043133366852998734, 0.04039569944143295, 0.013196143321692944, 0.06721267104148865, 0.022609634324908257, -0.009499686770141125, -0.020670970901846886, 0.043360743671655655, 0.01607135869562626, 0.007959923706948757, -0.047210417687892914, -0.04676002636551857, 0.07128474116325378, -0.038754094392061234, 0.002484685042873025, 0.035196222364902496, 0.0709257572889328, 0.029456164687871933, 0.037901122123003006, -0.010054375976324081, -0.08337735384702682, 0.054245319217443466, 0.008336519822478294, 0.03104127012193203, 0.021913763135671616, -0.017269276082515717, 0.07303618639707565, 0.01728411577641964, 0.00922166183590889, 0.029357433319091797, -0.06881434470415115, -0.08407889306545258, -0.01196709182113409, 0.0006516191060654819, 0.04103424400091171, -0.017302727326750755, 0.002403904451057315, 0.036619219928979874, 0.030788158997893333, 0.03481350094079971, 0.01865013875067234, 0.0015146532095968723, 0.03543700650334358, -0.06651293486356735, -0.07422521710395813, 0.05647848919034004, 0.031573086977005005, -0.011707429774105549, -0.034739214926958084, -0.007150077726691961, -0.02437540516257286, -0.004257693886756897, 0.020608337596058846, -0.028127990663051605, 0.06421587616205215, 0.02253168635070324, 0.0372733473777771, -0.04123460873961449, 0.018905021250247955, -0.023056572303175926, 0.0016408947994932532, 0.0021237884648144245, 0.0012687613489106297, 0.025972504168748856, 0.015728766098618507, 0.12096833437681198, 0.05849715694785118, -0.02272692695260048, -0.04187120497226715, 0.04534876346588135, 0.00588430929929018, -0.05559690296649933, -0.022292006760835648, -0.007283927407115698, -0.022696249186992645, 0.027653081342577934, -0.02999936416745186, -0.03964640200138092, -0.007689989171922207, -0.03567592799663544, 0.012306060642004013, 0.06382957845926285, -0.016470162197947502, 0.05286268889904022, 0.0033377513755112886, -0.03018829971551895, 0.004999471828341484, -0.037039417773485184, -0.06068434193730354, 0.0007701987633481622, 0.0029572327621281147, -0.019819624722003937, 0.04627711698412895, -0.0463964082300663, -0.018487926572561264, -0.029779639095067978, -0.0819065049290657, 0.03544322028756142, 0.02247655764222145, 0.07731151580810547, -0.06221587955951691, 0.05871918797492981, -0.02305363118648529, 0.028363805264234543, -0.017010685056447983, -0.040709756314754486, -0.05005881190299988, 0.002966552507132292, 0.011524749919772148, 0.02246539480984211, 0.020107809454202652, -0.011292969807982445, -0.005660956725478172, -0.03821604698896408, 0.03640345111489296, -0.01759449578821659, 0.01564328558743, 0.011636913754045963, 0.008815471082925797, -0.03617221489548683, -0.021024299785494804, 0.040819425135850906, -0.045203279703855515, 0.007559170015156269, 0.015292859636247158, -0.056348856538534164, 0.04846598207950592, -0.09213779866695404, -0.038774002343416214, -0.028899354860186577, 0.024763507768511772, 0.020834947004914284, 0.02223880961537361, 0.030948692932724953, 0.030319564044475555, 0.0030833035707473755, 0.027279069647192955, 0.020878540351986885, 0.008716427721083164, 0.03561408445239067, 0.011832769960165024, -0.009007476270198822, 0.010996345430612564, -0.019930390641093254, -0.003954234998673201, -0.045271262526512146, 0.03146263211965561, -0.035538267344236374, -0.2861170768737793, 0.03980664908885956, 0.0349038764834404, -0.035944145172834396, 0.019984742626547813, -0.009963524527847767, 0.015299230813980103, -0.05069388449192047, -0.02321222797036171, 0.01912725530564785, -0.03674110025167465, -0.04361976310610771, 0.015202436596155167, 0.03196163848042488, -0.008769333362579346, -0.009695417247712612, 0.0017818356864154339, -0.06693855673074722, 0.007278036791831255, 0.00989523995667696, -0.018821993842720985, -0.049039244651794434, 0.04200358688831329, 0.028259707614779472, 0.04937019571661949, 0.07909607142210007, -0.05952194333076477, 0.03786340355873108, -0.05096174031496048, -0.008430804125964642, -0.029730338603258133, -0.00792846642434597, -0.010132823139429092, 0.0256588663905859, -0.020991126075387, 0.013579899445176125, 0.059252917766571045, -0.016119837760925293, 0.03413068875670433, 0.002518910448998213, -0.03796086832880974, -0.04915250465273857, 0.005611191503703594, -0.012108154594898224, 0.07085622102022171, -0.0010729674249887466, -0.07301194965839386, -0.022520944476127625, -0.030776746571063995, 0.06896723061800003, -0.055070869624614716, -0.03150784596800804, -0.01784633845090866, 0.01787266880273819, -0.0034833410754799843, 0.011164114810526371, -0.0573648065328598, 0.00006994210707489401, -0.04668372496962547, -0.029669232666492462, -0.025699475780129433, -0.026223674416542053, -0.034836649894714355, -0.0519799143075943, 0.002158534014597535, -0.04031457006931305, -0.05158462002873421, -0.014903882518410683, 0.10815360397100449, 0.0033158722799271345, -0.03934033215045929, -0.0024251865688711405, -0.02471487782895565, -0.0953446477651596, 0.020777171477675438, -0.01909010298550129, -0.06432559341192245, -0.009577468037605286, 0.029074110090732574, 0.047459010034799576, -0.03791433572769165, -0.04772548750042915, 0.017288219183683395, 0.004673749674111605, 0.011708073318004608, -0.024489959701895714, 0.020853644236922264, -0.004671219736337662, -0.00612683966755867, 0.0017254817066714168, 0.06403551995754242, -0.019868819043040276, -0.047939129173755646, -0.013739986345171928, 0.006275621242821217, 0.0177866593003273, 0.017697865143418312, 0.006137073040008545, 0.00197007367387414, 0.05624215304851532, 0.03732727840542793, -0.045622192323207855, 0.04400816932320595, -0.053189314901828766, -0.0019036283483728766, -0.009875497780740261, -0.03508077189326286, 0.024919383227825165, 0.04126518964767456, 0.04619437828660011, -0.00904484000056982, -0.03171255812048912, 0.02027777209877968, -0.06097455695271492, -0.019480396062135696, 0.016171975061297417, 0.0004691807844210416, 0.024668747559189796, 0.015199806541204453, -0.00779690220952034, -0.03115341067314148, 0.009638229385018349, 0.013120879419147968, -0.012320256792008877, -0.04966766759753227, -0.014508647844195366, -0.000262407585978508, 0.01047347579151392, 0.042485568672418594, 0.008010581135749817, -0.0008834258769638836, 0.024265097454190254, 0.040698256343603134, -0.043794576078653336, 0.022273492068052292, -0.021902859210968018, -0.050182126462459564, -0.05177927017211914, 0.00931048858910799, -0.013995567336678505, -0.035487040877342224, 0.009761268272995949, -0.0035814938601106405, 0.025335321202874184, 0.042532242834568024, 0.0023188358172774315, 0.048099640756845474, -0.03547407314181328, 0.03205579146742821, 0.011076592840254307, 0.016739659011363983, -0.061511825770139694, 0.0105440653860569, -0.03328154981136322, -0.031037164852023125, -0.01411131676286459, 0.03412048518657684, -0.03322887048125267, -0.0391601137816906, -0.00025977150653488934, 0.008984696120023727, -0.06058509647846222, 0.006932561285793781, 0.00339316762983799, -0.004063485190272331, 0.04072088748216629, -0.0029823726508766413, 0.023739488795399666, -0.002504328964278102, -0.0011081460397690535, 0.02305220253765583, 0.04064266011118889, -0.027673494070768356, 0.011469429358839989, 0.026062939316034317, -0.026017317548394203, -0.007498160935938358, 0.027016958221793175, 0.035210020840168, 0.009455171413719654, 0.01920865662395954, -0.014727514237165451, 0.0009908068459481, 0.030354095622897148, 0.03502631187438965, 0.0052992007695138454, -0.01591271348297596, -0.0035396649036556482, -0.021438920870423317, -0.010522549971938133, -0.022577865049242973, 0.00775119150057435, -0.014756403863430023, 0.006658537779003382, -0.03317594900727272, -0.06886439770460129, 0.04084884002804756, 0.03063005581498146, 0.03141700476408005, 0.018689492717385292, 0.007673445623368025, -0.012562808580696583, -0.018835268914699554, 0.0421520434319973, 0.06699107587337494, -0.04797510802745819, 0.0028766205068677664, 0.01153452880680561, 0.0277390219271183, 0.006899471394717693, 0.03449712693691254, -0.055589620023965836, -0.014395160600543022, -0.019765494391322136, 0.025050688534975052, -0.06675326079130173, -0.036231011152267456, -0.02512267604470253, -0.0025456477887928486, -0.015384191647171974, 0.0204064529389143, 0.0033673865254968405, 0.009474757127463818, 0.0018914934480562806, -0.05328195542097092, -0.004894301760941744, -0.024523969739675522, -0.017294753342866898, 0.030135754495859146, -0.029949603602290154, -0.0062662092968821526, -0.011399408802390099, 0.03154221177101135, 0.021587751805782318, -0.028674524277448654, -0.01592371053993702, -0.04411282017827034, -0.0072909691371023655, -0.06536074727773666, 0.04122817888855934, -0.01581900380551815, -0.01029910147190094, -0.05323340743780136, -0.01670672744512558, -0.05468444898724556, 0.009791073389351368, -0.010150676593184471, -0.022348636761307716, 0.043312299996614456, 0.05142068490386009, 0.02355322614312172, 0.03647089749574661, -0.0369088314473629, -0.039289310574531555, 0.04356352239847183, -0.07301081717014313, -0.032196830958127975, -0.013320903293788433, -0.04859497770667076, 0.026802774518728256, 0.008266611024737358, 0.011309197172522545, -0.06303812563419342, 0.027736322954297066, 0.0248999185860157, 0.00669635646045208, 0.045981306582689285, 0.001092187943868339, 0.021287666633725166, -0.046695467084646225, -0.012512643821537495, -0.07589622586965561, 0.01478396262973547, -0.0009345799335278571, -0.010484348051249981, -0.018083058297634125, 0.03083747625350952, -0.022910980507731438, 0.004534576088190079, -0.05863475427031517, -0.010259835980832577, 0.058430831879377365, -0.006627058610320091, -0.0064826710149645805, -0.004237200599163771, -0.09451757371425629, 0.032235801219940186, 0.019924696534872055, -0.029071688652038574, 0.004233027808368206, -0.0010701748542487621, 0.04297906532883644, -0.004604327958077192, 0.05223497003316879, -0.014871889725327492, -0.02399780973792076, 0.07395163923501968, 0.01435695867985487, -0.0023872465826570988, 0.04931168258190155, -0.021419424563646317, 0.01269221305847168, 0.02738080359995365, -0.000018715269106905907, -0.01849852129817009, 0.008924800902605057, -0.030247531831264496, -0.04755524918437004, 0.0005459538660943508, -0.001222807914018631, -0.02413427084684372, -0.04094987362623215, 0.05295123904943466, 0.019064633175730705, -0.03033432364463806, -0.053911447525024414, 0.028440939262509346, -0.02831517904996872, -0.03258233144879341, -0.021178126335144043, 0.007374994922429323, -0.0576208159327507, 0.035075269639492035, 0.012895576655864716, 0.023469435051083565, 0.06891179829835892, -0.006357354111969471, -0.010875101201236248, 0.021241530776023865, 0.0687587782740593, 0.10241494327783585, 0.043336883187294006, 0.01592014916241169, 0.04501849040389061, -0.031263984739780426, -0.03949267417192459, -0.006064089946448803, 0.005594151560217142, -0.036669254302978516, -0.01983700692653656, 0.00035847866092808545, 0.06356798112392426, -0.056581348180770874, 0.06995927542448044, -0.004486337304115295, -0.006702823098748922, -0.004351181909441948, 0.031716570258140564, 0.011414367705583572, 0.048524968326091766, 0.009664870798587799, 0.019204841926693916, 0.01150978822261095, -0.03679242730140686, 0.042744383215904236, -0.041291188448667526, -0.026089893653988838, 0.026320429518818855, -0.024148063734173775, -0.0002555077662691474, 0.01796225644648075, 0.04138671234250069, 0.06876962631940842, -0.02868480049073696, 0.03294587507843971, 0.030283544212579727, 0.02136867493391037, -0.008455097675323486, 0.02300804853439331, -0.018213780596852303, 0.011869077570736408, 0.022258112207055092, -0.02368699200451374, -0.01338827982544899, -0.016210459172725677, -0.011334097944200039, 0.04505409672856331, -0.009230783209204674, -0.003568970365449786, 0.015421302057802677, -0.007808895781636238, -0.02246943861246109, -0.032428719103336334, -0.06562342494726181, -0.04414137452840805, -0.04101526737213135, -0.03511004522442818, 0.015218453481793404, -0.008968454785645008, -0.0119019765406847, -0.014734150841832161, -0.021716343238949776, -0.038783732801675797, 0.032928332686424255, -0.046844158321619034, -0.03444027155637741, 0.01269253809005022, 0.006344373803585768, 0.02080034837126732, 0.007145007140934467, 0.060453567653894424, 0.012122769840061665, -0.0054754153825342655, -0.05224347114562988, 0.003630341263487935, 0.03075774759054184, -0.018959850072860718, -0.022512774914503098, -0.08128072321414948, 0.028670210391283035, 0.025388818234205246, 0.02278219163417816, -0.05743790790438652, 0.01961345039308071, 0.005369708873331547, 0.007531799841672182, 0.05884995684027672, -0.03676646575331688, 0.019713545218110085, -0.06219838187098503, -0.0184544138610363, -0.0255153588950634, -0.020395681262016296, 0.06147505342960358, -0.003693822305649519, 0.09395606070756912, 0.03738803789019585, -0.007693613413721323, -0.04809167608618736, -0.01141333021223545, 0.004065725486725569, -0.0077786874026060104, -0.018384357914328575, -0.015229863114655018, -0.02082950994372368, -0.08731792122125626, -0.03819240257143974, 0.008453372865915298, 0.0016249936306849122, -0.043353691697120667, 0.015195924788713455, -0.0003061944735236466, -0.035457856953144073, 0.006613287143409252, -0.02032567374408245, -0.008562731556594372, -0.024095654487609863, -0.021978657692670822, -0.0034488383680582047, 0.03813667595386505, -0.030234351754188538, -0.0058958097361028194, 0.051024287939071655, -0.034239787608385086, -0.019090695306658745, -0.0013970090076327324, 0.0504334419965744, 0.06956973671913147, -0.0005062709678895772, 0.024499613791704178 ]
[ -0.09832488000392914, -0.032765116542577744, -0.02166423760354519, -0.06272422522306442, 0.021708719432353973, -0.04631409794092178, 0.0016443305648863316, -0.0004357313155196607, -0.022468890994787216, -0.03603440895676613, 0.026603564620018005, -0.02492452971637249, 0.021466393023729324, -0.034043096005916595, 0.08780725300312042, 0.0152988126501441, -0.00835744570940733, -0.03602353855967522, -0.004402174614369869, 0.03344549238681793, 0.0070064920000731945, -0.03108624741435051, -0.04288650304079056, -0.026261670514941216, -0.033162929117679596, 0.026985667645931244, 0.03197752311825752, -0.023835791274905205, 0.00270824390463531, -0.161635622382164, 0.040088191628456116, -0.0018469522474333644, -0.005627078469842672, -0.00008647602226119488, 0.01967873051762581, 0.03556206077337265, 0.03685852512717247, 0.0014746893430128694, -0.022224973887205124, 0.03678256645798683, 0.03547650948166847, -0.0008534538792446256, -0.07688551396131516, -0.033238187432289124, 0.051594674587249756, -0.03696572408080101, -0.003505588276311755, -0.022852471098303795, -0.013006620109081268, -0.004544010851532221, -0.049209047108888626, 0.02163826674222946, 0.013760244473814964, -0.03004344552755356, -0.016639715060591698, -0.026188915595412254, 0.05260415002703667, 0.06392201036214828, 0.004863937851041555, 0.0034415090922266245, 0.011183537542819977, 0.0008828106219880283, -0.13541194796562195, 0.0821351706981659, 0.046592678874731064, 0.029896214604377747, -0.022298675030469894, -0.028567098081111908, -0.03969874233007431, 0.08932465314865112, -0.001529425848275423, -0.009894448332488537, -0.046717479825019836, 0.04277162253856659, -0.02468136139214039, -0.018826380372047424, -0.015569916926324368, 0.04339764267206192, 0.033387936651706696, -0.045652277767658234, -0.05772940069437027, -0.01963125541806221, -0.038415804505348206, 0.0019779144786298275, -0.05911746993660927, 0.030430201441049576, -0.0010338195133954287, 0.07285869866609573, 0.032798200845718384, 0.0455876886844635, 0.00717990892007947, -0.008404027670621872, 0.060020629316568375, -0.006302953232079744, -0.07131641358137131, 0.004744353704154491, -0.004660163540393114, 0.015576611272990704, -0.051729533821344376, 0.42631372809410095, 0.021160973235964775, -0.02295178361237049, 0.03929431363940239, -0.026778975501656532, 0.04779478535056114, 0.02871413715183735, -0.0012804914731532335, -0.03133401274681091, 0.02383250556886196, -0.003044805722311139, 0.011109027080237865, 0.00047377331065945327, 0.0653090626001358, -0.07365841418504715, 0.018963025882840157, -0.002986564300954342, 0.017311420291662216, 0.0432388074696064, -0.022617299109697342, 0.00934911984950304, -0.01580015942454338, 0.004818330984562635, 0.04392441734671593, 0.02467269077897072, 0.02970309369266033, -0.039250556379556656, 0.03684115782380104, 0.04744810611009598, 0.017076661810278893, 0.015401560813188553, 0.027284452691674232, -0.04718131572008133, -0.006838818080723286, 0.0184297114610672, 0.030707163736224174, 0.04419226199388504, 0.023606235161423683, -0.05389171838760376, -0.0035373475402593613, 0.020311105996370316, -0.008901998400688171, -0.017640231177210808, 0.02704392559826374, -0.031593289226293564, -0.02135058306157589, 0.08216586709022522, 0.025203773751854897, -0.01474552508443594, -0.044569000601768494, -0.024933017790317535, -0.02723507396876812, 0.019562164321541786, 0.01556643657386303, -0.07715388387441635, 0.018917864188551903, 0.020914848893880844, 0.08455689251422882, 0.01604466326534748, -0.07673894613981247, -0.008546390570700169, -0.002535019302740693, -0.047700434923172, -0.026513652876019478, 0.04264522343873978, 0.04456937313079834, -0.11699440330266953, -0.021421395242214203, 0.021497102454304695, 0.029021024703979492, -0.055645205080509186, -0.023785628378391266, -0.012607154436409473, -0.020451171323657036, -0.039404284209012985, 0.02433866262435913, -0.04737481847405434, -0.021439777687191963, 0.02054525725543499, 0.04392826557159424, 0.03781886398792267, -0.03233228996396065, -0.031732089817523956, -0.040439359843730927, -0.010291900485754013, -0.06522932648658752, -0.06905391812324524, -0.06037825345993042, 0.032638076692819595, -0.03154581040143967, -0.017603516578674316, -0.04114743694663048, -0.026216061785817146, -0.07925023138523102, 0.051833007484674454, 0.01840071938931942, -0.00975978933274746, -0.021725885570049286, -0.0014575232053175569, -0.01727871783077717, -0.015910642221570015, -0.006068866234272718, 0.021480759605765343, -0.01834329590201378, 0.02682272158563137, -0.0753219798207283, 0.04259843751788139, 0.040033455938100815, -0.049058716744184494, 0.07565955072641373, 0.06764619052410126, -0.042424269020557404, 0.0021647599060088396, -0.012393930926918983, 0.03524358943104744, -0.025209324434399605, -0.011003549210727215, -0.03818795830011368, 0.008690819144248962, 0.043389901518821716, -0.0010021181078627706, -0.00910245906561613, -0.001230226014740765, -0.02470657415688038, -0.3275946080684662, -0.04696578159928322, -0.0354980006814003, 0.003803166327998042, 0.0488404780626297, -0.053770892322063446, 0.043409787118434906, -0.0058535123243927956, -0.005091662518680096, -0.022696934640407562, 0.11899677664041519, -0.049938492476940155, 0.0337691456079483, -0.07422767579555511, -0.01699223741889, 0.023462656885385513, -0.028916897252202034, -0.030198629945516586, -0.004441441502422094, 0.04197975620627403, 0.0016165069537237287, -0.022226115688681602, -0.022892309352755547, -0.04871420934796333, -0.013576624915003777, -0.021856972947716713, 0.09904969483613968, 0.021392591297626495, 0.120687335729599, -0.047885533422231674, 0.06228770315647125, 0.015221457928419113, 0.009585868567228317, -0.13382162153720856, -0.007810608483850956, -0.014555980451405048, 0.02596144936978817, -0.007817045785486698, 0.04962720721960068, 0.0008884259732440114, -0.09225907176733017, 0.025764474645256996, -0.06352780759334564, -0.04320231080055237, -0.021199693903326988, -0.027011796832084656, -0.007337863091379404, -0.014940004795789719, -0.027669301256537437, 0.048701100051403046, 0.027745593339204788, -0.0018023118609562516, -0.018406659364700317, -0.012329298071563244, 0.014929158613085747, -0.0218530111014843, -0.03391987085342407, -0.05481760576367378, 0.016760677099227905, 0.009515883401036263, 0.04261637479066849, 0.07550850510597229, 0.012722260318696499, -0.05728720501065254, 0.03130059689283371, 0.0026737565640360117, -0.007540509570389986, 0.03751722723245621, 0.07162003964185715, -0.056215763092041016, -0.0333649106323719, 0.11496692150831223, 0.004126743413507938, 0.037828460335731506, 0.009030512534081936, 0.009005775675177574, -0.014366915449500084, 0.01565352827310562, -0.006172479595988989, 0.007301553152501583, 0.03877962380647659, -0.02915196493268013, 0.04016008973121643, -0.042454272508621216, -0.020465610548853874, 0.0470266230404377, -0.02679654024541378, -0.019765671342611313, 0.06893879920244217, 0.012016838416457176, -0.024551434442400932, -0.004940941464155912, -0.0004392857081256807, -0.06388799101114273, 0.07412081956863403, -0.002395558636635542, -0.25816279649734497, 0.04617425799369812, 0.0348815843462944, 0.05956896394491196, -0.008516012690961361, 0.003452809527516365, 0.037232186645269394, -0.033676788210868835, -0.01551660057157278, 0.03153690695762634, 0.03959168866276741, 0.04639310762286186, -0.018378598615527153, 0.007888611406087875, 0.0019225319847464561, -0.0025925354566425085, 0.040863581001758575, 0.006259871181100607, -0.02567364275455475, -0.0015684064710512757, -0.0015179450856521726, -0.02169105038046837, 0.147823303937912, 0.019547753036022186, 0.03560398519039154, 0.0355977788567543, -0.003039156785234809, 0.045123957097530365, 0.05998782813549042, 0.02132117934525013, 0.0032571260817348957, 0.000633461750112474, 0.0010809615487232804, -0.013280247338116169, 0.04497358202934265, -0.05505382642149925, -0.007443585898727179, 0.02703099325299263, 0.02724161185324192, 0.003549046814441681, -0.023275185376405716, 0.030316725373268127, 0.021523231640458107, 0.02747507393360138, 0.0644896924495697, -0.03369738906621933, 0.022116107866168022, -0.03704463690519333, -0.012864403426647186, 0.006871985271573067, -0.03766036406159401, -0.0378313846886158, -0.0042295209132134914, 0.027569983154535294, 0.027148626744747162, 0.10254202038049698, 0.04005017131567001, -0.0374305322766304, 0.020970378071069717, 0.010714973323047161, -0.014088020659983158, -0.05005472153425217, 0.1443820595741272, 0.025607412680983543, 0.04409066587686539 ]
[ 0.023962954059243202, 0.04372633248567581, -0.0034663467667996883, -0.03408228978514671, 0.02759975753724575, 0.009829080663621426, -0.026076024398207664, 0.021441517397761345, -0.023268163204193115, 0.006559627130627632, 0.024342890828847885, -0.013592137955129147, 0.0559954009950161, 0.009209783747792244, -0.01912740245461464, -0.030489258468151093, -0.010924751870334148, 0.01273363083600998, 0.049938786774873734, -0.04765566065907478, -0.021781736984848976, 0.026942551136016846, 0.0286922175437212, -0.010984532535076141, -0.004555164836347103, -0.02502511814236641, -0.056310538202524185, -0.01039903238415718, 0.012140891514718533, -0.14839421212673187, -0.01914563588798046, -0.003027484053745866, -0.007082734256982803, -0.016957979649305344, 0.05749564245343208, 0.032121505588293076, 0.03849457949399948, 0.012563565745949745, -0.036034032702445984, 0.01993095874786377, 0.06975764781236649, -0.037226155400276184, -0.029456544667482376, -0.006346896290779114, -0.008021564222872257, 0.018347907811403275, -0.03728325664997101, -0.04938603565096855, -0.0051183151081204414, -0.020103856921195984, -0.012138020247220993, 0.010341862216591835, 0.029510188847780228, -0.004059171304106712, -0.027210678905248642, -0.015031364746391773, 0.002530121710151434, 0.003976825159043074, -0.014955221675336361, -0.025157829746603966, 0.03718101978302002, 0.03514389321208, -0.03800526261329651, -0.01630065217614174, -0.001420320593751967, 0.014596043154597282, -0.0005306398961693048, -0.004642563406378031, -0.046030376106500626, 0.027404822409152985, 0.014397711493074894, 0.022875072434544563, -0.0032304057385772467, -0.03694523125886917, -0.04519006609916687, -0.05671374499797821, 0.022811202332377434, -0.019214872270822525, 0.014625775627791882, 0.03971177339553833, -0.03220706805586815, 0.022559553384780884, -0.022342583164572716, -0.009847784414887428, -0.02337770164012909, 0.027293600142002106, 0.007909303531050682, 0.024162745103240013, 0.033679358661174774, 0.027538159862160683, 0.005358059890568256, 0.015985697507858276, -0.030813710764050484, 0.011491023935377598, -0.06952545046806335, 0.012409110553562641, 0.001809692126698792, -0.025064118206501007, -0.0008174305548891425, 0.8165321350097656, -0.00562048377469182, -0.0036113718524575233, 0.02509453147649765, 0.006746113765984774, 0.027666568756103516, 0.03526213765144348, -0.0023273152764886618, -0.018054500222206116, 0.0010685031302273273, -0.03192973881959915, 0.017269086092710495, -0.005393971223384142, 0.019437486305832863, -0.006158051546663046, -0.009777113795280457, 0.04856247454881668, 0.029387187212705612, 0.023115249350667, -0.008935283869504929, 0.03861343115568161, 0.06811966001987457, -0.011034855619072914, 0.016797397285699844, 0.05459928885102272, -0.009294180199503899, -0.17199188470840454, 0.034066472202539444, -7.575180204970496e-33, 0.04835503548383713, -0.050794392824172974, 0.007621072232723236, -0.0018629452679306269, 0.0240744948387146, 0.017373593524098396, 0.02378714457154274, 0.04554843530058861, -0.0553492046892643, -0.0339362658560276, -0.0009737827931530774, -0.024729732424020767, 0.001988701755180955, -0.02141038328409195, 0.0256220530718565, -0.05729448422789574, -0.017189573496580124, 0.07462812960147858, 0.037628721445798874, 0.007210035342723131, 0.018875103443861008, 0.015381984412670135, 0.0007333430112339556, 0.036171410232782364, 0.05698683112859726, 0.003157117171213031, 0.010551865212619305, -0.010380750522017479, -0.01869881898164749, -0.04644635692238808, -0.023482443764805794, 0.0387469157576561, 0.017609182745218277, -0.039962708950042725, -0.0037443479523062706, -0.0415571965277195, 0.007843611761927605, -0.005163493100553751, -0.009650655090808868, -0.05329005420207977, 0.013306970708072186, -0.01513172872364521, -0.011927024461328983, 0.0021469881758093834, -0.02009822428226471, -0.03338879719376564, 0.00014863313117530197, -0.020284904167056084, 0.053358279168605804, 0.005731770768761635, 0.028956832364201546, -0.003984907176345587, -0.01096033863723278, -0.00859590619802475, 0.0039835721254348755, -0.005002377089112997, -0.03829970210790634, 0.0023991598282009363, -0.026171905919909477, -0.006322098430246115, -0.009324847720563412, -0.037249282002449036, -0.03542417660355568, -0.012244832701981068, 0.026827897876501083, -0.05255931615829468, 0.0028611752204596996, 0.011620295234024525, -0.018403025344014168, 0.000671296555083245, -0.06420748680830002, -0.0281450767070055, -0.02783665806055069, -0.012474982999265194, 0.030529754236340523, -0.021751288324594498, 0.011675767600536346, 0.032202042639255524, 0.032397426664829254, 0.018255561590194702, 0.05076543241739273, 0.019718259572982788, -0.05227341875433922, -0.01005528587847948, 0.011932097375392914, 0.02811412885785103, 0.026415439322590828, 0.008498973213136196, -0.015502509661018848, -0.021145083010196686, 0.021089784801006317, 0.0009244629763998091, 0.012210860848426819, -0.03678680583834648, -0.04547955468297005, 7.852569688457693e-33, -0.010176161304116249, -0.015534469857811928, -0.02808694913983345, 0.03518454357981682, 0.00945050548762083, -0.016253946349024773, 0.02848956361413002, -0.0031198146753013134, -0.046341441571712494, 0.02121366187930107, -0.047582924365997314, 0.0030105432961136103, -0.02228875271975994, 0.007564227562397718, 0.04464191943407059, -0.01953854039311409, 0.018078837543725967, 0.019352540373802185, 0.03175339102745056, -0.003264961065724492, 0.028036780655384064, 0.020249223336577415, 0.005166593007743359, -0.010328131727874279, 0.045801952481269836, 0.06397408992052078, -0.020578181371092796, 0.044546157121658325, -0.004078198224306107, 0.02746722847223282, 0.009022236801683903, 0.0016903564101085067, -0.001444186782464385, 0.03416820988059044, 0.0034728418104350567, 0.024844182655215263, -0.008122093975543976, 0.027823012322187424, 0.01736895553767681, 0.0011283381609246135, 0.030417926609516144, -0.013506751507520676, -0.018637286499142647, -0.0024568617809563875, 0.017877118661999702, 0.010750798508524895, 0.010147244669497013, 0.004059325437992811, -0.00888959039002657, 0.010562557727098465, -0.022034676745533943, 0.012025773525238037, -0.022275492548942566, -0.0053954594768583775, -0.01148400828242302, -0.01799992471933365, -0.06948022544384003, 0.018016308546066284, -0.024554254487156868, -0.03269977122545242, 0.01985599659383297, 0.02440272830426693, -0.020668791607022285, 0.02293122000992298, -0.04561999440193176, -0.01833379454910755, -0.027714340016245842, -0.013115298002958298, 0.027604375034570694, -0.020565766841173172, -0.009579275734722614, 0.011821631342172623, -0.03388405963778496, 0.0024381226394325495, 0.00793489720672369, -0.02353796735405922, -0.0011905333958566189, -0.007751422468572855, 0.007555596064776182, 0.026726875454187393, -0.03104434348642826, 0.03817964345216751, -0.03528691455721855, 0.005786575842648745, 0.04650608077645302, 0.01796102151274681, -0.04268467426300049, 0.017970731481909752, 0.04635589197278023, 0.03734102100133896, -0.008339855819940567, 0.0077299997210502625, -0.027507809922099113, 0.03556514531373978, -0.01771818846464157, -1.2887854339282967e-8, 0.03758463263511658, 0.0029059185180813074, 0.011949233710765839, 0.012838059104979038, 0.026800263673067093, 0.004849265329539776, 0.0009919274598360062, -0.04383071884512901, -0.022275719791650772, 0.011703869327902794, 0.03770241141319275, -0.028658796101808548, -0.026566587388515472, 0.016800053417682648, 0.04007738083600998, 0.003942748066037893, -0.007540816906839609, -0.015219645574688911, 0.02122674509882927, 0.015631668269634247, 0.006817339453846216, 0.05859357491135597, -0.009685550816357136, 0.012605803087353706, -0.029567478224635124, 0.029942484572529793, 0.03135038912296295, -0.0798129066824913, -0.00411192886531353, 0.014936547726392746, -0.0014924306888133287, -0.036810681223869324, -0.04338977485895157, 0.012959135696291924, -0.01257722731679678, -0.009114264510571957, -0.03580692037940025, -0.00879341084510088, 0.021807311102747917, -0.005200126674026251, 0.008820386603474617, 0.029238862916827202, 0.007858354598283768, -0.01600043475627899, -0.04903865605592728, -0.03455616906285286, -0.019558118656277657, -0.0031114297453314066, 0.033558983355760574, -0.025894178077578545, 0.023776456713676453, -0.0006384481675922871, -0.045246709138154984, 0.03245856985449791, -0.027119163423776627, -0.006574960891157389, 0.03257088363170624, -0.04967503622174263, 0.009653409011662006, -0.000035811233829008415, 0.01029636524617672, 0.0031624240800738335, 0.0007091326988302171, -0.027620986104011536 ]
while-waiting-for-vms-to-provision
https://markhneedham.com/blog/2012/09/12/while-waiting-for-vms-to-provision
false
2012-09-13 00:17:49
Unix: Caught out by shell significant characters
[ "shell" ]
[ "Shell Scripting" ]
One of the applications that https://twitter.com/philandstuff[Phil] and I were deploying today needed a MySQL server and part of our puppet code to provision that node type runs a command to setup the privileges for a database user. The unevaluated puppet code reads like this: [source,text] ---- /usr/bin/mysql -h ${host} -uroot ${rootpassarg} -e "grant all on ${name}.* to ${user}@'${remote_host}' identified by '$password'; flush privileges;" ---- In the application we were deploying that expanded into something like this: [source,text] ---- /usr/bin/mysql -h localhost -uroot root_pw -e "grant all on db_name.* to db_user@'%' identified by 'awe$ome+password'; flush privileges;" ---- Unfortunately when we ran puppet it was executing without any problems but when we tried to connect to MySQL using 'db_user' with a password of 'awe$ome+password' we kept being denied access. We tried changing the password to 'bob' to see what would happen, expecting that to fail as well, but were actually able to login so we figured there was something wrong with the password. Phil suggested echoing the command to see what it was being evaluated to in the shell and once we did that we realised that the password was actually being set to 'awe+password' because the +++<cite>+++$ome+++</cite>+++ bit was being evaluated as a shell variable. This happens because http://www.howtogeek.com/howto/29980/whats-the-difference-between-single-and-double-quotes-in-the-bash-shell/[shell variables are evaluated] if they are enclosed in "" which is the case here as our whole grant statement is enclosed in "". If variables are enclosed in '' then they won't be evaluated: [source,text] ---- $ mark="foo"; echo "$mark" foo ---- [source,text] ---- $ mark="foo"; echo '$mark' $mark ---- In this case we can therefore switch the '' and "" around to solve the problem: [source,text] ---- /usr/bin/mysql -h localhost -uroot root_pw -e 'grant all on db_name.* to db_user@"%" identified by awe$ome+password"; flush privileges;' ----
null
null
[ -0.011168209835886955, -0.010028288699686527, -0.023068901151418686, 0.04554712399840355, 0.11904703080654144, 0.009207040071487427, 0.024225089699029922, 0.03709671273827553, 0.018546024337410927, -0.021510325372219086, -0.010033393278717995, 0.0036454990040510893, -0.047451380640268326, 0.018678884953260422, -0.0011157512199133635, 0.05849294364452362, 0.08832664042711258, 0.0016846258658915758, 0.0162523090839386, -0.0013473313301801682, 0.02428586781024933, 0.03147571533918381, 0.004170512780547142, 0.032982051372528076, 0.010050381533801556, 0.06868124008178711, 0.010538028553128242, -0.02817869558930397, -0.06648312509059906, 0.004233699291944504, 0.03421371430158615, -0.0026928193401545286, 0.025297151878476143, -0.011648918502032757, -0.0007946690311655402, -0.0005392019520513713, -0.0034333027433604, 0.02338377945125103, 0.0018444075249135494, 0.005120265297591686, -0.061252765357494354, 0.021028053015470505, 0.03233356401324272, 0.019409190863370895, -0.036137182265520096, -0.0022090733982622623, -0.039401836693286896, 0.01559158880263567, -0.01610613986849785, 0.014696000143885612, -0.08604724705219269, 0.04630205035209656, -0.058285683393478394, -0.02651303820312023, 0.03301957622170448, 0.025950495153665543, 0.020576773211359978, -0.08636833727359772, 0.013464517891407013, -0.05982944369316101, -0.01193311158567667, 0.023242998868227005, 0.007897459901869297, 0.00735084991902113, 0.036093682050704956, 0.012425435706973076, 0.023177267983555794, 0.04222938418388367, -0.04822973534464836, -0.020468223839998245, 0.02387949638068676, 0.028359411284327507, -0.0505920946598053, -0.05170537158846855, 0.014179716818034649, -0.03991955518722534, -0.00926425401121378, 0.041424352675676346, 0.018474891781806946, 0.07232557237148285, -0.04757693037390709, -0.0012280069058761, 0.03818047046661377, 0.018792180344462395, -0.003547920612618327, -0.0591437928378582, -0.0048926034942269325, -0.019145144149661064, -0.02655150555074215, 0.04305371269583702, 0.021450698375701904, -0.035064294934272766, -0.0022849799133837223, 0.006143094971776009, 0.007640519645065069, -0.010556581430137157, 0.005116920452564955, -0.014800505712628365, 0.01177848782390356, -0.0038979544769972563, -0.050460755825042725, -0.010842698626220226, 0.007936472073197365, -0.0005079624243080616, -0.09171712398529053, 0.0331370048224926, -0.0633784607052803, -0.0003430777578614652, 0.0016079713823273778, 0.027425164356827736, -0.014431747607886791, 0.0067598638124763966, 0.0023239448200911283, -0.009965291246771812, -0.06697013229131699, 0.06799186766147614, 0.03348253667354584, -0.028648193925619125, 0.018671950325369835, 0.01780407689511776, 0.046358898282051086, 0.035433974117040634, -0.004586358554661274, 0.07168345153331757, 0.004903826862573624, 0.027176104485988617, 0.005080371629446745, 0.01896367035806179, -0.0046565537340939045, -0.04998169094324112, -0.003936530090868473, 0.07177314907312393, 0.032279592007398605, 0.009626753628253937, -0.03545047342777252, -0.033425554633140564, -0.005191474687308073, -0.022898396477103233, 0.0708092674612999, 0.020942000672221184, -0.010948964394629002, -0.04892328754067421, -0.03201228752732277, 0.006196185946464539, 0.05404200032353401, 0.013585727661848068, 0.036463070660829544, -0.041330959647893906, -0.03798321262001991, 0.008576546795666218, 0.04069837927818298, -0.013439169153571129, 0.04556237906217575, -0.008086095564067364, 0.009466954506933689, 0.06776922941207886, 0.04215215891599655, -0.016681278124451637, -0.019497424364089966, -0.01005325373262167, 0.0336623378098011, 0.018522681668400764, 0.011958659626543522, 0.055675409734249115, 0.03574031591415405, 0.011764968745410442, -0.022330578416585922, 0.026566695421934128, -0.0029481651727110147, 0.022083992138504982, -0.06399273127317429, -0.04646101966500282, 0.06980936974287033, -0.04217430576682091, -0.00803877878934145, -0.0011969453189522028, 0.046103447675704956, 0.039348967373371124, 0.03365261107683182, 0.011859014630317688, -0.07190893590450287, 0.03922269493341446, -0.029160311445593834, 0.017997456714510918, 0.03332864120602608, 0.005965808406472206, 0.06371115893125534, 0.020735694095492363, 0.02471162937581539, 0.04740399122238159, -0.0941171944141388, -0.08002278953790665, -0.01929619163274765, 0.0036229626275599003, 0.04954881593585014, -0.012957828119397163, -0.003980750683695078, 0.06309761106967926, 0.036631908267736435, 0.01396716944873333, -0.001250973902642727, 0.028489388525485992, 0.05244774743914604, -0.053802646696567535, -0.07009924203157425, 0.036866169422864914, 0.05418656766414642, -0.03170681744813919, -0.029705144464969635, 0.01410751137882471, -0.047627247869968414, 0.03151354938745499, -0.020419325679540634, -0.015477306209504604, 0.039458587765693665, 0.0276324525475502, 0.052280571311712265, -0.033730220049619675, 0.03317209333181381, -0.03590444102883339, 0.032563239336013794, 0.012591231614351273, -0.004883218090981245, 0.02000909298658371, -0.005814943462610245, 0.12969805300235748, 0.046734243631362915, -0.025256767868995667, -0.03508623316884041, 0.0511053241789341, -0.008780722506344318, -0.07420193403959274, 0.029315277934074402, -0.010815691202878952, 0.0026854455936700106, 0.02171294391155243, -0.03488009050488472, -0.035572972148656845, 0.018950577825307846, -0.02481248788535595, 0.012737230397760868, 0.06003379076719284, -0.018987035378813744, 0.054229121655225754, -0.0021784447599202394, -0.036558497697114944, -0.013232771307229996, -0.04853276163339615, -0.05115974321961403, -0.001986768329516053, 0.05512848496437073, -0.0011259219609200954, 0.03966885432600975, -0.07029400765895844, 0.004427844192832708, -0.01597374863922596, -0.06065480783581734, 0.03573102876543999, -0.007961497642099857, 0.04909002408385277, -0.07063202559947968, 0.07037625461816788, -0.027740979567170143, 0.007507572416216135, -0.022340435534715652, -0.016888486221432686, -0.017885928973555565, 0.03771733120083809, -0.019670672714710236, 0.029283754527568817, 0.01083953958004713, 0.0013772310921922326, -0.015518788248300552, -0.037568408995866776, 0.03151609003543854, 0.0007814826094545424, 0.019357023760676384, 0.011513926088809967, 0.006841124966740608, -0.04062803089618683, 0.0016968213021755219, 0.02621784247457981, -0.06046151742339134, -0.0379006564617157, 0.035318680107593536, -0.04677600786089897, 0.04360058531165123, -0.0668882355093956, -0.050931040197610855, -0.02640257030725479, 0.018149161711335182, 0.02818661741912365, 0.008201195858418941, 0.012475688941776752, 0.0401851050555706, -0.028262311592698097, 0.037815775722265244, 0.03607664629817009, 0.023666804656386375, 0.03639273717999458, 0.0034453333355486393, -0.013730207458138466, 0.00914621539413929, -0.004172494634985924, 0.004406695254147053, -0.04069432243704796, 0.012885834090411663, -0.029122931882739067, -0.24839745461940765, 0.06530751287937164, 0.004632130265235901, -0.03028145059943199, 0.04842550307512283, -0.01349681057035923, 0.009029122069478035, -0.0209093876183033, -0.012725507840514183, 0.012226381339132786, -0.01826811023056507, -0.028531810268759727, 0.00380427367053926, 0.04162970930337906, -0.01108778640627861, 0.02214209735393524, -0.007148320786654949, -0.04890551418066025, -0.001684012939222157, -0.011731193400919437, -0.015143860131502151, -0.04728437960147858, 0.014886049553751945, 0.020321976393461227, 0.05600258335471153, 0.08111563324928284, -0.03714410215616226, 0.0444871187210083, -0.03167665749788284, -0.045108694583177567, -0.0003944241034332663, -0.009429574012756348, -0.00975586287677288, 0.02504950761795044, -0.04269557446241379, 0.022754382342100143, 0.031907375901937485, -0.02060955949127674, 0.047182414680719376, -0.012802034616470337, -0.05729779601097107, -0.07565151900053024, 0.01751491241157055, -0.0026660291478037834, 0.07357224076986313, -0.017667824402451515, -0.06975749135017395, -0.005558655597269535, -0.016106989234685898, 0.06194945052266121, -0.03628405183553696, -0.023565050214529037, -0.01582396775484085, 0.021297352388501167, -0.009501850232481956, 0.009822962805628777, -0.046555522829294205, 0.01002789381891489, -0.05492965131998062, -0.011402638629078865, 0.01239285059273243, -0.049424704164266586, -0.012432245537638664, -0.05942169576883316, 0.01489210780709982, -0.0617634654045105, -0.052141692489385605, -0.04032411798834801, 0.11219362169504166, 0.014656778424978256, -0.02068447135388851, -0.007512221112847328, -0.039108678698539734, -0.11627433449029922, 0.00010423547064419836, -0.05012424290180206, -0.058583103120326996, -0.009311715140938759, -0.0033062691800296307, 0.017724361270666122, -0.03761683404445648, -0.02632197178900242, -0.008150767534971237, 0.007158283144235611, 0.001973948907107115, -0.004691687878221273, 0.014350133948028088, -0.024862321093678474, -0.02336415834724903, 0.006779273971915245, 0.0701129287481308, -0.024252116680145264, -0.035926662385463715, -0.02633371390402317, -0.005006138235330582, 0.022784167900681496, -0.0009981748880818486, 0.013960404321551323, -0.008748183958232403, 0.05399696156382561, 0.05203146114945412, -0.04775546118617058, 0.029426852241158485, -0.04101705923676491, -0.004278534557670355, -0.0035734004341065884, -0.047632016241550446, 0.04856948181986809, 0.01812823675572872, 0.04379026219248772, -0.030232496559619904, -0.015953658148646355, 0.00631744833663106, -0.073713019490242, -0.048232629895210266, 0.01989329233765602, 0.01918753609061241, 0.021163420751690865, 0.027631450444459915, -0.022946234792470932, -0.024554885923862457, 0.02136361412703991, 0.03869306296110153, -0.0033894232474267483, -0.05211867764592171, -0.014522221870720387, 0.00590886827558279, -0.010451983660459518, 0.03204217553138733, -0.017184756696224213, 0.012123674154281616, 0.029046818614006042, 0.040721431374549866, -0.02720019966363907, 0.023211071267724037, 0.012922185473144054, -0.024717584252357483, -0.045356445014476776, 0.007835017517209053, -0.015541745349764824, -0.04268340393900871, -0.01265975832939148, 0.00014035275671631098, 0.021630784496665, 0.03702131286263466, -0.014855439774692059, 0.03267635405063629, -0.0512930229306221, 0.013759379275143147, 0.046294230967760086, -0.0036830371245741844, -0.054240379482507706, 0.0003111518162768334, -0.05202226713299751, -0.0457766093313694, -0.007128461264073849, 0.005154144484549761, -0.02432316169142723, -0.010698344558477402, -0.03193484619259834, -0.001153968391008675, -0.062207549810409546, -0.0020848240237683058, 0.013526041992008686, -0.031723782420158386, 0.039881329983472824, 0.006413773167878389, 0.036813050508499146, 0.007637643255293369, 0.008501102216541767, 0.005684693809598684, 0.0567597821354866, -0.013711151666939259, 0.003596268128603697, -0.0028484868817031384, -0.04319151118397713, 0.023134373128414154, 0.010681058280169964, 0.010814185254275799, 0.00928079430013895, 0.02975929155945778, -0.008108976297080517, 0.01914633996784687, 0.026732243597507477, 0.0448935404419899, 0.010800651274621487, -0.014204729348421097, -0.015723615884780884, -0.020474771037697792, -0.03982310742139816, -0.040774691849946976, -0.01240257453173399, -0.016234304755926132, 0.004746840801090002, -0.02552439086139202, -0.03876116871833801, 0.02875666134059429, 0.04462843015789986, 0.01778600551187992, 0.010122952982783318, 0.001638844725675881, -0.009045902639627457, -0.01783488504588604, 0.04184640571475029, 0.03415317460894585, -0.02962353266775608, -0.018889371305704117, -0.011452829465270042, -0.012342159636318684, 0.014317410998046398, 0.03095104731619358, -0.04294847324490547, -0.0015022327424958348, 0.02263578400015831, 0.03945713862776756, -0.05326714366674423, -0.05109984427690506, -0.027111424133181572, -0.03279054909944534, -0.01649884507060051, 0.02993215247988701, 0.00032991994521580637, 0.017451496794819832, 0.0005557003314606845, -0.025213971734046936, 0.0002852140460163355, -0.05553726106882095, -0.02122710645198822, 0.027469616383314133, -0.016505874693393707, 0.002907729707658291, -0.018903624266386032, 0.036963291466236115, 0.007981563918292522, -0.027323007583618164, -0.01965264603495598, -0.03957892209291458, 0.00004690720743383281, -0.07023131847381592, 0.0313195176422596, -0.01731426641345024, -0.014287691563367844, -0.04124351963400841, 0.0013133208267390728, -0.02605544589459896, 0.019646378234028816, -0.015449625439941883, -0.03331337496638298, 0.03488302230834961, 0.04209323227405548, 0.03199667111039162, 0.023554744198918343, -0.012635467574000359, -0.002000099280849099, 0.05586574971675873, -0.05896119028329849, -0.01266027893871069, -0.016989504918456078, -0.06730787456035614, 0.04194178059697151, 0.034661665558815, 0.005658762063831091, -0.03941784426569939, 0.03582253307104111, 0.038021545857191086, 0.0019130707951262593, 0.040365979075431824, -0.005817549768835306, 0.037584953010082245, -0.0268248300999403, -0.02124238759279251, -0.0794687569141388, 0.015691155567765236, -0.03311878442764282, -0.0415823869407177, -0.012074627913534641, -0.006413023918867111, -0.05815834552049637, 0.02011716365814209, -0.059155646711587906, -0.03607920557260513, 0.05000372976064682, -0.004095025826245546, -0.014750590547919273, 0.019275261089205742, -0.08477301895618439, 0.020733293145895004, 0.035608891397714615, -0.05377728492021561, -0.015072090551257133, -0.004051018040627241, 0.049622297286987305, -0.0008605619077570736, 0.04478039592504501, -0.010951351374387741, -0.023620855063199997, 0.07792404294013977, 0.004968269728124142, -0.0055978912860155106, 0.04082963615655899, -0.021509703248739243, 0.02010725624859333, 0.012631016783416271, 0.029989726841449738, 0.017279090359807014, 0.02308597043156624, -0.034154828637838364, -0.03341877460479736, -0.020037008449435234, -0.015085062943398952, -0.04395980387926102, -0.045883845537900925, 0.04144241288304329, 0.00335590704344213, -0.017159482464194298, -0.05577809736132622, 0.01134693343192339, -0.016490420326590538, -0.051312871277332306, -0.032663583755493164, 0.021799949929118156, -0.06890814006328583, 0.06357139348983765, 0.05547022074460983, 0.03290034830570221, 0.058622587472200394, -0.02762639708817005, -0.02108488790690899, 0.030388006940484047, 0.05920385196805, 0.08983978629112244, 0.029967501759529114, 0.01706310175359249, 0.03989588841795921, -0.02928660437464714, -0.0338565856218338, -0.011373293586075306, -0.003971825819462538, -0.006402458529919386, -0.039129242300987244, -0.028301067650318146, 0.0718698501586914, -0.037864577025175095, 0.05972890183329582, 0.008990802802145481, 0.01100962609052658, 0.02035839669406414, 0.024348022416234016, 0.029125746339559555, 0.049185894429683685, 0.017509644851088524, 0.005281253717839718, -0.013560963794589043, -0.04544615000486374, 0.03673321381211281, -0.028192702680826187, -0.038470473140478134, 0.024470077827572823, -0.0006893941317684948, 0.02546921744942665, 0.008563842624425888, 0.01950586587190628, 0.07051242142915726, -0.03223086893558502, 0.002722395583987236, 0.018784521147608757, 0.03631570562720299, -0.022321999073028564, 0.03130680322647095, 0.004395113326609135, -0.011740417219698429, -0.022151408717036247, -0.03936746343970299, -0.006625095847994089, 0.005149369593709707, -0.007184584625065327, 0.042276106774806976, -0.000026517182050156407, 0.003276974195614457, 0.04454806447029114, 0.02164682187139988, -0.028243541717529297, -0.020115720108151436, -0.06225143000483513, -0.04040147736668587, -0.02948635257780552, -0.02238948829472065, 0.009351505897939205, 0.0025403446052223444, -0.04013872891664505, 0.014216906391084194, -0.027062511071562767, -0.015538870356976986, 0.038237061351537704, -0.011123854666948318, -0.038580309599637985, -0.001214887946844101, -0.0006422587903216481, 0.034935109317302704, -0.0009830511407926679, 0.039426177740097046, 0.0016732705989852548, 0.02290014736354351, -0.02248382195830345, -0.01898317225277424, 0.04724523425102234, -0.034881651401519775, -0.03254779428243637, -0.06351680308580399, 0.019223760813474655, 0.03356868401169777, 0.02455133944749832, -0.05143604800105095, 0.043568894267082214, -0.0071919141337275505, -0.009890320710837841, 0.07699725776910782, -0.0483580157160759, 0.029320931062102318, -0.03056316077709198, -0.02395121566951275, -0.015757648274302483, -0.027441659942269325, 0.05516619607806206, -0.018892182037234306, 0.09724311530590057, 0.047961585223674774, -0.015509852208197117, -0.05093774199485779, -0.008495212532579899, 0.016170302405953407, -0.009046327322721481, -0.021734055131673813, 0.02762799896299839, -0.05729484558105469, -0.07851067185401917, -0.00816921517252922, 0.012079519219696522, -0.01594742201268673, -0.032134007662534714, -0.0062675923109054565, 0.007852890528738499, -0.03874460980296135, -0.018159596249461174, -0.01585063524544239, 0.019908493384718895, -0.03127159923315048, -0.011142207309603691, 0.0009144158684648573, 0.036122020334005356, -0.04747864976525307, 0.0068533169105648994, 0.045505985617637634, -0.033888109028339386, -0.03375200182199478, 0.008063257671892643, 0.0394473560154438, 0.04669966548681259, -0.0013729851925745606, 0.034333884716033936 ]
[ -0.08655241131782532, -0.04812459275126457, -0.03842378780245781, -0.060617998242378235, 0.02044866792857647, -0.05201948061585426, 0.022384721785783768, -0.003543244209140539, -0.002361355349421501, -0.02551412582397461, 0.005940150935202837, 0.014433112926781178, 0.04437874257564545, -0.031095312908291817, 0.067258320748806, 0.01239623874425888, -0.026158692315220833, -0.014713828451931477, -0.0382341630756855, 0.04264635965228081, -0.012795859947800636, -0.03034215047955513, -0.037502139806747437, -0.047437477856874466, -0.04424651712179184, 0.04390047863125801, 0.015259436331689358, -0.02536989375948906, -0.003122051479294896, -0.1777404546737671, 0.042444486171007156, -0.016232805326581, -0.0363120511174202, -0.012533699162304401, 0.029732875525951385, 0.03932550549507141, 0.015561447478830814, -0.02341197431087494, -0.004740698263049126, 0.06200077384710312, 0.02771964855492115, 0.007324110250920057, -0.06983672082424164, -0.015053002163767815, 0.04463982582092285, -0.039332836866378784, -0.025595828890800476, -0.012784497812390327, -0.010334103368222713, -0.00431207288056612, -0.025783512741327286, 0.03680646792054176, 0.01149078831076622, -0.012452696450054646, -0.0065061599016189575, -0.005789748392999172, 0.05281675606966019, 0.08452869951725006, -0.005110243801027536, 0.015995919704437256, 0.015298852697014809, 0.017719915136694908, -0.15416352450847626, 0.08926014602184296, 0.04017344117164612, 0.060231391340494156, -0.03908228129148483, -0.0515296496450901, -0.038392324000597, 0.06285609304904938, 0.011021972633898258, -0.019455939531326294, -0.047882452607154846, 0.06648711860179901, 0.0001459388149669394, -0.01735541969537735, -0.013727686367928982, 0.03125149756669998, 0.050146445631980896, -0.04086623340845108, -0.04471796751022339, -0.020514197647571564, -0.02185017056763172, -0.002702143043279648, -0.03288425877690315, 0.025080395862460136, 0.0005933868233114481, 0.059323348104953766, 0.021006103605031967, 0.037392329424619675, 0.019644714891910553, -0.028880655765533447, 0.06929510831832886, 0.009482976980507374, -0.059199362993240356, 0.021921459585428238, -0.0006931789102964103, 0.009534027427434921, -0.07114426791667938, 0.4356430172920227, 0.030655566602945328, 0.00046625194954685867, 0.01363207958638668, -0.026563962921500206, 0.048113904893398285, 0.02274443581700325, 0.016736702993512154, -0.03171003982424736, 0.010450229048728943, -0.02095293067395687, 0.021268099546432495, -0.024828961119055748, 0.07348089665174484, -0.05930764973163605, 0.0014392351731657982, 0.02943609282374382, -0.0032696675043553114, 0.017793972045183182, -0.02885635942220688, 0.017409665510058403, -0.005442094523459673, 0.004506074823439121, 0.03308515250682831, 0.04811509698629379, 0.04374498501420021, -0.033759649842977524, 0.02203477919101715, 0.07471217960119247, 0.015447480604052544, 0.024538470432162285, 0.033703844994306564, -0.02437475137412548, -0.02135266363620758, 0.0006526405340991914, 0.0013244617730379105, 0.025237612426280975, 0.004036472644656897, -0.017473146319389343, 0.0045030973851680756, 0.03186127915978432, -0.013297916390001774, -0.05061905458569527, 0.009052949026226997, -0.012654932215809822, -0.02093205787241459, 0.0891435369849205, -0.007900102995336056, -0.007093328982591629, -0.049964554607868195, -0.02212958037853241, -0.033145077526569366, 0.031200319528579712, 0.01151281874626875, -0.06381042301654816, -0.033571045845746994, 0.01935199648141861, 0.036670982837677, 0.009037361480295658, -0.05511954426765442, -0.015586934983730316, 0.016726555302739143, -0.06299354135990143, -0.04038701206445694, 0.028642628341913223, 0.02499464340507984, -0.08756619691848755, -0.04535531997680664, 0.014193776063621044, 0.027637818828225136, -0.04705318808555603, -0.02150006592273712, -0.011903592385351658, -0.06333719938993454, -0.04406416043639183, 0.0004479994240682572, -0.04960383474826813, -0.016372082754969597, 0.026806628331542015, 0.017966488376259804, 0.0318223312497139, -0.03752395510673523, -0.009220327250659466, -0.05542726069688797, -0.015906235203146935, -0.06799168884754181, -0.05351167172193527, -0.06667392700910568, 0.018545426428318024, -0.006252914667129517, -0.010661412961781025, -0.04348234087228775, -0.012993160635232925, -0.09760846942663193, 0.007701634895056486, 0.014641182497143745, -0.04666593670845032, 0.018910907208919525, 0.008352300152182579, -0.006199526134878397, -0.037787217646837234, 0.04369790479540825, 0.03408433496952057, -0.015735628083348274, 0.05202541872859001, -0.05866933614015579, 0.04028909653425217, 0.02401895634829998, -0.02398345060646534, 0.07548396289348602, 0.043101053684949875, -0.032380782067775726, 0.023942137137055397, -0.019425833597779274, 0.04194292426109314, -0.016537843272089958, -0.010844840668141842, -0.046026576310396194, -0.002063074614852667, 0.06290941685438156, 0.002828278113156557, -0.020717499777674675, 0.012087398208677769, -0.01634809747338295, -0.3437281548976898, -0.054729167371988297, -0.039079874753952026, 0.003494529752060771, 0.007746915332973003, -0.051234252750873566, 0.040489379316568375, -0.030194606631994247, -0.02903176099061966, -0.01570706069469452, 0.08260668069124222, -0.0366852767765522, 0.03548301383852959, -0.03601274639368057, -0.03795641288161278, 0.009979985654354095, -0.04694763943552971, -0.006205087527632713, -0.004789147526025772, 0.033696021884679794, -0.0027133377734571695, -0.039624396711587906, 0.007763806730508804, -0.04802508279681206, -0.013165726326406002, -0.004072773270308971, 0.10903345793485641, 0.024279559031128883, 0.08488485217094421, -0.044833727180957794, 0.07056794315576553, 0.0019205480348318815, 0.018732279539108276, -0.11198708415031433, 0.02471020445227623, 0.002225356176495552, -0.02915269136428833, 0.013590571470558643, 0.04617758467793465, -0.008491664193570614, -0.08978316187858582, 0.02391098625957966, -0.04282253980636597, -0.03750450909137726, 0.007225486915558577, -0.018355658277869225, -0.002418395597487688, -0.009204805828630924, -0.029921768233180046, 0.06371255218982697, 0.02738003432750702, 0.005616546608507633, 0.009046950377523899, 0.011197380721569061, 0.02464941516518593, -0.012625148519873619, -0.026483988389372826, -0.02380562014877796, 0.010343358851969242, 0.043660424649715424, 0.0496896393597126, 0.05540533363819122, 0.00901753082871437, -0.060578301548957825, 0.00879612285643816, -0.022814448922872543, -0.019079042598605156, 0.013032189570367336, 0.04566826671361923, -0.05495103821158409, -0.05015294626355171, 0.1123805046081543, 0.028370611369609833, 0.03776141256093979, 0.01820015348494053, 0.02172563038766384, -0.005014801863580942, -0.0017078904202207923, 0.008579268120229244, -0.015609022229909897, 0.05388844758272171, -0.01250781025737524, 0.0512554831802845, -0.04755716025829315, -0.02629326470196247, 0.04987376928329468, -0.019865376874804497, -0.015803631395101547, 0.07060455530881882, -0.004744954872876406, -0.03413097932934761, -0.012815305963158607, -0.0201234370470047, -0.07180953770875931, 0.05314595624804497, 0.003886216087266803, -0.28557583689689636, 0.04186160862445831, 0.016441766172647476, 0.0493418350815773, 0.011707082390785217, 0.011608244851231575, 0.050129953771829605, -0.05024271085858345, -0.019304974004626274, 0.002960318699479103, 0.04529312998056412, 0.02966994233429432, -0.015162576921284199, 0.014646800234913826, 0.002722322940826416, 0.0032185243908315897, 0.034276507794857025, 0.003373171202838421, -0.013676850125193596, 0.0062074437737464905, 0.01969364657998085, -0.012094863690435886, 0.14858895540237427, 0.03186006844043732, 0.0072095044888556, 0.022021528333425522, 0.004891739692538977, 0.0371122807264328, 0.0818011462688446, 0.043776895850896835, -0.02146437019109726, 0.0057599227875471115, 0.02026766911149025, -0.012171761132776737, 0.048789214342832565, -0.0608503483235836, -0.0053231362253427505, 0.015287529677152634, 0.04061014950275421, -0.0314236544072628, -0.032613322138786316, 0.03574585169553757, 0.024105604737997055, 0.039763905107975006, 0.054315343499183655, -0.015452146530151367, 0.04160265624523163, -0.005391386337578297, 0.021580157801508904, 0.014071770943701267, -0.01959986798465252, -0.015852468088269234, -0.0034307362511754036, -0.005170014221221209, 0.01664106175303459, 0.08736728131771088, 0.039010122418403625, -0.007730938959866762, 0.021876094862818718, 0.00004990880552213639, -0.02134833112359047, -0.039159830659627914, 0.14241735637187958, 0.02068244107067585, 0.025572316721081734 ]
[ 0.01944555714726448, 0.04786187410354614, -0.005909677594900131, 0.0049959165044128895, -0.018000535666942596, -0.022995328530669212, -0.030378103256225586, -0.001771482639014721, -0.026787836104631424, 0.026486674323678017, -0.015954462811350822, 0.002010537078604102, 0.07927542179822922, -0.04274376854300499, 0.007915129885077477, 0.04447660222649574, 0.008388537913560867, 0.02657405287027359, 0.022426234558224678, -0.032489556819200516, -0.015385683625936508, 0.003283037571236491, 0.06398647278547287, -0.001636094180867076, -0.0028158212080597878, 0.012363852933049202, -0.04312114417552948, 0.02556859888136387, 0.01745571941137314, -0.14076699316501617, -0.047839220613241196, -0.010237366892397404, 0.014460126869380474, -0.00416953070089221, -0.00005200820669415407, 0.047079578042030334, 0.012259063310921192, -0.01455544400960207, -0.00039001600816845894, -0.018846336752176285, 0.049844611436128616, -0.02661992609500885, -0.019197462126612663, 0.011431659571826458, -0.01716335117816925, -0.028421342372894287, -0.049682676792144775, 0.01357071939855814, -0.01649557426571846, -0.04168073460459709, -0.0019319186685606837, -0.007852154783904552, 0.07437301427125931, -0.0003978295426350087, -0.01587921753525734, -0.002214873908087611, 0.007820132188498974, 0.02149130217730999, 0.01298124622553587, -0.007282066158950329, 0.015360420569777489, 0.02988673932850361, -0.02087189257144928, -0.00933769065886736, 0.004096908029168844, -0.030483461916446686, -0.03334547579288483, -0.029088739305734634, -0.012458184733986855, 0.0037661483511328697, -0.033914729952812195, -0.00008473319030599669, -0.020010551437735558, -0.028157208114862442, -0.008378636091947556, -0.026442594826221466, 0.047664791345596313, -0.007924619130790234, -0.006051855627447367, 0.032598335295915604, -0.03398781642317772, 0.004868161864578724, 0.005641109310090542, -0.019483042880892754, -0.0025316078681498766, -0.007113869301974773, 0.022355929017066956, 0.004952459130436182, 0.017736781388521194, 0.030212080106139183, 0.018604159355163574, -0.019651290029287338, -0.01968958042562008, 0.016977472230792046, -0.08205288648605347, -0.025073105469346046, 0.0007618755334988236, -0.021043311804533005, -0.03858213499188423, 0.8263608813285828, 0.009669356979429722, -0.009502820670604706, 0.0015808222815394402, 0.00616040313616395, 0.02706257440149784, -0.006551016122102737, 0.02522423304617405, -0.002770490013062954, 0.002011201111599803, -0.017555993050336838, -0.0004959345678798854, 0.011895110830664635, 0.017463840544223785, 0.006266320124268532, -0.005676358472555876, 0.024255024269223213, 0.007252512965351343, -0.007974231615662575, 0.011689409613609314, 0.02009025774896145, 0.06363535672426224, 0.0006985668442212045, 0.012699278071522713, 0.023204408586025238, 0.0007561756065115333, -0.19832006096839905, 0.0018821466946974397, -7.457630035204298e-33, 0.02208857610821724, -0.042625561356544495, 0.011515690013766289, 0.012605760246515274, 0.036690156906843185, 0.03578675910830498, 0.019735062494874, 0.02379951998591423, -0.04891113191843033, -0.03483008220791817, 0.003802192397415638, -0.019677575677633286, 0.003697390202432871, -0.017466038465499878, 0.013229334726929665, 0.006421984173357487, -0.005823967978358269, 0.049761999398469925, 0.04460781067609787, 0.006993903778493404, 0.017799757421016693, 0.027538031339645386, -0.011680522933602333, 0.045809343457221985, 0.056032098829746246, 0.011363470926880836, 0.010157779790461063, -0.009464604780077934, 0.003983614034950733, -0.03589382767677307, -0.007669514045119286, 0.0023817846085876226, 0.007038705982267857, -0.0326191671192646, -0.026663456112146378, -0.04507248476147652, 0.008254949003458023, -0.007765755522996187, -0.014702222310006618, -0.038475554436445236, -0.01694646291434765, -0.01519330870360136, -0.005905559752136469, -0.0404970645904541, -0.010676652193069458, -0.033465173095464706, -0.01728818193078041, 0.019464125856757164, 0.024211132898926735, 0.008975821547210217, 0.0025435960851609707, -0.0031912862323224545, -0.016971418634057045, 0.004809418693184853, 0.0054711648263037205, 0.01168348640203476, -0.027163974940776825, -0.00521838990971446, -0.01812572591006756, 0.007230511866509914, -0.015637235715985298, -0.01303254347294569, -0.020039571449160576, -0.008278650231659412, 0.0350366085767746, -0.058386851102113724, -0.004934935364872217, 0.0437726154923439, 0.0017398515483364463, 0.043249983340501785, -0.048459313809871674, 0.003919260576367378, -0.024799831211566925, -0.008403572253882885, -0.019279122352600098, -0.022469379007816315, -0.012726382352411747, -0.0029287838842719793, 0.025754855945706367, 0.04494273290038109, 0.026600880548357964, -0.002619988052174449, -0.07025064527988434, -0.016702823340892792, -0.012689957395195961, -0.019608398899435997, -0.010916503146290779, -0.01242299098521471, -0.014784719794988632, -0.012521722353994846, 0.04186980798840523, 0.017712615430355072, -0.00511857308447361, -0.06346563994884491, -0.038012221455574036, 7.044451117729956e-33, 0.00931631587445736, 0.0008107677567750216, -0.01111844927072525, 0.018876241520047188, 0.05804930999875069, -0.03342952951788902, 0.020101752132177353, -0.013969305902719498, -0.04591915383934975, 0.0034043786581605673, -0.050381120294332504, 0.023154528811573982, -0.04430539160966873, 0.006795714143663645, 0.03612177073955536, -0.012379772961139679, 0.0065146563574671745, -0.024137558415532112, 0.04843936115503311, 0.018264086917042732, -0.018096720799803734, 0.03588637337088585, 0.022696854546666145, 0.019423209130764008, 0.011069891974329948, 0.013587884604930878, -0.029016761109232903, 0.013653445057570934, 0.0020900173112750053, 0.020469602197408676, -0.004543182905763388, 0.00003212916271877475, 0.01903415657579899, 0.011460179463028908, -0.039612334221601486, 0.02036174200475216, -0.019715305417776108, -0.005314291454851627, 0.007581490091979504, -0.01214376837015152, 0.027529248967766762, 0.009242632426321507, -0.015095211565494537, -0.02424219809472561, -0.0019244388677179813, 0.009427621960639954, -0.018128981813788414, -0.00872642919421196, -0.013332747854292393, 0.015184533782303333, -0.01969197206199169, -0.002099776640534401, 0.029302380979061127, -0.009457167237997055, 0.016329172998666763, -0.04345627874135971, -0.05380886420607567, -0.002074922900646925, -0.0005794140743091702, -0.0025081466883420944, 0.020304063335061073, 0.06276679784059525, -0.0054735760204494, 0.03920634835958481, -0.055817846208810806, -0.015445215627551079, -0.006608871277421713, 0.015322132967412472, 0.01610604301095009, -0.0031580296345055103, 0.0032963319681584835, 0.020105164498090744, -0.009195815771818161, 0.04624469205737114, 0.05230993777513504, -0.013140237890183926, -0.029213596135377884, 0.016257144510746002, 0.008508092723786831, 0.0077637420035898685, -0.021228738129138947, 0.037005484104156494, -0.008621650747954845, -0.010452641174197197, 0.0077077788300812244, -0.038638483732938766, -0.0371055006980896, 0.03042425401508808, 0.04067422077059746, 0.02238708734512329, -0.002294778823852539, 0.014121374115347862, -0.04468156397342682, 0.017781641334295273, -0.016584455966949463, -1.2872517274331585e-8, 0.006713829934597015, -0.011438275687396526, -0.004483083728700876, 0.019364802166819572, 0.04541828855872154, -0.0008215581765398383, -0.032474812120199203, -0.030903596431016922, -0.019384626299142838, 0.012276507914066315, 0.0317552275955677, -0.0128996092826128, 0.03253750130534172, 0.005872082896530628, 0.033164769411087036, -0.0265431459993124, 0.008900097571313381, -0.027538448572158813, 0.037258945405483246, -0.009131909348070621, -0.014123688451945782, 0.06749668717384338, -0.01079174317419529, -0.0016664047725498676, 0.028173968195915222, 0.03403005376458168, -0.021170414984226227, -0.07957083731889725, -0.02723870240151882, 0.010760541073977947, 0.029458027333021164, -0.017146356403827667, -0.025525206699967384, 0.008248744532465935, -0.01654733531177044, -0.009976767003536224, -0.026549382135272026, -0.0322301872074604, -0.00462375720962882, -0.009311545640230179, 0.008781996555626392, 0.008816520683467388, 0.04621207341551781, -0.025572381913661957, -0.03333458676934242, -0.023643335327506065, -0.0007616484072059393, 0.023826194927096367, 0.05137815326452255, -0.04157783091068268, 0.0400828942656517, -0.022313155233860016, -0.030429504811763763, 0.0313524454832077, 0.036701567471027374, 0.027512000873684883, 0.027412816882133484, -0.01244684960693121, -0.008183375932276249, -0.0195296723395586, 0.02642878331243992, 0.015229347161948681, -0.00933066476136446, -0.025751149281859398 ]
unix-caught-out-by-shell-significant-characters
https://markhneedham.com/blog/2012/09/13/unix-caught-out-by-shell-significant-characters
false
2012-08-05 09:45:08
neo4j: Creating a custom index with neo4j.rb
[ "neo4j" ]
[ "neo4j" ]
As I http://www.markhneedham.com/blog/2012/07/30/london-bus-stops-api-mapping-northingeasting-values-to-latlong/[mentioned in my last post] I've been playing around with the http://www.tfl.gov.uk/businessandpartners/syndication/16493.aspx#17463[TFL Bus stop location and routes API] and one thing I wanted to do was load all the bus stops into a neo4j database using the https://github.com/andreasronge/neo4j[neo4j.rb] gem. I initially populated the database via https://github.com/maxdemarzi/neography/[neography] but it was taking around 20 minutes each run and I figured it'd probably be much quicker to populate it directly rather than using the REST API. Creating nodes is reasonably simple, and the code to add bus stops looks like this: [source,ruby] ---- require 'neo4j' Neo4j::Transaction.run do stops_to_add = [ {:name => "Walworth Road", :code => 10001 }] stops_to_add.each do |stop| node = Neo4j::Node.new(:name => stop[:name], :code => stop[:code], :type => "stop") puts "Code: #{stop[:code]}, Stop: #{stop[:name]}" end end ---- I wanted to be able to search for bus stops using cypher so I needed to create an index for each stop to allow me to do that easily. I initially tried creating a +++<cite>+++Stop+++</cite>+++ class and defining the index in there http://neo4j.rubyforge.org/guides/lucene.html[as suggested in the documentation] but from what I could tell it created an index named after the string representation of the +++<cite>+++Stop+++</cite>+++ object which made it difficult to use in http://docs.neo4j.org/chunked/stable/cypher-query-lang.html[cypher]. Eventually I came across https://github.com/andreasronge/neo4j/wiki/Neo4j%3A%3ACore-Lucene[another page] which explained that I needed to create a 'custom index' if I wanted to be able to reference it by name. I ended up with the following: [source,ruby] ---- class StopsIndex extend Neo4j::Core::Index::ClassMethods include Neo4j::Core::Index self.node_indexer do index_names :exact => 'stops' trigger_on :type => "stop" end index :code end ---- As far as I understand this index gets triggered when you're inside a transaction adding a node of type 'stop' which is what I'm doing here. With the index defined this way it's now possible to look up stops using cypher: [source,text] ---- START stop = node:stops(code = "10001") RETURN stop ---- And when later on in the code I wanted to add a 'route' between stops I could look up the stops like so: [source,ruby] ---- Neo4j::Transaction.run do stop1 = StopsIndex.find("code: \"10001\"").first stop2 = StopsIndex.find("code: \"10002\"").first Neo4j::Relationship.new(:route, stop1, stop2, { :bus_number => 1 }) end ---- The https://github.com/mneedham/london-buses/blob/master/data/load.rb[full code for this is on github].
null
null
[ 0.017482377588748932, -0.04804793372750282, -0.003359435824677348, 0.03177047520875931, 0.08039876818656921, 0.000008611148587078787, 0.02771241031587124, 0.06128985434770584, 0.013569499365985394, -0.021838311105966568, -0.034951068460941315, -0.029784349724650383, -0.07456301897764206, 0.0138609129935503, -0.015952885150909424, 0.047463852912187576, 0.0658465176820755, -0.004785255063325167, 0.018840081989765167, -0.011305185966193676, 0.054233867675065994, 0.07048656046390533, 0.02013709582388401, 0.042268309742212296, 0.04146558791399002, -0.00976753793656826, -0.00652275187894702, 0.01250578835606575, -0.05554335564374924, 0.0049214353784918785, 0.051925573498010635, 0.001654024817980826, 0.008072791621088982, 0.025667425245046616, 0.04690989479422569, -0.009453779086470604, -0.0171336829662323, -0.01295116264373064, -0.006578471511602402, -0.004885563161224127, -0.07720334827899933, 0.020033404231071472, -0.03130880370736122, 0.007664169184863567, -0.05036160349845886, 0.004426138009876013, -0.042750284075737, 0.016012754291296005, 0.004316491074860096, -0.014721686020493507, -0.08381719887256622, 0.027831407263875008, -0.020664069801568985, 0.021335039287805557, -0.013550139032304287, 0.04053056985139847, 0.0008199797011911869, -0.09450431913137436, 0.0657595843076706, -0.027941158041357994, 0.013579214923083782, -0.024254515767097473, 0.0025866003707051277, 0.043089065700769424, 0.013718084432184696, -0.045097269117832184, -0.023509211838245392, 0.06157177686691284, -0.053873587399721146, -0.010857591405510902, -0.012113487347960472, 0.014870173297822475, -0.01795375347137451, 0.025387538596987724, 0.0032218052074313164, -0.04896773397922516, 0.02515573240816593, 0.05076330900192261, 0.01071399636566639, 0.059217892587184906, -0.028845246881246567, -0.0007680002017877996, 0.01350637897849083, 0.023544203490018845, -0.012564198113977909, -0.03406711667776108, -0.047733601182699203, -0.012798205018043518, -0.04824783280491829, 0.03552865982055664, 0.020946208387613297, -0.03876640647649765, -0.014341250993311405, 0.020396597683429718, -0.03003055416047573, 0.0027877597603946924, -0.003595104208216071, 0.004240671172738075, -0.004197480622678995, -0.026623455807566643, -0.016526859253644943, -0.04246947169303894, -0.01567038893699646, 0.03205426409840584, -0.08180494606494904, -0.038935814052820206, -0.043332938104867935, -0.012377895414829254, 0.014495224691927433, -0.01276220940053463, -0.045026060193777084, -0.01649412326514721, -0.02991124801337719, 0.009222114458680153, -0.06076138839125633, 0.05536140874028206, 0.019692305475473404, -0.0330931581556797, -0.03462953120470047, 0.006483318749815226, 0.04376491159200668, 0.044686686247587204, 0.01144937053322792, 0.05847907066345215, -0.015798797830939293, 0.03862018138170242, -0.010630346834659576, 0.041796520352363586, -0.03463905677199364, -0.05273420736193657, -0.02120724320411682, 0.0783529132604599, -0.002269594231620431, -0.0004890074487775564, -0.008850793354213238, -0.01933148317039013, -0.02362630143761635, 0.010517765767872334, 0.06671281903982162, 0.017216334119439125, 0.006976814940571785, -0.04766255244612694, 0.022047758102416992, 0.0030718634370714426, 0.03735632449388504, 0.01161457970738411, -0.022505007684230804, -0.036254145205020905, -0.039571814239025116, 0.01213657483458519, 0.0053781610913574696, 0.027059143409132957, 0.03016199730336666, -0.030455032363533974, 0.028738491237163544, 0.08608034253120422, 0.040672529488801956, 0.01092120073735714, -0.03479546681046486, 0.0390477254986763, 0.048327475786209106, 0.0484558567404747, 0.006375675555318594, 0.054184071719646454, -0.025149136781692505, -0.014095940627157688, 0.003517183940857649, 0.06433884799480438, -0.008229633793234825, 0.009925244376063347, -0.014089166186749935, -0.05959835276007652, 0.05724569037556648, -0.046127740293741226, 0.00397731177508831, 0.02834058739244938, 0.09575428068637848, 0.028751619160175323, 0.0026420236099511385, -0.015600131824612617, -0.07572758197784424, 0.0605354979634285, 0.02797841653227806, 0.039927996695041656, 0.02256467565894127, -0.004326317925006151, 0.07640867680311203, 0.05003230646252632, 0.004633360542356968, 0.01096412818878889, -0.06001623347401619, -0.08278471231460571, -0.015512563288211823, -0.016013970598578453, 0.05087471008300781, -0.009479142725467682, 0.019276874139904976, 0.04985342547297478, -0.006696760188788176, 0.05734329670667648, 0.010644703172147274, -0.03279617801308632, 0.04037146642804146, -0.0652611255645752, -0.0357840470969677, 0.04690070450305939, 0.006636571604758501, -0.025516018271446228, -0.05025924742221832, 0.018663661554455757, -0.013681957498192787, -0.017467346042394638, 0.02114974707365036, -0.0033218557946383953, 0.04058957099914551, 0.0017037621000781655, 0.04845640808343887, -0.01737981103360653, 0.022075405344367027, -0.025217561051249504, 0.0495397225022316, 0.01902054250240326, -0.03463979437947273, -0.016341213136911392, -0.007239222060889006, 0.10242199152708054, 0.04851408675312996, -0.014716187492012978, -0.05671074613928795, 0.015369703993201256, 0.020322248339653015, -0.021088967099785805, -0.009761287830770016, -0.027638277038931847, -0.01237651240080595, -0.0024951694067567587, -0.03584446385502815, -0.016436755657196045, 0.008567963726818562, -0.03846379742026329, -0.002903552958741784, 0.04561910033226013, -0.0275136549025774, 0.052359167486429214, 0.006433097179979086, -0.007746272254735231, 0.002983994781970978, -0.034981586039066315, -0.044703952968120575, 0.015163328498601913, 0.005834969691932201, -0.017311519011855125, 0.037325091660022736, -0.01229079905897379, -0.00019936787430197, -0.030538376420736313, -0.03115171007812023, 0.05112324655056, 0.04819177836179733, 0.058756083250045776, -0.008326549082994461, 0.05155625939369202, -0.048773545771837234, 0.02436032146215439, -0.020641546696424484, -0.04303021728992462, -0.02518310770392418, -0.02531820721924305, 0.019283469766378403, 0.031986940652132034, 0.012623700313270092, 0.0068845381028950214, 0.042922213673591614, 0.010688867419958115, 0.03166206181049347, 0.010837645269930363, 0.032155659049749374, 0.0340149961411953, 0.008024417795240879, -0.021405978128314018, -0.04493960738182068, 0.039354708045721054, -0.053267598152160645, -0.03344796970486641, -0.0020042278338223696, -0.053420670330524445, 0.054783593863248825, -0.04834926500916481, -0.03429989144206047, -0.017208782956004143, 0.0106524508446455, 0.032619137316942215, 0.014949480071663857, 0.013014471158385277, 0.05643678084015846, 0.039087824523448944, 0.015804089605808258, 0.015862060710787773, -0.014694037847220898, 0.04002159461379051, -0.006533041130751371, 0.028411027044057846, 0.019061418250203133, -0.03197074308991432, 0.011858036741614342, -0.024449652060866356, -0.008895870298147202, 0.010480256751179695, -0.2782168686389923, 0.0482589453458786, -0.034070149064064026, -0.060395460575819016, 0.017039883881807327, -0.03260429576039314, -0.00771714560687542, -0.012581007555127144, -0.018548503518104553, 0.013931617140769958, -0.031062573194503784, -0.04355572164058685, -0.0047812010161578655, 0.03150811418890953, 0.001381052192300558, 0.022467823699116707, 0.006339594721794128, -0.05929935351014137, -0.018174486234784126, 0.03774144500494003, 0.010893840342760086, -0.06834592670202255, -0.014543438330292702, 0.0438385047018528, 0.01803598180413246, 0.05910229682922363, -0.08499100059270859, 0.056892745196819305, -0.04613565281033516, -0.011085249483585358, 0.030759606510400772, -0.04223327711224556, 0.011415211483836174, -0.0062735723331570625, -0.029556645080447197, -0.013583670370280743, 0.04478239640593529, -0.0004992503672838211, 0.013362571597099304, -0.004082741681486368, -0.047495149075984955, -0.04697592929005623, -0.006192903965711594, -0.02061811089515686, 0.0928393080830574, 0.02186724543571472, -0.08898601680994034, -0.010578246787190437, -0.027707092463970184, 0.04956682771444321, -0.008092735894024372, -0.030493538826704025, -0.02906132861971855, 0.02150571532547474, -0.023436589166522026, -0.0401255302131176, -0.02537962794303894, -0.020412597805261612, -0.04158039391040802, -0.04764300957322121, -0.0003310702450107783, -0.040216512978076935, -0.009002098813652992, -0.040041882544755936, -0.01408125925809145, -0.046348053961992264, -0.05159018933773041, -0.006699938792735338, 0.055809833109378815, 0.024127507582306862, -0.014571395702660084, 0.02546277828514576, 0.002215858083218336, -0.09874904155731201, -0.05417880415916443, -0.03127345070242882, -0.047317519783973694, 0.030287722125649452, -0.011690264567732811, 0.03458740562200546, -0.04487651586532593, -0.031742166727781296, 0.00968069676309824, 0.01447992492467165, 0.017300834879279137, -0.0063669197261333466, 0.0028875540010631084, 0.008737152442336082, -0.028613554313778877, 0.01006282027810812, 0.07072778791189194, -0.03586876392364502, -0.046317338943481445, -0.015781540423631668, 0.0230528824031353, 0.012227158062160015, -0.004083969164639711, 0.009528090246021748, 0.031039029359817505, 0.04887029156088829, 0.03047160431742668, -0.030510103330016136, 0.024701783433556557, -0.021499205380678177, -0.018270744010806084, -0.00847674161195755, -0.04225362464785576, 0.014403882436454296, 0.018871091306209564, 0.021515339612960815, 0.00553742703050375, -0.016564026474952698, 0.017875052988529205, -0.07572992146015167, -0.012060963548719883, -0.00547967292368412, 0.020088154822587967, 0.021779388189315796, 0.04537295922636986, -0.02285730466246605, -0.055641211569309235, 0.017854370176792145, 0.040831100195646286, -0.0008997097029350698, -0.059409249573946, -0.018184229731559753, -0.019609641283750534, -0.00683940015733242, 0.021666526794433594, 0.02287832461297512, -0.005164007656276226, 0.020598603412508965, 0.00592206884175539, -0.03372467681765556, 0.008898180909454823, -0.03206272050738335, -0.044515591114759445, -0.044522952288389206, 0.026367418467998505, 0.03056356869637966, -0.019821837544441223, 0.025164244696497917, -0.006403774488717318, 0.0391678623855114, 0.04584290459752083, 0.020150331780314445, 0.031066684052348137, -0.009921375662088394, 0.02386249601840973, -0.005540633574128151, -0.009402241557836533, -0.045260123908519745, -0.024771612137556076, -0.030701499432325363, 0.009406923316419125, -0.023726653307676315, 0.05563808232545853, -0.034216780215501785, -0.02548034116625786, -0.03836994245648384, 0.019533200189471245, -0.0619501918554306, 0.010411170311272144, -0.004704719875007868, -0.0152052640914917, 0.060607556253671646, 0.0025153604801744223, 0.02573251537978649, -0.00993585679680109, -0.012758134864270687, 0.010480900295078754, 0.012386467307806015, -0.04390586167573929, 0.014250293374061584, 0.007872913032770157, -0.008258512243628502, -0.03652535751461983, 0.03461204841732979, 0.024970391765236855, -0.0006166419479995966, -0.014409908093512058, -0.020826447755098343, 0.03532244265079498, 0.00636997539550066, 0.04710119217634201, 0.023195356130599976, -0.016951236873865128, 0.0028958453331142664, -0.006426962558180094, -0.03591523692011833, -0.008826535195112228, 0.02165316976606846, -0.035719722509384155, 0.029469000175595284, -0.020135954022407532, -0.0734647661447525, 0.04855872318148613, -0.004993299953639507, -0.007067088037729263, 0.044757746160030365, 0.01177268661558628, -0.017731057479977608, -0.01624482497572899, 0.03184409439563751, 0.0637473538517952, -0.0362483374774456, -0.0031382127199321985, 0.0017499548848718405, -0.005192764103412628, 0.005847790278494358, 0.01915285550057888, -0.06099091097712517, -0.027689453214406967, 0.002011786215007305, 0.0006099878810346127, -0.021784169599413872, -0.04958837106823921, -0.03962230682373047, -0.010314663872122765, 0.002922807587310672, 0.007701308000832796, 0.015241477638483047, -0.014748499728739262, -0.02373930625617504, 0.012933887541294098, 0.05798512324690819, -0.024054083973169327, -0.037397876381874084, 0.002942455466836691, -0.015499656088650227, -0.009026162326335907, -0.026831313967704773, 0.03443548455834389, 0.02289699763059616, 0.006915666628628969, 0.010807186365127563, -0.05893378704786301, -0.0059700049459934235, -0.02226254530251026, 0.08289783447980881, -0.027287239208817482, -0.004255035426467657, -0.019958360120654106, 0.01780419982969761, -0.03074493817985058, 0.005644619930535555, 0.0016512025613337755, 0.010133820585906506, 0.016538556665182114, 0.03549865260720253, 0.007388176862150431, 0.016850454732775688, -0.007597868796437979, -0.03894411399960518, 0.04145970940589905, -0.054419249296188354, -0.04441582411527634, -0.021232198923826218, -0.021608440205454826, 0.03274141252040863, 0.019259845837950706, 0.027013767510652542, -0.039926428347826004, 0.054577503353357315, 0.03184207156300545, 0.03651903197169304, 0.030753757804632187, -0.021205652505159378, 0.044127628207206726, -0.060698214918375015, -0.008102187886834145, -0.08463849872350693, 0.016873769462108612, 0.04963585361838341, 0.011597147211432457, -0.013769719749689102, 0.011733929626643658, -0.049641627818346024, 0.020203987136483192, -0.048704203218221664, -0.02421674132347107, 0.05799560621380806, -0.01289057731628418, 0.004914696794003248, 0.0040612900629639626, -0.065714530646801, 0.0236419178545475, 0.061086300760507584, -0.032353904098272324, -0.014372245408594608, -0.03340304270386696, 0.036555215716362, -0.02517392858862877, 0.05839646980166435, -0.029085110872983932, -0.02056124061346054, 0.07235988229513168, 0.02217921055853367, 0.014076140709221363, 0.04691053181886673, -0.04192012920975685, 0.015138642862439156, 0.029055418446660042, -0.00764603354036808, 0.0033005208242684603, 0.04401468485593796, -0.01624589040875435, -0.03827099874615669, 0.05279363691806793, -0.012309178709983826, 0.014484393410384655, -0.031235933303833008, 0.07766219973564148, 0.04659285396337509, -0.0496467761695385, -0.043640024960041046, 0.03426073119044304, -0.036754339933395386, -0.038736965507268906, -0.05796245485544205, 0.015434404835104942, -0.008211253210902214, 0.050913602113723755, -0.028138350695371628, 0.006577087100595236, 0.0723968893289566, -0.01395789161324501, -0.02174217253923416, 0.012226138263940811, 0.07877848297357559, 0.09952196478843689, 0.03238667547702789, -0.0038929376751184464, 0.0630074292421341, 0.0143681475892663, -0.035911645740270615, 0.009634692221879959, -0.055339548736810684, -0.01141988206654787, 0.017033684998750687, -0.022261857986450195, 0.059557512402534485, -0.02437390387058258, 0.07249674946069717, -0.025755316019058228, -0.014833217486739159, -0.0013808401999995112, -0.006532761268317699, 0.010699672624468803, 0.05127141252160072, 0.0058939275331795216, 0.05577699467539787, -0.013075691647827625, -0.046751901507377625, 0.018216663971543312, -0.007641198579221964, -0.03444545343518257, 0.017857681959867477, -0.020160377025604248, -0.009493367746472359, 0.016204817220568657, 0.06004967540502548, 0.0978078693151474, -0.04149678349494934, -0.020197590813040733, -0.00005091251659905538, 0.014587945304811, -0.02940577268600464, 0.020178666338324547, -0.020961172878742218, -0.025433138012886047, -0.014152629300951958, -0.02360038086771965, -0.01680193841457367, -0.009873953647911549, -0.02896127663552761, 0.008400405757129192, -0.005701309069991112, 0.013201635330915451, -0.004356727469712496, -0.017312658950686455, -0.04207976162433624, -0.04169544577598572, -0.06671398878097534, -0.025743208825588226, -0.08312444388866425, 0.017580170184373856, -0.003940129186958075, -0.007407164666801691, -0.033155545592308044, -0.017367307096719742, 0.004359915386885405, -0.011903977021574974, 0.034466054290533066, -0.04599987342953682, 0.004767077509313822, 0.006376230623573065, 0.01581460051238537, -0.0032570629846304655, 0.051878124475479126, 0.0658518597483635, 0.023904498666524887, 0.010338854975998402, -0.026961956173181534, 0.01229510735720396, 0.05640089139342308, 0.04501323401927948, -0.0038621153216809034, -0.08865063637495041, 0.005741586443036795, -0.001449780073016882, 0.023487506434321404, -0.07238359749317169, -0.007794097065925598, 0.022514091804623604, 0.037182100117206573, 0.02750871330499649, -0.022536182776093483, -0.01697842963039875, -0.013794186525046825, 0.0304584801197052, -0.001637243665754795, -0.029609469696879387, 0.022107837721705437, -0.013142900541424751, 0.05932356417179108, 0.016961481422185898, -0.00507096154615283, -0.02220604009926319, -0.0023149321787059307, 0.02774636261165142, 0.0023002109955996275, -0.06391431391239166, -0.053970858454704285, -0.03928602486848831, -0.09839855134487152, -0.029852215200662613, 0.006275933701545, -0.016966287046670914, -0.021928057074546814, 0.020344343036413193, 0.03878968954086304, -0.02939426898956299, 0.036894477903842926, -0.01667136326432228, 0.022770114243030548, -0.01338981930166483, -0.027622269466519356, -0.02648712694644928, 0.012502596713602543, 0.011800918728113174, 0.010999833233654499, 0.0225464329123497, -0.053345538675785065, 0.014535282738506794, -0.02776779606938362, 0.03826938942074776, 0.028200015425682068, 0.02463926188647747, 0.00398333789780736 ]
[ -0.04766556993126869, -0.0557406023144722, 0.0015762855764478445, -0.006124335341155529, 0.0721421092748642, -0.05824350565671921, -0.03135940060019493, 0.012258898466825485, -0.014660336077213287, -0.02620340883731842, -0.0026848982088267803, -0.020756082609295845, 0.0018198301550000906, 0.018755648285150528, 0.05035470798611641, -0.024198004975914955, -0.030550120398402214, -0.0650060698390007, -0.008124940097332, 0.0414874330163002, -0.015017172321677208, -0.011847102083265781, -0.02768479660153389, -0.017693940550088882, 0.001115677529014647, 0.07056112587451935, 0.0480259545147419, 0.0009532450931146741, -0.008903268724679947, -0.1915174126625061, -0.009688434191048145, -0.0018525865161791444, 0.004844233859330416, -0.003986430820077658, -0.013396864756941795, 0.021194657310843468, 0.02379663661122322, 0.008933675475418568, 0.034511055797338486, 0.016199002042412758, 0.03638358414173126, 0.02641654573380947, -0.06502785533666611, 0.006473790388554335, 0.05185174569487572, 0.007634846027940512, -0.02000858448445797, -0.01445080991834402, -0.007241995073854923, 0.0032305102795362473, -0.044511351734399796, 0.0038891679141670465, 0.005574183538556099, -0.01299917884171009, -0.022958556190133095, 0.038257621228694916, 0.00916450284421444, 0.0820552408695221, 0.03566282242536545, 0.020452972501516342, 0.03524800390005112, -0.017198532819747925, -0.14486674964427948, 0.06891203671693802, -0.024883504956960678, 0.021382005885243416, -0.03918175399303436, 0.008562888018786907, -0.024123240262269974, 0.039762552827596664, 0.003340507857501507, -0.0005253147683106363, -0.0659230500459671, 0.09670064598321915, -0.004007115960121155, -0.003265144769102335, -0.019976025447249413, 0.04784807190299034, 0.04309449717402458, -0.0425385944545269, -0.0425935722887516, -0.013290248811244965, -0.002056647790595889, -0.0038385691586881876, -0.018437279388308525, 0.03134023770689964, -0.027559248730540276, 0.07675594091415405, 0.002933298936113715, 0.030663354322314262, 0.039647478610277176, -0.017173824831843376, 0.015057934448122978, 0.0297298114746809, -0.08283691853284836, -0.050550371408462524, 0.004856056533753872, 0.013679874129593372, 0.014421766623854637, 0.3605426847934723, 0.005690587684512138, 0.01221648883074522, 0.018019989132881165, 0.06452492624521255, -0.028836026787757874, -0.052627529948949814, 0.01187637634575367, -0.07254371047019958, -0.009371265769004822, 0.0038760085590183735, 0.056858669966459274, -0.025858350098133087, 0.06894367933273315, -0.08669721335172653, 0.0014184811152517796, 0.00821894221007824, 0.03780122101306915, 0.023806968703866005, -0.0450078584253788, 0.03305121138691902, -0.0314624048769474, 0.025199633091688156, 0.02468421682715416, 0.009827930480241776, 0.022081151604652405, 0.05723514407873154, 0.03148219361901283, 0.028339466080069542, 0.029722869396209717, 0.029509998857975006, 0.028162159025669098, -0.0025855319108814, -0.09684394299983978, 0.0030074140522629023, -0.03044912777841091, 0.012898237444460392, 0.013686524704098701, -0.056258197873830795, -0.019204067066311836, 0.013539677485823631, -0.014736310578882694, -0.04307035356760025, -0.00841069407761097, -0.00721316272392869, -0.02009042352437973, 0.09982945024967194, -0.006141929887235165, -0.040513619780540466, -0.01714790239930153, -0.06900974363088608, 0.02402096800506115, 0.023621467873454094, -0.020425986498594284, -0.08231136202812195, -0.018868671730160713, 0.05082570016384125, 0.12428227812051773, 0.033558811992406845, -0.05887338146567345, 0.014923629350960255, -0.01176857016980648, -0.01927095837891102, -0.031033523380756378, 0.06470742076635361, 0.013233429752290249, -0.12118291854858398, -0.004700949415564537, -0.005356926936656237, -0.020894227549433708, -0.09492360800504684, -0.005165640730410814, 0.03411218896508217, -0.036980703473091125, 0.00926304329186678, 0.08193960785865784, -0.017430651932954788, -0.03344952315092087, 0.005880360491573811, 0.049404215067625046, -0.005883159581571817, -0.040728550404310226, -0.014325084164738655, -0.02596469596028328, -0.013519641011953354, -0.05887441337108612, -0.02371719852089882, -0.09027256816625595, 0.014417866244912148, -0.031026290729641914, -0.011380273848772049, -0.04111822694540024, 0.0003920335147995502, -0.03175307437777519, 0.06552323698997498, -0.03719847649335861, -0.04537305608391762, -0.02536456473171711, -0.004370041657239199, -0.0015739843947812915, -0.03453296050429344, 0.06791486591100693, 0.03575253114104271, -0.019896384328603745, 0.020723365247249603, -0.042397014796733856, -0.0020262307953089476, 0.06268525123596191, -0.032631680369377136, 0.05464387685060501, 0.03700772300362587, -0.046805769205093384, 0.019510291516780853, 0.0006513736443594098, 0.035086795687675476, 0.002928788075223565, -0.05300009250640869, 0.007947397418320179, -0.012540161609649658, 0.023752648383378983, 0.04226682335138321, -0.035698361694812775, 0.00298952660523355, -0.06070844456553459, -0.3431229591369629, -0.034082282334566116, -0.03831806406378746, 0.01486999075859785, 0.012157811783254147, -0.060721028596162796, 0.006922817323356867, -0.0048443651758134365, -0.024285683408379555, 0.03430630639195442, 0.15516293048858643, -0.01107525359839201, -0.02586941048502922, -0.06990799307823181, 0.005950606428086758, 0.05120081081986427, -0.02073470503091812, -0.007308552041649818, -0.027398010715842247, 0.016150888055562973, 0.026695454493165016, -0.044862329959869385, -0.02371404320001602, -0.04279419034719467, -0.016642631962895393, -0.010034378618001938, 0.12533605098724365, -0.05176117643713951, 0.05574345588684082, -0.06272310763597488, 0.031115595251321793, -0.014122385531663895, -0.004418805241584778, -0.04483100399374962, -0.027338186278939247, -0.025147443637251854, 0.045649368315935135, 0.0673913061618805, 0.01560479961335659, -0.007610877975821495, -0.039895933121442795, 0.013243081048130989, -0.04846685379743576, -0.03399704769253731, -0.02516433224081993, 0.028392761945724487, -0.044381048530340195, -0.03202701359987259, 0.0400049053132534, 0.06903453171253204, -0.015225320123136044, 0.04305536299943924, -0.0008563009323552251, 0.017957551404833794, 0.021193398162722588, -0.02321978658437729, -0.05802786722779274, -0.052529215812683105, 0.01657201535999775, 0.02960302121937275, -0.007687903940677643, 0.032667405903339386, 0.04180382564663887, -0.053873591125011444, 0.027865609154105186, -0.003662998089566827, -0.023372488096356392, 0.006883078720420599, 0.021333584561944008, -0.012573755346238613, -0.052769485861063004, 0.10882589966058731, 0.01139557734131813, 0.020819712430238724, 0.0411812886595726, 0.06245286762714386, -0.0000339961625286378, 0.01707068458199501, 0.051168616861104965, 0.029180146753787994, -0.0015300081577152014, -0.05902085453271866, 0.05771173536777496, -0.03414192795753479, -0.011278443969786167, 0.09800062328577042, 0.03178202360868454, -0.051484450697898865, 0.026572775095701218, 0.024300167337059975, 0.008673541247844696, 0.011334309354424477, -0.016589995473623276, -0.04168836027383804, 0.07808823138475418, -0.010662885382771492, -0.25534170866012573, 0.06236056983470917, 0.03403652459383011, 0.04025961086153984, 0.009554126299917698, 0.01653384603559971, 0.03482480347156525, -0.01067272573709488, 0.01028666365891695, 0.008298777043819427, 0.01747170463204384, 0.06820607930421829, 0.01766309142112732, -0.02130913734436035, 0.03524969518184662, -0.01048871036618948, 0.0581398569047451, 0.04226776957511902, 0.006418789271265268, -0.014222928322851658, 0.03734190762042999, -0.03734273090958595, 0.1867392361164093, 0.05904936417937279, -0.004353711847215891, 0.05328350141644478, -0.0560271181166172, 0.00716983899474144, 0.03197800740599632, -0.01830494962632656, -0.028171198442578316, 0.022234415635466576, -0.016946403309702873, 0.027494559064507484, 0.02414524555206299, -0.04046633839607239, -0.0267275832593441, 0.08669906854629517, 0.023279357701539993, -0.038166593760252, -0.022007878869771957, 0.043034862726926804, -0.03917330130934715, 0.020205484703183174, 0.0789121612906456, -0.0194961279630661, -0.03384731337428093, -0.001978632528334856, -0.0432293601334095, -0.011062628589570522, -0.018608147278428078, -0.040606118738651276, -0.04624146223068237, -0.024213755503296852, 0.011727024801075459, 0.07021137326955795, -0.008737917058169842, -0.02502656728029251, 0.012525618076324463, 0.05583622679114342, -0.015658613294363022, -0.05829521641135216, 0.07922697067260742, -0.034685201942920685, 0.023071786388754845 ]
[ 0.04647593945264816, 0.03450509160757065, -0.017923781648278236, 0.016116423532366753, -0.0015096543356776237, 0.024200432002544403, -0.003107556840404868, -0.0016466762172058225, -0.02060147561132908, -0.02814592979848385, -0.052441664040088654, 0.05531267449259758, 0.039780937135219574, -0.035529013723134995, -0.03549204021692276, 0.020702267065644264, 0.02157614380121231, 0.031560298055410385, 0.02518429234623909, -0.024936413392424583, 0.012983561493456364, 0.036690644919872284, 0.020121468231081963, 0.019692113623023033, -0.06167992204427719, 0.012412232346832752, -0.02716599404811859, -0.017607251182198524, 0.01793358102440834, -0.1136832982301712, -0.037658896297216415, -0.034778498113155365, -0.023013385012745857, 0.023075919598340988, -0.03701920807361603, -0.015276913531124592, 0.037016209214925766, -0.02538343332707882, 0.015693126246333122, 0.021458815783262253, 0.048922665417194366, -0.051860976964235306, -0.04361890256404877, 0.004075496923178434, 0.047715138643980026, -0.00576089508831501, -0.014820214360952377, -0.029207194223999977, 0.012413600459694862, -0.016524245962500572, -0.04831792786717415, -0.01303569320589304, 0.005320004653185606, 0.023860586807131767, 0.01061139814555645, -0.027445610612630844, -0.013735568150877953, 0.0056107970885932446, 0.00804725382477045, -0.019233494997024536, 0.046985141932964325, 0.01153995655477047, -0.03829863294959068, -0.02971714735031128, -0.02646462246775627, 0.009207271039485931, -0.02728351764380932, -0.008194376714527607, 0.00020407616102602333, -0.00451132794842124, 0.013446865603327751, 0.030225275084376335, -0.0959707498550415, -0.032663896679878235, -0.024466369301080704, 0.015191083773970604, 0.05879655107855797, -0.038219209760427475, -0.009682856500148773, -0.008040888234972954, -0.022197403013706207, -0.014031564816832542, -0.0027014119550585747, 0.022371284663677216, -0.025874247774481773, -0.00560098746791482, 0.015078135766088963, -0.010472103953361511, 0.029399404302239418, 0.0036167879588901997, -0.023778406903147697, 0.010321509093046188, 0.011969072744250298, -0.0019162099342793226, -0.07199522107839584, -0.009839218109846115, -0.0017811140278354287, -0.03299405425786972, 0.010270928032696247, 0.7932367324829102, 0.0001329664228251204, -0.0019438567105680704, 0.0015615312149748206, 0.02272159978747368, -0.010129852220416069, -0.00572397094219923, 0.013113481923937798, 0.021811610087752342, -0.014129003509879112, -0.018830684944987297, 0.012889186851680279, 0.01930634118616581, 0.01556228008121252, 0.020564116537570953, -0.012927678413689137, 0.033290665596723557, 0.00595345301553607, -0.003983404487371445, 0.02684135176241398, 0.01658349484205246, 0.04508223384618759, 0.042473942041397095, -0.009581648744642735, 0.006777873262763023, 0.003728702664375305, -0.16977576911449432, 0.0015328075969591737, -6.448769355450762e-33, -0.009872189722955227, -0.004295481368899345, 0.04280818626284599, 0.02363232709467411, 0.01566615141928196, 0.011080421507358551, -0.04652227461338043, -0.007054475136101246, 0.01529499888420105, -0.005712193436920643, -0.010100511834025383, -0.004685373045504093, 0.022360673174262047, -0.02490195445716381, 0.03020785003900528, -0.052240148186683655, 0.018924174830317497, 0.005923673044890165, 0.010523553937673569, -0.011827267706394196, 0.04649118334054947, 0.02147257886826992, -0.014245408587157726, 0.029177483171224594, 0.009699098765850067, 0.03612223640084267, -0.03162591904401779, 0.009793305769562721, 0.03265763074159622, -0.03911026194691658, -0.05258733406662941, 0.015117480419576168, -0.011438249610364437, 0.01569545455276966, 0.007855420932173729, -0.07212898880243301, -0.04871049150824547, 0.01478489488363266, -0.045421503484249115, -0.08157932013273239, -0.03559640422463417, 0.015943940728902817, -0.059576068073511124, -0.02271340601146221, -0.031019793823361397, -0.02867140807211399, -0.014380578882992268, 0.03745141997933388, 0.011592091992497444, 0.011353793554008007, 0.013435900211334229, 0.0036301310174167156, -0.021501939743757248, 0.004612812306731939, -0.04629288241267204, -0.007648355793207884, -0.0028357794508337975, 0.024419179186224937, -0.015997212380170822, -0.0025160564109683037, 0.027225757017731667, -0.03577519953250885, 0.029421281069517136, 0.03382471948862076, 0.0452459417283535, -0.001653563231229782, -0.01010045874863863, 0.04104524478316307, 0.012034541927278042, 0.031220776960253716, -0.026622425764799118, 0.036416321992874146, 0.0025434703566133976, 0.011635228991508484, 0.010992770083248615, -0.0720115453004837, -0.028120238333940506, -0.01524544321000576, -0.024991285055875778, 0.05463758856058121, 0.0045157126151025295, -0.01542343758046627, 0.013800585642457008, -0.049404408782720566, 0.020632170140743256, 0.01757112331688404, 0.027243470773100853, 0.034046608954668045, 0.022954218089580536, 0.030446773394942284, 0.014408673159778118, 0.04696701839566231, -0.012635047547519207, -0.006207467522472143, -0.026745524257421494, 6.21663860852213e-33, -0.02070748247206211, -0.045581888407468796, -0.019225791096687317, 0.00817781686782837, 0.0008487638551741838, -0.017240000888705254, 0.037504445761442184, 0.009222264401614666, -0.03486121818423271, 0.07217704504728317, -0.00981100369244814, -0.024953100830316544, -0.008739739656448364, 0.035739585757255554, 0.06641558557748795, -0.04254502058029175, 0.0313517265021801, -0.050092075020074844, 0.001695155049674213, 0.05390429124236107, -0.06032403185963631, -0.002606433117762208, -0.03548383340239525, 0.02292412891983986, 0.004006670322269201, 0.05491461232304573, -0.02582654543220997, 0.013190099969506264, -0.04559766873717308, 0.005247828084975481, 0.006678174715489149, -0.04883570969104767, 0.02536877617239952, 0.004931941162794828, -0.03134015202522278, 0.03752528876066208, -0.02149903029203415, 0.003995226230472326, 0.05393340438604355, 0.00573381083086133, 0.0378064289689064, -0.012592689134180546, 0.002088794019073248, 0.06009577587246895, 0.04321179911494255, -0.0060271271504461765, 0.0006785094738006592, -0.010263564065098763, -0.026603901758790016, 0.001613163622096181, 0.024538803845643997, 0.03309047222137451, -0.025465672835707664, 0.03726096823811531, 0.04447329044342041, -0.03464671969413757, 0.020616276189684868, 0.01812063157558441, 0.01524680107831955, -0.02429705299437046, -0.015569474548101425, -0.004319809842854738, -0.0033715134486556053, 0.03969921916723251, 0.00038584638969041407, -0.059760622680187225, -0.02608267217874527, -0.03832513093948364, 0.006446396466344595, -0.045517172664403915, 0.01711520180106163, 0.028085943311452866, 0.004995662719011307, 0.04554568603634834, -0.014665738679468632, -0.017214570194482803, -0.01920379512012005, 0.020847471430897713, -0.04943984001874924, 0.006797292269766331, -0.015778424218297005, 0.004378431010991335, 0.008790225721895695, 0.024115396663546562, -0.011359918862581253, -0.010495365597307682, -0.05768604949116707, 0.008980024605989456, -0.015721261501312256, -0.008554747328162193, 0.025628050789237022, -0.013681775890290737, -0.03137831762433052, 0.03956034779548645, -0.050012145191431046, -1.2064096388542112e-8, -0.025975750759243965, 0.00480554299429059, -0.028050700202584267, 0.016973262652754784, 0.0027889623306691647, 0.032067883759737015, -0.003310317872092128, 0.013209974393248558, -0.05268338322639465, 0.03403496369719505, 0.047394219785928726, 0.0019448651000857353, 0.0021998656447976828, 0.029930518940091133, -0.0037037963047623634, -0.057088255882263184, 0.022406192496418953, -0.012062013149261475, 0.03444753587245941, 0.013318626210093498, 0.0034046838991343975, 0.04265919327735901, -0.053893864154815674, -0.005022831726819277, 0.019009055569767952, -0.029665755107998848, 0.03338631987571716, -0.07137465476989746, 0.01841225102543831, -0.07260273396968842, 0.01366081926971674, -0.01691409759223461, -0.000006988927907514153, 0.010458246804773808, -0.025122173130512238, -0.024176381528377533, 0.017504025250673294, 0.06440398097038269, 0.041455354541540146, 0.027512717992067337, 0.037535160779953, 0.0026687339413911104, -0.027851341292262077, -0.029070282354950905, -0.003747099544852972, 0.00992051512002945, -0.03703481703996658, 0.017251893877983093, 0.06258025765419006, -0.005073458421975374, -0.02394951321184635, -0.028202220797538757, 0.04363308474421501, 0.041351623833179474, 0.04123757779598236, -0.044996052980422974, -0.0034118150360882282, -0.021436264738440514, -0.017650727182626724, 0.0008721176418475807, 0.005367781035602093, 0.02220734767615795, -0.02999808080494404, -0.011857271194458008 ]
neo4j-creating-a-custom-index-with-neo4j-rb
https://markhneedham.com/blog/2012/08/05/neo4j-creating-a-custom-index-with-neo4j-rb
false
2012-08-16 23:31:28
puppetdb: Failed to submit 'replace catalog' command for client to PuppetDB at puppetmaster:8081: [500 Server Error]
[ "puppet", "puppetdb" ]
[ "Software Development" ]
I'm still getting used to the idea of *following the logs* when working out what's going wrong with distributed systems but it worked well when trying to work out why our puppet client which was throwing this error when we ran 'puppet agent -tdv': [source,text] ---- err: Could not retrieve catalog from remote server: Error 400 on SERVER: Failed to submit 'replace catalog' command for client to PuppetDB at puppetmaster:8081: [500 Server Error] ---- We were seeing the same error in +++<cite>+++/var/log/syslog+++</cite>+++ on the puppet master and a quick look at the process list didn't show that the puppet master or puppetdb services were under a particularly heavy load. http://serverfault.com/questions/403753/puppet-gives-ssl-error-because-master-is-not-running[Eventually] we ended up looking at the puppetdb logs which showed that it was running out of memory: +++<cite>+++/var/log/puppetdb/puppetdb.log+++</cite>+++ [source,text] ---- 2012-08-15 17:48:38,535 WARN [qtp814855969-66] [server.AbstractHttpConnection] /commands java.lang.OutOfMemoryError: Java heap space ---- The default +++<cite>+++/etc/default/puppetdb+++</cite>+++ only has 192MB of heap space so we upped that to 1GB and problem solved! (at least for now) +++<cite>+++/etc/default/puppetdb+++</cite>+++ [source,text] ---- ########################################### # Init settings for puppetdb ########################################### # Location of your Java binary (version 6 or higher) JAVA_BIN="/usr/bin/java" # Modify this if you'd like to change the memory allocation, enable JMX, etc JAVA_ARGS="-Xmx1024m" # These normally shouldn't need to be edited if using OS packages USER="puppetdb" INSTALL_DIR="/usr/share/puppetdb" CONFIG="/etc/puppetdb/conf.d" ----
null
null
[ -0.018112024292349815, -0.02183721587061882, -0.0366789773106575, 0.03992937505245209, 0.10657155513763428, -0.01120112556964159, 0.022486265748739243, 0.03317033499479294, -0.007719076704233885, -0.01271679624915123, -0.015586532652378082, 0.009897884912788868, -0.058972328901290894, 0.017903270199894905, -0.010597068816423416, 0.06642904132604599, 0.0896231159567833, -0.009334403090178967, 0.039116110652685165, -0.013993054628372192, 0.030170666053891182, 0.039213381707668304, 0.0018733860924839973, 0.03637925907969475, 0.011742948554456234, 0.032327815890312195, -0.005958233028650284, 0.0026458818465471268, -0.0675172209739685, -0.01157743576914072, 0.02940250001847744, -0.015455665066838264, 0.01654992625117302, 0.009690510109066963, 0.02896966226398945, -0.004608380142599344, -0.02202894724905491, 0.004551524296402931, -0.017848772928118706, -0.015601616352796555, -0.04869231954216957, 0.042375560849905014, -0.011586065404117107, 0.025049643591046333, -0.028015054762363434, 0.02631152607500553, -0.031049713492393494, 0.007324070669710636, 0.019836504012346268, -0.03729263320565224, -0.09336928278207779, 0.05029062181711197, -0.02429116703569889, -0.024669013917446136, 0.007208296563476324, 0.007077048532664776, 0.040089622139930725, -0.0780491754412651, 0.0086195208132267, -0.030649008229374886, -0.011058485135436058, -0.014817716553807259, 0.002673524431884289, 0.03265821561217308, 0.009993727318942547, -0.027998367324471474, 0.022767838090658188, 0.05894458293914795, -0.03519763424992561, -0.01711387187242508, 0.01647377200424671, 0.006649312097579241, -0.025090385228395462, -0.008293624967336655, 0.022141937166452408, -0.04645465686917305, -0.0033697253093123436, 0.03529735654592514, 0.007657765410840511, 0.058052223175764084, -0.040470514446496964, 0.02123752236366272, 0.028617922216653824, 0.0036753329914063215, 0.01873737759888172, -0.042095497250556946, -0.024133209139108658, -0.008668680675327778, -0.04111403226852417, 0.0660572499036789, 0.048808418214321136, -0.04898811876773834, -0.012749414891004562, 0.02506985142827034, -0.004838594701141119, -0.0010140539379790425, -0.0206571314483881, -0.0034854027908295393, -0.0058179027400910854, -0.026507103815674782, -0.030777620151638985, 0.026053035631775856, 0.013251025229692459, 0.012585489079356194, -0.07656676322221756, -0.022117359563708305, -0.025514984503388405, -0.022486858069896698, -0.00911436602473259, 0.0009635599562898278, -0.032029300928115845, 0.008984026499092579, -0.03776232525706291, -0.009331226348876953, -0.07453907281160355, 0.08351662009954453, 0.020890606567263603, -0.04825755953788757, 0.022267276421189308, 0.02469579689204693, 0.06524655222892761, 0.05170334503054619, -0.012060204520821571, 0.07829727977514267, -0.002066673245280981, 0.03292154520750046, 0.009562191553413868, 0.026474149897694588, -0.033351898193359375, -0.05694065988063812, 0.004281931556761265, 0.08236410468816757, 0.004085184540599585, 0.012800188735127449, -0.02266056276857853, -0.013162445276975632, -0.016961535438895226, -0.005747527815401554, 0.06437738984823227, 0.032696403563022614, 0.0010566398268565536, -0.006525103468447924, -0.012309123761951923, 0.002834504470229149, 0.054310157895088196, 0.009746416471898556, 0.0026995460502803326, -0.035609979182481766, -0.042228784412145615, 0.007440505549311638, 0.001822358462959528, 0.004546036012470722, 0.025081513449549675, -0.02195391058921814, -0.006597185041755438, 0.07337319850921631, 0.014697069302201271, 0.010649528354406357, -0.028365526348352432, 0.019923269748687744, 0.04339148476719856, 0.02442864142358303, 0.0009789743926376104, 0.05307791009545326, -0.01110959891229868, -0.025451021268963814, -0.03873573988676071, 0.03973497450351715, 0.01965719275176525, -0.009485678747296333, -0.06853129714727402, -0.0591796413064003, 0.05191377177834511, -0.05692428722977638, -0.026139480993151665, 0.034313544631004333, 0.058031704276800156, 0.04570940509438515, 0.015743281692266464, 0.0072617423720657825, -0.07347428798675537, 0.05288807302713394, 0.0004856747400481254, 0.012157097458839417, 0.01203576847910881, 0.01654481701552868, 0.09797046333551407, 0.03207887336611748, 0.010814211331307888, 0.013116012327373028, -0.08714162558317184, -0.08563295751810074, 0.0020581157878041267, 0.011417982168495655, 0.04851168021559715, -0.012614008039236069, -0.0006519951857626438, 0.03688129782676697, 0.04086301475763321, 0.021633576601743698, -0.0024209560360759497, 0.01358663011342287, 0.03404012322425842, -0.0589681938290596, -0.04935961961746216, 0.06466897577047348, 0.035587117075920105, -0.015366477891802788, -0.031080784276127815, 0.0022490369156003, -0.030889149755239487, 0.0020171916112303734, 0.00356546463444829, -0.005814319476485252, 0.0770038589835167, 0.014091161079704762, 0.03907300531864166, -0.04848941043019295, 0.02471417747437954, -0.033973824232816696, 0.01814156584441662, 0.0072376723401248455, -0.007689140737056732, 0.026719804853200912, -0.012291927821934223, 0.13008654117584229, 0.05379495024681091, -0.014100312255322933, -0.041562363505363464, 0.05378107354044914, 0.0020499464590102434, -0.03964728116989136, 0.0008720445330254734, -0.0044992705807089806, -0.006212191190570593, 0.0006982876220718026, -0.0519011989235878, -0.06836043298244476, 0.007923845201730728, -0.03185255452990532, -0.018383033573627472, 0.058291733264923096, 0.0006997704040259123, 0.07547499984502792, 0.03614765405654907, -0.03613518178462982, -0.002431316301226616, -0.018627498298883438, -0.052288223057985306, 0.01208740659058094, 0.036249060183763504, -0.007200447376817465, 0.044762950390577316, -0.05577721819281578, -0.041109196841716766, -0.030433179810643196, -0.07194061577320099, 0.017769796773791313, 0.025124121457338333, 0.07198011130094528, -0.056047867983579636, 0.06410448998212814, -0.0156007194891572, 0.015996284782886505, -0.004942742176353931, -0.036254510283470154, -0.026042619720101357, -0.01630924642086029, 0.009758595377206802, 0.021923379972577095, 0.015720568597316742, -0.019157571718096733, 0.011531701311469078, -0.017065227031707764, 0.021610943600535393, -0.014744140207767487, 0.047002144157886505, -0.005401610396802425, 0.011158013716340065, -0.029800714924931526, -0.00478637870401144, 0.038154181092977524, -0.05104605108499527, -0.021311987191438675, -0.004751272965222597, -0.03889959305524826, 0.028115440160036087, -0.06724482029676437, -0.054077811539173126, -0.00041964015690609813, 0.024848995730280876, 0.04363787919282913, 0.02235148474574089, 0.021330110728740692, 0.02923707477748394, 0.010266597382724285, 0.008942713029682636, 0.00892324186861515, 0.038941022008657455, 0.042782168835401535, -0.006735881324857473, -0.0020235830452293158, 0.009755685925483704, 0.0035102181136608124, -0.018781229853630066, -0.07175199687480927, -0.0035348718520253897, -0.04729156941175461, -0.27379095554351807, 0.035013437271118164, 0.03270583227276802, -0.020949458703398705, 0.023684782907366753, 0.0005833358154632151, 0.01222248561680317, -0.03457847237586975, -0.024615777656435966, 0.015315879136323929, -0.0069112395867705345, -0.02357318252325058, 0.020180657505989075, 0.06892818957567215, -0.006970117334276438, 0.023238593712449074, 0.004832277540117502, -0.041898760944604874, -0.007758712396025658, -0.003725874936208129, -0.014398573897778988, -0.05541861802339554, 0.010005593299865723, 0.0176084041595459, 0.05001779645681381, 0.08024773746728897, -0.06044616177678108, 0.05181985720992088, -0.047834157943725586, -0.01681463234126568, 0.0033859836403280497, -0.02222636342048645, -0.012371066026389599, 0.010407702066004276, 0.004875759594142437, -0.009602496400475502, 0.014185737818479538, -0.00042799930088222027, 0.0017959604738280177, -0.020933503285050392, -0.03661508113145828, -0.07465798407793045, 0.01989924907684326, -0.01609116606414318, 0.06932862848043442, 0.027349816635251045, -0.08759505301713943, -0.002629948314279318, -0.03390701115131378, 0.07598261535167694, -0.044126253575086594, -0.04840065538883209, -0.0070500606670975685, 0.008520692586898804, -0.007396690081804991, -0.001551642781123519, -0.01985027827322483, 0.0027533513493835926, -0.04350239038467407, -0.018395984545350075, 0.018950413912534714, -0.0337444469332695, -0.010795818641781807, -0.06665104627609253, -0.027946025133132935, -0.038566991686820984, -0.05192235857248306, 0.002540674526244402, 0.09736800193786621, 0.0021819283720105886, -0.038704730570316315, -0.011142433620989323, -0.0075587439350783825, -0.10092128813266754, 0.009854837320744991, -0.06038575991988182, -0.059108056128025055, -0.0032546964939683676, -0.02385791204869747, 0.030593713745474815, -0.0405854657292366, -0.06570589542388916, -0.010316294617950916, 0.006550733000040054, 0.006533228326588869, -0.018147563561797142, 0.013714287430047989, -0.016836442053318024, -0.01558010745793581, 0.011425587348639965, 0.0650380477309227, -0.028634974732995033, -0.04825463145971298, -0.019436974078416824, 0.01710362918674946, 0.04544755071401596, -0.000659383658785373, 0.027560411021113396, -0.0027382797561585903, 0.06502047181129456, 0.03384104743599892, -0.031474966555833817, 0.027443699538707733, -0.042698729783296585, 0.004740256816148758, 0.01565602980554104, -0.03866887465119362, 0.01835840567946434, 0.03233127295970917, 0.03858436644077301, 0.005065598525106907, -0.004028149414807558, 0.021929332986474037, -0.05670049041509628, -0.04474608972668648, 0.011827005073428154, 0.02831723354756832, 0.022974688559770584, 0.00454740459099412, -0.02462560310959816, -0.06587886810302734, 0.015526012517511845, 0.021777721121907234, 0.014617144130170345, -0.03481991961598396, -0.018657835200428963, 0.006608218420296907, -0.015641719102859497, 0.03878864273428917, -0.007821275852620602, -0.0008639689767733216, 0.0023684087209403515, 0.03792963922023773, -0.019103946164250374, 0.02403794787824154, -0.026573097333312035, -0.04323785379528999, -0.04711414501070976, 0.026705577969551086, -0.0019555811304599047, -0.0300296563655138, -0.017540503293275833, 0.00008875238563632593, 0.03141259029507637, 0.049492619931697845, -0.01115123089402914, 0.054185010492801666, -0.04263078793883324, 0.03396075963973999, 0.026549387723207474, -0.001755891484208405, -0.032254043966531754, 0.01852104812860489, -0.029969945549964905, -0.043000515550374985, -0.01592574454843998, 0.03789851441979408, -0.04342411085963249, -0.009171362034976482, -0.014756494201719761, -0.007527226582169533, -0.09118180721998215, 0.02107837237417698, -0.0013525895774364471, -0.024574562907218933, 0.03554947301745415, 0.009913983754813671, 0.01849120296537876, 0.010888119228184223, -0.017150145024061203, 0.02102542296051979, 0.029445793479681015, -0.005400704685598612, 0.029698392376303673, 0.021709850057959557, 0.008732253685593605, 0.016774974763393402, 0.014356055296957493, 0.03608541563153267, 0.016703341156244278, 0.006647154223173857, -0.025229431688785553, 0.016004059463739395, 0.013710953295230865, 0.033654339611530304, 0.022264517843723297, -0.0006274899351410568, -0.004146790597587824, -0.0314866341650486, -0.03499210625886917, 0.01406974345445633, 0.02099345624446869, -0.006334132980555296, 0.023226335644721985, 0.008480214513838291, -0.07100746035575867, 0.05877044051885605, 0.01679007150232792, 0.04630126804113388, 0.009685183875262737, 0.0005631600506603718, 0.008287250064313412, -0.04463961720466614, 0.058375097811222076, 0.04595043137669563, -0.055646445602178574, -0.0015795245999470353, -0.020128723233938217, 0.007070600520819426, -0.003425902221351862, 0.020168663933873177, -0.03867139294743538, -0.023306256160140038, -0.000020578618205036037, 0.018704192712903023, -0.06314613670110703, -0.04417256638407707, -0.02636885829269886, 0.02285359799861908, 0.011393288150429726, 0.013587641529738903, -0.0011321586789563298, 0.014474010095000267, -0.02085980400443077, -0.04469827562570572, 0.01688835211098194, -0.02207842282950878, -0.005932895932346582, -0.001149177085608244, -0.007561712525784969, 0.024259105324745178, -0.0422443225979805, 0.04496205970644951, 0.02301921509206295, -0.006855563726276159, -0.003442219691351056, -0.05327581614255905, -0.0062224301509559155, -0.021321486681699753, 0.023892024531960487, -0.003724046051502228, 0.01919003203511238, -0.020816920325160027, 0.003997051157057285, -0.03392349183559418, 0.015291234478354454, 0.0060619027353823185, -0.019204361364245415, 0.0204369705170393, 0.02800135873258114, 0.02019652910530567, 0.021109025925397873, -0.009687320329248905, -0.022981857880949974, 0.06689981371164322, -0.05733296647667885, -0.03676612302660942, -0.030038785189390182, -0.06310563534498215, 0.02016209438443184, 0.012395111843943596, -0.0030503547750413418, -0.0362798348069191, 0.03303775563836098, 0.055661700665950775, 0.02907230705022812, 0.02428649552166462, -0.011422957293689251, 0.022371530532836914, -0.04564662277698517, -0.03100886195898056, -0.07486152648925781, 0.023196160793304443, -0.0056911553256213665, 0.00037992396391928196, 0.005851305089890957, 0.015959307551383972, -0.06656259298324585, 0.015455400571227074, -0.059866633266210556, -0.012031958438456059, 0.056605055928230286, -0.008595764636993408, -0.015844160690903664, 0.01540153194218874, -0.06746553629636765, 0.03336511552333832, 0.011833745054900646, -0.04330185055732727, 0.0007853528368286788, -0.013679644092917442, 0.050747860223054886, -0.008051288314163685, 0.040310390293598175, -0.03727823123335838, -0.019402649253606796, 0.053533174097537994, 0.016879651695489883, 0.003473559394478798, 0.059455838054418564, -0.00913013145327568, 0.03666624799370766, 0.03459674119949341, 0.004813246428966522, 0.004612882621586323, 0.019098790362477303, -0.060506805777549744, -0.03556601703166962, 0.023867947980761528, -0.028257623314857483, 0.001557668554596603, -0.04060329869389534, 0.053652431815862656, 0.014757215045392513, -0.04449126496911049, -0.07108841091394424, 0.026560811325907707, -0.04596138000488281, -0.015165720134973526, -0.02527950517833233, 0.029334781691432, -0.06552194803953171, 0.05732991173863411, 0.017657339572906494, 0.02177661843597889, 0.0687321200966835, -0.025410311296582222, -0.00839709211140871, 0.027402333915233612, 0.04305999353528023, 0.07610523700714111, 0.025671513751149178, 0.0137877706438303, 0.057682104408741, -0.01324445754289627, -0.034209225326776505, 0.007996478118002415, -0.018326299265027046, -0.02066401019692421, -0.002017155522480607, -0.010561127215623856, 0.07178948074579239, -0.03413545712828636, 0.08922602981328964, -0.030253877863287926, -0.0007958470960147679, 0.0031445715576410294, -0.0032836133614182472, 0.01938939094543457, 0.045889344066381454, -0.02753615938127041, 0.04342000558972359, -0.009101932868361473, -0.01034144964069128, 0.03104184754192829, -0.0076059941202402115, -0.008741202764213085, 0.014399456791579723, -0.03205934911966324, 0.0003710635646712035, 0.03659364581108093, 0.03233606740832329, 0.06574232876300812, -0.01142827793955803, 0.012201577425003052, -0.003195296972990036, 0.009624612517654896, -0.01810416765511036, 0.02229059301316738, -0.0240520890802145, -0.03193323314189911, -0.017150217667222023, -0.034686021506786346, -0.017283592373132706, -0.004215619992464781, -0.05358939990401268, 0.037133216857910156, -0.037827543914318085, 0.03239472582936287, 0.03411570563912392, 0.0018711884040385485, -0.04795156791806221, -0.015602889470756054, -0.07497955858707428, -0.026831265538930893, -0.04219318553805351, 0.015870030969381332, -0.004066924098879099, 0.019708609208464622, -0.01119658350944519, -0.017164677381515503, -0.011758530512452126, -0.013461528345942497, 0.022854622453451157, -0.05400358885526657, -0.03628631681203842, 0.016202818602323532, 0.0033513980451971292, 0.01068450789898634, 0.0020886713173240423, 0.06912108510732651, 0.004484797827899456, 0.0038796253502368927, 0.0024476631078869104, -0.014194346033036709, 0.044065818190574646, -0.011002416722476482, 0.013294053263962269, -0.09527702629566193, 0.02372594363987446, 0.011354271322488785, 0.01487674843519926, -0.06325607746839523, -0.004228227771818638, 0.033337198197841644, -0.04257388785481453, 0.035885199904441833, -0.04049710929393768, 0.019570225849747658, -0.06182832643389702, -0.00947124045342207, -0.007769246585667133, 0.015400603413581848, 0.05262162536382675, -0.012987805530428886, 0.08984450995922089, 0.05065854266285896, -0.021503427997231483, -0.05696876719594002, 0.005623504985123873, -0.007071384694427252, -0.008690725080668926, -0.04719748720526695, -0.020696012303233147, -0.03681263327598572, -0.08205787092447281, -0.018990686163306236, 0.007458764594048262, -0.00294800684787333, -0.03590846806764603, -0.005164036527276039, -0.0049433778040111065, -0.044688161462545395, 0.006784108001738787, -0.024712037295103073, 0.010159581899642944, -0.025565939024090767, -0.04110439121723175, 0.002875520149245858, 0.03646078333258629, 0.03129340708255768, -0.019873501732945442, 0.040329184383153915, -0.04347037151455879, 0.0012781794648617506, -0.010392304509878159, 0.04105911776423454, 0.07174903899431229, 0.004874085076153278, 0.014035605825483799 ]
[ -0.09117799252271652, -0.017337173223495483, 0.00854774471372366, -0.05467381328344345, 0.01607830449938774, -0.05617101863026619, -0.037958886474370956, -0.0025838855654001236, -0.010872915387153625, -0.03026328794658184, 0.04873135685920715, -0.019742775708436966, 0.02535548433661461, 0.0037440324667841196, 0.0761781856417656, 0.016467414796352386, -0.010904663242399693, -0.020267216488718987, -0.01807328127324581, 0.017436688765883446, 0.012866449542343616, -0.04402872547507286, -0.049125492572784424, -0.03941180557012558, -0.06730540841817856, 0.05558159947395325, -0.002638566307723522, -0.059011440724134445, -0.017988204956054688, -0.19108934700489044, 0.037007223814725876, -0.03062172420322895, -0.01657245308160782, -0.0021583852358162403, 0.0472663938999176, 0.02754356525838375, 0.0206189826130867, -0.009199964813888073, -0.01710742712020874, 0.03444400057196617, 0.011539739556610584, 0.03208720311522484, -0.08288215100765228, -0.047352489084005356, 0.031057532876729965, -0.06819827854633331, -0.005137854255735874, -0.04058276489377022, -0.027052920311689377, 0.0049424003809690475, -0.06629357486963272, 0.012936542741954327, 0.011563632637262344, -0.005304557736963034, -0.02949601225554943, 0.030598903074860573, 0.040760211646556854, 0.07308652997016907, -0.0035728253424167633, 0.015651768073439598, 0.02796885371208191, -0.003092607483267784, -0.11665906757116318, 0.08766192942857742, 0.02791399322450161, 0.06019793078303337, -0.048113659024238586, -0.05210709199309349, -0.052662719041109085, 0.06842593848705292, -0.011765126138925552, -0.01253332756459713, -0.026068879291415215, 0.06987655907869339, -0.0017243963666260242, -0.018966762349009514, -0.01159170363098383, 0.023785382509231567, 0.06454025208950043, -0.04041435196995735, -0.057821523398160934, -0.052008118480443954, -0.009134885855019093, -0.023445764556527138, -0.051239654421806335, 0.003107232041656971, 0.024449877440929413, 0.05730031058192253, 0.032111652195453644, 0.04358278587460518, 0.04443220794200897, 0.014806634746491909, 0.06359177827835083, 0.002935113152489066, -0.07155461609363556, 0.020895592868328094, -0.016866937279701233, 0.016237732023000717, -0.018063852563500404, 0.44051679968833923, 0.04454224929213524, 0.002541986759752035, 0.06175978109240532, 0.01629028283059597, 0.014607102610170841, 0.014217136427760124, 0.005947808735072613, -0.013864103704690933, 0.009717893786728382, 0.002962784143164754, 0.00941439252346754, -0.02140919119119644, 0.05856414884328842, -0.06130645051598549, 0.008143074810504913, 0.011998721398413181, 0.02012202888727188, 0.03662405535578728, -0.027216337621212006, 0.01738429255783558, 0.006548816338181496, 0.00005150855577085167, 0.05265205353498459, 0.009630870074033737, 0.017773335799574852, -0.004500918090343475, 0.04102345183491707, 0.046524640172719955, 0.039358872920274734, -0.004998564254492521, 0.027302950620651245, -0.02592604048550129, -0.04586004093289375, 0.005717625375837088, 0.029977217316627502, 0.031253036111593246, 0.04627339914441109, -0.041037771850824356, 0.005281862802803516, 0.03976289555430412, -0.013094846159219742, -0.040871359407901764, 0.018899859860539436, -0.0260479636490345, -0.025001706555485725, 0.09257058799266815, 0.044905807822942734, -0.009308656677603722, -0.08653846383094788, -0.016824889928102493, -0.020265961065888405, 0.03409155458211899, 0.03997615724802017, -0.04355786740779877, 0.001027719583362341, 0.005309971980750561, 0.0674663558602333, 0.008848982863128185, -0.0737796500325203, -0.016994833946228027, 0.020002057775855064, -0.037231773138046265, 0.0030666992533951998, 0.0123295858502388, 0.031105004251003265, -0.08615024387836456, -0.02978765405714512, 0.03896801546216011, 0.016104325652122498, -0.04343476891517639, -0.04782739281654358, 0.012199893593788147, -0.03177936375141144, -0.059251852333545685, 0.01498327124863863, -0.05327655002474785, 0.0026126797311007977, 0.012806523591279984, 0.02743518352508545, 0.02635171078145504, -0.0014249269152060151, 0.00031617595232091844, -0.030338874086737633, 0.02116682566702366, -0.05957110971212387, -0.11674925684928894, -0.04570632427930832, 0.030770082026720047, -0.012468536384403706, -0.016310125589370728, -0.04679666832089424, -0.049902547150850296, -0.05712093785405159, 0.03682975843548775, 0.03233395516872406, 0.009117779321968555, 0.010416219010949135, -0.012122049927711487, -0.017069702968001366, -0.05272302404046059, 0.06232481449842453, 0.031639862805604935, -0.009520327672362328, 0.025324050337076187, -0.052411168813705444, 0.06960202753543854, 0.02774708718061447, -0.04366380348801613, 0.06916055828332901, 0.04270193353295326, -0.031545333564281464, -0.01038648933172226, -0.0042691659182310104, 0.05816710367798805, -0.02211347222328186, -0.007199242245405912, -0.0642906129360199, 0.04233625531196594, 0.05463207885622978, 0.02726982720196247, -0.007509397342801094, 0.02214028686285019, -0.046162527054548264, -0.31847280263900757, -0.01387456338852644, -0.04014710336923599, -0.02418653480708599, -0.022632228210568428, -0.050477057695388794, 0.03417547792196274, -0.01252683624625206, -0.020418725907802582, -0.01134423352777958, 0.09325943887233734, -0.031155375763773918, 0.04394661635160446, -0.06982962042093277, -0.0038941192906349897, -0.006648372393101454, -0.026809673756361008, -0.003445075126364827, -0.037859659641981125, 0.027478409931063652, -0.020977847278118134, -0.04813789948821068, 0.0024086222983896732, -0.05215466767549515, 0.006045859307050705, -0.06080550327897072, 0.1113731637597084, 0.018175233155488968, 0.08469638973474503, -0.0643623098731041, 0.04941067844629288, 0.04268709570169449, 0.005397438537329435, -0.07618062198162079, 0.036581456661224365, 0.008257395587861538, 0.010787973180413246, -0.012613765895366669, 0.03731627017259598, -0.04766874760389328, -0.09897452592849731, 0.04611735790967941, -0.06285959482192993, -0.03726595640182495, -0.04677588865160942, -0.005693525541573763, -0.010969597846269608, -0.017030974850058556, -0.027546720579266548, 0.06113994121551514, -0.0020015849731862545, 0.005816813558340073, -0.005908214952796698, 0.020565075799822807, 0.004209239035844803, 0.0044194478541612625, -0.03669869154691696, -0.052936285734176636, 0.017258256673812866, 0.00575870368629694, 0.03723941370844841, 0.04154399782419205, 0.02150818146765232, -0.025403110310435295, 0.03727647662162781, -0.025828873738646507, 0.01953422650694847, 0.0017881328240036964, 0.06147246062755585, -0.057858821004629135, -0.054257750511169434, 0.09394814819097519, 0.0058939107693731785, 0.01435115747153759, 0.0012046709889546037, 0.01684318110346794, 0.007027500309050083, 0.030166711658239365, -0.009710768237709999, -0.01598946377635002, 0.02853691764175892, -0.037144746631383896, 0.049603402614593506, -0.05545767769217491, 0.008566141128540039, 0.040765948593616486, -0.03849511221051216, -0.021672498434782028, 0.03817252442240715, 0.006731411907821894, -0.0038308717776089907, 0.011733254417777061, -0.03757791966199875, -0.058069661259651184, 0.06300979107618332, 0.022934673354029655, -0.23763547837734222, 0.06917943805456161, 0.07227679342031479, 0.060102615505456924, -0.011355822905898094, 0.015553519129753113, -0.0027291560545563698, -0.01666155830025673, 0.028272069990634918, 0.021925367414951324, 0.031494829803705215, 0.030585378408432007, -0.019448481500148773, -0.0048493933863937855, 0.019629156216979027, 0.007856540381908417, 0.02340419590473175, -0.009808465838432312, 0.026037005707621574, -0.015499841421842575, 0.0016999196959659457, -0.01013629324734211, 0.15077023208141327, 0.08200816065073013, 0.009332943707704544, 0.016142431646585464, 0.029480280354619026, 0.028505876660346985, 0.07421813160181046, 0.012555154971778393, -0.0378417931497097, -0.011383567936718464, -0.0006767723243683577, 0.0065363687463104725, 0.0413944236934185, -0.061348289251327515, -0.009316838346421719, 0.012253443710505962, 0.038294073194265366, -0.016105761751532555, -0.023652998730540276, 0.024336012080311775, 0.017092913389205933, 0.0446256585419178, 0.06468144059181213, 0.00242168502882123, 0.005401942413300276, -0.020343586802482605, -0.04601214453577995, 0.01626216061413288, -0.04393193870782852, -0.05666563659906387, 0.009662528522312641, -0.013900251127779484, 0.003167887683957815, 0.09583813697099686, 0.01593952625989914, -0.015853499993681908, 0.0043099261820316315, -0.010375349782407284, 0.0010649102041497827, -0.08882836997509003, 0.11710197478532791, -0.002067468361929059, 0.02892197109758854 ]
[ -0.018206199631094933, 0.021005522459745407, 0.005025329999625683, -0.004168051760643721, 0.004521346651017666, 0.01776731200516224, -0.05041704326868057, 0.016193224117159843, -0.061666328459978104, -0.013933111913502216, -0.010785053484141827, 0.02517908439040184, 0.06498129665851593, -0.01840585097670555, -0.032126545906066895, -0.003010303946211934, 0.024035008624196053, 0.07976805418729782, 0.05614583194255829, -0.0327560119330883, -0.031667500734329224, 0.019347460940480232, 0.01471258606761694, -0.01642574742436409, -0.032022345811128616, -0.00982240866869688, -0.04850342497229576, -0.02016482874751091, -0.00356905534863472, -0.13626940548419952, -0.01691317930817604, 0.00014583149459213018, 0.022144772112369537, 0.01147728692740202, 0.03043774515390396, 0.06993592530488968, 0.005002711433917284, -0.0013853077543899417, 0.019590456038713455, -0.021538686007261276, 0.07670018821954727, 0.017414091154932976, -0.02801423706114292, 0.01497770007699728, -0.03480670973658562, -0.009529387578368187, -0.04621271789073944, -0.03705054521560669, -0.003951933700591326, -0.033506955951452255, -0.03203901648521423, -0.000912113580852747, 0.06232493743300438, -0.0033882439602166414, -0.06985268741846085, -0.01389391627162695, 0.025655167177319527, 0.0016996394842863083, 0.001707174931652844, 0.02468118444085121, 0.04473912715911865, -0.0030662796925753355, -0.022741086781024933, -0.03019159473478794, -0.004149239510297775, -0.010760207660496235, -0.014771666377782822, 0.0036345140542834997, -0.0032613661605864763, 0.026579206809401512, 0.017557457089424133, 0.01223153155297041, -0.014791023917496204, -0.032597124576568604, -0.019068511202931404, -0.0402597151696682, 0.03253554180264473, -0.040818870067596436, 0.03160030394792557, 0.03262413665652275, -0.07368763536214828, 0.00645574601367116, -0.006901407614350319, -0.023703938350081444, -0.015378943644464016, 0.00383434584364295, -0.0039135790430009365, 0.012726301327347755, 0.0032134181819856167, 0.03886323794722557, 0.001959930406883359, -0.01299360767006874, -0.010864715091884136, 0.013819565065205097, -0.05893459543585777, 0.030964596197009087, -0.011721529066562653, -0.019650030881166458, 0.0017301944317296147, 0.7842239737510681, -0.016975991427898407, 0.03181013837456703, 0.04084232077002525, -0.015037055127322674, 0.011436963453888893, -0.007387558463960886, 0.0010294571984559298, -0.01078352052718401, -0.0394548662006855, -0.03707783669233322, -0.007125395350158215, -0.025234470143914223, 0.056774869561195374, 0.01672419346868992, -0.006210060324519873, -0.02677684649825096, -0.00009319157834397629, -0.011501508764922619, 0.0030063551384955645, 0.026798129081726074, 0.07087939232587814, -0.028215773403644562, 0.01746334880590439, 0.022998536005616188, -0.006405247375369072, -0.1985001415014267, -0.010836463421583176, -7.559214787634421e-33, 0.026735268533229828, -0.03933551162481308, 0.036068957298994064, 0.027534758672118187, 0.035645004361867905, 0.02757871337234974, 0.015444362536072731, 0.017949316650629044, -0.060908347368240356, -0.007945769466459751, 0.040489017963409424, -0.03330294415354729, 0.004493351094424725, -0.03188909590244293, -0.03320017084479332, -0.014999828301370144, 0.010002851486206055, 0.07588174939155579, 0.02776069939136505, -0.008754857815802097, 0.021498115733265877, 0.03461312875151634, -0.008568336255848408, 0.03634563460946083, 0.06635995954275131, 0.013201666995882988, 0.011571227572858334, 0.0026198106352239847, 0.010201175697147846, -0.0452449768781662, -0.001581403543241322, -0.010576419532299042, -0.004494530148804188, 0.006211147643625736, -0.01913166046142578, -0.04036534205079079, -0.001953661907464266, -0.033406469970941544, -0.029375728219747543, -0.0757630243897438, 0.004067540634423494, 0.020275764167308807, -0.01953270472586155, -0.012633396312594414, -0.018512675538659096, 0.0013869962422177196, 0.01188354566693306, -0.0014738055178895593, 0.029598882421851158, 0.031078048050403595, 0.03167593851685524, -0.00876598060131073, 0.008877398446202278, 0.007516639772802591, 0.007808960974216461, -0.012957707978785038, 0.009306427091360092, 0.033241793513298035, -0.00807679258286953, 0.012174955569207668, -0.0014760022750124335, -0.010760592296719551, -0.009773723781108856, -0.020041944459080696, 0.05729358643293381, -0.04219086095690727, 0.01514426153153181, 0.03999379649758339, 0.007860139943659306, 0.043784383684396744, -0.03077862225472927, -0.03385760262608528, -0.0009037964628078043, -0.008441850543022156, 0.008890271186828613, -0.02291908860206604, 0.006878535728901625, 0.009690921753644943, -0.006419522687792778, 0.000585599394980818, 0.011612257920205593, 0.008980893529951572, -0.05605889856815338, -0.01858997344970703, -0.0024727897252887487, 0.02498443052172661, -0.029286734759807587, -0.005025789141654968, 0.004722462967038155, 0.052679602056741714, 0.03468354791402817, 0.015003317967057228, -0.016695434227585793, -0.0030494031962007284, -0.054548297077417374, 8.137368459774916e-33, 0.0001057241388480179, -0.02393423579633236, 0.019437531009316444, 0.011997934430837631, 0.03214944899082184, -0.05953525751829147, 0.01195430662482977, 0.015690306201577187, -0.02713899128139019, 0.02776992693543434, -0.050051189959049225, -0.010609072633087635, -0.0002707870735321194, 0.008078872226178646, 0.025999316945672035, 0.0027822228148579597, 0.04575765132904053, -0.03759686276316643, 0.04337829351425171, 0.01499788649380207, -0.007393320091068745, 0.03429149463772774, 0.02899693325161934, 0.029077431187033653, 0.028683802112936974, 0.06532188504934311, -0.05061035603284836, 0.05991300567984581, 0.010364498943090439, 0.004403387662023306, 0.05924806371331215, -0.02153530716896057, 0.043727271258831024, 0.035168565809726715, -0.03544800356030464, -0.0072756544686853886, -0.030010199174284935, 0.011230170726776123, 0.01842242106795311, 0.02443910576403141, 0.035726048052310944, -0.0013028336688876152, -0.04879288002848625, 0.000393641967093572, 0.050187233835458755, -0.013858150690793991, -0.004868797026574612, 0.02447628788650036, 0.007010702043771744, -0.012929040938615799, -0.036571428179740906, 0.01921348087489605, -0.010165983811020851, -0.03118000738322735, 0.01069723442196846, -0.03497764840722084, -0.05148274824023247, 0.027648024260997772, 0.010382289998233318, -0.01706068590283394, 0.04156775772571564, -0.01366964541375637, -0.017313949763774872, 0.045452333986759186, -0.07691220939159393, 0.009934634901583195, -0.007233642041683197, 0.010083374567329884, 0.019908538088202477, 0.008605847135186195, -0.009235359728336334, 0.025370821356773376, -0.01977711170911789, 0.024516118690371513, 0.023896226659417152, -0.000652963004540652, -0.004599177744239569, -0.021898388862609863, 0.01880197785794735, 0.010193586349487305, -0.042850982397794724, 0.059459518641233444, -0.021202677860856056, -0.009432408027350903, 0.04949210211634636, 0.010288774035871029, -0.04798483848571777, 0.05158964917063713, 0.03645212948322296, -0.009607283398509026, 0.009084437973797321, -0.03678696230053902, -0.017234906554222107, 0.027370741590857506, -0.01181331742554903, -1.2584189690301173e-8, 0.024937067180871964, 0.0227425005286932, 0.04011916741728783, -0.007461501285433769, 0.03539266809821129, -0.017623500898480415, -0.006221255753189325, -0.014138641767203808, -0.019107144325971603, 0.05216138809919357, 0.038667354732751846, -0.04230627045035362, 0.006199515424668789, 0.021447546780109406, 0.06482470780611038, -0.05871482193470001, 0.014533594250679016, -0.007028391119092703, 0.023222031071782112, -0.02317095547914505, -0.011347698979079723, 0.05481986701488495, -0.021673152223229408, 0.03289096802473068, -0.030478939414024353, 0.0303852129727602, 0.021082676947116852, -0.0672488734126091, -0.022904733195900917, 0.004887513816356659, 0.00015553884441033006, -0.022069256752729416, -0.03958401829004288, -0.010645270347595215, -0.027292834594845772, -0.009168497286736965, -0.04455600306391716, -0.005656909197568893, -0.005465394351631403, 0.030187169089913368, -0.008708415552973747, 0.04303281381726265, 0.0029322844929993153, -0.025408051908016205, -0.04423357918858528, -0.0025199824012815952, 0.011162882670760155, 0.03362813591957092, 0.03538966178894043, -0.04433469846844673, 0.016488656401634216, -0.01715567335486412, -0.028459593653678894, 0.007220274768769741, -0.0004964525578543544, 0.007628095801919699, 0.014816684648394585, -0.046901993453502655, 0.0014661632012575865, -0.030612315982580185, 0.03642582148313522, -0.03842119872570038, -0.014283958822488785, -0.0355224683880806 ]
puppetdb-failed-to-submit-replace-catalog-command-for-client-to-puppetdb-at-puppetmaster8081-500-server-error
https://markhneedham.com/blog/2012/08/16/puppetdb-failed-to-submit-replace-catalog-command-for-client-to-puppetdb-at-puppetmaster8081-500-server-error
false
2012-08-28 21:22:36
The Curse Of Knowledge
[ "software-development" ]
[ "Software Development" ]
My colleague https://twitter.com/anand003/[Anand Vishwanath] recently recommended the book 'http://www.amazon.co.uk/Made-Stick-ideas-others-unstuck/dp/009950569X/ref=sr_1_1?ie=UTF8&qid=1346108348&sr=8-1[Made To Stick]' and one thing that has really stood out for me while reading it is the idea of the 'The Curse Of Knowledge' which is described like so: ____ Once we know something, we find it hard to imagine what it was like not to know it. Our knowledge has "cursed" us. And it becomes difficult for us to share out knowledge with others, because can't readily re-create our listeners' state of mind. ____ This is certainly something I imagine that most people have experienced, perhaps for the first time at school when we realised that the best teacher of a subject isn't necessarily the person who is best at the subject. I'm currently working on an infrastructure team and each week every team does a mini showcase where they show the other teams some of the things they've been working on. It's a very mixed audience - some very technical people and some not as technical people - so we've found it quite difficult to work out how exactly we can explain what we're doing in a way that people will be able to understand. A lot of what we're doing is quite abstract/not very visible and the first time we presented we assumed that some things were 'obvious' and didn't need an explanation. Having experienced a lot of blank looks we learnt that *they're only obvious if you spend the whole day doing them*. We needed to find a way to make what we were doing a bit more accessible by closing the gap between what people currently knew and our topic. One effective way of doing this is to step up a level of abstraction and describe what the goal is rather than spending too long on the implementation details. An example of something we presented was http://logstash.net/[logstash], a tool used to collect logs from a bunch of different sources and then allows us to run regular expressions over them to make the data more easily searchable. When explaining this in the demo a colleague explained its use from the point of view of something going wrong with one of the applications and the need to fix it quickly. He pointed out that it's much easier to do this if all the information we need is in one place and is easy to search, thereby explaining why logstash was useful. By weaving our use of logstash into a more general story that people do understand we've been able to make this and other technical things that we're working on more accessible to others. We also realised that people tend to forget what we've talked about previously so now when we present something we spend a bit of time refreshing people's minds so that they have a reference point to work from. All the things we've tried try to make what can see abstract more concrete which is one of the six ways that the authors of 'Made To Stick' suggest to make our ideas more memorable. It's a good book, worth flicking through at the very least!
null
null
[ 0.04402735456824303, 0.01254527922719717, -0.003382574999704957, 0.031161151826381683, 0.09140826761722565, 0.010337580926716328, 0.03364824876189232, 0.04164550080895424, 0.016940463334321976, -0.02522094175219536, -0.02400992438197136, -0.0020175871904939413, -0.04644722118973732, 0.019118761643767357, -0.04020831733942032, 0.08074185252189636, 0.06249747425317764, 0.01036820188164711, 0.011439205147325993, 0.0015392302302643657, 0.03970785439014435, 0.06198446452617645, 0.04335472732782364, 0.031003087759017944, 0.04085981473326683, 0.015890298411250114, 0.004493867978453636, 0.004515939392149448, -0.03730684146285057, -0.006819337606430054, 0.03983638808131218, 0.006292425561696291, 0.0191911980509758, 0.007517972961068153, 0.01658257097005844, -0.005854683928191662, -0.025918088853359222, 0.014968974515795708, 0.011720441281795502, 0.009503170847892761, -0.05892849713563919, 0.05702749639749527, -0.0323152057826519, 0.03148895874619484, -0.03747310861945152, 0.00933526549488306, -0.043281227350234985, 0.01480934303253889, 0.02234615571796894, 0.007037849631160498, -0.0854138508439064, 0.05457877367734909, 0.015856878831982613, -0.00503204669803381, -0.0453585721552372, 0.04627283662557602, 0.03789915144443512, -0.05564460903406143, 0.01916380599141121, -0.0242182444781065, -0.009858335368335247, -0.004409736022353172, -0.00984957069158554, 0.037193819880485535, 0.02007151208817959, -0.03531176969408989, 0.001430169097147882, 0.03885715827345848, -0.04392136260867119, -0.001471395487897098, -0.031001869589090347, -0.006044627632945776, -0.019159283488988876, -0.022234326228499413, 0.0007687375182285905, -0.05335066467523575, 0.019129173830151558, 0.057137150317430496, 0.025675110518932343, 0.0493486151099205, -0.025738708674907684, 0.022595597431063652, 0.0143011175096035, 0.03633815422654152, -0.007250967901200056, -0.04197622090578079, -0.003005300648510456, -0.012660885229706764, -0.06551012396812439, 0.06503583490848541, 0.010211312212049961, -0.060956038534641266, 0.021505650132894516, 0.021468382328748703, 0.005738188978284597, 0.021741025149822235, 0.052441224455833435, -0.01354352105408907, -0.020070737227797508, -0.03751285374164581, -0.0330306738615036, -0.024638425558805466, 0.00017349474364891648, 0.04320663586258888, -0.0762212947010994, -0.005880960263311863, -0.013095742091536522, -0.0024856796953827143, -0.006003011483699083, -0.01606263965368271, -0.025089478120207787, 0.021871941164135933, -0.03800109401345253, 0.008939149789512157, -0.07137763500213623, 0.06897993385791779, 0.017012549564242363, -0.03948848694562912, -0.009072610177099705, 0.019223451614379883, 0.040147267282009125, 0.03889239951968193, 0.002943780506029725, 0.08240526914596558, 0.004577580373734236, 0.00521460734307766, -0.02950410358607769, 0.04426407068967819, -0.020241254940629005, -0.041203904896974564, 0.00393486674875021, 0.05176270380616188, -0.02027340792119503, -0.006670352537184954, 0.00270976428873837, -0.028052836656570435, -0.0004982782993465662, 0.0014228979125618935, 0.023746704682707787, 0.06405356526374817, -0.0061936103738844395, -0.0607246570289135, 0.008249237202107906, 0.009895079769194126, 0.026621757075190544, -0.01254365686327219, -0.006434024777263403, -0.02832137793302536, -0.04459052532911301, -0.017967399209737778, -0.0012358144158497453, 0.010228478349745274, 0.025225965306162834, -0.04313010349869728, 0.007542113307863474, 0.1004934012889862, 0.021610071882605553, -0.007141573820263147, 0.0023136658128350973, 0.03215355798602104, 0.03628513589501381, 0.026837527751922607, 0.006517296656966209, 0.026835663244128227, 0.007192025892436504, -0.014931464567780495, -0.0013701493153348565, 0.052963241934776306, -0.0020682532340288162, 0.012269852682948112, -0.05556328967213631, -0.03386431559920311, 0.06513931602239609, -0.0456555150449276, -0.02658046968281269, 0.04964432492852211, 0.06813346594572067, 0.037674468010663986, 0.052162427455186844, 0.015058551914989948, -0.08338888734579086, 0.04511584714055061, 0.01647423580288887, 0.01449904590845108, 0.019162045791745186, -0.009020746685564518, 0.060117412358522415, 0.027166344225406647, 0.01193168293684721, 0.04755425080657005, -0.07922814786434174, -0.09543191641569138, -0.017454685643315315, -0.0225931815803051, 0.0437111034989357, -0.03839584439992905, 0.040496036410331726, 0.07644081115722656, 0.020240770652890205, 0.050778940320014954, 0.014316986314952374, -0.0008263551280833781, 0.007660781033337116, -0.044831663370132446, -0.05206453800201416, 0.0790533497929573, 0.015275419689714909, -0.022706501185894012, -0.027224449440836906, 0.007845980115234852, -0.02310873381793499, -0.01111353375017643, 0.04459318518638611, -0.0303566325455904, 0.017596164718270302, 0.009817810729146004, 0.05265628546476364, -0.027896644547581673, 0.04065770283341408, -0.019630128517746925, -0.012138697318732738, -0.0019340257858857512, -0.023090772330760956, 0.01871427893638611, 0.0004395164141897112, 0.125935897231102, 0.07871495187282562, -0.03211679309606552, -0.035801149904727936, 0.01615736447274685, 0.016106143593788147, -0.06066535413265228, -0.004841597750782967, -0.009305729530751705, 0.008408951573073864, 0.010153636336326599, -0.06742516160011292, -0.047949936240911484, 0.029174529016017914, -0.059233397245407104, -0.011393130756914616, 0.06730042397975922, -0.0108460932970047, 0.06823819130659103, 0.006718766409903765, -0.007430259604007006, 0.0017976952949538827, -0.014266151934862137, -0.033313315361738205, 0.027386756613850594, -0.008600693196058273, -0.010788733139634132, 0.0196386631578207, -0.018812233582139015, -0.02482428401708603, -0.04416680335998535, -0.038011740893125534, 0.02047916129231453, 0.05956324189901352, 0.07141187787055969, -0.00928934570401907, 0.06489597260951996, -0.017323369160294533, 0.033278319984674454, 0.013611731119453907, -0.05546274781227112, -0.02336804009974003, -0.03712217137217522, 0.008097612299025059, 0.021512677893042564, 0.009892095811665058, -0.004611808340996504, 0.03893468156456947, 0.022731522098183632, -0.0049942550249397755, -0.018900370225310326, 0.04706896096467972, 0.008018998429179192, -0.011533483862876892, -0.03459261357784271, -0.026647763326764107, 0.0695415660738945, -0.03393891081213951, -0.014749648049473763, 0.006991251837462187, -0.08018705993890762, 0.024066725745797157, -0.06364414840936661, -0.03142327442765236, -0.00038414981099776924, 0.009574772790074348, 0.03999001160264015, 0.03157758340239525, 0.005828712601214647, 0.048013266175985336, 0.01998802460730076, -0.0062717352993786335, -0.00020216478151269257, 0.02117743529379368, 0.036106813699007034, -0.006081672385334969, -0.0026930461172014475, 0.022810546681284904, 0.011859394609928131, -0.015436467714607716, -0.04792512580752373, 0.04131442680954933, -0.03748887777328491, -0.28174200654029846, 0.03629066050052643, 0.018425634130835533, -0.035757433623075485, 0.019115127623081207, -0.019603822380304337, 0.012259985320270061, -0.053825948387384415, -0.023997198790311813, 0.012940039858222008, -0.017103509977459908, -0.014222309924662113, -0.010412458330392838, 0.04905135557055473, -0.007438297383487225, 0.007180981338024139, 0.019244655966758728, -0.042937830090522766, 0.009271316230297089, 0.038341693580150604, -0.022340191528201103, -0.05582597479224205, -0.027341173961758614, 0.046106260269880295, 0.05288640782237053, 0.06689145416021347, -0.08674319088459015, 0.02165077067911625, -0.05877109616994858, 0.0011975695379078388, -0.00045974538079462945, -0.02003849670290947, -0.0039525642059743404, -0.002537270775064826, -0.020728496834635735, -0.02758595161139965, 0.057050835341215134, 0.008064022287726402, 0.0036878231912851334, 0.014099376276135445, -0.03872314468026161, -0.025642067193984985, -0.026486871764063835, 0.0029366970993578434, 0.0741293802857399, 0.016668880358338356, -0.06335819512605667, -0.02314850129187107, -0.01618652604520321, 0.06092042103409767, -0.04394005611538887, -0.043359097093343735, -0.012151766568422318, 0.02635291963815689, 0.007647608406841755, -0.01661866344511509, -0.004893898498266935, -0.03457651287317276, -0.04439912736415863, -0.041690643876791, -0.005834021605551243, -0.025849532335996628, -0.007894556038081646, -0.05127793923020363, -0.027353527024388313, -0.06912635266780853, -0.06034093722701073, -0.030771931633353233, 0.0914962887763977, -0.0004110860754735768, -0.03701881691813469, 0.024103082716464996, -0.005635557230561972, -0.10180448740720749, -0.01119227148592472, -0.008213850669562817, -0.03239138796925545, 0.014585872180759907, 0.029448091983795166, 0.05259346961975098, -0.03265519067645073, -0.06232977285981178, 0.008310769684612751, 0.023527976125478745, 0.042387451976537704, -0.012307959608733654, 0.03597944602370262, -0.0027631884440779686, -0.022105257958173752, 0.010346152819693089, 0.05844723433256149, 0.010518085211515427, -0.0524541474878788, -0.008067897520959377, 0.03402283042669296, 0.02859114669263363, 0.010279083624482155, -0.005410988349467516, 0.004111907444894314, 0.031124727800488472, -0.002712484449148178, -0.049009770154953, 0.037514157593250275, -0.021811828017234802, -0.016551174223423004, -0.00047961086966097355, -0.04049372673034668, 0.023023024201393127, 0.03856974467635155, 0.012100792489945889, -0.014812243171036243, -0.02640199474990368, 0.00926095899194479, -0.02413569577038288, -0.03621361404657364, -0.013609987683594227, -0.000570975593291223, 0.05221456289291382, -0.0033223824575543404, -0.021388890221714973, -0.030102303251624107, 0.01671915501356125, -0.004637283738702536, -0.021869124844670296, -0.06868770718574524, -0.008714066818356514, -0.01251928135752678, -0.02102082222700119, 0.0299751628190279, 0.014179393649101257, -0.010612735524773598, 0.011727818287909031, 0.03253721445798874, -0.030115647241473198, 0.02835017628967762, -0.04102342575788498, -0.06480314582586288, -0.03399648144841194, 0.0068216584622859955, -0.013873442076146603, -0.017122354358434677, 0.029121186584234238, -0.004163825884461403, 0.015066861175000668, 0.0423346608877182, 0.016984879970550537, 0.00938426610082388, -0.02063692919909954, 0.0223765317350626, 0.005372658371925354, 0.008043280802667141, -0.048148538917303085, 0.027676142752170563, -0.042212098836898804, -0.0032878259662538767, -0.015008156187832355, 0.02835979498922825, -0.007321472745388746, -0.03183974698185921, -0.013219890184700489, 0.006454207468777895, -0.05465121194720268, -0.02940763346850872, -0.031382717192173004, 0.028450630605220795, 0.0505104586482048, -0.04647695645689964, 0.02221156656742096, -0.005824558436870575, -0.007119487971067429, 0.03561213240027428, 0.015164964832365513, -0.05104171484708786, 0.01616075448691845, 0.014613292180001736, 0.0016130548901855946, -0.0043861535377800465, 0.0036560490261763334, 0.03950805589556694, 0.02326294407248497, 0.0016525780083611608, -0.025039654225111008, -0.00399094820022583, -0.0069704423658549786, 0.04261989891529083, 0.017915312200784683, 0.012623801827430725, -0.002040451392531395, -0.022278735414147377, -0.004604924935847521, -0.04454193636775017, -0.033886782824993134, 0.009146593511104584, 0.021601494401693344, -0.039837583899497986, -0.07788733392953873, 0.07153940945863724, -0.0029906632844358683, -0.008752675727009773, 0.026011809706687927, -0.010502657853066921, 0.008567196317017078, -0.03642113506793976, 0.023149533197283745, 0.04286191612482071, -0.07856307178735733, 0.006163978483527899, -0.01747193932533264, -0.0024350453168153763, 0.017589764669537544, -0.0024280494544655085, -0.01482830848544836, -0.03309331834316254, -0.023803260177373886, 0.030988330021500587, -0.09669307619333267, -0.010479271411895752, -0.031012501567602158, 0.032510362565517426, -0.0036722931545227766, 0.0045369151048362255, -0.022378355264663696, -0.022587992250919342, -0.018946081399917603, -0.026906155049800873, 0.017110826447606087, -0.029593685641884804, -0.004347567912191153, 0.013148427940905094, -0.05403424799442291, -0.0032416675239801407, -0.04054161161184311, 0.01962750218808651, 0.03220410645008087, -0.030169542878866196, 0.0018384980503469706, -0.02747146226465702, 0.0013585947453975677, 0.004568283911794424, 0.03823445364832878, -0.0020530337933450937, -0.025457385927438736, -0.04682152345776558, -0.01172422431409359, -0.03726392239332199, 0.020939845591783524, -0.029071776196360588, -0.01785004884004593, 0.029750877991318703, 0.05204562097787857, 0.033378735184669495, 0.020256392657756805, -0.025310084223747253, -0.022199546918272972, 0.04702216759324074, -0.059601835906505585, -0.028150169178843498, -0.027807848528027534, -0.047678735107183456, 0.005279216915369034, 0.003093583742156625, 0.003133688122034073, -0.028609037399291992, 0.03108120709657669, 0.02094893343746662, 0.02401018887758255, 0.026452431455254555, 0.014788276515901089, 0.02825966663658619, -0.05438126251101494, -0.020554687827825546, -0.06909217685461044, -0.01230070274323225, 0.022115463390946388, 0.003356758737936616, -0.011448245495557785, 0.005314697045832872, -0.027754303067922592, 0.03444848582148552, -0.07661639153957367, -0.021248426288366318, 0.03978554531931877, -0.0073398114182055, -0.002624539425596595, 0.010790970176458359, -0.06787906587123871, 0.028412871062755585, 0.017049087211489677, -0.04271921142935753, -0.02815711684525013, -0.03620624542236328, 0.059571344405412674, -0.006560617592185736, 0.023413700982928276, -0.02413785271346569, -0.010767588391900063, 0.07677868753671646, 0.009449034929275513, 0.014264160767197609, 0.05164318159222603, -0.015911642462015152, 0.04682144522666931, 0.03197947517037392, 0.011627615429461002, 0.002778684487566352, 0.01980641670525074, -0.03334628790616989, -0.05814942717552185, 0.04540110006928444, -0.015318771824240685, -0.033647604286670685, -0.03704925626516342, 0.062071796506643295, 0.03508249297738075, -0.025482282042503357, -0.06963010877370834, 0.006561612710356712, -0.06061343476176262, 0.003528656903654337, -0.029590774327516556, -0.012352658435702324, -0.04961978644132614, 0.03920210897922516, -0.00614008866250515, 0.01605886034667492, 0.06826654076576233, -0.008378209546208382, -0.020488591864705086, -0.01933334209024906, 0.09609973430633545, 0.07869669795036316, 0.06854953616857529, 0.017914308235049248, 0.06224121153354645, -0.006150356959551573, -0.03898369520902634, 0.01109274011105299, 0.0003445693291723728, -0.0040222094394266605, -0.020797548815608025, 0.04053276777267456, 0.053897783160209656, -0.008081470616161823, 0.08333545923233032, -0.023176735267043114, -0.015087558887898922, -0.002785365330055356, 0.025588806718587875, 0.019183211028575897, 0.054152537137269974, -0.008393409661948681, 0.01751995086669922, -0.01992543786764145, -0.05460404232144356, 0.04152553528547287, -0.026693744584918022, 0.000561291933991015, 0.035754743963479996, -0.01649635285139084, 0.018800783902406693, 0.018553592264652252, 0.027056431397795677, 0.07526342570781708, -0.03782203793525696, 0.01123679056763649, -0.0030081872828304768, 0.030417190864682198, -0.011916624382138252, 0.024993345141410828, -0.02456982247531414, 0.0006449047941714525, -0.024539360776543617, -0.04443829506635666, -0.013977568596601486, -0.03339746966958046, -0.01512425858527422, 0.04339698702096939, -0.026638809591531754, 0.0028356376569718122, 0.029407424852252007, 0.0015443841693922877, -0.029071293771266937, -0.05129619687795639, -0.040692541748285294, -0.02668578177690506, -0.05860123038291931, -0.0005359521019272506, 0.02265949361026287, 0.004047521855682135, -0.030599776655435562, -0.028011327609419823, -0.020614920184016228, -0.035285718739032745, 0.04035891219973564, -0.05420788377523422, -0.01933484524488449, 0.006361640989780426, 0.029384197667241096, 0.019732359796762466, 0.011097780428826809, 0.05553220212459564, 0.00017792353173717856, 0.006470848806202412, -0.0063265529461205006, 0.02453429251909256, 0.0254540853202343, -0.00628802040591836, -0.0026224420871585608, -0.08416437357664108, -0.00471091503277421, 0.019509393721818924, -0.024547135457396507, -0.07651334255933762, 0.009771216660737991, 0.023489657789468765, 0.001972257625311613, 0.04224897921085358, -0.004365577362477779, -0.0003692586615215987, -0.04240182787179947, -0.0025579500943422318, 0.0038754877168685198, 0.0012604978401213884, 0.03944876044988632, -0.01256659533828497, 0.08291452378034592, 0.03724362328648567, -0.022756172344088554, -0.05378303304314613, -0.02629021555185318, -0.005091844126582146, 0.005570974666625261, -0.0362783782184124, -0.02730601467192173, -0.013272805139422417, -0.10730262845754623, -0.03127909079194069, 0.026452867314219475, -0.022523488849401474, -0.04817676171660423, 0.023308077827095985, 0.01639317348599434, -0.0018887030892074108, 0.031909435987472534, -0.05043943598866463, 0.02725023217499256, -0.02402018941938877, -0.008618519641458988, 0.006511300802230835, 0.027483252808451653, 0.008740236982703209, -0.01215793751180172, 0.014278596267104149, -0.04463572055101395, 0.006941809784621, -0.012528982013463974, 0.025471579283475876, 0.058732498437166214, 0.0014471139293164015, -0.012274102307856083 ]
[ -0.06490578502416611, 0.03528684750199318, -0.024267952889204025, -0.030149180442094803, 0.03989287093281746, -0.02030051127076149, 0.009260095655918121, 0.016339773312211037, -0.007059868890792131, -0.027782507240772247, -0.0002978536067530513, -0.04404144734144211, -0.003739982610568404, -0.025187429040670395, 0.0817250907421112, 0.021279051899909973, -0.014970307238399982, -0.07276203483343124, 0.019712459295988083, 0.01976659707725048, 0.01570894755423069, -0.027866045013070107, -0.02812548354268074, -0.01002262532711029, 0.009984315373003483, 0.015579581260681152, 0.030182266607880592, -0.04486435651779175, 0.02834741398692131, -0.17056140303611755, 0.004890735726803541, 0.009347197599709034, 0.014855191111564636, -0.006388522684574127, 0.010454106144607067, 0.07095453143119812, 0.025268729776144028, 0.025727054104208946, -0.00373485847376287, 0.01797906495630741, 0.0038906808476895094, -0.0004930853610858321, -0.03858190029859543, -0.037852056324481964, 0.021018268540501595, 0.015030439011752605, 0.009429342113435268, -0.0425807386636734, -0.0206590685993433, -0.007988345809280872, -0.07829035818576813, -0.0267456267029047, -0.020010383799672127, -0.022836964577436447, -0.004665371496230364, 0.012120123021304607, 0.03789477422833443, 0.059212587773799896, 0.01783120445907116, 0.017649853602051735, 0.024412695318460464, -0.008634650148451328, -0.1449672430753708, 0.11222436279058456, 0.047184135764837265, 0.05870864912867546, -0.05109963193535805, -0.01015020627528429, -0.002948764245957136, 0.0709715336561203, 0.019314812496304512, -0.020330233499407768, 0.007475087884813547, 0.045367565006017685, 0.033842962235212326, 0.02090519107878208, -0.018188241869211197, 0.027464767917990685, 0.012215562164783478, -0.07268816977739334, -0.018130509182810783, 0.010105466470122337, -0.01743740402162075, -0.023006919771432877, -0.043522000312805176, 0.031376902014017105, 0.005128528922796249, 0.04275784641504288, 0.015246008522808552, 0.019023772329092026, 0.027871886268258095, 0.013647363521158695, 0.0014805430546402931, -0.01823391020298004, -0.07920374721288681, -0.03300412744283676, -0.0195042472332716, 0.025782685726881027, -0.0686737596988678, 0.447336882352829, -0.027017733082175255, -0.007776983547955751, 0.09376855194568634, 0.022307943552732468, -0.0009527034708298743, 0.0014972726348787546, 0.02478470839560032, -0.0673150047659874, 0.02857412025332451, 0.0015078543219715357, 0.020281292498111725, 0.017898818477988243, 0.036173027008771896, -0.025637218728661537, 0.030735904350876808, 0.014206032268702984, 0.05189179629087448, 0.019641689956188202, -0.029385866597294807, -0.023232828825712204, -0.016497915610671043, 0.03230646997690201, 0.011643694713711739, 0.0021355715580284595, -0.006702818442136049, -0.038239121437072754, 0.024781374260783195, 0.055732425302267075, 0.02327837236225605, -0.006014151498675346, 0.03927336633205414, -0.0491182841360569, -0.03886430338025093, 0.008766639046370983, 0.011203287169337273, 0.01687517948448658, 0.019446535035967827, -0.012543863616883755, 0.0035379112232476473, 0.06597725301980972, 0.050230398774147034, 0.010967311449348927, 0.007528677582740784, -0.0005744533846154809, -0.04392551630735397, 0.1128745973110199, 0.023416729643940926, -0.024988817051053047, -0.02251080982387066, -0.013998784124851227, 0.002037753351032734, 0.004019935615360737, -0.02171829529106617, -0.045616552233695984, 0.04497913643717766, -0.015940459445118904, 0.09143110364675522, 0.007473045028746128, -0.0420982800424099, -0.010674195364117622, -0.002233367646113038, -0.025013864040374756, -0.041102517396211624, 0.022159747779369354, 0.08206753432750702, -0.06759278476238251, -0.01947331801056862, 0.0028366136830300093, 0.03221540525555611, -0.10706936568021774, 0.003994572442024946, 0.016288932412862778, -0.025230636820197105, 0.022814275696873665, 0.04553435370326042, -0.02489590458571911, -0.03636836260557175, 0.013545537367463112, 0.04205002263188362, 0.018385514616966248, 0.03323953598737717, -0.003604948054999113, -0.03558313474059105, 0.01316754799336195, -0.051101911813020706, -0.08887740224599838, -0.0385063961148262, -0.016935769468545914, -0.020136162638664246, 0.032344233244657516, 0.012090438976883888, -0.010616980493068695, -0.0964493378996849, 0.08850834518671036, -0.0315282940864563, -0.017006954178214073, 0.03537612035870552, -0.02494887262582779, -0.06543942540884018, -0.004868395160883665, -0.09854785352945328, 0.02026781626045704, -0.06135496497154236, 0.033247724175453186, -0.06321444362401962, 0.056242454797029495, 0.058121878653764725, -0.039608269929885864, 0.12028371542692184, 0.035093557089567184, -0.01670563407242298, -0.058310192078351974, -0.015705732628703117, 0.017158888280391693, 0.008522601798176765, -0.012224646285176277, 0.017653685063123703, 0.012911372818052769, 0.007601779419928789, 0.014466739259660244, -0.010947955772280693, -0.026249026879668236, -0.047481052577495575, -0.3515472114086151, -0.05240292102098465, -0.015252060256898403, -0.008176302537322044, 0.03743360564112663, -0.02360372617840767, 0.02030903287231922, -0.008867555297911167, -0.0015043998137116432, -0.0005029162275604904, 0.06663233041763306, -0.007343639619648457, 0.005441256333142519, -0.0633605569601059, -0.00868824403733015, -0.00014315608132164925, -0.03016684390604496, -0.012384188361465931, -0.03254229202866554, 0.010669737122952938, -0.012171880342066288, 0.020772993564605713, -0.022993676364421844, -0.056031666696071625, -0.016336575150489807, -0.04596131294965744, 0.10666385293006897, 0.01896803453564644, 0.047235675156116486, -0.03355445712804794, 0.030604563653469086, 0.021999165415763855, 0.012435724027454853, -0.11033040285110474, -0.023453809320926666, -0.007720652036368847, -0.0041931793093681335, -0.010628956370055676, 0.003642299445345998, -0.04761769622564316, -0.05831519141793251, 0.02485647425055504, -0.0632878839969635, -0.030101021751761436, -0.10669544339179993, 0.024573231115937233, -0.035776540637016296, -0.02946208417415619, -0.030168630182743073, 0.07583039253950119, 0.0275160800665617, 0.0011117481626570225, 0.012350066564977169, 0.0041324724443256855, -0.04783916473388672, -0.025409171357750893, -0.08588506281375885, 0.03688843548297882, -0.0008526663878001273, 0.009627352468669415, 0.012826994061470032, 0.06711851805448532, 0.023441890254616737, -0.07039232552051544, -0.006344227585941553, 0.008717520162463188, 0.0009774032514542341, 0.012036621570587158, 0.0490497425198555, -0.00865913461893797, -0.009051620028913021, 0.10554727166891098, 0.008127430453896523, -0.01947757788002491, 0.018589183688163757, 0.02199377678334713, 0.009162619709968567, 0.003961402922868729, 0.0018192733405157924, 0.01211661845445633, 0.037901733070611954, -0.014948283322155476, 0.0258690994232893, -0.029265249148011208, -0.012629744596779346, 0.013018308207392693, -0.0021499667782336473, -0.07215100526809692, 0.0646129697561264, 0.024279294535517693, -0.012259963899850845, 0.022461526095867157, -0.014633535407483578, -0.06392037123441696, 0.06441564857959747, -0.0018062286544591188, -0.26183706521987915, 0.014501312747597694, 0.06483238190412521, 0.056936703622341156, 0.0034308552276343107, 0.03608989343047142, 0.012477443553507328, -0.01691410131752491, 0.02068515494465828, 0.02141919732093811, 0.022687338292598724, -0.0031380264554172754, -0.017440957948565483, 0.004404219798743725, 0.025248143821954727, 0.004042577929794788, 0.04826393350958824, -0.031063783913850784, 0.009731888771057129, -0.018419787287712097, 0.0031507350504398346, -0.0022571892477571964, 0.1556137353181839, 0.017154818400740623, 0.027187999337911606, 0.002002527704462409, -0.01269364170730114, 0.005986091215163469, 0.05842980742454529, -0.00961308553814888, 0.014001047238707542, -0.01061920914798975, 0.021342458203434944, 0.013987956568598747, 0.02453610487282276, -0.07811374217271805, -0.021821925416588783, 0.004806284327059984, 0.029540540650486946, 0.0007822260959073901, 0.041105080395936966, 0.0032492049504071474, -0.01653740555047989, 0.031014276668429375, 0.06663617491722107, 0.010622977279126644, -0.0020479876548051834, -0.05121766775846481, -0.05284622684121132, -0.022145425900816917, -0.011968996375799179, -0.02719714306294918, 0.011303471401333809, 0.010167013853788376, 0.014685992151498795, 0.07076247781515121, 0.02285044826567173, -0.03343574330210686, -0.0077135092578828335, -0.011526718735694885, -0.03522104024887085, -0.015452180057764053, 0.09982585906982422, 0.036838412284851074, 0.05364830046892166 ]
[ 0.017702529206871986, 0.023121044039726257, 0.015611855313181877, 0.01966623216867447, -0.0013680243864655495, -0.01136807631701231, 0.014707847498357296, 0.0062392172403633595, 0.010282203555107117, 0.01041511632502079, -0.012659835629165173, 0.011086652986705303, 0.021050266921520233, -0.013520605862140656, 0.018519017845392227, -0.012702031061053276, 0.0023059567902237177, -0.0156151307746768, 0.02111590839922428, 0.01798408105969429, 0.007098662666976452, 0.014264093711972237, -0.01928437128663063, 0.004119070712476969, -0.012290292419493198, 0.023905785754323006, -0.01297810859978199, -0.02678004279732704, 0.03424340486526489, -0.14466936886310577, -0.052957989275455475, -0.02797413431107998, -0.018964404240250587, 0.03335872292518616, -0.018097715452313423, 0.008231043815612793, 0.00016740224964451045, 0.027939623221755028, -0.010395674034953117, -0.008507260121405125, -0.012792946770787239, -0.01003495417535305, -0.007720362860709429, 0.02054053358733654, -0.0021994910202920437, 0.003983772825449705, 0.007392167113721371, -0.042107563465833664, -0.005093630403280258, -0.04251464828848839, -0.03767692297697067, -0.00964487437158823, 0.007418008055537939, 0.030832191929221153, 0.0014056795043870807, -0.017324045300483704, 0.013830387033522129, -0.007072053384035826, -0.00024365016724914312, -0.0030332256574183702, -0.0013733686646446586, -0.015546322800219059, -0.04143063351511955, -0.00915898010134697, -0.009216300211846828, -0.027719572186470032, -0.007852278649806976, 0.031604211777448654, -0.011503862217068672, 0.030359139665961266, -0.029727039858698845, 0.01863126829266548, -0.04117261990904808, -0.02386879362165928, 0.02296159416437149, -0.006630005780607462, -0.019736632704734802, -0.009600772522389889, -0.020917948335409164, -0.011130298487842083, -0.017588630318641663, 0.008378301747143269, 0.0013484053779393435, 0.01867634803056717, -0.01555031631141901, -0.009513049386441708, 0.01824152283370495, 0.011426025070250034, 0.02342027798295021, -0.015025423839688301, -0.024392759427428246, 0.00815877877175808, 0.011982684955000877, 0.013462680391967297, -0.07431024312973022, -0.009522149339318275, -0.006871887482702732, 0.01709834672510624, -0.0406687892973423, 0.876437783241272, -0.007704643998295069, 0.03305317461490631, 0.035214003175497055, -0.01427685096859932, -0.006310472264885902, -0.008685306645929813, -0.01367817260324955, 0.003535559866577387, 0.005257804878056049, -0.060183145105838776, 0.013556662946939468, 0.017573313787579536, 0.00013744771422352642, 0.010602766647934914, 0.03360513597726822, 0.025740519165992737, 0.008153322152793407, -0.025691786780953407, -0.023149972781538963, 0.021747613325715065, 0.03177109360694885, 0.024991914629936218, 0.02243974059820175, 0.02673773095011711, 0.015896057710051537, -0.16392862796783447, 0.009489589370787144, -8.327274714938042e-33, 0.057736095041036606, 0.025887956842780113, -0.030451921746134758, -0.010248343460261822, 0.011934138834476471, 0.012769938446581364, 0.00803318154066801, 0.0012611866695806384, -0.029665792360901833, -0.018174756318330765, 0.0008491553016938269, -0.010025694966316223, 0.015758685767650604, -0.01918407343327999, 0.016179891303181648, -0.0024717627093195915, -0.021922875195741653, 0.03066696785390377, -0.004545146133750677, 0.0026040440425276756, 0.015209204517304897, 0.02551182359457016, -0.00026243453612551093, -0.020185470581054688, -0.016076356172561646, -0.006728522479534149, 0.009670078754425049, -0.003338409820571542, 0.015993094071745872, -0.04502808302640915, -0.005133951082825661, 0.045181866735219955, -0.01218809001147747, -0.027717720717191696, 0.016045711934566498, -0.050601065158843994, -0.031240317970514297, 0.014633679762482643, 0.0035186761524528265, -0.03292364254593849, -0.02248474769294262, -0.0032171085476875305, -0.052500464022159576, -0.02798375114798546, -0.017609575763344765, -0.002074182964861393, 0.005440617445856333, 0.021001091226935387, 0.01231614500284195, 0.009218164719641209, 0.017944656312465668, -0.005560023710131645, -0.00618894724175334, 0.007084687240421772, 0.012030304409563541, 0.004381158389151096, 0.017819564789533615, -0.013195262290537357, 0.02281928062438965, 0.02664100006222725, 0.011180629022419453, -0.012440728023648262, -0.012199010699987411, 0.041932832449674606, -0.012515153735876083, 0.0020623428281396627, 0.03742107003927231, 0.02008308470249176, 0.016982989385724068, -0.03401051089167595, -0.05960410088300705, 0.0010314922546967864, 0.01230043824762106, -0.003885018639266491, -0.011160834692418575, -0.005599298980087042, -0.008524784818291664, 0.017802519723773003, 0.0006550444522872567, 0.054330430924892426, 0.002352961339056492, -0.027135882526636124, 0.003253460396081209, -0.04911540448665619, -0.02947445772588253, 0.009653675369918346, 0.021582288667559624, -0.01640084758400917, -0.028668051585555077, 0.019474131986498833, 0.016489505767822266, 0.02947813831269741, -0.004700239282101393, -0.00511220283806324, -0.006195851135998964, 8.192463145313988e-33, 0.011544963344931602, -0.009035566821694374, -0.017716657370328903, -0.007782432250678539, 0.06134004518389702, -0.007730996236205101, 0.0245607178658247, -0.010273824445903301, -0.046243008226156235, 0.03103731945157051, -0.0014920580433681607, -0.006406635511666536, -0.018884846940636635, 0.01756196841597557, 0.01955234259366989, -0.01796896755695343, 0.01693602092564106, -0.01187215931713581, 0.017955327406525612, -0.005653935018926859, -0.0033846318256109953, 0.00040758863906376064, -0.024694688618183136, 0.02172488160431385, 0.021277064457535744, 0.03948010504245758, -0.008230230771005154, 0.025413909927010536, -0.006424416787922382, -0.0070755574852228165, 0.016953736543655396, -0.02506108395755291, 0.015359514392912388, -0.022190235555171967, -0.010994936339557171, 0.04402568191289902, -0.005438701715320349, -0.011889245361089706, 0.0070801530964672565, 0.0016925402451306581, 0.02926332876086235, 0.030205458402633667, -0.0002338736958336085, 0.006282472051680088, 0.011045348830521107, -0.00021362387633416802, -0.015773266553878784, -0.02003321796655655, 0.0005808698479086161, 0.008230878040194511, 0.019062358886003494, 0.0029313010163605213, 0.028876956552267075, 0.000740514078643173, -0.019081084057688713, -0.01026999857276678, -0.008741877041757107, 0.02026841789484024, 0.005532332696020603, 0.0016630080062896013, -0.017936596646904945, -0.02282356470823288, -0.03092525713145733, 0.0037555103190243244, -0.044894665479660034, -0.013710674829781055, -0.021082192659378052, 0.03082297369837761, -0.0073336949571967125, -0.0006529177771881223, -0.04309094697237015, -0.014551018364727497, -0.0011465969728305936, 0.02548815868794918, 0.028773052617907524, -0.008690770715475082, -0.011399264447391033, 0.01903475448489189, -0.019576584920287132, 0.031890567392110825, 0.014337524771690369, 0.024147627875208855, 0.024689745157957077, 0.0005358810303732753, -0.0012619231129065156, 0.03597431257367134, -0.009952951222658157, 0.024093400686979294, 0.002070898888632655, -0.004310510121285915, -0.02102588675916195, -0.00931996013969183, -0.004810423590242863, 0.009418736211955547, 0.0017582240980118513, -1.3752947225498247e-8, -0.03242775797843933, -0.01125215645879507, 0.001552816480398178, 0.019077729433774948, 0.040110208094120026, 0.013229966163635254, -0.009274939075112343, 0.01462160050868988, -0.03723824396729469, 0.014392766170203686, 0.030110785737633705, -0.030499128624796867, -0.008438926190137863, 0.02610406093299389, 0.0218950267881155, -0.027991434559226036, -0.02048252522945404, -0.0020100297406315804, 0.03169587254524231, 0.011373630724847317, 0.0532572902739048, 0.025276122614741325, 0.012917207553982735, 0.01747765950858593, 0.011430630460381508, -0.02491033263504505, 0.0014819815987721086, -0.0703069195151329, -0.04263930395245552, 0.014230557717382908, 0.01676628552377224, -0.03262334689497948, -0.031206751242280006, 0.01532003190368414, -0.006869022268801928, -0.017290079966187477, 0.011699666269123554, -0.004557401407510042, -0.019365299493074417, 0.0001059081478160806, -0.02269495651125908, -0.005623080767691135, 0.0027297649066895247, -0.03500374034047127, -0.014602751471102238, 0.0019966792315244675, -0.04101460799574852, -0.035029564052820206, 0.01933480240404606, -0.023790806531906128, 0.019295597448945045, -0.011337804608047009, 0.030323771759867668, 0.026862630620598793, 0.044717054814100266, -0.016772452741861343, 0.016382280737161636, -0.028709376230835915, -0.02989920973777771, -0.005411527585238218, 0.02908787876367569, 0.04062992334365845, 0.005991859827190638, -0.002200860995799303 ]
the-curse-of-knowledge
https://markhneedham.com/blog/2012/08/28/the-curse-of-knowledge
false
2012-08-10 00:58:46
SSHing onto machines via a jumpbox
[ "shell-scripting-2", "ssh" ]
[ "Shell Scripting" ]
We wanted to be able to ssh into some machines which were behind a firewall so we set up a http://blog.industrialdefender.com/?p=612[jumpbox] which our firewall directed any traffic on port 22 towards. Initially if we wanted to SSH onto a machine inside the network we'd have to do a two step process: [source,text] ---- $ ssh jumpbox # now on the jumpbx $ ssh internal-network-machine ---- That got a bit annoying after a while so http://www.linkedin.com/in/samsharpe[Sam] showed us a neat way of proxying the second ssh command through the first one by making use of http://netcat.sourceforge.net/[netcat]. We put the following into +++<cite>+++~/.ssh/config+++</cite>+++: [source,text] ---- Host jumpbox jumpbox-ip Hostname jumpbox-ip User user IdentityFile ~/.ssh/id_rsa ProxyCommand none Host internal-network-machine Hostname internal-network-machine-ip Host 10.* User ubuntu ProxyCommand ssh jumpbox exec nc -w 9000 %h %p UserKnownHostsFile /dev/null StrictHostKeyChecking no ---- The '-w 9000' flag defines a 2 1/2 hour wait period so that any http://www.lofar.org/wiki/doku.php?id=public:ssh-usage[orphaned connections will die off] within that time. %h and %p represent the host and port of the internal machine so in this case %h is 'internal-network-machine-ip' and the port will be 22. We can then just do the following to ssh into the machine: [source,text] ---- ssh internal-network-machine ---- Which is pretty neat! This is http://benno.id.au/blog/2006/06/08/ssh_proxy_command[explained further on benno's blog] and on the http://www.undeadly.org/cgi?action=article&sid=20070925181947[Open BSD journal].
null
null
[ 0.004855044651776552, -0.0018011322245001793, -0.022405117750167847, 0.04491367191076279, 0.10353632271289825, -0.01308964192867279, 0.03425716236233711, 0.02301754057407379, 0.01315239630639553, -0.014459258876740932, 0.00923861563205719, -0.005991155747324228, -0.07424145936965942, 0.02364279329776764, -0.014220126904547215, 0.0607767179608345, 0.07498399913311005, -0.0381571426987648, 0.002350562484934926, -0.0010705627501010895, -0.0006987977540120482, 0.06777889281511307, 0.019179096445441246, 0.011768213473260403, 0.01952189765870571, 0.024513347074389458, -0.014154620468616486, 0.003895875532180071, -0.03310968726873398, 0.015648435801267624, 0.05787055939435959, -0.02280518412590027, 0.012756316922605038, -0.015539919026196003, 0.01645677536725998, -0.019519688561558723, -0.023479972034692764, -0.003998519387096167, -0.013916803523898125, 0.024769438430666924, -0.06610533595085144, 0.04269402474164963, -0.002396791009232402, 0.030118266120553017, -0.044018007814884186, -0.001081691705621779, -0.02978913113474846, 0.023290179669857025, 0.024061692878603935, 0.018225258216261864, -0.0965818241238594, 0.027317730709910393, -0.02931622602045536, 0.0059783062897622585, 0.024435346946120262, 0.003332753898575902, 0.01678135246038437, -0.08090610057115555, 0.02988627552986145, -0.03385991230607033, 0.0022520164493471384, -0.006419358775019646, 0.013382857665419579, 0.013861289247870445, -0.011967385187745094, -0.04981553927063942, 0.0338345505297184, 0.036715783178806305, -0.04036567732691765, -0.01347579900175333, 0.011134764179587364, 0.023448994383215904, -0.03417552635073662, -0.026082713156938553, 0.030274532735347748, -0.026703208684921265, -0.003279892262071371, 0.026273250579833984, 0.010359695181250572, 0.07735836505889893, -0.040390610694885254, 0.02492501214146614, 0.006074125878512859, 0.015259817242622375, 0.015306181274354458, -0.056180261075496674, -0.02277480438351631, 0.012735440395772457, -0.07207950949668884, 0.070095956325531, 0.01242830604314804, -0.027957037091255188, 0.008745193481445312, 0.008727718144655228, -0.0009726718999445438, 0.004898343700915575, 0.029261548072099686, 0.0022396703716367483, -0.0004604449204634875, -0.011082756333053112, -0.016057172790169716, -0.004590162076056004, 0.003660991322249174, 0.030622297897934914, -0.06127053126692772, 0.0008857590146362782, -0.022593455389142036, -0.00961957685649395, -0.02478898875415325, -0.005242056213319302, -0.027311604470014572, 0.019709382206201553, 0.00465603219345212, 0.015002726577222347, -0.07601836323738098, 0.04996485263109207, -0.004082024097442627, -0.0496867373585701, 0.023534005507826805, -0.007922339253127575, 0.04057370498776436, 0.026284582912921906, -0.04234901815652847, 0.05665406957268715, 0.041704483330249786, 0.0031375496182590723, 0.012306970544159412, 0.03796185180544853, -0.013998405076563358, -0.04390685260295868, -0.017223594710230827, 0.0968623235821724, 0.029538562521338463, 0.013573769479990005, -0.008804528042674065, -0.03728293627500534, -0.008382183499634266, 0.03066418506205082, 0.03992234542965889, 0.023977719247341156, 0.0019994103349745274, -0.042868562042713165, 0.013036975637078285, -0.004352862015366554, -0.0019679018296301365, 0.013017798773944378, 0.012567205354571342, -0.05094755440950394, -0.029882093891501427, 0.0063268993981182575, 0.002256384352222085, 0.013975349254906178, 0.04576165974140167, -0.023202139884233475, -0.0029692731332033873, 0.04892296716570854, 0.05575810745358467, -0.018756167963147163, -0.027236169204115868, -0.0210260096937418, 0.017352867871522903, 0.043481532484292984, -0.0023230004590004683, 0.04852581024169922, -0.006008906755596399, 0.002307266928255558, -0.012971409596502781, 0.05635008215904236, 0.020616227760910988, 0.004186105914413929, -0.03892960399389267, -0.04382197558879852, 0.06153879687190056, -0.04051262512803078, -0.04109341651201248, 0.037842512130737305, 0.06621730327606201, 0.028246276080608368, 0.041455768048763275, -0.007213981822133064, -0.07329811900854111, 0.04967823624610901, 0.005066113546490669, 0.03683358430862427, -0.006588715128600597, -0.008717342279851437, 0.0754280537366867, 0.022147301584482193, -0.00859740562736988, 0.022062938660383224, -0.061097338795661926, -0.07670345157384872, -0.021783217787742615, -0.010429185815155506, 0.047275472432374954, -0.024207865819334984, 0.01372465305030346, 0.051445938646793365, 0.029635095968842506, 0.04663029685616493, 0.031522899866104126, 0.0017523780697956681, 0.033931322395801544, -0.05655040964484215, -0.0785353034734726, 0.041129156947135925, 0.012502244673669338, -0.007869086228311062, -0.07573794573545456, 0.005989150144159794, -0.03462933003902435, -0.01124819740653038, 0.022540559992194176, -0.03556869179010391, 0.06284642964601517, -0.009518432430922985, 0.03250953555107117, -0.037543345242738724, 0.024820679798722267, -0.028260260820388794, 0.03857738524675369, 0.01129656471312046, -0.01407469529658556, 0.04295575991272926, 0.014933088794350624, 0.11378356069326401, 0.06470933556556702, -0.025596436113119125, -0.04971999302506447, 0.04291790351271629, 0.0014512427151203156, -0.060927972197532654, -0.003907232545316219, -0.007216407917439938, -0.025493813678622246, 0.03218083828687668, -0.042636722326278687, -0.0314163863658905, -0.008414563722908497, -0.048124510794878006, 0.01899763196706772, 0.06745278090238571, 0.002445307094603777, 0.03884206712245941, -0.004299338441342115, -0.032735828310251236, -0.0007963110110722482, -0.06328634172677994, -0.050169605761766434, 0.00704131880775094, 0.013256770558655262, -0.017686517909169197, 0.05279029160737991, -0.05660437420010567, 0.004272302147001028, -0.048409610986709595, -0.04748012498021126, 0.037841688841581345, 0.031236954033374786, 0.06012209132313728, -0.03691674396395683, 0.06852909922599792, -0.034784235060214996, 0.020362218841910362, -0.006304052658379078, -0.04513987898826599, -0.046316660940647125, -0.01311382558196783, 0.026570620015263557, 0.010941877029836178, 0.028706951066851616, -0.028630468994379044, 0.0064985258504748344, -0.012086608447134495, 0.04105323553085327, -0.027232548221945763, 0.02135644480586052, 0.009667224250733852, 0.00202195649035275, -0.025382675230503082, -0.008012733422219753, 0.04569879546761513, -0.04548719525337219, -0.0015710408333688974, 0.004661629442125559, -0.05018246918916702, 0.02543536387383938, -0.1017133966088295, -0.044609617441892624, -0.006469931453466415, 0.017480559647083282, 0.02070513740181923, 0.03789559751749039, 0.03289642930030823, 0.04071781039237976, 0.01739036664366722, 0.004194175358861685, 0.011046270839869976, 0.0024419515393674374, 0.03842850401997566, 0.017451686784625053, 0.033691249787807465, -0.018413620069622993, -0.01764853112399578, -0.01668909378349781, -0.06813447177410126, 0.030513150617480278, -0.0406123585999012, -0.28815189003944397, 0.02920137718319893, 0.022401442751288414, -0.02414056658744812, 0.014470888301730156, 0.014896413311362267, 0.011365831829607487, -0.04431901127099991, -0.03311476111412048, 0.010568251833319664, -0.009367999620735645, -0.04065370187163353, 0.0028437769506126642, -0.0032302290201187134, -0.017312753945589066, 0.011613771319389343, 0.006461727898567915, -0.06722274422645569, 0.022843794897198677, -0.01134446170181036, -0.009037243202328682, -0.04149332270026207, 0.023190060630440712, 0.01448003388941288, 0.041498538106679916, 0.06985414028167725, -0.05699566751718521, 0.04392087832093239, -0.046124737709760666, 0.009528211317956448, -0.028852637857198715, -0.011351940222084522, 0.0008104988955892622, 0.004950212314724922, -0.04281781613826752, -0.0112870829179883, 0.061425965279340744, 0.0022337790578603745, 0.030311277136206627, 0.02247520722448826, -0.0683557540178299, -0.02570522390305996, -0.005826842971146107, -0.006201412063091993, 0.07714607566595078, -0.03207064047455788, -0.04793570563197136, -0.027990473434329033, -0.0015771744074299932, 0.0811932161450386, -0.05913452431559563, -0.037077561020851135, -0.018927067518234253, 0.0372043251991272, -0.005965810734778643, 0.0012401827843859792, -0.0415949746966362, -0.017101118341088295, -0.061465658247470856, -0.02933657169342041, -0.014337983913719654, -0.00891439151018858, -0.026538915932178497, -0.06665345281362534, 0.007204303052276373, -0.03302665427327156, -0.05615153908729553, -0.021772366017103195, 0.07289949804544449, 0.008623957633972168, -0.025610027834773064, 0.015898896381258965, -0.015818791463971138, -0.11037293821573257, 0.0019411164103075862, -0.009479875676333904, -0.07113000750541687, 0.018891215324401855, 0.027376824989914894, 0.02721293270587921, -0.04035693407058716, -0.0347721241414547, -0.00878937914967537, 0.005889225285500288, 0.015661779791116714, -0.021177683025598526, 0.03186977654695511, 0.007877163589000702, -0.02567281760275364, 0.0012113903649151325, 0.07306650280952454, -0.00902559794485569, -0.031945109367370605, -0.03874729946255684, 0.002634987235069275, 0.02300480380654335, 0.01391367707401514, 0.020993486046791077, 0.01600756123661995, 0.03689485788345337, 0.03326249495148659, -0.02316027134656906, 0.028744593262672424, -0.06503871083259583, 0.003485505934804678, 0.013310829177498817, -0.025298848748207092, 0.03444356471300125, 0.015072230249643326, 0.020246116444468498, -0.014580627903342247, -0.04385613277554512, 0.013245400972664356, -0.06610913574695587, -0.03819366171956062, 0.013024910353124142, 0.007831976749002934, 0.006994990631937981, 0.01925830915570259, -0.031137121841311455, -0.03288203850388527, 0.018803538754582405, 0.0608929842710495, -0.013242374174296856, -0.04694318398833275, -0.01999126560986042, -0.02238059788942337, 0.009412534534931183, 0.06829248368740082, 0.01336509920656681, -0.008916093967854977, 0.023746132850646973, 0.051349833607673645, -0.025762619450688362, 0.020954154431819916, -0.011490636505186558, -0.026477184146642685, -0.032153766602277756, 0.01304246298968792, 0.016444360837340355, -0.0318351574242115, 0.03343608230352402, 0.008915375918149948, 0.024433257058262825, 0.04842093214392662, 0.01053665392100811, 0.025093941017985344, -0.015348435379564762, 0.005633788648992777, 0.012090642936527729, -0.005512750707566738, -0.05832434818148613, 0.020124029368162155, -0.03370688483119011, -0.031175805255770683, 0.016821326687932014, 0.06335896998643875, -0.022682100534439087, -0.06792369484901428, -0.019847795367240906, 0.038275543600320816, -0.07764823734760284, 0.02449548989534378, 0.007430324796587229, -0.007597682066261768, 0.06336494535207748, -0.02303098514676094, -0.005754247307777405, -0.018278544768691063, -0.021907979622483253, 0.01234187837690115, 0.04192318767309189, -0.034849945455789566, 0.021546142175793648, 0.03453071415424347, -0.006220042705535889, -0.04187091067433357, 0.04834171012043953, 0.045315150171518326, 0.024322226643562317, 0.020505649968981743, -0.007294892333447933, 0.009271690621972084, 0.015278584323823452, 0.052768275141716, -0.011775931343436241, 0.0020380360074341297, -0.0005642517353408039, -0.0014536685775965452, 0.003336085006594658, -0.01556199137121439, 0.001379290595650673, -0.012943774461746216, 0.008225281722843647, -0.02295190840959549, -0.07388068735599518, 0.04051801934838295, 0.029220618307590485, 0.011089480482041836, 0.018110079690814018, 0.018965233117341995, -0.008348722942173481, -0.026402100920677185, 0.049374379217624664, 0.042533259838819504, -0.046565499156713486, 0.014222781173884869, 0.019066816195845604, 0.030375387519598007, 0.002927160821855068, 0.011099223978817463, -0.032778117805719376, -0.034820184111595154, -0.011291568167507648, 0.02811269275844097, -0.0724651962518692, -0.05160518363118172, -0.0046255700290203094, -0.0011703779455274343, -0.002697386546060443, 0.022816741839051247, 0.004868261981755495, 0.015685057267546654, 0.001549652311950922, -0.06499016284942627, 0.012164708226919174, -0.028198877349495888, -0.014255843125283718, 0.010001529939472675, -0.02101108618080616, -0.029184121638536453, -0.01048838160932064, 0.06295594573020935, 0.011895755305886269, -0.030758045613765717, -0.00507387425750494, -0.05487438291311264, -0.00329426396638155, -0.04348953440785408, 0.05385160818696022, -0.004264293238520622, -0.0062078139744699, -0.03631332516670227, 0.003147602081298828, -0.03945393115282059, 0.02700035832822323, -0.006204918492585421, -0.00013218725507613271, 0.0482228547334671, 0.02678093872964382, -0.011566760949790478, 0.042575519531965256, -0.022328674793243408, -0.03485880792140961, 0.03634527698159218, -0.06784059852361679, -0.027258342131972313, -0.011048627085983753, -0.03703297674655914, 0.007474874146282673, 0.025272082537412643, 0.001135015394538641, -0.08050679415464401, 0.04878807067871094, 0.029827866703271866, -0.007937135174870491, 0.05365647375583649, 0.0031373032834380865, 0.02783062681555748, -0.029100488871335983, -0.03329978138208389, -0.07109294831752777, 0.014282726682722569, 0.021479744464159012, -0.017539717257022858, -0.0003708151343744248, 0.031896911561489105, -0.005923185031861067, -0.022254789248108864, -0.061542436480522156, -0.025659997016191483, 0.030874459072947502, 0.008539265021681786, -0.038640912622213364, 0.00231373542919755, -0.05264833942055702, 0.03729390352964401, 0.029456190764904022, -0.025720058009028435, -0.0021297577768564224, -0.011944819241762161, 0.04476345330476761, -0.0021337131038308144, 0.03240404278039932, -0.02892310544848442, -0.07098110020160675, 0.04061313346028328, 0.033704135566949844, -0.010639606975018978, 0.055908530950546265, -0.01742243953049183, 0.005175838712602854, 0.017134491354227066, -0.017879126593470573, 0.004802826326340437, -0.022311825305223465, -0.03206229954957962, -0.07792086154222488, 0.017106028273701668, 0.008633050136268139, -0.025521932169795036, -0.04962383955717087, 0.05739515274763107, 0.010348149575293064, -0.04547496885061264, -0.06007310748100281, 0.03895261883735657, -0.03915265202522278, -0.03690212592482567, -0.00736146280542016, 0.014690680429339409, -0.049332622438669205, 0.03847208991646767, -0.0035749769303947687, 0.017980536445975304, 0.06808266043663025, -0.01675673946738243, -0.017130272462964058, 0.003280624747276306, 0.08984875679016113, 0.10874499380588531, 0.0407363586127758, 0.005785253830254078, 0.05467354878783226, -0.004922688938677311, -0.04887690395116806, -0.0037000335287302732, -0.030570823699235916, -0.029328051954507828, -0.010718746110796928, 0.020163152366876602, 0.08164563775062561, -0.05074852705001831, 0.05190508812665939, 0.009486480616033077, 0.025301186367869377, 0.009815141558647156, 0.04104068502783775, 0.038364607840776443, 0.03813350573182106, 0.029326608404517174, 0.010023774579167366, 0.011479539796710014, -0.03341727331280708, 0.021610641852021217, -0.003454702440649271, 0.00022104095842223614, 0.017243366688489914, -0.020544610917568207, 0.012586071155965328, 0.007531324867159128, 0.030758075416088104, 0.06991104036569595, -0.015108439140021801, 0.02349063940346241, 0.010558854788541794, 0.03536083176732063, -0.0053670527413487434, 0.02056504227221012, -0.013115460984408855, 0.008474773727357388, 0.0037354708183556795, -0.02608279511332512, -0.030308211222290993, -0.032324180006980896, -0.004999021999537945, 0.03893991932272911, -0.01691589318215847, -0.009406953118741512, -0.00866286363452673, 0.0058828676119446754, -0.011171233840286732, -0.04695597290992737, -0.07096736878156662, -0.03587551787495613, -0.03512865677475929, -0.036195360124111176, 0.022854596376419067, -0.009632608853280544, -0.01947616972029209, -0.004673848859965801, -0.02764495275914669, -0.03867553919553757, 0.03360842913389206, -0.03022719919681549, -0.005137994419783354, 0.007384349592030048, 0.021235810592770576, 0.015937309712171555, 0.021621666848659515, 0.07164569199085236, 0.010948066599667072, -0.0002577101404312998, -0.023076452314853668, -0.00969303585588932, 0.04102262109518051, -0.01921870745718479, -0.02180352620780468, -0.08377458155155182, 0.029611434787511826, 0.058500245213508606, 0.02781018242239952, -0.052069250494241714, 0.02429044432938099, 0.008365483023226261, 0.014718400314450264, 0.02897624671459198, -0.054055068641901016, 0.011461985297501087, -0.014462151564657688, -0.025249002501368523, -0.021496284753084183, -0.020594341680407524, 0.031229404732584953, 0.010101201012730598, 0.08167704939842224, 0.05447196587920189, -0.010760617442429066, -0.0273294635117054, -0.0047210571356117725, 0.001267957966774702, 0.012503715232014656, -0.03135093301534653, -0.025506719946861267, -0.0329262912273407, -0.08774340897798538, -0.035029150545597076, 0.007512988522648811, -0.004138008691370487, -0.03132059425115585, 0.027941953390836716, -0.018898330628871918, -0.05751930922269821, 0.00302033475600183, -0.032139841467142105, -0.010019810870289803, -0.03960404172539711, -0.028678197413682938, -0.008481272496283054, 0.02952905371785164, -0.01599053665995598, 0.00002083098479488399, 0.030206458643078804, -0.032806262373924255, 0.004812801722437143, 0.024593455716967583, 0.028822407126426697, 0.06088637560606003, -0.004007052164524794, 0.02547975443303585 ]
[ -0.07875829190015793, -0.034514982253313065, -0.03956231474876404, -0.03856545314192772, 0.044440530240535736, -0.0453549399971962, -0.003168931696563959, 0.015139801427721977, -0.03733714297413826, -0.01512166764587164, 0.009821725077927113, -0.015859847888350487, 0.033177077770233154, -0.04795437678694725, 0.09488213807344437, 0.022434396669268608, -0.0352778360247612, -0.04418312758207321, -0.012516467832028866, 0.06130623072385788, -0.018835602328181267, -0.05270986631512642, -0.0336318165063858, -0.06856288015842438, -0.012787587009370327, 0.03054588846862316, 0.0316806323826313, -0.01982649229466915, -0.02149108797311783, -0.167796790599823, 0.03599607199430466, -0.0360737182199955, -0.028118517249822617, -0.0206223763525486, 0.027239864692091942, 0.008442889899015427, 0.04514426365494728, -0.03255447372794151, -0.005194386932998896, 0.045757465064525604, 0.03607293590903282, -0.004098881036043167, -0.07010449469089508, 0.004639596212655306, 0.024100063368678093, 0.005665424279868603, 0.029795046895742416, -0.018578937277197838, 0.018072864040732384, -0.02096838876605034, -0.05143292248249054, 0.029437696561217308, 0.0065874676220119, 0.0065323421731591225, -0.00979435071349144, -0.03806808218359947, 0.058224234730005264, 0.060048867017030716, -0.008593074977397919, 0.014039228670299053, 0.0015741544775664806, 0.010583130642771721, -0.1398986279964447, 0.08718930184841156, 0.06734206527471542, 0.031570617109537125, -0.025742104277014732, -0.01620190404355526, -0.010480987839400768, 0.08675675839185715, 0.0035367205273360014, -0.0030183508060872555, -0.05626562610268593, 0.03947092592716217, -0.0010998670477420092, 0.0015213019214570522, -0.017962148413062096, 0.06289303302764893, 0.035086192190647125, -0.045654915273189545, -0.02900071255862713, -0.026707325130701065, -0.0351933091878891, 0.005480751395225525, -0.06685077399015427, 0.024221422150731087, -0.0065588741563260555, 0.05182395130395889, -0.009118865244090557, 0.03061445988714695, -0.011892811395227909, 0.002802535193040967, 0.04261203482747078, 0.01503426767885685, -0.07002336531877518, 0.005648407619446516, -0.007761404849588871, 0.010526261292397976, -0.049846675246953964, 0.40015456080436707, 0.014353589154779911, -0.006681618746370077, 0.019109731540083885, -0.0016617764485999942, 0.02685980126261711, 0.028663134202361107, 0.003915398847311735, -0.019823357462882996, 0.0018677585758268833, 0.0104900561273098, 0.025986794382333755, -0.01660306751728058, 0.05392448231577873, -0.04308987408876419, 0.03482538461685181, 0.007065531797707081, -0.004367961548268795, 0.024218546226620674, -0.0280412957072258, 0.025085793808102608, -0.02415386028587818, 0.026208817958831787, 0.03337906301021576, 0.025292901322245598, 0.016855284571647644, -0.028162555769085884, 0.034330662339925766, 0.03823182359337807, 0.01842627115547657, 0.05820131674408913, 0.04500662535429001, -0.05219144746661186, -0.0043481807224452496, 0.010186395607888699, 0.039265602827072144, 0.04174884408712387, 0.020541217178106308, -0.035764094442129135, -0.031176626682281494, -0.005730330012738705, -0.007357124704867601, -0.013758830726146698, 0.05278639495372772, -0.047382283955812454, -0.017003756016492844, 0.0767277181148529, 0.03736790642142296, -0.03456442430615425, -0.02969771809875965, -0.04414750635623932, 0.0022611592430621386, 0.020779909566044807, 0.008851890452206135, -0.07328037172555923, -0.01711030676960945, 0.02489856444299221, 0.07728604227304459, 0.04361642897129059, -0.049657948315143585, -0.0011134305968880653, -0.007834827527403831, -0.024295851588249207, -0.04294639825820923, 0.043162643909454346, 0.08396463841199875, -0.11925072968006134, -0.04142453894019127, 0.02350708656013012, 0.01404085848480463, -0.055567316710948944, -0.03411697596311569, -0.0074759675189852715, -0.02911318652331829, -0.04160184785723686, 0.013749762438237667, -0.05169519782066345, -0.015553608536720276, 0.006475347559899092, 0.008904973044991493, 0.014679630286991596, -0.04404836148023605, -0.0510714054107666, -0.027018938213586807, -0.032916560769081116, -0.051335133612155914, -0.08542763441801071, -0.06773693859577179, 0.029631899669766426, -0.04766397923231125, -0.0017487489385530353, -0.09095287322998047, -0.014524280093610287, -0.09053005278110504, 0.0644170418381691, 0.024662116542458534, -0.03509892523288727, 0.012324272654950619, 0.015976186841726303, -0.0010799949523061514, -0.04540170729160309, -0.0018611756386235356, 0.01199357770383358, -0.049101635813713074, 0.0234975665807724, -0.09266602993011475, 0.02255728282034397, 0.03343862667679787, -0.016143720597028732, 0.0499686636030674, 0.04664353281259537, -0.03600408881902695, 0.00014047807781025767, 0.012789645232260227, 0.016796130686998367, -0.00021487627236638218, -0.03155875951051712, -0.011127904057502747, 0.01655820570886135, 0.04680841416120529, 0.011244864203035831, 0.015956303104758263, 0.03209865838289261, -0.023587753996253014, -0.3456861972808838, -0.04061237350106239, -0.04529057443141937, 0.028573397547006607, 0.013466600328683853, -0.04028797522187233, 0.025767095386981964, -0.020382096990942955, -0.013071508146822453, 0.006284375209361315, 0.12659002840518951, -0.009777184575796127, 0.004775539506226778, -0.06122802197933197, -0.01790606789290905, 0.02682347595691681, -0.015822310000658035, -0.02280636876821518, -0.01334958802908659, 0.043207574635744095, -0.010037512518465519, -0.011911651119589806, -0.018590154126286507, -0.004246744327247143, 0.011123719625175, -0.020277239382267, 0.11403356492519379, 0.006257942412048578, 0.11638294905424118, -0.021828969940543175, 0.05331791192293167, 0.01037576049566269, 0.027575131505727768, -0.13207799196243286, -0.011098560877144337, 0.007714866194874048, 0.0182828176766634, 0.007307905238121748, 0.05035874992609024, 0.01131544541567564, -0.10882467031478882, 0.040757305920124054, -0.02957700379192829, -0.06540130823850632, 0.011808493174612522, -0.01833912916481495, -0.011924318969249725, -0.03249775245785713, -0.04675228148698807, 0.04748435318470001, 0.05485087260603905, -0.004421764984726906, -0.0235134344547987, -0.009535742923617363, 0.01948241889476776, -0.02480371482670307, -0.023425359278917313, -0.04910723865032196, 0.017135685309767723, 0.04363511875271797, -0.00844498910009861, 0.07643260806798935, -0.011781844310462475, -0.07060199230909348, 0.033621057868003845, -0.00888862181454897, -0.016514606773853302, 0.0672755241394043, 0.05629641190171242, -0.03245978802442551, -0.0018425507005304098, 0.12367237359285355, 0.03280148655176163, 0.05650218203663826, 0.004114509094506502, 0.025323379784822464, -0.01814497448503971, 0.027552694082260132, -0.006615045014768839, -0.011145385913550854, 0.04412062093615532, -0.03549937903881073, 0.05857841670513153, -0.04494317248463631, -0.012816944159567356, 0.044728025794029236, 0.002901141531765461, 0.008568938821554184, 0.06371915340423584, 0.02455957606434822, -0.04357452690601349, -0.0141143212094903, -0.012082114815711975, -0.08155159652233124, 0.029200291261076927, -0.007304573431611061, -0.25875386595726013, 0.040936682373285294, 0.028967643156647682, 0.051771994680166245, -0.007918066345155239, -0.014615795575082302, 0.07083234935998917, -0.040543656796216965, -0.012055044993758202, 0.03753528371453285, 0.029835626482963562, 0.05370162054896355, 0.00576727045699954, 0.02565954253077507, 0.006556884851306677, -0.015567973256111145, 0.018735090270638466, 0.008038063533604145, -0.0531473383307457, -0.02873007394373417, -0.015570507384836674, 0.001764147193171084, 0.14132806658744812, -0.005037425085902214, 0.038558412343263626, 0.057956013828516006, -0.0007919647032395005, 0.05355158820748329, 0.0446908064186573, 0.017544273287057877, 0.0041471198201179504, -0.017299193888902664, -0.024583494290709496, -0.036347296088933945, 0.04136087745428085, -0.046820346266031265, 0.0075955563224852085, 0.018585406243801117, 0.03668466955423355, -0.013408642262220383, -0.053547244518995285, 0.019388597458600998, 0.016355091705918312, 0.01896962709724903, 0.056586090475320816, -0.04395943135023117, 0.0077201202511787415, -0.03927714377641678, 0.027987582609057426, 0.0023366466630250216, -0.03835505619645119, -0.029221272096037865, 0.03407914564013481, 0.01730608381330967, 0.03491450473666191, 0.06484124064445496, 0.019565541297197342, -0.03571634367108345, -0.015309044159948826, 0.02124018408358097, 0.015200202353298664, -0.04807787388563156, 0.10687696933746338, -0.006737199611961842, 0.07576791197061539 ]
[ 0.0061180079355835915, 0.027428079396486282, -0.02565319463610649, -0.005022620782256126, 0.015575180761516094, 0.01411256194114685, -0.023186035454273224, -0.004916684702038765, -0.03165789321064949, -0.021632850170135498, -0.010240116156637669, 0.009554366581141949, 0.017579857259988785, -0.005369038786739111, 0.026553548872470856, -0.020445547997951508, 0.01857292279601097, -0.01198775228112936, 0.029474643990397453, -0.03521176800131798, -0.05070897191762924, 0.010310277342796326, 0.007815941236913204, -0.03261839598417282, -0.014135117642581463, -0.012599420733749866, -0.01423327624797821, 0.011959180235862732, 0.009477837011218071, -0.13705068826675415, -0.04120473563671112, -0.0016299798153340816, -0.07076966017484665, 0.052975110709667206, 0.013569892384111881, -0.030216675251722336, 0.030433470383286476, 0.05648455768823624, 0.001785145839676261, 0.03522122651338577, 0.061151184141635895, -0.03350003808736801, 0.01626121625304222, -0.018326887860894203, -0.009395652450621128, 0.035419952124357224, -0.04408489540219307, -0.047333672642707825, 0.031202802434563637, -0.004665965214371681, -0.04936952143907547, 0.029108460992574692, 0.031183885410428047, 0.05831841751933098, 0.06639542430639267, -0.046381693333387375, 0.01259236503392458, 0.01824299804866314, -0.008153198286890984, -0.012438627891242504, -0.000007613319667143514, 0.013696116395294666, -0.04538988322019577, -0.025562480092048645, -0.00657871225848794, -0.044060204178094864, -0.025358116254210472, -0.0008846728596836329, -0.020615139976143837, 0.024539588019251823, -0.01525890827178955, 0.01638742908835411, -0.03497955948114395, -0.015806298702955246, -0.05163850635290146, -0.03151251748204231, 0.04472852125763893, 0.018385495990514755, 0.005827659275382757, 0.001109981327317655, -0.003283344442024827, -0.013306191191077232, -0.032100021839141846, 0.034340158104896545, -0.005799687933176756, 0.042126383632421494, -0.005355624947696924, 0.0037241261452436447, 0.04008452221751213, 0.0008149133645929396, 0.013701681979000568, -0.003010554239153862, -0.005063943564891815, 0.002111647045239806, -0.0858738124370575, -0.019542355090379715, -0.026656346395611763, -0.016527216881513596, -0.026807492598891258, 0.8044343590736389, -0.026822850108146667, -0.01235449779778719, 0.04651517793536186, 0.005953936837613583, -0.005411012563854456, -0.004059598781168461, 0.04066510871052742, -0.010457852855324745, 0.0332719050347805, -0.00911000557243824, 0.014104613102972507, 0.011305653490126133, 0.00905488058924675, 0.022553985938429832, -0.0072770374827086926, 0.024819834157824516, 0.01871720887720585, -0.02746066078543663, 0.009888475760817528, -0.003543433267623186, 0.03295070677995682, 0.0408201664686203, 0.019845038652420044, 0.07282009720802307, -0.0127694271504879, -0.12878568470478058, 0.02096664160490036, -8.118734670262475e-33, 0.0531531386077404, -0.029743105173110962, -0.026970671489834785, -0.008466077037155628, 0.0461822934448719, -0.02429487183690071, 0.02181311883032322, 0.03602001070976257, -0.015739893540740013, -0.0014976148959249258, -0.034225944429636, -0.010545632801949978, 0.0032854778692126274, -0.03623201325535774, 0.023025743663311005, -0.043939583003520966, -0.017296278849244118, 0.03566623479127884, 0.021309027448296547, 0.014817241579294205, 0.010997122153639793, 0.013225466944277287, 0.003065702738240361, 0.014686206355690956, 0.021106669679284096, 0.0028085585217922926, -0.008842444978654385, -0.03665102273225784, -0.0009610610431991518, -0.02986355684697628, 0.012579220347106457, 0.033825427293777466, -0.0015343892155215144, -0.029570117592811584, -0.011839129962027073, -0.049113985151052475, 0.010290871374309063, -0.020746951922774315, 0.002115848707035184, -0.03654705360531807, -0.004023038316518068, -0.013570677489042282, -0.011311141774058342, 0.009528882801532745, -0.03525504097342491, -0.06066447123885155, 0.02189362607896328, 0.023049285635352135, 0.02366623468697071, 0.004353782162070274, 0.03153363615274429, -0.028400085866451263, 0.013350381515920162, -0.003967548254877329, -0.012571620754897594, 0.03897705301642418, -0.006378540303558111, 0.030367998406291008, 0.026373425498604774, 0.06198149174451828, -0.011274626478552818, -0.018062649294734, -0.03211848437786102, 0.020515628159046173, 0.018666133284568787, 0.0017796193715184927, -0.004942017141729593, 0.044906701892614365, -0.0031486465595662594, 0.00603772746399045, -0.05615733936429024, -0.055520158261060715, 0.00014906006981618702, -0.0009585500811226666, 0.026781560853123665, -0.004116621799767017, -0.015518808737397194, 0.03559860959649086, 0.06302259117364883, 0.023170560598373413, 0.04238661006093025, 0.010680465959012508, -0.046230215579271317, 0.007539925631135702, -0.026301026344299316, 0.03572520241141319, 0.0074432180263102055, -0.040633197873830795, -0.03276979550719261, 0.004498847294598818, 0.003281574696302414, 0.006442295853048563, 0.029148556292057037, -0.003614181885495782, -0.03349856287240982, 7.261226235017002e-33, -0.019907325506210327, -0.02916448935866356, -0.041247062385082245, -0.03223394230008125, 0.012043114751577377, -0.008541831746697426, 0.056884367018938065, -0.017711499705910683, -0.030295617878437042, 0.029118286445736885, -0.019183427095413208, 0.016888076439499855, -0.005525519140064716, 0.0005232911207713187, 0.06381288170814514, -0.04590359702706337, 0.0010482522193342447, 0.026814814656972885, 0.03189587593078613, -0.027614807710051537, 0.04267792031168938, -0.008593983948230743, -0.0015656135510653257, 0.011691344901919365, 0.009562217630445957, 0.05499732494354248, 0.024227654561400414, 0.039623551070690155, -0.0008907598094083369, -0.003008631058037281, 0.010157695040106773, -0.014233825728297234, -0.0067173875868320465, 0.006261651404201984, -0.003363054245710373, 0.04740012064576149, 0.02352638728916645, 0.009692195802927017, 0.021157464012503624, -0.022452030330896378, 0.045040491968393326, 0.017501723021268845, -0.026484059169888496, 0.01982840523123741, 0.014937466010451317, 0.03451808542013168, -0.014572681859135628, -0.026083432137966156, -0.0037278193049132824, 0.02202870510518551, -0.03295084461569786, -0.003856909926980734, 0.019264286383986473, 0.003946525044739246, -0.04009271785616875, -0.01866862177848816, -0.03510544076561928, -0.0002521150163374841, 0.005453987512737513, 0.014696960337460041, 0.029347609728574753, -0.011284456588327885, -0.05712118372321129, 0.04204731062054634, -0.02563108503818512, -0.01613449491560459, -0.027869906276464462, -0.03115670382976532, 0.01964333839714527, -0.03812188655138016, -0.019937047734856606, 0.031670164316892624, -0.0021903812885284424, 0.02337675169110298, -0.026748884469270706, -0.05407273769378662, 0.02028963342308998, -0.00027140756719745696, -0.013801234774291515, 0.057486966252326965, -0.009240316227078438, 0.05140874534845352, -0.056114159524440765, -0.0032122849952429533, 0.005305200349539518, 0.017339132726192474, -0.028485175222158432, 0.041816744953393936, 0.03670564666390419, -0.052470430731773376, -0.03481799736618996, -0.02974741905927658, -0.03753991797566414, 0.031076835468411446, -0.012856500223279, -1.2772050084208786e-8, 0.024673080071806908, -0.00959964469075203, 0.0432860367000103, 0.02481626532971859, 0.0005726240924559534, 0.03015793114900589, -0.03501477092504501, -0.031351666897535324, -0.030867021530866623, -0.012155359610915184, 0.008516713976860046, 0.01026388444006443, 0.021397480741143227, 0.027360258623957634, 0.002254654886201024, -0.02837672270834446, 0.0005088698817417026, -0.030977681279182434, 0.03264990821480751, 0.025816887617111206, 0.0691605806350708, 0.010841062292456627, -0.003535798517987132, 0.03410292789340019, -0.059315651655197144, 0.028818504884839058, -0.015355844050645828, -0.0972910150885582, -0.049664292484521866, 0.001766870147548616, -0.02393396571278572, -0.010367077775299549, -0.013469555415213108, 0.04986684024333954, -0.04125364497303963, -0.03222436085343361, -0.011948839761316776, -0.008473146706819534, 0.0016452508280053735, 0.013355934992432594, -0.018765004351735115, 0.0077875880524516106, -0.0290763471275568, -0.032869771122932434, -0.023334406316280365, -0.035409215837717056, -0.02832750789821148, 0.006205443292856216, 0.013899866491556168, -0.03544594347476959, 0.06704308837652206, 0.0027857620734721422, 0.024868514388799667, 0.01289598923176527, 0.024795424193143845, -0.0161031074821949, -0.033248402178287506, -0.072166807949543, 0.0038399039767682552, 0.012594575993716717, 0.046941325068473816, 0.028641661629080772, -0.018788110464811325, -0.00445774057880044 ]
sshing-onto-machines-via-a-jumpbox
https://markhneedham.com/blog/2012/08/10/sshing-onto-machines-via-a-jumpbox
false
2012-08-31 21:18:19
Book Review: The Retrospective Handbook - Pat Kua
[ "retrospective", "books", "book-review" ]
[ "Books" ]
My colleague http://twitter.com/patkua[Pat Kua] recently published a book he's been working on for the first half of the year titled 'http://leanpub.com/the-retrospective-handbook[The Retrospective Handbook]' - a book in which Pat shares his experiences with retrospectives and gives advice to budding facilitators. I was intrigued what the book would be like because the skill gap between Pat and me with respect to facilitating retrospectives is huge and I've often found that experts in a subject can have a tendency to be a bit preachy when writing about their subject! In actual fact *Pat has done a great job making the topic accessible to all skill levels* and several times covers typical problems with retrospectives before describing possible solutions. These were some of the things that I took away: * One of the most interesting parts of the book was a section titled 'Be Aware of Cultural Dimensions' where Pat covers some of the different challenges we have when people from different cultures work together. I found the *power distance index* (PDI) especially interesting: + ____ The extent to which the less powerful members of organisations and institutions accept and expect that power is distributed unequally ____ + If you come from a culture with a low PDI you're more likely to challenge something someone else said regardless of their role but if you're from a culture with a high PDI you probably won't say anything. The US/UK tend to have low PDI whereas India has a high PDI - something I found fascinating when participating in retrospectives in India in 2010/2011. I think the facilitator needs to be aware of this otherwise they might make someone very uncomfortable by pushing them too hard to share their opinion. * A theme across the book is that *retrospectives aren't about the facilitator* - the facilitator's role is to help guide the team through the process and keep things moving, they shouldn't be the focal point. In my opinion if a facilitator is doing that well then they'd be almost invisible much like a football referee when they're having a good game! * The 'First-Time Facilitation Tips' chapter is particularly worth reading and reminded me that part of the facilitator's role is to *encourage equal participation from the group*: + ____ A common, shared picture is only possible if all participants give their input freely and share their view of the story. This is difficult if one or two people are allowed to dominate discussions. Part of your role as a facilitator is to use whatever techniques you can to ensure a balanced conversation occurs. ____ + I think this is much easier for an external facilitator to do as they won't have the burden of inter team politics/hierarchy to deal with. Pat goes on to suggests splitting the group up into smaller groups as one technique to get people involved, an approach I've found works and from my experience this works really well and gets around the problem that many people aren't comfortable discussing things in big groups. * There's *nothing more boring than doing the same retrospective week after week*, nor is there a quicker way to completely put people off them, so I was pleased to see that Pat dedicated a chapter to keeping retrospectives fresh. He suggests a variety of different techniques including bringing food or running the retrospective in a different location to normal to keep it interesting. I've heard of colleagues in Brazil doing their retrospectives outside which is another angle on this theme! * Another good tip is that *when creating actions we don't need to spend time getting someone to sign up for them right there and then* - an alternative is to encourage people to walk the wall and pick ones they feel they can take care of. I think this book compliments Esther Derby/Diana Larsen's 'http://www.amazon.co.uk/Agile-Retrospectives-Making-Pragmatic-Programmers/dp/0977616649/ref=sr_1_1?ie=UTF8&qid=1346394439&sr=8-1[Agile Retrospectives]' really well. I find their book really useful for finding exercises to use in retrospectives to keep it interesting whereas Pat's book is more about the challenges you're likely to face during the retrospective itself. There's lots of other useful tips and tricks in the book - these are just a few of the ones that stood out for me - it's well worth a read if you're a participant/facilitator in retrospectives on your team.
null
null
[ 0.01083130668848753, -0.0060672336257994175, -0.005895613692700863, 0.0216232780367136, 0.06449093669652939, 0.006621545180678368, 0.005247265100479126, 0.03068709932267666, 0.025357602164149284, -0.020433617755770683, -0.0010359217412769794, 0.0038442781660705805, -0.03494197502732277, 0.029693182557821274, -0.021463824436068535, 0.0793166533112526, 0.050332073122262955, 0.0060018631629645824, -0.00020528410095721483, 0.01653027907013893, 0.04573849216103554, 0.07341920584440231, 0.055372148752212524, 0.04408271983265877, 0.038151033222675323, 0.006960159167647362, 0.030763473361730576, -0.027881883084774017, -0.04814162105321884, -0.021003881469368935, 0.022515464574098587, -0.00662820041179657, 0.008267623372375965, 0.01136157475411892, 0.019281800836324692, -0.020402153953909874, -0.007183535490185022, 0.035554222762584686, 0.01840904913842678, 0.003960173577070236, -0.0746467262506485, 0.029598865658044815, -0.022434348240494728, 0.010129635222256184, -0.044222839176654816, 0.031430669128894806, -0.04028306528925896, 0.018866604194045067, 0.014095977880060673, 0.009519070386886597, -0.060995668172836304, 0.03255730867385864, 0.03039337694644928, -0.004658545833081007, -0.020406147465109825, 0.03161942958831787, -0.009400647133588791, -0.05086306110024452, -0.004822191782295704, -0.049690473824739456, -0.012535878457129002, -0.007920842617750168, 0.004945407621562481, 0.025099586695432663, 0.028822582215070724, -0.038402169942855835, 0.004472862929105759, 0.03740035369992256, -0.03225407749414444, 0.013396714814007282, -0.032554663717746735, 0.014824126847088337, 0.007190526928752661, 0.006218943744897842, 0.005064430646598339, -0.053572725504636765, 0.010421011596918106, 0.07561714202165604, 0.028968561440706253, 0.044225163757801056, -0.013184914365410805, 0.00027125811902806163, -0.015246531926095486, 0.014983474276959896, -0.023888932541012764, -0.04964568838477135, -0.0038360049948096275, -0.03300057351589203, -0.06347857415676117, 0.060691431164741516, -0.011913767084479332, -0.04897620901465416, 0.020244255661964417, 0.036788489669561386, 0.0033512862864881754, 0.006945902947336435, 0.054062917828559875, -0.016887344419956207, -0.007610071916133165, -0.032897986471652985, -0.005224134773015976, -0.033004943281412125, -0.006179414223879576, 0.02952735684812069, -0.07385699450969696, -0.02154570445418358, -0.003320142161101103, 0.000027960471925325692, -0.015317082405090332, 0.0006407595938071609, -0.03834694251418114, 0.025362569838762283, -0.011611025780439377, 0.004102757200598717, -0.06084336340427399, 0.06945157796144485, 0.018507342785596848, -0.04841281473636627, -0.00971969123929739, 0.0012726669665426016, 0.027772419154644012, 0.0370299369096756, 0.01912660337984562, 0.07385656982660294, -0.000275929894996807, 0.006489302031695843, -0.026241473853588104, 0.05423913896083832, -0.033621370792388916, -0.046905722469091415, -0.013705331832170486, 0.033507782965898514, -0.04837531968951225, -0.005272257141768932, -0.0013542122906073928, -0.03784620761871338, 0.0232987143099308, -0.002952040871605277, 0.03695249184966087, 0.054380305111408234, 0.015620381571352482, -0.024288902059197426, 0.009656126610934734, 0.03138994053006172, 0.015090207569301128, -0.016735732555389404, -0.011049202643334866, -0.026484709233045578, -0.031692441552877426, -0.03200260177254677, 0.01542932353913784, 0.018458735197782516, 0.03546961024403572, -0.05411451682448387, -0.0032001237850636244, 0.07353313267230988, 0.06306467950344086, 0.006048006936907768, -0.01757524535059929, 0.039780281484127045, 0.03478706628084183, 0.0290216077119112, 0.022236820310354233, 0.034619905054569244, 0.0006545865326188505, -0.011029277928173542, 0.0014104866422712803, 0.03835001587867737, 0.00008338306361110881, 0.013819911517202854, -0.05558169633150101, -0.04590875655412674, 0.027750106528401375, -0.040388450026512146, -0.024559302255511284, 0.06159666180610657, 0.05872071161866188, 0.05248706415295601, 0.02356388419866562, 0.00595374358817935, -0.08749988675117493, 0.043084725737571716, 0.02395838126540184, 0.02857065014541149, 0.03225085511803627, -0.025552965700626373, 0.0669064149260521, 0.027203375473618507, 0.0171144288033247, 0.07444397360086441, -0.060689374804496765, -0.07841094583272934, 0.0013477314496412873, -0.019979944452643394, 0.03287189081311226, -0.03979848697781563, 0.0244912076741457, 0.09355489164590836, 0.00032343974453397095, 0.061568841338157654, 0.017475750297307968, 0.0023690920788794756, -0.0039611756801605225, -0.030653631314635277, -0.03845074400305748, 0.07820688188076019, 0.030880821868777275, 0.02763380855321884, -0.0313241183757782, 0.013431519269943237, -0.002743900753557682, -0.008452738635241985, 0.03634225204586983, -0.0009312196052633226, 0.014814463444054127, 0.006956046912819147, 0.04342512786388397, -0.012305529788136482, 0.043285176157951355, -0.033766355365514755, 0.023748578503727913, 0.015819687396287918, 0.00037804723251610994, 0.02774531953036785, -0.014182236976921558, 0.10599315911531448, 0.0714457556605339, -0.04941334202885628, -0.02998741902410984, 0.02006261982023716, 0.021821843460202217, -0.026053471490740776, -0.0007355490233749151, -0.000347468740073964, 0.024601126089692116, 0.006948188412934542, -0.06558987498283386, -0.03452176973223686, 0.0353989414870739, -0.039765164256095886, -0.025380030274391174, 0.04791440814733505, 0.004765448160469532, 0.07044022530317307, -0.01038674172013998, 0.005202758591622114, -0.03007647953927517, 0.009329233318567276, -0.041158728301525116, 0.019647283479571342, -0.001264651189558208, -0.004974510986357927, 0.04317386448383331, 0.0021906753536313772, -0.02548997662961483, -0.034793462604284286, -0.05830192193388939, 0.027886100113391876, 0.07815525680780411, 0.04999473690986633, -0.016212275251746178, 0.05754673853516579, -0.018653608858585358, 0.028077108785510063, 0.009744567796587944, -0.0356527604162693, -0.02355198748409748, -0.03510633111000061, 0.0003880038275383413, -0.0022819815203547478, 0.01912943460047245, 0.01675919070839882, 0.01238364540040493, 0.00819158274680376, -0.011840342544019222, 0.008860891684889793, 0.007009781897068024, 0.003995838109403849, -0.00006820068665547296, -0.03468119725584984, -0.021653657779097557, 0.058901574462652206, -0.025284266099333763, -0.02368835173547268, 0.01301642321050167, -0.09853017330169678, 0.01961449347436428, -0.06316836923360825, -0.03049905225634575, -0.004131493624299765, 0.003910370636731386, 0.025125807151198387, 0.023453781381249428, 0.009684554301202297, 0.05575534701347351, 0.010178706608712673, 0.006496382877230644, 0.013348993845283985, -0.012367406859993935, 0.035767633467912674, 0.001434986712411046, -0.013583553023636341, 0.067794069647789, 0.004726891405880451, -0.004698554053902626, -0.0463293232023716, 0.0376439094543457, -0.04987131059169769, -0.30158036947250366, 0.03841212019324303, 0.014204206876456738, -0.035913847386837006, 0.0231799203902483, -0.029710127040743828, 0.022742129862308502, -0.06368426978588104, -0.03481755778193474, 0.010051869787275791, -0.0380861721932888, -0.022660639137029648, -0.012909078039228916, 0.056560587137937546, -0.009868658147752285, 0.03793039917945862, 0.02451125532388687, -0.03143380954861641, -0.01372065395116806, 0.06874174624681473, -0.033338092267513275, -0.06195449456572533, -0.016937578096985817, 0.040394969284534454, 0.033204227685928345, 0.062451187521219254, -0.06553830206394196, 0.03390490636229515, -0.06379831582307816, -0.004398898221552372, 0.00039365579141303897, 0.00834802445024252, 0.014459442347288132, -0.01868908666074276, -0.018260003998875618, -0.027392450720071793, 0.04089860990643501, 0.017844846472144127, -0.016576405614614487, -0.015002136118710041, -0.019407225772738457, -0.03214266896247864, 0.002789270132780075, 0.02075604349374771, 0.07321079075336456, 0.027385780587792397, -0.07871388643980026, -0.015282590873539448, -0.02810901775956154, 0.07356183975934982, -0.03669531270861626, -0.045314617455005646, -0.025534994900226593, 0.013981083407998085, -0.0170881524682045, -0.012658222578465939, -0.009644719772040844, -0.04929671809077263, -0.04447044059634209, -0.03436772897839546, -0.02866748906672001, -0.02675805240869522, -0.0031730281189084053, -0.03762023150920868, -0.044812943786382675, -0.0579625740647316, -0.07535454630851746, -0.01964651793241501, 0.06547587364912033, -0.021350175142288208, -0.050223011523485184, 0.005527101922780275, -0.01715116761624813, -0.09302385151386261, -0.027213700115680695, -0.011438233777880669, -0.019275087863206863, 0.006327101960778236, 0.014877024106681347, 0.05192606896162033, -0.0341188907623291, -0.05638837441802025, 0.006642473861575127, 0.035315338522195816, 0.034953560680150986, -0.002855789614841342, 0.054320309311151505, 0.033874381333589554, -0.02878958359360695, 0.008266430348157883, 0.0563536174595356, 0.013997708447277546, -0.03778580203652382, -0.012122653424739838, 0.022332174703478813, 0.009088197723031044, 0.018282989040017128, 0.006573117803782225, 0.010666932910680771, 0.0067974235862493515, 0.002073907293379307, -0.05038861557841301, 0.004471872933208942, -0.024559080600738525, -0.0036519584245979786, -0.006210895720869303, -0.0557069294154644, 0.0172130074352026, 0.029216205701231956, -0.0035965521819889545, 0.018669746816158295, -0.02575954981148243, 0.019628267735242844, -0.029570220038294792, -0.010050180368125439, -0.028114788234233856, 0.003537865122780204, 0.060963451862335205, 0.005235555116087198, 0.002384771592915058, -0.05878986790776253, 0.004213409498333931, -0.03957110643386841, -0.03245341777801514, -0.0636289119720459, -0.021410593762993813, -0.028047626838088036, -0.02563122846186161, 0.00061796949012205, 0.03084978088736534, -0.0195449385792017, -0.0032712651882320642, 0.05607108399271965, -0.02323724515736103, 0.03643668070435524, -0.04322071373462677, -0.06986993551254272, -0.03801727294921875, -0.0053425924852490425, 0.011438216082751751, -0.001742093707434833, 0.011041811667382717, -0.02579953894019127, 0.0115921376273036, 0.044546663761138916, 0.01816263422369957, -0.01636083610355854, -0.009317469783127308, 0.01788342371582985, 0.010253941640257835, 0.02149057947099209, -0.06152746453881264, 0.021316377446055412, -0.03651304915547371, -0.01581849716603756, 0.006637873128056526, 0.03961221128702164, -0.020202571526169777, -0.0194254033267498, -0.010458383709192276, 0.0022373266983777285, -0.04890374466776848, -0.033480651676654816, -0.0482562817633152, 0.04211883246898651, 0.05366918072104454, -0.013575146906077862, 0.02048821747303009, 0.005907498300075531, 0.0003137007006444037, 0.03540688008069992, -0.002066058572381735, -0.049244027584791183, -0.011143499054014683, 0.011115859262645245, 0.010319169610738754, -0.0010956580517813563, 0.021159205585718155, 0.04520128294825554, -0.0019276977982372046, -0.007784657180309296, -0.035285890102386475, 0.008457687683403492, 0.012871929444372654, 0.04183921217918396, 0.031035205349326134, 0.0016148301074281335, -0.01591501384973526, -0.036694277077913284, -0.017662154510617256, -0.025916514918208122, -0.023656513541936874, -0.010559754446148872, 0.020962445065379143, -0.02406703680753708, -0.08098550885915756, 0.07001487165689468, -0.0015851830830797553, 0.0026206178590655327, 0.01683923415839672, 0.014177185483276844, 0.0008320768247358501, -0.026099903509020805, 0.03321613743901253, 0.03780044987797737, -0.07401388138532639, -0.016688687726855278, -0.018573611974716187, -0.023426612839102745, 0.009436867199838161, -0.004553556442260742, -0.0286407507956028, -0.020057829096913338, -0.030320780351758003, 0.007330246735364199, -0.08847902715206146, -0.007893674075603485, -0.04274382442235947, 0.04490068927407265, 0.01808648556470871, 0.015257032588124275, -0.055476851761341095, -0.04166288673877716, -0.017866509035229683, -0.03791890665888786, 0.04144136980175972, -0.03521771356463432, 0.007603057660162449, 0.0016027209348976612, -0.05250592157244682, 0.00038812117418274283, -0.04121791198849678, 0.020548390224575996, 0.01704750396311283, -0.03959472477436066, 0.022349098697304726, -0.03079528734087944, -0.00398128991946578, 0.002953127259388566, 0.05567556992173195, -0.02991694025695324, -0.033638108521699905, -0.031148314476013184, -0.0151559142395854, -0.057487908750772476, 0.0017179824644699693, -0.016929471865296364, 0.003775479504838586, 0.021525632590055466, 0.061575181782245636, 0.021797381341457367, 0.028127197176218033, -0.02901306003332138, -0.036260515451431274, 0.05502546951174736, -0.04513807222247124, -0.0300216656178236, -0.040438491851091385, -0.035620640963315964, 0.011545049026608467, -0.010503966361284256, -0.00041754584526643157, -0.00836651585996151, 0.040553607046604156, 0.022326724603772163, 0.01772860810160637, 0.04090723395347595, 0.009947032667696476, 0.013735184445977211, -0.047888386994600296, -0.025449195876717567, -0.09043436497449875, 0.004334119614213705, 0.014716916717588902, 0.007638651877641678, -0.025631926953792572, 0.0189451202750206, -0.026044653728604317, 0.055559784173965454, -0.09331551194190979, -0.0016518591437488794, 0.029506109654903412, -0.02243051491677761, -0.002978882985189557, 0.035340066999197006, -0.07925456017255783, 0.019427195191383362, 0.008833803236484528, -0.041014742106199265, -0.021508250385522842, -0.034718066453933716, 0.058514393866062164, -0.004373787436634302, 0.028541401028633118, -0.0377812460064888, 0.007211504969745874, 0.0701519101858139, 0.028842533007264137, -0.02322458289563656, 0.0664750263094902, -0.0027823024429380894, 0.03890378400683403, 0.019385430961847305, 0.021092915907502174, 0.003292493987828493, 0.00825774110853672, -0.03466698154807091, -0.07429760694503784, 0.043851736932992935, -0.0004948211135342717, -0.03223433345556259, -0.022502146661281586, 0.0477929450571537, 0.0063380165956914425, -0.02639692649245262, -0.05366215109825134, 0.01058980356901884, -0.0528094656765461, -0.008321470580995083, -0.030092068016529083, 0.006015138700604439, -0.04451590031385422, 0.03606928139925003, 0.009121966548264027, 0.029668143019080162, 0.052275028079748154, -0.002962820464745164, -0.03028959408402443, -0.018000438809394836, 0.1036878228187561, 0.08134913444519043, 0.0789792537689209, 0.020765364170074463, 0.06968472898006439, 0.011579269543290138, -0.04654480144381523, 0.013588787987828255, 0.013879043981432915, -0.007634279318153858, -0.02245449274778366, 0.016211090609431267, 0.06687948107719421, -0.019619503989815712, 0.07422877103090286, -0.008350087329745293, -0.01746501959860325, -0.010797160677611828, 0.03264988586306572, 0.018940819427371025, 0.06080278754234314, 0.0027840458787977695, 0.030062448233366013, -0.013609794899821281, -0.061910469084978104, 0.03622880205512047, -0.023337386548519135, -0.007830130867660046, 0.01977616362273693, -0.016412362456321716, 0.026880918070673943, 0.02284102514386177, 0.019987422972917557, 0.06619732081890106, -0.0338594876229763, 0.03894111514091492, -0.008818889036774635, 0.012160373851656914, 0.005563828162848949, 0.017331475391983986, -0.01327500119805336, -0.008023608475923538, -0.00662339897826314, -0.028320444747805595, -0.002656353870406747, 0.01162782497704029, -0.034180425107479095, 0.01980040967464447, -0.03906000405550003, 0.03483021259307861, 0.04931141808629036, -0.009117872454226017, -0.04525250568985939, -0.04521502926945686, -0.030588602647185326, -0.028988758102059364, -0.044870588928461075, 0.007070448715239763, 0.021875876933336258, -0.01485086977481842, -0.03749880939722061, -0.02166023477911949, -0.005734642501920462, -0.03006250038743019, 0.04975542426109314, -0.05873337388038635, -0.035730041563510895, 0.0037213789764791727, 0.020419558510184288, 0.020926492288708687, 0.00916212983429432, 0.048295848071575165, 0.002556920051574707, 0.0029695765115320683, 0.001849610824137926, 0.03797002509236336, 0.04169298708438873, -0.014116233214735985, 0.005828483030200005, -0.10584669560194016, 0.007689347956329584, 0.03434084728360176, -0.031117970123887062, -0.07740578055381775, 0.018232394009828568, 0.024896426126360893, 0.013242741115391254, 0.028561975806951523, 0.018110673874616623, 0.011394833214581013, -0.03619633987545967, 0.011587637476623058, -0.019368967041373253, 0.015816163271665573, 0.04923757165670395, -0.012235014699399471, 0.0677400752902031, 0.03613511100411415, 0.005781339015811682, -0.0366441048681736, -0.019779544323682785, 0.0009558502351865172, -0.019116133451461792, -0.030599098652601242, -0.024584602564573288, -0.02084105834364891, -0.07302482426166534, -0.013011068105697632, 0.01730463281273842, -0.02992609515786171, -0.0393335185945034, 0.023164035752415657, 0.006043707486242056, 0.007608686573803425, 0.0062081110663712025, -0.03603381663560867, 0.03433305397629738, -0.006022767163813114, -0.010576712898910046, -0.007826877757906914, 0.024818427860736847, 0.002672677394002676, -0.021851545199751854, 0.024364588782191277, -0.05074073746800423, -0.001524162944406271, -0.015269547700881958, 0.0030624917708337307, 0.034282270818948746, 0.003166477894410491, -0.0293378047645092 ]
[ -0.08173239231109619, 0.04334339126944542, 0.00476255314424634, -0.01836538501083851, 0.030115395784378052, -0.011496225371956825, 0.024211140349507332, 0.024711865931749344, -0.01121167466044426, -0.0323551781475544, 0.00347500154748559, -0.022574303671717644, 0.0032260885927826166, 0.0038473294116556644, 0.06145048886537552, 0.010130343958735466, 0.008677549660205841, -0.08157681673765182, 0.00799093209207058, 0.015898266807198524, -0.006762068253010511, -0.04141610860824585, -0.020674530416727066, 0.011504799127578735, 0.01127407792955637, 0.010238935239613056, 0.023990686982870102, -0.04446450620889664, 0.00770757207646966, -0.19923175871372223, -0.0032128614839166403, 0.03180348873138428, 0.022490277886390686, -0.003738970262929797, -0.04691687226295471, 0.07240429520606995, 0.012680907733738422, 0.03228849172592163, 0.01970343105494976, 0.037784140557050705, 0.0014344623778015375, 0.02201232686638832, -0.017555605620145798, -0.023933034390211105, 0.03770876303315163, -0.007876413874328136, -0.011442283168435097, -0.04659997671842575, -0.03402859717607498, -0.012091058306396008, -0.0651802346110344, -0.029226070269942284, 0.0033622400369495153, 0.001927209203131497, -0.010788027197122574, 0.03167903795838356, 0.05838301032781601, 0.06174608692526817, 0.014610173180699348, 0.024116404354572296, 0.03269334137439728, 0.018351586535573006, -0.1512231081724167, 0.08940782397985458, 0.008351776748895645, 0.043096255511045456, -0.03577776253223419, 0.002607631264254451, -0.012615351937711239, 0.03765936940908432, -0.006267412565648556, -0.03268160670995712, 0.024144504219293594, -0.006200455129146576, 0.03343702852725983, 0.0130311269313097, 0.004669736139476299, 0.050701092928647995, 0.022548899054527283, -0.05380339175462723, 0.024043064564466476, 0.03291812166571617, -0.028725290670990944, -0.0459887757897377, -0.017741017043590546, 0.015435709618031979, 0.01276533491909504, 0.02432185225188732, -0.001946236821822822, 0.02741836942732334, 0.038141824305057526, 0.010866929776966572, 0.04001934081315994, -0.00924028642475605, -0.07552587985992432, -0.03332922235131264, -0.008808360435068607, 0.022737955674529076, -0.06467502564191818, 0.480736643075943, -0.004383554216474295, -0.011344936676323414, 0.08900583535432816, 0.05122710391879082, -0.03128761425614357, -0.0030717256013303995, 0.021613797172904015, -0.07530517131090164, 0.015107858926057816, 0.002834431594237685, 0.021272949874401093, 0.03298655524849892, 0.0438043512403965, -0.031405892223119736, 0.03407098725438118, 0.04337980970740318, 0.04846746474504471, 0.03047308512032032, -0.0042322613298892975, -0.03946824371814728, -0.023711739107966423, 0.009785407222807407, 0.006229437422007322, 0.0005819373182021081, -0.042542945593595505, -0.08468546718358994, 0.012263122946023941, 0.04426868259906769, 0.0537668839097023, -0.02402343973517418, 0.03872622549533844, -0.028808075934648514, -0.08400701731443405, -0.02754795365035534, -0.002724838675931096, -0.005526028573513031, 0.04342864081263542, -0.028983548283576965, 0.014867866411805153, 0.05174070969223976, 0.045816756784915924, -0.015238265506923199, -0.0025681292172521353, -0.0077309804037213326, -0.0679849311709404, 0.13153748214244843, 0.022714415565133095, -0.030940061435103416, -0.004090259317308664, -0.009799088351428509, 0.02151261270046234, 0.036684244871139526, -0.008866341784596443, -0.042997002601623535, 0.04665576294064522, 0.013743127696216106, 0.07162877917289734, -0.02133060432970524, -0.04688030481338501, -0.010195150040090084, -0.006467126775532961, -0.05508892610669136, -0.04143167659640312, 0.06945772469043732, 0.060897648334503174, -0.1111416146159172, -0.03875398263335228, -0.0018048168858513236, 0.006135707255452871, -0.06956757605075836, 0.001582617056556046, 0.0022484760265797377, -0.009222043678164482, 0.023354578763246536, 0.04510881379246712, -0.029778871685266495, -0.01896415278315544, 0.022190524265170097, 0.0313509963452816, 0.014433409087359905, 0.0328231118619442, 0.005834604613482952, -0.025424093008041382, 0.014276648871600628, -0.029926147311925888, -0.05268864333629608, -0.04469650983810425, -0.03198998421430588, -0.016431396827101707, 0.02568911574780941, -0.02816156856715679, 0.0013060353230684996, -0.09773445129394531, 0.09694573283195496, -0.03380800783634186, -0.005635355599224567, 0.002988587599247694, -0.03342077136039734, -0.02694704383611679, -0.01322676707059145, -0.10048135370016098, 0.015170279890298843, -0.05387751758098602, 0.031279630959033966, -0.035020459443330765, 0.04297609627246857, 0.04615858197212219, -0.033748362213373184, 0.09105363488197327, 0.043292831629514694, -0.012264158576726913, -0.04559880122542381, 0.022686488926410675, 0.01896221749484539, -0.019105777144432068, -0.007774637546390295, 0.006484723184257746, 0.025065187364816666, -0.004107129294425249, -0.0005570400389842689, 0.019630057737231255, 0.025214826688170433, -0.017452828586101532, -0.3357318937778473, -0.01028592698276043, -0.05284041538834572, 0.014718758873641491, 0.024085476994514465, -0.03592958301305771, 0.02207125537097454, -0.017390131950378418, 0.008802085183560848, 0.02525990456342697, 0.03931911662220955, 0.011963528580963612, 0.0056294649839401245, -0.03847823292016983, 0.018888384103775024, 0.02953321859240532, -0.030279187485575676, 0.013570288196206093, -0.03581586480140686, -0.007068151142448187, 0.034774962812662125, 0.027620280161499977, -0.03368391469120979, 0.00006682093953713775, -0.0034535436425358057, -0.0481095165014267, 0.06738734245300293, 0.008664648048579693, 0.02197684347629547, -0.03304359316825867, 0.008276400156319141, 0.03373273089528084, 0.009396013803780079, -0.11605793237686157, 0.007377385161817074, -0.01811109110713005, -0.0018551427638158202, -0.04273008927702904, 0.014038534834980965, -0.044938042759895325, -0.02085767313838005, 0.026078399270772934, -0.046326398849487305, -0.015375652350485325, -0.10761091858148575, 0.005225906148552895, -0.032016851007938385, -0.03959107771515846, -0.016115132719278336, 0.07630302757024765, -0.005290511064231396, -0.02821939066052437, 0.00782665703445673, 0.0037306214217096567, -0.03657252714037895, -0.03689943999052048, -0.10838614404201508, 0.020831793546676636, -0.01110348291695118, 0.006442398298531771, 0.009311478585004807, 0.06233251839876175, 0.03205706551671028, -0.05959469825029373, 0.009844813495874405, -0.011568119749426842, -0.010151332244277, 0.04597965627908707, 0.032411668449640274, 0.021079840138554573, -0.022326773032546043, 0.060860246419906616, -0.02056928351521492, -0.026004621759057045, 0.04813471809029579, 0.038553353399038315, -0.005117120686918497, 0.021304069086909294, 0.0005350382416509092, -0.00350185320712626, 0.04292752593755722, -0.008217177353799343, 0.010229566134512424, -0.021464699879288673, -0.008906621485948563, 0.011653396300971508, -0.001219443161971867, -0.05751931667327881, 0.08307485282421112, 0.03657131642103195, -0.02663622610270977, 0.030479565262794495, -0.034214261919260025, -0.01154881902039051, 0.03802895545959473, 0.025812296196818352, -0.26915866136550903, 0.009925042279064655, 0.06968824565410614, 0.034414391964673996, -0.005569084547460079, 0.020519793033599854, 0.004710575100034475, -0.06378969550132751, -0.009301375597715378, 0.022173479199409485, 0.056748706847429276, 0.0036229914985597134, -0.00845680758357048, 0.005753329023718834, -0.0019350360380485654, -0.007597445975989103, 0.027552152052521706, 0.004929769784212112, 0.02871103584766388, -0.015474305488169193, -0.007125831209123135, -0.022036828100681305, 0.13119617104530334, 0.010509119369089603, 0.030958522111177444, 0.005219320300966501, 0.005738791078329086, -0.023883571848273277, 0.014481906779110432, -0.0282270610332489, 0.03129086643457413, -0.030611693859100342, 0.03046518564224243, 0.018707795068621635, 0.008415917865931988, -0.07459134608507156, -0.026299355551600456, 0.03594445064663887, 0.002699503442272544, 0.010465266183018684, 0.01847558282315731, 0.011944768019020557, -0.01206185482442379, 0.03361031785607338, 0.07516280561685562, 0.008346655406057835, -0.004912873264402151, -0.03320133313536644, -0.06192759424448013, -0.02970697730779648, -0.028969252482056618, -0.029319334775209427, 0.005242528393864632, -0.011538617312908173, 0.018297897651791573, 0.05506770685315132, 0.03829105570912361, -0.05745012313127518, 0.012746320106089115, -0.006494321394711733, -0.01992550864815712, 0.008185829035937786, 0.07816197723150253, 0.04974120482802391, 0.03480991721153259 ]
[ -0.015304031781852245, -0.00266472389921546, -0.009183401241898537, 0.000595349760260433, -0.02419370412826538, 0.0060950033366680145, -0.033167965710163116, -0.01959124393761158, 0.007438374683260918, -0.021258698776364326, 0.0233865175396204, 0.03428742662072182, 0.011381389573216438, -0.02263796143233776, 0.04363368824124336, -0.03134622797369957, -0.005125353112816811, -0.02312972955405712, 0.04323279485106468, 0.00545008247718215, -0.009670284576714039, -0.020502034574747086, 0.02463723160326481, -0.018544888123869896, -0.038087524473667145, 0.001465124194510281, -0.003323327749967575, -0.0018208816181868315, 0.04323149472475052, -0.12041802704334259, -0.03448065370321274, 0.005177020560950041, -0.025102153420448303, 0.003564024344086647, -0.024674968793988228, 0.0270144771784544, -0.0019763284362852573, 0.035694386810064316, 0.0201046671718359, 0.01026033516973257, 0.03563327342271805, -0.06764598935842514, -0.0036475216038525105, 0.006338085513561964, 0.0037928710225969553, -0.01393152866512537, -0.005443234462291002, -0.02249470353126526, -0.00938354805111885, -0.044230442494153976, -0.021520672366023064, -0.03697854280471802, 0.004819832742214203, 0.017871832475066185, 0.024730056524276733, -0.01624780334532261, 0.04100099578499794, 0.00894786138087511, 0.01507271733134985, 0.0006154218572191894, -0.011574563570320606, -0.017201652750372887, -0.053103841841220856, -0.024124382063746452, 0.003291125176474452, -0.02323562651872635, -0.006964792497456074, -0.005939502734690905, -0.022901002317667007, -0.002310918178409338, -0.044143449515104294, 0.0122063672170043, 0.011098233982920647, -0.004152421373873949, 0.0046991221606731415, 0.015619292855262756, -0.04624238610267639, 0.01911696046590805, 0.007781654130667448, -0.01998152583837509, 0.007367928512394428, 0.022440211847424507, 0.02044871635735035, 0.02108141779899597, -0.008661028929054737, -0.03044329397380352, -0.009203147143125534, -0.026217643171548843, 0.003943297080695629, 0.03507287800312042, -0.01936047337949276, 0.04319284111261368, 0.0025786806363612413, -0.0073091634549200535, -0.09759338945150375, -0.012839931063354015, -0.008564755320549011, -0.035896096378564835, -0.01745205745100975, 0.8468775153160095, -0.014253482222557068, 0.051329534500837326, -0.005295225419104099, 0.023267487064003944, -0.03223113343119621, -0.00794579554349184, -0.040225252509117126, -0.004220843780785799, 0.0017371003050357103, 0.03759710490703583, 0.0027419833932071924, 0.0432179793715477, -0.015021508559584618, -0.003101418260484934, 0.03158837556838989, 0.02055305615067482, -0.006972993724048138, 0.0032382511999458075, 0.006543290801346302, 0.0024807925801724195, 0.0211799293756485, 0.006234657019376755, -0.0003353990032337606, -0.003016573144122958, 0.015465360134840012, -0.19182482361793518, 0.012552056461572647, -8.315747523460291e-33, 0.08198315650224686, 0.021473607048392296, -0.022675305604934692, -0.011808580718934536, -0.029869170859456062, -0.025902988389134407, 0.0285800751298666, 0.022346336394548416, -0.00683692516759038, -0.02355232648551464, 0.016094345599412918, 0.008940484374761581, 0.0009507499053142965, -0.048205044120550156, 0.016441192477941513, -0.01975438930094242, -0.015671506524086, 0.06296702474355698, -0.0025762091390788555, -0.013111252337694168, 0.050420310348272324, 0.012821088545024395, 0.01849302463233471, -0.006058915983885527, 0.03430504351854324, 0.0027995228301733732, -0.023554468527436256, 0.011741621419787407, -0.0064297751523554325, -0.053889479488134384, -0.017995942384004593, 0.015760719776153564, -0.004429483786225319, -0.040380705147981644, -0.000628924579359591, -0.05156099796295166, -0.0018320974195376039, -0.008637088350951672, -0.02735585719347, -0.016387082636356354, -0.02020070143043995, 0.018440427258610725, -0.017209764569997787, -0.02944347634911537, -0.012206967920064926, 0.012161285616457462, 0.036312516778707504, -0.043122850358486176, -0.005177739076316357, 0.016816895455121994, -0.0170596893876791, 0.009344280697405338, -0.014609409496188164, -0.010222064331173897, 0.011117878369987011, -0.008182157762348652, -0.0017768333200365305, -0.013889240100979805, -0.024959838017821312, -0.012044385075569153, 0.056159038096666336, -0.011215439066290855, -0.028015589341521263, 0.02225552126765251, -0.016572805121541023, -0.034004371613264084, -0.024098824709653854, -0.0023787913378328085, 0.02442205511033535, -0.014349483884871006, -0.043914247304201126, 0.009400144219398499, 0.011903919279575348, -0.011888614855706692, 0.021747073158621788, 0.000950146175455302, -0.011901860125362873, 0.02791176363825798, -0.01319102942943573, 0.007041644770652056, -0.021359242498874664, 0.0028157485648989677, -0.026258371770381927, -0.03128717467188835, 0.0006797843961976469, 0.015144278295338154, 0.05050952360033989, -0.02504725567996502, -0.038259074091911316, 0.015500509180128574, 0.023178404197096825, -0.0009417417459189892, -0.0012640099739655852, 0.0160573311150074, -0.020246805623173714, 7.934830783128236e-33, 0.023465165868401527, -0.020178960636258125, -0.007135828025639057, -0.026126118376851082, 0.07696282118558884, -0.02588476799428463, -0.005277867428958416, 0.010538035072386265, -0.041127145290374756, 0.037937115877866745, -0.013164097443223, -0.00869610346853733, -0.012773776426911354, 0.04320362210273743, 0.011748408898711205, -0.011404328048229218, 0.009905540384352207, -0.022285185754299164, 0.009318873286247253, 0.025186344981193542, 0.020477674901485443, 0.015194273553788662, 0.014828639104962349, 0.023371389135718346, 0.026332732290029526, 0.027884066104888916, -0.01032985933125019, 0.015782620757818222, -0.02907327190041542, 0.016574688255786896, 0.01586218737065792, -0.007611406501382589, 0.009194557555019855, 0.013448771089315414, -0.021692894399166107, 0.027491385117173195, -0.019673671573400497, -0.013291388750076294, -0.007513224147260189, 0.008695519529283047, 0.025460895150899887, 0.0020293141715228558, -0.012692672200500965, 0.02440182864665985, -0.0006571441190317273, -0.029989004135131836, -0.023034408688545227, -0.02804313786327839, -0.02191559597849846, -0.002028645481914282, 0.015459745191037655, 0.013751146383583546, 0.03054327517747879, 0.005094751249998808, 0.009281279519200325, -0.013180610723793507, 0.010232270695269108, -0.023988833650946617, 0.0007229422335512936, -0.020350901409983635, 0.015200305730104446, 0.000376499374397099, -0.030228784307837486, 0.006129385903477669, -0.015710987150669098, -0.0003183938388247043, 0.046226512640714645, 0.03767235577106476, 0.022708412259817123, 0.042191628366708755, -0.03065011277794838, 0.015069595538079739, -0.0022405649069696665, 0.0465255007147789, 0.03561440855264664, -0.009397508576512337, -0.004701339174062014, 0.007779188919812441, -0.005848762579262257, 0.007006323896348476, -0.011105796322226524, 0.003119743661954999, -0.0013067475520074368, -0.021024635061621666, -0.011928645893931389, 0.06093774363398552, 0.011441495269536972, 0.04492099583148956, 0.016080068424344063, 0.017709555104374886, 0.010134284384548664, -0.03702402114868164, -0.00028127789846621454, -0.003030423540621996, 0.02697826363146305, -1.3705053092394337e-8, -0.00972554087638855, 0.004950739908963442, -0.0327017642557621, 0.0121555021032691, 0.0013578713405877352, -0.03608123958110809, -0.014122202061116695, -0.03263077512383461, -0.00038020635838620365, 0.0012953041587024927, 0.02970719151198864, -0.008044601418077946, 0.04953498765826225, 0.0077201202511787415, 0.03586076572537422, -0.05165357142686844, -0.0041623483411967754, 0.04222676903009415, 0.02130112424492836, 0.0185775775462389, 0.009231364354491234, 0.04536893963813782, -0.024591485038399696, 0.004780124872922897, 0.026346426457166672, 0.021324006840586662, -0.017087403684854507, -0.07413055747747421, -0.028284847736358643, 0.03119015134871006, 0.027138203382492065, -0.011940369382500648, -0.03130830079317093, -0.004650577902793884, 0.010539280250668526, -0.004425286781042814, 0.056146711111068726, -0.03947421908378601, -0.014110933989286423, 0.012530755251646042, 0.009820336475968361, -0.02534358762204647, -0.05182391777634621, -0.020892085507512093, 0.008186900056898594, 0.030531931668519974, -0.041597869247198105, -0.006554572377353907, -0.0052358247339725494, -0.022986723110079765, 0.011439090594649315, -0.008369219489395618, 0.03177791088819504, 0.02152971550822258, 0.014602077193558216, 0.012040495872497559, -0.021644771099090576, 0.02224729210138321, -0.026098603382706642, -0.0012177415192127228, 0.03209035471081734, 0.02550491690635681, 0.00954470131546259, -0.026908155530691147 ]
book-review-the-retrospective-handbook-pat-kua
https://markhneedham.com/blog/2012/08/31/book-review-the-retrospective-handbook-pat-kua
false
2012-08-06 21:50:07
VCloud Guest Customization Script : [: postcustomization: unexpected operator
[ "shell-scripting-2" ]
[ "Shell Scripting" ]
We have been doing some work to automatically provision machines using the VCloud API via fog and one of the things we wanted to do was http://blogs.vmware.com/vsphere/2012/06/using-a-guest-customization-script-to-tell-when-vappvm-is-ready-in-vcloud-director.html[run a custom script the first time that a node powers on]. The following http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1026614[explains how customization scripts work]: ____ In vCloud Director, when setting a customization script in a virtual machine, the script: * Is called only on initial customization and force recustomization. * Is called with the precustomization command line parameter before out-of-box customization begins. * Is called with the postcustomization command line parameter after out-of-box customization finishes. * Needs to be a batch file for Windows virtual machines and a shell script for Unix virtual machines. ____ We wanted the script to run only when passed the 'postcustomization' flag because our script relied on some networking configuration which hadn't yet been done in the 'precustomization' state. We wrote something like the following script: [source,text] ---- #!/bin/bash if [ x$1 == x"postcustomization" ]; then echo post customization fi ---- Unfortunately when we provisioned the node it hadn't run any of the code within the if block and we saw the following message in +++<cite>+++/var/log/vmware-inc/customization.log+++</cite>+++: [source,text] ---- 5: [: xpostcustomization: unexpected operator ---- https://twitter.com/nickstenning[Nick] pointed out that the http://pubs.opengroup.org/onlinepubs/9699919799/utilities/test.html#top[test] utility which we're using to do the comparison on the 2nd line uses a single = in the POSIX shell even though it will work with double = in the bash shell. We thought this was pretty strange since we are telling the script to run with the bash shell in the first line. We eventually realised that the script was being spawned out to a POSIX shell by +++<cite>+++/root/.customization/post-customize-guest.sh+++</cite>+++ which is the script that gets called on power on: [source,text] ---- ((${SH} $POST_CUSTOMIZATION_TMP_SCRIPT_NAME "postcustomization" > /tmp/stdout.log) 2>&1 | ${TEE} -a /tmp/stderr.log) ---- I created a simple script to check the theory: [source,text] ---- #!/bin/bash [ "mark" == "mark" ] && echo Mark ---- Which works fine when called directly: [source,text] ---- $ ./mark.sh Mark ---- And throws the expected error when called with 'sh': [source,text] ---- $ sh mark.sh [: 3: mark: unexpected operator ---- We therefore needed to change our script to do the comparison with a single = like so: [source,text] ---- #!/bin/bash if [ x$1 = x"postcustomization" ]; then echo post customization fi ----
null
null
[ 0.013163579627871513, 0.017517879605293274, 0.00685086939483881, 0.04169763997197151, 0.1102045401930809, 0.04130227863788605, 0.03451380878686905, 0.047249969094991684, 0.006806216202676296, -0.015316382050514221, -0.031705591827631, 0.012210347689688206, -0.03810279816389084, 0.00647136103361845, -0.03217584639787674, 0.07501694560050964, 0.08283358812332153, 0.011332079768180847, 0.029175767675042152, 0.009695056825876236, 0.022692039608955383, 0.07496434450149536, 0.03364058583974838, 0.018699944019317627, -0.005544694606214762, 0.018618682399392128, 0.011484004557132721, -0.028502540662884712, -0.08538762480020523, -0.004843460861593485, 0.008385155349969864, -0.013867766596376896, -0.0013901845086365938, -0.028039494529366493, 0.021757205948233604, -0.01886216178536415, -0.012748206965625286, -0.014207126572728157, -0.00794686283916235, 0.017563849687576294, -0.08020676672458649, 0.043095093220472336, 0.005587334278970957, -0.0025566297117620707, -0.0368882454931736, 0.013826938346028328, -0.042723897844552994, 0.01699003390967846, -0.011334200389683247, -0.009406874887645245, -0.06342237442731857, 0.029213355854153633, -0.027250295504927635, -0.007162308786064386, 0.011595269665122032, 0.033034440129995346, 0.02411305159330368, -0.06588701158761978, 0.007268333807587624, -0.05113409832119942, -0.014200849458575249, 0.0012525127967819571, 0.009812013246119022, 0.026120200753211975, 0.03225937858223915, -0.018910536542534828, 0.011799448169767857, 0.048558350652456284, -0.04976990073919296, -0.03776153549551964, -0.008343997411429882, -0.01414541807025671, 0.004617896396666765, -0.015712613239884377, 0.0006791866617277265, -0.04061339423060417, -0.01849200949072838, 0.04060631990432739, 0.008282571099698544, 0.06304575502872467, -0.03136294335126877, 0.012305287644267082, 0.017034349963068962, 0.029740246012806892, -0.01810297556221485, -0.04115629941225052, -0.02074107900261879, -0.009726770222187042, -0.03678848221898079, 0.05132811889052391, 0.009626796469092369, -0.04205526039004326, 0.021449562162160873, 0.02198757417500019, 0.00831406470388174, 0.008538637310266495, 0.021972892805933952, -0.008154449053108692, 0.020513655617833138, 0.00031918237800709903, -0.05080654099583626, -0.0023694324772804976, 0.009378439746797085, -0.0026259240694344044, -0.0903482735157013, -0.008954781107604504, -0.01991438679397106, 0.0029178117401897907, -0.010867558419704437, -0.00028898651362396777, -0.03289683535695076, 0.018490519374608994, -0.012540879659354687, 0.02603393793106079, -0.07432463020086288, 0.08704546093940735, 0.005741591099649668, -0.05054733529686928, 0.023920346051454544, 0.026521554216742516, 0.0505589060485363, 0.051961906254291534, -0.02624630369246006, 0.07353188097476959, -0.010258468799293041, 0.030161529779434204, 0.014203266240656376, 0.053119733929634094, 0.0025964495725929737, -0.0804910957813263, -0.0007812981493771076, 0.07827181369066238, -0.01892841048538685, 0.02424115687608719, 0.0047235810197889805, -0.03067939728498459, -0.009658711962401867, -0.021258266642689705, 0.051148515194654465, 0.022006016224622726, -0.0022884628269821405, -0.04164180904626846, 0.0004753445100504905, 0.015769869089126587, 0.04867945611476898, 0.00006527420919155702, 0.022982262074947357, -0.05540900677442551, -0.0773901715874672, -0.0059622046537697315, 0.005093342158943415, 0.030970828607678413, 0.045954179018735886, -0.032343458384275436, 0.029766717925667763, 0.09685532748699188, 0.06209078058600426, 0.0008869123412296176, -0.01519097201526165, 0.008264328353106976, 0.019009439274668694, 0.053064461797475815, 0.0132208950817585, 0.08562786132097244, 0.004360802471637726, -0.011626631952822208, -0.016384782269597054, 0.04697015881538391, 0.027313608676195145, 0.012148176319897175, -0.061550818383693695, -0.06021584942936897, 0.04624849185347557, -0.044401898980140686, -0.012091145850718021, 0.04912622645497322, 0.08950810134410858, 0.02530817501246929, 0.028177155181765556, 0.027500852942466736, -0.08227645605802536, 0.04491417482495308, -0.0025479686446487904, 0.014941860921680927, -0.0033177360892295837, -0.0014805096434429288, 0.0679999589920044, 0.013350822031497955, -0.012147093191742897, 0.023891201242804527, -0.07657290250062943, -0.07702282816171646, -0.02525179460644722, -0.006880386732518673, 0.05225454643368721, -0.007919094525277615, -0.015528813935816288, 0.05645335838198662, 0.027075301855802536, 0.05351831391453743, 0.020104942843317986, -0.006973749957978725, 0.015476047992706299, -0.057890068739652634, -0.0796954557299614, 0.01752900332212448, 0.02524339221417904, -0.011800146661698818, -0.022733541205525398, 0.00634109927341342, -0.019525999203324318, -0.005652908235788345, 0.029987221583724022, -0.016588136553764343, 0.07957451790571213, 0.013669769279658794, 0.021986287087202072, -0.031029893085360527, 0.0473477765917778, -0.058889057487249374, 0.016033340245485306, 0.0036300010979175568, -0.01809031143784523, 0.0032132682390511036, 0.020468490198254585, 0.11641825735569, 0.06412427872419357, -0.07131511718034744, -0.04916755110025406, 0.02629389986395836, 0.020820701494812965, -0.03731188178062439, -0.025412578135728836, -0.011426539160311222, -0.0011234274134039879, 0.03936246037483215, -0.031535785645246506, -0.030657809227705002, -0.004731338005512953, -0.03509734943509102, -0.01303022913634777, 0.046505406498909, 0.0009765666909515858, 0.06108671799302101, 0.004172624554485083, -0.0012972535332664847, -0.011804792098701, -0.02422310970723629, -0.05994414910674095, -0.0016686618328094482, 0.011363748461008072, -0.004378602374345064, 0.052143339067697525, -0.01822715438902378, -0.014750362373888493, -0.008082843385636806, -0.04884139075875282, 0.02436027117073536, 0.02368539571762085, 0.06205391138792038, -0.022945478558540344, 0.07464154809713364, -0.007147401105612516, 0.02737489528954029, 0.017197320237755775, -0.031245989724993706, -0.04492449015378952, 0.0012862659059464931, 0.007206559646874666, 0.009864451363682747, -0.004486748017370701, -0.03728979453444481, 0.0012799166142940521, -0.01918085291981697, 0.03085951693356037, -0.023121559992432594, -0.01410403847694397, 0.020237049087882042, -0.01748758740723133, -0.030859749764204025, -0.016850082203745842, 0.03725644201040268, -0.044466570019721985, -0.006650981958955526, 0.0010133720934391022, -0.06549900770187378, 0.029031138867139816, -0.10029567033052444, -0.05662539601325989, -0.03392920643091202, 0.0073798177763819695, 0.020815765485167503, -0.005432824604213238, 0.04435938969254494, 0.04488327354192734, 0.01369781419634819, -0.002319608349353075, 0.018071960657835007, -0.021776506677269936, 0.0432337187230587, -0.00025067984825000167, 0.03203963115811348, 0.01622227020561695, -0.04246838390827179, -0.020908208563923836, -0.04145556315779686, 0.035494495183229446, -0.02767171524465084, -0.2824890911579132, 0.043082717806100845, 0.04045569524168968, -0.0337400920689106, 0.024431463330984116, -0.010648511350154877, 0.0071163116954267025, -0.05414123833179474, -0.022359667345881462, 0.013106199912726879, -0.01874552294611931, -0.036447808146476746, -0.015617519617080688, 0.03306121751666069, -0.01240505836904049, 0.04589841887354851, 0.0257579255849123, -0.03719787299633026, 0.008452815003693104, 0.018440378829836845, -0.0330968052148819, -0.049045003950595856, 0.047883644700050354, -0.006331312470138073, 0.0446712002158165, 0.06305542588233948, -0.07114846259355545, 0.07010245323181152, -0.02902420051395893, -0.02769305557012558, -0.002552653895691037, -0.013023870065808296, -0.005226165987551212, 0.008050470612943172, -0.012467253021895885, -0.02132474072277546, 0.03582623600959778, -0.004313292447477579, 0.036421798169612885, -0.004270006902515888, -0.020762285217642784, -0.02441309206187725, 0.0002192178217228502, 0.010814988054335117, 0.06911101192235947, -0.02379029616713524, -0.08492457866668701, -0.002370250876992941, -0.042436931282281876, 0.06576842069625854, 0.010409730486571789, -0.044623054563999176, -0.00204940396361053, 0.046929795295000076, -0.004566589370369911, -0.006335616111755371, -0.007172838319092989, -0.0013565105618909001, -0.0486193411052227, -0.030838381499052048, -0.03223763778805733, -0.035481005907058716, -0.041958604007959366, -0.05380510166287422, 0.013784033246338367, -0.036801811307668686, -0.07309670001268387, -0.019284360110759735, 0.06173286214470863, 0.01384670939296484, -0.02902611345052719, 0.014263316988945007, -0.013916980475187302, -0.10378101468086243, 0.02001081593334675, -0.04849979653954506, -0.0375358946621418, -0.009512278251349926, 0.0008745563682168722, 0.051100075244903564, -0.01771368272602558, -0.04835880175232887, 0.013775767758488655, -0.014310656115412712, 0.006787373684346676, -0.014838086441159248, 0.03744750842452049, -0.0017376679461449385, -0.013635539449751377, -0.003047248348593712, 0.06319072097539902, -0.023585930466651917, -0.034191351383924484, -0.01155577041208744, -0.0057764435186982155, -0.0022777142003178596, 0.027641747146844864, -0.00673969741910696, -0.018369998782873154, 0.04352739825844765, 0.026936473324894905, -0.04254448041319847, 0.02143825776875019, -0.034986428916454315, -0.01806013472378254, -0.006896348670125008, -0.04209880903363228, 0.010074320249259472, 0.03545732796192169, 0.02746029570698738, -0.020105654373764992, -0.02675672061741352, 0.03474058955907822, -0.0818507969379425, -0.008384648710489273, 0.003624271834269166, 0.006876994855701923, 0.024138975888490677, 0.033537451177835464, -0.04371672123670578, -0.043193720281124115, 0.0018791361944749951, 0.007370841223746538, -0.01590423285961151, -0.04381496086716652, -0.0030071758665144444, -0.005875755567103624, 0.04000551253557205, 0.02826823480427265, 0.01096092164516449, -0.022316453978419304, 0.016023579984903336, 0.02535516582429409, -0.027696775272488594, 0.012894651852548122, -0.004401941783726215, -0.029222261160612106, -0.026768237352371216, -0.0008363634115085006, 0.015143826603889465, -0.024843040853738785, 0.008156826719641685, -0.0018703354289755225, 0.026349306106567383, 0.052946001291275024, 0.0031328266486525536, 0.04240541160106659, -0.013171618804335594, 0.015528745949268341, -0.0009466840419918299, 0.00041796162258833647, -0.07854892313480377, 0.018137793987989426, -0.03862342610955238, -0.031041305512189865, -0.026169423013925552, 0.0386706218123436, -0.03695021942257881, -0.008382931351661682, -0.018076803535223007, 0.01901911199092865, -0.0625011995434761, -0.032918114215135574, 0.00039382019895128906, -0.0006434840615838766, 0.047799915075302124, 0.004752665758132935, 0.01429609302431345, -0.02140452153980732, 0.002574453130364418, 0.02977566607296467, 0.029861172661185265, -0.05054256692528725, -0.004506040830165148, 0.007973960600793362, 0.0003569102264009416, 0.004837550688534975, 0.03806130588054657, 0.007577516138553619, 0.01428226102143526, 0.04439934715628624, -0.018518943339586258, -0.004121102392673492, -0.012801642529666424, 0.05547215789556503, 0.018362607806921005, -0.013051191344857216, 0.024822581559419632, -0.009491639211773872, 0.00956624187529087, -0.04743382707238197, 0.005036241374909878, -0.002882125787436962, -0.0013704960001632571, -0.021136680617928505, -0.07246644794940948, 0.044631149619817734, 0.04253658279776573, 0.018927793949842453, -0.019265998154878616, -0.006467902101576328, 0.014285684563219547, -0.019763629883527756, 0.037999313324689865, 0.083954818546772, -0.048103488981723785, 0.013258899562060833, -0.005105015356093645, 0.020548496395349503, 0.008843773044645786, 0.012093446217477322, -0.0394529290497303, -0.013296369463205338, -0.02937695011496544, 0.011097664944827557, -0.06603604555130005, -0.04324105754494667, -0.019868312403559685, 0.00931537989526987, -0.006343195680528879, -0.010265129618346691, 0.001607996178790927, 0.039216794073581696, -0.021819422021508217, -0.03838955983519554, 0.0019127518171444535, -0.01905081421136856, -0.016121752560138702, 0.011085025034844875, -0.021344752982258797, 0.01853666454553604, -0.037806008011102676, -0.0033065672032535076, 0.001953904749825597, -0.03522365167737007, -0.014567950740456581, -0.025006959214806557, 0.004686933476477861, -0.021472295746207237, 0.03103841282427311, -0.01459356490522623, 0.012802157551050186, -0.04598163440823555, 0.008824082091450691, -0.03873412311077118, 0.011313078925013542, -0.036231596022844315, -0.012225176207721233, 0.008465457707643509, 0.06158415228128433, -0.005875744856894016, 0.04027529060840607, -0.003817980643361807, -0.013625276274979115, 0.044353995472192764, -0.07921753823757172, -0.03242357447743416, -0.006755494978278875, -0.06309080123901367, 0.013030195608735085, -0.003402354894205928, -0.0014902550028637052, -0.047992877662181854, 0.049233730882406235, 0.04281390830874443, 0.002060109283775091, 0.027827566489577293, 0.016741568222641945, 0.013517509214580059, -0.04201992228627205, 0.007407551631331444, -0.08141449838876724, 0.012237326242029667, 0.009460413828492165, -0.0015120734460651875, -0.033748555928468704, 0.020029621198773384, -0.02937380224466324, 0.04887979105114937, -0.04536763206124306, -0.038264963775873184, 0.04104769229888916, -0.009925863705575466, -0.01717100851237774, -0.0032122775446623564, -0.07998073846101761, 0.050690907984972, 0.03380845859646797, -0.03725530207157135, 0.002567154821008444, -0.005755312740802765, 0.058889105916023254, 0.002089827787131071, 0.035740774124860764, -0.05917988717556, -0.055358774960041046, 0.07498958706855774, 0.006663885433226824, 0.007130458019673824, 0.04438360407948494, 0.02041177824139595, 0.04179297387599945, 0.03566960245370865, 0.0072676618583500385, 0.016469310969114304, 0.01280551590025425, -0.02082855999469757, -0.06530623137950897, 0.02045450732111931, 0.0018781115068122745, -0.034996360540390015, -0.03558705747127533, 0.04939091205596924, 0.011346322484314442, -0.0143424766138196, -0.06017277389764786, 0.02389478124678135, -0.04293455928564072, -0.01966426894068718, -0.03186550736427307, -0.00920763798058033, -0.031212758272886276, 0.06874136626720428, -0.011521671898663044, 0.0012306950520724058, 0.06395543366670609, -0.004845816176384687, -0.0131629453971982, 0.007765743415802717, 0.05120145156979561, 0.09325983375310898, 0.05943828076124191, 0.028565360233187675, 0.04348304495215416, -0.026577312499284744, -0.03382604196667671, -0.026137499138712883, -0.03354691341519356, -0.03395957872271538, -0.01563134416937828, 0.009737508371472359, 0.09774184226989746, 0.0029834092129021883, 0.05748964101076126, -0.007731426507234573, 0.006023509427905083, -0.0018448872724547982, 0.013553407974541187, 0.01848992332816124, 0.04733305424451828, 0.017294548451900482, 0.011130607686936855, -0.0029001664370298386, -0.01710386388003826, 0.02584724687039852, -0.035105034708976746, -0.023082898929715157, 0.026749033480882645, -0.009123899973928928, 0.00455498369410634, -0.025163881480693817, 0.011305656284093857, 0.08322972059249878, -0.0173221193253994, 0.009410831145942211, -0.002852262230589986, 0.03496072441339493, 0.011066858656704426, 0.026216760277748108, -0.029389003291726112, 0.0005820482620038092, 0.00932647380977869, -0.011716440320014954, -0.03249109908938408, -0.021106518805027008, -0.020304085686802864, 0.03637194260954857, -0.004079122096300125, 0.02133041061460972, 0.019793111830949783, 0.005522243212908506, -0.030748113989830017, -0.026599418371915817, -0.04725906625390053, -0.04853956401348114, -0.031057411804795265, -0.02385437674820423, 0.011986766010522842, 0.007144760340452194, -0.024519236758351326, -0.03626708686351776, -0.013567427173256874, -0.009041977114975452, 0.04804224148392677, -0.04792594909667969, -0.009608672931790352, -0.005164623726159334, 0.0011647017672657967, 0.02411152608692646, 0.029849691316485405, 0.04474947601556778, -0.0017589610069990158, -0.004912869539111853, -0.0282601211220026, 0.011977441608905792, 0.03911609575152397, -0.022596100345253944, 0.00946957990527153, -0.06748821586370468, 0.03144947066903114, 0.019909456372261047, 0.015558314509689808, -0.06674739718437195, 0.007327738683670759, 0.02709592506289482, -0.030830947682261467, 0.07253381609916687, -0.01777190901339054, 0.02365250512957573, -0.04594999551773071, -0.020258089527487755, -0.006072955671697855, 0.007115766406059265, 0.03292781487107277, -0.0015295128105208278, 0.09379506856203079, 0.05777648836374283, -0.03338192403316498, -0.02367296814918518, -0.016311611980199814, -0.02086993120610714, 0.0026152569334954023, -0.025182966142892838, -0.01594933494925499, -0.035464927554130554, -0.07594647258520126, -0.023846054449677467, 0.015176486223936081, -0.010431219823658466, -0.04747582972049713, 0.014368043281137943, 0.0018829945474863052, -0.07573796063661575, 0.04332110285758972, -0.029933029785752296, 0.003472979413345456, -0.006442473269999027, -0.020846016705036163, 0.0027218321338295937, 0.024234652519226074, -0.013633581809699535, 0.00008884661656338722, 0.0292314812541008, -0.040015894919633865, -0.028966693207621574, 0.0026858632918447256, 0.03263179212808609, 0.048617828637361526, 0.004932000767439604, 0.04658665880560875 ]
[ -0.0976112112402916, -0.018060220405459404, -0.0002151251392206177, -0.04139237850904465, 0.042473696172237396, -0.03289136290550232, -0.009690131060779095, 0.004774455912411213, -0.017412427812814713, -0.006499172654002905, 0.02386464737355709, -0.012757886201143265, 0.008044930174946785, -0.04334927722811699, 0.11203611642122269, 0.010914044454693794, -0.007243473082780838, -0.05957002192735672, -0.02462007664144039, 0.021788140758872032, 0.010590881109237671, -0.03368904069066048, -0.047628626227378845, -0.048417821526527405, -0.025880860164761543, -0.004393657669425011, 0.017721304669976234, -0.01854800619184971, 0.020520612597465515, -0.19714714586734772, 0.021627383306622505, 0.001226319232955575, 0.04218011721968651, -0.02881036140024662, 0.026522673666477203, 0.019136806949973106, 0.017175156623125076, 0.0035822840873152018, 0.008259591646492481, 0.034474410116672516, 0.037748754024505615, -0.000042851417674683034, -0.0942954272031784, -0.013128421269357204, 0.05144823342561722, -0.020977281033992767, 0.007787508890032768, -0.02489573508501053, -0.028317207470536232, -0.007429368793964386, -0.008387516252696514, -0.01935688592493534, -0.01184824388474226, -0.027430886402726173, -0.0011199195869266987, 0.0014260727912187576, 0.022109778597950935, 0.06660662591457367, 0.036414388567209244, 0.021309399977326393, -0.004062458407133818, -0.00247141532599926, -0.13158710300922394, 0.0978122130036354, 0.010563109070062637, 0.03835552558302879, -0.024849850684404373, -0.07177362591028214, -0.023673057556152344, 0.08147462457418442, 0.010771699249744415, -0.0166372861713171, -0.03165086731314659, 0.032014187425374985, -0.0004987905849702656, 0.01211916096508503, 0.02725677378475666, 0.03211710974574089, 0.03700694814324379, -0.02875388413667679, -0.03151388466358185, -0.00845310464501381, -0.03225572779774666, -0.005543150473386049, -0.05009085685014725, 0.03181075304746628, 0.0020158798433840275, 0.0758272111415863, 0.03645159676671028, 0.012119685299694538, -0.0053049479611217976, -0.018481140956282616, 0.03724032640457153, -0.0010135893244296312, -0.08179212361574173, 0.007860902696847916, 0.007808287162333727, -0.022665133699774742, -0.054895367473363876, 0.43785420060157776, -0.0073090060614049435, -0.04334765300154686, 0.042125288397073746, 0.001783933024853468, 0.037196725606918335, 0.001998765394091606, -0.01946583017706871, -0.03946874663233757, 0.02091997116804123, 0.015126117505133152, -0.001034021144732833, 0.017219258472323418, 0.069867804646492, -0.06426343321800232, -0.009388277307152748, 0.017656324431300163, -0.004108482506126165, 0.022722277790308, 0.006281270645558834, -0.014966746792197227, -0.006757575552910566, 0.0028778777923434973, 0.024427903816103935, 0.00629456015303731, 0.014022456482052803, -0.025957215577363968, 0.05365192890167236, 0.05606135353446007, -0.010467901825904846, -0.005414566490799189, 0.04031796753406525, -0.03058350645005703, -0.073562391102314, -0.004982180427759886, 0.0363197959959507, 0.031636618077754974, 0.03229055926203728, -0.05889100953936577, -0.004127039108425379, 0.011171561665832996, -0.0200906191021204, 0.03697053715586662, 0.03872540220618248, -0.024619190022349358, 0.0030556917190551758, 0.11750192195177078, 0.008594098500907421, -0.01918446645140648, -0.006502422969788313, -0.045058976858854294, 0.010881554335355759, 0.031525347381830215, -0.014746265485882759, -0.06435658782720566, 0.0012298806104809046, 0.019648294895887375, 0.048254046589136124, -0.004420781508088112, -0.056843362748622894, 0.0043228245340287685, 0.0058532883413136005, -0.029263634234666824, -0.023913271725177765, 0.055145371705293655, 0.009623630903661251, -0.1358794867992401, -0.03921842947602272, 0.012164796702563763, 0.03464763984084129, -0.046009860932826996, -0.023642566055059433, 0.00617885310202837, -0.0441373847424984, -0.02088417485356331, 0.027034224942326546, -0.03740377724170685, -0.05664924904704094, 0.04627950116991997, 0.012767083942890167, 0.0186687670648098, -0.026334302499890327, -0.01880027912557125, -0.018141472712159157, -0.01481785997748375, -0.018401892855763435, -0.08193589746952057, -0.028954192996025085, 0.004065597429871559, -0.03476853668689728, -0.0148301487788558, -0.006868180353194475, -0.020084042102098465, -0.0780457854270935, 0.03126373887062073, 0.01764070615172386, -0.0044142939150333405, -0.0035805245861411095, 0.02055152878165245, 0.022693820297718048, -0.0405723862349987, 0.015740633010864258, 0.046778321266174316, 0.00852187629789114, 0.04669849947094917, -0.09926464408636093, 0.038118161261081696, 0.01882457733154297, -0.04434233158826828, 0.0821160152554512, 0.055867310613393784, -0.05368955805897713, -0.030466774478554726, 0.017895152792334557, 0.023767994716763496, -0.0189471784979105, 0.026967259123921394, -0.04522985219955444, 0.023854725062847137, 0.034843433648347855, 0.003552718786522746, -0.024355178698897362, 0.025005239993333817, -0.024425430223345757, -0.3397255539894104, -0.046315886080265045, -0.026912923902273178, -0.006480902433395386, -0.03009193390607834, -0.04785210266709328, 0.03834680840373039, -0.0018877454567700624, 0.007477886043488979, -0.02832665480673313, 0.08194790780544281, -0.03666173294186592, 0.040133632719516754, -0.0606888011097908, 0.02324855513870716, 0.051236316561698914, 0.0033149828668683767, -0.0328361839056015, -0.023720722645521164, 0.011447306722402573, -0.0001472560252295807, 0.00979565642774105, -0.03278021886944771, -0.03546946868300438, -0.010368394665420055, -0.005109167192131281, 0.0895753800868988, -0.0053971391171216965, 0.09235865622758865, -0.02283564954996109, 0.0687251016497612, 0.02062538079917431, 0.024780986830592155, -0.12299080193042755, 0.002965618623420596, -0.020569758489727974, 0.014299740083515644, -0.005728959105908871, 0.016054611653089523, 0.019018953666090965, -0.0799737200140953, 0.02896982803940773, -0.061544954776763916, -0.08273512125015259, -0.000300403218716383, -0.006780534982681274, -0.03666446730494499, 0.021581877022981644, -0.02307184785604477, 0.04110854119062424, 0.014344822615385056, -0.008278422988951206, -0.00022259712568484247, 0.01707751862704754, 0.022199027240276337, -0.044486697763204575, -0.06541898101568222, -0.017682502046227455, 0.0046152533032000065, 0.00019771253573708236, 0.05657722428441048, 0.011095198802649975, 0.016905739903450012, -0.09059792011976242, 0.029615312814712524, -0.0010600379901006818, 0.004496932495385408, -0.0012579034082591534, 0.09567008912563324, -0.06768983602523804, -0.026580261066555977, 0.09519407153129578, -0.004901887848973274, 0.021962817758321762, 0.04186774045228958, 0.026657024398446083, -0.011778319254517555, 0.024822253733873367, -0.0088884886354208, -0.007594487629830837, 0.03765816614031792, -0.024405978620052338, 0.038789600133895874, -0.021756799891591072, -0.025242779403924942, 0.03882962465286255, -0.051193419843912125, 0.023997880518436432, 0.062353406101465225, 0.007560202851891518, -0.05135706067085266, -0.017577143386006355, -0.02409101091325283, -0.06856968998908997, 0.08098266273736954, 0.015573601238429546, -0.2536715269088745, 0.013847101479768753, 0.057966288179159164, 0.0676000714302063, -0.0024421177804470062, 0.03277137503027916, 0.011094634421169758, -0.0610770508646965, 0.04022085666656494, 0.022233257070183754, 0.020619191229343414, 0.025993065908551216, 0.00687293941155076, 0.015562362037599087, 0.022877370938658714, 0.022052759304642677, 0.04301080480217934, 0.011729486286640167, 0.020601073279976845, -0.012048264965415001, -0.010195302776992321, -0.03653400018811226, 0.15051960945129395, -0.007752039935439825, -0.02028527483344078, 0.027835845947265625, 0.0004927283735014498, 0.02047843672335148, 0.06412428617477417, 0.01862843707203865, -0.0027207243256270885, 0.0027900494169443846, 0.06535530090332031, 0.013580144383013248, 0.0395515151321888, -0.09728572517633438, -0.015632832422852516, 0.03804893419146538, 0.01748843491077423, 0.006442677695304155, -0.031808409839868546, 0.0012180963531136513, 0.009878271259367466, 0.011220746673643589, 0.05739685520529747, 0.0010726366890594363, 0.025112126022577286, 0.004455287475138903, -0.012488652020692825, 0.006946445908397436, -0.05626019835472107, -0.03689398244023323, 0.0030344075057655573, 0.008802265860140324, 0.034896187484264374, 0.06112901121377945, 0.045651573687791824, -0.0312449149787426, 0.027981095016002655, 0.03573009371757507, 0.015033171512186527, -0.0589248463511467, 0.11385765671730042, -0.00018658522458281368, 0.038010433316230774 ]
[ 0.01253417693078518, 0.023176485672593117, 0.028625797480344772, 0.018077081069350243, 0.0249616876244545, 0.0036204042844474316, 0.020139727741479874, 0.017008813098073006, -0.00662229023873806, 0.043126415461301804, 0.006643290631473064, -0.011896270327270031, -0.014956759288907051, -0.004362144973129034, 0.024172376841306686, 0.021872367709875107, 0.04838787391781807, 0.02480161562561989, 0.024730445817112923, -0.00034976936876773834, -0.00438041752204299, 0.053453702479600906, -0.01089424453675747, -0.012484269216656685, 0.004055630881339312, -0.023026565089821815, -0.08632490783929825, 0.03634899482131004, 0.032337967306375504, -0.10288739204406738, -0.0035389699041843414, -0.028368370607495308, 0.02286568284034729, 0.04697762429714203, 0.05292997509241104, -0.005831440910696983, -0.0020245916675776243, -0.005552097223699093, -0.051011860370635986, 0.021892625838518143, 0.010662187822163105, -0.021870294585824013, -0.028598736971616745, -0.005366923753172159, 0.0021419557742774487, 0.02113611251115799, 0.007301803212612867, -0.03023131936788559, -0.021406501531600952, -0.012543917633593082, -0.005940345581620932, -0.00630462821573019, 0.011069311760365963, 0.015731992200016975, -0.03408440947532654, 0.006689044181257486, 0.00044270919170230627, 0.009861620143055916, 0.026649991050362587, -0.04708091914653778, 0.02519581839442253, -0.0382254533469677, -0.024174312129616737, -0.02514646016061306, -0.02430211752653122, -0.015724143013358116, 0.028855280950665474, 0.008223484270274639, -0.031185124069452286, -0.020851468667387962, 0.0065335463732481, 0.05254053696990013, -0.012909656390547752, 0.0032289407681673765, -0.007920212112367153, -0.0012730802409350872, -0.0027620079927146435, -0.018261950463056564, 0.03784790635108948, -0.009837777353823185, -0.041224632412195206, 0.025677163153886795, -0.0186749417334795, 0.04190252348780632, -0.03586648404598236, 0.03471020236611366, 0.01890603080391884, 0.019708091393113136, 0.06090903282165527, -0.023973140865564346, -0.04394254833459854, -0.021015208214521408, 0.016026483848690987, 0.0031863993499428034, -0.05028129741549492, -0.037599172443151474, -0.015759142115712166, -0.07435038685798645, 0.01265598926693201, 0.8157684803009033, -0.04217412322759628, -0.019563233479857445, 0.02564365789294243, 0.027854204177856445, 0.040830761194229126, 0.008520147763192654, 0.020762408152222633, 0.023019615560770035, 0.0014340560883283615, -0.05539874732494354, 0.022495057433843613, 0.027297770604491234, 0.016479533165693283, 0.000060359463532222435, 0.019128859043121338, 0.030422735959291458, 0.03129413723945618, 0.005482770968228579, -0.001775234006345272, 0.007295761723071337, 0.014482126571238041, -0.04521168768405914, 0.008469073101878166, -0.005195561330765486, -0.03812986984848976, -0.17551955580711365, 0.03598801791667938, -7.32280156784895e-33, 0.0024329384323209524, -0.00893856305629015, 0.02565322257578373, 0.02643444761633873, 0.06436134874820709, 0.0058653936721384525, 0.01771012507379055, -0.014495515264570713, -0.047328948974609375, -0.04906664416193962, -0.010495961643755436, -0.03263585641980171, 0.03413679823279381, 0.016739189624786377, 0.015720408409833908, -0.030362658202648163, 0.009388244710862637, 0.039220016449689865, 0.018302250653505325, -0.030685435980558395, 0.03626716136932373, 0.029207151383161545, 0.0004666933964472264, -0.021435288712382317, 0.017526810988783836, -0.013559659011662006, 0.025417132303118706, -0.008266560733318329, 0.004704723134636879, -0.05370420962572098, -0.024357879534363747, 0.028700409457087517, 0.021408619359135628, -0.02551681362092495, -0.03503123298287392, -0.020830078050494194, -0.022398807108402252, 0.0008427952416241169, -0.04927241429686546, 0.031797830015420914, -0.022528091445565224, 0.0370771586894989, -0.023968450725078583, -0.01652541756629944, -0.037622831761837006, 0.00207700626924634, -0.05057697743177414, -0.028111586347222328, 0.020115386694669724, 0.013974656350910664, 0.01903470978140831, 0.02324226312339306, -0.008467307314276695, -0.04785497114062309, 0.0012445916654542089, 0.007130994461476803, 0.014903336763381958, -0.0018452458316460252, 0.0007391315302811563, 0.005417427513748407, 0.003015810390934348, -0.04770153760910034, -0.017100300639867783, 0.016827380284667015, -0.0038759491872042418, -0.027416134253144264, 0.03423120081424713, -0.013565451838076115, -0.012520543299615383, -0.009356265887618065, -0.06067785993218422, 0.022146258503198624, -0.022320596501231194, -0.04339056462049484, -0.004751864820718765, -0.04610056057572365, 0.0008441650425083935, 0.0013792595127597451, -0.008570773527026176, 0.024631591513752937, 0.015129205770790577, -0.011378089897334576, -0.04024378955364227, -0.021460769698023796, -0.038135722279548645, -0.015698852017521858, 0.01757393404841423, 0.010459089651703835, -0.01862569898366928, 0.0011581223225221038, 0.03125253692269325, 0.004415710456669331, 0.05858558043837547, -0.028113629668951035, -0.04735061526298523, 7.314641433002336e-33, -0.03222741186618805, 0.024708272889256477, -0.005852571222931147, 0.017156142741441727, 0.012155741453170776, 0.0198424831032753, 0.05841384455561638, -0.012429012916982174, -0.0670379251241684, 0.003743610344827175, -0.022258641198277473, 0.017047174274921417, -0.04564056918025017, 0.08235131949186325, 0.03127063438296318, 0.06102461740374565, 0.004590918775647879, -0.041387688368558884, 0.04596057906746864, 0.003788967616856098, 0.01191117987036705, 0.039975542575120926, -0.0030984142795205116, -0.016792641952633858, -0.007169996853917837, 0.02666807919740677, -0.01237433310598135, 0.03744574263691902, -0.016973428428173065, -0.03433394059538841, 0.01677667535841465, 0.004838417749851942, -0.014323954470455647, 0.012587503530085087, 0.0691283643245697, 0.025944776833057404, -0.00022922860807739198, -0.0006578242755495012, 0.01306585967540741, 0.003927488345652819, -0.014143441803753376, -0.03481089323759079, -0.048003412783145905, 0.016271185129880905, -0.004426745697855949, 0.03422541916370392, 0.006811045575886965, -0.0062982081435620785, 0.007702590897679329, -0.0005838254000991583, -0.013428299687802792, -0.022604700177907944, 0.013487376272678375, 0.048278409987688065, -0.028157759457826614, -0.0205900426954031, -0.039532117545604706, 0.05742410942912102, -0.01740829274058342, -0.036541782319545746, 0.010835752822458744, 0.004156137350946665, 0.015295369550585747, 0.00577479787170887, -0.018328124657273293, -0.009800545871257782, -0.022019395604729652, -0.0011219001607969403, -0.018440285697579384, -0.050757039338350296, -0.02262965962290764, -0.031230783089995384, -0.005369935184717178, -0.005788550712168217, -0.015755169093608856, -0.025416363030672073, 0.03700609877705574, -0.019633062183856964, -0.020061207935214043, 0.025391366332769394, -0.03576444461941719, 0.014636273495852947, 0.008176175877451897, 0.0049073658883571625, -0.016696952283382416, 0.04407014325261116, -0.020150549709796906, -0.008117222227156162, 0.03935367614030838, 0.020559873431921005, -0.05970612168312073, -0.04233076423406601, -0.009548910893499851, 0.025493532419204712, -0.030414151027798653, -1.272686755982022e-8, -0.010990917682647705, -0.0017254670383408666, -0.009857738390564919, 0.026682958006858826, -0.001500941812992096, 0.010904788039624691, 0.011817753314971924, 0.02725946344435215, 0.007432280573993921, 0.024119451642036438, 0.00020092241175007075, -0.028267942368984222, 0.021837051957845688, 0.026739496737718582, 0.03787598758935928, 0.002351164584979415, -0.0391826406121254, 0.021792035549879074, 0.03165765479207039, -0.012871419079601765, 0.008199519477784634, 0.056283559650182724, 0.03467969596385956, -0.0023146767634898424, -0.003467897418886423, 0.04051673784852028, 0.0326714925467968, -0.09339490532875061, -0.045114289969205856, 0.02650313824415207, 0.022595569491386414, 0.001897798152640462, -0.0702604353427887, 0.013808137737214565, -0.029412562027573586, -0.0063723912462592125, -0.011260837316513062, 0.027305321767926216, 0.028535982593894005, -0.020536011084914207, 0.020799096673727036, -0.025711821392178535, 0.001585211488418281, -0.020968731492757797, -0.03296062350273132, -0.009306419640779495, 0.0007200832478702068, -0.008390984497964382, 0.021003101021051407, -0.027663422748446465, 0.019222168251872063, 0.02692212536931038, 0.0018221760401502252, 0.05307028442621231, -0.019343368709087372, -0.022451912984251976, 0.025643790140748024, -0.002541118301451206, 0.009774202480912209, 0.011438916437327862, 0.0024391121696680784, 0.016495300456881523, -0.004607361741364002, -0.01590648852288723 ]
vcloud-guest-customization-script-postcustomization-unexpected-operator
https://markhneedham.com/blog/2012/08/06/vcloud-guest-customization-script-postcustomization-unexpected-operator
false
2012-08-14 22:16:01
Presentations; Tell a story
[ "communcation" ]
[ "Communication" ]
A few years ago before an F# talk that I gave at the .NET user group in Sydney my colleague Erik Doernenburg gave me some advice about how I should structure the talk. _(paraphrasing)_ ____ He suggested that in a lot of talks he'd seen the presenter rattle off a bunch of information about a topic but hadn't provided any insight into their own experience with the topic. If two people give a talk on the same topic they therefore end up being fairly similar talks even though each person may have a totally different perspective. Erik suggested that people would find it much more interesting if I told a story about what I'd learnt about my topic (in this case F#). ____ I've been trying to follow that advice in other talks I've given since then and have noticed that there seem to be two main things that you need to get right for this approach to work well. == The Hook Every story has a beginning but *we need to find a way to take the audience from where they currently are to the beginning of the story* and the amount of work that we need to get there can vary. If it's an audience that know the topic very well and are of a similar background to us then a quick explanation will do but we need to judge what our audience will be before working out how much context needs to be provided. Most of the time I think people don't get enough context and the talk becomes quite difficult to follow but I did give a presentation a couple of years ago where I ended up giving unnecessary context and watched people's eyes glaze over! In stand up comedy the key to a good joke is that you give just enough context so that the punch line of the joke makes sense. If you give a lot of context then there's an assumption that the punch line is going to be stunning. When writing jokes you therefore spend a lot of time refining the context until it's just right. I think we should apply the same thinking in normal talks. == The flow After we've got our hook sorted out and brought the audience to the beginning of our story the next thing to focus on is writing *a coherent story which moves along at an appropriate pace*. The main thing to focus on here is to tell a story which is appropriate for the audience. For example I recently gave two talks on a neo4j graph I've been working on with ThoughtWorks data - one to a ThoughtWorks audience and one to the neo4j user group. In the first talk my story was an inward looking reflection on a bunch of data about ourselves and the tools I'd used to do that played a backseat role. In the second talk I focused on the way that I'd iterated the model to answer questions that I had about the data over time. In both cases I was able to *identify a skeleton to hang the details of the story onto*. After we have a rough outline of an interesting story we need to fill in the details and make sure that the story actually makes sense and will be interesting to tell. Sometimes this means switching the order that things would normally come in. I think this is ok - our goal isn't to tell the exact chronological order in which we learnt things but to explain them in a way that's easy to understand. For example in my neo4j talk the order that I presented the questions I asked about the data wasn't exactly the same as in real life. The points I wanted to make about modelling your data fitted better with a revised order so that's what I did! My way of preparing the story I want to tell is to sketch out some slides and then imagine presenting it to see if it makes sense - I often end up reworking it over a period of weeks until I'm happy. It's also useful to run through the story with someone else before hand to see if it makes any sense. == When not to tell a story As with almost everything one idea isn't applicable everywhere and there are other ways to present a topic other than giving your own perspective on it. If you're the expert on a particular topic and you're presenting some new information about a language/tool then you don't necessarily need to tell a story. Having said that, a lot of good presentations I've watched tend to first describe the problem they're trying to solve followed by their solution, which is effectively telling a story! Another presentation technique is the '10 things I learnt about...' approach which makes sense if there doesn't seem to be a coherent story line to weave. Overall though I think the http://www.amazon.co.uk/The-Seven-Basic-Plots-Stories/dp/0826480373/ref=sr_1_1?ie=UTF8&qid=1344982214&sr=8-1[story telling approach] is my preferred one and it pretty much mirrors what people do in normal conversations so we may as well take that familiarity with us when doing a presentation!
null
null
[ 0.012439269572496414, -0.0005054549546912313, 0.0014672590186819434, 0.03614422306418419, 0.06791147589683533, 0.009740570560097694, 0.02512495219707489, 0.034935589879751205, 0.018785616382956505, -0.017541542649269104, -0.012252632528543472, 0.023170126602053642, -0.043251968920230865, 0.007932665757834911, -0.029476875439286232, 0.07732336968183517, 0.037294961512088776, -0.009262023493647575, 0.020333493128418922, -0.00123797042760998, 0.019007472321391106, 0.053772881627082825, 0.041130732744932175, 0.04162566363811493, 0.054095927625894547, -0.013936339877545834, 0.00034988182596862316, 0.004538034088909626, -0.04345760866999626, 0.000480118760606274, 0.026449482887983322, -0.0060305967926979065, 0.004109489265829325, -0.014466219581663609, 0.01986159011721611, -0.03211895376443863, 0.0027182335034012794, 0.03183324635028839, 0.02379927784204483, 0.027068544179201126, -0.06305325776338577, 0.030474690720438957, -0.01335233449935913, -0.02681480161845684, -0.04362260550260544, 0.0026409809943288565, -0.037680793553590775, 0.00851418636739254, -0.0008603172027505934, 0.0043495213612914085, -0.08042191714048386, 0.036110084503889084, 0.02365901879966259, 0.010988910682499409, -0.022417765110731125, 0.04906574636697769, 0.021718265488743782, -0.0675341784954071, 0.023596681654453278, -0.03282233700156212, -0.019782911986112595, 0.007342073600739241, 0.0007659838884137571, 0.04277106747031212, 0.02500651217997074, -0.02917020209133625, -0.004300549626350403, 0.04939563199877739, -0.05608443543314934, -0.007191926706582308, -0.009984094649553299, 0.009066246449947357, -0.01604006066918373, -0.01934294030070305, 0.004618234466761351, -0.06509118527173996, 0.02475545182824135, 0.06216103583574295, 0.024914829060435295, 0.039846163243055344, -0.03670766204595566, 0.028606634587049484, 0.0004933395539410412, 0.02726270817220211, -0.010819206945598125, -0.03262188285589218, 0.01584732159972191, -0.02146155573427677, -0.051073040813207626, 0.030978791415691376, 0.014690267853438854, -0.07892469316720963, 0.0007608516607433558, 0.030741747468709946, 0.00890751276165247, 0.02390497550368309, 0.02863478846848011, 0.0025435432326048613, -0.0057206228375434875, 0.0014705160865560174, -0.03006933256983757, -0.03950450196862221, -0.01180669292807579, 0.01685507223010063, -0.09155063331127167, -0.008364100009202957, 0.0070966328494250774, -0.013568725436925888, -0.011032512411475182, 0.009977356530725956, -0.045524269342422485, 0.006518723908811808, -0.003328518709167838, 0.017078274860978127, -0.07849650084972382, 0.04651598259806633, 0.027897436171770096, -0.021467380225658417, -0.017851447686553, 0.012004150077700615, 0.0445881113409996, 0.021340781822800636, 0.007849840447306633, 0.10092638432979584, -0.03708789870142937, 0.010386968962848186, -0.046729497611522675, 0.07175648957490921, -0.019242553040385246, -0.05759330466389656, -0.004158860072493553, 0.0462544821202755, -0.008733266964554787, -0.021710434928536415, -0.004427677020430565, -0.03978312760591507, 0.009923754259943962, -0.00826058629900217, 0.03761427104473114, 0.05756770074367523, 0.0035875639878213406, -0.04808240756392479, 0.010774143040180206, -0.0011399814393371344, 0.03183334693312645, -0.02253415808081627, -0.03591090068221092, -0.023312607780098915, -0.022824497893452644, -0.0074279773980379105, 0.014168516732752323, 0.010016647167503834, 0.02622194215655327, -0.02891702391207218, 0.026264887303113937, 0.08000686019659042, 0.032405998557806015, 0.0070269000716507435, -0.006048879586160183, 0.03497053310275078, 0.04305652901530266, 0.032313015311956406, -0.012928852811455727, 0.035468559712171555, 0.01872672140598297, -0.012744138948619366, -0.012020439840853214, 0.04230699688196182, -0.03119666874408722, 0.016713887453079224, -0.048479221761226654, -0.004682442639023066, 0.05128563567996025, -0.022934583947062492, -0.00910340715199709, 0.04855945706367493, 0.07797200977802277, 0.045441847294569016, 0.024881485849618912, 0.0018753129988908768, -0.08095534890890121, 0.03424294292926788, 0.02397988736629486, 0.016271648928523064, 0.01017491053789854, -0.025558851659297943, 0.060111306607723236, 0.03777015209197998, -0.008350910618901253, 0.0483710803091526, -0.07948412746191025, -0.08461304008960724, -0.04224563390016556, -0.013999211601912975, 0.06626627594232559, -0.02476433478295803, 0.029341943562030792, 0.06308567523956299, 0.030080299824476242, 0.05247700586915016, 0.04550277441740036, -0.020129522308707237, 0.04722270369529724, -0.02233305014669895, -0.03181857615709305, 0.07431863993406296, 0.027338309213519096, -0.01719806157052517, -0.03995899856090546, 0.013140290044248104, -0.02501847967505455, -0.01709444634616375, 0.06903794407844543, -0.0167611762881279, 0.026846593245863914, 0.0030617022421211004, 0.05856192484498024, -0.03745746612548828, 0.00663414504379034, -0.03094569593667984, 0.03955041989684105, -0.011582622304558754, -0.02151833102107048, -0.0011488685850054026, -0.022920917719602585, 0.12425658106803894, 0.056456372141838074, -0.040604669600725174, -0.055003028362989426, -0.0019015527796000242, 0.006338691804558039, -0.013790594413876534, 0.007175944745540619, -0.018302876502275467, 0.007309459149837494, -0.015108241699635983, -0.05804821476340294, -0.01454907562583685, 0.027466224506497383, -0.04563969373703003, 0.02138044498860836, 0.05809834226965904, -0.03805648908019066, 0.05439087748527527, -0.019315442070364952, 0.017080586403608322, 0.01860657148063183, -0.005763803143054247, -0.04832851514220238, 0.039668433368206024, 0.008184260688722134, -0.01774156093597412, 0.05595751106739044, -0.020030096173286438, -0.013654764741659164, -0.003211173927411437, -0.03213915973901749, 0.00962273869663477, 0.06454317271709442, 0.05168303847312927, -0.009212064556777477, 0.04378427937626839, -0.03455418720841408, 0.027716051787137985, -0.007554881274700165, -0.04630487039685249, -0.02549155429005623, -0.021215595304965973, 0.0022122731897979975, 0.01098664104938507, 0.040333688259124756, -0.012124602682888508, 0.021840600296854973, 0.012175601907074451, -0.01204596646130085, -0.02592780999839306, 0.05006474256515503, -0.02020111121237278, -0.0291322972625494, -0.036764271557331085, -0.03308354690670967, 0.04130227863788605, -0.034614499658346176, -0.03267597034573555, 0.02532612346112728, -0.056594472378492355, 0.030587974935770035, -0.04201437160372734, -0.038359131664037704, 0.0027952385134994984, 0.006594810169190168, 0.0547562837600708, 0.011956865899264812, -0.004860613029450178, 0.071877621114254, 0.036632418632507324, 0.020468629896640778, -0.010441341437399387, -0.01593601144850254, 0.04421733692288399, -0.019461005926132202, -0.005579255986958742, 0.04625251144170761, -0.0004527445125859231, -0.006400078069418669, -0.04860746115446091, 0.035174448043107986, -0.04543928802013397, -0.3046215772628784, 0.025160256773233414, 0.009776690974831581, -0.025187576189637184, 0.018060075119137764, -0.0424429289996624, 0.0006131877889856696, -0.043667808175086975, -0.02952798642218113, 0.004697013646364212, -0.06379689276218414, -0.018814170733094215, -0.03643740713596344, 0.036435265094041824, 0.01096333097666502, 0.014362863264977932, -0.002294118283316493, -0.029108813032507896, 0.000573360244743526, 0.0603022575378418, -0.016530197113752365, -0.058337338268756866, -0.003946336917579174, 0.03640063852071762, 0.03225017338991165, 0.036114249378442764, -0.09271664917469025, 0.0509747676551342, -0.0441291481256485, -0.017977174371480942, 0.002672480186447501, -0.017018437385559082, 0.01974976621568203, -0.02833295240998268, -0.011868438683450222, -0.031781114637851715, 0.06029660999774933, -0.008436230942606926, 0.00697409687563777, 0.0020987563766539097, -0.011858480051159859, -0.051579300314188004, -0.02053695358335972, 0.00870435405522585, 0.08165289461612701, -0.008885256014764309, -0.08165816217660904, -0.020429424941539764, -0.02949066087603569, 0.06840520352125168, -0.02777688577771187, -0.04200834780931473, -0.022280387580394745, 0.036712177097797394, 0.015330598689615726, -0.020673824474215508, 0.0061263698153197765, -0.02712015062570572, -0.03185002878308296, -0.04536549746990204, -0.028875328600406647, -0.04652797430753708, -0.013378923758864403, -0.043414123356342316, -0.00817533303052187, -0.06571295857429504, -0.07902760058641434, 0.004600320477038622, 0.06378888338804245, 0.003564476268365979, -0.020350025966763496, 0.039328109472990036, 0.01576113887131214, -0.09605797380208969, -0.025788698345422745, -0.024771230295300484, -0.015910018235445023, 0.009816877543926239, 0.021741872653365135, 0.06753109395503998, -0.03854738920927048, -0.048456788063049316, 0.010519176721572876, -0.015247088856995106, 0.035468801856040955, 0.012071297504007816, 0.030112240463495255, 0.0016486969543620944, -0.030428707599639893, 0.022882206365466118, 0.06589853018522263, 0.019653184339404106, -0.03583985194563866, -0.0028062399942427874, 0.02181718498468399, 0.025601139292120934, 0.013849340379238129, -0.01855134777724743, 0.03202642872929573, 0.0288799237459898, 0.01624041236937046, -0.06369663029909134, 0.009334519505500793, -0.016578441485762596, -0.005229902919381857, 0.0026688079815357924, -0.06526827812194824, 0.02596956118941307, 0.038440898060798645, -0.001319551607593894, -0.002376400865614414, -0.01372599694877863, 0.013696846552193165, -0.025984397158026695, -0.03239046782255173, -0.0053619565442204475, 0.013902238570153713, 0.04374079406261444, -0.01533553283661604, -0.0018437870312482119, -0.044845957309007645, 0.014319981448352337, 0.009317721240222454, -0.01488784421235323, -0.06984754651784897, -0.01964067667722702, -0.02221439965069294, -0.02576807327568531, -0.023221677169203758, 0.012829569168388844, -0.006706733722239733, 0.003790823044255376, 0.010679311119019985, -0.0259389728307724, 0.03718959912657738, -0.03331192210316658, -0.056752339005470276, -0.029268378391861916, 0.003199255559593439, -0.013215466402471066, -0.016209103167057037, 0.04286087676882744, -0.009277589619159698, 0.025588655844330788, 0.0342271663248539, 0.009408227168023586, -0.006497986614704132, -0.014018427580595016, 0.01012926734983921, 0.003728758078068495, 0.03320571780204773, -0.04894543066620827, 0.003873536130413413, -0.03696524351835251, -0.020595550537109375, 0.011658594012260437, 0.016796523705124855, -0.0317651592195034, -0.0231368038803339, -0.028520774096250534, 0.027338320389389992, -0.046823952347040176, -0.03273282200098038, -0.03639359399676323, 0.02055709809064865, 0.038542576134204865, -0.0292605422437191, 0.018173323944211006, -0.004392046015709639, -0.024777280166745186, 0.019365020096302032, 0.018451884388923645, -0.0530916303396225, 0.00853828527033329, 0.017871495336294174, -0.0044248769991099834, -0.008606111630797386, 0.01825571246445179, 0.06036670506000519, 0.027979375794529915, 0.01498199813067913, -0.04721912369132042, 0.012914160266518593, 0.015303341671824455, 0.06350081413984299, 0.03104604221880436, -0.0030975756235420704, 0.00469394912943244, -0.023593442514538765, -0.011463094502687454, -0.037115294486284256, -0.009878306649625301, -0.0027421528939157724, 0.02119665965437889, -0.035711802542209625, -0.060341496020555496, 0.06169045343995094, 0.010144487954676151, 0.005203308071941137, -0.005925947334617376, 0.006401538383215666, 0.007185217924416065, -0.030206531286239624, 0.013199555687606335, 0.07402985543012619, -0.06727129220962524, -0.008732646703720093, -0.02696254476904869, 0.01574030891060829, 0.018906906247138977, 0.010230666026473045, -0.03463584557175636, -0.04846654832363129, -0.02809714339673519, 0.01967940293252468, -0.06647014617919922, -0.03274110332131386, -0.04033847898244858, 0.019021987915039062, 0.007569534238427877, 0.01878654584288597, -0.05604175105690956, -0.014374603517353535, 0.0018557881703600287, -0.027568425983190536, 0.03022768162190914, -0.047291725873947144, -0.0028172810561954975, 0.0078106713481247425, -0.053185850381851196, 0.002725862432271242, -0.016679519787430763, 0.05237859487533569, 0.03416774794459343, -0.03365577757358551, 0.0034397239796817303, -0.06009459123015404, 0.01299215666949749, -0.013863291591405869, 0.053749822080135345, 0.01409026701003313, -0.01867619715631008, -0.041968513280153275, 0.014034513384103775, -0.03172311186790466, 0.009215599857270718, -0.0009910999797284603, -0.0033943047747015953, 0.00987297110259533, 0.041160501539707184, 0.02085578627884388, 0.025641482323408127, -0.016597440466284752, -0.010584458708763123, 0.031975213438272476, -0.0613163597881794, -0.020063236355781555, -0.030536644160747528, -0.0620543509721756, 0.019562967121601105, 0.008247625082731247, 0.007035295013338327, -0.03876008465886116, 0.03515302762389183, 0.035925038158893585, 0.0254070945084095, 0.055910222232341766, 0.010831035673618317, 0.01737275719642639, -0.025557180866599083, 0.006499926559627056, -0.08736495673656464, 0.0048056188970804214, 0.027989592403173447, 0.006753775291144848, 0.003358513582497835, -0.010093416087329388, -0.025030778720974922, 0.06443220376968384, -0.06728767603635788, 0.004546897020190954, 0.015423166565597057, -0.02449013479053974, -0.012351877056062222, 0.017509354278445244, -0.07931686192750931, 0.0036334244068711996, 0.019619090482592583, -0.03693418577313423, -0.01127383578568697, -0.031297702342271805, 0.0573306530714035, -0.0006215816247276962, 0.022522583603858948, -0.016125619411468506, -0.0024861390702426434, 0.0734497532248497, 0.024844275787472725, 0.016657764092087746, 0.052188605070114136, -0.00849858857691288, 0.012984040193259716, 0.028389304876327515, -0.016862930729985237, -0.006524467375129461, 0.009074431844055653, -0.0345938615500927, -0.05352741852402687, 0.06285477429628372, 0.0037782988511025906, -0.04009134694933891, -0.042685266584157944, 0.060431599617004395, 0.011283481493592262, -0.02796662412583828, -0.06495454162359238, 0.009039299562573433, -0.047033898532390594, 0.0011952409986406565, -0.02317832224071026, 0.010104594752192497, -0.04627178609371185, 0.04839146509766579, -0.006400651764124632, -0.005822110455483198, 0.06450864672660828, -0.024854525923728943, -0.0038856687024235725, -0.0171496644616127, 0.08419938385486603, 0.07635485380887985, 0.11159120500087738, -0.0000034549580050224904, 0.06629154831171036, -0.019818909466266632, -0.040505483746528625, 0.010406478308141232, 0.01076517440378666, -0.02321273274719715, -0.01620444282889366, 0.019394954666495323, 0.0649145171046257, -0.01120503805577755, 0.08366849273443222, -0.011183692142367363, -0.008312223479151726, -0.013446353375911713, 0.024155594408512115, 0.009966517798602581, 0.07180419564247131, 0.04223296791315079, 0.0055483621545135975, -0.001905687153339386, -0.0658903419971466, 0.055029209703207016, -0.035544343292713165, -0.018678607419133186, 0.015056699514389038, 0.01098458468914032, 0.039995741099119186, 0.02730199508368969, 0.0502527616918087, 0.06863630563020706, -0.02646981179714203, -0.008343891240656376, 0.021125661209225655, 0.004203008953481913, -0.0011074073845520616, 0.02392975240945816, -0.017723262310028076, -0.01783449947834015, 0.007191265467554331, -0.03090156428515911, -0.03884299099445343, -0.04321281984448433, -0.020642496645450592, 0.029096093028783798, -0.043733175843954086, 0.00582806346938014, 0.018785102292895317, -0.005810306407511234, -0.023385679349303246, -0.06847405433654785, -0.017540493980050087, -0.04565385729074478, -0.05883825197815895, -0.02408590540289879, 0.018042609095573425, -0.018143953755497932, -0.02039075456559658, -0.019891591742634773, -0.04942556470632553, -0.020663250237703323, 0.04439399391412735, -0.056411515921354294, -0.014030887745320797, 0.006386447232216597, 0.001283667515963316, 0.024127062410116196, 0.01230575516819954, 0.026154635474085808, 0.009705619886517525, 0.008768719621002674, -0.001971009885892272, 0.01626100204885006, 0.026261551305651665, -0.0011564424494281411, -0.006972780451178551, -0.10084188729524612, 0.009014316834509373, 0.024329833686351776, -0.0013527150731533766, -0.06791993975639343, 0.021382100880146027, 0.01773987151682377, 0.024360550567507744, 0.039867572486400604, -0.013059509918093681, 0.0013327739434316754, -0.021970879286527634, 0.01813877373933792, -0.017210381105542183, 0.009808230213820934, 0.050171397626399994, -0.02581937052309513, 0.08060214668512344, -0.000829737342428416, -0.0048769498243927956, -0.008724047802388668, -0.026125814765691757, -0.006611441727727652, 0.028128093108534813, -0.017067190259695053, -0.031952470541000366, -0.026003889739513397, -0.064544178545475, -0.025741148740053177, 0.02418256364762783, -0.021771879866719246, -0.0166065264493227, 0.03249837085604668, 0.014753635972738266, -0.035747822374105453, 0.035471100360155106, -0.04503073915839195, 0.037291232496500015, 0.004005540627986193, 0.0010550948791205883, -0.009440244175493717, 0.01612609252333641, 0.002798844361677766, -0.04008263349533081, 0.03131823614239693, -0.04457215219736099, -0.021134646609425545, 0.0030718939378857613, 0.014023658819496632, 0.020406408235430717, -0.0049903253093361855, -0.004483079072088003 ]
[ -0.06226268783211708, 0.01515254471451044, -0.02707315795123577, -0.011585484258830547, 0.028624113649129868, -0.002129998756572604, -0.006102517247200012, 0.02531582862138748, 0.0037651772145181894, -0.031199200078845024, -0.011641426011919975, -0.007595572154968977, 0.00396752217784524, 0.007999987341463566, 0.08661817759275436, 0.012967949733138084, 0.013735178858041763, -0.08055378496646881, -0.024985413998365402, 0.033624421805143356, -0.002475663088262081, -0.03347601369023323, -0.01184848789125681, 0.006119414232671261, 0.03301118314266205, 0.0021608341485261917, 0.041019998490810394, -0.0525900200009346, 0.0005530807538889349, -0.19071772694587708, -0.003261336125433445, 0.03533095121383667, 0.042879726737737656, -0.003966089338064194, -0.02794906683266163, 0.047318726778030396, 0.032344114035367966, 0.0021255449391901493, 0.002070549177005887, 0.05259097367525101, 0.015278312377631664, 0.010225579142570496, -0.003157991450279951, -0.05656587332487106, 0.025669332593679428, -0.010847236961126328, -0.01806691102683544, -0.024343490600585938, -0.030083943158388138, 0.015122786164283752, -0.0543990433216095, -0.049309153109788895, -0.02867324836552143, -0.02887394279241562, -0.04037554934620857, 0.040093302726745605, 0.03292185440659523, 0.048742569983005524, 0.006418339908123016, 0.013815678656101227, 0.00665022199973464, -0.027557844296097755, -0.1492851972579956, 0.10698092728853226, 0.022570012137293816, 0.026390695944428444, -0.049742162227630615, 0.04012758284807205, -0.004787049721926451, 0.11939045786857605, -0.007066733669489622, -0.029665807262063026, 0.002454458037391305, 0.03567177802324295, 0.00023016655177343637, 0.010039671324193478, 0.01232579629868269, 0.04305403679609299, 0.032199013978242874, -0.03669968992471695, -0.03397643193602562, 0.014042009599506855, -0.009320338256657124, -0.026595642790198326, -0.03790851682424545, -0.006687085144221783, 0.007234558928757906, 0.03859269246459007, -0.031430140137672424, 0.022472277283668518, 0.051517535001039505, 0.005291064735502005, -0.007973499596118927, -0.0015857515390962362, -0.08020367473363876, -0.059564534574747086, -0.011820987798273563, -0.011552342213690281, -0.028664560988545418, 0.42676064372062683, -0.00033233192516490817, -0.035377584397792816, 0.08402781933546066, 0.042579542845487595, -0.025314221158623695, -0.013148903846740723, 0.03326164558529854, -0.051494013518095016, 0.029068978503346443, 0.008669675327837467, -0.021234149113297462, -0.003150508040562272, 0.042067185044288635, -0.059979259967803955, 0.06536424905061722, 0.03998720273375511, 0.055971480906009674, 0.035898659378290176, -0.03751302883028984, -0.05239585414528847, 0.017762014642357826, 0.011868078261613846, -0.0056184884160757065, -0.012573455460369587, -0.005372295156121254, -0.05207577347755432, 0.04621850699186325, 0.04842647537589073, 0.041177183389663696, -0.025868842378258705, 0.05429365858435631, -0.02491050958633423, -0.049378059804439545, 0.012977877631783485, -0.015563196502625942, 0.007951959036290646, 0.0415758453309536, -0.015357310883700848, 0.02249939553439617, 0.036508508026599884, 0.06220560893416405, -0.034012846648693085, -0.023118868470191956, 0.005476830061525106, -0.03249562159180641, 0.14218536019325256, -0.025711096823215485, -0.03000142239034176, -0.03704115003347397, -0.025222143158316612, 0.01868434250354767, 0.02589412033557892, -0.005265064537525177, -0.05245862901210785, 0.05164729431271553, -0.004055594559758902, 0.09743396192789078, -0.014845747500658035, -0.05657560005784035, -0.00299658952280879, -0.025619827210903168, -0.01134946197271347, -0.03681297227740288, 0.004341752268373966, 0.058738116174936295, -0.08704887330532074, -0.023249616846442223, -0.012192671187222004, 0.029641106724739075, -0.10874738544225693, -0.00631296681240201, -0.014239962212741375, -0.035930462181568146, 0.010452049784362316, 0.043911222368478775, -0.00760053051635623, -0.05421162396669388, -0.0020239176228642464, 0.0561477355659008, 0.019313469529151917, 0.011719129979610443, 0.01460705790668726, -0.044125910848379135, 0.029362039640545845, -0.058652885258197784, -0.10346641391515732, -0.03690427914261818, -0.025932345539331436, -0.01676963083446026, 0.014003613963723183, -0.02085827849805355, -0.0030428359750658274, -0.0762641429901123, 0.10445491224527359, -0.06954634189605713, -0.01984851248562336, 0.03194770589470863, -0.015174096450209618, -0.051530465483665466, -0.015090838074684143, -0.06211556866765022, 0.009758304804563522, -0.0537274070084095, 0.010439532808959484, -0.06304927170276642, 0.051198869943618774, 0.0636819452047348, -0.031237579882144928, 0.09897179901599884, 0.03609395772218704, -0.05678478628396988, -0.03892465680837631, -0.030449191108345985, 0.025880156084895134, -0.006992485374212265, -0.028175178915262222, 0.026395054534077644, 0.013223995454609394, -0.011630045250058174, 0.023448791354894638, 0.002548093209043145, -0.009486035443842411, -0.016258101910352707, -0.34808531403541565, -0.030823905020952225, 0.01562489289790392, -0.032827965915203094, 0.04668160527944565, -0.030732225626707077, 0.0467514730989933, -0.018430154770612717, 0.009705591015517712, 0.04476984962821007, 0.029882017523050308, -0.02250368520617485, 0.02600853331387043, -0.07474404573440552, -0.000313968543196097, 0.0400334894657135, -0.032835062593221664, 0.003261276986449957, -0.0033091744408011436, 0.01804216578602791, 0.014944600872695446, 0.004100789315998554, -0.02611306682229042, -0.05942289158701897, 0.007034728303551674, -0.0380113460123539, 0.09232692420482635, 0.05629778653383255, 0.04445483908057213, -0.03001897782087326, 0.05290206894278526, 0.0057966504245996475, -0.0031207751017063856, -0.11134850233793259, 0.01036002580076456, 0.0145527683198452, 0.01826409623026848, -0.03370768204331398, -0.0022257049567997456, -0.041453033685684204, -0.009713233448565006, 0.02861049212515354, -0.06269603967666626, -0.015741106122732162, -0.11760836839675903, 0.015353016555309296, -0.032157011330127716, -0.03214913234114647, -0.010753022506833076, 0.06785129755735397, 0.0102910865098238, -0.03211890161037445, -0.00457926606759429, 0.02428288385272026, -0.032927148044109344, -0.005008045583963394, -0.075226329267025, 0.002381980651989579, -0.0057244375348091125, -0.010819981805980206, 0.00841822661459446, 0.08382678031921387, 0.04489966109395027, -0.046245235949754715, -0.012496890500187874, 0.03192199021577835, -0.0034043858759105206, 0.019203810021281242, 0.032237861305475235, 0.022139698266983032, -0.027158239856362343, 0.0674663856625557, -0.021339889615774155, 0.013640189543366432, 0.04245195537805557, 0.033179882913827896, -0.012091419659554958, 0.011639644391834736, -0.009904278442263603, -0.01765439473092556, 0.04342501610517502, -0.027204647660255432, 0.026660721749067307, -0.03030373714864254, -0.02109953947365284, 0.03215378150343895, -0.010166619904339314, -0.05565425753593445, 0.069603331387043, 0.014565791934728622, -0.025740070268511772, 0.03715428337454796, -0.018293878063559532, -0.0029272406827658415, 0.021715786308050156, -0.01687551662325859, -0.25121188163757324, 0.0019663451239466667, 0.06719225645065308, 0.05877009034156799, -0.01753615401685238, 0.04673103243112564, 0.031136563047766685, -0.04538089781999588, -0.0048786187544465065, 0.022895533591508865, 0.047252655029296875, 0.02729356475174427, -0.005920950789004564, 0.0013459735782817006, 0.011312858201563358, 0.00724740931764245, 0.041915539652109146, 0.02228793129324913, 0.006911996752023697, -0.00041780652827583253, 0.03257524594664574, -0.014803345315158367, 0.14548902213573456, 0.0003121098270639777, 0.027508800849318504, -0.012693398632109165, 0.025510093197226524, 0.003185445908457041, 0.06275086104869843, -0.03214377164840698, 0.02673766016960144, -0.03870416060090065, 0.02470467984676361, 0.007321325596421957, 0.03372715041041374, -0.08651554584503174, -0.013356980867683887, 0.031288325786590576, 0.050772592425346375, 0.0039052071515470743, 0.026026848703622818, 0.00012601101479958743, -0.001997985877096653, 0.026775198057293892, 0.04123421758413315, 0.013230780139565468, 0.026820499449968338, -0.038734320551157, -0.06314916163682938, -0.011307191103696823, -0.02503911405801773, -0.018435310572385788, 0.02153221145272255, -0.0071403211914002895, 0.0013826116919517517, 0.05066637694835663, 0.038936179131269455, -0.013500899076461792, 0.01419897936284542, 0.03171513229608536, -0.029518848285079002, -0.025015663355588913, 0.08996881544589996, 0.021468525752425194, 0.03004850633442402 ]
[ 0.033539194613695145, -0.005976465996354818, 0.02696651965379715, 0.009893960319459438, 0.003316336078569293, 0.021810797974467278, 0.015048525296151638, 0.020539050921797752, 0.02179650217294693, 0.022354818880558014, -0.03703036531805992, 0.016201963648200035, -0.010943664237856865, 0.017211010679602623, 0.016621848568320274, -0.006598905194550753, 0.003973731305450201, -0.0190400592982769, 0.031150752678513527, 0.01659051887691021, 0.010640640743076801, 0.019290201365947723, 0.013238281942903996, -0.03878749907016754, -0.01005659718066454, -0.02290751226246357, -0.023568052798509598, 0.008196952752768993, 0.030562030151486397, -0.12197216600179672, -0.02193979173898697, 0.0065033999271690845, 0.011004873551428318, 0.026547903195023537, -0.030514314770698547, -0.029189126566052437, -0.018734289333224297, 0.05582970008254051, -0.0070421695709228516, 0.031166737899184227, -0.022140871733427048, 0.0015572081319987774, 0.007720123510807753, 0.000023780236006132327, 0.017496509477496147, 0.003288804553449154, -0.0021327051799744368, -0.0024192489217966795, -0.009456779807806015, 0.01995408907532692, -0.0425267331302166, 0.004023006651550531, -0.024934248998761177, 0.008776599541306496, 0.0048809414729475975, -0.017763232812285423, 0.025971924886107445, -0.025581860914826393, 0.01940743811428547, -0.018063697963953018, 0.004657156299799681, -0.027776779606938362, -0.07592570036649704, -0.007380093447864056, -0.0056328740902245045, 0.000873717712238431, -0.005992612335830927, 0.03603802248835564, -0.032685138285160065, 0.017572449520230293, -0.013990137726068497, 0.025286532938480377, -0.023845257237553596, -0.027615731582045555, -0.0161543320864439, 0.011807731352746487, 0.006045229732990265, -0.034931231290102005, 0.014074946753680706, 0.00019924918888136744, 0.0006597586325369775, 0.014446034096181393, 0.011054418049752712, -0.012777346186339855, -0.014323558658361435, 0.019632771611213684, 0.012787826359272003, -0.029356548562645912, -0.01980140618979931, 0.022017311304807663, -0.04574476182460785, 0.01915370486676693, 0.015492398291826248, 0.01992514543235302, -0.08859989792108536, -0.019214212894439697, -0.030809128656983376, -0.024014748632907867, -0.012698186561465263, 0.8520916700363159, 0.0017444356344640255, 0.01664668880403042, 0.031007202342152596, -0.027717532590031624, 0.029177527874708176, 0.0031651663593947887, 0.0038229734636843204, -0.003535279305651784, 0.0006986402440816164, -0.025259321555495262, -0.02100418135523796, 0.035482361912727356, 0.026787441223859787, 0.0056534698233008385, 0.05914849787950516, 0.0018902977462857962, 0.041326750069856644, -0.020828090608119965, -0.011652303859591484, -0.009502674452960491, 0.03979262337088585, 0.019595680758357048, 0.02780451811850071, 0.03545143082737923, -0.0029593289364129305, -0.1522417962551117, 0.017502209171652794, -7.782738711863125e-33, 0.04513793811202049, 0.003571060486137867, -0.009672238491475582, 0.02459721826016903, -0.00842377170920372, 0.005632156040519476, 0.0008326941751874983, 0.006201674696058035, -0.01879454404115677, -0.022155433893203735, 0.0012391385389491916, -0.0138635179027915, -0.002373339841142297, -0.02657763659954071, 0.005953741259872913, -0.00901928823441267, 0.01338936947286129, 0.020500803366303444, -0.00003011216722370591, 0.034375082701444626, 0.028912831097841263, 0.004328274633735418, -0.017517561092972755, -0.005868006497621536, -0.020213302224874496, 0.027042025700211525, 0.020075734704732895, -0.00270389043726027, -0.008292821235954762, -0.0594773031771183, -0.037553831934928894, 0.02239016257226467, -0.009733111597597599, -0.051603544503450394, 0.02481915056705475, -0.0603899285197258, -0.018536072224378586, -0.001446875394321978, 0.011628641746938229, -0.051433756947517395, -0.03370856121182442, 0.03469488397240639, -0.06898242980241776, -0.03586609289050102, -0.00027666089590638876, 0.008828979916870594, -0.046826060861349106, 0.02910289540886879, -0.005473279859870672, 0.019402407109737396, 0.008518613874912262, 0.030520154163241386, 0.014346730895340443, 0.017489032819867134, 0.014019856229424477, -0.010818121023476124, 0.011994501575827599, -0.008439640514552593, 0.03196275606751442, 0.029836654663085938, 0.027945784851908684, 0.008322088979184628, -0.041514359414577484, 0.04362832382321358, -0.00106417469214648, 0.019781645387411118, -0.018701862543821335, -0.0030777400825172663, 0.014713607728481293, -0.0060922810807824135, -0.052696287631988525, 0.0009704190888442099, 0.016414185985922813, 0.009099617600440979, -0.025460658594965935, 0.0017179561546072364, -0.049451276659965515, 0.021244531497359276, 0.014701561070978642, 0.07999899238348007, -0.0027208984829485416, -0.007041857112199068, -0.02017514780163765, -0.05518823489546776, -0.020982015877962112, -0.01010917779058218, 0.031770944595336914, -0.06105039641261101, -0.0030049982015043497, 0.009254018776118755, 0.025451304391026497, -0.006147420033812523, 0.0018026601755991578, -0.006262174341827631, -0.008626194670796394, 8.046733437222702e-33, 0.000989460968412459, 0.007782765198498964, -0.04556284844875336, 0.011731917969882488, 0.043782398104667664, -0.016430538147687912, 0.007849335670471191, -0.007198717445135117, -0.04530446603894234, 0.014202114194631577, -0.016412682831287384, -0.021590188145637512, -0.0056667267344892025, 0.016905473545193672, 0.08013682812452316, -0.01647699996829033, 0.028353620320558548, -0.043702632188797, -0.0048191482201218605, 0.02057170867919922, 0.018919620662927628, 0.008000340312719345, -0.03639610856771469, 0.01049114391207695, 0.01839050091803074, 0.04241962358355522, -0.016312075778841972, 0.024974247440695763, -0.017804766073822975, -0.023193562403321266, -0.016626302152872086, -0.004401187878102064, 0.023672698065638542, -0.016305720433592796, 0.0012304463889449835, 0.020136510953307152, 0.006881793029606342, -0.006375509779900312, 0.0008728215470910072, 0.0011050201719626784, 0.027179395779967308, 0.027471186593174934, -0.01920073665678501, 0.025384914129972458, 0.0022575841285288334, 0.030005037784576416, -0.010194001719355583, -0.027015473693609238, 0.0044934372417628765, 0.008679235354065895, -0.004283449612557888, 0.0006238982314243913, -0.009009910747408867, -0.012392318807542324, 0.000950951362028718, -0.03293997794389725, 0.011186888441443443, 0.016903106123209, 0.015549364499747753, 0.02109566703438759, -0.011662936769425869, -0.014369380660355091, -0.026163186877965927, -0.018234459683299065, -0.019054744392633438, -0.026022324338555336, -0.005072975065559149, -0.004237467888742685, -0.021821461617946625, 0.011881115846335888, -0.0009549850947223604, 0.007776740938425064, 0.025232672691345215, 0.04945000633597374, 0.044056765735149384, 0.018594959750771523, -0.02662733756005764, 0.006500792223960161, -0.046737175434827805, 0.01074186246842146, -0.002564343623816967, 0.01097078062593937, 0.01859583891928196, 0.03216176852583885, -0.016211502254009247, 0.024209756404161453, -0.010886838659644127, 0.026399491354823112, -0.012061637826263905, -0.027637168765068054, -0.0066651878878474236, -0.038742002099752426, 0.0017349113477393985, -0.009925777092576027, 0.005375875625759363, -1.3656610953205472e-8, -0.06243542954325676, -0.014585916884243488, -0.03361349180340767, 0.011305744759738445, -0.008372720330953598, 0.01487825158983469, -0.018568240106105804, 0.002554076025262475, 0.005031418986618519, -0.00043286223080940545, 0.044550731778144836, 0.019008349627256393, 0.013886081986129284, 0.012720760889351368, 0.020754316821694374, -0.03752942383289337, -0.00860095676034689, -0.02599358558654785, 0.03243614733219147, 0.012267662212252617, 0.04681413620710373, 0.06955897808074951, -0.02344731241464615, 0.018565312027931213, -0.02127145603299141, -0.009771136566996574, 0.0008311032433994114, -0.07277922332286835, -0.0076010809279978275, 0.00009075769048649818, 0.008283264003694057, -0.012823514640331268, -0.028752274811267853, 0.02991594187915325, -0.013843945227563381, -0.029057439416646957, 0.023311855271458626, 0.0450279600918293, -0.0012889702338725328, -0.012834211811423302, -0.009737765416502953, -0.02552935667335987, 0.003956615924835205, -0.036859795451164246, -0.027245044708251953, 0.03419971093535423, -0.02517053671181202, -0.03432187810540199, 0.014318342320621014, -0.03397264704108238, -0.03229156881570816, 0.01597609557211399, 0.003761369502171874, 0.02996218390762806, 0.015336507931351662, -0.023267507553100586, 0.002893385710194707, 0.024767212569713593, -0.021858004853129387, -0.012522894889116287, 0.01126349251717329, 0.03163491189479828, -0.0252799391746521, -0.016760580241680145 ]
presentations-tell-a-story
https://markhneedham.com/blog/2012/08/14/presentations-tell-a-story
false
2012-08-25 10:00:07
Ruby: Finding where gems are
[ "ruby" ]
[ "Ruby" ]
In my infrequent travels into Ruby land I always seem to forget where the gems that I've installed actually live on the file system but my colleague http://twitter.com/nickstenning[Nick] recently showed me a neat way of figuring it out. If I'm in the folder that contains all my ThoughtWorks graph code I'd just need to run the following command: [source,text] ---- $ gem which rubygems /Users/mneedham/.rbenv/versions/jruby-1.6.7/lib/ruby/site_ruby/1.8/rubygems.rb ---- I then loaded up irb and wrote a simple cypher query executed using neography: [source,ruby] ---- > require 'rubygems' => true > require 'neography' => true > neo = Neography::Rest.new(:port => 7476) => #<Neography::Rest:0x40d3ab8b @protocol="http://", @server="localhost", @cypher_path="/cypher", @log_file="neography.log", @authentication={}, @directory="", @log_enabled=false, @gremlin_path="/ext/GremlinPlugin/graphdb/execute_script", @parser={:parser=>CrackParser}, @max_threads=20, @port=7476> > neo.execute_query("START n = node(1) RETURN n") => {"data"=>[[{"outgoing_relationships"=>"http://localhost:7476/db/data/node/1/relationships/out", "data"=>{"thoughtquitter"=>true, "name"=>"Marjorie Pries", "type"=>"person"}, "traverse"=>"http://localhost:7476/db/data/node/1/traverse/{returnType}", "all_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/all/{-list|&|types}", "property"=>"http://localhost:7476/db/data/node/1/properties/{key}", "self"=>"http://localhost:7476/db/data/node/1", "properties"=>"http://localhost:7476/db/data/node/1/properties", "outgoing_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/out/{-list|&|types}", "incoming_relationships"=>"http://localhost:7476/db/data/node/1/relationships/in", "extensions"=>{}, "create_relationship"=>"http://localhost:7476/db/data/node/1/relationships", "paged_traverse"=>"http://localhost:7476/db/data/node/1/paged/traverse/{returnType}{?pageSize,leaseTime}", "all_relationships"=>"http://localhost:7476/db/data/node/1/relationships/all", "incoming_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/in/{-list|&|types}"}]], "columns"=>["n"]} ---- If I want to debug the +++<cite>+++execute_query+++</cite>+++ function of neography then I'd need to make a change to +++<cite>+++/Users/mneedham/.rbenv/versions/jruby-1.6.7/lib/ruby/gems/1.8/gems/neography-0.0.26/lib/neography/rest.rb+++</cite>+++ which is just a case of going up a few levels from where +++<cite>+++rubygems.rb+++</cite>+++ lives and then finding the appropriate gem. If I change that function to print a stupid message... [source,ruby] ---- def execute_query(query, params = {}) puts "just testing you come up" options = { :body => {:query => query, :params => params}.to_json, :headers => {'Content-Type' => 'application/json'} } result = post(@cypher_path, options) end ---- ...when we run it through irb again we should see it: [source,text] ---- > neo.execute_query("START n = node(1) RETURN n") just testing you come up => {"data"=>[[{"outgoing_relationships"=>"http://localhost:7476/db/data/node/1/relationships/out", "data"=>{"thoughtquitter"=>true, "name"=>"Marjorie Pries", "type"=>"person"}, "traverse"=>"http://localhost:7476/db/data/node/1/traverse/{returnType}", "all_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/all/{-list|&|types}", "property"=>"http://localhost:7476/db/data/node/1/properties/{key}", "self"=>"http://localhost:7476/db/data/node/1", "properties"=>"http://localhost:7476/db/data/node/1/properties", "outgoing_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/out/{-list|&|types}", "incoming_relationships"=>"http://localhost:7476/db/data/node/1/relationships/in", "extensions"=>{}, "create_relationship"=>"http://localhost:7476/db/data/node/1/relationships", "paged_traverse"=>"http://localhost:7476/db/data/node/1/paged/traverse/{returnType}{?pageSize,leaseTime}", "all_relationships"=>"http://localhost:7476/db/data/node/1/relationships/all", "incoming_typed_relationships"=>"http://localhost:7476/db/data/node/1/relationships/in/{-list|&|types}"}]], "columns"=>["n"]} ---- And now hopefully I won't forget where to find the gems!
null
null
[ 0.00500186113640666, 0.012961200438439846, -0.03092098794877529, 0.058157604187726974, 0.1224406436085701, 0.012511711567640305, 0.04282420501112938, 0.016110507771372795, 0.0051120491698384285, -0.02502015046775341, -0.04993068426847458, 0.00018510126392357051, -0.07330609112977982, 0.017026521265506744, -0.0030863925348967314, 0.06952229887247086, 0.05659976229071617, 0.00805861596018076, 0.01972375437617302, -0.0011793028097599745, 0.04704822227358818, 0.04861836135387421, 0.001822329475544393, 0.02008197084069252, 0.025057746097445488, 0.022742973640561104, 0.022615130990743637, 0.0029446890112012625, -0.07025187462568283, 0.017035163938999176, 0.018982935696840286, -0.02466648630797863, 0.04095826670527458, -0.000011623152204265352, 0.03184052184224129, 0.027856312692165375, -0.031128525733947754, -0.0056886025704443455, -0.008631308563053608, -0.001316563575528562, -0.04837861657142639, 0.034552235156297684, -0.0000138696113936021, 0.021495290100574493, -0.0377020537853241, 0.025396496057510376, -0.05450671166181564, 0.04209716245532036, 0.025097088888287544, -0.012202181853353977, -0.07687143981456757, 0.04150453954935074, 0.007980137132108212, -0.02042102813720703, 0.0028288031462579966, 0.04222088307142258, 0.013866291381418705, -0.07889773696660995, 0.04920150712132454, -0.017258234322071075, -0.007159362081438303, 0.0016053048893809319, -0.008385049179196358, 0.04109075292944908, 0.010412609204649925, -0.05160965025424957, 0.011500060558319092, 0.05040464922785759, -0.05341454595327377, -0.01621031016111374, 0.0020934937056154013, 0.006473068613559008, -0.027107933536171913, -0.009144823998212814, 0.013770953752100468, -0.0053183590061962605, -0.0016395837301388383, 0.0397774800658226, 0.008031962439417839, 0.06310375034809113, -0.05737583711743355, 0.015779675915837288, -0.018449338153004646, 0.03897630050778389, 0.00687650078907609, -0.04659701883792877, -0.04353925213217735, 0.003093092469498515, -0.06743572652339935, 0.0628548189997673, 0.00883348286151886, -0.06275173276662827, 0.0037611655425280333, 0.012812708504498005, -0.019682472571730614, 0.014457416720688343, -0.012849518097937107, 0.027366498485207558, -0.0012068202486261725, -0.005768109112977982, -0.02057615853846073, -0.017150627449154854, -0.022675907239317894, 0.009034901857376099, -0.0701124519109726, -0.0027711347211152315, -0.013441004790365696, -0.01995411515235901, -0.0025454754941165447, -0.020449841395020485, -0.039530254900455475, 0.0022596041671931744, -0.012942735105752945, 0.013488021679222584, -0.06713252514600754, 0.05674165487289429, 0.024922866374254227, -0.04007507488131523, -0.015104671008884907, 0.0157172754406929, 0.06254861503839493, 0.021172717213630676, -0.005727574694901705, 0.056290168315172195, -0.004826676566153765, 0.025454726070165634, -0.004347649868577719, 0.04173728823661804, -0.02833857573568821, -0.07231249660253525, -0.024273229762911797, 0.06817085295915604, -0.0029810708947479725, 0.020652160048484802, -0.014171683229506016, -0.013869741931557655, -0.0018007524777203798, -0.016892550513148308, 0.056631479412317276, 0.03668070584535599, 0.006603890098631382, -0.011752151884138584, 0.009003544226288795, -0.015109149739146233, 0.015980003401637077, 0.009971531108021736, -0.003739812644198537, -0.026555826887488365, -0.03135251998901367, 0.028130371123552322, -0.01697682775557041, 0.013303807936608791, 0.0544365830719471, -0.03372502326965332, -0.002554989419877529, 0.08085111528635025, 0.037658754736185074, 0.006649238057434559, -0.036874860525131226, -0.013816014863550663, 0.037679512053728104, 0.0543731264770031, 0.005837385542690754, 0.0841532051563263, 0.0026624754536896944, -0.017207136377692223, -0.007701103575527668, 0.034481480717659, 0.00680456543341279, -0.02082098089158535, -0.057529203593730927, -0.05038173869252205, 0.0881434977054596, -0.019884681329131126, -0.020582564175128937, 0.019577542319893837, 0.06299639493227005, 0.025865236297249794, 0.008732669986784458, -0.03881722316145897, -0.07261587679386139, 0.027698613703250885, -0.020205989480018616, 0.03421609848737717, 0.012297972105443478, -0.017995037138462067, 0.08151855319738388, 0.02565755322575569, -0.002943272003903985, 0.036973562091588974, -0.10404777526855469, -0.07719936966896057, 0.017103996127843857, -0.023912448436021805, 0.06161053851246834, -0.008620783686637878, -0.014211640693247318, 0.012464456260204315, 0.004009381867945194, 0.021573683246970177, 0.010489033535122871, -0.014157606288790703, 0.03170323371887207, -0.06827227026224136, -0.059732574969530106, 0.07007332891225815, 0.013848953880369663, -0.030565528199076653, -0.03335374593734741, 0.014268102124333382, -0.026575496420264244, -0.01820451021194458, 0.038437142968177795, -0.012229971587657928, 0.045027587562799454, 0.03019731678068638, 0.008411108516156673, -0.037902627140283585, 0.01272591296583414, -0.021425029262900352, 0.018303023651242256, 0.02039293199777603, -0.016046971082687378, -0.02027313783764839, 0.00030159708694554865, 0.09490113705396652, 0.03781081363558769, -0.017025798559188843, -0.06277520954608917, 0.03173539787530899, 0.012235620990395546, -0.05649415776133537, 0.009600697085261345, -0.008873007260262966, -0.01080001424998045, 0.01248111017048359, -0.024577921256422997, -0.020531004294753075, 0.006271063350141048, -0.02319100685417652, 0.0020624815952032804, 0.057530637830495834, 0.002823172602802515, 0.04163234680891037, 0.020222794264554977, -0.006300375796854496, 0.016635995358228683, -0.04558666795492172, -0.08398136496543884, 0.005039385054260492, 0.04024823382496834, -0.005627823993563652, 0.04999819025397301, -0.016943320631980896, 0.0018338579684495926, -0.0279765035957098, -0.018460791558027267, 0.02868582308292389, 0.02586062252521515, 0.045606065541505814, -0.01899990253150463, 0.052486203610897064, -0.05756600946187973, 0.02283536270260811, -0.028446095064282417, -0.037879813462495804, -0.02461022324860096, -0.017607273533940315, 0.021266046911478043, -0.005281173158437014, 0.01602019928395748, -0.012126238085329533, 0.029821116477251053, 0.012315326370298862, 0.04467514157295227, 0.0011920034885406494, 0.013038776814937592, 0.01412046980112791, -0.0009387091849930584, -0.022275716066360474, -0.029930900782346725, 0.05449909344315529, -0.06777797639369965, 0.014596087858080864, -0.03145604953169823, -0.044522304087877274, 0.07597561180591583, -0.04304609075188637, -0.036087315529584885, -0.022334564477205276, 0.028284132480621338, 0.038224659860134125, 0.030076799914240837, 0.01587642729282379, 0.05140313878655434, 0.027147430926561356, 0.029204970225691795, 0.008440499193966389, 0.004733118694275618, 0.06991732865571976, 0.00450189970433712, 0.03431934118270874, 0.03383094444870949, -0.023191995918750763, -0.0074485731311142445, -0.03577851131558418, 0.0064295390620827675, -0.03071860782802105, -0.27414366602897644, 0.05047757178544998, -0.04076690226793289, -0.06862702965736389, 0.025738464668393135, -0.03280654177069664, -0.0067375777289271355, -0.04466363042593002, -0.013292321935296059, 0.00560740428045392, -0.015718137845396996, -0.04442920163273811, 0.013460719026625156, 0.014047258533537388, 0.010264462791383266, 0.008707893081009388, 0.003046343568712473, -0.05724292993545532, 0.013910382986068726, 0.001461191801354289, 0.012695218436419964, -0.05994739755988121, 0.001511561800725758, 0.04711241275072098, 0.01826932653784752, 0.06360259652137756, -0.07402348518371582, 0.05125406011939049, -0.032038114964962006, -0.026851274073123932, -0.0007746453047730029, -0.04139237478375435, -0.01096930168569088, 0.013776435516774654, -0.020342562347650528, -0.0008979804115369916, 0.046837449073791504, 0.0012367377057671547, 0.06200716644525528, 0.006318566855043173, -0.0369156152009964, -0.02845015935599804, -0.0027050571516156197, -0.005041561555117369, 0.08398093283176422, -0.0292779803276062, -0.06704104691743851, -0.0191908311098814, -0.028445491567254066, 0.08348223567008972, -0.03193148225545883, -0.04491346701979637, 0.015214934945106506, 0.020482471212744713, -0.004488600883632898, -0.03458218649029732, -0.00704806437715888, 0.01528756134212017, -0.06773068010807037, -0.045208223164081573, 0.00836739782243967, -0.020664861425757408, -0.004701999016106129, -0.06170620769262314, 0.0025245100259780884, -0.048881348222494125, -0.07060685008764267, 0.001502692699432373, 0.04217932000756264, 0.019990304484963417, -0.04560966044664383, 0.03273562714457512, -0.0404062382876873, -0.1082029715180397, -0.03204774856567383, -0.003294178517535329, -0.04170349985361099, -0.0010587574215605855, 0.007878182455897331, 0.040399279445409775, -0.053405843675136566, -0.02400996908545494, 0.023744279518723488, 0.022235117852687836, 0.0018812129274010658, -0.020183851942420006, 0.0005736179300583899, -0.020785121247172356, -0.021888814866542816, -0.003657017834484577, 0.0641886368393898, -0.04046732187271118, -0.03266986086964607, -0.0051122126169502735, 0.017605222761631012, 0.0497850626707077, 0.038459908217191696, -0.02422456629574299, 0.043689798563718796, 0.05179968476295471, 0.045724377036094666, -0.036602918058633804, 0.026906274259090424, -0.03185417503118515, -0.03368641063570976, -0.0032550219912081957, -0.0356774665415287, 0.03914143890142441, 0.019823001697659492, 0.030746862292289734, -0.017734821885824203, -0.02213848941028118, 0.012614290229976177, -0.05943308398127556, -0.02342238835990429, 0.008898968808352947, 0.023501835763454437, 0.009087439626455307, 0.05590498074889183, -0.0076283360831439495, -0.07439406961202621, -0.011990160681307316, 0.022690055891871452, 0.009683818556368351, -0.05878310278058052, -0.023728832602500916, 0.0025708298198878765, -0.012894203886389732, 0.004832284525036812, 0.019107786938548088, -0.023772718384861946, -0.00508881313726306, 0.02236534096300602, -0.05329124256968498, 0.048020534217357635, -0.023807458579540253, -0.04858525097370148, -0.03847328945994377, 0.009161160327494144, 0.015427214093506336, -0.03351274132728577, -0.016972411423921585, 0.0031684869900345802, 0.05656607076525688, 0.048620350658893585, 0.012774969451129436, 0.01587842032313347, 0.015279472805559635, 0.02376137673854828, -0.020998932421207428, -0.009207603521645069, -0.03994879499077797, 0.025094900280237198, -0.04330464079976082, -0.008558153174817562, -0.0009603507351130247, 0.042067211121320724, -0.03521919623017311, -0.036590758711099625, -0.023564454168081284, 0.036857493221759796, -0.05633947625756264, 0.01947222463786602, 0.0056572724133729935, -0.031150588765740395, 0.0647902563214302, -0.0019322497537359595, 0.00985017977654934, -0.01909925602376461, 0.024647792801260948, -0.01824801042675972, 0.0007311894441954792, -0.02891899086534977, 0.004752043168991804, 0.015824059024453163, 0.017164111137390137, -0.0018157792510464787, 0.03529365733265877, 0.04593288525938988, 0.024078786373138428, -0.015310403890907764, -0.033019084483385086, 0.03646334260702133, 0.03351115807890892, 0.037157073616981506, 0.03390060365200043, -0.05343083664774895, 0.021806500852108, -0.024774255231022835, -0.013575468212366104, -0.032321617007255554, 0.010902594774961472, -0.045430928468704224, 0.0126540157943964, -0.025349650532007217, -0.07247800379991531, 0.023916324600577354, -0.003726802533492446, 0.01438207644969225, 0.006623285356909037, 0.007748762611299753, -0.03388068079948425, -0.02342957630753517, 0.039525292813777924, 0.09398075938224792, -0.04234319180250168, -0.023913098499178886, 0.03493588790297508, -0.015487943775951862, 0.004410087130963802, 0.008196924813091755, -0.05996149778366089, -0.01409989595413208, -0.009140855632722378, 0.035791900008916855, -0.029319265857338905, -0.031367551535367966, 0.0022385267075151205, -0.027674367651343346, 0.001957915024831891, -0.0019991369917988777, 0.008933336474001408, 0.043793682008981705, 0.011665322817862034, -0.027401575818657875, -0.004018639214336872, 0.007949844002723694, -0.008891583420336246, -0.008520710282027721, -0.000694891030434519, -0.000345210253726691, 0.00568519439548254, 0.06879723072052002, 0.00046265340643003583, 0.017513208091259003, -0.012048528529703617, -0.0004199911782052368, 0.009745788760483265, -0.014195199124515057, 0.021311597898602486, -0.0015001670690253377, 0.0010652189375832677, -0.04927578195929527, 0.008154268376529217, -0.01463640108704567, -0.016195770353078842, -0.003232984570786357, 0.004037613049149513, 0.030933894217014313, 0.01999419927597046, -0.010039674118161201, 0.03510136902332306, 0.005999699700623751, -0.04369557276368141, 0.048505257815122604, -0.04728056490421295, -0.06031087040901184, 0.018828852102160454, -0.051385533064603806, 0.027568431571125984, 0.025577733293175697, 0.005734948441386223, -0.05192136764526367, 0.04799940064549446, 0.030639545992016792, -0.00026668235659599304, 0.042109228670597076, -0.019885120913386345, 0.023458469659090042, -0.05118649825453758, 0.004435036331415176, -0.0878186747431755, 0.010613749735057354, 0.024233145639300346, -0.04864256829023361, 0.000530982157215476, -0.01756046898663044, -0.03129279613494873, -0.001677073771134019, -0.030197804793715477, -0.04408150166273117, 0.033605363219976425, -0.025818509981036186, -0.005570402834564447, 0.01807527057826519, -0.06995391845703125, 0.032304223626852036, 0.0425586923956871, -0.009360489435493946, -0.016408627852797508, -0.024958403781056404, 0.0442211776971817, -0.026810284703969955, 0.037813492119312286, 0.003111183876171708, -0.035838328301906586, 0.07235666364431381, 0.02123114839196205, 0.021059812977910042, 0.0410841703414917, -0.013973345048725605, 0.025050660595297813, 0.02960241585969925, -0.016176747158169746, -0.0011069320607930422, 0.02729266881942749, -0.01909276843070984, -0.034845609217882156, 0.016784094274044037, -0.018866224214434624, 0.011045996099710464, -0.019426921382546425, 0.0758933275938034, 0.019750259816646576, -0.036871425807476044, -0.06756021082401276, 0.04563196003437042, -0.03222547844052315, -0.040860604494810104, -0.032176535576581955, -0.00028344953898340464, -0.03831400349736214, 0.05325649306178093, 0.00396628025919199, 0.0004357383295428008, 0.07094752043485641, -0.000768804457038641, -0.007438884116709232, -0.008897291496396065, 0.07444662600755692, 0.08132215589284897, 0.05199185758829117, 0.03146710619330406, 0.07757757604122162, -0.03233395516872406, -0.028393389657139778, -0.026545213535428047, -0.029793627560138702, 0.004879528656601906, -0.0010034493170678616, 0.0036005189176648855, 0.056493598967790604, -0.04706401005387306, 0.0686136782169342, -0.03289995342493057, 0.012714250944554806, 0.003978900611400604, -0.003963129129260778, 0.00900554470717907, 0.07652680575847626, 0.03725598752498627, 0.04588513821363449, -0.03470846638083458, -0.02994563989341259, 0.034933727234601974, -0.03161149471998215, -0.012653947807848454, 0.034225448966026306, -0.014488709159195423, 0.0031620790250599384, -0.0002143073797924444, 0.029521768912672997, 0.07119400799274445, -0.04123957082629204, -0.01065051555633545, -0.003955063410103321, 0.025473473593592644, -0.03026578389108181, 0.018660515546798706, -0.03425595536828041, -0.0025281307753175497, -0.004216914530843496, -0.06747303158044815, -0.048032019287347794, -0.01133574079722166, -0.030545329675078392, 0.01947782188653946, -0.008401983417570591, 0.00797964259982109, 0.02906038984656334, 0.00852638203650713, 0.01244059856981039, -0.038039810955524445, -0.07126558572053909, -0.06042081117630005, -0.04842737317085266, 0.02195843495428562, 0.0002648229419719428, 0.010415061376988888, -0.030060717836022377, 0.012143539264798164, -0.014314343221485615, -0.009377160109579563, 0.02069268934428692, -0.03561747074127197, -0.04187866672873497, -0.010002142749726772, 0.0064734346233308315, 0.02354785054922104, 0.0501268245279789, 0.07023090869188309, 0.0001304697070736438, 0.010226665996015072, -0.03030957095324993, -0.0006211362779140472, 0.05519183725118637, 0.014278268441557884, -0.015161112882196903, -0.07978644967079163, 0.004820198751986027, 0.011104143224656582, 0.011079828254878521, -0.050219375640153885, -0.020819315686821938, 0.053285151720047, 0.008929545991122723, 0.055006951093673706, -0.004109127447009087, 0.020609183236956596, -0.01954350806772709, 0.015019293874502182, -0.014514125883579254, 0.016829704865813255, 0.02836630865931511, -0.01869714818894863, 0.07988852262496948, 0.01913984678685665, -0.005882960744202137, -0.034287229180336, -0.03919333964586258, -0.0005819604266434908, -0.03220584616065025, -0.024912362918257713, -0.014421517960727215, -0.03754595294594765, -0.09294317662715912, -0.039254914969205856, -0.008272608742117882, -0.014284506440162659, -0.044775716960430145, -0.006940503604710102, 0.0026998782996088266, -0.021962793543934822, 0.04359306022524834, -0.07025018334388733, 0.0250224806368351, -0.023265106603503227, -0.043130673468112946, -0.00778029253706336, 0.011240734718739986, 0.000040579267079010606, -0.001724611734971404, 0.01576341688632965, -0.03027135133743286, -0.0072205462493002415, -0.024921899661421776, 0.047623828053474426, 0.026534590870141983, 0.011393910273909569, 0.0010291205253452063 ]
[ -0.05477481707930565, -0.014686085283756256, -0.029117893427610397, -0.006506575271487236, 0.06191982701420784, -0.07239953428506851, -0.024264497682452202, 0.015808293595910072, -0.007680394221097231, -0.02981855720281601, 0.0338209792971611, -0.029825707897543907, 0.004942536819726229, -0.01522646751254797, 0.07705031335353851, -0.0037172120064496994, -0.0015261282678693533, -0.03422507271170616, -0.027371015399694443, 0.04316515848040581, -0.020090091973543167, -0.04326900094747543, -0.008293027058243752, -0.021612439304590225, -0.007694885600358248, 0.06069293990731239, 0.02284572646021843, -0.003125858260318637, -0.03178662434220314, -0.18325011432170868, 0.018343733623623848, 0.0019057036843150854, 0.025662150233983994, -0.015443209558725357, 0.009069502353668213, 0.017655838280916214, 0.05366241931915283, -0.012574286200106144, 0.008003244176506996, 0.052806854248046875, 0.036394208669662476, 0.008525735698640347, -0.0751454159617424, 0.013692151755094528, 0.016975868493318558, 0.018689727410674095, -0.0020673235412687063, -0.014755241572856903, 0.0012365867150947452, 0.003459448227658868, -0.039171427488327026, 0.009971415624022484, 0.008804324083030224, -0.03557775914669037, 0.00265247980132699, 0.051185768097639084, 0.07275404781103134, 0.08313260227441788, 0.03199988231062889, 0.04676220566034317, 0.00701915891841054, -0.008584920316934586, -0.14221972227096558, 0.04857123643159866, 0.042278021574020386, 0.05232587456703186, -0.05593603104352951, -0.053876351565122604, -0.046407002955675125, 0.0539521649479866, 0.010311160236597061, 0.01230604574084282, -0.07863036543130875, 0.06798941642045975, -0.017143771052360535, -0.018620042130351067, 0.015576246194541454, 0.02500944398343563, 0.02516039088368416, -0.05638119950890541, -0.05997949466109276, 0.0037535654846578836, -0.042026519775390625, 0.007508319336920977, -0.043486904352903366, 0.02125517837703228, -0.03583891689777374, 0.06758474558591843, 0.027150556445121765, 0.027634017169475555, 0.03500795364379883, -0.005452712532132864, 0.026727352291345596, 0.03335323929786682, -0.09776893258094788, -0.046852439641952515, 0.004039329010993242, 0.0410192646086216, -0.02244068868458271, 0.4235340654850006, 0.013321763835847378, -0.02684156782925129, 0.07066158950328827, 0.02989576756954193, -0.031488966196775436, -0.008550947532057762, 0.007227978203445673, -0.042615924030542374, 0.007012330926954746, -0.014702432788908482, 0.01837371289730072, -0.04467874392867088, 0.05115404725074768, -0.08835368603467941, 0.049222905188798904, 0.017825506627559662, 0.02765674516558647, 0.02886299416422844, -0.024927575141191483, 0.005744094029068947, -0.03313998132944107, 0.02896331064403057, 0.04328898340463638, 0.008592378348112106, 0.013461066409945488, -0.011835712939500809, 0.05523201823234558, 0.0299207903444767, 0.013705355115234852, 0.03181328624486923, 0.025431325659155846, -0.0011988852638751268, -0.08677855879068375, 0.02227318286895752, -0.046014249324798584, 0.0484471395611763, 0.04355459287762642, -0.032728057354688644, 0.010444557294249535, 0.01638919673860073, -0.019597452133893967, 0.0016938050976023078, 0.018928859382867813, 0.01496468111872673, -0.004579606931656599, 0.06757711619138718, 0.005661940202116966, -0.03682129085063934, -0.011866881512105465, -0.0385592021048069, -0.034582123160362244, 0.02430756203830242, -0.0008262376650236547, -0.030766906216740608, -0.0227894838899374, 0.0005341492360457778, 0.04140935465693474, -0.031433459371328354, -0.06407902389764786, 0.030807776376605034, -0.006888195872306824, -0.05834270268678665, -0.018880609422922134, 0.04985755681991577, 0.03991517424583435, -0.09576047956943512, -0.01848657801747322, 0.010916861705482006, 0.029215702787041664, -0.05613146349787712, 0.00795995444059372, 0.026334227994084358, -0.02067466452717781, -0.02236790768802166, 0.036607954651117325, -0.04665007442235947, -0.012429861351847649, 0.013711287640035152, 0.017867833375930786, -0.00602277647703886, 0.0025241849943995476, 0.013549333438277245, -0.01285631489008665, -0.0039082844741642475, -0.07301180064678192, -0.06624075770378113, -0.06273088604211807, 0.01615052856504917, -0.028746070340275764, -0.0355229489505291, -0.02290087752044201, 0.005716195795685053, -0.038575559854507446, 0.05427930876612663, -0.008039938285946846, -0.017580758780241013, -0.020605118945240974, 0.005541910417377949, -0.012271838262677193, -0.025266004726290703, 0.01747150532901287, 0.022610874846577644, -0.019888434559106827, 0.017299747094511986, -0.07969774305820465, 0.014062187634408474, 0.052776724100112915, -0.011506317183375359, 0.05321751534938812, 0.004764380864799023, -0.03527108579874039, 0.002874670084565878, -0.005754993297159672, 0.06619250029325485, -0.016853518784046173, -0.050281405448913574, -0.021814970299601555, -0.04299257695674896, 0.04058932140469551, 0.04139167442917824, -0.03518595173954964, -0.057408060878515244, -0.03174741193652153, -0.3606662452220917, 0.0035914243198931217, -0.02997511997818947, -0.001012490363791585, 0.02396744303405285, -0.053774215281009674, 0.028926149010658264, -0.019046057015657425, 0.011014600284397602, 0.003409560304135084, 0.08500733971595764, -0.03201982006430626, 0.018221372738480568, -0.07716892659664154, -0.004235731437802315, 0.022623572498559952, -0.05053567513823509, -0.0014708437956869602, -0.022555861622095108, 0.020976316183805466, 0.015349574387073517, -0.07663761079311371, 0.0015997450100257993, -0.05966990813612938, 0.0027444823645055294, -0.02729968912899494, 0.12660729885101318, 0.024030392989516258, 0.04385184496641159, -0.0656060054898262, 0.046572696417570114, 0.0036333934403955936, -0.010364090092480183, -0.08677973598241806, -0.006969928275793791, -0.03546286001801491, 0.035330869257450104, 0.027464400976896286, 0.020747840404510498, -0.004844532813876867, -0.042912375181913376, 0.014536700211465359, -0.04769757390022278, -0.04641139134764671, -0.01770598627626896, 0.03402187302708626, -0.021865639835596085, -0.014507423155009747, 0.04078056663274765, 0.06136515364050865, 0.038413241505622864, -0.001414789236150682, 0.010019957087934017, 0.011341572739183903, 0.007436664309352636, -0.03704816475510597, -0.08393526077270508, -0.01745343767106533, 0.002107814187183976, 0.02979997545480728, 0.010496809147298336, 0.0527556911110878, 0.016672642901539803, -0.09544285386800766, 0.04270060360431671, 0.010170088149607182, -0.013199160806834698, 0.018050091341137886, 0.04601696506142616, -0.027550047263503075, -0.0034200111404061317, 0.07297305762767792, 0.007424826268106699, 0.005222377832978964, -0.00643849465996027, 0.062406763434410095, 0.026192499324679375, 0.032354891300201416, 0.029318133369088173, 0.016777390614151955, 0.014325502328574657, -0.03591756895184517, 0.07697932422161102, -0.02691188082098961, -0.027716806158423424, 0.07345271855592728, -0.00047207664465531707, -0.05863788723945618, 0.08742702007293701, 0.0016794338589534163, -0.045738592743873596, -0.004971732851117849, -0.018779635429382324, -0.047398749738931656, 0.09246297925710678, -0.00492825685068965, -0.2548881769180298, 0.035907357931137085, 0.04561609774827957, 0.04813968762755394, -0.011908282525837421, 0.01594322919845581, 0.03417307510972023, -0.01811874471604824, 0.010120172053575516, 0.002301569329574704, 0.05693576857447624, 0.047074418514966965, -0.0028080709744244814, -0.032531432807445526, 0.020867053419351578, -0.007034742273390293, 0.0513189360499382, 0.0014976270031183958, -0.0022772429510951042, 0.01100044697523117, 0.028876790776848793, -0.012966223061084747, 0.14506137371063232, 0.04683264344930649, -0.01774417795240879, 0.022440066561102867, -0.023055434226989746, 0.0004235129745211452, 0.04383716732263565, 0.03184324875473976, 0.0062391613610088825, 0.0285322405397892, -0.011925640515983105, 0.02724248729646206, 0.011468889191746712, -0.039027873426675797, -0.030507542192935944, 0.03752600774168968, 0.027975279837846756, -0.011932052671909332, -0.03216060996055603, 0.024529406800866127, -0.07104126363992691, 0.05498020350933075, 0.06294869631528854, -0.0476539209485054, -0.03134601190686226, 0.02910982072353363, -0.044836461544036865, -0.017957182601094246, 0.0028975072782486677, -0.045857880264520645, -0.028582829982042313, -0.0027407961897552013, 0.025433249771595, 0.09155803918838501, 0.013816982507705688, -0.00959753431379795, 0.0027652918361127377, 0.004039990250021219, -0.014042682945728302, -0.05274141952395439, 0.14851583540439606, -0.03389962390065193, -0.002647330751642585 ]
[ 0.010665514506399632, -0.00200050906278193, -0.04017889127135277, 0.04703759774565697, 0.005091704893857241, 0.0076287793926894665, -0.02493545599281788, 0.012109099887311459, -0.02906818315386772, -0.0017272273544222116, -0.00569529552012682, 0.018844159319996834, 0.04987512528896332, -0.007728858385235071, -0.00048161906306631863, 0.017282696440815926, 0.004347043577581644, -0.00822165422141552, 0.0240896288305521, 0.0019524814561009407, -0.029761075973510742, 0.03515523672103882, 0.031009377911686897, -0.013719887472689152, -0.013832620345056057, -0.016250435262918472, -0.02944888547062874, 0.026018904522061348, 0.02250775881111622, -0.1243431568145752, -0.005547606386244297, -0.016560006886720657, 0.0005552625516429543, 0.031327638775110245, -0.0206964910030365, 0.01796642504632473, 0.02163735218346119, 0.0031184018589556217, -0.005174513440579176, 0.028322851285338402, 0.0036508606281131506, -0.022215289995074272, -0.037621140480041504, 0.005199686624109745, -0.01076971460133791, -0.022615334019064903, -0.02372986637055874, 0.00019622455874923617, -0.0021374120842665434, -0.023745516315102577, -0.03782159462571144, -0.017556414008140564, 0.01108214259147644, 0.0023449312429875135, 0.012042765505611897, 0.016046378761529922, -0.024864478036761284, -0.01870785653591156, 0.004824655596166849, -0.024973081424832344, 0.03429087623953819, 0.017635516822338104, -0.04742017015814781, -0.0418873205780983, -0.006761277560144663, -0.013995391316711903, -0.04212344065308571, 0.010920294560492039, -0.005207322537899017, -0.0005026409053243697, -0.009026600979268551, 0.016978884115815163, -0.10552632063627243, -0.019988907501101494, -0.0159161239862442, 0.026761647313833237, 0.04160138592123985, -0.01132128108292818, -0.02427741140127182, -0.0050236680544912815, -0.02807234413921833, -0.005153350066393614, -0.0016369859222322702, 0.01473742350935936, -0.011948715895414352, 0.03106219694018364, -0.004668143577873707, -0.011987960897386074, 0.008543294854462147, 0.011186868883669376, -0.023334942758083344, -0.02514687366783619, 0.013180192559957504, 0.02217300795018673, -0.1116272509098053, -0.003813298651948571, 0.005257786251604557, -0.02725951373577118, -0.008160116150975227, 0.8197463750839233, 0.002954927273094654, -0.01648888736963272, 0.02484683133661747, 0.022950846701860428, -0.010457095690071583, -0.01363459974527359, 0.01733849011361599, 0.03793375566601753, 0.0237874798476696, -0.002651400398463011, 0.0202537402510643, -0.0019055238226428628, 0.010909437201917171, 0.036173246800899506, 0.01431247964501381, 0.02141326665878296, 0.04442264139652252, 0.0016279947012662888, 0.014646312221884727, 0.026291588321328163, 0.04463878646492958, 0.055284157395362854, -0.017367571592330933, 0.012802114710211754, 0.0030390070751309395, -0.1907539814710617, 0.00021952691895421594, -6.260458833868878e-33, 0.0426449328660965, 0.020961226895451546, 0.000265531096374616, -0.005087692756205797, -0.022282229736447334, 0.037020161747932434, -0.028047500178217888, -0.008079451508820057, -0.005446261260658503, -0.012923115864396095, -0.0025986135005950928, 0.014860175549983978, 0.022386137396097183, -0.04041207581758499, 0.0016660286346450448, 0.02105225808918476, 0.0027532705571502447, 0.03529500588774681, -0.003172800410538912, 0.007194580510258675, 0.016119740903377533, 0.038016196340322495, -0.02418527752161026, 0.034642815589904785, 0.0010100258514285088, 0.019449641928076744, 0.012862914241850376, -0.006968370638787746, -0.0040289852768182755, -0.0517447330057621, -0.008807282894849777, 0.03358262777328491, 0.005628328770399094, -0.013736658729612827, 0.010067282244563103, -0.06021584942936897, -0.01371728628873825, 0.009156385436654091, -0.03554198518395424, -0.06312360614538193, -0.02176312543451786, 0.011023768223822117, -0.024701878428459167, -0.016092542558908463, -0.0244760662317276, -0.005276598036289215, 0.013353743590414524, 0.02175964042544365, -0.002252670004963875, 0.011780889704823494, -0.005080202594399452, 0.01066276989877224, -0.003043718636035919, 0.06750620901584625, -0.028947241604328156, 0.006857766769826412, -0.011785134673118591, 0.026640092954039574, 0.008266744203865528, -0.01455060113221407, 0.03948207199573517, -0.028375305235385895, 0.015293712727725506, 0.03122931905090809, 0.03630414977669716, -0.019637517631053925, -0.02733466401696205, 0.02952917292714119, 0.004769743885844946, 0.04806137457489967, -0.05318934842944145, 0.05379946157336235, -0.007723554503172636, -0.024211447685956955, -0.003495108801871538, -0.0899139791727066, -0.006702928338199854, -0.02154848724603653, 0.01809321902692318, 0.052934665232896805, -0.015165507793426514, -0.009020650759339333, -0.014188576489686966, -0.008588072843849659, -0.014092778787016869, -0.0033880106639117002, 0.03969332575798035, 0.004775593522936106, 0.0022738336119800806, 0.019960038363933563, 0.0259726382791996, 0.03298867121338844, -0.008566547185182571, -0.04631496220827103, -0.005569570232182741, 6.438956181673304e-33, 0.010886534117162228, -0.022141259163618088, -0.006802169606089592, 0.005508150439709425, 0.05664260312914848, -0.021032337099313736, 0.036800626665353775, 0.006991597358137369, -0.051085300743579865, 0.01674736849963665, -0.03553788363933563, -0.013213356956839561, 0.005177321378141642, 0.0188068188726902, 0.06358806043863297, -0.02984347566962242, 0.0058075785636901855, -0.04329216107726097, 0.021442286670207977, 0.026215778663754463, -0.06188107654452324, 0.009744375944137573, -0.0004697810800280422, 0.028053786605596542, 0.02257261797785759, 0.031214941293001175, -0.01998068392276764, 0.013214988633990288, -0.01580895110964775, -0.034096550196409225, 0.02071727067232132, -0.014547334052622318, -0.0061179278418421745, -0.030466899275779724, -0.024493621662259102, 0.04282710328698158, 0.0011908544693142176, 0.006848515011370182, 0.024329449981451035, -0.023517511785030365, 0.01956304907798767, -0.018838832154870033, -0.04740051552653313, 0.034616366028785706, 0.009471911936998367, 0.03840183466672897, -0.003716925857588649, -0.0006126611260697246, 0.010057246312499046, 0.027488691732287407, 0.019836222752928734, 0.021728288382291794, -0.014423324726521969, 0.01085750013589859, 0.037654608488082886, -0.05636226758360863, 0.011668337509036064, 0.05319037660956383, 0.009348168969154358, -0.006572077516466379, -0.021212788298726082, 0.028279021382331848, -0.03969443589448929, 0.023844512179493904, -0.027844702824950218, -0.02403666265308857, -0.006306041963398457, 0.008063863962888718, 0.03190091997385025, -0.0009881729492917657, 0.009541241452097893, 0.026950402185320854, 0.001322838244959712, 0.010187559761106968, 0.05494578182697296, -0.00932043045759201, -0.004516464192420244, -0.010612067766487598, -0.024357356131076813, 0.0035708157811313868, -0.012919443659484386, -0.00201788661070168, -0.004657169803977013, 0.03780611976981163, 0.031149324029684067, 0.010503730736672878, -0.04904652386903763, 0.014785338193178177, 0.0027509683277457952, -0.0018553013214841485, 0.015294316224753857, -0.04759227856993675, -0.018312614411115646, 0.010781614109873772, -0.027208199724555016, -1.2352864509068695e-8, -0.02391871251165867, -0.017032869160175323, -0.026816537603735924, 0.011228958144783974, 0.02017863281071186, 0.04440474137663841, 0.03546338900923729, 0.003984129521995783, -0.032766710966825485, 0.0423036627471447, 0.027852937579154968, 0.006177661009132862, 0.03879780322313309, 0.02501358464360237, 0.02896847389638424, -0.05544532462954521, 0.01884937845170498, -0.023101776838302612, 0.017555750906467438, 0.02360762655735016, -0.01113409548997879, 0.025462742894887924, -0.02876988798379898, 0.00009564500214764848, -0.011469416320323944, -0.035922691226005554, 0.003362162970006466, -0.09595400094985962, -0.02399604022502899, -0.02842300571501255, 0.035151898860931396, -0.01581476628780365, -0.012945427559316158, 0.008932831697165966, -0.030448907986283302, -0.008001400157809258, 0.01041458174586296, 0.04037502035498619, 0.013691050931811333, 0.004004871007055044, -0.006262662820518017, 0.029300816357135773, -0.042692117393016815, -0.03311331197619438, -0.04967235401272774, -0.03845668211579323, -0.017676949501037598, -0.010669072158634663, 0.04752204567193985, -0.039642397314310074, -0.031125875189900398, -0.021571289747953415, 0.0215300340205431, 0.011697342619299889, 0.038852300494909286, 0.00024061431759037077, 0.0249960757791996, -0.04560196399688721, 0.0011541874846443534, 0.016508523374795914, 0.02230251580476761, -0.027227675542235374, -0.03261672332882881, -0.028037114068865776 ]
ruby-finding-where-gems-are
https://markhneedham.com/blog/2012/08/25/ruby-finding-where-gems-are
false
2012-01-03 01:48:42
My Software Development journey: 2011
[ "software-development" ]
[ "Software Development" ]
A http://www.markhneedham.com/blog/2009/10/05/my-software-development-journey-year-3-4/[couple of years ago] I http://www.markhneedham.com/blog/2008/09/01/my-software-development-journey-so-far/[used to write a blog post] reflecting on what I'd worked on in the preceding year and what I'd learned and having read 2011 http://blog.fogus.me/2011/12/31/the-best-things-and-stuff-of-2011/[reviews by a couple] http://sermoa.wordpress.com/2011/12/31/aimees-2011-retrospective-a-year-in-review/[of other] http://lucisferre.net/2011/12/31/2012-year-in-review/?utm_campaign=829&utm_medium=twitter&utm_source=twitter[people] I thought I'd have a go. == Am I actually learning anything? A thought I had many times in 2011 was '*am I actually learning anything?*' as, although I was working with languages that I hadn't used professionally before, the applications that we I worked on were very similar to ones that I've worked on previously. Often I'd work on something and know exactly how it should be designed and where we could go wrong since I'd done the same thing several times before and the challenge of not knowing what to do had disappeared somewhat. == Now and then\... I certainly failed to http://www.markhneedham.com/blog/2009/10/03/learn-one-thing-a-day/[learn one thing a day] as I suggested in a blog post a couple of years ago although eventually I managed to learn a bit about node.js and clojure by http://www.markhneedham.com/blog/2011/11/30/xp-day-visualizing-whats-happening-on-our-project/[building some toy applications] with my colleague https://twitter.com/#!/uday_rayala[Uday]. We decided to rewrite part of our Scala application in clojure in our own time to see what it'd look like which provided us with an interesting insight into what it'd be like to build a system for the second time when you know exactly what to do. I also completed http://www.ml-class.org/course/class/index[ml-class] which was fun as it was the type of programming that I've never done before. Obviously I'm still a novice at the whole machine learning thing but it's given me an idea of the sorts of things you can do. == Learning is doing From February until April I was in Bangalore working as a trainer/coach for one of the http://www.markhneedham.com/blog/category/thoughtworks-university-2/[ThoughtWorks University] batches where we tried as much as possible to reduce the amount of 'teaching' done. Sumeet has previously written about http://www.learninggeneralist.com/2010/08/thoughtworks-university-story-of-our.html[the new style of ThoughtWorks University] which is more focused on people working on a real project than sitting in workshops and we tried to take this even further. Previous groups had spent about 2 weeks doing workshop style sessions and then 4 weeks working on a project but we got it to the point where we spent just over a week in workshops and the rest working on the project. In general I think it worked reasonably well and the skill level of the group seemed reasonably high by the end. We were lucky that there were only 13 people in the group - it would be interesting to see how our approach would scale. I've also noticed this last year that when I'm learning something new it's not enough to just do toy exercises anymore, *I actually have to build something to retain interest*. During the Christmas holidays I decided to try and build a Flipboard style application for my Android phone so I can (yet again) capture the links that people post on twitter. Actually having a real problem to solve has made me http://www.markhneedham.com/blog/category/android-2/[much more engaged] than following a tutorial or hello world demo would have done. == Remembering the value of blogging My rate of posting on here has decreased a lot over the last year which I think is partly down to the fact that I've written about a lot of the stuff I see on projects before but also because I started filtering what I thought was interesting enough to write about. In hindsight the latter approach doesn't necessarily make sense - the most read posts on this blog are the ones which I thought were the most pointless when I wrote them. I got stuck in the mindsight that I wasn't actually learning anything by writing blog posts, which has been proved wrong multiple times both in terms of what I learn in writing the post and from what I learn from people's comments. == Expressing opinions in big groups/public I spent 10 months in late 2010/early 2011 http://www.markhneedham.com/blog/category/distributed-agile/[working in India] and one of the most interesting things I remember observing was that people seemed very reluctant to express their opinion in big groups. I thought that was something specific to India but on coming back to the UK I've noticed the same thing here as well which means we need to http://www.markhneedham.com/blog/2011/03/20/retrospectives-mini-group-discussions/[adjust our approach in retrospectives] if we want everyone to participate. I also learnt that expressing strong opinions in public in isn't necessarily the most effective way of making change happen. I probably should have learnt this already but it became increasingly evident how ineffective this approach was in 2011. == Going at my own pace A couple of years ago I was advised by a couple of colleagues that the way to get to the 'next level' was to become more knowledgeable about the overall architectural design of systems but at the time I wasn't that interested in that. It's only more recently that I've found it interesting to read about different architectures on http://highscalability.com/[High Scalability] or http://www.systemswemake.com/[Systems We Make]. Another interesting way for me to learn in this area is to try and understand the architectures used in other ThoughtWorks projects that I didn't work on and see how they compare to the ones I've worked on. I generally can't force myself to be interested in something if I'm not but once I am interested then I want to learn every detail about it so it's better to wait until I become interested naturally. The next thing which I'm sure I'll eventually become interested in is tech leading a team which several of my peers (in terms of years of experience) are doing now or have been doing for a year or two. Right now though I want to focus on coding! == Overall\... I'm not sure 2011 was a year where I learned as much as I did in previous years - the learning did seem to taper off a bit which in a way is inevitable unless you completely change your role/the types of things you're building. In 2012 I plan to keep learning about Android development and I'm going to be doing http://www.algo-class.org/[algo-class] to try and get better at another aspect of programming which I'm not very good at right now.
null
null
[ 0.020511526614427567, 0.0174929928034544, 0.009836195036768913, 0.01763846166431904, 0.09694861620664597, 0.02346118539571762, 0.035445697605609894, 0.04847563058137894, 0.005013613495975733, -0.015073076821863651, -0.016166187822818756, -0.008807198144495487, -0.044319361448287964, 0.009641173295676708, -0.029100768268108368, 0.055005837231874466, 0.06004909798502922, -0.0063399141654372215, 0.03414132073521614, 0.0007970478036440909, 0.041139330714941025, 0.07534637302160263, 0.01609586924314499, 0.03747738525271416, 0.03217194974422455, 0.006137839052826166, 0.015406831167638302, 0.005176210310310125, -0.07042256742715836, -0.0006046919734217227, 0.03118276223540306, 0.013042435050010681, 0.006717139855027199, 0.009774945676326752, 0.016106726601719856, -0.021784447133541107, -0.005474134813994169, 0.011838738806545734, -0.005996507126837969, 0.014100400730967522, -0.06078459322452545, 0.03328325226902962, -0.020182248204946518, 0.011918111704289913, -0.03981628641486168, 0.006037899758666754, -0.028716567903757095, 0.0049550822004675865, 0.01892225630581379, 0.006823671981692314, -0.07233621925115585, 0.01152531336992979, 0.00822383165359497, -0.012934159487485886, -0.046924833208322525, 0.05128391459584236, 0.03504062071442604, -0.0644683912396431, 0.010816473513841629, -0.0313095822930336, 0.007884165272116661, -0.011950301006436348, 0.02293742634356022, 0.0419958159327507, 0.020589753985404968, -0.0396108441054821, 0.0014255730202421546, 0.031048893928527832, -0.03642527014017105, 0.006450092885643244, -0.012535479851067066, 0.001693615922704339, -0.003903519595041871, -0.017505407333374023, 0.016586650162935257, -0.04335838183760643, 0.005935280583798885, 0.07319570332765579, 0.0029973883647471666, 0.021753309294581413, -0.03556922450661659, 0.026014994829893112, 0.024676933884620667, 0.03469619154930115, -0.028490865603089333, -0.04074407368898392, -0.005627342965453863, -0.01907610520720482, -0.07231353223323822, 0.05437527224421501, 0.020251773297786713, -0.06710577756166458, 0.02361011877655983, 0.058431342244148254, -0.0011949591571465135, 0.0033431206829845905, 0.023875735700130463, 0.0021549039520323277, -0.01321734394878149, -0.031110050156712532, -0.027785055339336395, -0.015208803117275238, 0.011893214657902718, 0.0044520278461277485, -0.0908152386546135, -0.005402444861829281, -0.02855016104876995, 0.010386782698333263, -0.0009070471278391778, -0.002466882113367319, -0.002349476097151637, 0.04328826814889908, -0.0316229946911335, 0.01485338993370533, -0.06252434849739075, 0.07059373706579208, 0.00017748713435139507, -0.051343630999326706, -0.017414987087249756, -0.004289340227842331, 0.02568049542605877, 0.016939697787165642, -0.015580716542899609, 0.07627511024475098, 0.02409350872039795, 0.031156139448285103, -0.013815399259328842, 0.053738467395305634, -0.03035460039973259, -0.04716921225190163, -0.019836723804473877, 0.05859829857945442, -0.03224683552980423, -0.0021399543620646, 0.0021707697305828333, -0.022475849837064743, 0.01103649940341711, 0.00005639657683786936, 0.03468240797519684, 0.04532736912369728, -0.00542082916945219, -0.041094377636909485, 0.007965563796460629, 0.005238425452262163, 0.02984597720205784, 0.0026438445784151554, 0.013786623254418373, -0.025640083476901054, -0.044060636311769485, -0.015636682510375977, -0.0071656047366559505, 0.0046090977266430855, 0.005836094729602337, -0.03574993833899498, 0.03405167534947395, 0.0769609734416008, 0.032483745366334915, 0.015496974810957909, -0.023156439885497093, 0.033682648092508316, 0.037134673446416855, 0.042006976902484894, 0.02551812306046486, 0.031696904450654984, 0.01990462653338909, 0.0028376246336847544, 0.006383918225765228, 0.02718738466501236, 0.007672972045838833, 0.010109561495482922, -0.0589919276535511, -0.05005480349063873, 0.051322098821401596, -0.031797803938388824, -0.05878804251551628, 0.06510459631681442, 0.09151574969291687, 0.03462359309196472, 0.0345308817923069, 0.00029634273960255086, -0.08692362904548645, 0.0385487899184227, 0.029295818880200386, 0.04333161562681198, 0.01937185972929001, -0.023627713322639465, 0.05817008391022682, 0.024079592898488045, 0.005234662909060717, 0.02993294782936573, -0.08114375919103622, -0.09553708881139755, -0.03237653151154518, -0.024088284000754356, 0.06237760931253433, -0.029371624812483788, 0.022394105792045593, 0.052869781851768494, 0.008882646448910236, 0.05556759610772133, 0.007530852220952511, 0.007854698225855827, -0.0007005669176578522, -0.04538102075457573, -0.041502926498651505, 0.07027441263198853, 0.028083819895982742, -0.029383573681116104, -0.05136989429593086, 0.02329074777662754, -0.016897642984986305, 0.006106318440288305, 0.05010250583291054, -0.010475199669599533, 0.034661900252103806, 0.005084912292659283, 0.07018677145242691, -0.04156917333602905, 0.039829839020967484, -0.035898420959711075, 0.018954575061798096, -0.0037202921230345964, -0.03190358355641365, 0.022446459159255028, 0.021997544914484024, 0.10776141285896301, 0.05741214379668236, -0.05628737062215805, -0.035494979470968246, 0.004447505809366703, 0.008261810056865215, -0.051699891686439514, -0.0034654561895877123, -0.0034375579562038183, 0.005814097821712494, 0.013906218111515045, -0.05033848434686661, -0.04160492494702339, 0.00847709458321333, -0.057637717574834824, 0.025202171877026558, 0.06957094371318817, -0.008331617340445518, 0.06094890087842941, -0.010547032579779625, -0.006074460688978434, -0.00313308322802186, -0.01240239292383194, -0.05225134268403053, 0.012562581337988377, 0.008667209185659885, -0.024678366258740425, 0.04959661886096001, -0.01953636109828949, -0.04305626079440117, -0.041313763707876205, -0.02865266613662243, 0.031831298023462296, 0.03881418704986572, 0.06623782217502594, -0.026405077427625656, 0.05738355964422226, -0.0070210788398981094, 0.030345164239406586, 0.005848074331879616, -0.044894989579916, -0.05236752703785896, -0.04636549949645996, 0.002797170076519251, 0.03471868112683296, -0.012055246159434319, 0.009414754807949066, 0.028620582073926926, 0.018027568235993385, 0.004618192557245493, -0.019267689436674118, 0.03678499907255173, 0.004533274099230766, -0.01140346098691225, -0.016876712441444397, -0.02873125486075878, 0.04715948924422264, -0.05741000175476074, -0.03281077742576599, 0.010585148818790913, -0.08391143381595612, 0.047440797090530396, -0.06450098752975464, -0.03095870465040207, 0.0041629234328866005, 0.020472025498747826, 0.04129250720143318, 0.026906337589025497, 0.015541340224444866, 0.05883653089404106, -0.0019217379158362746, 0.013720404356718063, -0.0057936846278607845, -0.017652781680226326, 0.02770237624645233, -0.012059805914759636, -0.001450745272450149, 0.034848473966121674, 0.024496830999851227, 0.005363686941564083, -0.04999902844429016, 0.04116184264421463, -0.0327991247177124, -0.26618248224258423, 0.03476882353425026, 0.012379477731883526, -0.0409589521586895, 0.017500972375273705, 0.002794413361698389, 0.019289962947368622, -0.05738137289881706, -0.01784442365169525, 0.0014909538440406322, -0.02954108826816082, -0.03011014498770237, -0.03449566289782524, 0.04119020700454712, 0.006139223929494619, 0.008099648170173168, 0.0232813972979784, -0.027528956532478333, 0.0005494815995916724, 0.03344094380736351, -0.001093633589334786, -0.06740535795688629, -0.0006180474883876741, 0.022568190470337868, 0.04183382913470268, 0.04730375111103058, -0.08432380110025406, 0.036810342222452164, -0.05264180526137352, -0.007536156568676233, 0.008428245782852173, 0.010399485938251019, 0.013679101131856441, -0.016573328524827957, -0.025733686983585358, -0.014769862405955791, 0.051035601645708084, -0.006999628618359566, 0.021341338753700256, 0.005974797066301107, -0.005529596004635096, -0.042382724583148956, -0.003108261851593852, 0.007089407183229923, 0.07057059556245804, 0.005219707265496254, -0.09610506147146225, -0.017711112275719643, -0.01443264726549387, 0.07825275510549545, -0.0368419885635376, -0.035785481333732605, -0.008167225867509842, 0.047438256442546844, 0.0016457766760140657, -0.036847904324531555, 0.0014206956839188933, -0.03210620954632759, -0.05019856616854668, -0.0493059977889061, -0.004612445831298828, -0.03174896910786629, -0.009979991242289543, -0.0686410591006279, 0.003802152816206217, -0.07758306711912155, -0.05507060885429382, -0.012843545526266098, 0.07752139121294022, 0.022950435057282448, -0.03676563501358032, 0.006971721071749926, -0.007316160947084427, -0.10610979050397873, 0.0016747366171330214, -0.013301962986588478, -0.022196419537067413, 0.018629983067512512, 0.00618388457223773, 0.03300824016332626, -0.045914459973573685, -0.04783855006098747, 0.009130266495049, 0.010984018445014954, 0.029697753489017487, -0.017619971185922623, 0.03578542545437813, 0.013321828097105026, -0.02432606928050518, 0.013316155411303043, 0.0749153271317482, 0.0012287412537261844, -0.03728276118636131, -0.01149748731404543, 0.019668690860271454, 0.01928740181028843, 0.027620963752269745, -0.003130759811028838, 0.015979217365384102, 0.03740287199616432, 0.013524231500923634, -0.039356812834739685, 0.027246005833148956, -0.012617413885891438, -0.025494888424873352, 0.027889560908079147, -0.05101523920893669, 0.005637954920530319, 0.03742142766714096, 0.029858117923140526, -0.014485465362668037, -0.044353242963552475, 0.009736497886478901, -0.05214032158255577, -0.0500224269926548, -0.003108661388978362, 0.013666251674294472, 0.03278139978647232, -0.011271185241639614, -0.019453516229987144, -0.04513505846261978, 0.0006138801109045744, -0.0004039806663058698, -0.015354933217167854, -0.05859004333615303, -0.022596081718802452, -0.016504520550370216, -0.014621417038142681, 0.02443745918571949, 0.029181936755776405, -0.025486232712864876, 0.00563220726326108, 0.011884444393217564, -0.04564300552010536, 0.014139720238745213, -0.00705671263858676, -0.06016083061695099, -0.039310481399297714, 0.01932673715054989, -0.012507447972893715, -0.011676622554659843, 0.03335306793451309, 0.009569097310304642, -0.0029834043234586716, 0.042471740394830704, 0.010988031513988972, 0.0017129620537161827, -0.018255693838000298, 0.02672007866203785, 0.011928301304578781, -0.004837164655327797, -0.05804175138473511, 0.007714955601841211, -0.03458446264266968, -0.02564798668026924, -0.0029640779830515385, 0.04654636234045029, -0.03393254056572914, -0.03941452503204346, 0.004503988660871983, 0.013057774864137173, -0.059011343866586685, -0.021059470251202583, -0.01316965464502573, 0.00012977528967894614, 0.04486357793211937, -0.0026021937374025583, 0.025857621803879738, -0.0037658894434571266, -0.03177762031555176, 0.02076277695596218, 0.009696099907159805, -0.03463359922170639, 0.015572089701890945, 0.007530680857598782, 0.003966778051108122, 0.0012909963261336088, 0.009084214456379414, 0.05307834595441818, 0.005087941884994507, 0.0015135772991925478, -0.03677178546786308, 0.0075315008871257305, 0.032207757234573364, 0.04129641130566597, 0.014658572152256966, -0.0013291696086525917, 0.009982297196984291, -0.02474747784435749, -0.010926885530352592, -0.026242919266223907, -0.0026942496187984943, 0.007308002561330795, 0.019315095618367195, -0.029628688469529152, -0.08870918303728104, 0.06540887802839279, 0.01025883574038744, 0.01682269386947155, 0.013806772418320179, -0.02383931539952755, -0.019989117980003357, -0.021799901500344276, 0.055443983525037766, 0.05374005064368248, -0.07148177921772003, -0.005181129556149244, -0.012950272299349308, 0.016773751005530357, -0.007006452418863773, -0.008103701286017895, -0.050798747688531876, -0.006788366939872503, -0.022221026942133904, 0.013307135552167892, -0.062357645481824875, -0.00909342709928751, -0.00992493238300085, 0.024964265525341034, -0.005595313385128975, 0.0023102390114217997, -0.00011810209980467334, -0.0024247930850833654, -0.026385614648461342, -0.02011420577764511, 0.017014937475323677, -0.043395377695560455, 0.004855880048125982, 0.007249708287417889, -0.050383541733026505, 0.0177635345607996, -0.022589193657040596, 0.007083425763994455, 0.034959856420755386, -0.018595561385154724, -0.005229871720075607, -0.02697402983903885, -0.008445795625448227, -0.00013115927868057042, 0.06389200687408447, -0.019490446895360947, -0.011024169623851776, -0.06667501479387283, -0.01619436778128147, -0.037862520664930344, 0.026514898985624313, -0.05080994963645935, 0.002084471518173814, 0.02160465158522129, 0.04103071987628937, 0.01711459457874298, 0.0454629547894001, -0.03172510862350464, -0.021664969623088837, 0.057084571570158005, -0.07067283242940903, -0.02677675150334835, -0.0462050586938858, -0.06515423953533173, 0.000667697109747678, 0.0018420820124447346, 0.017721977084875107, -0.032138392329216, 0.06950327754020691, 0.022561004385352135, 0.024789785966277122, 0.0378122515976429, -0.007033884059637785, 0.010742110200226307, -0.06407013535499573, 0.009945490397512913, -0.08263211697340012, 0.0004163848061580211, 0.031700801104307175, 0.00019580918888095766, -0.0060764797963202, 0.01285804808139801, -0.034287333488464355, 0.05301961675286293, -0.07448513060808182, -0.020020943135023117, 0.03346138820052147, -0.010578435845673084, -0.023396892473101616, 0.008888622745871544, -0.0646478459239006, 0.05675914138555527, 0.03754390403628349, -0.05187760293483734, -0.01970192976295948, -0.02118925005197525, 0.048682618886232376, -0.006507471669465303, 0.05165969580411911, -0.02826198749244213, -0.020981255918741226, 0.07110825181007385, 0.015153796412050724, -0.0127317626029253, 0.05354936048388481, -0.006963521242141724, 0.034030139446258545, 0.034404486417770386, 0.01859915815293789, 0.004089594352990389, 0.027366718277335167, -0.019920695573091507, -0.06858297437429428, 0.0016914254520088434, 0.01209325436502695, -0.055099356919527054, -0.033946748822927475, 0.058096203953027725, 0.04720471799373627, -0.011548573151230812, -0.057148516178131104, 0.006983743514865637, -0.07981672883033752, -0.00023719697492197156, -0.03268014267086983, 0.015784846618771553, -0.06719449907541275, 0.0588216707110405, 0.009019577875733376, 0.008815942332148552, 0.05886704474687576, 0.0023915499914437532, -0.026936648413538933, -0.016013124957680702, 0.09346184879541397, 0.0741540938615799, 0.06178819015622139, -0.0013326308690011501, 0.06584662944078445, -0.025004716590046883, -0.03422169014811516, 0.0040799216367304325, -0.01298301201313734, -0.01552673615515232, -0.020042888820171356, 0.021105341613292694, 0.08361061662435532, -0.00578870577737689, 0.08067966252565384, -0.022472959011793137, -0.02932201884686947, 0.014971286989748478, 0.02392425388097763, 0.02614356204867363, 0.05601221323013306, -0.002382308477535844, 0.026480840519070625, -0.004155810922384262, -0.03893469646573067, 0.026076780632138252, -0.04050695523619652, -0.015466893091797829, 0.03434201329946518, -0.016386382281780243, 0.03239428624510765, -0.0060230824165046215, 0.02251410111784935, 0.08398741483688354, -0.05510735884308815, 0.018322307616472244, -0.02897152490913868, 0.022471021860837936, -0.005596117116510868, 0.016241813078522682, -0.028050176799297333, 0.011625531129539013, -0.017384035512804985, -0.030137833207845688, -0.0077197374776005745, -0.015626369044184685, -0.0301031656563282, 0.034156352281570435, -0.02599218487739563, -0.018635595217347145, 0.025382624939084053, -0.002680129138752818, -0.03701814264059067, -0.0563952811062336, -0.03531614691019058, -0.04279454052448273, -0.05148043856024742, -0.008113984949886799, 0.007537513040006161, 0.0060289339162409306, -0.04356188699603081, -0.007042875047773123, -0.03673023730516434, -0.014609277248382568, 0.04306471720337868, -0.03911704942584038, -0.0007971986779011786, 0.0065053915604949, 0.025908546522259712, 0.014122549444437027, 0.017082003876566887, 0.045989274978637695, -0.012261754833161831, -0.008366890251636505, -0.01602778397500515, 0.0034185913391411304, 0.027938686311244965, 0.006219877861440182, 0.013275797478854656, -0.07827943563461304, 0.028583958745002747, 0.04020655155181885, -0.007103377487510443, -0.0655793622136116, 0.03677046298980713, 0.017937347292900085, -0.027218887582421303, 0.042076386511325836, -0.021681688725948334, 0.01676904782652855, -0.027839574962854385, 0.001183892134577036, -0.015221609733998775, 0.020092099905014038, 0.026731496676802635, -0.018863266333937645, 0.09779121726751328, 0.02843538112938404, 0.006936109159141779, -0.03778540715575218, -0.025158843025565147, -0.005237166304141283, 0.0065476070158183575, -0.02813512273132801, -0.014799208380281925, -0.04462851956486702, -0.07961124181747437, -0.0334315299987793, 0.009723477065563202, -0.021970178931951523, -0.041738953441381454, 0.02230614423751831, 0.026672620326280594, -0.017062876373529434, 0.039279691874980927, -0.060817819088697433, 0.024285878986120224, -0.013485569506883621, 0.0019815436098724604, -0.015110285952687263, -0.018191566690802574, 0.006228339858353138, 0.002861741930246353, 0.015851609408855438, -0.043882887810468674, 0.005249310284852982, -0.0004422850615810603, 0.03002089262008667, 0.03250084072351456, 0.03119228035211563, 0.009648005478084087 ]
[ -0.08348649740219116, -0.025486456230282784, -0.012959301471710205, -0.03288853168487549, 0.029224472120404243, -0.046352505683898926, -0.02269859053194523, 0.04304185137152672, -0.011687636375427246, -0.029925908893346786, 0.004635858815163374, -0.0078068445436656475, -0.006498969625681639, -0.018764708191156387, 0.08976602554321289, 0.02029944583773613, -0.00040536996675655246, -0.09065591543912888, -0.010086117312312126, -0.002432377077639103, 0.012794234789907932, -0.009084932506084442, -0.00653911242261529, -0.019647318869829178, 0.024150537326931953, 0.04419326409697533, 0.033512841910123825, -0.04459034651517868, 0.0152687206864357, -0.14578868448734283, 0.004027300048619509, 0.012496701441705227, 0.029744157567620277, -0.02334151789546013, 0.013127326965332031, 0.08766599744558334, 0.014192098751664162, 0.0019568130373954773, -0.022065212950110435, 0.04879175126552582, 0.024676457047462463, -0.0026665106415748596, -0.0522647351026535, -0.032609954476356506, 0.05298600345849991, 0.012155236676335335, 0.01412259228527546, -0.04015818610787392, -0.00920998677611351, -0.0017960664117708802, -0.07091674208641052, -0.03158242627978325, 0.003087007673457265, -0.021729670464992523, -0.009456655010581017, 0.0429062619805336, 0.020124420523643494, 0.11359332501888275, 0.0062044658698141575, 0.035912953317165375, 0.039397187530994415, -0.017460118979215622, -0.13912957906723022, 0.09881490468978882, 0.019996387884020805, 0.0756743997335434, -0.04126610606908798, -0.02953287959098816, -0.004610390402376652, 0.07214156538248062, 0.01657118834555149, -0.02864612452685833, -0.024623366072773933, 0.05059826001524925, 0.008231006562709808, 0.011739823967218399, 0.015460819005966187, 0.01753387413918972, 0.006464899983257055, -0.06783118098974228, 0.005264182575047016, 0.008184297941625118, -0.012134735472500324, -0.03113516792654991, -0.023755036294460297, 0.0017967438325285912, -0.0170443095266819, 0.06389540433883667, 0.033044055104255676, 0.016832998022437096, 0.04149788245558739, -0.021765196695923805, 0.03857728838920593, 0.009218516759574413, -0.09451259672641754, -0.03699783980846405, 0.025376172736287117, 0.040554750710725784, -0.036435533314943314, 0.42638370394706726, -0.027247639372944832, -0.011326892301440239, 0.0967477336525917, 0.03978484869003296, 0.0019315987592563033, -0.0101241460070014, 0.03590906783938408, -0.04648979380726814, 0.02719726599752903, -0.018124423921108246, -0.0025262648705393076, -0.0016849887324497104, 0.05605157092213631, -0.04073898866772652, 0.010055101476609707, -0.0008548782207071781, 0.035322386771440506, 0.02861499972641468, 0.01675364188849926, 0.0012447315966710448, -0.009925476275384426, -0.011116246692836285, 0.03865363076329231, -0.034086935222148895, -0.034798555076122284, -0.02014085277915001, 0.05391428619623184, 0.05053913965821266, 0.026780758053064346, 0.003960322123020887, 0.04379343241453171, -0.008173555135726929, -0.0663699060678482, 0.0059731341898441315, 0.013138731941580772, 0.018213368952274323, 0.004200679715722799, -0.04940672963857651, 0.014198558405041695, 0.0469372533261776, -0.013494840823113918, -0.026194794103503227, 0.035768136382102966, 0.0033651080448180437, -0.037784144282341, 0.11378403753042221, 0.0456865131855011, -0.018257101997733116, 0.00564746605232358, -0.016446853056550026, -0.009732123464345932, 0.029708554968237877, 0.02635214291512966, -0.04809822887182236, 0.0415559820830822, 0.002858554245904088, 0.10695507377386093, -0.027736036106944084, -0.06076912209391594, 0.018702462315559387, -0.012236707843840122, -0.05328841134905815, -0.04171278327703476, 0.039394982159137726, 0.056606270372867584, -0.10966671258211136, -0.0022159097716212273, 0.014368384145200253, 0.03425823897123337, -0.06498894095420837, 0.015158764086663723, 0.02140422724187374, -0.03353432938456535, -0.024399271234869957, 0.04906587675213814, -0.03424392640590668, -0.03344758227467537, 0.007936982437968254, 0.04113020747900009, 0.014651844277977943, 0.019010381773114204, -0.029396574944257736, -0.02588674984872341, 0.03170860558748245, -0.04764556512236595, -0.0517776720225811, -0.023426609113812447, -0.024356739595532417, -0.004020766820758581, 0.004553725011646748, 0.0006999574834480882, -0.030286114662885666, -0.06394650042057037, 0.06303359568119049, -0.03605581820011139, 0.0027149077504873276, 0.02325841411948204, -0.016217924654483795, -0.01002105139195919, -0.04206906631588936, -0.06202735751867294, -0.007513341959565878, -0.030867207795381546, 0.015059152618050575, -0.06064365431666374, 0.0458373986184597, 0.04703817144036293, -0.04436838999390602, 0.13092128932476044, 0.0310886912047863, -0.05935250222682953, -0.040934521704912186, 0.008186707273125648, 0.018554501235485077, 0.029833858832716942, -0.03629404306411743, -0.010314780287444592, -0.00020924971613567322, -0.010183983482420444, 0.034841325134038925, -0.031529467552900314, -0.01077653281390667, -0.05606730654835701, -0.3354920446872711, -0.04984142258763313, -0.006793798413127661, 0.01154173631221056, 0.008889535441994667, -0.05203608050942421, 0.018687142059206963, -0.02141692489385605, -0.013292771764099598, 0.010073698125779629, 0.06363420933485031, -0.03637029603123665, 0.014298615045845509, -0.09318438917398453, 0.00511942058801651, -0.0036771981976926327, -0.00263947038911283, -0.02322741411626339, -0.008680881932377815, 0.0010579499648883939, -0.022112827748060226, -0.014072880148887634, -0.007779931649565697, -0.07990105450153351, -0.026047861203551292, -0.0476546585559845, 0.10123494267463684, 0.057435426861047745, 0.05908235162496567, -0.0462656207382679, 0.04440970718860626, 0.009853802621364594, 0.03768644109368324, -0.12087936699390411, 0.008965061977505684, -0.0019199138041585684, 0.026985429227352142, -0.03647403046488762, 0.018299929797649384, -0.05208135396242142, -0.04126454144716263, 0.03750251233577728, -0.06662154942750931, -0.048094458878040314, -0.08616162836551666, 0.007014125119894743, -0.037324223667383194, -0.038703031837940216, -0.02010725624859333, 0.07869835197925568, 0.016035795211791992, 0.0011392045998945832, 0.009826348163187504, -0.0003097531443927437, -0.02268214151263237, -0.014374001882970333, -0.09801825135946274, 0.017605185508728027, -0.0023185370955616236, 0.004169836640357971, 0.007464515045285225, 0.051243871450424194, 0.026197457686066628, -0.08937324583530426, -0.000392110669054091, 0.020366311073303223, -0.017391668632626534, -0.00028011694666929543, 0.03078787960112095, -0.017401300370693207, -0.053156837821006775, 0.09113894402980804, -0.008890467695891857, -0.01571442186832428, 0.034328654408454895, 0.031499892473220825, -0.032120078802108765, 0.023877190425992012, 0.02256983332335949, 0.003128620097413659, 0.004741423297673464, -0.036415524780750275, 0.05453215911984444, -0.015507250092923641, -0.027925021946430206, 0.039966609328985214, -0.019594604149460793, -0.05843426659703255, 0.062199026346206665, 0.041691239923238754, -0.02517610415816307, 0.017181623727083206, -0.026259278878569603, -0.08008481562137604, 0.07340633124113083, -0.007041469682008028, -0.22334374487400055, 0.014171751216053963, 0.06802967190742493, 0.04063002020120621, 0.008350719697773457, 0.03414906933903694, 0.02876252494752407, -0.06704232096672058, 0.0002774557506199926, 0.02812439389526844, 0.040675707161426544, 0.022571353241801262, 0.0061160605400800705, -0.01317865401506424, 0.028216088190674782, 0.010803131386637688, 0.04047654941678047, 0.019078783690929413, -0.004714846611022949, -0.002783512929454446, 0.024790627881884575, 0.017023328691720963, 0.15730072557926178, 0.02177499048411846, -0.007777949795126915, 0.004361884202808142, -0.028999170288443565, 0.03037850186228752, 0.0639297142624855, 0.01385565660893917, -0.003748030634596944, 0.0006672018789686263, 0.021008213981986046, 0.04522109776735306, 0.0004966279375366867, -0.07630878686904907, -0.016453104093670845, 0.015652412548661232, 0.011498650535941124, 0.0012710274895653129, 0.013581926934421062, 0.005171343218535185, -0.023260341957211494, 0.051801178604364395, 0.0694635659456253, 0.0005721341003663838, 0.018857011571526527, -0.051455870270729065, -0.06622441112995148, -0.029574982821941376, -0.022024497389793396, -0.04212643951177597, 0.011718524619936943, 0.02643774263560772, 0.03718513250350952, 0.08153174072504044, 0.011470730416476727, -0.0393032543361187, -0.010758914053440094, -0.036050945520401, -0.02355852723121643, -0.019159024581313133, 0.11559577286243439, 0.011789564974606037, 0.04731603339314461 ]
[ -0.01927211321890354, -0.003128903452306986, 0.014591808430850506, 0.006259692367166281, 0.009737097658216953, -0.011954113841056824, -0.00009668790880823508, -0.008519926108419895, -0.005028335377573967, -0.02349129319190979, 0.00716532813385129, 0.03544190898537636, 0.012868396937847137, -0.023487260565161705, 0.005190533120185137, 0.008186590857803822, -0.012673217803239822, 0.008496908470988274, 0.01754496805369854, 0.020640267059206963, -0.010631843470036983, 0.023544346913695335, 0.02032853662967682, 0.013830597512423992, -0.021333105862140656, 0.022545110434293747, -0.014718577265739441, -0.0151754692196846, 0.03377959877252579, -0.13027288019657135, -0.01950925402343273, 0.0011972521897405386, -0.0339607335627079, 0.002861281856894493, -0.009952504187822342, 0.009588669054210186, -0.004149639047682285, -0.025117892771959305, -0.01529582217335701, -0.025069618597626686, -0.019810792058706284, -0.018482796847820282, -0.014874315820634365, -0.01534049492329359, 0.013134460896253586, -0.01723427139222622, -0.0017123603029176593, -0.05301482230424881, -0.013490271754562855, -0.0117720365524292, -0.03656671941280365, -0.026987195014953613, -0.026364479213953018, 0.00629883399233222, -0.01605260744690895, 0.01664007641375065, -0.0023388704285025597, 0.009999874979257584, 0.0051126074977219105, -0.019579488784074783, 0.002551624784246087, -0.025680886581540108, -0.02883986197412014, -0.025473501533269882, -0.02244698815047741, -0.02050257846713066, -0.023284103721380234, 0.01010544691234827, -0.01094609871506691, 0.020086543634533882, 0.017404407262802124, 0.041674770414829254, -0.01823100820183754, -0.03302209451794624, 0.01602105423808098, 0.0012140325270593166, 0.01546228863298893, 0.0013311202637851238, 0.002930193906649947, 0.0031512342393398285, -0.011666479520499706, 0.03648553788661957, -0.02577897720038891, 0.02761661633849144, 0.0018628775142133236, -0.00032731107785366476, 0.022439632564783096, -0.005329292733222246, 0.021611260250210762, 0.005306752398610115, -0.022282635793089867, 0.020937595516443253, -0.0003577212628442794, 0.0015309499576687813, -0.0930674597620964, -0.009817739948630333, -0.0046147448010742664, -0.009805032052099705, 0.010883365757763386, 0.8663135766983032, -0.014060165733098984, 0.0004134411574341357, 0.0397968590259552, 0.00018340384121984243, 0.0002353903983021155, 0.020406007766723633, -0.03026668354868889, 0.00967506505548954, 0.033524855971336365, -0.02945038117468357, 0.028208432719111443, 0.010706228204071522, 0.017958953976631165, 0.02997741661965847, 0.025992413982748985, 0.001291188644245267, 0.032450370490550995, -0.03046073019504547, -0.004051259718835354, 0.03401419147849083, -0.002432740293443203, 0.018776003271341324, 0.020929723978042603, 0.01238339114934206, -0.015399386174976826, -0.1923891007900238, -0.00047253878437913954, -8.013284010786085e-33, 0.06907680630683899, -0.01431959867477417, -0.007058748975396156, 0.005471405107527971, -0.007938875816762447, -0.008959509432315826, 0.033220406621694565, 0.01348112802952528, -0.04746722802519798, -0.02948770485818386, -0.00520768528804183, 0.013150066137313843, -0.005753711797297001, -0.01646515540778637, 0.04435020312666893, -0.01846783421933651, 0.0008673215052112937, 0.0336524173617363, 0.015203992836177349, -0.002082265680655837, 0.04835955426096916, 0.00014202790043782443, -0.010296590626239777, -0.002315326826646924, 0.016825085505843163, 0.019400963559746742, 0.046270500868558884, 0.033961862325668335, -0.011583489365875721, -0.04376181960105896, -0.018850315362215042, 0.00013482720532920212, -0.008090461604297161, -0.014317724853754044, 0.023796522989869118, -0.027522673830389977, -0.021591905504465103, 0.009622289799153805, 0.003520004218444228, -0.01918814703822136, -0.028313349932432175, 0.010588052682578564, -0.009497318416833878, -0.03175841271877289, -0.019022995606064796, -0.004025593400001526, 0.021344153210520744, -0.000630276626907289, 0.013401302509009838, -0.008602097630500793, 0.00682018743827939, -0.0036572744138538837, 0.009890744462609291, 0.014721659012138844, -0.03218355029821396, -0.0005545806488953531, -0.013251837342977524, 0.005437110085040331, -0.006787681952118874, 0.03234425559639931, 0.014618176966905594, 0.006752297282218933, -0.006076267454773188, 0.03683795779943466, -0.00780043751001358, 0.007761368062347174, 0.0159340538084507, 0.02777833119034767, 0.030531583353877068, -0.014057515189051628, -0.05820285528898239, -0.007832998409867287, -0.015973297879099846, -0.016364147886633873, 0.029469171538949013, -0.016332309693098068, -0.0163921806961298, -0.02217637374997139, -0.02048477903008461, 0.05912116542458534, 0.018053989857435226, -0.030134454369544983, -0.011870114132761955, -0.03119763173162937, -0.022924961522221565, -0.0033789188601076603, 0.026191670447587967, -0.012865787371993065, -0.004334325436502695, 0.027035366743803024, 0.012947021052241325, 0.042657941579818726, 0.0011762044159695506, -0.003905600169673562, -0.012725785374641418, 7.365643928832607e-33, -0.011960013769567013, -0.03198081627488136, -0.02437109686434269, 0.017354251816868782, 0.035945650190114975, -0.020456651225686073, -0.0005222305771894753, 0.023447470739483833, -0.049294523894786835, 0.027225008234381676, -0.025644531473517418, -0.00804940052330494, -0.03381415829062462, 0.0278457198292017, 0.03349163383245468, 0.002719517797231674, 0.024624375626444817, -0.03343002870678902, -0.000809672346804291, -0.016391800716519356, -0.010674233548343182, 0.01077134720981121, -0.008199479430913925, -0.0009861945873126388, 0.03296905383467674, 0.05933541804552078, -0.004452347755432129, 0.018274476751685143, -0.0032972919289022684, 0.019646424800157547, 0.016845131292939186, -0.029413755983114243, 0.010636547580361366, 0.007321320474147797, 0.0038754127454012632, 0.026880502700805664, -0.0106750363484025, -0.03189784660935402, 0.028291547670960426, -0.015181771479547024, 0.03912707045674324, -0.02228686772286892, 0.02519952319562435, 0.020569156855344772, -0.0034418401774019003, 0.0019342130981385708, -0.0049182032234966755, 0.002952376613393426, -0.014143386855721474, -0.00504298135638237, -0.002276499755680561, 0.014099863357841969, 0.013437488116323948, 0.00016050116391852498, -0.010541053488850594, -0.027557669207453728, -0.0040453034453094006, 0.006132751703262329, -0.04150235280394554, 0.01969010755419731, -0.007931777276098728, -0.026808910071849823, -0.021646661683917046, -0.012181584723293781, -0.036317918449640274, -0.03222278133034706, 0.005757782608270645, -0.0020576384849846363, -0.019454093649983406, -0.013586328364908695, 0.0046694641932845116, 0.023473339155316353, -0.007990940473973751, 0.0341019406914711, 0.011549876071512699, -0.041349731385707855, -0.012294232845306396, 0.011976544745266438, -0.01911805383861065, 0.017700552940368652, 0.009704823605716228, 0.013385558500885963, 0.011334623210132122, 0.010813454166054726, -0.009838421829044819, 0.012210306711494923, -0.02037029154598713, 0.022143810987472534, 0.0064801983535289764, -0.030579824000597, -0.00006352517084451392, -0.0005371667793951929, -0.030744414776563644, 0.02039664052426815, -0.018566908314824104, -1.3669525955606332e-8, -0.0165382269769907, 0.0017409772844985127, -0.037049971520900726, 0.028326289728283882, 0.014539084397256374, 0.009880324825644493, -0.012033526785671711, 0.022218812257051468, -0.024398289620876312, 0.02206449769437313, 0.03815970942378044, -0.03714953362941742, -0.03295191749930382, 0.008917632512748241, 0.015029975213110447, -0.03240227699279785, 0.004333483055233955, 0.0064897844567894936, 0.022290723398327827, 0.0034258468076586723, 0.02847733162343502, 0.05784185230731964, -0.013189535588026047, 0.005061836447566748, 0.002275545382872224, -0.02876368910074234, 0.0011562121799215674, -0.08339820057153702, -0.013807485811412334, 0.014189882203936577, 0.010868001729249954, -0.04286392033100128, -0.03139432147145271, 0.005218552425503731, -0.01731022819876671, -0.02745990827679634, 0.02594209648668766, 0.017376122996211052, 0.016117054969072342, -0.006987293250858784, -0.008769338950514793, 0.0008833881583996117, 0.009277451783418655, -0.02927217446267605, -0.046506788581609726, 0.011007622815668583, -0.025301652029156685, -0.04241229221224785, 0.015553450211882591, -0.008008623495697975, 0.012576883658766747, -0.006058111786842346, 0.026790877804160118, 0.03599764406681061, 0.0127900131046772, 0.005359017755836248, 0.03368406742811203, -0.05051017925143242, -0.04881354048848152, -0.004133002366870642, 0.031063498929142952, 0.04835956171154976, -0.014964801259338856, -0.0015198354376479983 ]
my-software-development-journey-2011
https://markhneedham.com/blog/2012/01/03/my-software-development-journey-2011
false
2012-01-05 01:41:32
Learning Android: Getting a service to communicate with an activity
[ "android" ]
[ "Android" ]
In the app I'm working on I created a service which runs in the background away from the main UI thread consuming the Twitter streaming API using http://twitter4j.org/en/index.html[twitter4j]. It looks like this: [source,java] ---- public class TweetService extends IntentService { String consumerKey = "TwitterConsumerKey"; String consumerSecret = "TwitterConsumerSecret"; public TweetService() { super("Tweet Service"); } @Override protected void onHandleIntent(Intent intent) { AccessToken accessToken = createAccessToken(); StatusListener listener = new UserStreamListener() { // override a whole load of methods - removed for brevity public void onStatus(Status status) { String theTweet = status.getText(); if (status.getText().contains("http://")) { // do something with the tweet } } }; ConfigurationBuilder configurationBuilder = new ConfigurationBuilder(); configurationBuilder.setOAuthConsumerKey(consumerKey); configurationBuilder.setOAuthConsumerSecret(consumerSecret); TwitterStream twitterStream = new TwitterStreamFactory(configurationBuilder.build()).getInstance(accessToken); twitterStream.addListener(listener); twitterStream.user(); } } ---- That gets called from +++<cite>+++MyActivity+++</cite>+++ like so: [source,java] ---- public class MyActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { ... super.onCreate(savedInstanceState); Intent intent = new Intent(this, TweetService.class); startService(intent); } } ---- I wanted to be able to inform the UI each time there was a tweet which contained a link in it so that the link could be displayed on the UI. I found http://stackoverflow.com/questions/2463175/how-to-have-android-service-communicate-with-activity[a post on StackOverflow which suggested that one way to do this would be to raise a broadcast message which could then be listened to by a BroadcastReceiver in the activity]. It is possible for any other apps to listen to the broadcast message as well if they wanted to but in this case the information isn't very important so I think it's fine to take this approach. I first had to change the service to look like this: [source,java] ---- public class TweetTask { public static final String NEW_TWEET = "tweet_task.new_tweet"; } public class TweetService extends IntentService { String consumerKey = "TwitterConsumerKey"; String consumerSecret = "TwitterConsumerSecret"; public TweetService() { super("Tweet Service"); } @Override protected void onHandleIntent(Intent intent) { AccessToken accessToken = createAccessToken(); StatusListener listener = new UserStreamListener() { // override a whole load of methods - removed for brevity public void onStatus(Status status) { String theTweet = status.getText(); if (status.getText().contains("http://")) { Intent tweetMessage = new Intent(TweetTask.NEW_TWEET); tweetMessage.putExtra(android.content.Intent.EXTRA_TEXT, document); sendBroadcast(tweetMessage); } } }; ConfigurationBuilder configurationBuilder = new ConfigurationBuilder(); configurationBuilder.setOAuthConsumerKey(consumerKey); configurationBuilder.setOAuthConsumerSecret(consumerSecret); TwitterStream twitterStream = new TwitterStreamFactory(configurationBuilder.build()).getInstance(accessToken); twitterStream.addListener(listener); twitterStream.user(); } } ---- I then had to define the following code in +++<cite>+++MyActivity+++</cite>+++: [source,java] ---- public class MyActivity extends Activity { protected void onResume() { super.onResume(); if (dataUpdateReceiver == null) dataUpdateReceiver = new DataUpdateReceiver(textExtractionService); IntentFilter intentFilter = new IntentFilter(TweetTask.NEW_TWEET); registerReceiver(dataUpdateReceiver, intentFilter); } protected void onPause() { super.onPause(); if (dataUpdateReceiver != null) unregisterReceiver(dataUpdateReceiver); } private class DataUpdateReceiver extends BroadcastReceiver { private CachedTextExtractionService textExtractionService; public DataUpdateReceiver(CachedTextExtractionService textExtractionService) { this.textExtractionService = textExtractionService; } @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals(TweetTask.NEW_TWEET)) { // do something with the tweet } } } } ---- Now whenever there's a tweet with a link in it my BroadcastReceiver gets notified and I can do whatever I want with the tweet. This seems like a reasonably simple solution to the problem so I'd be interested to know if there are any other drawbacks other than the one I identified above.
null
null
[ 0.0487043559551239, -0.027471819892525673, -0.008946239948272705, -0.0104884197935462, 0.061734892427921295, 0.01871960423886776, 0.06189251318573952, 0.04755450040102005, -0.006796692032366991, -0.0005217503639869392, 0.0022551717702299356, 0.002318698214367032, -0.0786137655377388, 0.018351765349507332, -0.00029378317412920296, 0.05605381727218628, 0.08588840067386627, -0.005827066022902727, 0.05726930871605873, -0.007890862412750721, 0.017234159633517265, 0.07403723895549774, -0.0030989497900009155, 0.027079975232481956, 0.027797996997833252, 0.01535629853606224, 0.01412905566394329, 0.024041401222348213, -0.02590172365307808, -0.008211911655962467, 0.048329584300518036, -0.010005803778767586, 0.012014564126729965, -0.012776936404407024, 0.004709738306701183, -0.008941829204559326, -0.013271025381982327, -0.010649141855537891, -0.010012139566242695, 0.024974124506115913, -0.09657786786556244, 0.019778255373239517, -0.027303053066134453, -0.01514662429690361, -0.03520998731255531, -0.0013555447803810239, -0.014272880740463734, 0.03182227909564972, -0.035510361194610596, -0.0011501979315653443, -0.08740073442459106, 0.02810884639620781, -0.04191309213638306, 0.01640102081000805, 0.04426025599241257, 0.041623301804065704, 0.012435518205165863, -0.08901973068714142, 0.026403969153761864, -0.043682169169187546, 0.036050423979759216, -0.018168339505791664, 0.032149892300367355, 0.0035853979643434286, -0.005769761279225349, -0.0266508050262928, -0.006084689870476723, 0.053076550364494324, -0.01351524144411087, -0.012377560138702393, -0.016677016392350197, 0.0039535509422421455, -0.02590540051460266, 0.007736833766102791, 0.0020364071242511272, -0.05491143465042114, 0.0007805877248756588, 0.10068298131227493, -0.011130289174616337, 0.03664033114910126, -0.03693736717104912, -0.011848383583128452, 0.009295792318880558, 0.031165486201643944, 0.010170958004891872, -0.047606177628040314, -0.025912201032042503, 0.015796344727277756, -0.019579004496335983, 0.040946803987026215, 0.010391933843493462, -0.015024978667497635, -0.015492185018956661, 0.024231081828475, -0.011593323200941086, 0.022556418552994728, 0.005439699161797762, -0.0243163350969553, 0.005357900634407997, -0.017094528302550316, -0.023128964006900787, -0.011106545105576515, 0.010302350856363773, 0.05725523829460144, -0.060719117522239685, -0.02822471223771572, -0.014006680808961391, -0.03786846250295639, 0.017461104318499565, 0.011107389815151691, -0.031920526176691055, 0.022863052785396576, -0.0005499093094840646, 0.0019502864452078938, -0.05426624044775963, 0.07762297987937927, 0.025693027302622795, -0.022237027063965797, -0.010779689066112041, 0.03847057744860649, 0.05142940580844879, 0.03757068142294884, -0.014795384369790554, 0.06465473026037216, -0.00830402784049511, 0.021523695439100266, -0.05691443383693695, 0.024733195081353188, -0.019086113199591637, -0.06153407320380211, -0.00006545174983330071, 0.04706235229969025, 0.029942728579044342, 0.017563553526997566, -0.020518526434898376, 0.01648608408868313, 0.006521640345454216, -0.014544796198606491, 0.059395380318164825, 0.0157619621604681, -0.04149701073765755, -0.025630373507738113, -0.020753605291247368, -0.02431211620569229, 0.02245732955634594, 0.0053110807202756405, -0.007497115526348352, -0.03992810100317001, -0.0037798346020281315, 0.0656905323266983, -0.003502290928736329, 0.018894270062446594, 0.057924579828977585, -0.02488177828490734, 0.0010295569663867354, 0.06468099355697632, 0.03416132554411888, 0.004699339624494314, -0.007672599982470274, 0.03167852386832237, 0.0305328406393528, 0.06344684213399887, -0.011532209813594818, 0.031115788966417313, 0.019583750516176224, -0.012231962755322456, 0.003716076957061887, 0.03481948748230934, -0.017382439225912094, -0.01823003962635994, -0.05307966470718384, -0.08582555502653122, 0.05275336280465126, -0.0360705740749836, 0.01521281711757183, 0.009898204356431961, 0.061450738459825516, -0.01536695845425129, 0.026270633563399315, 0.03891068696975708, -0.06677661091089249, 0.025742653757333755, 0.044720523059368134, 0.01838338002562523, 0.02332986518740654, -0.01340431347489357, 0.01658708043396473, 0.044075775891542435, -0.023500166833400726, -0.01810794323682785, -0.06116027757525444, -0.07533510774374008, -0.032359328120946884, 0.015628943219780922, 0.06834729760885239, -0.04618734121322632, 0.0037856418639421463, 0.0866299644112587, 0.02508685551583767, 0.013057352043688297, 0.02340835891664028, -0.030412737280130386, 0.009437364526093006, -0.05698619782924652, -0.089956134557724, 0.02721434086561203, 0.06203676760196686, -0.03169339895248413, -0.030140280723571777, 0.016980133950710297, -0.03576180711388588, -0.006388088222593069, 0.019913040101528168, -0.0472291074693203, 0.04346741735935211, -0.009559622965753078, -0.007368249818682671, -0.04415110871195793, 0.07561951130628586, -0.05616746470332146, 0.04144101217389107, 0.004746700171381235, 0.002924881409853697, -0.02144007198512554, -0.005878227762877941, 0.10758459568023682, 0.026483159512281418, -0.03336325287818909, -0.07528626173734665, 0.03293546289205551, 0.020336762070655823, -0.04276909679174423, -0.01097271777689457, -0.04076254740357399, 0.005659814458340406, 0.02021905966103077, -0.03518454357981682, -0.026473259553313255, -0.004732610657811165, -0.04962901771068573, 0.01998800039291382, 0.08608515560626984, -0.04404469206929207, 0.05406543239951134, 0.030224943533539772, -0.014618540182709694, 0.0033501344732940197, -0.03687657415866852, -0.03182922303676605, -0.005067646969109774, 0.021810365840792656, -0.018974119797348976, 0.06934180855751038, -0.0413995236158371, -0.02427767403423786, -0.018276572227478027, -0.051032546907663345, 0.011769830249249935, 0.0018950940575450659, 0.0690317377448082, -0.0022564399987459183, 0.036391597241163254, -0.02324816584587097, 0.0017527744639664888, -0.030372750014066696, -0.023152228444814682, 0.022987179458141327, 0.00018200668273493648, 0.012422152794897556, 0.024333041161298752, 0.011056025512516499, -0.00986632052809, 0.043673403561115265, 0.009706900455057621, -0.0059324949979782104, 0.01713782735168934, 0.033006101846694946, -0.020399898290634155, -0.008166978135704994, -0.015504351817071438, -0.01756402850151062, 0.03813004866242409, -0.03365059569478035, -0.07701727747917175, 0.023738982155919075, -0.09150838851928711, 0.06465072929859161, -0.018560774624347687, -0.03971594572067261, 0.03218567743897438, 0.01892329379916191, 0.016109853982925415, 0.03284742310643196, 0.014761420898139477, 0.0694945678114891, 0.008081477135419846, 0.0018256439361721277, 0.021161336451768875, -0.019833184778690338, 0.01369869988411665, -0.02912721410393715, 0.016639331355690956, 0.06425785273313522, -0.00547271640971303, 0.009318790398538113, -0.060984283685684204, 0.016689041629433632, -0.029338710010051727, -0.2535141408443451, 0.027295297011733055, -0.002335804747417569, -0.04642213135957718, 0.02716323547065258, -0.011618505232036114, 0.01437469944357872, -0.023438233882188797, -0.0015849129995331168, 0.052828650921583176, 0.0018739256775006652, -0.020414019003510475, -0.01878225989639759, 0.004155236296355724, -0.03805164992809296, -0.02592225931584835, -0.009259883314371109, -0.02258777618408203, 0.025059493258595467, 0.02824319340288639, -0.010206183418631554, -0.05712316930294037, 0.0027136807329952717, 0.02830028347671032, 0.048061296343803406, 0.03943639248609543, -0.09747859835624695, 0.04893839359283447, 0.011852544732391834, -0.016245588660240173, 0.02674097940325737, -0.05303370952606201, 0.00808592326939106, 0.007933884859085083, -0.03510548174381256, -0.021897977218031883, 0.01286378689110279, 0.02325717732310295, 0.002236721571534872, 0.004993014503270388, -0.0012979947496205568, -0.04845668748021126, -0.050328392535448074, -0.007329992018640041, 0.045693229883909225, 0.005982184782624245, -0.06156816706061363, 0.01769186370074749, -0.03948381170630455, 0.08179517090320587, -0.028980344533920288, -0.04782816022634506, -0.016656706109642982, -0.017123641446232796, -0.013754081912338734, -0.03664093837141991, -0.01979665271937847, -0.000633501447737217, -0.04859748110175133, -0.03311154618859291, 0.0022179523948580027, -0.040622528642416, -0.00563969649374485, -0.028824148699641228, -0.03772745281457901, -0.05903550982475281, -0.029771503061056137, 0.015255101025104523, 0.07767777144908905, 0.022763295099139214, -0.04057920724153519, 0.009888531640172005, 0.0027226207312196493, -0.09992015361785889, -0.006237506400793791, -0.024550555273890495, -0.03760019317269325, 0.016893185675144196, -0.012343009002506733, 0.010424641892313957, -0.04069380834698677, 0.007196538150310516, 0.03271501511335373, 0.033834315836429596, 0.015071000903844833, -0.01671997644007206, 0.008298657834529877, -0.027556082233786583, -0.018724221736192703, 0.012639119289815426, 0.07755792886018753, -0.03808915242552757, -0.033456504344940186, -0.027939392253756523, -0.010431104339659214, 0.06294012814760208, 0.01529725082218647, 0.006821574177592993, -0.0096004419028759, 0.029765604063868523, 0.053279295563697815, -0.027651360258460045, -0.021857494488358498, -0.012226767838001251, 0.03737155348062515, -0.015054682269692421, -0.07532783597707748, 0.016408119350671768, -0.005518005229532719, 0.029547028243541718, 0.002585893962532282, -0.03429858013987541, -0.011671236716210842, -0.033729907125234604, -0.0496939942240715, -0.004209266044199467, -0.004852219484746456, 0.04679021239280701, 0.022394414991140366, -0.009034165181219578, -0.0576980859041214, 0.020711135119199753, 0.020944084972143173, -0.012102983891963959, -0.03995828703045845, -0.024281058460474014, -0.044574838131666183, -0.02085752598941326, 0.0008181713637895882, 0.013998459093272686, 0.011382963508367538, -0.015653319656848907, 0.01271394919604063, -0.02442118339240551, 0.019251368939876556, -0.031204577535390854, -0.010812344960868359, -0.06294621527194977, 0.014019478112459183, -0.0015126189682632685, -0.010807400569319725, -0.0037714585196226835, 0.017040273174643517, 0.006378998514264822, 0.0757068544626236, -0.006574357394129038, 0.032620880752801895, 0.01315787248313427, -0.019255725666880608, -0.012644858099520206, 0.015348193235695362, -0.04331124573945999, 0.013302444480359554, -0.024879401549696922, -0.028867622837424278, -0.009277531877160072, 0.02977198176085949, -0.021114936098456383, -0.031575605273246765, -0.03062901459634304, 0.02306405082345009, -0.05642898380756378, -0.018600942566990852, 0.003326072357594967, -0.0008889790624380112, 0.03317035362124443, -0.03103315830230713, 0.047667644917964935, -0.002409188775345683, -0.0492948479950428, -0.01555284857749939, -0.04572386294603348, -0.011787712574005127, 0.04655277356505394, 0.010643194429576397, 0.008205427788197994, 0.023499680683016777, 0.011333822272717953, 0.011355319060385227, 0.021497150883078575, 0.02590186521410942, 0.0072080050595104694, 0.024305380880832672, -0.009371806867420673, 0.05871859937906265, 0.0575774647295475, -0.006698514800518751, 0.0022178522776812315, -0.022533264011144638, -0.0021142687182873487, -0.016999637708067894, 0.01715301163494587, -0.017808005213737488, -0.01335939671844244, -0.01840069517493248, -0.087204210460186, 0.021552514284849167, 0.004043152090162039, 0.03648032620549202, -0.011204496957361698, -0.017203407362103462, 0.03945586457848549, -0.05553564801812172, 0.04441995918750763, 0.043514497578144073, -0.04017350450158119, 0.023404186591506004, 0.017896240577101707, 0.013899627141654491, 0.006092341151088476, -0.006226797122508287, -0.06922218948602676, 0.013036061078310013, -0.023829098790884018, -0.007663337513804436, -0.06253957003355026, -0.04234861582517624, -0.03131001070141792, 0.01991298981010914, -0.013878199271857738, -0.0015197665197774768, -0.01518702507019043, -0.011602097190916538, -0.02105293609201908, -0.02308664098381996, 0.026968032121658325, -0.008725819177925587, -0.015167749486863613, 0.017624830827116966, -0.0339016355574131, -0.014194630086421967, -0.022490529343485832, 0.04982559382915497, 0.03680647537112236, -0.02268931455910206, -0.019830960780382156, -0.0587795153260231, -0.01696617715060711, 0.029453299939632416, 0.07979194074869156, 0.008668622002005577, -0.008282890543341637, -0.048385392874479294, -0.033936504274606705, -0.019239427521824837, 0.004356835503131151, -0.015335933305323124, 0.028503717854619026, 0.02183343842625618, 0.05701077729463577, 0.0428033247590065, 0.04011841118335724, -0.015936102718114853, -0.00037722280831076205, 0.06650996953248978, -0.05126907676458359, -0.03596251830458641, 0.013450423255562782, -0.054232943803071976, 0.006818037945777178, 0.003624362638220191, 0.017735395580530167, -0.04342130944132805, 0.029689330607652664, 0.047499123960733414, -0.00895445141941309, 0.054456621408462524, 0.0024928119964897633, 0.039840154349803925, -0.03877443075180054, 0.017180243507027626, -0.0827636793255806, 0.00585541408509016, 0.053347617387771606, 0.0074805100448429585, 0.011306039988994598, -0.019194040447473526, -0.01077656727284193, 0.034405265003442764, -0.04384855553507805, -0.025935955345630646, 0.02017871104180813, -0.021264277398586273, -0.03257507458329201, 0.037884946912527084, -0.05779913440346718, 0.0589371919631958, 0.01756816729903221, -0.029307395219802856, -0.0294127706438303, -0.009977400302886963, 0.0494295097887516, 0.03858023136854172, 0.023227697238326073, -0.017504241317510605, -0.024728281423449516, 0.08563191443681717, 0.0007807018118910491, 0.02044876292347908, 0.047094181180000305, -0.01738222874701023, 0.02663990668952465, 0.04353472217917442, -0.024107245728373528, 0.0015848379116505384, 0.02982015535235405, -0.005088149569928646, -0.07108314335346222, 0.011216653510928154, 0.0203264057636261, -0.006525415927171707, -0.05194900184869766, 0.07719716429710388, 0.02118709310889244, -0.06279415637254715, 0.0007999081863090396, 0.03918476775288582, -0.014606021344661713, -0.06499839574098587, -0.055799733847379684, -0.000864367641042918, -0.056895963847637177, 0.07239893823862076, 0.00734679726883769, -0.0016182776307687163, 0.08045411109924316, 0.0016104555688798428, 0.013308356516063213, -0.020499570295214653, 0.07417208701372147, 0.05977199971675873, 0.015385954640805721, -0.019649116322398186, 0.05851549655199051, -0.02157633565366268, -0.02236275002360344, 0.0008202433818951249, -0.016799116507172585, -0.04516664519906044, 0.01723884977400303, 0.005509673617780209, 0.08463963121175766, -0.0014425041154026985, 0.07607680559158325, -0.015929773449897766, -0.009500255808234215, -0.006175906863063574, 0.037642545998096466, 0.006686450447887182, 0.004287081304937601, -0.013511368073523045, 0.05382953956723213, 0.0018065162003040314, -0.012814278714358807, 0.0161071065813303, -0.01985299400985241, -0.011748187243938446, 0.024284765124320984, 0.012731595896184444, 0.0012155326548963785, 0.02677207626402378, 0.0298349279910326, 0.04878311976790428, -0.025238225236535072, 0.0008748117834329605, -0.013113989494740963, 0.006355142220854759, -0.014199898578226566, 0.01392215583473444, -0.005511548835784197, -0.009468157775700092, -0.0006833450170233846, -0.02216809056699276, -0.00753460917621851, -0.013168334029614925, -0.013240840286016464, 0.03023408353328705, -0.017785387113690376, 0.028072496876120567, -0.017876846715807915, 0.004872133024036884, -0.0514497384428978, -0.037235893309116364, -0.06645464152097702, -0.055557917803525925, -0.04023861885070801, -0.03573383390903473, 0.005902525503188372, 0.003029771149158478, -0.04328743740916252, -0.017286142334342003, -0.03409893810749054, 0.004764137323945761, -0.00353170745074749, -0.058693964034318924, -0.017853282392024994, 0.02844037115573883, 0.013129305094480515, 0.033598642796278, -0.0013054353184998035, 0.07661493122577667, 0.01608247496187687, -0.020051265135407448, -0.054928671568632126, 0.00401153601706028, 0.05232086032629013, 0.022952834144234657, -0.005275859031826258, -0.08508548140525818, 0.02815285138785839, 0.001168660121038556, 0.005316883325576782, -0.06397385150194168, -0.013568105176091194, 0.070225290954113, 0.04033159837126732, 0.05492234230041504, -0.010003345087170601, -0.010806294158101082, -0.030709246173501015, 0.002584419446066022, 0.03166106343269348, -0.0008510372135788202, 0.07680246233940125, -0.01805335097014904, 0.07768838107585907, 0.03679772466421127, -0.012060972861945629, -0.016422756016254425, 0.02510056458413601, -0.02737204171717167, -0.021157458424568176, -0.05325886234641075, -0.032254766672849655, -0.04144258424639702, -0.07834098488092422, 0.005864574108272791, 0.025414805859327316, -0.0041657364927232265, -0.04757722467184067, 0.020287657156586647, 0.058187227696180344, -0.005273191723972559, 0.03145219758152962, -0.04562331736087799, 0.021350953727960587, -0.024455837905406952, -0.033382147550582886, 0.0006827759207226336, -0.010062583722174168, -0.0017989526968449354, -0.0412793830037117, -0.0043607777915894985, -0.013041956350207329, -0.022282695397734642, -0.02660277858376503, 0.041555337607860565, 0.04732631519436836, -0.030638661235570908, -0.01565108262002468 ]
[ -0.03859122842550278, -0.024523483589291573, -0.020365117117762566, -0.024232877418398857, 0.04113113880157471, -0.0831952840089798, 0.053593795746564865, 0.05962308496236801, 0.029197199270129204, -0.01778411492705345, -0.013444215059280396, -0.028534390032291412, -0.0003472391690593213, -0.0012498260475695133, 0.09471981972455978, -0.01392151415348053, 0.02648681029677391, -0.06330583244562149, -0.029687389731407166, -0.008605471812188625, 0.048461489379405975, -0.034097447991371155, 0.003315320936962962, -0.04219089820981026, 0.037293318659067154, 0.005001347977668047, 0.02022641710937023, -0.06351195275783539, 0.019064057618379593, -0.16399796307086945, 0.036200206726789474, -0.03897513449192047, 0.018425442278385162, -0.013456654734909534, -0.0030134781263768673, 0.03544541075825691, -0.01029760017991066, -0.008980593644082546, 0.018831782042980194, 0.06846971809864044, -0.005460178013890982, 0.011625757440924644, -0.0813009962439537, -0.041398800909519196, 0.007027780171483755, -0.019867243245244026, -0.0018025969620794058, -0.00011685513163683936, -0.026230841875076294, 0.00644685747101903, -0.05849814787507057, 0.0098554827272892, 0.02249474823474884, -0.011246023699641228, -0.0023046971764415503, 0.016715599223971367, 0.059944409877061844, 0.10707193613052368, 0.05250794067978859, 0.03351730853319168, 0.05310002714395523, -0.020023014396429062, -0.12887437641620636, 0.11035814136266708, -0.009590115398168564, 0.02122064121067524, -0.0020755406003445387, 0.023539118468761444, 0.011482281610369682, 0.06618813425302505, 0.014700221829116344, 0.025505783036351204, 0.013360782526433468, 0.07057515531778336, -0.00012046702613588423, -0.0019932561554014683, 0.04685770347714424, 0.021257363259792328, 0.011792497709393501, -0.06653852015733719, -0.05705690011382103, -0.021038835868239403, 0.009144973941147327, 0.0031907493248581886, -0.03682940453290939, 0.006632676348090172, -0.020867135375738144, 0.0605180561542511, 0.027497228235006332, 0.031246043741703033, 0.006464623846113682, -0.03131115809082985, 0.04159240797162056, -0.0028201101813465357, -0.09078279137611389, -0.0272370558232069, -0.027436882257461548, -0.008550042286515236, -0.056784339249134064, 0.41642606258392334, -0.01097045186907053, 0.0018354385392740369, 0.04630250483751297, 0.055781736969947815, 0.01735660806298256, -0.02681645005941391, 0.012426034547388554, -0.05700182542204857, -0.008975060656666756, -0.008321000263094902, -0.010707695968449116, -0.01611364632844925, 0.03693265840411186, -0.048859573900699615, 0.005678478628396988, 0.020256897434592247, 0.044620051980018616, 0.019453279674053192, -0.007553075440227985, 0.029136741533875465, -0.029883231967687607, 0.022136904299259186, 0.033986181020736694, -0.006345483008772135, -0.002379464218392968, -0.005841060541570187, 0.07100848108530045, 0.05598846450448036, 0.005767038092017174, 0.002987371990457177, 0.030216537415981293, -0.023962372913956642, -0.09867875277996063, 0.014815403148531914, 0.02225055731832981, 0.025226786732673645, 0.016075318679213524, -0.04351683706045151, -0.03380334749817848, 0.01160365529358387, -0.012865785509347916, -0.03288848698139191, 0.03616540879011154, -0.06460811197757721, -0.01928272843360901, 0.14061547815799713, 0.001037218957208097, -0.0055796182714402676, -0.007135774940252304, -0.062342096120119095, -0.008493750356137753, 0.04176939278841019, -0.022523216903209686, -0.046556662768125534, 0.0003405734896659851, 0.022288423031568527, 0.03565431013703346, 0.0070838602259755135, -0.01397476252168417, 0.024378059431910515, 0.012531251646578312, -0.011980927549302578, -0.005773272830992937, 0.01799199916422367, 0.028510157018899918, -0.10713747888803482, -0.01641087792813778, 0.01493595726788044, -0.02049812488257885, -0.06077798083424568, -0.029491331428289413, 0.03662356734275818, -0.031872447580099106, -0.049544502049684525, 0.04438789561390877, -0.01111547276377678, -0.012061798945069313, 0.013975941576063633, 0.03221461921930313, 0.026928653940558434, -0.017006145790219307, -0.037128180265426636, -0.034252241253852844, -0.007690902333706617, -0.019488219171762466, -0.05018545687198639, -0.014819365926086903, -0.049009066075086594, 0.024332284927368164, -0.016400359570980072, -0.03546786308288574, -0.023137571290135384, -0.05539259314537048, 0.035308752208948135, 0.0017987607279792428, -0.029049832373857498, 0.048456039279699326, -0.04512777179479599, 0.02341320551931858, -0.015958108007907867, 0.00021817909146193415, -0.003350335406139493, -0.05402751639485359, 0.036495909094810486, -0.05460091680288315, 0.05524984002113342, 0.015988538041710854, -0.024286789819598198, 0.07149746268987656, 0.0026443214155733585, -0.0158623605966568, 0.0008694578427821398, -0.015693385154008865, 0.018163280561566353, -0.002666366985067725, -0.04572230204939842, 0.030426202341914177, 0.021016180515289307, 0.028850847855210304, 0.012213252484798431, -0.03500444069504738, 0.007200249470770359, -0.008795353583991528, -0.32031744718551636, -0.04169957712292671, 0.00633794441819191, -0.014514317736029625, -0.049295637756586075, -0.0573105625808239, -0.03700076788663864, -0.06272090971469879, 0.021301520988345146, 0.013503411784768105, 0.1382356584072113, -0.03592877462506294, 0.00806295033544302, -0.09753566235303879, 0.03396691754460335, -0.013393208384513855, -0.03799605742096901, -0.0023146639578044415, 0.03237908333539963, 0.022430140525102615, -0.003498778445646167, -0.022296851500868797, 0.035536009818315506, -0.059128932654857635, 0.019032970070838928, -0.00029816143796779215, 0.1095890924334526, 0.02069305069744587, 0.05611163750290871, -0.07844982296228409, 0.05624176189303398, 0.040778763592243195, -0.02718752808868885, -0.12440134584903717, -0.009428796358406544, -0.01979188062250614, -0.01184803619980812, 0.0214251521974802, -0.017627356573939323, -0.020189566537737846, -0.07581232488155365, 0.06370986253023148, -0.03664100915193558, -0.06965910643339157, 0.008053479716181755, -0.02219267003238201, -0.03655052185058594, -0.061518605798482895, 0.006584014743566513, 0.037296708673238754, -0.004715697839856148, -0.05401761457324028, 0.04656939581036568, 0.042820002883672714, 0.020096417516469955, -0.03764421492815018, -0.035361845046281815, 0.011330553330481052, -0.01587498001754284, -0.02821923978626728, 0.012971092946827412, 0.08627920597791672, 0.0420241616666317, -0.04521139711141586, -0.012864763848483562, 0.027466610074043274, -0.036347582936286926, -0.011085272766649723, 0.00807892344892025, -0.03348778560757637, -0.03674148768186569, 0.10351857542991638, -0.011876791715621948, 0.048446863889694214, 0.05221913009881973, -0.004035105463117361, 0.03473026305437088, -0.048883602023124695, 0.00798976793885231, 0.007567747496068478, 0.016811033710837364, 0.005433962680399418, 0.07186855375766754, -0.0230712927877903, -0.04314402863383293, 0.05890469625592232, -0.019587833434343338, 0.0024668220430612564, 0.06178535521030426, -0.0022624616976827383, -0.002201369032263756, 0.011201701126992702, -0.020153600722551346, -0.07931684702634811, 0.05052623152732849, -0.0007435616571456194, -0.24787282943725586, 0.013162292540073395, 0.02559492737054825, 0.043639443814754486, -0.0051587847992777824, -0.0006827311008237302, 0.03811804950237274, -0.03461553901433945, -0.03258382901549339, 0.013350793160498142, -0.023277970030903816, 0.04658864066004753, 0.0032316255383193493, -0.018495002761483192, 0.0191776342689991, 0.03942836448550224, 0.05135533958673477, 0.012317455373704433, -0.002961886813864112, -0.020821359008550644, 0.021378129720687866, -0.04625700041651726, 0.15165989100933075, 0.014418401755392551, 0.04866430163383484, 0.05391132831573486, -0.013320768252015114, 0.023285802453756332, 0.08882187306880951, 0.04169468209147453, -0.015830330550670624, -0.023482829332351685, 0.07420346885919571, 0.029086440801620483, 0.028430024161934853, -0.12111154198646545, 0.017985709011554718, 0.0038988597225397825, 0.025905419141054153, 0.023633882403373718, -0.04767460376024246, 0.028884228318929672, -0.03206188604235649, 0.026035455986857414, 0.042387526482343674, -0.01764039136469364, -0.05339916795492172, -0.03778339549899101, -0.06122561916708946, 0.01973012275993824, -0.00817226991057396, -0.06156789883971214, -0.009489655494689941, 0.04845859855413437, 0.024081522598862648, 0.06586042046546936, 0.0061539593152701855, -0.015230013988912106, -0.000626248074695468, 0.004722932353615761, -0.008731930516660213, -0.020387299358844757, 0.09370879828929901, -0.004045071080327034, 0.0638626292347908 ]
[ 0.011431224644184113, 0.029217049479484558, 0.002672945149242878, -0.0033554481342434883, 0.003809156361967325, 0.012857985682785511, 0.009240737184882164, 0.044749557971954346, 0.016391964629292488, -0.02349463850259781, 0.004681420512497425, -0.006451450753957033, 0.040425147861242294, -0.024740958586335182, 0.011106389574706554, -0.05392327532172203, 0.01875024102628231, -0.030094241723418236, 0.031352248042821884, -0.05117329582571983, -0.02540367655456066, 0.029944246634840965, 0.016478870064020157, -0.015006671659648418, 0.03992583602666855, 0.01722843199968338, 0.0049771033227443695, -0.04127748683094978, 0.019340775907039642, -0.07393189519643784, 0.030133653432130814, -0.025009138509631157, -0.024249615147709846, -0.026841070502996445, -0.07596387714147568, -0.0008034755010157824, 0.0012780468678101897, 0.004018424078822136, 0.00242636795155704, 0.041186150163412094, -0.0005856447969563305, -0.044714972376823425, -0.03750786930322647, 0.05033017322421074, -0.03314600884914398, 0.012160034850239754, 0.00832455512136221, -0.020828822627663612, -0.03825309872627258, 0.04232342541217804, -0.01773166097700596, 0.006231454201042652, -0.0017440966330468655, 0.05313463509082794, -0.006437473464757204, -0.012457759119570255, -0.04128013178706169, 0.05954175069928169, 0.02330545149743557, 0.03874314948916435, 0.029166219756007195, -0.026531247422099113, -0.0010813875123858452, -0.0013566985726356506, 0.00882019568234682, -0.01829180121421814, -0.055858198553323746, 0.0014635027619078755, 0.013643727637827396, 0.003864948870614171, 0.03466596454381943, 0.03484437242150307, 0.008395480923354626, -0.0087048951536417, -0.05897243320941925, -0.002265955088660121, 0.040831323713064194, -0.023672698065638542, -0.03855649381875992, 0.020508525893092155, -0.006518701557070017, 0.01770506240427494, 0.0022126391995698214, 0.038235947489738464, -0.015754226595163345, 0.01877032220363617, 0.022259987890720367, -0.013485602103173733, -0.023561792448163033, 0.021661298349499702, -0.02074545808136463, 0.07453519850969315, 0.004548408091068268, -0.02447959966957569, -0.06758011877536774, 0.02756863459944725, -0.08146598935127258, -0.04587768763303757, 0.0006009718053974211, 0.7943291664123535, 0.00569881172850728, 0.014363124966621399, 0.01770922727882862, 0.029947685077786446, 0.023346280679106712, -0.03629165142774582, -0.007721555419266224, 0.015435698442161083, 0.04446123167872429, 0.025989798828959465, 0.045966655015945435, -0.00723679643124342, 0.01702924072742462, 0.055816471576690674, 0.011505807749927044, 0.009949175640940666, 0.02425888553261757, 0.01964207924902439, 0.038366518914699554, 0.040299028158187866, 0.018567563965916634, -0.011653219349682331, -0.0008606116753071547, -0.04455391690135002, 0.00577868428081274, -0.10905720293521881, 0.03768601268529892, -7.946779683204345e-33, 0.03615165501832962, -0.011136339046061039, 0.02286374196410179, 0.024848582223057747, -0.004805027041584253, -0.015088067390024662, 0.021971318870782852, 0.008409912697970867, 0.004430272616446018, -0.047123316675424576, -0.0008773360750637949, -0.014536667615175247, -0.0103334691375494, -0.012091646902263165, 0.02167573757469654, -0.010985448956489563, -0.0060560442507267, 0.018933063372969627, 0.0215739943087101, -0.010548321530222893, -0.008487408980727196, 0.02384469285607338, -0.02333611622452736, 0.015835151076316833, -0.001398641150444746, 0.04062574356794357, 0.062214445322752, -0.027238933369517326, 0.003888120176270604, -0.04686501622200012, -0.022879118099808693, 0.021468518301844597, -0.02181871607899666, -0.04009201377630234, 0.05811775103211403, -0.06094574183225632, -0.04134207218885422, 0.019731398671865463, -0.04715563356876373, -0.06426256150007248, -0.06061381846666336, 0.013012816198170185, -0.03228989988565445, -0.0470600500702858, -0.02755589224398136, -0.013828666880726814, -0.01493595540523529, -0.00008424217958236113, -0.030293693765997887, -0.0017740457551553845, 0.02119557000696659, 0.017977235838770866, 0.002954025287181139, -0.02962942235171795, -0.013958588242530823, 0.02392284944653511, -0.018814796581864357, 0.019993675872683525, 0.013065136969089508, -0.004244482610374689, 0.014394345693290234, -0.04182702302932739, -0.0003517158329486847, 0.018566029146313667, 0.012921279296278954, 0.008599060587584972, -0.03914909437298775, -0.0425712950527668, -0.002736002905294299, 0.007146103773266077, -0.04021318629384041, -0.010853140614926815, -0.008026988245546818, 0.010881219990551472, -0.0003349573235027492, 0.0024435785599052906, 0.0005212900578044355, -0.021817689761519432, -0.020580196753144264, -0.007383314892649651, 0.016925543546676636, -0.03107598051428795, 0.05505722761154175, -0.05608440563082695, 0.00896980706602335, -0.008385430090129375, 0.01969113200902939, -0.024467403069138527, -0.0021966658532619476, 0.053160641342401505, 0.02172723598778248, 0.08097536116838455, -0.03277800604701042, 0.012087035924196243, -0.03992215916514397, 8.076136959040583e-33, -0.031761713325977325, -0.006701081525534391, -0.043602023273706436, -0.016846701502799988, 0.006548488512635231, -0.004911145661026239, 0.02030736580491066, 0.04754846543073654, -0.055294219404459, 0.034069668501615524, 0.006561041809618473, 0.004199937451630831, -0.04313429817557335, 0.02974560111761093, 0.06474415957927704, -0.013144777156412601, 0.051997341215610504, -0.0292239710688591, -0.010489948093891144, -0.002299270126968622, -0.0035018606577068567, 0.0019849983509629965, 0.024834459647536278, 0.0019407577347010374, 0.031838513910770416, 0.034788329154253006, 0.019928937777876854, 0.0229917261749506, -0.02135796844959259, -0.03239786624908447, 0.02980761043727398, -0.03937219828367233, 0.019533758983016014, -0.022182311862707138, 0.004192271735519171, 0.02943827584385872, -0.010136394761502743, -0.008107402361929417, 0.03342991694808006, -0.018820783123373985, 0.04482515528798103, -0.04649338126182556, 0.03577733784914017, 0.01830177754163742, -0.029073450714349747, -0.03192583844065666, -0.015462039038538933, -0.004414405673742294, -0.029919488355517387, 0.010019814595580101, 0.034351054579019547, 0.018433814868330956, -0.006069657858461142, 0.030352583155035973, 0.014438347890973091, -0.03479143977165222, -0.00538824824616313, -0.028093283995985985, -0.04549943283200264, -0.03615584969520569, 0.011849229224026203, -0.04995008558034897, 0.015593734569847584, 0.04337485879659653, -0.020823432132601738, -0.025594359263777733, 0.016089649870991707, 0.0035337922163307667, -0.01455493550747633, 0.0032788498792797327, 0.017364133149385452, -0.07188307493925095, -0.02533261477947235, 0.03380034118890762, 0.07651520520448685, -0.030400775372982025, 0.031857382506132126, -0.007210984360426664, -0.050517696887254715, -0.015508790500462055, 0.005774892866611481, 0.05881884694099426, 0.004958780016750097, -0.06527863442897797, 0.038838326930999756, -0.03311960771679878, -0.015145471319556236, 0.0036574900150299072, 0.011803828179836273, 0.03235125541687012, 0.010148316621780396, 0.04000477492809296, -0.007979504764080048, -0.003376442939043045, 0.026872120797634125, -1.3181044700161237e-8, -0.0358627587556839, -0.016258003190159798, 0.006448147352784872, 0.01927468553185463, 0.0025383993051946163, 0.00539835449308157, -0.04577255621552467, -0.020660066977143288, 0.036090098321437836, 0.00006813255458837375, -0.03713434934616089, -0.03132632002234459, -0.01260092668235302, 0.053187768906354904, 0.028837671503424644, -0.05240350589156151, -0.050951167941093445, -0.06494277715682983, 0.03322651609778404, 0.05111465975642204, -0.025960948318243027, 0.02849867194890976, -0.030610844492912292, 0.009104056283831596, 0.018221482634544373, 0.04025397449731827, 0.03269091621041298, -0.0654107853770256, 0.012423941865563393, 0.012874954380095005, 0.016802798956632614, -0.024702945724129677, -0.03091050125658512, -0.03635096922516823, -0.04281720146536827, 0.015305822715163231, -0.00015144622011575848, -0.011397717520594597, -0.026937389746308327, -0.0039393287152051926, 0.01584893837571144, 0.011719513684511185, 0.014165240339934826, -0.01784851774573326, -0.01934083178639412, 0.008753892034292221, -0.03317007049918175, 0.05057138949632645, 0.053023792803287506, 0.0109197236597538, -0.0632472112774849, 0.0005769109702669084, 0.007872853428125381, -0.007534773554652929, 0.020767930895090103, -0.0389198437333107, 0.05958915501832962, -0.02836832031607628, -0.008893107995390892, -0.04224303737282753, 0.08230593055486679, 0.0221707746386528, -0.05561638996005058, -0.021709879860281944 ]
learning-android-getting-a-service-to-communicate-with-an-activity
https://markhneedham.com/blog/2012/01/05/learning-android-getting-a-service-to-communicate-with-an-activity
false
2012-01-02 02:39:52
Learning Android: Authenticating with Twitter using OAuth
[ "android" ]
[ "Android" ]
I want to be able to get the tweets from my timeline into my app which means I need to authorise the app with Twitter using OAuth. The last time I tried to authenticate using OAuth a couple of years ago was a bit of a failure but luckily this time http://honza.ca/2010/09/how-to-use-twitter-oauth-on-android[Honza Pokorny has written a blog post explaining what to do]. I had to adjust the code a little bit from what's written on his post so I thought I'd document what I've done. We're using the https://github.com/kaeppler/signpost[signpost] library for which we need to download the following two jars and put them into the app's 'libs' directory. [source,text] ---- wget http://oauth-signpost.googlecode.com/files/signpost-commonshttp4-1.2.1.1.jar wget http://oauth-signpost.googlecode.com/files/signpost-core-1.2.1.1.jar ---- I created a button that had to be clicked to fire the first step of OAuth authentication with twitter. The code looks like this: [source,java] ---- public class MyActivity extends Activity { private String CALLBACKURL = "app://twitter"; private String consumerKey = "TwitterConsumerKey"; private String consumerSecret = "TwitterConsumerSecret"; private OAuthProvider httpOauthprovider = new DefaultOAuthProvider("https://api.twitter.com/oauth/request_token", "https://api.twitter.com/oauth/access_token", "https://api.twitter.com/oauth/authorize"); private CommonsHttpOAuthConsumer httpOauthConsumer = new CommonsHttpOAuthConsumer(consumerKey, consumerSecret); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ImageButton oauth = (ImageButton) findViewById(R.id.oauth_button); oauth.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { try { String authUrl = httpOauthprovider.retrieveRequestToken(httpOauthConsumer, CALLBACKURL); Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(authUrl)); v.getContext().startActivity(intent); } catch (Exception e) { Log.w("oauth fail", e); Toast.makeText(v.getContext(), e.getMessage(), Toast.LENGTH_LONG).show(); } } }); } } ---- The +++<cite>+++CALLBACK+++</cite>+++ URL is called by Twitter when the user authorises the application (and therefore the request token). Usually it would be a HTTP URL but in this case we need to define a special URL which gets handled by our application. The +++<cite>+++consumerKey+++</cite>+++ and +++<cite>+++consumerSecret+++</cite>+++ are values https://dev.twitter.com/apps[assigned by Twitter for the application]. The definition of the callback URL in the manifest file looks like this: [source,xml] ---- <activity android:name="MyActivity" android:label="@string/app_name" android:launchMode="singleInstance"> ... <intent-filter> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.DEFAULT"/> <category android:name="android.intent.category.BROWSABLE"/> <data android:scheme="app" android:host="twitter" /> </intent-filter> </activity> ---- We can change +++<cite>+++app://twitter+++</cite>+++ to be anything we want but it http://stackoverflow.com/questions/4644239/how-i-can-call-back-in-android-using-oauth-for-twitter[needs to match what's defined] in the +++<cite>+++data+++</cite>+++ element in our manifest file. I found that I needed to define +++<cite>+++Callback URL+++</cite>+++ in my application's settings on Twitter otherwise I ended up getting this error: [source,text] ---- oauth.signpost.exception.OAuthCommunicationException: Communication with the service provider failed: https://api.twitter.com/oauth/request_token at oauth.signpost.AbstractOAuthProvider.retrieveToken(AbstractOAuthProvider.java:214) at oauth.signpost.AbstractOAuthProvider.retrieveRequestToken(AbstractOAuthProvider.java:69) ... Caused by: java.io.FileNotFoundException: https://api.twitter.com/oauth/request_token at org.apache.harmony.luni.internal.net.www.protocol.http.HttpURLConnectionImpl.getInputStream(HttpURLConnectionImpl.java:521) at org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:258) at oauth.signpost.basic.HttpURLConnectionResponseAdapter.getContent(HttpURLConnectionResponseAdapter.java:18) at oauth.signpost.AbstractOAuthProvider.handleUnexpectedResponse(AbstractOAuthProvider.java:228) at oauth.signpost.AbstractOAuthProvider.retrieveToken(AbstractOAuthProvider.java:189) ---- I ended up just setting my callback URL on Twitter to the URL of this blog. It doesn't seem to matter what you put the URL as since it's going to be overridden by our callback URL anyway but it does need to be set. The callback then gets handled by the following code in +++<cite>+++MyActivity+++</cite>+++... [source,java] ---- public class MyActivity extends Activity { ... @Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); Log.w("redirect-to-app", "going to save the key and secret"); Uri uri = intent.getData(); if (uri != null && uri.toString().startsWith(CALLBACKURL)) { String verifier = uri.getQueryParameter(oauth.signpost.OAuth.OAUTH_VERIFIER); try { // this will populate token and token_secret in consumer httpOauthprovider.retrieveAccessToken(httpOauthConsumer, verifier); String userKey = httpOauthConsumer.getToken(); String userSecret = httpOauthConsumer.getTokenSecret(); // Save user_key and user_secret in user preferences and return SharedPreferences settings = getBaseContext().getSharedPreferences("your_app_prefs", 0); SharedPreferences.Editor editor = settings.edit(); editor.putString("user_key", userKey); editor.putString("user_secret", userSecret); editor.commit(); } catch (Exception e) { } } else { // Do something if the callback comes from elsewhere } } } ---- ...which makes another call to Twitter to get the user's key and secret (the access token) which it then stored in shared preferences so we can use it in future without having to re-authenticate with Twitter. We can then query Twitter like so: [source,java] ---- HttpGet get = new HttpGet("http://api.twitter.com/1/statuses/home_timeline.json"); HttpParams params = new BasicHttpParams(); HttpProtocolParams.setUseExpectContinue(params, false); get.setParams(params); try { SharedPreferences settings = getContext().getSharedPreferences("your_app_prefs", 0); String userKey = settings.getString("user_key", ""); String userSecret = settings.getString("user_secret", ""); httpOauthConsumer.setTokenWithSecret(userKey, userSecret); httpOauthConsumer.sign(get); DefaultHttpClient client = new DefaultHttpClient(); String response = client.execute(get, new BasicResponseHandler()); JSONArray array = new JSONArray(response); } catch (Exception e) { // handle this somehow } ---- Here we retrieve the user's key and secret which we saved on the previous step and then set them on our OAuth consumer which we use to sign our request to Twitter. There is a nice explanation of how OAuth works about http://stackoverflow.com/questions/1390881/how-does-twitters-oauth-system-work[half way down this StackOverFlow post], Eran Hammer-Lahav has a pretty good http://hueniverse.com/2007/10/beginners-guide-to-oauth-part-i-overview/["beginner's guide to OAuth"] on his blog and http://tools.ietf.org/html/rfc5849[the OAuth spec] is surprisingly readable as well.
null
null
[ 0.054418906569480896, -0.01785568706691265, -0.007670301478356123, 0.02457170933485031, 0.06490708142518997, 0.034178003668785095, 0.05464616417884827, 0.04478076472878456, 0.02183007076382637, 0.010296494700014591, 0.01750023663043976, -0.04152410104870796, -0.0720142051577568, -0.012662610039114952, -0.037552040070295334, 0.03997064754366875, 0.07449758797883987, -0.0029987457673996687, 0.0399760864675045, -0.0011626952327787876, 0.006635469850152731, 0.06142653897404671, 0.006316123064607382, 0.012322312220931053, 0.03151673078536987, 0.032631441950798035, 0.03347952291369438, 0.027223393321037292, -0.04145045578479767, -0.04575701802968979, 0.05176685377955437, 0.012919049710035324, 0.019841616973280907, -0.027973106130957603, 0.01550202164798975, 0.010455903597176075, -0.015632081776857376, 0.01583423651754856, 0.015146852470934391, 0.04307882487773895, -0.08209872990846634, 0.03590400144457817, -0.03601466119289398, -0.021599512547254562, -0.02504051849246025, 0.0072160810232162476, -0.024839717894792557, 0.030093999579548836, -0.01691540703177452, -0.018625255674123764, -0.07258963584899902, 0.029274605214595795, -0.027271253988146782, -0.012216449715197086, 0.045680250972509384, 0.0590687170624733, -0.009287981316447258, -0.09184945374727249, 0.015751030296087265, -0.04812916740775108, 0.039592452347278595, 0.0027239422779530287, 0.032626934349536896, -0.010267292149364948, -0.011164953000843525, -0.014449723064899445, 0.0017811505822464824, 0.07321801036596298, -0.020890183746814728, 0.010728449560701847, -0.010053602047264576, -0.0009139492176473141, -0.016707217320799828, 0.0035702574532479048, -0.0015336659271270037, -0.02745857648551464, 0.008114034309983253, 0.09222134947776794, 0.024255767464637756, 0.04234308376908302, -0.025663480162620544, -0.02188808284699917, 0.00011607076885411516, 0.03798389434814453, -0.006453104317188263, -0.02334631234407425, -0.027244850993156433, -0.023713473230600357, -0.022287702187895775, 0.053509049117565155, -0.010952159762382507, -0.02202059142291546, -0.01975223608314991, 0.026954084634780884, -0.0015335265779867768, -0.0032031098380684853, 0.00040180585347115993, 0.004608546383678913, -0.006042007356882095, -0.013245624490082264, -0.0241240281611681, -0.04450584575533867, 0.008169283159077168, 0.01772845908999443, -0.04077107086777687, 0.005967381875962019, -0.015933522954583168, -0.011486561968922615, 0.016902437433600426, 0.008807194419205189, -0.014726740308105946, 0.0332995168864727, -0.013152023777365685, 0.004993661306798458, -0.04136643558740616, 0.0631219819188118, 0.0054786293767392635, -0.029134787619113922, -0.025361336767673492, 0.017040221020579338, 0.048226308077573776, 0.060567229986190796, -0.00238662282936275, 0.06189041584730148, -0.00021999912860337645, 0.05558688938617706, -0.041969507932662964, 0.02628971077501774, -0.05542593076825142, -0.05133960023522377, -0.007888986729085445, 0.055364541709423065, 0.015035558491945267, 0.030937934294342995, -0.01760224997997284, -0.020274236798286438, -0.007889242842793465, -0.013319605030119419, 0.06471844762563705, 0.008962305262684822, -0.035267118364572525, -0.02978317253291607, -0.03481448069214821, -0.014063119888305664, 0.01838652417063713, 0.01659485325217247, 0.007364812772721052, -0.02327481471002102, -0.032384637743234634, 0.029239607974886894, -0.0018551392713561654, -0.021305954083800316, 0.04422345757484436, -0.02758607268333435, 0.000816546322312206, 0.05884211137890816, 0.0674687922000885, 0.024357955902814865, -0.005896993912756443, 0.017898747697472572, 0.04073174670338631, 0.02587530016899109, -0.003867455292493105, 0.07133804261684418, 0.014320542104542255, -0.03394737467169762, 0.01881985552608967, 0.06294820457696915, -0.00822426751255989, -0.013319090940058231, -0.046857427805662155, -0.08861697465181351, 0.03359448164701462, -0.03770111873745918, 0.001369529403746128, 0.026669107377529144, 0.03721288591623306, -0.02966156415641308, 0.02307334542274475, 0.04054364934563637, -0.05782302841544151, 0.059751275926828384, 0.06359180808067322, 0.013559325598180294, 0.0342068150639534, -0.0064962487667799, 0.04509562626481056, 0.012985236011445522, 0.006316210143268108, 0.010883145034313202, -0.056470658630132675, -0.055407654494047165, -0.009472991339862347, -0.008328578434884548, 0.06067228317260742, -0.02282814309000969, 0.0218078400939703, 0.07823553681373596, 0.045835018157958984, 0.016427678987383842, 0.005922115407884121, -0.026307884603738785, 0.02304936572909355, -0.04754384234547615, -0.0656910166144371, 0.03898845613002777, 0.06271421164274216, -0.02603686787188053, -0.020967857912182808, 0.002799069043248892, -0.027653278782963753, -0.0007447752286680043, 0.0020081496331840754, -0.03594877943396568, 0.01630125194787979, 0.002311299555003643, 0.0316130705177784, -0.026348019018769264, 0.06761522591114044, -0.06180688738822937, 0.019653765484690666, -0.010285343043506145, 0.0010632136836647987, -0.02209584228694439, -0.004620957653969526, 0.12418463081121445, 0.015549300238490105, -0.0528973713517189, -0.07039444893598557, 0.006995328236371279, 0.008882477879524231, -0.05740970000624657, 0.011134844273328781, -0.015673736110329628, 0.00828901119530201, -0.01627819798886776, -0.048793576657772064, -0.03831876814365387, -0.002399544231593609, -0.044009555131196976, 0.031522106379270554, 0.08466096222400665, -0.03837376832962036, 0.05035826936364174, -0.023298529908061028, -0.03038710728287697, -0.015100745484232903, -0.04320032149553299, -0.05908137559890747, 0.019639041274785995, 0.031634774059057236, -0.023473771288990974, 0.03897537291049957, -0.025846516713500023, -0.030510706827044487, -0.024949921295046806, -0.05739777162671089, -0.0008931981865316629, 0.004183695185929537, 0.055512528866529465, 0.007888918742537498, 0.05278069153428078, -0.03924942389130592, 0.018372830003499985, -0.03666958585381508, -0.007743507623672485, -0.027843106538057327, -0.020811550319194794, -0.013645661063492298, 0.04152640700340271, 0.021305590867996216, -0.002683814615011215, 0.022933967411518097, 0.014872327446937561, 0.0013955488102510571, 0.011706747114658356, 0.028023075312376022, -0.006598789244890213, -0.008241991512477398, -0.0490502193570137, -0.03493471443653107, 0.056550975888967514, -0.0346868596971035, -0.08056803792715073, -0.009656229056417942, -0.1019638180732727, 0.06973250955343246, -0.026815569028258324, -0.048047348856925964, 0.021464191377162933, 0.050457362085580826, 0.04522315785288811, 0.03479372709989548, -0.014914672821760178, 0.07084889709949493, -0.012600929476320744, 0.008215869776904583, 0.02391405962407589, -0.015940388664603233, 0.05074077099561691, -0.02074902132153511, 0.0007664327276870608, 0.04415043443441391, -0.023147612810134888, -0.007833247072994709, -0.05362781509757042, 0.008618880994617939, -0.028980610892176628, -0.2725943624973297, 0.06540703773498535, -0.0017506801523268223, -0.035226743668317795, 0.02099044807255268, -0.011187492869794369, 0.010651258751749992, -0.025609927251935005, -0.015570631250739098, 0.04602004960179329, 0.011308232322335243, 0.002293338067829609, -0.028728291392326355, -0.01063708309084177, -0.05100918561220169, -0.03265206888318062, -0.034740909934043884, -0.04226348176598549, 0.012745598331093788, 0.03345466032624245, -0.020801041275262833, -0.0510760098695755, 0.019002379849553108, 0.022978756576776505, 0.041048675775527954, 0.032850481569767, -0.10603935271501541, 0.04706123471260071, -0.007561546750366688, -0.0039711520075798035, 0.01808594912290573, -0.03283233940601349, 0.015486402437090874, 0.0039460728876292706, -0.0391964390873909, -0.00957613717764616, 0.025409121066331863, 0.029808415099978447, -0.023548370227217674, -0.011145752854645252, -0.015547402203083038, -0.05374152585864067, -0.047033920884132385, 0.005572938825935125, 0.08302310109138489, -0.002651354530826211, -0.06255881488323212, 0.015024007298052311, -0.04961109533905983, 0.07977169007062912, -0.049320098012685776, -0.045010365545749664, -0.015908192843198776, -0.02092994749546051, -0.013109656982123852, -0.0258835069835186, -0.014536560513079166, 0.003914987668395042, -0.04747365415096283, -0.03169829398393631, -0.006539636291563511, -0.022263506427407265, -0.0047336770221591, -0.04143134504556656, -0.04460515081882477, -0.07029544562101364, -0.01191198080778122, 0.006952991709113121, 0.07848815619945526, 0.0500362329185009, -0.04597790911793709, 0.028470521792769432, -0.042669735848903656, -0.10022582113742828, -0.010859229601919651, -0.05639558658003807, -0.023574067279696465, 0.02092398889362812, -0.028022857382893562, 0.03929106146097183, -0.03331311419606209, -0.00788543839007616, 0.020944103598594666, 0.014253443107008934, 0.010829146951436996, 0.0069437832571566105, 0.01534594688564539, -0.022105948999524117, 0.019737714901566505, 0.021864980459213257, 0.05449488386511803, -0.039840325713157654, -0.042284321039915085, -0.023778393864631653, 0.001351614366285503, 0.03833865001797676, 0.028729867190122604, 0.024211335927248, -0.012098083272576332, 0.04564817622303963, 0.03681471198797226, -0.002856696490198374, -0.034132059663534164, -0.021626533940434456, 0.0246770940721035, -0.0013166017597541213, -0.05610662326216698, 0.035173363983631134, 0.011038172990083694, 0.021264944225549698, -0.014831113629043102, -0.0384962260723114, -0.006403695326298475, -0.038520801812410355, -0.07440326362848282, -0.01894398033618927, 0.010758137330412865, 0.03655260428786278, 0.035657599568367004, -0.027767863124608994, -0.04531623795628548, 0.03314421698451042, 0.0214325413107872, -0.008530482649803162, -0.045082058757543564, -0.0308837927877903, -0.028773507103323936, -0.02369072288274765, 0.0017117310781031847, 0.021541593596339226, 0.003434158395975828, -0.0008790392312221229, 0.016237523406744003, -0.03698664531111717, 0.0041321394965052605, -0.01017777994275093, 0.004708459600806236, -0.06568243354558945, 0.006378385704010725, -0.028274565935134888, -0.007746170740574598, -0.007213074713945389, -0.0033787889406085014, 0.018872559070587158, 0.07338646054267883, -0.022105226293206215, 0.03721364215016365, 0.023580415174365044, -0.028299253433942795, 0.01911824941635132, 0.013384394347667694, -0.056143105030059814, -0.0029823004733771086, -0.009575115516781807, -0.016059141606092453, -0.020633548498153687, 0.021287893876433372, -0.016595838591456413, -0.003653499763458967, -0.02767925150692463, 0.04857826605439186, -0.048841990530490875, -0.005952033679932356, 0.012555467896163464, -0.004161294549703598, 0.028467554599046707, -0.03281879052519798, 0.03342502564191818, -0.0342339426279068, -0.06012582406401634, 0.008892037905752659, -0.018157167360186577, 0.010752882808446884, 0.012167014181613922, -0.019109921529889107, 0.0038059742655605078, -0.012965097092092037, 0.033385422080755234, 0.027813319116830826, -0.010292388498783112, -0.0009166403906419873, -0.0173351913690567, 0.024584274739027023, -0.016648786142468452, 0.06732264161109924, 0.05823139846324921, -0.028959348797798157, -0.026546461507678032, -0.028142482042312622, 0.018340181559324265, -0.04862583056092262, 0.01025763712823391, -0.02471599355340004, 0.011126695200800896, 0.005332693457603455, -0.07466231286525726, 0.011465060524642467, -0.0018317841459065676, 0.02588745765388012, 0.003749327501282096, -0.018791573122143745, 0.05109745264053345, -0.06443119049072266, 0.05759122967720032, 0.04759785532951355, -0.034403495490550995, 0.005357773508876562, 0.002874234924092889, 0.034965548664331436, -0.006520754192024469, 0.007415024098008871, -0.07473846524953842, 0.009298688732087612, -0.025862837210297585, -0.0005069870967417955, -0.038545094430446625, -0.05250033736228943, -0.0185844786465168, 0.0020556526724249125, -0.010962669737637043, 0.013461420312523842, -0.013148912228643894, -0.017266033217310905, 0.010690699331462383, -0.013643437996506691, 0.03201928734779358, -0.028149863705039024, 0.013038655743002892, 0.01500135287642479, -0.044315073639154434, -0.0018783359555527568, -0.026589469984173775, 0.03562093898653984, 0.03251102566719055, -0.03049679845571518, 0.007371076382696629, -0.05874761939048767, -0.01919836923480034, 0.013330592773854733, 0.10058096796274185, -0.0037081327755004168, -0.010835576802492142, -0.030047664418816566, -0.013051344081759453, -0.031179029494524002, 0.0008687286172062159, -0.0029945275746285915, 0.04438570886850357, 0.028057532384991646, 0.04828006401658058, 0.0546058714389801, 0.045046109706163406, -0.01684172824025154, 0.010670483112335205, 0.06242477148771286, -0.054472409188747406, -0.02895585261285305, 0.010323663242161274, -0.0483546257019043, 0.03517899289727211, 0.03364766389131546, 0.014072415418922901, -0.040550973266363144, 0.037466831505298615, 0.026132339611649513, 0.0035124255809932947, 0.04313342645764351, -0.011930800974369049, 0.026519306004047394, -0.031115321442484856, 0.0031301872804760933, -0.06763815879821777, 0.028152214363217354, 0.04619937390089035, -0.023130007088184357, 0.012961775995790958, 0.00842041615396738, -0.013086958788335323, 0.015773959457874298, -0.07774003595113754, -0.012182272970676422, 0.03147999942302704, -0.024163702502846718, -0.013512125238776207, 0.02239646017551422, -0.0636928528547287, 0.032867975533008575, 0.03024199604988098, -0.07582070678472519, -0.04243471100926399, -0.0038929982110857964, 0.05663834884762764, 0.009916483424603939, 0.036735087633132935, -0.006379486992955208, -0.03941860795021057, 0.08000770956277847, 0.0016742732841521502, 0.01633874513208866, 0.05481761693954468, -0.0025459984317421913, 0.02360471896827221, 0.03009880892932415, 0.02082008868455887, 0.012363522313535213, 0.03394991531968117, -0.010778623633086681, -0.08351248502731323, 0.04604087024927139, 0.015119927003979683, -0.03358522430062294, -0.05134545639157295, 0.07080542296171188, 0.01769903115928173, -0.031062783673405647, -0.006465773563832045, 0.031685762107372284, -0.022450929507613182, -0.061025626957416534, -0.04400172457098961, 0.008557763881981373, -0.01849277690052986, 0.05312975496053696, 0.010175267234444618, 0.011950825341045856, 0.055401913821697235, 0.001414999132975936, -0.004307305905967951, -0.022695468738675117, 0.06536418199539185, 0.04823766648769379, 0.025667108595371246, -0.003275154856964946, 0.05196443572640419, 0.0309622660279274, -0.038443002849817276, 0.0057008941657841206, -0.01863023079931736, -0.023371350020170212, 0.015525523573160172, -0.006755130365490913, 0.042773157358169556, -0.019255120307207108, 0.04623475670814514, -0.010182181373238564, -0.004737929906696081, 0.0032117206137627363, 0.05417908728122711, -0.014416519552469254, 0.008838138543069363, -0.0014088796451687813, 0.05121742561459541, -0.03232463076710701, -0.022700084373354912, 0.01684521697461605, -0.006209313403815031, -0.002358133438974619, 0.042741160839796066, -0.014659993350505829, 0.008422222919762135, 0.0228349007666111, 0.024561302736401558, 0.0481097549200058, -0.044961296021938324, -0.0004338411381468177, -0.015787461772561073, 0.009707026183605194, 0.0070975651033222675, 0.012533154338598251, -0.010339339263737202, -0.003342628013342619, -0.015581716783344746, -0.00621392298489809, 0.008159657940268517, -0.00475395517423749, -0.017449237406253815, 0.04073869436979294, -0.023612720891833305, 0.022691823542118073, -0.011563556268811226, -0.0037392545491456985, -0.063504159450531, -0.024479392915964127, -0.050649069249629974, -0.05168944224715233, -0.05410094931721687, -0.03390716016292572, 0.0036562434397637844, -0.008767779916524887, -0.07242141664028168, -0.01472807489335537, -0.05968049168586731, 0.019183387979865074, 0.0072793918661773205, -0.01605500839650631, -0.030897043645381927, 0.02885017916560173, 0.01642182283103466, 0.01679372601211071, 0.013364645652472973, 0.07470681518316269, 0.018379412591457367, 0.011831588111817837, -0.04967065528035164, 0.02077108435332775, 0.04248739778995514, 0.020843777805566788, 0.015356100164353848, -0.07257197797298431, -0.003912899177521467, 0.004759902134537697, 0.003039049217477441, -0.05309111997485161, -0.02442084066569805, 0.05316832289099693, 0.03657561540603638, 0.07027827948331833, -0.009190327487885952, 0.0066207717172801495, -0.044812221080064774, -0.008685114793479443, 0.009756384417414665, 0.0034448273945599794, 0.04808034747838974, -0.016759313642978668, 0.07977253198623657, 0.03659392148256302, -0.01761556975543499, -0.0157619658857584, 0.005696557927876711, -0.013771326281130314, -0.010359261184930801, -0.05496896803379059, -0.022923490032553673, -0.0504448227584362, -0.044668104499578476, 0.00874069519340992, 0.045227859169244766, -0.0046784779988229275, -0.030877292156219482, 0.009017986245453358, 0.029592489823698997, -0.01763020269572735, 0.044434938579797745, -0.03280237317085266, 0.027107426896691322, -0.010222421027719975, -0.003452030709013343, -0.008989107795059681, -0.00016232400957960635, -0.029611952602863312, 0.009949250146746635, 0.026192758232355118, -0.02754327282309532, -0.030340008437633514, -0.01695658266544342, 0.015904920175671577, 0.03907260671257973, -0.04261346906423569, -0.011593122966587543 ]
[ -0.04032744839787483, -0.03566988930106163, -0.04094398766756058, -0.05553969740867615, 0.0012668200070038438, -0.0801168903708458, 0.024155540391802788, 0.02973397821187973, -0.003200952196493745, -0.015419778414070606, -0.021748537197709084, -0.041148822754621506, 0.028159094974398613, -0.018226774409413338, 0.10731997340917587, -0.02635311894118786, 0.035312507301568985, -0.08671114593744278, -0.03815252706408501, 0.02051754668354988, 0.007836165837943554, -0.016369717195630074, -0.0009943462209776044, -0.022039402276277542, 0.03152516856789589, 0.029318973422050476, 0.030751468613743782, -0.043707624077796936, 0.0049590072594583035, -0.13137859106063843, 0.013229471631348133, -0.009890804067254066, 0.014942658133804798, 0.0059661478735506535, -0.019255196675658226, 0.04351016879081726, -0.003618615446612239, -0.009656578302383423, 0.02275167405605316, 0.05123913288116455, 0.00981062464416027, 0.009914944879710674, -0.05770651996135712, -0.03618071973323822, 0.05897051468491554, -0.00988165382295847, -0.012693721801042557, 0.025225363671779633, -0.03874645382165909, -0.012625405564904213, -0.0124785415828228, 0.041050903499126434, 0.023273419588804245, -0.003716198028996587, -0.020159652456641197, 0.009406291879713535, 0.03997715935111046, 0.10778764635324478, 0.03192823752760887, 0.056082483381032944, 0.03672497346997261, -0.006416528485715389, -0.13122567534446716, 0.14040814340114594, -0.028836768120527267, 0.019825119525194168, -0.00952165387570858, 0.00784393772482872, 0.004437822848558426, 0.08849793672561646, 0.02218198962509632, -0.0061514065600931644, -0.01206880435347557, 0.031928982585668564, 0.0021636381279677153, 0.02902989462018013, 0.01552946213632822, 0.02716824598610401, -0.0018962793983519077, -0.05808083340525627, -0.05584178492426872, 0.006092532072216272, -0.00909116305410862, 0.026994917541742325, -0.03719368204474449, -0.013088474981486797, -0.018003711476922035, 0.04206874221563339, 0.01595682092010975, 0.03931234031915665, 0.009997552260756493, -0.03329555317759514, 0.05370418354868889, -0.011104067787528038, -0.08969555795192719, -0.031168591231107712, -0.0047701396979391575, 0.00678984634578228, -0.0554378442466259, 0.40408623218536377, -0.023842008784413338, 0.013778770342469215, 0.05894239991903305, 0.03962884470820427, 0.013990397565066814, -0.01613748073577881, -0.014591790735721588, -0.0796632394194603, -0.007105325814336538, -0.006780145689845085, -0.016397619619965553, -0.012612054124474525, 0.026618320494890213, -0.06512012332677841, 0.031083282083272934, 0.03262714296579361, 0.03411780670285225, 0.051022134721279144, -0.012899245135486126, 0.020701345056295395, -0.023831279948353767, -0.006604478228837252, 0.014730563387274742, -0.0024019074626266956, -0.028126327320933342, -0.009464817121624947, 0.048393622040748596, 0.026396892964839935, 0.0490872859954834, 0.03633073717355728, 0.012527194805443287, -0.006713502574712038, -0.11763704568147659, 0.022747628390789032, 0.0002920909028034657, 0.028157589957118034, -0.006382950581610203, -0.02386137843132019, -0.028707660734653473, 0.014843788929283619, -0.015212738886475563, -0.037709545344114304, 0.06865238398313522, -0.03915076330304146, -0.02686409279704094, 0.10538463294506073, 0.010537341237068176, -0.014136194251477718, -0.0059150950983166695, -0.039368972182273865, 0.013172045350074768, 0.04192132130265236, 0.01174053642898798, -0.033134810626506805, 0.014162546955049038, -0.002851401688531041, 0.06438819319009781, 0.0033651201520115137, -0.059369128197431564, 0.008623423054814339, 0.02181932143867016, -0.021079203113913536, -0.03083411417901516, 0.015662649646401405, 0.048828791826963425, -0.14158354699611664, 0.018560610711574554, 0.022449452430009842, 0.006916213780641556, -0.06872273981571198, 0.02822311967611313, 0.017414236441254616, -0.02346924878656864, -0.0307079516351223, 0.05157439410686493, -0.021067533642053604, -0.008818913251161575, 0.004926839843392372, 0.01645398512482643, 0.04824399948120117, -0.03689787909388542, -0.04846832901239395, -0.057478535920381546, -0.02783310040831566, -0.047301702201366425, -0.04826518893241882, -0.026530859991908073, -0.032965563237667084, 0.02034757100045681, -0.022473691031336784, -0.007612858433276415, 0.0024598175659775734, -0.09047640115022659, 0.02690591663122177, -0.010877551510930061, -0.028710078448057175, -0.0034293190110474825, -0.03961143642663956, 0.018869519233703613, -0.029829856008291245, -0.008632184006273746, 0.0077085900120437145, -0.044948361814022064, 0.039538271725177765, -0.024917399510741234, 0.052305079996585846, 0.05384797602891922, -0.03733697906136513, 0.07533985376358032, 0.00416860356926918, -0.021418187767267227, 0.006655720062553883, -0.02134297601878643, 0.02751368284225464, 0.013134659267961979, -0.03793329745531082, 0.025059256702661514, 0.00396254425868392, 0.038197264075279236, 0.0028864939231425524, -0.0530279166996479, 0.010895553976297379, 0.019764747470617294, -0.32760530710220337, -0.054820142686367035, -0.007299809250980616, 0.005345209967344999, -0.02438635565340519, -0.08137103915214539, -0.041540905833244324, -0.06590432673692703, 0.03676016628742218, 0.021951016038656235, 0.14519119262695312, -0.020598115399479866, 0.03260376304388046, -0.056332219392061234, 0.0218735933303833, -0.008407192304730415, -0.04212005063891411, 0.017117956653237343, 0.0556032769382, 0.020438410341739655, -0.04401877522468567, -0.04655301570892334, 0.008974974043667316, -0.043351780623197556, 0.034222882241010666, -0.0016516842879354954, 0.08797086775302887, 0.06872381269931793, 0.022911742329597473, -0.056847117841243744, 0.04779084771871567, 0.029731998220086098, -0.014623649418354034, -0.17129001021385193, 0.016103727743029594, -0.01855347491800785, -0.004591427277773619, 0.005518438294529915, 0.03695252537727356, -0.026013849303126335, -0.05948803573846817, 0.0623042993247509, -0.02646687626838684, -0.06521224975585938, 0.0009297282667830586, 0.0018862622091546655, -0.0318421833217144, -0.032166142016649246, 0.014986244030296803, 0.07082896679639816, -0.011910977773368359, -0.0012356408406049013, 0.03742722049355507, 0.024980541318655014, -0.00383222964592278, -0.03540365397930145, -0.04319325461983681, 0.026082513853907585, -0.021917516365647316, 0.015025331638753414, -0.012698689475655556, 0.06279744952917099, 0.013574866577982903, -0.04537391662597656, -0.004266102332621813, 0.0072446041740477085, -0.0384327732026577, 0.0031949172262102365, 0.007616885006427765, -0.015389343723654747, -0.015225176699459553, 0.0961068794131279, -0.03629092872142792, 0.05157680809497833, 0.06530386209487915, 0.006628869101405144, 0.037294961512088776, -0.019730079919099808, 0.026869645342230797, 0.01121432427316904, 0.008033860474824905, -0.02595367841422558, 0.06256359815597534, -0.025424327701330185, -0.050753846764564514, 0.06798096001148224, 0.009889102540910244, -0.007563595660030842, 0.03396911919116974, -0.002946967026218772, 0.006338576320558786, -0.002076825825497508, 0.02117106132209301, -0.0741555243730545, 0.0525500625371933, -0.023678984493017197, -0.22907620668411255, 0.035824816673994064, 0.0014686223585158587, 0.0693521797657013, 0.0020320513285696507, -0.021082349121570587, 0.07246436178684235, -0.0592593289911747, -0.0470225028693676, 0.015208152122795582, 0.00872390903532505, 0.04695167765021324, 0.0180437583476305, -0.021261125802993774, 0.039690133184194565, 0.005681794602423906, 0.032858166843652725, 0.028044287115335464, -0.03415067866444588, -0.0048683746717870235, 0.01567859761416912, -0.059320587664842606, 0.14015112817287445, 0.004539881367236376, -0.012859372422099113, 0.030534664168953896, 0.01125336717814207, 0.03141431137919426, 0.09447348117828369, 0.018585558980703354, -0.010384287685155869, -0.03585746884346008, 0.045584145933389664, 0.038895055651664734, 0.02713291347026825, -0.1109471544623375, -0.0025150589644908905, -0.012643741443753242, 0.016098465770483017, 0.026951424777507782, -0.05528626963496208, 0.02717139571905136, -0.02089981734752655, 0.031739432364702225, 0.043259456753730774, -0.04079258069396019, -0.049955613911151886, -0.00004946603439748287, -0.07172346860170364, 0.03424162417650223, -0.004387307912111282, -0.0924442857503891, -0.03542274236679077, 0.03695787116885185, -0.0012190928682684898, 0.09162098169326782, 0.023119406774640083, -0.027168191969394684, -0.005922209471464157, 0.010624095797538757, -0.01985718496143818, 0.012512344866991043, 0.10077700018882751, -0.0032462230883538723, 0.06107659637928009 ]
[ 0.0030002284329384565, 0.029721783474087715, 0.008650485426187515, -0.03007773868739605, 0.02499953843653202, 0.014963154681026936, -0.0003565005608834326, 0.03240136429667473, 0.032245419919490814, -0.012815400958061218, 0.039408326148986816, 0.019462531432509422, 0.04360345005989075, -0.043820858001708984, 0.031733620911836624, -0.03163112327456474, -0.017530813813209534, 0.004012925084680319, 0.028575977310538292, -0.056901074945926666, -0.035048168152570724, 0.029172003269195557, 0.04588998481631279, 0.005602197255939245, 0.04084751382470131, -0.03267719969153404, -0.02771100215613842, -0.021166164427995682, 0.027725165709853172, -0.0839453637599945, 0.02810985967516899, -0.02095004729926586, -0.027408389374613762, -0.026329467073082924, -0.04722560569643974, -0.004898278508335352, -0.0024734418839216232, 0.0034601434599608183, -0.025427935644984245, 0.0008868381264619529, -0.002292322227731347, -0.04547801986336708, -0.02736048586666584, 0.0269129890948534, -0.04462451860308647, -0.03091539815068245, 0.02084667608141899, -0.02454647794365883, -0.057693228125572205, 0.03228729963302612, -0.02092171646654606, -0.0005973339430056512, -0.0066734906286001205, 0.020195025950670242, -0.029817786067724228, 0.004392172209918499, -0.07705254852771759, 0.04651760682463646, 0.038196757435798645, -0.0058032311499118805, 0.013891528360545635, -0.018726453185081482, -0.02110392600297928, -0.00967833586037159, 0.002531340578570962, -0.018614893779158592, -0.015070435591042042, -0.019583746790885925, 0.0003509939124342054, 0.010627340525388718, 0.037215203046798706, 0.03732430189847946, -0.02281758561730385, -0.0065362900495529175, -0.008550448343157768, -0.004961580503731966, 0.015518919564783573, 0.017446989193558693, -0.009326915256679058, 0.0044309902004897594, -0.009356537833809853, 0.0027071661315858364, -0.007278874050825834, 0.05464780330657959, -0.009083183482289314, -0.027618305757641792, -0.003086727112531662, 0.020200463011860847, -0.0331205315887928, 0.023404063656926155, 0.00043725225259549916, 0.029598798602819443, 0.019715948030352592, -0.017779432237148285, -0.08916264772415161, 0.0019883953500539064, -0.04982464760541916, -0.027999604120850563, -0.009881880134344101, 0.8236297965049744, -0.034038543701171875, 0.021976560354232788, 0.016576716676354408, 0.020529335364699364, 0.027975086122751236, -0.007081480696797371, -0.03581211343407631, -0.04528460279107094, 0.03775240480899811, 0.04344020038843155, 0.03352571278810501, -0.008331584744155407, 0.009439952671527863, 0.011861874721944332, 0.05642906203866005, 0.03876914456486702, -0.008704082109034061, 0.015760356560349464, 0.0601021945476532, 0.04371226578950882, 0.03486590087413788, -0.024264072999358177, 0.011210008524358273, -0.0031019204761832952, -0.00314008048735559, -0.1389855593442917, 0.03186407312750816, -6.262956024680406e-33, 0.06343331187963486, 0.005308256484568119, 0.03259770944714546, 0.010342668741941452, -0.020404376089572906, -0.02429448440670967, 0.008081357926130295, -0.01177586242556572, -0.0464354008436203, -0.06172414869070053, -0.013977046124637127, -0.007750814314931631, -0.004980678204447031, -0.004622518550604582, 0.02522784285247326, -0.00164621917065233, -0.008548500947654247, 0.022667929530143738, 0.02448216639459133, 0.03342307358980179, 0.017340129241347313, 0.012889373116195202, -0.005227894987910986, 0.015967175364494324, -0.002049288246780634, 0.02685847319662571, 0.07190287113189697, -0.0012107488000765443, -0.032640088349580765, -0.04069860652089119, -0.011439013294875622, 0.007884131744503975, -0.0295183677226305, -0.031172754243016243, 0.04390266165137291, -0.0373925045132637, -0.04060818627476692, 0.012156281620264053, -0.020557310432195663, -0.05897000804543495, -0.05104183405637741, 0.0031291386112570763, -0.025771891698241234, -0.03099469095468521, -0.03015313670039177, 0.003858777927234769, 0.0019799009896814823, 0.012092646211385727, 0.012019925750792027, 0.03787814453244209, 0.008948058821260929, 0.015551957301795483, -0.008832309395074844, -0.036894138902425766, -0.019798651337623596, -0.002527165925130248, -0.054733581840991974, 0.01335230190306902, 0.003395994659513235, -0.00821982603520155, 0.03862617164850235, -0.04638718068599701, 0.007978561334311962, 0.017360884696245193, -0.007729325909167528, 0.0038810372352600098, -0.030486641451716423, -0.008035503327846527, 0.035410694777965546, 0.007913563400506973, -0.04238033667206764, -0.004900421015918255, -0.01911207102239132, 0.001099513377994299, 0.007672903593629599, -0.0025343289598822594, 0.017816228792071342, 0.019578687846660614, -0.0014908215962350368, 0.02021881751716137, 0.010669367387890816, -0.03586796671152115, 0.03790435567498207, -0.02824164740741253, -0.026683013886213303, 0.0009343491401523352, 0.014511526562273502, 0.003862332087010145, -0.011548327282071114, 0.03158135712146759, 0.03399820625782013, 0.04826146364212036, 0.013801567256450653, 0.009579095058143139, -0.07183617353439331, 6.338393374644426e-33, -0.008234694600105286, -0.03913574665784836, -0.013561799190938473, -0.018802020698785782, 0.022466672584414482, -0.005124479997903109, -0.005569721572101116, 0.057785890996456146, -0.03868201747536659, 0.020858947187662125, -0.02127932198345661, -0.011933966539800167, -0.03197988495230675, 0.002400178462266922, 0.05950278788805008, -0.036290835589170456, 0.03986679017543793, -0.026276467368006706, 0.008641784079372883, -0.02099556289613247, -0.025681570172309875, -0.004706019069999456, 0.006396189332008362, 0.005718011409044266, 0.023422500118613243, 0.049158867448568344, 0.0009072718094103038, 0.017370419576764107, -0.016681279987096786, -0.02346937730908394, 0.005504870321601629, -0.00961547251790762, 0.0051420205272734165, -0.003672052174806595, 0.005832944065332413, 0.020557191222906113, -0.00453822361305356, -0.013224976137280464, 0.013267576694488525, -0.02864491380751133, 0.0389796607196331, -0.024338161572813988, 0.029879026114940643, -0.006230164784938097, -0.0045832619071006775, 0.0031539604533463717, -0.008034002035856247, 0.004344028886407614, -0.01782147027552128, 0.021515997126698494, 0.032800786197185516, 0.041414905339479446, 0.020991476252675056, 0.004507442936301231, 0.020815420895814896, 0.0018967973301187158, 0.00008703526691533625, -0.024628426879644394, -0.020297175273299217, -0.03887141868472099, 0.0024547732900828123, -0.03591839596629143, 0.037888653576374054, 0.042220115661621094, -0.05197381228208542, -0.048091355711221695, 0.02534990757703781, 0.017713572829961777, -0.023035328835248947, 0.026637282222509384, -0.015167111530900002, -0.03895898908376694, -0.01853887364268303, 0.026592738926410675, 0.10944999754428864, -0.020451271906495094, 0.01807105354964733, 0.015324674546718597, -0.040742408484220505, -0.012362091802060604, -0.0054077631793916225, 0.0332317017018795, -0.028379151597619057, -0.03784732148051262, 0.022934969514608383, -0.029002610594034195, -0.04760872572660446, 0.03610498085618019, 0.03913622349500656, 0.03270665556192398, -0.01764359138906002, 0.019559195265173912, -0.024305783212184906, 0.018061941489577293, 0.0276253130286932, -1.2606239607748648e-8, -0.00510130450129509, -0.023849116638302803, -0.019398685544729233, 0.027468347921967506, -0.0118849603459239, 0.033240169286727905, -0.018496446311473846, -0.01917339116334915, 0.01876995339989662, -0.013232581317424774, -0.007690377999097109, -0.0002103501174133271, 0.0028538822662085295, 0.01335120014846325, 0.0009544917265884578, -0.02942577563226223, -0.028759852051734924, -0.046547334641218185, 0.024715062230825424, 0.019108911976218224, -0.023369379341602325, 0.02659369446337223, 0.004907944705337286, -0.008306433446705341, 0.0051505607552826405, 0.037462297827005386, -0.005360843148082495, -0.02054664120078087, 0.0003565178485587239, 0.016235629096627235, -0.009597059339284897, -0.019513119012117386, -0.04879886656999588, -0.05050325766205788, -0.03883656486868858, -0.006462498567998409, 0.016893461346626282, -0.030735397711396217, -0.006051159929484129, -0.0036515311803668737, 0.010336543433368206, 0.02666376531124115, 0.018516510725021362, -0.026155982166528702, -0.020934365689754486, 0.003820419777184725, -0.005040863528847694, 0.030476026237010956, 0.021672364324331284, -0.006099822465330362, -0.05263593792915344, 0.002950501162558794, 0.0033421877305954695, 0.019290445372462273, 0.0073067499324679375, -0.02993921935558319, 0.03843805938959122, -0.041715558618307114, -0.005311295390129089, -0.05558796972036362, 0.0636293813586235, -0.014640581794083118, -0.030850471928715706, -0.023526780307292938 ]
learning-android-authenticating-with-twitter-using-oauth
https://markhneedham.com/blog/2012/01/02/learning-android-authenticating-with-twitter-using-oauth
false
2012-01-18 00:30:59
Installing Puppet on Oracle Linux
[ "software-development" ]
[ "Software Development" ]
We've been spending some time trying to setup our developer environment on a Oracle Linux 5.7 build and one of the first steps was to install Puppet as we've already created scripts which automate the installation of most things. Unfortunately Oracle Linux builds don't come with any yum repos configured so when you run the following command... [source,text] ---- ls -alh /etc/yum.repos.d/ ---- ...you don't see anything :( We eventually realised that there are a http://public-yum.oracle.com/[list of public yum repositories on the Oracle website], of which we needed to download the definition for Oracle Linux 5 like so: [source,text] ---- cd /etc/yum.repos.d wget http://public-yum.oracle.com/public-yum-el5.repo ---- We then need to edit that file to enable the appropriate repository. In this case we want to enable +++<cite>+++ol5_u7_base+++</cite>+++: [source,text] ---- [ol5_u7_base] name=Oracle Linux $releasever - U7 - $basearch - base baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/7/base/$basearch/ gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5 gpgcheck=1 enabled=1 ---- I made the mistake of enabling +++<cite>+++ol5_u5_base+++</cite>+++ which led to us getting some really weird problems whereby yum got confused as to which version of +++<cite>+++libselinux+++</cite>+++ we had installed and was therefore unable to install +++<cite>+++libselinux-ruby+++</cite>+++ as its dependencies weren't being properly satisfied. Calling 'yum list installed' suggested that we had +++<cite>+++libselinux+++</cite>+++ 1.33.4.5-7 installed but if we ran 'yum install libselinux' then it suggested we already had 1.33.4.5-5 installed. Very confusing! After trying to uninstall and downgrade +++<cite>+++libselinux+++</cite>+++ and pretty much destroying the installation in the process, another colleague spotted my mistake. We also found that we had to add the epel repo which gave us access to some other packages that we needed: [source,text] ---- rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm ---- After all that was done we were able to run the command to install puppet: [source,text] ---- yum install puppet ---- That installs puppet 2.6.12 as that's the latest version in that repo. The latest stable version is 2.7.9 but I think we'll need to hook up a puppet specific repo to get that working.
null
null
[ 0.005005414132028818, 0.009074797853827477, -0.022435272112488747, 0.04417410120368004, 0.10574448853731155, 0.027869373559951782, 0.0015174602158367634, 0.04367678984999657, -0.004840665031224489, -0.003008193103596568, -0.04443320259451866, 0.031805358827114105, -0.052847545593976974, 0.007589510176330805, -0.031527966260910034, 0.052252065390348434, 0.05287846177816391, 0.007338854018598795, -0.0056408485397696495, 0.028521424159407616, 0.048322904855012894, 0.036629047244787216, 0.010602543130517006, 0.04440176486968994, 0.0013170503079891205, 0.020099159330129623, 0.022239254787564278, -0.01567048579454422, -0.07937970757484436, -0.006632544565945864, 0.034845463931560516, -0.0017210692167282104, 0.01725490391254425, -0.008349573239684105, 0.007834265939891338, 0.01539161428809166, -0.044497836381196976, 0.010756809264421463, 0.014752518385648727, 0.024334607645869255, -0.04127345234155655, 0.05155161768198013, 0.007113996893167496, 0.010402951389551163, -0.03452683612704277, 0.026594964787364006, -0.04578490927815437, 0.027118919417262077, -0.022559333592653275, -0.02641534060239792, -0.054554808884859085, 0.01777663268148899, -0.03939511626958847, -0.05031011998653412, -0.003845586208626628, 0.015737716108560562, 0.024058574810624123, -0.07493282854557037, 0.007615747861564159, -0.020042674615979195, -0.011998794972896576, 0.0010212947381660342, 0.01766902767121792, 0.021998846903443336, 0.015118972398340702, -0.02657046914100647, 0.0028608045540750027, 0.04326819255948067, -0.04752008244395256, -0.023678604513406754, -0.0034982834476977587, 0.009768624790012836, -0.03304098919034004, -0.007801580708473921, 0.025426596403121948, -0.05181080475449562, 0.007300678640604019, 0.0619300939142704, -0.003574223257601261, 0.08351846039295197, -0.03728889673948288, -0.0016345673939213157, 0.02785084955394268, 0.004277348984032869, 0.007777199149131775, -0.04524322599172592, -0.023257771506905556, -0.011915583163499832, -0.03922167047858238, 0.07066644728183746, 0.041917577385902405, -0.04639403894543648, 0.012266707606613636, 0.004759110976010561, -0.014247010461986065, -0.00166860141325742, 0.008123146370053291, 0.006281103007495403, 0.005809812806546688, 0.008941415697336197, -0.020874688401818275, -0.00022105459356680512, 0.016048401594161987, -0.003269551321864128, -0.09037941694259644, -0.009585358202457428, -0.029623186215758324, -0.014889667741954327, -0.007929429411888123, -0.0017528964672237635, 0.0037451498210430145, 0.03970339149236679, 0.010507429949939251, 0.01430748775601387, -0.05995171144604683, 0.08439968526363373, -0.009007461369037628, -0.05591125413775444, 0.028159834444522858, 0.012926161289215088, 0.07173929363489151, 0.08215229213237762, 0.0007640337571501732, 0.07258623093366623, 0.019466504454612732, 0.031034942716360092, -0.01972205750644207, 0.027148373425006866, -0.0159686841070652, -0.053067319095134735, 0.023819565773010254, 0.07651718705892563, 0.007681463845074177, 0.0003987632808275521, -0.03710063919425011, 0.01968514360487461, 0.014080628752708435, -0.005387679673731327, 0.0804862231016159, 0.007834058254957199, -0.009277109056711197, -0.026127507910132408, -0.018604526296257973, -0.009558631107211113, 0.043040841817855835, 0.009382854215800762, 0.00805102102458477, -0.024702634662389755, -0.05185079202055931, 0.012881203554570675, 0.026520192623138428, 0.016119901090860367, 0.044328056275844574, -0.051778096705675125, 0.05244092643260956, 0.1049819141626358, 0.04197860136628151, -0.006131659261882305, -0.019558463245630264, 0.015173462219536304, 0.012579316273331642, 0.018472017720341682, 0.003323911689221859, 0.0500781275331974, -0.016254009678959846, -0.013938196934759617, -0.014213228598237038, 0.020994119346141815, 0.007430030964314938, 0.026364963501691818, -0.06580186635255814, -0.06813053786754608, 0.05079026147723198, -0.03324897959828377, -0.0028971044812351465, 0.012968881987035275, 0.08367859572172165, 0.07731059193611145, 0.02830437943339348, -0.005479483399540186, -0.07547053694725037, 0.047981005162000656, 0.0007375353598035872, 0.008600299246609211, 0.01813279278576374, -0.008146586827933788, 0.07904906570911407, 0.01740935817360878, 0.01875266432762146, 0.015142876654863358, -0.09302235394716263, -0.0812360867857933, -0.020889712497591972, 0.004845661111176014, 0.050287872552871704, -0.004511083476245403, -0.018123826012015343, 0.04663478210568428, 0.011401231400668621, 0.029035482555627823, 0.012146828696131706, 0.011752988211810589, 0.0228242389857769, -0.0706285759806633, -0.05971173942089081, 0.029819276183843613, 0.02817883901298046, -0.003406372619792819, -0.015494653023779392, 0.008845308795571327, -0.03042018972337246, -0.005564873572438955, 0.02621542662382126, -0.008233198896050453, 0.0546695813536644, -0.009528279304504395, 0.04761514440178871, -0.04280818626284599, 0.03143719956278801, -0.03260231763124466, 0.018648428842425346, 0.0028297416865825653, -0.034343570470809937, 0.006669820286333561, -0.012942209839820862, 0.1053401455283165, 0.0461275614798069, -0.02760249748826027, -0.014867513440549374, 0.06784271448850632, 0.010147733613848686, -0.05925197899341583, 0.019579831510782242, -0.00556946313008666, 0.024331893771886826, -0.005709467921406031, -0.034796882420778275, -0.04563853517174721, 0.007049947511404753, -0.04275302588939667, -0.011531869880855083, 0.061786726117134094, -0.03791537880897522, 0.06049001216888428, -0.011604253202676773, -0.05640503391623497, -0.016901478171348572, -0.021701905876398087, -0.10054989904165268, 0.006889634765684605, 0.026265842840075493, -0.006665375549346209, 0.035476185381412506, -0.024729566648602486, -0.035830870270729065, -0.030255334451794624, -0.04962608963251114, 0.022563405334949493, 0.016258208081126213, 0.06451503932476044, -0.04999765753746033, 0.06234517693519592, -0.025865260511636734, -0.009852636605501175, -0.01245280634611845, -0.023914935067296028, -0.02592664211988449, 0.021240584552288055, -0.016139956191182137, 0.005566349718719721, -0.015029774978756905, 0.002120286226272583, -0.024669650942087173, -0.015121402218937874, 0.03735969215631485, -0.016338609158992767, 0.014416180551052094, 0.003149785567075014, 0.0005203340551815927, -0.06914788484573364, 0.001138493069447577, 0.015396878123283386, -0.045530106872320175, -0.01837977021932602, 0.003139512613415718, -0.043375298380851746, 0.06951214373111725, -0.09289567172527313, -0.04235854744911194, -0.03756411746144295, -0.01510004885494709, 0.014540047384798527, -0.0035269607324153185, 0.002014368074014783, 0.03490179032087326, 0.008507807739078999, 0.020519917830824852, 0.0407111681997776, 0.027491668239235878, 0.03343353793025017, 0.005520291160792112, 0.0032143371645361185, 0.03778916969895363, -0.005833835806697607, -0.018881753087043762, -0.041518837213516235, 0.03393220901489258, -0.028855372220277786, -0.2461010068655014, 0.02171114832162857, 0.003199819941073656, -0.04554808884859085, 0.03595191240310669, -0.021148696541786194, -0.008615310303866863, -0.049998778849840164, -0.008729050867259502, 0.01513024140149355, -0.019085507839918137, -0.028419526293873787, 0.0007662876159884036, 0.04672813415527344, -0.003084479132667184, 0.03742479532957077, 0.03679801896214485, -0.050844479352235794, -0.009249964728951454, 0.015353289432823658, 0.010137010365724564, -0.03769480437040329, 0.03695874288678169, 0.0202084481716156, 0.028964810073375702, 0.060009121894836426, -0.04580890014767647, 0.064692422747612, -0.06893770396709442, -0.05492085963487625, -0.013890959322452545, -0.01405346766114235, -0.02598423883318901, 0.01658795028924942, 0.004201389849185944, 0.009772310964763165, 0.06274477392435074, 0.0016221744008362293, 0.02163834683597088, 0.007486435584723949, -0.024310341104865074, -0.03721487894654274, 0.0018226264510303736, -0.0033707700204104185, 0.0783807784318924, -0.005725575610995293, -0.09593632817268372, -0.029877476394176483, -0.035172585397958755, 0.07199512422084808, -0.05115983635187149, -0.03780783712863922, -0.018237216398119926, 0.026644377037882805, 0.00013009639224037528, 0.023177945986390114, -0.026713844388723373, -0.019606703892350197, -0.028825141489505768, -0.027785133570432663, 0.0015355380019173026, -0.05628446489572525, -0.03475344181060791, -0.057185444980859756, 0.0032168372999876738, -0.059363823384046555, -0.04529682546854019, -0.03699459508061409, 0.08401570469141006, 0.031215455383062363, -0.04591631516814232, -0.03359263017773628, -0.04238695278763771, -0.10240139067173004, 0.002229299396276474, -0.05171884596347809, -0.059759099036455154, -0.025042878463864326, -0.0121698547154665, 0.03542691469192505, -0.04357697069644928, -0.02754131145775318, 0.025178339332342148, 0.01589874178171158, -0.012223287485539913, 0.011535478755831718, 0.030140766873955727, -0.012027079239487648, -0.0024812871124595404, 0.002767743542790413, 0.057582128793001175, -0.03224747255444527, -0.04558639973402023, -0.013343753293156624, -0.00747583108022809, -0.02173808589577675, 0.00892589706927538, 0.035722050815820694, 0.018030289560556412, 0.05410836637020111, 0.01853831112384796, -0.04617907479405403, 0.02595778927206993, -0.008358988910913467, -0.029166042804718018, 0.02757013402879238, -0.06070488318800926, 0.0010030686389654875, 0.03308862820267677, 0.033892516046762466, -0.009618730284273624, -0.02547723799943924, 0.021793201565742493, -0.0585138238966465, -0.05950722098350525, 0.010745836421847343, 0.02088422328233719, 0.030186304822564125, 0.0194512028247118, 0.0097736194729805, -0.045465391129255295, 0.002843506634235382, 0.010640634223818779, -0.023188205435872078, -0.03557952865958214, -0.0021212385036051273, -0.014967686496675014, 0.00322484178468585, 0.008066562935709953, 0.018477901816368103, -0.006255271378904581, 0.015772558748722076, 0.050961654633283615, -0.05698433890938759, 0.01751263253390789, -0.0024416521191596985, -0.05237014964222908, -0.03786730766296387, 0.005190161522477865, 0.008444343693554401, -0.06595833599567413, 0.008551744744181633, 0.015035407617688179, 0.021598178893327713, 0.030530216172337532, -0.004341204650700092, 0.04280360788106918, -0.01142425462603569, 0.02368622086942196, 0.03767558932304382, -0.008964179083704948, -0.042047422379255295, 0.022928543388843536, -0.04034573212265968, -0.016018986701965332, -0.02732088789343834, 0.03921651840209961, -0.02047194167971611, -0.025477668270468712, -0.00297065288759768, -0.0008513184729963541, -0.07904108613729477, 0.027712205424904823, -0.001491136965341866, -0.014223400503396988, 0.0552552193403244, 0.026586061343550682, 0.00003289924279670231, -0.029174482449889183, -0.0022329213097691536, 0.031458545476198196, 0.03289581835269928, -0.01892572082579136, 0.017014119774103165, 0.006295599043369293, -0.028658108785748482, 0.029951319098472595, 0.01825491338968277, 0.042170535773038864, -0.011344097554683685, 0.0038775247521698475, -0.012871627695858479, 0.02343793399631977, -0.02452748641371727, 0.03765672445297241, 0.004701861646026373, -0.027426522225141525, -0.001844033133238554, -0.029010245576500893, -0.026483559980988503, -0.018884649500250816, 0.027577532455325127, -0.013997457921504974, -0.00344477710314095, -0.03220116347074509, -0.08706378936767578, 0.04524565115571022, 0.03669052571058273, 0.014008422382175922, 0.007126885466277599, -0.012507573701441288, -0.020489472895860672, -0.038721516728401184, 0.05581047758460045, 0.07252972573041916, -0.05412394180893898, -0.01962977647781372, -0.006379428785294294, -0.0024767895229160786, -0.0054945494048297405, 0.013677285052835941, -0.05063574016094208, -0.00227747717872262, -0.002668918576091528, 0.01975497417151928, -0.0585310235619545, -0.05004532262682915, -0.007711235899478197, -0.001850019907578826, -0.00932967197149992, -0.003994711209088564, 0.0014468663139268756, 0.013652684167027473, 0.029898852109909058, -0.038691628724336624, 0.008196303620934486, -0.023551471531391144, -0.01304932776838541, 0.01861491985619068, -0.017314767464995384, 0.018104175105690956, -0.04344049096107483, 0.039257150143384933, 0.016742611303925514, -0.019519969820976257, -0.004918904043734074, -0.022056004032492638, -0.015520043671131134, -0.038465943187475204, 0.02870074473321438, -0.008269364014267921, 0.013015114702284336, -0.037738725543022156, -0.009818908758461475, -0.019669394940137863, -0.0008168305503204465, -0.012753980234265327, -0.002070433460175991, -0.0004433258145581931, 0.04506789147853851, 0.010878145694732666, 0.028088929131627083, -0.02294539101421833, -0.011937200091779232, 0.06152006611227989, -0.06428083777427673, -0.02701139636337757, -0.010955842211842537, -0.04854574427008629, 0.03918053209781647, 0.045630794018507004, 0.0024898943956941366, -0.05226944386959076, 0.03394142910838127, 0.046818528324365616, 0.0074729654006659985, 0.014837984926998615, -0.022486966103315353, 0.02437085099518299, -0.03724457323551178, -0.02577860839664936, -0.05540836974978447, 0.035484474152326584, 0.015679193660616875, 0.012129861861467361, -0.025639977306127548, 0.02562069334089756, -0.05016588419675827, 0.0566890612244606, -0.07326767593622208, -0.01680481620132923, 0.030922649428248405, -0.008886322379112244, -0.020054273307323456, 0.0029433597810566425, -0.08633243292570114, 0.03579261526465416, 0.05328015610575676, -0.044632356613874435, 0.004440599121153355, -0.02395889163017273, 0.05140584334731102, -0.008539450354874134, 0.06210973113775253, -0.03564156964421272, 0.002151194494217634, 0.08053382486104965, 0.00859228428453207, 0.008830714039504528, 0.041427478194236755, -0.002700375160202384, 0.050814904272556305, 0.02443118207156658, 0.03490476682782173, 0.01699160598218441, 0.02656886726617813, -0.038616396486759186, -0.037802379578351974, 0.025671957060694695, -0.014049743302166462, 0.0046011051163077354, -0.02216855064034462, 0.044895853847265244, 0.030749427154660225, -0.04042888805270195, -0.042969513684511185, 0.04825296252965927, -0.042139649391174316, -0.010346440598368645, -0.024129200726747513, 0.0018191090784966946, -0.04744032397866249, 0.048830240964889526, 0.018893305212259293, 0.03492928296327591, 0.06508586555719376, 0.02003774233162403, -0.04162498190999031, 0.045005619525909424, 0.056623537093400955, 0.06792145222425461, 0.043269526213407516, 0.017442243173718452, 0.048217326402664185, -0.007455724291503429, -0.04890931025147438, -0.0038392480928450823, -0.012510480359196663, 0.0023454094771295786, -0.013310152105987072, -0.0012147633824497461, 0.06461772322654724, -0.03014436736702919, 0.05198770388960838, 0.00874718651175499, 0.035354603081941605, 0.0201993677765131, 0.0008991302456706762, 0.013641531579196453, 0.04365356266498566, 0.0067407782189548016, 0.015798578038811684, -0.016521258279681206, -0.030007243156433105, 0.010927226394414902, -0.016110075637698174, -0.0041347648948431015, -0.0013510278658941388, 0.0006690019508823752, 0.018727529793977737, 0.0060765561647713184, 0.03788803890347481, 0.09535560756921768, -0.0017291705589741468, 0.007748602423816919, 0.028321167454123497, 0.02459990605711937, -0.01569153182208538, 0.029857167974114418, -0.02530650608241558, -0.04322144016623497, -0.008222285658121109, -0.05210357904434204, -0.006663952488452196, 0.0001968942815437913, -0.00643162289634347, 0.03936039283871651, -0.02050952799618244, 0.008896371349692345, 0.026846138760447502, -0.009918399155139923, -0.028896452859044075, -0.020648732781410217, -0.062185145914554596, -0.025930089876055717, -0.02496066316962242, -0.000907402893062681, -0.0012767597800120711, -0.011124210432171822, -0.04582519084215164, -0.02642671763896942, -0.022668221965432167, -0.030070897191762924, 0.005237102508544922, -0.06377622485160828, -0.02611389569938183, 0.0028445974458009005, 0.0032518629450351, 0.0026130699552595615, 0.0008428679429925978, 0.08245567977428436, 0.023607276380062103, 0.001407783362083137, -0.012076612561941147, 0.014003059826791286, 0.008168508298695087, -0.03466420993208885, 0.006288082804530859, -0.07944651693105698, 0.043099723756313324, 0.012832476757466793, 0.01283755898475647, -0.0688970685005188, 0.010218169540166855, 0.019551482051610947, -0.010317269712686539, 0.056582268327474594, -0.029177365824580193, 0.04692881181836128, 0.002927965484559536, -0.026657696813344955, -0.007989883422851562, 0.0029240602161735296, 0.05526011437177658, -0.007818596437573433, 0.09207172691822052, 0.05636938288807869, -0.018660567700862885, -0.05618806183338165, -0.016040509566664696, -0.01922687515616417, -0.01705266535282135, -0.05958255007863045, 0.0003946903452742845, -0.05147525668144226, -0.0835351049900055, -0.027081944048404694, 0.00676574744284153, -0.0411975122988224, -0.03615349158644676, -0.022612446919083595, 0.003969514276832342, -0.06039803475141525, 0.010512965731322765, -0.027759334072470665, -0.012149511836469173, -0.026470018550753593, -0.008236092515289783, 0.011575388722121716, 0.044858258217573166, 0.001449389848858118, -0.00020785944070667028, 0.009772883728146553, -0.01565573178231716, -0.010119276121258736, -0.010431799106299877, 0.05700680613517761, 0.05508754029870033, 0.03753097355365753, 0.017150046303868294 ]
[ -0.060582004487514496, -0.005376651417464018, 0.019786467775702477, -0.0462399497628212, 0.04990295320749283, -0.056781597435474396, -0.05463872477412224, 0.02356557548046112, -0.008665603585541248, -0.04006657376885414, 0.0013244785368442535, -0.028398793190717697, -0.017859751358628273, -0.026083558797836304, 0.08575551956892014, 0.0041133868508040905, -0.018868179991841316, -0.03221464902162552, 0.020719964057207108, 0.010729360394179821, 0.00004759274816024117, -0.01420707069337368, -0.045639898627996445, -0.047743335366249084, -0.03727731108665466, 0.04434140771627426, 0.051746442914009094, -0.04130186140537262, 0.007880980148911476, -0.18131330609321594, 0.016165848821401596, 0.03287573903799057, 0.007307825144380331, -0.016220400109887123, 0.024290908128023148, 0.046969830989837646, 0.013353593647480011, -0.018278812989592552, -0.02258794941008091, 0.05874309316277504, 0.030215859413146973, 0.018839823082089424, -0.06517365574836731, -0.03306654095649719, 0.028146985918283463, -0.00020363714429549873, 0.008761387318372726, -0.03079797513782978, 0.0148386862128973, -0.0015779825625941157, -0.037610866129398346, 0.046579886227846146, 0.015196488238871098, -0.016001788899302483, -0.00806931871920824, 0.009042580612003803, 0.08207050710916519, 0.06146376579999924, -0.0026851107832044363, -0.019925463944673538, 0.011189345270395279, -0.02288985811173916, -0.132169708609581, 0.08205785602331161, -0.0001054695894708857, 0.026393745094537735, -0.013226077891886234, -0.030480122193694115, -0.031935133039951324, 0.09551458805799484, -0.016741685569286346, -0.021052127704024315, -0.028135068714618683, 0.05168528854846954, 0.004404605366289616, -0.013547469861805439, 0.00252606556750834, -0.031216183677315712, 0.03097798302769661, -0.035656023770570755, -0.057817745953798294, -0.009473444893956184, -0.07498149573802948, -0.012957772240042686, -0.030472571030259132, 0.0063148923218250275, 0.00724015710875392, 0.07356235384941101, 0.005586268845945597, 0.045806627720594406, 0.04113224893808365, -0.018049782142043114, 0.029741667211055756, 0.013448057696223259, -0.06509866565465927, 0.014587704092264175, -0.015438198111951351, 0.01379967201501131, -0.010305631905794144, 0.44723933935165405, 0.019116003066301346, 0.01444157399237156, 0.04394545033574104, -0.02216234616935253, 0.03896237909793854, 0.026358015835285187, -0.013991771265864372, -0.027359897270798683, 0.03191954270005226, -0.008285105228424072, -0.0000706430000718683, -0.020682858303189278, 0.07050178200006485, -0.07030905783176422, 0.036224085837602615, -0.01878686249256134, 0.004268479999154806, 0.019100500270724297, -0.051046062260866165, 0.005864514037966728, -0.019538480788469315, -0.004856482148170471, 0.03873945400118828, 0.01413523219525814, 0.017038928344845772, -0.024518489837646484, -0.0005555698880925775, 0.042949795722961426, 0.0343354232609272, 0.00854578148573637, 0.016384096816182137, -0.06547079980373383, -0.033996403217315674, -0.012130307033658028, 0.020242245867848396, 0.017848916351795197, 0.01614532805979252, -0.05444329231977463, -0.013077746145427227, 0.05101398751139641, -0.048095203936100006, -0.026920072734355927, 0.048507314175367355, -0.008497531525790691, -0.02750384993851185, 0.07231415808200836, 0.006869086064398289, 0.021449744701385498, -0.0535520575940609, -0.015280083753168583, 0.004223753232508898, 0.02558206580579281, 0.01485182624310255, -0.05993672460317612, 0.011467909440398216, -0.012721052393317223, 0.06983577460050583, 0.007602794095873833, -0.09879132360219955, -0.010659370571374893, 0.028965454548597336, -0.05061699450016022, -0.02587074413895607, 0.041617169976234436, 0.026803940534591675, -0.09563814848661423, -0.040215328335762024, 0.03779533877968788, 0.05254754051566124, -0.017968663945794106, 0.01232807245105505, 0.02021782658994198, -0.03260105475783348, -0.029166145250201225, 0.05826606974005699, -0.04983630031347275, 0.018270354717969894, 0.020642753690481186, 0.029843786731362343, 0.015965605154633522, 0.028828982263803482, 0.0028580620419234037, -0.040966130793094635, -0.02265031822025776, -0.0847528949379921, -0.12764471769332886, -0.08297106623649597, 0.0192184466868639, -0.05379026383161545, -0.05802680179476738, 0.0007374313427135348, 0.003769724164158106, -0.08029506355524063, 0.08382382243871689, 0.03213119879364967, -0.010732144117355347, 0.027090463787317276, 0.00354777998290956, 0.010725049301981926, -0.026670731604099274, -0.010539358481764793, 0.04943385347723961, -0.01845894567668438, 0.009281487204134464, -0.07200731337070465, 0.014505703002214432, 0.02049306221306324, -0.040233202278614044, 0.07000847905874252, 0.044480372220277786, -0.016337210312485695, 0.015453697182238102, -0.0035030823200941086, 0.037054941058158875, 0.023319294676184654, 0.0170805212110281, -0.025756079703569412, 0.026730671525001526, 0.009384822100400925, -0.012907350435853004, 0.01796947792172432, -0.0001782754115993157, -0.05302734300494194, -0.36197301745414734, -0.014153913594782352, -0.044124506413936615, -0.0015425370074808598, -0.01709226705133915, -0.022633083164691925, 0.04633535072207451, -0.0386701263487339, 0.027891486883163452, 0.01370291318744421, 0.04877844452857971, -0.010397728532552719, 0.031108848750591278, -0.0343022495508194, -0.020647387951612473, 0.008999893441796303, -0.020223114639520645, -0.001735919271595776, -0.0047473544254899025, -0.005580060184001923, -0.027265138924121857, -0.03873120993375778, 0.0032280562445521355, -0.06621824204921722, 0.005397766828536987, -0.016359221190214157, 0.10101280361413956, 0.050228919833898544, 0.0803963914513588, -0.06830625981092453, 0.05773221701383591, 0.027330273762345314, 0.036024950444698334, -0.1395787000656128, 0.025890368968248367, 0.0017032392788678408, 0.014748968183994293, -0.012338546104729176, 0.014337485656142235, -0.036379583179950714, -0.064236119389534, 0.012786557897925377, -0.0806037038564682, -0.03174106776714325, -0.007895205169916153, -0.01994985342025757, 0.011379189789295197, -0.018851114436984062, -0.021721212193369865, 0.07254257053136826, 0.0020334876608103514, 0.04141730070114136, 0.005702922586351633, 0.027660749852657318, -0.00710800476372242, 0.002710833912715316, -0.054299186915159225, -0.042128026485443115, 0.052468519657850266, -0.014346512034535408, 0.05098506435751915, 0.03248564526438713, 0.017683347687125206, -0.0389600470662117, 0.0074448673985898495, -0.027643658220767975, 0.0007685102173127234, 0.020991522818803787, 0.08785182237625122, -0.039797890931367874, -0.04515125975012779, 0.08564531058073044, -0.003064850578084588, -0.0022640847600996494, 0.04753805324435234, 0.003321782685816288, -0.0037673283368349075, -0.010210555046796799, 0.0051444172859191895, -0.007310755085200071, 0.029971754178404808, -0.01631860062479973, 0.023438110947608948, -0.022976916283369064, -0.03257504105567932, 0.0564417764544487, -0.012514824979007244, -0.025054553523659706, 0.032942868769168854, 0.006077753845602274, -0.008208475075662136, -0.001631764112971723, 0.015317128971219063, -0.0779072567820549, 0.10806017369031906, 0.017836932092905045, -0.23506247997283936, 0.03990595415234566, 0.06497473269701004, 0.07224488258361816, 0.017480695620179176, 0.004869751166552305, 0.018644923344254494, -0.044063035398721695, 0.0014674095436930656, -0.02028871327638626, 0.052248165011405945, 0.03930116817355156, -0.014084937050938606, -0.030761530622839928, 0.027552157640457153, -0.01656002178788185, 0.0752759501338005, -0.005977311171591282, 0.017915617674589157, 0.0009539255988784134, -0.00970989279448986, 0.0058998893946409225, 0.12372170388698578, 0.011789764277637005, -0.010182341560721397, 0.0016344415489584208, 0.011058405973017216, 0.05087113007903099, 0.03941785916686058, 0.023595506325364113, 0.004985913634300232, 0.0013213015627115965, -0.0023313534911721945, -0.003765507834032178, 0.03099779039621353, -0.011485313065350056, 0.010790792293846607, 0.025707833468914032, 0.03285766765475273, 0.02461853064596653, -0.003465075511485338, 0.021969009190797806, -0.049645643681287766, 0.06286418437957764, 0.0391060970723629, -0.052803151309490204, 0.008624186739325523, -0.00799004826694727, -0.05156218260526657, 0.0035779199097305536, -0.032554350793361664, -0.050115007907152176, 0.01391975674778223, 0.0008473073248751462, 0.021302605047822, 0.047754403203725815, -0.004500297363847494, -0.04363277927041054, 0.01376525778323412, -0.017643487080931664, -0.0015256523620337248, -0.05623854696750641, 0.12865294516086578, 0.01625853404402733, 0.012801389209926128 ]
[ -0.010593771934509277, -0.024099543690681458, -0.023379100486636162, -0.014243979007005692, 0.06187315285205841, -0.026803454384207726, 0.004133633337914944, 0.050718776881694794, -0.03795081377029419, 0.002576183993369341, 0.014380156062543392, -0.012123371474444866, 0.006722058169543743, -0.04277608543634415, 0.015337958000600338, -0.0033053825609385967, -0.014010629616677761, 0.02524949423968792, 0.0317501425743103, -0.051771342754364014, -0.016637613996863365, 0.017164459452033043, 0.04194773733615875, 0.003428545780479908, -0.00025288184406235814, 0.02274884656071663, -0.02749081328511238, 0.014976480044424534, 0.023434897884726524, -0.1698649823665619, 0.0031499569304287434, -0.0006920937448740005, 0.015011939220130444, -0.04582692310214043, -0.029006149619817734, 0.03367813676595688, 0.017422867938876152, -0.024434983730316162, -0.01651608943939209, 0.032107576727867126, 0.011772172525525093, 0.004206909332424402, -0.018065599724650383, 0.011971630156040192, -0.02371860109269619, -0.02858578972518444, -0.01285514235496521, -0.01799675077199936, 0.01602429896593094, -0.02519761212170124, -0.016880206763744354, -0.005733009893447161, -0.020357366651296616, -0.0032325603533536196, -0.004865727853029966, -0.027477003633975983, 0.03033483400940895, -0.012290810234844685, 0.041421402245759964, -0.046345796436071396, 0.015031237155199051, -0.012679950334131718, -0.033221472054719925, -0.008870476856827736, -0.07090456783771515, 0.006367339286953211, 0.0028725445736199617, -0.022586291655898094, -0.004690453410148621, -0.01181346271187067, -0.041560396552085876, 0.000723975885193795, -0.01699439249932766, -0.012034023180603981, -0.042269475758075714, -0.01262224093079567, 0.06712072342634201, 0.020166028290987015, 0.018484802916646004, 0.01861506886780262, -0.037909120321273804, 0.05524677038192749, -0.0028218734078109264, -0.05479865521192551, -0.03993776813149452, 0.00905551202595234, 0.02273235097527504, 0.0057839141227304935, 0.05075912922620773, -0.04367274418473244, 0.021275723353028297, 0.00429950188845396, 0.00007467842078767717, -0.005917108617722988, -0.07927478849887848, 0.008300908841192722, 0.007672464475035667, -0.06817029416561127, -0.004313331563025713, 0.7703890800476074, 0.032483138144016266, 0.05829896032810211, 0.0007775622070766985, -0.03306664898991585, -0.04521352797746658, 0.0501573346555233, -0.08518538624048233, -0.005919402465224266, -0.026178104802966118, -0.02309676632285118, 0.04416051134467125, -0.012923046946525574, 0.05207758769392967, -0.009384910576045513, 0.00356154958717525, 0.011217930354177952, -0.01639045588672161, -0.011866246350109577, 0.01742461323738098, -0.01057222206145525, 0.043782129883766174, -0.03204936906695366, -0.001343604177236557, 0.01838228851556778, -0.02098897472023964, -0.21802185475826263, -0.0035491466987878084, -6.441080887712415e-33, 0.02601262927055359, -0.03574449568986893, -0.024620411917567253, -0.007628071587532759, 0.04685477167367935, 0.021400021389126778, 0.01892610639333725, 0.06860455870628357, -0.03386380523443222, -0.01825605146586895, 0.03326113894581795, -0.02113555185496807, -0.03454706445336342, -0.021737029775977135, -0.02117363177239895, 0.05532179772853851, -0.026884760707616806, 0.056286800652742386, -0.05765002593398094, 0.005029367748647928, -0.0075667197816073895, 0.0019705460872501135, -0.030318880453705788, 0.005832408554852009, 0.042818330228328705, 0.04458729922771454, 0.035495489835739136, -0.039603084325790405, 0.013795188628137112, -0.06242913752794266, -0.023520098999142647, -0.008501560427248478, 0.02181137539446354, 0.020925572142004967, 0.009708410128951073, -0.04536788910627365, -0.027228742837905884, 0.025888342410326004, -0.038322463631629944, -0.026197483763098717, 0.007145096082240343, 0.03922128677368164, -0.02275245636701584, -0.006586487405002117, 0.028136933222413063, -0.020490944385528564, 0.019281789660453796, 0.05814826115965843, 0.0010575271444395185, -0.030330432578921318, -0.012200204655528069, 0.002258491003885865, 0.012131008319556713, 0.04260331392288208, 0.0010699121048673987, 0.017125563696026802, -0.03175332024693489, 0.005137723870575428, -0.0048455712385475636, -0.021317211911082268, 0.006416420917958021, 0.011838813312351704, 0.003861719975247979, 0.005215979181230068, -0.005785301327705383, 0.02276463434100151, -0.03131692111492157, 0.04351848363876343, 0.04474949836730957, 0.06762013584375381, -0.026881415396928787, -0.025985626503825188, 0.004700761288404465, -0.009533915668725967, 0.014841134659945965, -0.0426415354013443, 0.008628621697425842, -0.02583123743534088, -0.01462485734373331, 0.06036194786429405, 0.008276979438960552, 0.008546401746571064, -0.039362553507089615, -0.02298566699028015, -0.013978395611047745, 0.02029441110789776, -0.003047223435714841, -0.014336547814309597, -0.030650828033685684, 0.026915568858385086, 0.05961691215634346, 0.003607209539040923, 0.0022003171034157276, -0.004804834257811308, -0.037162091583013535, 6.8136523528376e-33, 0.006135395262390375, -0.015271387062966824, -0.021874677389860153, -0.013465022668242455, 0.04277055710554123, -0.05858342722058296, 0.005363422445952892, 0.02715456299483776, -0.05382618308067322, -0.000371534435544163, -0.040249891579151154, 0.03527993708848953, -0.04436872899532318, 0.014327348209917545, 0.07919561862945557, -0.036151859909296036, 0.03723045811057091, 0.018842993304133415, -0.0024497173726558685, 0.0470048226416111, 0.018145525828003883, 0.009427810087800026, 0.02439473196864128, 0.03432440012693405, 0.06318984925746918, 0.05189989507198334, -0.02984384261071682, 0.017215557396411896, 0.007460467051714659, 0.0059006609953939915, 0.012505278922617435, -0.02895544096827507, -0.02646235190331936, 0.0076386393047869205, -0.03069666586816311, 0.03322302922606468, -0.026085427030920982, 0.036104559898376465, -0.02245156653225422, 0.04159704968333244, -0.0000060205643421795685, 0.0009695413755252957, -0.03473051264882088, -0.0028529036790132523, -0.011480612680315971, -0.008542853407561779, -0.010959608480334282, 0.02012219838798046, -0.013866006396710873, -0.005272711161524057, -0.0032624879386276007, 0.034895818680524826, -0.029174823313951492, -0.0017311301780864596, 0.001737319864332676, 0.011096823029220104, -0.06098565831780434, 0.047794241458177567, 0.007663560099899769, 0.018070703372359276, -0.01449336763471365, -0.02762565016746521, -0.007874647155404091, 0.039946913719177246, -0.02118959277868271, 0.03534139320254326, -0.017890704795718193, 0.054447174072265625, -0.012804851867258549, 0.04304209351539612, -0.01623459719121456, 0.0013664212310686707, 0.02110992930829525, 0.012593849562108517, 0.017003947868943214, -0.011034058406949043, -0.017386004328727722, -0.01929517649114132, -0.007367903366684914, 0.03340119868516922, -0.02843753807246685, 0.0127542270347476, -0.006749721709638834, 0.014166711829602718, 0.006696692202240229, 0.025910470634698868, -0.033947572112083435, 0.0362543910741806, 0.059375301003456116, 0.02333463728427887, 0.039405226707458496, -0.03203032538294792, -0.018608959391713142, 0.013499133288860321, 0.012709164060652256, -1.2073986255245472e-8, 0.04335440695285797, -0.0447084903717041, -0.020606402307748795, 0.013389387167990208, 0.055318646132946014, 0.021288137882947922, 0.007775070145726204, 0.005985804367810488, -0.05360208451747894, 0.017360711470246315, 0.019055666401982307, 0.016258252784609795, -0.002430317457765341, 0.05543005093932152, 0.030952058732509613, 0.0014734838623553514, 0.02185560017824173, 0.028910541906952858, 0.015854593366384506, -0.03557474538683891, 0.020089363679289818, 0.022246213629841805, -0.018680008128285408, 0.019167011603713036, 0.006102383136749268, 0.009567697532474995, 0.05284769460558891, -0.05756975710391998, 0.0018883589655160904, 0.03655745089054108, 0.03196444362401962, -0.005700684152543545, -0.05111518129706383, -0.0023370019625872374, 0.01778217777609825, -0.0012652446748688817, -0.0009591142297722399, 0.0687350407242775, -0.012156927958130836, -0.03326737880706787, -0.05240730196237564, -0.010231640189886093, -0.0076033249497413635, -0.000537378597073257, -0.0395633764564991, -0.014779592864215374, -0.041189443320035934, 0.02600921131670475, 0.05417691543698311, -0.020624009892344475, 0.03159775212407112, -0.01859201118350029, 0.002608422888442874, -0.029580099508166313, 0.0049527473747730255, -0.03495820611715317, 0.020832721143960953, -0.004558805376291275, -0.029938027262687683, -0.03483942896127701, 0.018761999905109406, -0.014649245887994766, 0.03836794197559357, -0.013827434740960598 ]
installing-puppet-on-oracle-linux
https://markhneedham.com/blog/2012/01/18/installing-puppet-on-oracle-linux
false
2012-01-16 01:40:32
Application footprint
[ "software-development" ]
[ "Software Development" ]
I recently came across Carl Erickson's 'http://spin.atomicobject.com/2012/01/11/small-teams-are-dramatically-more-efficient-than-large-teams/[small teams are dramatically more efficient than large teams]' blog post which reminded me of something which my colleague https://twitter.com/#!/a5hok[Ashok] suggested as a useful way for determining team size - *the application footprint*. As I understand it the application footprint is applicable for an application at a given point in time and determines *how many parallel tasks/streams of work we have*. In the case of the project that I'm currently working on there are 3 separate components which need to interact with each other via an API but otherwise are independent. image::{{<siteurl>}}/uploads/2012/01/footprint.jpg[Footprint,240] We can therefore have 3 pairs working - one on each component - and won't have to worry about them stepping on each other's toes. One interesting thing about the application footprint is that *it doesn't stay the same size all the time*. More often than not once a team has gained trust by getting a release out the product owner will start prioritising more independent features which don't necessarily overlap. At this stage it might not be such a bad idea to add people to the team if we want to try and finish more quickly. If we're already at the point where we have the same number of pairs as parallel pieces of work then adding people is going to be problematic because we'll struggle to find work for everyone to do. Stories in the same stream will have dependencies on each other and although it's theoretically possible to start on something which has a dependency, the likelihood of having to rework it is higher. One way to get around that problem if we decide that we don't want to reduce our team size is to have a pair assigned to working on bugs, cross functional requirements such as performance testing/tuning or doing some technical analysis on upcoming stories. It's easy enough to remember all this when you're starting out building an application but I think it's something that we need to keep in mind so that if there's pressure to add people to 'go faster' then we can determine if that will actually be the case. _As an aside_ Obviously there are times when we decide that we're happy to put more people on a team than it's footprint might suggest in order to get an overall gain. For example with 5 pairs we may finish 50 points in a week but if we increase to 10 pairs then perhaps we now get 60 points. We've nearly halved the efficiency of each pair but overall we've got a marginal gain which sometimes makes sense. We also need to be aware of the http://www.markhneedham.com/blog/2011/02/16/increasing-team-sizes-collective-unresponsibility/[collective unresponsibility] that we might introduce by doing this. _Photo http://www.flickr.com/photos/farlane/2541022957/sizes/s/in/photostream/[courtesy of farlane]_
null
null
[ 0.03090241551399231, 0.006393018644303083, 0.009426543489098549, 0.015677480027079582, 0.07734166085720062, 0.01626281812787056, 0.030487600713968277, 0.03443852439522743, -0.0050264340825378895, -0.027321215718984604, -0.009668424725532532, -0.01841680146753788, -0.07651781290769577, 0.013162401504814625, -0.046988919377326965, 0.07164374738931656, 0.06905996054410934, 0.008644615299999714, 0.020086808130145073, 0.006699683610349894, 0.05475877225399017, 0.07455937564373016, 0.010149882175028324, 0.05908263474702835, 0.02796843647956848, 0.019493229687213898, 0.03656593710184097, 0.006987945642322302, -0.038150280714035034, 0.0022167274728417397, 0.047040440142154694, -0.010767601430416107, 0.014890708960592747, -0.02456493489444256, 0.04008602350950241, -0.015256481245160103, -0.007499719969928265, 0.043398164212703705, -0.0024967470671981573, -0.003368349513038993, -0.057702597230672836, 0.047933608293533325, -0.013881836086511612, 0.005491572432219982, -0.03708796948194504, 0.02566034533083439, -0.04469044506549835, 0.005615582689642906, -0.010152808390557766, -0.0010903682559728622, -0.06700771301984787, 0.02420397475361824, -0.021278634667396545, -0.0017231464153155684, -0.011963274329900742, 0.04078841954469681, 0.023548606783151627, -0.06664086878299713, 0.0009710088488645852, -0.03291197121143341, 0.0023678105790168047, -0.018916254863142967, 0.002593310084193945, 0.058470483869314194, 0.02058473974466324, -0.03026634454727173, 0.008143086917698383, 0.026877418160438538, -0.023970389738678932, 0.0024578417651355267, -0.009081894531846046, 0.0029901035595685244, -0.0435614250600338, -0.014745047315955162, 0.017732685431838036, -0.053555142134428024, 0.006300948094576597, 0.052924808114767075, 0.027905775234103203, 0.05564421787858009, -0.0030631786212325096, 0.010654918849468231, -0.003108089789748192, 0.031027236953377724, -0.007678213994950056, -0.031099403277039528, 0.009420624002814293, -0.012828967534005642, -0.06697320938110352, 0.07913907617330551, 0.023010078817605972, -0.05466398969292641, 0.02087211422622204, 0.03787519037723541, -0.003657054388895631, 0.006414565723389387, 0.010839588940143585, 0.024961648508906364, 0.0019914943259209394, -0.01807849295437336, -0.02916433848440647, -0.008828812278807163, -0.021696649491786957, 0.026567736640572548, -0.07044032216072083, -0.018487662076950073, -0.014758988283574581, -0.007577717769891024, 0.0040412405505776405, -0.003882025135681033, -0.015477634966373444, 0.034357950091362, -0.0021463767625391483, 0.018781624734401703, -0.07066473364830017, 0.07446185499429703, -0.0062429290264844894, -0.04853301867842674, -0.0017949973698705435, 0.01895284652709961, 0.05298282951116562, 0.05135657638311386, -0.012155678123235703, 0.06843305379152298, -0.024273503571748734, 0.013436098583042622, -0.021268395707011223, 0.030963869765400887, -0.023048216477036476, -0.070277638733387, -0.0015419366536661983, 0.05573073774576187, -0.022150911390781403, -0.014349006116390228, -0.00212244619615376, -0.02294440194964409, 0.006899169646203518, -0.0008198039140552282, 0.04938177019357681, 0.03967306390404701, -0.014797564595937729, -0.0572136789560318, 0.0025460796896368265, 0.010060363449156284, 0.03855803236365318, -0.0034717561211436987, -0.005331354681402445, -0.03313653916120529, -0.05159464851021767, 0.0012954412959516048, 0.0024042066652327776, 0.04573443904519081, 0.05302745848894119, -0.04931850731372833, 0.021098392084240913, 0.10224071890115738, 0.04167645424604416, -0.018186379224061966, -0.00979843083769083, 0.016500569880008698, 0.03272700309753418, 0.030661551281809807, 0.010798612609505653, 0.04292820021510124, 0.009925875812768936, 0.009954003617167473, 0.015636634081602097, 0.03850125893950462, 0.01289871521294117, 0.007690292317420244, -0.05218926817178726, -0.05746836215257645, 0.04994434863328934, -0.03557803854346275, -0.017424579709768295, 0.044714584946632385, 0.07513462752103806, 0.02764362096786499, 0.016505885869264603, 0.030015604570508003, -0.07528234273195267, 0.03988341987133026, 0.02494218945503235, 0.027325257658958435, 0.03975432738661766, -0.017879115417599678, 0.07540123909711838, 0.02696741744875908, -0.026331434026360512, 0.009981164708733559, -0.05215378850698471, -0.09376992285251617, -0.020036548376083374, -0.012804998084902763, 0.04157867282629013, -0.045730043202638626, -0.00021469774947036058, 0.06812281161546707, 0.02171051874756813, 0.029750309884548187, 0.01391176413744688, 0.022382458671927452, 0.013102870434522629, -0.043514274060726166, -0.06374592334032059, 0.05349721387028694, 0.025146162137389183, -0.016932442784309387, -0.08406289666891098, -0.0023009441792964935, -0.016558902338147163, -0.01794365793466568, 0.029284561052918434, -0.035791315138339996, 0.04040805622935295, -0.01387675292789936, 0.030086575075984, -0.023818837478756905, 0.052384085953235626, -0.05309024825692177, 0.006193065550178289, 0.003215857082977891, -0.03662142530083656, 0.026294810697436333, 0.010540051385760307, 0.10477607697248459, 0.04654935002326965, -0.06259319931268692, -0.04843457415699959, 0.018095487728714943, 0.026453770697116852, -0.031599339097738266, -0.016830381006002426, -0.003932194784283638, -0.019184928387403488, 0.015211226418614388, -0.054386720061302185, -0.032727669924497604, 0.01967144012451172, -0.0432250089943409, -0.018288763239979744, 0.056126825511455536, -0.015211558900773525, 0.05862385407090187, 0.01203574426472187, -0.029247548431158066, 0.014215531758964062, -0.029563454911112785, -0.07531242072582245, -0.004388945177197456, 0.012550588697195053, -0.012882605195045471, 0.035752084106206894, -0.02748832292854786, -0.023161951452493668, -0.04264276847243309, -0.018003255128860474, 0.03308495506644249, 0.03861931338906288, 0.060904186218976974, -0.012490191496908665, 0.06856576353311539, -0.004866470582783222, -0.009180794470012188, -0.010549519211053848, -0.04737720638513565, -0.043596092611551285, 0.002947344211861491, -0.013765010051429272, 0.014346876181662083, 0.013609507121145725, 0.007171320728957653, 0.01551332138478756, -0.011597424745559692, -0.01224095281213522, -0.012442930601537228, 0.03861274570226669, -0.004730790853500366, -0.012395416386425495, -0.04361902177333832, -0.027559418231248856, 0.040949199348688126, -0.024628976359963417, -0.01618887484073639, 0.021719906479120255, -0.06834392249584198, 0.04198658466339111, -0.07970399409532547, -0.04862779751420021, -0.0072909025475382805, 0.027109308168292046, 0.05643264576792717, 0.015741417184472084, 0.0011397231137380004, 0.06140703707933426, 0.04434235766530037, 0.011853788048028946, 0.005296002607792616, 0.01579110696911812, 0.04362160712480545, 0.003631048137322068, -0.00943705253303051, 0.0435454435646534, -0.030094116926193237, -0.0041467794217169285, -0.061820320785045624, 0.04925089702010155, -0.031116027384996414, -0.2881440818309784, 0.029611993581056595, 0.0022847168147563934, -0.03654208406805992, 0.01707928441464901, -0.022394007071852684, -0.00728068221360445, -0.043835680931806564, -0.018792307004332542, 0.028960293158888817, -0.026008393615484238, -0.030615122988820076, -0.01581978052854538, 0.038165416568517685, 0.005055597517639399, 0.03252723440527916, 0.038572486490011215, -0.021697673946619034, 0.014209207147359848, 0.03997291252017021, -0.01243414357304573, -0.06671001017093658, -0.005103385075926781, 0.031004996970295906, 0.044574521481990814, 0.0438554473221302, -0.09410935640335083, 0.0436488576233387, -0.05372435972094536, -0.008074071258306503, 0.011275912635028362, -0.0036613785196095705, -0.004294493235647678, -0.04354558140039444, -0.024763938039541245, -0.045567672699689865, 0.04095063358545303, -0.0074957567267119884, 0.0003873975947499275, -0.009638187475502491, -0.005854988005012274, -0.03368770703673363, -0.007092542480677366, 0.018236076459288597, 0.05797089263796806, 0.005785827990621328, -0.07152733206748962, -0.0034989076666533947, -0.03045526333153248, 0.07711794227361679, -0.02723187953233719, -0.03903566673398018, -0.009287177585065365, 0.039320990443229675, -0.028488272801041603, -0.035637643188238144, -0.01779025048017502, -0.02387826144695282, -0.03800405189394951, -0.015611196868121624, -0.014832447282969952, -0.023416245356202126, -0.029225265607237816, -0.03967650607228279, -0.003543229540809989, -0.04813492298126221, -0.06409895420074463, 0.0026470513548702, 0.06809144467115402, -0.02163461595773697, -0.028670193627476692, -0.008122324012219906, -0.008720280602574348, -0.10542882233858109, -0.026170697063207626, -0.009366868063807487, -0.029778139665722847, 0.028471393510699272, -0.002036846475675702, 0.05088917165994644, -0.03241908922791481, -0.03840748965740204, 0.009672790765762329, 0.023586293682456017, 0.031048698350787163, -0.012093402445316315, 0.024151988327503204, 0.02135118842124939, -0.02920357510447502, 0.026133496314287186, 0.06292568147182465, -0.019612830132246017, -0.027712959796190262, -0.0060452804900705814, 0.028630413115024567, -0.015474062412977219, 0.01950005255639553, 0.011432912200689316, -0.0038808875251561403, 0.04536643624305725, 0.005864908453077078, -0.038033511489629745, 0.019623203203082085, -0.014778454788029194, -0.01151770818978548, -0.0038486928679049015, -0.04007941111922264, 0.009700463153421879, 0.0432523712515831, 0.042971719056367874, 0.0034375435207039118, -0.026124445721507072, 0.00481616985052824, -0.05120496824383736, -0.03358431160449982, -0.021135536953806877, 0.009863554500043392, 0.048005204647779465, -0.01594673842191696, -0.00419567059725523, -0.06655031442642212, 0.02182609774172306, -0.004514068830758333, -0.00678213220089674, -0.05761001631617546, -0.025225942954421043, -0.027507228776812553, -0.021248238161206245, 0.013573436997830868, 0.009694045409560204, -0.028213150799274445, 0.030415717512369156, 0.02920440398156643, -0.05003881826996803, 0.016459384933114052, -0.027687158435583115, -0.07267505675554276, -0.03805556520819664, -0.005526035092771053, -0.025605924427509308, 0.008739311248064041, 0.0320347398519516, 0.032994695007801056, 0.0160320233553648, 0.0377853661775589, 0.006026511546224356, 0.0390637069940567, -0.014238227158784866, 0.0048217689618468285, -0.00545641640201211, 0.0334695540368557, -0.058071207255125046, 0.011198954656720161, -0.025925777852535248, -0.012466072104871273, -0.03620513528585434, 0.03843662515282631, 0.005817692261189222, -0.010356174781918526, -0.03888241946697235, 0.01811765506863594, -0.06436453759670258, -0.04055580869317055, -0.022037861868739128, 0.029526356607675552, 0.0657474473118782, -0.02145879715681076, 0.01158370915800333, -0.027371330186724663, -0.02974845841526985, -0.0018830847693607211, 0.0004045894311275333, -0.05377832055091858, 0.00061738898511976, 0.004061504267156124, 0.039694447070360184, -0.00016646493168082088, 0.0017318582395091653, 0.05919889360666275, 0.02629692107439041, 0.015201007947325706, -0.0010661870473995805, 0.01704157516360283, 0.006857008207589388, 0.02693251147866249, 0.04645309969782829, -0.011838207952678204, 0.007545989938080311, -0.029842063784599304, -0.005430661141872406, -0.02498280070722103, -0.0013870821567252278, 0.0030355146154761314, 0.009431184269487858, -0.02310735359787941, -0.07211106270551682, 0.054587800055742264, 0.01917249709367752, 0.015389341861009598, 0.011570067144930363, -0.018434247002005577, 0.023610049858689308, -0.034091826528310776, 0.02753538452088833, 0.07922517508268356, -0.05999526381492615, 0.0035326331853866577, 0.004619409330189228, -0.006674785166978836, 0.008248976431787014, -0.0038616179954260588, -0.02696853131055832, -0.022984791547060013, -0.028008263558149338, 0.025325914844870567, -0.06521617621183395, -0.017431503161787987, -0.02795584872364998, 0.024136343970894814, -0.0015791667392477393, -0.004752911627292633, -0.015380303375422955, -0.006650686264038086, -0.02704680524766445, -0.029331814497709274, 0.006620068568736315, -0.004472407978028059, 0.0016950711142271757, 0.0008864771225489676, -0.04958071932196617, -0.004194767214357853, -0.05098968744277954, 0.011886649765074253, 0.034109652042388916, -0.03193417564034462, 0.016191864386200905, -0.04238412529230118, 0.0007328923675231636, 0.03600214794278145, 0.031189074739813805, -0.03125714883208275, -0.02852078713476658, -0.015678882598876953, 0.005386322271078825, -0.03733298182487488, 0.001126742223277688, -0.02417038381099701, -0.009473097510635853, 0.005846417509019375, 0.054584212601184845, -0.000992126064375043, 0.02135291136801243, -0.009720005095005035, -0.003688239259645343, 0.04671261087059975, -0.03811885789036751, -0.03780828043818474, -0.03505166992545128, -0.06693384796380997, 0.0012537920847535133, -0.003557900432497263, 0.020722974091768265, -0.05127329379320145, 0.012868426740169525, 0.04216562211513519, 0.030990881845355034, 0.04394872859120369, -0.004965747706592083, 0.03534698113799095, -0.0542229600250721, -0.013996852561831474, -0.07807327061891556, -0.006083890795707703, 0.02248525060713291, 0.005553299095481634, 0.0024957749992609024, 0.016959402710199356, -0.04985763505101204, 0.04055292159318924, -0.06377537548542023, -0.01814754493534565, 0.04039032384753227, 0.002716260263696313, 0.02063027396798134, 0.03943059593439102, -0.06199046969413757, 0.027734529227018356, 0.014184319414198399, -0.028731027618050575, -0.02379247173666954, -0.007534184027463198, 0.0444677360355854, -0.006332944147288799, 0.008752924390137196, -0.04026252403855324, -0.018919676542282104, 0.08717257529497147, 0.0073458305560052395, 0.009975164197385311, 0.06588108092546463, -0.022042155265808105, 0.05396217852830887, 0.03146250918507576, -0.00470585934817791, 0.0037362126167863607, 0.0007060837233439088, -0.02698635868728161, -0.0600326731801033, 0.027355840429663658, 0.0043657273054122925, -0.016300329938530922, -0.040023185312747955, 0.06391977518796921, 0.03703223541378975, -0.02348998188972473, -0.048632461577653885, 0.0025569903664290905, -0.026151644065976143, 0.015038480050861835, -0.02241595834493637, -0.015854112803936005, -0.05576033145189285, 0.04851972311735153, -0.003301389282569289, 0.02347763255238533, 0.0740814357995987, 0.015119599178433418, -0.009409263730049133, -0.027674784883856773, 0.09476105123758316, 0.0688580870628357, 0.049750328063964844, 0.015397476963698864, 0.06448213756084442, -0.02261238917708397, -0.047348346561193466, 0.006049864459782839, 0.0019272587960585952, -0.03780873864889145, 0.0008279751054942608, 0.019735457375645638, 0.05596045404672623, -0.0013966502156108618, 0.08055560290813446, -0.014890080317854881, -0.02037676051259041, 0.0015589967370033264, 0.024376142770051956, 0.037152357399463654, 0.06822412461042404, -0.009681486524641514, 0.035846047103405, -0.030964724719524384, -0.033272843807935715, 0.010770526714622974, -0.003963654860854149, 0.010448038578033447, 0.024086032062768936, 0.011004832573235035, 0.0204265508800745, 0.004763020668178797, 0.032147593796253204, 0.06669554114341736, -0.03337292745709419, -0.00971778854727745, -0.02554727904498577, 0.020895399153232574, -0.018939094617962837, 0.016690358519554138, -0.016672974452376366, -0.021244637668132782, -0.005642189644277096, -0.013712606392800808, -0.027518989518284798, -0.016987508162856102, -0.010310347191989422, 0.055191658437252045, -0.03139599785208702, 0.01526508666574955, 0.001502864994108677, 0.020237356424331665, -0.050928518176078796, -0.04339398071169853, -0.0429205447435379, -0.05794486403465271, -0.04529058188199997, 0.015379898250102997, 0.030153658241033554, 0.02626793086528778, -0.024392424151301384, -0.03485141694545746, -0.027754489332437515, -0.019206887111067772, 0.04114660993218422, -0.061444174498319626, -0.04022587090730667, 0.010415232740342617, 0.034609876573085785, 0.03763287514448166, 0.03189937397837639, 0.0585298165678978, -0.039055995643138885, 0.000542972469702363, -0.029325705021619797, 0.02821582742035389, 0.03201093152165413, 0.00564413471147418, -0.0014592282241210341, -0.0871526300907135, 0.012801256030797958, 0.038353580981492996, -0.03858622536063194, -0.07651674747467041, 0.014942613430321217, 0.0268174447119236, -0.013140236958861351, 0.04694736376404762, -0.030815908685326576, 0.014470675028860569, -0.061561014503240585, 0.00455412408336997, 0.005929611157625914, 0.005619750823825598, 0.0436490923166275, -0.017748422920703888, 0.079241544008255, 0.03746473416686058, -0.017735226079821587, -0.04026583582162857, 0.008412853814661503, -0.014135654084384441, 0.00881490670144558, -0.011919678188860416, -0.041030287742614746, -0.02462790347635746, -0.10483484715223312, -0.030386287719011307, 0.020637454465031624, -0.01593351736664772, -0.045330628752708435, 0.038360584527254105, 0.029323285445570946, -0.037783849984407425, 0.009513311088085175, -0.036857642233371735, 0.04086886718869209, -0.007950350642204285, -0.002035027602687478, -0.004916465375572443, 0.018056271597743034, 0.00025354971876367927, -0.006616950500756502, 0.03012866899371147, -0.0479300394654274, 0.000042222764022881165, -0.02067452296614647, 0.02733650803565979, 0.04903894290328026, 0.019535861909389496, 0.0006092774565331638 ]
[ -0.08962563425302505, -0.005795602221041918, -0.031692761927843094, -0.02602539211511612, 0.05038188025355339, -0.028998108580708504, -0.020344018936157227, 0.011636304669082165, -0.005067307036370039, -0.012940789572894573, 0.030436856672167778, -0.042525481432676315, 0.01244672667235136, -0.026420606300234795, 0.07861817628145218, -0.006833207793533802, -0.01941341906785965, -0.07150796055793762, 0.007205585483461618, -0.0013208879390731454, 0.01946788653731346, -0.026303935796022415, -0.023193011060357094, -0.037236932665109634, -0.0058300248347222805, 0.034635256975889206, 0.004494617227464914, -0.06256351619958878, 0.01153659075498581, -0.2035335898399353, 0.017015952616930008, 0.016924433410167694, 0.040587831288576126, -0.021532000973820686, 0.008336197584867477, 0.08876224607229233, 0.03321139141917229, 0.024697480723261833, -0.01672714576125145, 0.04318796843290329, 0.03204095736145973, 0.06809688359498978, -0.04556707665324211, -0.024821221828460693, 0.007087738253176212, 0.016536254435777664, -0.03990352898836136, -0.028289347887039185, -0.07160327583551407, 0.045797497034072876, -0.007388791535049677, -0.03319564461708069, -0.02772456407546997, 0.009014596231281757, -0.025578733533620834, 0.050130922347307205, 0.025076329708099365, 0.054432474076747894, 0.0032744721975177526, 0.01862700842320919, 0.03322232514619827, -0.038698941469192505, -0.12284765392541885, 0.0745578184723854, 0.06439358741044998, 0.03298753872513771, -0.05919656157493591, -0.024515843018889427, -0.037576764822006226, 0.0974888727068901, -0.013014260679483414, 0.003251932095736265, 0.007055786903947592, 0.04456157982349396, 0.030761484056711197, 0.026351936161518097, -0.01195430662482977, 0.034172385931015015, 0.05031019076704979, -0.0436539351940155, -0.039656322449445724, -0.013109897263348103, -0.012384320609271526, 0.014500081539154053, -0.03782736137509346, 0.001799908117391169, -0.00715833343565464, 0.0712873786687851, 0.028766434639692307, 0.026504376903176308, 0.07148321717977524, 0.011255660094320774, 0.03966332599520683, -0.0032821903005242348, -0.06661438941955566, -0.03216354548931122, -0.003609017701819539, 0.008990397676825523, -0.05998748540878296, 0.4286854863166809, -0.01601289212703705, -0.006995863281190395, 0.07717252522706985, 0.058638330549001694, -0.0016739300917834044, 0.003300641430541873, 0.012943297624588013, -0.03224179521203041, 0.0158552136272192, 0.002007820876315236, 0.034236788749694824, 0.031162703409790993, 0.023699376732110977, -0.0537542849779129, 0.02296578697860241, 0.00044742925092577934, -0.033872250467538834, 0.02397114224731922, -0.012177321128547192, 0.010911843739449978, -0.0063267964869737625, 0.01481094490736723, 0.02358233742415905, 0.017758473753929138, -0.014355855993926525, 0.009460744448006153, 0.005208863411098719, 0.03733271360397339, 0.04739465191960335, -0.010790877044200897, 0.05207657441496849, -0.05199668928980827, -0.05498572811484337, -0.010641542263329029, -0.0023832139559090137, 0.003140628570690751, 0.026648586615920067, -0.02114039473235607, -0.0073680877685546875, 0.042711883783340454, 0.021880613639950752, 0.0031691165640950203, 0.04878716170787811, -0.047324102371931076, -0.007889696396887302, 0.16592104732990265, 0.02822333388030529, -0.026846224442124367, -0.03590180352330208, -0.046916380524635315, -0.014439363963901997, 0.045212581753730774, -0.009691735729575157, -0.035628125071525574, 0.002397037809714675, 0.0034592808224260807, 0.06397506594657898, -0.0307436753064394, -0.038050245493650436, 0.02590528503060341, -0.012092207558453083, 0.023734809830784798, -0.03385564312338829, 0.0013062430080026388, 0.07290679961442947, -0.1302255243062973, -0.008109214715659618, 0.02114393748342991, 0.016884511336684227, -0.04915895685553551, -0.034479398280382156, -0.0012490333756431937, -0.0019197151996195316, -0.0023830661084502935, 0.04332200065255165, -0.04472200945019722, -0.06525903940200806, 0.013528785668313503, 0.027562683448195457, 0.009058302268385887, 0.02752637304365635, 0.04263594374060631, -0.01956244930624962, -0.02698342315852642, -0.0375748872756958, -0.0835028737783432, -0.023367244750261307, -0.014051539823412895, -0.034579116851091385, -0.026653410866856575, -0.05840345099568367, -0.003626256249845028, -0.06878144294023514, 0.09409457445144653, -0.0311164278537035, -0.01687886379659176, 0.05703278258442879, -0.03279062733054161, -0.029807040467858315, -0.012761414982378483, -0.05258443206548691, 0.0289749912917614, -0.03251994401216507, 0.04898013919591904, -0.06948795169591904, 0.05669836699962616, 0.03127140551805496, -0.04680933058261871, 0.05490107461810112, 0.019228558987379074, -0.038480475544929504, -0.057673048228025436, -0.02047014981508255, 0.033331248909235, -0.013680134899914265, 0.015250214375555515, 0.00402454799041152, 0.031724341213703156, 0.029293231666088104, 0.037151165306568146, 0.01502490695565939, 0.00496153486892581, -0.007957099936902523, -0.3476089835166931, -0.041492123156785965, -0.014027857221662998, 0.007680842187255621, -0.02273377776145935, -0.023678310215473175, 0.01823336072266102, -0.0019859522581100464, -0.04612685367465019, 0.011213154532015324, 0.10480077564716339, -0.024649474769830704, -0.011120811104774475, -0.06301257014274597, -0.018388649448752403, 0.018679091706871986, -0.06659973412752151, -0.012309719808399677, -0.04659818112850189, -0.003593745408579707, 0.03293144330382347, 0.028180008754134178, -0.031531695276498795, -0.05935320258140564, 0.00720512680709362, -0.02377212978899479, 0.08860809355974197, -0.004307665396481752, 0.04157620668411255, -0.06372644752264023, 0.03943651169538498, 0.012613346800208092, 0.001870148116722703, -0.07341334223747253, 0.000030851901101414114, -0.005854800343513489, -0.007860331796109676, -0.04791342467069626, 0.006091137416660786, -0.03423040732741356, -0.08585751801729202, 0.026327382773160934, -0.07275266945362091, -0.057531166821718216, -0.0553695484995842, 0.015849491581320763, -0.033929575234651566, -0.028753656893968582, -0.018914267420768738, 0.05795109272003174, -0.010582661256194115, 0.02182583697140217, 0.03154829517006874, 0.002015304984524846, 0.002527466742321849, -0.049085989594459534, -0.0891861617565155, 0.05744587257504463, -0.0006707101711072028, -0.011992291547358036, 0.008677070960402489, 0.05054272338747978, 0.005337260663509369, -0.029990442097187042, 0.0260231401771307, 0.0016139905201271176, -0.012811429798603058, 0.01051883865147829, 0.028306474909186363, -0.01766081154346466, 0.004107947926968336, 0.08800941705703735, -0.0028868585359305143, -0.004368294961750507, 0.057664904743433, -0.008017586544156075, -0.012559255585074425, -0.0014944842550903559, 0.03129909932613373, -0.02258436568081379, 0.043381012976169586, -0.06068491190671921, 0.003064726945012808, -0.015982195734977722, 0.02097846008837223, 0.0339873842895031, 0.0030404196586459875, -0.030568381771445274, 0.026682989671826363, 0.009967973455786705, 0.0072055174969136715, -0.006460009608417749, -0.020535290241241455, -0.031818121671676636, 0.04742251709103584, -0.01856936700642109, -0.25559982657432556, 0.038290638476610184, 0.05924167484045029, 0.03245570510625839, -0.01574862003326416, 0.017027299851179123, 0.01717374660074711, -0.022137803956866264, 0.022545969113707542, 0.018939200788736343, 0.005757457111030817, 0.040709663182497025, 0.005565077532082796, -0.0032717976719141006, 0.04789036884903908, 0.039930712431669235, 0.0717887207865715, -0.012869582511484623, 0.003187467809766531, -0.04080529883503914, 0.021528970450162888, -0.04896899685263634, 0.1807956099510193, -0.0008471085457131267, 0.0333314910531044, 0.03798371180891991, -0.010149799287319183, 0.014202669262886047, 0.02663186937570572, 0.004590367432683706, -0.008793815970420837, -0.024345887824892998, 0.04714342951774597, -0.017932608723640442, 0.005183303263038397, -0.0542060025036335, 0.008412378840148449, 0.005041957832872868, 0.02675340138375759, 0.021545451134443283, 0.016114944592118263, -0.013976478017866611, 0.0011879688827320933, 0.03810745105147362, 0.08987477421760559, -0.02106372080743313, -0.0009264458203688264, -0.037308480590581894, -0.06249052658677101, -0.01595314033329487, -0.05096494406461716, -0.04675415903329849, 0.005571586545556784, -0.016658645123243332, 0.03621797263622284, 0.05722688511013985, 0.04400203004479408, -0.018677210435271263, 0.0004943537060171366, 0.004528024233877659, 0.0077321333810687065, 0.003460942767560482, 0.06767588108778, 0.026963356882333755, 0.05887613818049431 ]
[ -0.006429333705455065, 0.0031842857133597136, -0.013459810987114906, 0.022749634459614754, 0.012247615493834019, 0.004828557372093201, -0.02929261140525341, 0.005430079065263271, 0.02279585786163807, 0.005831428803503513, -0.026308858767151833, 0.020080314949154854, 0.0014336556196212769, -0.005292032845318317, 0.04722970724105835, -0.024549422785639763, 0.003849857719615102, 0.011444234289228916, 0.018984703347086906, -0.02756342478096485, 0.003906984347850084, -0.009793358854949474, -0.005970461294054985, -0.003997048828750849, 0.008711428381502628, -0.01112122368067503, -0.02139373868703842, -0.0006986034568399191, 0.026724766939878464, -0.13287872076034546, -0.024756142869591713, -0.02007310837507248, -0.010162710212171078, -0.013457079418003559, 0.009742711670696735, 0.00575093412771821, -0.01498383842408657, 0.0015366700245067477, 0.003870568238198757, 0.004552563186734915, 0.023768320679664612, -0.013872706331312656, -0.010300332680344582, -0.02001565881073475, -0.04784533008933067, -0.010271135717630386, -0.02086448110640049, -0.02711617201566696, -0.0011897102231159806, -0.012287887744605541, -0.014137567952275276, -0.027100782841444016, -0.016559123992919922, 0.0049442108720541, 0.027398325502872467, -0.01914840005338192, 0.007939358241856098, -0.028378840535879135, -0.021464964374899864, -0.024657752364873886, 0.025538939982652664, -0.038042645901441574, -0.026997651904821396, -0.010706954635679722, 0.018797414377331734, -0.012100612744688988, -0.006520566530525684, 0.007569191046059132, -0.014219971373677254, -0.005077982787042856, -0.023821113631129265, -0.008272897452116013, 0.000565757101867348, -0.01736273616552353, 0.01367728691548109, 0.02489626221358776, 0.0028270920738577843, 0.022369738668203354, 0.029944002628326416, -0.03684617578983307, -0.026595663279294968, 0.0242023728787899, 0.013458716683089733, 0.02837376855313778, 0.0018079468281939626, -0.0008462225669063628, -0.013346842490136623, -0.006497879512608051, 0.00919528491795063, 0.008569815196096897, -0.03666258230805397, 0.04692969471216202, 0.032349616289138794, 0.006405971013009548, -0.07523655891418457, 0.003655780106782913, -0.018861528486013412, 0.00404339749366045, -0.03566225990653038, 0.860253632068634, 0.010084099136292934, 0.0159226693212986, 0.05447455495595932, 0.010460656136274338, 0.00004782164978678338, -0.004470209591090679, -0.004327664617449045, -0.009379448369145393, 0.004390552639961243, -0.0007216322119347751, 0.031072398647665977, 0.01751994527876377, 0.022526144981384277, 0.01730220951139927, 0.0016914563020691276, -0.0011021590325981379, 0.025505878031253815, -0.009169278666377068, 0.0057685053907334805, 0.02186211198568344, 0.03058491088449955, -0.002403033897280693, 0.017995646223425865, -0.003776417812332511, 0.036668818444013596, -0.17807826399803162, 0.0002759635681286454, -7.833819818878108e-33, 0.04405226185917854, 0.021417275071144104, -0.00014166142500471324, -0.003858699230477214, 0.01816941611468792, -0.007463834714144468, 0.026226995512843132, -0.0015180112095549703, -0.026468465104699135, -0.019662581384181976, -0.015489340759813786, -0.018462777137756348, 0.022591607645154, -0.039710186421871185, 0.007814470678567886, -0.04323023930191994, -0.02693725936114788, 0.0552707314491272, -0.0021125187631696463, 0.007929046638309956, 0.027762649580836296, 0.014173631556332111, -0.027291133999824524, 0.0071821147575974464, 0.02458753064274788, 0.009483302012085915, -0.016203895211219788, -0.03101254627108574, -0.027030713856220245, -0.03872408717870712, -0.004815043415874243, 0.05354863032698631, -0.03759398311376572, 0.0012727160938084126, 0.0051797982305288315, -0.06757146865129471, -0.020725402981042862, -0.003287116764113307, -0.037689950317144394, -0.04698031768202782, -0.01631619781255722, 0.0008412042516283691, -0.04289031773805618, -0.02051839418709278, -0.019218720495700836, 0.014249099418520927, 0.010088142938911915, 0.0184261966496706, 0.011003134772181511, -0.03651436045765877, 0.023117879405617714, 0.01855430193245411, 0.023816924542188644, 0.017554571852087975, 0.016518842428922653, 0.0009355017682537436, 0.00951309222728014, -0.005123702343553305, 0.00855107419192791, 0.024045759811997414, -0.005679827183485031, 0.011999689973890781, -0.03356073424220085, 0.03710116073489189, -0.020994851365685463, 0.008906969800591469, 0.012443686835467815, 0.0030654454603791237, 0.03931468725204468, 0.01264849305152893, -0.025611286982893944, -0.010385392233729362, 0.024080339819192886, -0.005628853105008602, -0.003303169971331954, -0.014458205550909042, -0.008462970145046711, 0.03714625537395477, -0.046824000775814056, 0.05395420268177986, -0.012367332354187965, -0.020973211154341698, -0.014201425015926361, -0.043008625507354736, -0.01212778128683567, -0.006727490574121475, 0.008388150483369827, -0.01460407767444849, -0.01298857107758522, 0.021885745227336884, 0.04618313908576965, -0.01049575861543417, 0.005765807814896107, -0.00021566015493590385, -0.05035907030105591, 8.623055542227823e-33, -0.015044919215142727, -0.007937679998576641, -0.015350131317973137, 0.00008951176278060302, 0.052131954580545425, -0.015727147459983826, 0.018093155696988106, -0.022088797762989998, -0.04607473313808441, 0.04085970297455788, -0.010931046679615974, 0.01553844939917326, -0.016839267686009407, 0.008087066002190113, 0.009665282443165779, -0.0062539535574615, 0.06383832544088364, -0.03455326333642006, 0.06953977793455124, 0.004697243217378855, 0.03524007275700569, -0.020449262112379074, 0.015680750831961632, 0.013351548463106155, 0.03273632377386093, 0.047256212681531906, -0.00357015710324049, -0.024495765566825867, -0.0005859420634806156, -0.002851499943062663, 0.00831619556993246, -0.012418822385370731, -0.002339213155210018, -0.02567625418305397, -0.023044871166348457, 0.005284130107611418, -0.05333607271313667, 0.006021133624017239, 0.002291445154696703, -0.02556503564119339, 0.022913290187716484, -0.011695328168570995, 0.0006352424388751388, 0.03170181065797806, 0.026394322514533997, -0.020620137453079224, -0.007414918392896652, -0.015766922384500504, -0.011433146893978119, 0.0092748012393713, 0.020297378301620483, 0.01705612801015377, 0.01298312284052372, 0.009614710696041584, -0.007224764674901962, -0.005353325046598911, -0.003733330871909857, 0.01100174617022276, 0.018036678433418274, 0.02680285833775997, 0.016236213967204094, 0.017810923978686333, -0.025989755988121033, 0.018689516931772232, -0.04019704833626747, 0.007286773528903723, -0.028178159147500992, 0.0008936276426538825, -0.0041255648247897625, 0.033879220485687256, -0.032866284251213074, 0.0033171596005558968, 0.007280685473233461, 0.06457263976335526, 0.018915995955467224, -0.010795745998620987, 0.01002467330545187, -0.007095644250512123, -0.0174743440002203, 0.011488092131912708, -0.010357018560171127, 0.012068575248122215, -0.002712572691962123, 0.0022277107927948236, 0.008564379066228867, 0.027574485167860985, -0.004541798494756222, 0.038986943662166595, 0.009311093017458916, 0.0004577204817906022, -0.0018444217275828123, -0.00989571399986744, -0.010537604801356792, 0.0042307451367378235, 0.02542487345635891, -1.3519268371453563e-8, 0.02265974134206772, 0.030451752245426178, -0.012760384008288383, 0.02045295387506485, 0.016007449477910995, -0.0050190649926662445, -0.005014732014387846, 0.001457710168324411, 0.017920996993780136, 0.018240949138998985, 0.020850976929068565, -0.032605115324258804, -0.0070847501046955585, 0.030790572986006737, 0.05186052620410919, -0.029322128742933273, -0.021214336156845093, -0.00520938029512763, 0.02340260148048401, 0.002132411114871502, 0.02767297439277172, 0.05484744533896446, -0.02374393120408058, 0.012898556888103485, 0.004944075830280781, 0.00004805665594176389, -0.014823416247963905, -0.08322346210479736, -0.014669397845864296, 0.0035929649602621794, -0.008594365790486336, -0.016179129481315613, -0.05422450602054596, 0.04064664989709854, -0.0018828470492735505, -0.022619692608714104, 0.022648371756076813, 0.01199161633849144, 0.023263143375515938, 0.03037608601152897, -0.041904475539922714, 0.0439029298722744, 0.021691609174013138, -0.021355226635932922, -0.009049621410667896, 0.003081311471760273, -0.053882475942373276, 0.006677937228232622, 0.011463655158877373, -0.05493762344121933, 0.012851433828473091, -0.02331729233264923, -0.005713104270398617, 0.011258238926529884, 0.029331421479582787, 0.00010787558858282864, -0.0018029480706900358, -0.042784303426742554, -0.0036594108678400517, 0.014130090363323689, 0.032732944935560226, 0.003906026016920805, -0.007716988679021597, -0.023079900071024895 ]
application-footprint
https://markhneedham.com/blog/2012/01/16/application-footprint
false
2012-01-16 01:01:30
Focused Retrospectives: things to watch for
[ "agile", "retrospective" ]
[ "Agile" ]
A few weeks ago a slide deck from an http://www.slideshare.net/estherderby/agile-retrospectives-4976896[Esther Derby presentation on retrospectives] was doing the rounds on twitter and one thing that I found interesting in the deck was the suggestion that a retrospective needs to be focused in some way. I've participated in a few focused retrospectives over the past 7/8 months and I think there are some things to be careful about when we decide to focus on something specific rather than just looking back at a time period in general. == Victimisation In a retrospective about 6 months ago or so we focused on the analysis part of our process as we'd been struggling to know when a story was complete and what exactly its scope was. The intention wasn't the victimise the people working in that role but since there were very few of them compared to people in other roles they were forced onto the defensive as people criticised their work. It was a very awkward retrospective and it felt like a retrospective was probably the wrong place to address the problem. It might have been better for the analysts to have been given the feedback privately and then perhaps worked on a solution with a smaller group of people. == Looking for a problem when there isn't one I had an interesting conversation with a colleague about whether with very focused retrospectives we end up looking for something to change rather than having any specific pain point which necessitates change. The problem with this is that there's a thin line between following the status quo because it works and getting complacent and not looking for ways to improve. It is interesting to keep in mind though that *if it doesn't seem like there is something to change in an area then perhaps that's the wrong thing to be focusing on at the moment*, which nicely leads into... == Let the team choose the area of focus There can be a tendency in the teams I've worked on for people in managementy roles to dictate what the focus of the retrospective will be which makes sense in a way since they may be able to see something which the team can't. On the other hand it can mean that we end up focusing on the wrong thing and team members probably won't be that engaged in the retrospective since they don't really get to dictate what's talked about. Esther points this out out on slide 23 of the presentation - "*Choose a focus that reflects what's going on for the team*". This perhaps can be determined by having a vote before hand based on some topics that seem prominent. == In summary There's lots of other useful tips in Esther's slide deck which are worth having a look at and I'm sure most of the potential problems I've listed probably don't happen when we have a highly skilled/experienced facilitator.
null
null
[ -0.0021444528829306364, -0.02080390974879265, -0.011361425742506981, 0.018666518852114677, 0.06611639261245728, 0.005201668944209814, 0.014338239096105099, 0.029979489743709564, 0.019561665132641792, -0.006108491215854883, -0.0071549611166119576, 0.021720636636018753, -0.023197483271360397, 0.036271832883358, -0.03384486958384514, 0.07585956156253815, 0.0421605110168457, -0.006020454224199057, 0.01078851893544197, 0.01785382814705372, 0.0376020111143589, 0.06344744563102722, 0.035033244639635086, 0.027608074247837067, 0.039565373212099075, -0.013072865083813667, 0.03566631302237511, -0.011361717246472836, -0.04697087034583092, 0.0010607736185193062, 0.01961684785783291, -0.0022052417043596506, 0.0031386951450258493, 0.02177814021706581, 0.024338169023394585, -0.007725865580141544, -0.00007546420238213614, 0.041732631623744965, 0.015878310427069664, -0.002357413526624441, -0.07637801021337509, 0.04096940532326698, -0.03136087954044342, -0.002572973957285285, -0.027582218870520592, 0.022066151723265648, -0.03041389212012291, 0.0013690483756363392, 0.019388185814023018, -0.01076177041977644, -0.06715206801891327, 0.03268345817923546, 0.01973334327340126, 0.004094756208360195, -0.03401563689112663, 0.025646401569247246, -0.005031154025346041, -0.07406730204820633, -0.009166511707007885, -0.03262627124786377, -0.014787583611905575, -0.010373766534030437, 0.000993951573036611, 0.04248660057783127, 0.02791258506476879, -0.020652271807193756, 0.0018686051480472088, 0.029432035982608795, -0.03477024659514427, 0.01034629251807928, -0.024584265425801277, 0.004266579169780016, -0.012104084715247154, -0.003665393916890025, -0.012448754161596298, -0.04710817337036133, 0.01766902767121792, 0.0638996809720993, 0.018631190061569214, 0.03732665255665779, -0.02333879843354225, 0.010441417805850506, 0.004952507559210062, 0.025772856548428535, -0.014323865063488483, -0.04974189028143883, 0.01061292365193367, -0.0264314953237772, -0.07019410282373428, 0.0526215136051178, 0.0037654784973710775, -0.059203583747148514, 0.016248730942606926, 0.03985810652375221, -0.005559846758842468, 0.010462072677910328, 0.03226625174283981, 0.005087736994028091, -0.004079949110746384, -0.030601365491747856, -0.015502072870731354, -0.015015357173979282, -0.007154725957661867, 0.00919667724519968, -0.09688517451286316, -0.017416341230273247, -0.005030757747590542, 0.0021850501652806997, -0.030361957848072052, -0.008444917388260365, -0.02864513173699379, 0.035345010459423065, -0.030410313978791237, 0.020926352590322495, -0.06958846002817154, 0.04027527943253517, 0.009318917989730835, -0.037979498505592346, 0.009213230572640896, -0.0029925392009317875, 0.03609544411301613, 0.007018608506768942, -0.013859651051461697, 0.0749763697385788, -0.020851338282227516, 0.024710606783628464, -0.026558419689536095, 0.061424970626831055, -0.010402726009488106, -0.059916310012340546, -0.0125328553840518, 0.043360307812690735, -0.06314914673566818, -0.0236374419182539, 0.0007723237504251301, -0.045075900852680206, 0.008556674234569073, 0.0028282026760280132, 0.039411064237356186, 0.06726692616939545, 0.01414207462221384, -0.036958206444978714, 0.0006681781960651278, 0.02433597482740879, 0.03077099099755287, -0.025078292936086655, -0.01273130252957344, -0.023912405595183372, -0.04692712426185608, -0.014742814935743809, 0.013567829504609108, 0.014237410388886929, 0.03600778430700302, -0.04738827794790268, 0.023107709363102913, 0.07528874278068542, 0.05091192573308945, -0.0077627962455153465, -0.010611467063426971, 0.04740874096751213, 0.03824040666222572, 0.014265469275414944, 0.017358744516968727, 0.04491563141345978, 0.025778183713555336, -0.026698479428887367, -0.021625222638249397, 0.03246379271149635, -0.004041333682835102, -0.006541498005390167, -0.05395101383328438, -0.05086517706513405, 0.036754924803972244, -0.038725342601537704, -0.035114604979753494, 0.07732801139354706, 0.05973511189222336, 0.05270528793334961, 0.02098868414759636, -0.0012622285867109895, -0.07952629029750824, 0.03574197739362717, 0.010749383829534054, 0.030221860855817795, 0.050255145877599716, -0.028364485129714012, 0.04920013248920441, 0.028305359184741974, -0.005815330892801285, 0.050099387764930725, -0.07795818150043488, -0.09182831645011902, -0.01599166728556156, -0.010323187336325645, 0.037740666419267654, -0.048139531165361404, 0.031045688316226006, 0.09484625607728958, 0.003986371215432882, 0.061555542051792145, 0.03189907968044281, 0.00045866399887017906, 0.01920936070382595, -0.04168633371591568, -0.03812433034181595, 0.0669366717338562, 0.043911922723054886, -0.008296401239931583, -0.043932389467954636, 0.02250785194337368, -0.024470919743180275, -0.00871055107563734, 0.03550243005156517, 0.006885401904582977, 0.05013490840792656, -0.00023538930690847337, 0.07609546184539795, -0.027920881286263466, 0.035748399794101715, -0.053364720195531845, 0.023066148161888123, 0.011000379920005798, -0.01218823716044426, 0.0020063123665750027, -0.017398515716195107, 0.10508370399475098, 0.06519365310668945, -0.03321123123168945, -0.05005287751555443, 0.01085452176630497, 0.03966283053159714, -0.020619530230760574, -0.006496018264442682, -0.005655788816511631, 0.034123558551073074, 0.007350449450314045, -0.07341113686561584, -0.033527955412864685, 0.0222303569316864, -0.05233224108815193, -0.010553673841059208, 0.04143292456865311, 0.0033135348930954933, 0.0684109553694725, 0.0018813502974808216, 0.00670689158141613, -0.01840922050178051, -0.0009342988487333059, -0.0773497000336647, 0.01845788024365902, 0.006164456717669964, -0.016957299783825874, 0.040564797818660736, -0.01793016493320465, -0.036618418991565704, -0.018188469111919403, -0.035465627908706665, 0.017949935048818588, 0.05306393653154373, 0.07925350219011307, -0.00632519694045186, 0.05997273698449135, -0.020204955711960793, 0.02355370484292507, 0.01438969373703003, -0.029213853180408478, -0.03275969624519348, -0.041583552956581116, -0.0035555551294237375, 0.01032334379851818, 0.025827115401625633, 0.003059663809835911, 0.01614150032401085, -0.0012403763830661774, -0.016868967562913895, 0.0039185089990496635, 0.011577512137591839, 0.010685750283300877, -0.002334384946152568, -0.01166422851383686, -0.020226476714015007, 0.053920526057481766, -0.019031627103686333, -0.00024202732311096042, 0.0024283109232783318, -0.09029441326856613, 0.03339581564068794, -0.047946590930223465, -0.04124649614095688, 0.007861033082008362, 0.006777011323720217, 0.044613152742385864, 0.022855065762996674, 0.00740100396797061, 0.07222028821706772, 0.016642190515995026, 0.019303670153021812, 0.003346976125612855, -0.011149952188134193, 0.039541490375995636, -0.016269294545054436, -0.027497490867972374, 0.05841277167201042, -0.009424944408237934, 0.011285573244094849, -0.0506109781563282, 0.0401417538523674, -0.05070245638489723, -0.2904965579509735, 0.024839654564857483, 0.011044947430491447, -0.03371009975671768, 0.02497442439198494, -0.050760362297296524, 0.007675394881516695, -0.04969291388988495, -0.04216435179114342, 0.0008082659915089607, -0.019728824496269226, -0.026679525151848793, -0.011000699363648891, 0.06016315147280693, 0.018176814541220665, 0.02849229797720909, 0.03002009354531765, -0.025423523038625717, 0.009259208105504513, 0.058370381593704224, -0.00915477517992258, -0.06897344440221786, -0.033970169723033905, 0.04732401296496391, 0.0286899171769619, 0.061275165528059006, -0.055484794080257416, 0.028477177023887634, -0.06631512939929962, -0.020671753212809563, 0.013588950037956238, -0.0019798867870122194, -0.004858097061514854, -0.007199862506240606, -0.006156922318041325, -0.028591496869921684, 0.050151363015174866, 0.0028818619903177023, -0.008373254910111427, -0.01712004281580448, -0.018608028069138527, -0.03566635772585869, 0.016322365030646324, 0.038702432066202164, 0.06279423087835312, 0.019536947831511497, -0.07634957879781723, -0.00862170197069645, -0.03271825239062309, 0.07114281505346298, -0.03235713019967079, -0.015793150290846825, -0.013588319532573223, 0.02701495587825775, -0.017425324767827988, -0.013953758403658867, -0.01841346174478531, -0.048665862530469894, -0.038376253098249435, -0.04446353763341904, -0.032827459275722504, -0.026104116812348366, -0.001476722420193255, -0.038661886006593704, -0.04293786734342575, -0.0643032118678093, -0.0640721544623375, 0.005408445373177528, 0.053630758076906204, -0.023749927058815956, -0.03294174745678902, 0.007832982577383518, -0.012881050817668438, -0.09216058999300003, -0.006812681443989277, 0.006083544343709946, -0.02664652094244957, 0.0007904460071586072, 0.03395499289035797, 0.04456358775496483, -0.021899908781051636, -0.06294495612382889, 0.02792235091328621, 0.012058681808412075, 0.021522870287299156, -0.01627831533551216, 0.06407283246517181, 0.03919556364417076, -0.023423297330737114, 0.001840770710259676, 0.049105457961559296, 0.012015172280371189, -0.036263637244701385, 0.007825867272913456, -0.0012528275838121772, 0.027983075007796288, 0.006139616947621107, -0.00024304911494255066, 0.021542152389883995, 0.015437794849276543, 0.005130566190928221, -0.05339893326163292, 0.015965625643730164, -0.017147375270724297, -0.00762405339628458, -0.011275900527834892, -0.055855367332696915, -0.005430426448583603, 0.04173613712191582, 0.008976866491138935, 0.027417028322815895, -0.01568702980875969, 0.028827473521232605, -0.030881423503160477, -0.021180231124162674, -0.01734650507569313, 0.01617550291121006, 0.0555214025080204, 0.00892183929681778, -0.006187001243233681, -0.0666581317782402, 0.008844337426126003, -0.03161792829632759, -0.001825713086873293, -0.05293413996696472, -0.015726208686828613, -0.022233448922634125, -0.013947329483926296, -0.00361256068572402, 0.03885647654533386, -0.014812473207712173, -0.01334407739341259, 0.05177900195121765, -0.028558019548654556, 0.04024820774793625, -0.05544941499829292, -0.06685478240251541, -0.03269430249929428, -0.010693765245378017, 0.0005130678764544427, -0.013028494082391262, 0.018713509663939476, -0.008928297087550163, 0.00041947365389205515, 0.051242586225271225, 0.008171267807483673, 0.0147487111389637, -0.008277159184217453, 0.020414650440216064, 0.01307829562574625, 0.0007125784759409726, -0.05082482472062111, 0.001516343792900443, -0.03879852592945099, 0.0016600210219621658, 0.005306890234351158, 0.02168702706694603, -0.024672511965036392, -0.02041046693921089, -0.0084169777110219, -0.013671176508069038, -0.028048738837242126, -0.036030858755111694, -0.03813765197992325, 0.03212510794401169, 0.04741480574011803, -0.007750457152724266, 0.016377216205000877, 0.008287894539535046, -0.005549127236008644, -0.0028547397814691067, -0.00974805187433958, -0.0413236990571022, 0.0042925383895635605, 0.011765637435019016, 0.02017153613269329, 0.011571370996534824, 0.010409415699541569, 0.04004926234483719, -0.012347324751317501, -0.010108602233231068, -0.01594429835677147, 0.007586169056594372, 0.02157541550695896, 0.03999191150069237, 0.04677646979689598, -0.01976083405315876, 0.01260997261852026, -0.0370183065533638, -0.026270540431141853, -0.043841637670993805, -0.015106581151485443, -0.01933969557285309, 0.011113414540886879, -0.033887043595314026, -0.07080432772636414, 0.06850544363260269, -0.011801538988947868, 0.014942050911486149, 0.006068605929613113, 0.0012427907204255462, 0.004926304332911968, -0.020714780315756798, 0.034720152616500854, 0.04752274230122566, -0.07074930518865585, -0.0017228552605956793, 0.000616946374066174, -0.023274322971701622, 0.014547625556588173, -0.014202062040567398, -0.03665507212281227, -0.01715617999434471, -0.028772948309779167, 0.012172595597803593, -0.09714561700820923, 0.0037610346917062998, -0.0544508658349514, 0.04345756396651268, 0.02346382848918438, 0.00968555174767971, -0.04138440266251564, -0.026615185663104057, -0.008741659112274647, -0.031404830515384674, 0.029001403599977493, -0.05183454230427742, 0.0016514338785782456, 0.01466632355004549, -0.036860350519418716, 0.00240875082090497, -0.025066489353775978, 0.025942804291844368, 0.028558552265167236, -0.03527350351214409, -0.01191806048154831, -0.03218942880630493, 0.00939978938549757, 0.013147043995559216, 0.0535983107984066, -0.028061585500836372, -0.03346667438745499, -0.03302987292408943, -0.010116210207343102, -0.0403931625187397, -0.013687986880540848, -0.02011769637465477, -0.003002209821715951, 0.016618842259049416, 0.06638620048761368, 0.021639076992869377, 0.028433814644813538, -0.021497225388884544, -0.02061309479176998, 0.0495372898876667, -0.05753090977668762, -0.024767212569713593, -0.04080985113978386, -0.06049332767724991, 0.013274327851831913, -0.00017026675050146878, 0.004520472604781389, -0.024370621889829636, 0.0369272343814373, 0.0184789951890707, 0.045367494225502014, 0.051536548882722855, 0.015433179214596748, 0.01836157776415348, -0.0426861047744751, -0.007402540650218725, -0.07759135216474533, -0.01821272447705269, 0.03419455140829086, 0.005346073769032955, 0.005381045397371054, 0.0014606004115194082, -0.03795241937041283, 0.0494757816195488, -0.07421115040779114, -0.01782810129225254, 0.025013480335474014, -0.036766260862350464, -0.0031972608994692564, 0.03266049921512604, -0.07390190660953522, 0.024944990873336792, 0.009214379824697971, -0.04431844502687454, -0.021954506635665894, -0.0174353439360857, 0.0646851509809494, -0.008467773906886578, 0.026689859107136726, -0.036117736250162125, -0.0029370090924203396, 0.07166322320699692, 0.013507477007806301, -0.004845856688916683, 0.07069932669401169, -0.009146523661911488, 0.030148904770612717, 0.013254973106086254, 0.031220313161611557, -0.01589713990688324, 0.030191482976078987, -0.02002272941172123, -0.04813981428742409, 0.05116589367389679, 0.015124751254916191, -0.042532604187726974, -0.01578890159726143, 0.07333771139383316, 0.021718891337513924, -0.01850123144686222, -0.06154855340719223, 0.006317127496004105, -0.05698631331324577, -0.006075676064938307, -0.020182577893137932, -0.001337351743131876, -0.045505065470933914, 0.05419578403234482, 0.005303157959133387, 0.02329011633992195, 0.06889587640762329, -0.005533690098673105, 0.0036568036302924156, -0.019062446430325508, 0.0952453687787056, 0.08649418503046036, 0.08424893021583557, 0.010345284827053547, 0.08395346999168396, -0.0260649174451828, -0.03807903081178665, 0.021970070898532867, -0.005162644200026989, -0.0036406274884939194, -0.03672745078802109, 0.0415494479238987, 0.05104587972164154, -0.02291879989206791, 0.061614494770765305, -0.022405313327908516, -0.02897677756845951, -0.0015028815250843763, 0.03163422271609306, 0.01201360672712326, 0.05113299563527107, 0.007365490309894085, 0.02005920000374317, -0.011033103801310062, -0.06688331812620163, 0.04873844236135483, -0.021931977942585945, -0.010678268037736416, 0.04458450525999069, -0.011889813467860222, 0.031108440831303596, 0.009514113888144493, 0.0001230314956046641, 0.06622739881277084, -0.042632728815078735, 0.011565002612769604, -0.021936064586043358, 0.022160733118653297, 0.008504927158355713, 0.027447644621133804, -0.020914072170853615, -0.012776902876794338, 0.0044077071361243725, -0.04244653135538101, -0.01998802088201046, -0.02127707190811634, -0.03695804998278618, 0.03781427443027496, -0.046387769281864166, 0.009246795438230038, 0.037103261798620224, -0.007368548307567835, -0.040382545441389084, -0.04819686710834503, -0.02733435109257698, -0.03483825549483299, -0.050765059888362885, 0.012183955870568752, 0.04383393004536629, -0.02257412299513817, -0.0314393974840641, -0.0025419953744858503, -0.01232435554265976, -0.029382726177573204, 0.041918136179447174, -0.036402806639671326, -0.023273617029190063, -0.004600969143211842, 0.020753001794219017, 0.032927025109529495, 0.019411666318774223, 0.034696467220783234, 0.013186915777623653, -0.008873723447322845, -0.003089919686317444, 0.04699245095252991, 0.04387439414858818, -0.00462551461532712, 0.0005924359429627657, -0.09717179834842682, -0.004902281798422337, 0.04465462639927864, -0.03785092011094093, -0.06790260225534439, 0.021098298951983452, 0.01555938832461834, -0.008273178711533546, 0.052493080496788025, 0.002716683316975832, -0.01123580802232027, -0.040477607399225235, 0.00903109647333622, -0.012141860090196133, 0.03155510872602463, 0.041283395141363144, -0.032695163041353226, 0.09252917021512985, 0.03372104838490486, -0.011664407327771187, -0.02134564332664013, -0.02891886606812477, -0.0011121365241706371, -0.018783297389745712, -0.013200400397181511, -0.036063648760318756, -0.03671402111649513, -0.0836910679936409, -0.03377319127321243, 0.03710383176803589, -0.010356595739722252, -0.030403804033994675, 0.011956209316849709, 0.009587645530700684, -0.0016487134853377938, 0.001235896605066955, -0.041922226548194885, 0.04573442414402962, -0.00861235149204731, -0.009714685380458832, 0.002230930607765913, 0.009055528789758682, 0.0068705459125339985, 0.002662657992914319, 0.01474660262465477, -0.03754355013370514, 0.008492602035403252, -0.029665794223546982, 0.0049768839962780476, 0.033342450857162476, 0.0014005356933921576, -0.00666126050055027 ]
[ -0.06738977134227753, 0.04275801032781601, 0.008997111581265926, -0.004084284882992506, 0.059842802584171295, -0.01791161112487316, 0.012414003722369671, 0.01846129633486271, 0.00008863153198035434, -0.021534543484449387, 0.017659127712249756, 0.005241491831839085, -0.00044952871394343674, 0.0012381079141050577, 0.04435090348124504, 0.028418797999620438, -0.0004360133898444474, -0.0761825293302536, 0.022927653044462204, 0.030887963250279427, -0.015717733651399612, -0.029050275683403015, -0.017020337283611298, 0.018411146476864815, 0.01494107861071825, 0.023923924192786217, 0.0020927214063704014, -0.038759492337703705, -0.01016299333423376, -0.1840544193983078, -0.02478080242872238, 0.030135728418827057, 0.0463172011077404, -0.004736562259495258, -0.005875621922314167, 0.07819712162017822, 0.018160562962293625, 0.0163242407143116, -0.0025874569546431303, 0.06741093844175339, 0.032512009143829346, 0.028783611953258514, -0.06609206646680832, -0.052511464804410934, -0.000942743441555649, -0.004762478172779083, 0.02420892007648945, -0.06182828173041344, -0.04099787771701813, 0.014252978377044201, -0.04733758792281151, -0.03475243225693703, -0.01476691197603941, -0.01065325178205967, -0.030279994010925293, 0.05550386384129524, 0.037329595535993576, 0.03694659471511841, 0.0015129429521039128, 0.005550750065594912, 0.052616801112890244, -0.02599254809319973, -0.13645145297050476, 0.06107582524418831, 0.024895355105400085, 0.0512491911649704, -0.05194742977619171, 0.0027757955249398947, -0.028718961402773857, 0.09731875360012054, -0.02565404400229454, -0.048485852777957916, -0.01964406669139862, 0.00976531207561493, 0.03334677591919899, 0.005304438527673483, 0.014882775023579597, 0.025751901790499687, 0.02691078931093216, -0.05741141363978386, -0.010045326314866543, 0.005977693945169449, -0.010311334393918514, -0.032524365931749344, -0.020329955965280533, -0.008217770606279373, -0.007822449319064617, 0.030804380774497986, 0.024064820259809494, 0.01727861538529396, 0.06489549577236176, -0.0008919083047658205, 0.039645735174417496, -0.0184481218457222, -0.06762374192476273, -0.024518970400094986, -0.01930195838212967, 0.04061336815357208, -0.045358721166849136, 0.46086379885673523, -0.012341741472482681, 0.01878797635436058, 0.09005464613437653, 0.0407501757144928, -0.021279390901327133, -0.012856068089604378, 0.025586167350411415, -0.04342624917626381, 0.005716377403587103, -0.004287322051823139, 0.026409508660435677, 0.017238149419426918, 0.04508228227496147, -0.03909410908818245, 0.03308429196476936, 0.050374843180179596, 0.023315131664276123, 0.028794558718800545, -0.013881821185350418, -0.05189367011189461, 0.011150521226227283, 0.00022178822837304324, 0.017908502370119095, 0.0011902011465281248, -0.05899272859096527, -0.01920471526682377, 0.02030317299067974, 0.05931486561894417, 0.04156060516834259, -0.05626630038022995, 0.04009159654378891, -0.05157129839062691, -0.08151112496852875, 0.0045979805290699005, -0.010638278909027576, -0.0064768423326313496, 0.05005595460534096, -0.026953870430588722, 0.016639018431305885, 0.03684336319565773, 0.021498827263712883, -0.027254270389676094, 0.012345757335424423, 0.0015461202710866928, -0.06436368077993393, 0.1622380167245865, 0.007485540583729744, -0.028927627950906754, -0.027602002024650574, -0.035610027611255646, -0.007488291710615158, 0.014067394658923149, 0.005123910494148731, -0.0248077642172575, 0.03659443557262421, -0.008512673899531364, 0.07007881999015808, -0.01962941884994507, -0.06647703796625137, 0.00642040278762579, -0.006242855917662382, -0.03830317035317421, -0.055430818349123, 0.055523328483104706, 0.06442077457904816, -0.08235259354114532, -0.017857803031802177, -0.021416328847408295, 0.02060149423778057, -0.05800872668623924, -0.013152441941201687, 0.006229381076991558, 0.006523894611746073, 0.026566995307803154, 0.04898145794868469, -0.013839353807270527, -0.034984689205884933, 0.0011069575557485223, 0.03997517749667168, 0.0009810616029426455, 0.049270402640104294, 0.02888217754662037, -0.022399529814720154, 0.023483240976929665, -0.013394014909863472, -0.09325776249170303, -0.029006924480199814, -0.0007156773353926837, -0.011850696057081223, 0.023115070536732674, -0.03013865277171135, -0.03272217512130737, -0.05391460657119751, 0.11121322959661484, -0.046485140919685364, -0.015330989845097065, 0.025395065546035767, -0.01916417106986046, -0.04205821827054024, -0.03349084034562111, -0.08595302700996399, 0.010174340568482876, -0.018705293536186218, 0.031099334359169006, -0.04953405633568764, 0.057503841817379, 0.032953690737485886, -0.04499921575188637, 0.099022276699543, 0.031840402632951736, -0.05065329000353813, -0.04948662221431732, 0.009498223662376404, 0.026223737746477127, 0.0014948875177651644, -0.004653335083276033, 0.009252919815480709, 0.01932637207210064, -0.002144420985132456, 0.0035789289977401495, 0.0047073401510715485, 0.034305498003959656, -0.021998312324285507, -0.35203519463539124, -0.02180137112736702, -0.03805376961827278, -0.005091432482004166, 0.009341414086520672, -0.0180041566491127, 0.026272183284163475, -0.007487918250262737, -0.014204492792487144, 0.008104676380753517, 0.03324903920292854, -0.01779727078974247, -0.01807459630072117, -0.10217290371656418, 0.005731834564357996, 0.007827342487871647, -0.056617140769958496, -0.01841263845562935, -0.042893186211586, -0.008125513792037964, 0.028765859082341194, -0.0008841431117616594, -0.01846444234251976, -0.05078507587313652, 0.0032359049655497074, -0.04580986872315407, 0.08248482644557953, 0.020560940727591515, 0.03885311260819435, -0.023387843742966652, 0.010506907477974892, 0.0007114695035852492, 0.030021939426660538, -0.10991780459880829, 0.02063937485218048, -0.010431941598653793, 0.01121467724442482, -0.040694210678339005, 0.00019904666987713426, -0.045080311596393585, -0.03144313022494316, 0.02787419594824314, -0.0673915222287178, -0.031729526817798615, -0.06798352301120758, 0.017036957666277885, -0.02940949983894825, -0.014211950823664665, -0.008830975741147995, 0.08597767353057861, 0.017432915046811104, -0.012646089307963848, 0.020978843793272972, 0.003575211623683572, 0.0013520659413188696, -0.022047454491257668, -0.1016850620508194, 0.005866488441824913, 0.0015209427801892161, -0.013233435340225697, 0.004765654914081097, 0.0593886561691761, 0.044718921184539795, -0.0639457181096077, -0.012599420733749866, -0.0011459736851975322, -0.0073395357467234135, -0.007063543889671564, 0.029636694118380547, -0.0276863444596529, -0.013754498213529587, 0.08368287235498428, -0.009373631328344345, -0.03531476482748985, 0.03562960401177406, 0.05132688209414482, -0.010807822458446026, 0.002624229062348604, -0.010845839977264404, -0.036154672503471375, 0.012140240520238876, -0.032623615115880966, 0.027857745066285133, -0.010575907304883003, 0.008222139440476894, 0.0292279664427042, -0.02779592201113701, -0.054679229855537415, 0.07200814038515091, 0.015371525660157204, -0.04920082911849022, 0.009434334002435207, -0.05084908381104469, -0.025138117372989655, 0.057179417461156845, 0.014391494914889336, -0.22943562269210815, 0.038923583924770355, 0.08922106772661209, 0.03030293434858322, -0.0015085892518982291, 0.07143019884824753, -0.011821565218269825, -0.053714603185653687, 0.003193772165104747, 0.03178679943084717, 0.026965487748384476, -0.008296005427837372, 0.011449933983385563, -0.003158924402669072, 0.007700502872467041, 0.006834979169070721, 0.06233280897140503, -0.009494002908468246, 0.03428245708346367, -0.008465236984193325, 0.0029417129699140787, -0.006274557206779718, 0.1310640126466751, 0.011535970494151115, 0.02759828232228756, -0.00729209091514349, -0.002212241291999817, -0.012377669103443623, 0.03960787504911423, -0.004497806075960398, 0.03399914130568504, -0.03467676416039467, 0.010567668825387955, 0.03130409121513367, 0.001352565479464829, -0.08245406299829483, -0.01198163628578186, 0.042011599987745285, 0.01702391356229782, 0.022391829639673233, 0.03664936125278473, -0.0061528608202934265, -0.011911449953913689, 0.03138373792171478, 0.09381707012653351, 0.013591796159744263, 0.01893790066242218, -0.03195112198591232, -0.09251082688570023, -0.020600277930498123, -0.021395836025476456, -0.021799864247441292, 0.014214921742677689, -0.0077268872410058975, 0.04239901155233383, 0.05656103417277336, 0.042527295649051666, -0.021157635375857353, 0.02246878482401371, -0.00026199346757493913, -0.010402670130133629, 0.004656541161239147, 0.08600807189941406, 0.023514438420534134, 0.052889153361320496 ]
[ -0.005697875749319792, 0.013601592741906643, 0.006329514551907778, 0.017798054963350296, -0.007374988868832588, 0.03446795046329498, -0.030817247927188873, 0.016852738335728645, 0.018526755273342133, -0.012394486926496029, -0.0062353466637432575, 0.025112677365541458, 0.014729482121765614, 0.007704786956310272, 0.016109807416796684, -0.021813826635479927, 0.012102436274290085, 0.0032582958228886127, 0.05903095752000809, 0.005733055528253317, -0.012148081324994564, -0.0022778960410505533, -0.01563407853245735, -0.02737109549343586, -0.04793272539973259, 0.0008911055629141629, -0.0380801260471344, -0.0027319889049977064, 0.026808708906173706, -0.09972462058067322, -0.013427984900772572, -0.0026946624275296926, 0.008377594873309135, 0.011472105979919434, -0.006663853768259287, -0.016517827287316322, -0.02508806250989437, 0.045703642070293427, 0.011338368989527225, 0.01588749699294567, -0.007507118862122297, -0.005785890854895115, -0.02064184844493866, -0.011138832196593285, 0.02730792574584484, -0.015140392817556858, -0.00831203069537878, -0.031459689140319824, -0.02686089649796486, 0.0038298526778817177, -0.042615849524736404, -0.014623145572841167, 0.010466533713042736, 0.006540599279105663, 0.025519100949168205, -0.019962672144174576, 0.01684493012726307, -0.010110856033861637, 0.025519615039229393, -0.003563907230272889, -0.011259549297392368, -0.016719961538910866, -0.0402521975338459, -0.022258169949054718, -0.03342802822589874, -0.02468930371105671, 0.022168980911374092, 0.02482416480779648, -0.0070371669717133045, 0.004096813499927521, -0.00885082222521305, 0.004139438271522522, 0.011708257719874382, -0.034971464425325394, -0.012214724905788898, 0.010067022405564785, -0.004070844501256943, -0.02802674099802971, 0.0005118903354741633, -0.009024743922054768, 0.007726498879492283, 0.021252382546663284, 0.020515654236078262, 0.00732019217684865, 0.004147436935454607, -0.010196230374276638, 0.007681889459490776, 0.004631326533854008, -0.002816906664520502, 0.015073615126311779, -0.016191191971302032, 0.004473726265132427, -0.006830567494034767, 0.008148234337568283, -0.08608728647232056, -0.00681791827082634, -0.05289628729224205, -0.008688046596944332, -0.015590355731546879, 0.8591697812080383, -0.009453396312892437, 0.02183305285871029, 0.026335716247558594, -0.00278690317645669, -0.01207544282078743, -0.0077315764501690865, 0.011396531015634537, 0.010395788587629795, -0.016682378947734833, -0.009800741448998451, 0.004648986738175154, 0.01011169608682394, 0.015622598119080067, -0.011436639353632927, 0.03810872510075569, 0.020289165899157524, -0.0030403805430978537, -0.009588273242115974, -0.019938481971621513, -0.001344771240837872, 0.08232327550649643, -0.010241218842566013, 0.029468590393662453, 0.028766125440597534, 0.01123118307441473, -0.15769469738006592, 0.02650400437414646, -9.344363855147333e-33, 0.05357915163040161, -0.01868201047182083, -0.016089437529444695, -0.016593704000115395, -0.013607134111225605, -0.004369837697595358, 0.01910599134862423, 0.01818646490573883, 0.008026663213968277, -0.03274836763739586, 0.01963081583380699, -0.01855664886534214, 0.02186114527285099, -0.037554025650024414, 0.016461914405226707, -0.03261738270521164, -0.027775170281529427, 0.07631690800189972, -0.025272823870182037, 0.026641910895705223, 0.02494320459663868, 0.026998132467269897, -0.013346563093364239, -0.00885846558958292, 0.010804226621985435, 0.024622168391942978, 0.015636911615729332, -0.01772867888212204, 0.007857167162001133, -0.052979856729507446, -0.011673351749777794, 0.013446548022329807, -0.0032640122808516026, 0.0008936838712543249, 0.013384352438151836, -0.04123639687895775, -0.02617776393890381, -0.007239263504743576, 0.011410967446863651, -0.03351541981101036, -0.04994849115610123, 0.026318641379475594, -0.019181443378329277, -0.013936087489128113, -0.007729575969278812, -0.006373350974172354, 0.02700905315577984, -0.016616662964224815, -0.00022347550839185715, 0.005438716616481543, 0.02577536180615425, 0.019311407580971718, -0.0008051525219343603, -0.00033489163615740836, -0.0031638150103390217, 0.0028750526253134012, -0.00892185140401125, 0.015033883973956108, 0.02294859290122986, -0.024172263219952583, 0.0592731349170208, -0.008571925573050976, -0.03424887731671333, 0.01699076220393181, -0.007414212916046381, -0.004350312519818544, -0.008076776750385761, 0.011895841918885708, 0.03401436284184456, -0.019469423219561577, -0.06575564295053482, -0.0023550516925752163, 0.01778779923915863, 0.01111647579818964, -0.0013745451578870416, 0.0040912446565926075, 0.0015532687539234757, 0.05316564813256264, -0.044574227184057236, 0.017829781398177147, -0.005956618580967188, -0.001886353944428265, -0.0504312738776207, -0.028102390468120575, -0.002700681332498789, 0.02711736224591732, 0.016937844455242157, 0.015328321605920792, -0.05200667306780815, 0.002044533146545291, 0.05045417696237564, 0.0016008110251277685, -0.013205362483859062, 0.021308396011590958, -0.007477383129298687, 9.397150163654978e-33, -0.001669222372584045, -0.003543606260791421, -0.04097909480333328, -0.020728863775730133, 0.04605063050985336, -0.02685707062482834, -0.011598443612456322, 0.003850169014185667, -0.07070941478013992, 0.008187323808670044, -0.024210819974541664, -0.0052276416681706905, -0.03783751651644707, 0.03176913037896156, 0.022083284333348274, -0.012318503111600876, 0.024894297122955322, -0.009313743561506271, -0.025095507502555847, -0.0014794670278206468, 0.03651292622089386, 0.021883627399802208, -0.010582661256194115, 0.013927417807281017, 0.017309781163930893, 0.06656894832849503, 0.021351978182792664, 0.010634916834533215, 0.023242929950356483, -0.021356992423534393, -0.011973900720477104, -0.0023352925200015306, -0.0060071926563978195, -0.03325001895427704, -0.0008048252784647048, 0.014998333528637886, -0.01408718153834343, -0.03871195390820503, -0.01720670983195305, -0.01268927101045847, 0.01602582260966301, 0.027727430686354637, 0.0052980645559728146, 0.0338791124522686, 0.02212069369852543, 0.035663578659296036, 0.017256561666727066, -0.008062198758125305, 0.011966795660555363, 0.003294037189334631, -0.015024185180664062, 0.008305530995130539, 0.01613583415746689, -0.006432296242564917, 0.013551456853747368, -0.04931319132447243, -0.010327096097171307, -0.05420961603522301, 0.0006942974287085235, -0.012946542352437973, 0.016057852655649185, 0.02433438040316105, -0.021379420533776283, -0.0199394803494215, -0.028808437287807465, 0.01020136196166277, 0.0020624143071472645, -0.004375027492642403, -0.052986908704042435, 0.02767539583146572, -0.015092365443706512, 0.012909079901874065, -0.01621214486658573, 0.03877808153629303, 0.03805990889668465, -0.021998079493641853, -0.021459510549902916, 0.023421134799718857, -0.028134139254689217, 0.01815519668161869, -0.013903159648180008, 0.003291179658845067, 0.00933889765292406, -0.008794973604381084, -0.011777402833104134, 0.037793777883052826, -0.002693030284717679, 0.018883563578128815, 0.010106081143021584, -0.017228061333298683, -0.0033877433743327856, -0.05657585337758064, 0.016775520518422127, 0.0014652364188805223, -0.010301330126821995, -1.456667231281017e-8, 0.004230341874063015, 0.008602979592978954, -0.024353981018066406, 0.004507790319621563, -0.022470621392130852, -0.03101287968456745, -0.02925661765038967, 0.00464219506829977, -0.016763195395469666, 0.009810014627873898, 0.06290745735168457, -0.020195968449115753, 0.014011678285896778, -0.0026258244179189205, 0.03357427194714546, -0.032236650586128235, -0.04462417587637901, -0.008699080906808376, 0.033756036311388016, 0.012225979007780552, 0.032850898802280426, 0.024665966629981995, -0.02797437086701393, 0.050196997821331024, 0.01683095097541809, 0.034215256571769714, -0.013377202674746513, -0.08986988663673401, -0.00871956069022417, -0.013397343456745148, 0.04643610119819641, -0.004571964498609304, -0.007943404838442802, 0.03047913871705532, -0.007846572436392307, -0.0275652464479208, 0.03766699880361557, -0.0009125504875555634, 0.005685826297849417, -0.000820406770799309, -0.0017774412408471107, -0.029378890991210938, 0.00563669903203845, -0.025027379393577576, -0.008572332561016083, 0.030372535809874535, -0.03511373698711395, -0.014343847520649433, -0.0008553772931918502, -0.035149622708559036, -0.006927985232323408, -0.016373148187994957, 0.027561554685235023, 0.04229366406798363, 0.017595555633306503, 0.0011731419945135713, 0.03121359273791313, 0.005735962651669979, -0.016437791287899017, -0.009025787934660912, 0.049889370799064636, 0.02652791328728199, 0.0001603045966476202, -0.007888036780059338 ]
focused-retrospectives-things-to-watch-for
https://markhneedham.com/blog/2012/01/16/focused-retrospectives-things-to-watch-for
false
2012-01-10 09:53:48
Learning Android: Robolectric - Testing details got saved to SharedPreferences
[ "android" ]
[ "Android" ]
I've been writing some tests around an app I've been working on using the http://pivotal.github.com/robolectric/[Robolectric] testing framework and one thing I wanted to do was check that an OAuth token/secret were being saved to the http://stackoverflow.com/questions/2614719/how-do-i-get-the-sharedpreferences-from-a-preferenceactivity-in-android[user's preferences]. The code that saved the preferences looked like this: [source,java] ---- public class AuthoriseWithTwitterActivity extends RoboActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(intent); ... save("fakeToken", "fakeSecret"); ... } private void save(String userKey, String userSecret) { SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(getBaseContext()); SharedPreferences.Editor editor = settings.edit(); editor.putString("user_key", userKey); editor.putString("user_secret", userSecret); editor.commit(); } } ---- This is an outline of what I wanted to do in the test: [source,java] ---- @RunWith(InjectedTestRunner.class) public class AwesomeTest { @Test public void shouldSaveOAuthDetails() { activity.onCreate(null); ShadowIntent shadowIntent = shadowOf(activity).getNextStartedActivity(); // Get SharedPreferences and check 'fakeToken' and 'fakeSecret' are stored. } } ---- In Robolectric it's possible to replace classes with shadow versions of themselves which get used in the test so I first created a shadow version of +++<cite>+++PreferenceManager+++</cite>+++: [source,java] ---- @Implements(PreferenceManager.class) public class ShadowPreferenceManager { private static SharedPreferences preferences = new TestSharedPreferences(new HashMap<String, Map<String, Object>>(), "__default__", Context.MODE_PRIVATE); @Implementation public static SharedPreferences getDefaultSharedPreferences(Context context) { return preferences; } public static void reset() { preferences = new TestSharedPreferences(new HashMap<String, Map<String, Object>>(), "__default__", Context.MODE_PRIVATE); } } ---- I had to make +++<cite>+++preferences+++</cite>+++ a static variable here so that it'll retain state. It's a bit hacky but it'll do for now. Then to hook it up I had to change my test to read like this: [source,java] ---- @RunWith(InjectedTestRunner.class) public class AwesomeTest { @Test public void shouldSaveOAuthDetails() { Robolectric.bindShadowClass(ShadowPreferenceManager.class); activity.onCreate(null); ShadowIntent shadowIntent = shadowOf(activity).getNextStartedActivity(); SharedPreferences defaultSharedPreferences = PreferenceManager.getDefaultSharedPreferences(activity); assertThat(defaultSharedPreferences.getString("user_key", ""), equalTo("fakeToken")); assertThat(defaultSharedPreferences.getString("user_secret", ""), equalTo("fakeSecret")); ShadowPreferenceManager.reset(); } } ---- The +++<cite>+++InjectedTestRunner+++</cite>+++ class used here is pretty much like https://github.com/pivotal/RobolectricSample/blob/master/src/test/java/com/pivotallabs/injected/InjectedTestRunner.java[the one in the Robolectric code base]. There is actually a +++<cite>+++ShadowPreferenceManager+++</cite>+++ in the Robolectric library but it doesn't seem to store preferences anywhere as far as I can tell so it wasn't quite what I wanted.
null
null
[ 0.04625328630208969, -0.008294130675494671, -0.003921430092304945, 0.06001598760485649, 0.10132794827222824, 0.0007346560014411807, 0.033970415592193604, 0.014905193820595741, -0.008089285343885422, -0.021425362676382065, -0.021763509139418602, 0.004975271876901388, -0.06889590620994568, -0.010923955589532852, -0.04399380460381508, 0.050886452198028564, 0.05547941103577614, -0.0033091476652771235, 0.027415772899985313, -0.003332749707624316, 0.027356445789337158, 0.05840696766972542, 0.005986569449305534, 0.043616022914648056, 0.014335494488477707, 0.031645096838474274, 0.04628976806998253, 0.004400340840220451, -0.06146463379263878, -0.010582387447357178, 0.03480590134859085, 0.0075203366577625275, 0.02811555564403534, -0.0015818369574844837, 0.0102243572473526, -0.009844725020229816, -0.039219122380018234, 0.001257183263078332, 0.01036983821541071, 0.0559597946703434, -0.06033771112561226, 0.02138199657201767, -0.031411949545145035, -0.018733134493231773, -0.03261541575193405, 0.017785489559173584, -0.0414457842707634, 0.03956736624240875, -0.023507671430706978, 0.0008246570359915495, -0.053152769804000854, 0.03279992565512657, -0.04637325927615166, -0.013160672038793564, 0.02166622132062912, 0.05724301189184189, 0.032556887716054916, -0.08930744975805283, 0.02050000987946987, -0.041359517723321915, -0.002341574989259243, -0.002298047998920083, 0.00029638715204782784, 0.035446830093860626, 0.0038249215576797724, -0.004127257503569126, 0.027801018208265305, 0.03826184570789337, -0.011261716485023499, -0.013211305253207684, -0.006691374816000462, -0.007502280175685883, -0.012595521286129951, -0.0003829108609352261, -0.005477845668792725, -0.02830962836742401, 0.012280036695301533, 0.08290007710456848, 0.010363186709582806, 0.0493326261639595, -0.016823988407850266, -0.01461983472108841, 0.01988823339343071, 0.029704224318265915, -0.023226656019687653, -0.03478023037314415, -0.030115200206637383, 0.0007061627693474293, -0.018529919907450676, 0.04856880381703377, -0.01568857580423355, -0.04353400692343712, 0.01659749634563923, 0.03958703204989433, -0.012747506611049175, 0.00809771753847599, 0.025887509807944298, -0.019839605316519737, -0.013830182142555714, 0.005468267016112804, -0.015149783343076706, -0.007045348174870014, 0.00790640152990818, 0.014868728816509247, -0.07297541201114655, -0.00582530815154314, -0.029424848034977913, -0.046860553324222565, -0.013070732355117798, 0.014178208075463772, -0.03411908075213432, 0.04851683974266052, -0.001152633922174573, -0.008835051208734512, -0.07101770490407944, 0.06170341372489929, 0.023217227309942245, -0.016768736764788628, -0.007312447763979435, 0.0246883612126112, 0.0366533137857914, 0.04388456046581268, 0.015132835134863853, 0.07533880323171616, 0.015308641828596592, 0.06803911179304123, -0.04110093042254448, 0.03963587060570717, -0.013236219063401222, -0.05471627041697502, -0.007486036513000727, 0.04060877859592438, 0.004847927484661341, 0.01635226234793663, -0.013526221737265587, 0.0007661274285055697, -0.011189890094101429, -0.0003650709113571793, 0.05574211850762367, 0.029146766290068626, -0.019085295498371124, -0.028996441513299942, -0.0007136983913369477, -0.02586878463625908, -0.012758882716298103, 0.008286664262413979, 0.025378068909049034, -0.013153975829482079, -0.045834168791770935, 0.06285169720649719, -0.004693163558840752, 0.027501005679368973, 0.06123623251914978, -0.04769328981637955, -0.001273119356483221, 0.06730381399393082, 0.013469366356730461, 0.002598595106974244, 0.00728280283510685, 0.013547366484999657, 0.0367567278444767, 0.016660533845424652, -0.009313656948506832, 0.04406469315290451, 0.018009057268500328, -0.009166582487523556, 0.011076880618929863, 0.03997143357992172, 0.011626317165791988, 0.013077299110591412, -0.06929591298103333, -0.07174116373062134, 0.05728969722986221, -0.050783660262823105, -0.014449936337769032, 0.04613674804568291, 0.046436406672000885, 0.0036978693678975105, 0.03090887889266014, 0.004255708307027817, -0.07280613481998444, 0.029442286118865013, 0.01992638409137726, 0.004526718053966761, 0.010180281475186348, -0.0007869459223002195, 0.055010147392749786, 0.025975722819566727, -0.02262232080101967, 0.025339754298329353, -0.0729580894112587, -0.08295661211013794, 0.009299271740019321, -0.020107902586460114, 0.08378861099481583, -0.02735588513314724, 0.002165168058127165, 0.06939768046140671, 0.04289955273270607, 0.03344946727156639, 0.012188063934445381, -0.022483257576823235, 0.0008246115176007152, -0.01212410070002079, -0.045879438519477844, 0.013336031697690487, 0.05631095916032791, -0.015563606284558773, -0.024266952648758888, 0.008686049841344357, -0.01692867837846279, 0.02234664559364319, 0.04254744574427605, -0.027463186532258987, 0.03008374199271202, 0.017599711194634438, 0.009500528685748577, -0.0174407996237278, 0.08088560402393341, -0.05666634067893028, 0.017324214801192284, -0.0015746807912364602, -0.009432623162865639, -0.015409305691719055, -0.005047372076660395, 0.11078459024429321, 0.03956006094813347, -0.04554679989814758, -0.05938608944416046, 0.031697191298007965, -0.020604277029633522, -0.06620113551616669, -0.0015426627360284328, -0.024092476814985275, 0.01595473103225231, -0.008087747730314732, -0.029443496838212013, -0.018916819244623184, 0.02040434628725052, -0.052628692239522934, 0.018774211406707764, 0.07345383614301682, -0.029098790138959885, 0.05480651929974556, -0.015704989433288574, -0.017131386324763298, -0.01410924643278122, -0.03261097893118858, -0.020241297781467438, -0.002103525912389159, 0.027438512071967125, -0.029978081583976746, 0.058209653943777084, -0.03570037707686424, -0.014395218342542648, -0.01807301864027977, -0.015420653857290745, 0.0012087301583960652, 0.01353304460644722, 0.0741029679775238, 0.0022554020397365093, 0.04299154505133629, -0.020454049110412598, -0.003248294349759817, -0.028467800468206406, -0.04051448777318001, -0.012273646891117096, -0.03421098366379738, -0.016897186636924744, 0.05002998560667038, -0.000845337170176208, 0.01533172745257616, 0.03592643886804581, 0.01119142770767212, 0.01588057354092598, 0.023255378007888794, 0.004405059386044741, 0.038355570286512375, -0.01270996406674385, -0.04519326984882355, -0.039946749806404114, 0.03371017798781395, -0.03824643790721893, -0.056686725467443466, 0.015109512023627758, -0.09672145545482635, 0.05601957440376282, -0.04746958613395691, -0.03283122926950455, 0.025311820209026337, 0.0016125885304063559, 0.02129638008773327, 0.012999400496482849, 0.030180206522345543, 0.06191602349281311, -0.020728377625346184, 0.021625496447086334, 0.05012144148349762, -0.00012028060882585123, 0.03050605021417141, 0.004346215166151524, -0.022478949278593063, 0.02487701177597046, -0.023206137120723724, 0.016508279368281364, -0.03953428566455841, 0.03210217505693436, -0.03167451545596123, -0.2567662298679352, 0.018679402768611908, -0.017543761059641838, -0.029166748747229576, 0.01402224600315094, 0.01156902126967907, 0.01919429935514927, -0.05701715126633644, 0.0017800694331526756, 0.060945700854063034, -0.018073078244924545, -0.03535475581884384, -0.0019246761221438646, 0.04913286864757538, -0.03521527722477913, -0.010376772843301296, -0.016738710924983025, -0.034924689680337906, 0.020587267354130745, 0.03420679271221161, -0.013981481082737446, -0.07549840211868286, 0.014096609316766262, 0.03162536397576332, 0.051166173070669174, 0.05327276885509491, -0.09839259088039398, 0.04007226601243019, -0.02211342379450798, -0.006556865759193897, 0.014578381553292274, -0.020643897354602814, -0.011183318682014942, -0.015810348093509674, 0.002244638977572322, 0.0002029489551205188, 0.01245632953941822, 0.008460559882223606, -0.035300299525260925, 0.01494953129440546, -0.017121998593211174, -0.052153680473566055, -0.04105766490101814, 0.018025631085038185, 0.06858434528112411, -0.0011041909456253052, -0.07243791967630386, -0.0021541814785450697, -0.029501190409064293, 0.08415961265563965, -0.04422707110643387, -0.0241085272282362, -0.006894679274410009, 0.021491944789886475, -0.021904384717345238, -0.031156256794929504, 0.035584792494773865, -0.021430883556604385, -0.03463568165898323, -0.03790440782904625, -0.014012913219630718, -0.03480853885412216, 0.0051159849390387535, -0.05316738784313202, -0.013028311543166637, -0.076288141310215, -0.02875947393476963, -0.005705072544515133, 0.06456797569990158, 0.012295356020331383, -0.06078211963176727, -0.01923450641334057, -0.01811419054865837, -0.11915726959705353, -0.01750241219997406, -0.044910330325365067, -0.03730716183781624, -0.02652737684547901, -0.032561417669057846, 0.03459285572171211, -0.05132465064525604, 0.002439814619719982, 0.02936101146042347, 0.018008513376116753, -0.002948326990008354, 0.01358562707901001, 0.02423887513577938, -0.012539507821202278, 0.005972959566861391, -0.022969691082835197, 0.08219549059867859, -0.014720509760081768, -0.03214503079652786, -0.05339660122990608, 0.018630830571055412, 0.041230637580156326, 0.04333452507853508, 0.020287148654460907, -0.006905302871018648, 0.03537926450371742, 0.007684228476136923, -0.04656738042831421, -0.01756584458053112, -0.04104128107428551, 0.0038422076031565666, -0.013349060900509357, -0.0797216147184372, 0.0067670997232198715, -0.0010593670886009932, 0.02219027280807495, -0.029646897688508034, -0.015146881341934204, -0.004617004189640284, -0.02163108065724373, -0.06541458517313004, -0.031036224216222763, 0.03908499330282211, 0.022679975256323814, 0.010990293696522713, -0.005626529920846224, -0.0668775737285614, 0.02205146662890911, 0.002080292906612158, -0.018492555245757103, -0.03713356330990791, -0.03956985846161842, -0.03832785785198212, -0.014723915606737137, 0.0006213128217495978, 0.01345140766352415, 0.006227818783372641, 0.03441280126571655, 0.015848757699131966, -0.014460697770118713, 0.009413259103894234, 0.013152886182069778, -0.01952003501355648, -0.04232855886220932, 0.0031429326627403498, -0.0022973029408603907, -0.017957625910639763, -0.012544621713459492, 0.015039646998047829, 0.007906811311841011, 0.06251246482133865, -0.0507819727063179, 0.0715271458029747, -0.010306690819561481, -0.03278511017560959, 0.018459489569067955, 0.055096399039030075, -0.0806058943271637, 0.02797509729862213, -0.04773452505469322, -0.016386736184358597, -0.029964543879032135, 0.010273252613842487, -0.010312049649655819, -0.03821850195527077, -0.013016785494983196, 0.02697417140007019, -0.038041044026613235, 0.006783214397728443, -0.018894359469413757, 0.015095566399395466, 0.04251177981495857, -0.026716211810708046, 0.044760167598724365, -0.008094441145658493, -0.03283098340034485, -0.0009119485039263964, -0.026130327954888344, -0.01161621417850256, -0.0009612339781597257, -0.00447840616106987, 0.00133725896012038, 0.019102567806839943, -0.0046883332543075085, 0.009108629077672958, -0.00959209818392992, -0.0068649426102638245, -0.004076442215591669, 0.01773681305348873, 0.0001388478558510542, 0.06251712888479233, 0.013499601744115353, -0.0178036130964756, -0.020665092393755913, -0.019074272364377975, -0.007231650408357382, -0.04854591190814972, 0.02848299778997898, -0.012421689927577972, -0.00956531148403883, -0.02639126591384411, -0.0805853083729744, 0.011054067872464657, 0.00491769565269351, 0.02385755628347397, 0.0014177241828292608, -0.010511569678783417, 0.004330822732299566, -0.02978053130209446, 0.03401642665266991, 0.05737176537513733, -0.054956402629613876, 0.0072542829439044, 0.012510640546679497, 0.011134682223200798, 0.004051092080771923, -0.018707413226366043, -0.0616912841796875, -0.014790275134146214, -0.022527718916535378, -0.01463609654456377, -0.038439519703388214, -0.03423694148659706, -0.02555909939110279, -0.02717832662165165, -0.0054741548374295235, -0.004559349734336138, 0.0009203613153658807, -0.008512262254953384, 0.004729163832962513, -0.018733680248260498, -0.01226167380809784, -0.015763482078909874, 0.03490240126848221, 0.02292661741375923, -0.017296968027949333, 0.012663955800235271, -0.0060895755887031555, 0.06464745104312897, 0.02089730277657509, -0.020993158221244812, -0.018533477559685707, -0.03704243153333664, 0.014148718677461147, 0.026237264275550842, 0.034661270678043365, 0.021011602133512497, 0.013186809606850147, -0.05935829505324364, -0.025100979954004288, -0.03558945283293724, 0.020454077050089836, -0.007936629466712475, -0.011466681957244873, 0.03682627156376839, 0.06745225191116333, 0.04884439334273338, 0.05555585026741028, -0.022111380472779274, 0.02404036931693554, 0.0722196027636528, -0.07094545662403107, -0.0227328073233366, -0.02045229822397232, -0.06271273642778397, 0.02169826626777649, 0.03945568576455116, 0.027141479775309563, -0.02064848504960537, 0.022697564214468002, 0.02347370609641075, -0.00032066123094409704, 0.024760862812399864, -0.024478135630488396, 0.01359616219997406, -0.06071065366268158, 0.042853839695453644, -0.0589616522192955, 0.02981100045144558, 0.05668235197663307, -0.033853720873594284, 0.004721662495285273, 0.0025969287380576134, -0.05566664785146713, 0.036287855356931686, -0.07035928964614868, -0.016764074563980103, 0.052870478481054306, -0.01871606893837452, -0.032548900693655014, 0.027784908190369606, -0.06804310530424118, 0.03372032567858696, 0.016079893335700035, -0.05307738110423088, -0.03979068249464035, 0.010013783350586891, 0.058535896241664886, 0.035486407577991486, 0.006332880817353725, -0.023186158388853073, 0.014856131747364998, 0.06996435672044754, 0.02258892171084881, 0.026071736589074135, 0.027978328987956047, -0.004772332962602377, 0.03367164731025696, 0.041525717824697495, 0.007919215597212315, -0.007822858169674873, 0.036416132003068924, 0.008598120883107185, -0.07249320298433304, 0.035957083106040955, 0.004855528939515352, -0.01847756840288639, -0.04104913771152496, 0.04079918563365936, 0.020979659631848335, -0.043787531554698944, -0.019973255693912506, 0.029335230588912964, -0.06396953016519547, -0.06173272430896759, -0.027134111151099205, -0.00474008172750473, -0.030641118064522743, 0.0867958664894104, -0.01011635735630989, 0.012231631204485893, 0.07454310357570648, -0.007365101482719183, 0.0019471195992082357, -0.00048583897296339273, 0.06833691895008087, 0.07400084286928177, 0.03331717848777771, 0.008000519126653671, 0.05246121808886528, 0.012666906230151653, -0.04138944298028946, 0.015818532556295395, -0.0012346754083409905, -0.023445166647434235, 0.008143402636051178, -0.005121603142470121, 0.08214477449655533, -0.007095258217304945, 0.05072092264890671, -0.029196878895163536, 0.011605744250118732, 0.010726085864007473, 0.055504847317934036, 0.012762369588017464, 0.04437367618083954, -0.00845804437994957, 0.002088977489620447, -0.030750473961234093, -0.02116203121840954, 0.02821444720029831, -0.05035863071680069, -0.014479801058769226, 0.04763391241431236, -0.024004731327295303, 0.017883574590086937, 0.0031657551880925894, 0.027199838310480118, 0.069526307284832, -0.018838437274098396, 0.0021419485565274954, 0.008766502141952515, 0.025329964235424995, 0.03100552037358284, 0.011282640509307384, -0.019662482663989067, -0.0047387173399329185, 0.01591763272881508, -0.03950392082333565, -0.024486487731337547, -0.03221471607685089, -0.017510879784822464, 0.04147699847817421, -0.012003997340798378, 0.05069807544350624, 0.03334135562181473, 0.009282668121159077, -0.05991421639919281, -0.038247719407081604, -0.05428711324930191, -0.038368940353393555, -0.043999653309583664, -0.02267155423760414, 0.013422220014035702, 0.013183452188968658, -0.08561484515666962, 0.008636652491986752, -0.05653313174843788, 0.031288567930459976, 0.035281356424093246, -0.03586312010884285, -0.01657196320593357, 0.016032299026846886, -0.003943935502320528, 0.006701000966131687, -0.028373926877975464, 0.0617067888379097, 0.028541896492242813, 0.002298923907801509, -0.020717794075608253, -0.014803054742515087, 0.04368717968463898, -0.021938901394605637, 0.008489750325679779, -0.06725814938545227, 0.01511945016682148, 0.02256619744002819, -0.031115690246224403, -0.05611095950007439, 0.016050830483436584, 0.03157477080821991, 0.005143744871020317, 0.07624133676290512, -0.024679502472281456, -0.0000616083198110573, -0.00421737739816308, -0.03323713317513466, 0.03786070644855499, 0.014079760760068893, 0.05554959177970886, -0.019840290769934654, 0.0783660039305687, 0.029268302023410797, -0.04487184062600136, -0.03150291368365288, 0.0035935435444116592, -0.005384405609220266, -0.039919331669807434, -0.039458319544792175, -0.018679849803447723, -0.05370485782623291, -0.07240854948759079, 0.010567798279225826, 0.03291820362210274, -0.03840119019150734, -0.03165978565812111, -0.033811233937740326, 0.02242414839565754, -0.00962203647941351, 0.04502527788281441, -0.03679680451750755, 0.03210284560918808, -0.05786581337451935, -0.007701265159994364, -0.010140486992895603, -0.0025908993557095528, -0.01596860960125923, 0.018999746069312096, 0.04419173300266266, -0.027010897174477577, -0.0223193671554327, 0.03024943917989731, 0.032494284212589264, 0.0326068289577961, -0.022180765867233276, -0.029044311493635178 ]
[ -0.08385969698429108, 0.013033096678555012, -0.010650514625012875, -0.057360269129276276, 0.0025894579011946917, -0.014066129922866821, 0.05429678410291672, 0.02743338979780674, 0.004518547561019659, -0.010468700900673866, 0.0034223399125039577, -0.014637225307524204, 0.037926796823740005, -0.00046828246559016407, 0.09099055081605911, -0.040817711502313614, -0.01293550617992878, -0.038480568677186966, -0.015917208045721054, 0.035975970327854156, 0.04467795416712761, -0.03186878561973572, -0.003147806040942669, -0.03581688180565834, 0.023093154653906822, 0.04468872770667076, 0.04673738032579422, -0.044704437255859375, 0.01713973842561245, -0.19503208994865417, 0.04316754639148712, 0.0021602713968604803, 0.024105627089738846, -0.024859674274921417, -0.006555004511028528, 0.045053884387016296, -0.002561330096796155, -0.001101768109947443, -0.005362460855394602, 0.03491184487938881, -0.012418845668435097, 0.009573002345860004, -0.04849854111671448, -0.024548521265387535, 0.032124605029821396, -0.0024618518073111773, 0.02381560392677784, -0.030658727511763573, -0.018654314801096916, -0.020950496196746826, -0.01271075289696455, -0.005523974541574717, 0.039278898388147354, -0.010122622363269329, -0.023320700973272324, -0.023108793422579765, 0.04137907922267914, 0.08783574402332306, 0.03499118611216545, 0.06262261420488358, -0.013359477743506432, 0.006713730748742819, -0.12108886986970901, 0.10206698626279831, -0.007019498385488987, 0.030782293528318405, -0.028153954073786736, -0.0436394102871418, 0.013670754618942738, 0.05459652841091156, 0.026695849373936653, 0.01568380557000637, -0.006453820038586855, 0.06315891444683075, -0.0003425278118811548, 0.01780896633863449, 0.003287391271442175, -0.011978039517998695, 0.01639309525489807, -0.03266530483961105, -0.09236635267734528, -0.011195442639291286, 0.012927675619721413, 0.021829906851053238, -0.04139288514852524, 0.04374802112579346, 0.01787460781633854, 0.03536772355437279, 0.018265241757035255, 0.047927435487508774, 0.036159999668598175, 0.0067726923152804375, 0.04648928344249725, 0.003090199315920472, -0.1036323606967926, 0.006681783124804497, -0.02566436119377613, -0.011244440451264381, -0.07343827933073044, 0.45381125807762146, -0.033137768507003784, -0.027247846126556396, 0.01872163638472557, 0.02783128060400486, -0.0015490737278014421, -0.022285787388682365, 0.011935641057789326, -0.05631188303232193, 0.009962656535208225, -0.0011769334087148309, 0.015562525019049644, -0.005195449106395245, 0.04685210436582565, -0.051146309822797775, 0.02456812933087349, 0.04647272825241089, 0.046331923454999924, 0.0257936492562294, -0.005348659586161375, 0.017394017428159714, -0.018880311399698257, 0.008219517767429352, 0.0034441263414919376, -0.01858028769493103, 0.014945185743272305, -0.02857433259487152, 0.030888307839632034, 0.041342973709106445, 0.002301599597558379, 0.02121461182832718, 0.020615246146917343, -0.05146471783518791, -0.0956907868385315, -0.011844352819025517, 0.013535276986658573, 0.043990347534418106, 0.015469050034880638, -0.039787374436855316, 0.0042023127898573875, 0.0175936296582222, 0.00990187656134367, -0.008378875441849232, 0.0621928945183754, -0.028291553258895874, -0.04025593027472496, 0.10439667850732803, -0.023419318720698357, -0.012738528661429882, -0.026990147307515144, -0.03225865215063095, 0.009963135235011578, 0.03614100441336632, 0.019096747040748596, -0.024999022483825684, 0.02629714086651802, 0.004060752224177122, 0.07101751863956451, -0.0033858183305710554, -0.06721369922161102, 0.007751156575977802, -0.0029838925693184137, -0.004422446247190237, -0.03481427580118179, 0.05832803249359131, 0.058052532374858856, -0.08973820507526398, -0.019313495606184006, 0.02238663285970688, -0.014729396440088749, -0.03437863662838936, -0.006302413996309042, 0.016739139333367348, -0.02186519280076027, -0.010546487756073475, 0.009421512484550476, -0.006253364961594343, -0.037388820201158524, -0.009056180715560913, 0.017627831548452377, 0.04005008563399315, -0.021142514422535896, -0.0061225625686347485, -0.03618291765451431, -0.03577219694852829, -0.0368385910987854, -0.06834916025400162, -0.0660938173532486, -0.012827199883759022, 0.011019297875463963, -0.003519609337672591, -0.031193116679787636, -0.01565544679760933, -0.07785608619451523, 0.09263645857572556, -0.029744837433099747, 0.003914128988981247, 0.0011829764116555452, -0.06061302125453949, -0.02533242106437683, -0.04014534503221512, 0.0077070980332791805, 0.04378392919898033, 0.001586888451129198, 0.004538494162261486, -0.04882150888442993, 0.060477115213871, 0.0215764082968235, -0.03602141514420509, 0.07433214038610458, -0.0046117184683680534, -0.053431522101163864, -0.014038627035915852, -0.014521174132823944, 0.0355461984872818, -0.03225557878613472, -0.044442612677812576, -0.04383288696408272, -0.005700085312128067, 0.057248443365097046, -0.005473508965224028, -0.027802320197224617, 0.03336857631802559, 0.004289063159376383, -0.33346959948539734, -0.029728583991527557, -0.016712063923478127, -0.02403184026479721, -0.0015222880756482482, -0.06305968016386032, 0.026783820241689682, -0.02177867479622364, 0.05788614600896835, -0.037090957164764404, 0.1119486466050148, -0.023161564022302628, -0.013263247907161713, -0.01547072734683752, 0.01110752671957016, 0.03436855226755142, -0.022122925147414207, -0.002201718045398593, 0.0056612626649439335, 0.03494758903980255, -0.02558639459311962, -0.03823266550898552, 0.022727329283952713, -0.05912064015865326, 0.04440294951200485, -0.031017795205116272, 0.08889532834291458, 0.03645752742886543, 0.01280338503420353, -0.05507083237171173, 0.026374364271759987, 0.021288618445396423, 0.006487388163805008, -0.13896580040454865, 0.003208987647667527, -0.03780147060751915, -0.04013638198375702, 0.003580940654501319, 0.037107668817043304, -0.03338206559419632, -0.06258908659219742, 0.03331536054611206, -0.03464314714074135, -0.06477857381105423, -0.008782332763075829, -0.041145578026771545, -0.018541177734732628, -0.028376683592796326, 0.021521206945180893, 0.06641173362731934, -0.00905961450189352, -0.013609468005597591, 0.008486968465149403, 0.005624694749712944, 0.011301049031317234, -0.016736825928092003, -0.03525974228978157, 0.00439466955140233, 0.023317407816648483, -0.003991438541561365, 0.01825670152902603, 0.05515696480870247, -0.00017403844685759395, -0.09968424588441849, 0.009717217646539211, -0.0018167983507737517, -0.001159106963314116, -0.027650432661175728, 0.05289459601044655, -0.020081786438822746, -0.006972542963922024, 0.10525811463594437, 0.0008348387782461941, -0.002893872559070587, 0.042468372732400894, 0.040364280343055725, 0.050394538789987564, -0.01773041859269142, 0.006631106603890657, 0.0012826926540583372, -0.010754824616014957, 0.017831547185778618, 0.02092985063791275, -0.025413407012820244, -0.03016323409974575, 0.03737896308302879, 0.03237330541014671, -0.025216614827513695, 0.05918373912572861, -0.03283052146434784, -0.014173956587910652, 0.002743175020441413, 0.013043932616710663, -0.06590268015861511, 0.05963699147105217, -0.015503458678722382, -0.25396376848220825, 0.03499515354633331, 0.032477471977472305, 0.06810098141431808, -0.027400758117437363, 0.010173958726227283, 0.05138208717107773, -0.04555622488260269, -0.045277852565050125, 0.03039584681391716, -0.0055054305121302605, 0.024039490148425102, 0.02433878183364868, -0.0279530119150877, 0.03811192139983177, 0.02180519700050354, 0.06117942929267883, -0.010209258645772934, 0.027214666828513145, -0.039846062660217285, -0.008103795349597931, -0.039076123386621475, 0.1660146415233612, 0.007884546183049679, 0.0036738491617143154, 0.02994616888463497, 0.02471734955906868, -0.012758953496813774, 0.07821322232484818, 0.01234161015599966, -0.0020217099227011204, -0.0007495426689274609, 0.03546026721596718, 0.041713692247867584, 0.022502463310956955, -0.06238923594355583, -0.016779445111751556, -0.011282231658697128, 0.013408210128545761, 0.031055789440870285, 0.003931841347366571, 0.005199616774916649, -0.03836652636528015, 0.01690671220421791, 0.06374290585517883, -0.00962949451059103, -0.04304375499486923, 0.01342844683676958, -0.05243290215730667, -0.010580162517726421, 0.004635035526007414, -0.07257054001092911, -0.049048326909542084, -0.01971525140106678, 0.0025443618651479483, 0.08701114356517792, 0.03074905462563038, -0.033271849155426025, -0.02003871463239193, 0.021945057436823845, 0.0013035164447501302, 0.023001443594694138, 0.1314549446105957, -0.01269601657986641, 0.046714913100004196 ]
[ 0.020215189084410667, 0.014013304375112057, 0.01662006601691246, 0.008276131935417652, 0.02472159080207348, 0.0028954597655683756, 0.002837160136550665, 0.04367861896753311, 0.005006274674087763, 0.017519833520054817, 0.0016709190094843507, 0.017797615379095078, 0.056301940232515335, -0.023124998435378075, 0.024750562384724617, -0.01895138993859291, 0.0248715840280056, 0.004684428684413433, -0.0057635800912976265, 0.0360167920589447, -0.009965364821255207, 0.015026007778942585, 0.028193175792694092, -0.02680797129869461, 0.023472879081964493, -0.008720486424863338, 0.024163344874978065, -0.03077232465147972, 0.0036743287928402424, -0.11688854545354843, 0.011000442318618298, 0.001341910450719297, 0.0020857458002865314, -0.0036873624194413424, -0.034377437084913254, -0.009780037216842175, 0.02020398899912834, 0.01437612809240818, -0.011930545791983604, -0.03978215530514717, -0.01756804995238781, -0.039701301604509354, 0.010694035328924656, 0.00560630951076746, -0.02200348488986492, -0.010275241918861866, 0.02258235402405262, -0.02548370696604252, 0.008943671360611916, 0.004136549774557352, -0.013161719776690006, -0.028666220605373383, 0.010153800249099731, 0.004930560477077961, -0.013947293162345886, 0.020489275455474854, -0.0386522077023983, 0.02411726862192154, 0.034801073372364044, 0.007777758873999119, 0.009324326179921627, -0.0002542932634241879, -0.022776586934924126, -0.019909963011741638, 0.004152918700128794, 0.00007761497545288876, 0.007112759165465832, -0.022874444723129272, 0.008360998705029488, 0.005672474857419729, 0.017689315602183342, 0.014928857795894146, -0.011256143450737, -0.02830755151808262, -0.010638325475156307, 0.01186620444059372, -0.005263771861791611, -0.002904006978496909, -0.005662869196385145, -0.033772338181734085, -0.022498074918985367, 0.01090421061962843, -0.015670739114284515, 0.04494813457131386, 0.012018241919577122, 0.01780610717833042, 0.02951856702566147, 0.020434508100152016, 0.0040516722947359085, 0.03509035333991051, -0.04378388822078705, 0.05571788176894188, 0.002526855329051614, -0.03512045741081238, -0.0974811315536499, -0.02650778740644455, -0.06547435373067856, -0.022521693259477615, -0.013323921710252762, 0.8457965850830078, 0.019260374829173088, 0.03942706063389778, 0.02102999947965145, 0.01502931397408247, 0.01753285340964794, -0.0170297808945179, 0.019879315048456192, -0.026693949475884438, 0.030562231317162514, 0.05381401628255844, 0.04848770424723625, -0.0066831763833761215, 0.01310008391737938, 0.02192235179245472, 0.03091726265847683, 0.043841730803251266, 0.0028393673710525036, 0.02077099122107029, 0.018685290589928627, 0.04199958220124245, 0.023854246363043785, -0.008210467174649239, 0.020160481333732605, -0.0005272463895380497, 0.007835349068045616, -0.16025914251804352, 0.00020653028332162648, -6.72325389852349e-33, 0.020717179402709007, 0.007391663733869791, 0.040738776326179504, -0.0022976137697696686, -0.022319067269563675, 0.007080186158418655, 0.026136960834264755, 0.017395490780472755, -0.0037438825238496065, -0.06186765432357788, 0.032361313700675964, -0.017417805269360542, 0.01889815740287304, 0.011812443844974041, 0.011919996701180935, -0.014464478008449078, 0.007148252334445715, 0.014146224595606327, 0.01152718998491764, 0.012379237450659275, 0.0026609140913933516, 0.014876578003168106, -0.0036466734018176794, -0.010226378217339516, -0.002349959686398506, 0.010286814533174038, 0.038552287966012955, 0.014729192480444908, 0.012658131308853626, -0.03296179696917534, -0.017385467886924744, -0.00968872383236885, -0.005427596624940634, -0.023834282532334328, -0.005606771446764469, -0.03647550567984581, -0.05328388139605522, -0.014306344091892242, -0.010989030823111534, -0.07826888561248779, -0.04033961519598961, -0.02955167181789875, -0.029191598296165466, -0.026416588574647903, -0.031812869012355804, -0.018768029287457466, 0.01773502118885517, 0.03040970303118229, 0.00943755079060793, 0.008780748583376408, -0.008529415354132652, 0.0009111523977480829, -0.010843789204955101, -0.03667788580060005, -0.028235740959644318, -0.009228847920894623, -0.04039677977561951, 0.03886154666543007, -0.021192369982600212, 0.019051332026720047, 0.02666451968252659, 0.010944635607302189, 0.0034616144839674234, 0.015860596671700478, -0.0058027030900120735, 0.013039447367191315, -0.04440658167004585, -0.05967000499367714, 0.02098541334271431, -0.007369867991656065, -0.05929308384656906, -0.033484816551208496, 0.0006209706189110875, -0.00590604217723012, -0.02040637470781803, 0.000207980367122218, 0.012031991966068745, 0.02390812523663044, 0.003252945374697447, 0.011994206346571445, -0.008359067142009735, -0.04742973670363426, 0.004025169648230076, -0.029481349512934685, -0.037149738520383835, -0.004450659733265638, 0.02022763341665268, -0.010618641041219234, -0.030994592234492302, 0.020640136674046516, 0.03571522235870361, 0.03129402548074722, -0.027492059394717216, 0.01744685508310795, -0.030533215031027794, 6.245473484947801e-33, -0.027003668248653412, -0.030255703255534172, -0.012392292730510235, 0.0043691787868738174, 0.02902255766093731, -0.005654226057231426, -0.011475417762994766, 0.0013282798463478684, -0.0589459165930748, -0.008284063078463078, -0.03847819194197655, 0.00686628045514226, -0.015296627767384052, -0.004057565238326788, 0.07438580691814423, -0.032592322677373886, 0.04664523899555206, -0.0239950530230999, 0.021188996732234955, -0.012945973314344883, -0.008904866874217987, 0.03235708549618721, 0.0517301969230175, 0.026422729715704918, 0.018125301226973534, 0.02892594411969185, -0.0031521718483418226, 0.03518145903944969, -0.004688052460551262, -0.00801793672144413, 0.026971016079187393, 0.060479890555143356, -0.012600846588611603, -0.035186976194381714, 0.0038014953024685383, -0.00722736120223999, -0.023200511932373047, -0.0010608924785628915, -0.018180200830101967, -0.006843009497970343, -0.0255030058324337, -0.026817908510565758, 0.026829523965716362, -0.015393241308629513, 0.002144897822290659, -0.016491824761033058, -0.012284050695598125, 0.007715473882853985, 0.01130189560353756, 0.0013059412594884634, 0.03376929089426994, 0.009520800784230232, 0.01117047481238842, -0.001375858555547893, 0.011344384402036667, -0.003451271215453744, -0.01753595471382141, 0.005916953552514315, 0.006311100907623768, -0.03862527757883072, 0.012612778693437576, -0.003115682862699032, 0.006142592057585716, 0.03570369631052017, -0.049223847687244415, -0.025224152952432632, 0.012661182321608067, 0.023502452298998833, -0.023510612547397614, 0.03785059228539467, -0.01914982683956623, -0.050075143575668335, -0.007172324229031801, 0.03758866712450981, 0.03151603788137436, 0.001831422676332295, 0.025805363431572914, -0.030007749795913696, -0.028777364641427994, -0.02807481773197651, -0.0008035129867494106, 0.024896373972296715, -0.016225261613726616, -0.009808060713112354, -0.0013089257990941405, -0.01335659809410572, -0.04291078820824623, 0.008899259380996227, 0.0033652118872851133, 0.03795747831463814, -0.029673868790268898, 0.003634234657511115, -0.004318897612392902, -0.034133147448301315, -0.005733581725507975, -1.2899268320154533e-8, 0.020988212898373604, 0.0062974379397928715, 0.018251026049256325, 0.04298664256930351, 0.0016907467506825924, -0.0072304485365748405, -0.0324089415371418, -0.04280676692724228, 0.013698416762053967, 0.005248973611742258, -0.0061601996421813965, -0.02889622002840042, 0.02709462307393551, 0.00022271519992500544, 0.028223371133208275, -0.0319681242108345, 0.015326647087931633, 0.009980627335608006, 0.015403415076434612, 0.017716504633426666, 0.0029498375952243805, 0.005097358021885157, -0.023130472749471664, -0.0010281880386173725, 0.02026520110666752, 0.025649137794971466, 0.04010734707117081, -0.03939756378531456, 0.0016032458515837789, 0.04093622416257858, 0.029259417206048965, -0.021235918626189232, -0.031357329338788986, -0.04919494688510895, -0.05690191686153412, 0.018111251294612885, 0.013433057814836502, -0.028953054919838905, 0.008638780564069748, 0.0041911122389137745, -0.01822182908654213, 0.0027334485203027725, 0.008967324160039425, -0.013146608136594296, -0.06386664509773254, -0.029647594317793846, 0.003392367623746395, 0.00384307443164289, 0.013582012616097927, -0.007969828322529793, -0.04544844850897789, -0.007925079204142094, -0.03120349533855915, -0.009470022283494473, 0.03468569368124008, 0.005311231594532728, 0.00666464027017355, -0.04883155599236488, -0.0023115279618650675, -0.02560851164162159, 0.049993522465229034, 0.019680572673678398, -0.04343053326010704, -0.029376640915870667 ]
learning-android-testing-details-got-saved-to-sharedpreferences
https://markhneedham.com/blog/2012/01/10/learning-android-testing-details-got-saved-to-sharedpreferences
false
2012-01-26 21:58:27
Oracle: dbstart - ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener
[ "oracle" ]
[ "Software Development" ]
We ran into an interesting problem when trying to start up an Oracle instance using +++<cite>+++dbstart+++</cite>+++ whereby we were getting the following error: [source,text] ---- -bash-3.2$ dbstart ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener Usage: /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbstart ORACLE_HOME Processing Database instance "orcl": log file /u01/app/oracle/product/11.2.0/dbhome_1/startup.log ---- Ignoring the usage message we thought that setting the environment variable was what we needed to do, but... [source,text] ---- -bash-3.2$ export ORACLE_HOME_LISTNER=$ORACLE_HOME -bash-3.2$ dbstart ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener Usage: /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbstart ORACLE_HOME Processing Database instance "orcl": log file /u01/app/oracle/product/11.2.0/dbhome_1/startup.log ---- We ended up looking at the source of +++<cite>+++dbstart+++</cite>+++ to see what was going on: [source,text] ---- # First argument is used to bring up Oracle Net Listener ORACLE_HOME_LISTNER=$1 if [ ! $ORACLE_HOME_LISTNER ] ; then echo "ORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net Listener" echo "Usage: $0 ORACLE_HOME" ---- The usage message does explain that you're supposed to call it like this: [source,text] ---- -bash-3.2$ dbstart $ORACLE_HOME ---- But it still seems a bit weird/misleading to me that you'd override the value of a global variable from inside a script which doesn't suggest that it's going to do that! Such is life in Oracle land..
null
null
[ 0.011322087608277798, 0.02081470564007759, -0.035452019423246384, 0.010391730815172195, 0.11923028528690338, 0.014972551725804806, -0.006887335795909166, 0.018083836883306503, 0.009893812239170074, -0.007058576215058565, -0.02735370211303234, 0.01846192590892315, -0.05942991003394127, 0.009505453519523144, -0.00871029868721962, 0.04733689874410629, 0.09071341156959534, 0.0094175199046731, 0.027121635153889656, -0.0067617762833833694, 0.04755626991391182, 0.052015505731105804, -0.0022041804622858763, 0.05242745950818062, 0.021812617778778076, 0.038122449070215225, -0.00067320087691769, 0.008514435030519962, -0.06979914009571075, 0.02555282600224018, 0.027528755366802216, 0.001403975416906178, 0.012944303452968597, -0.029091965407133102, 0.030305175110697746, 0.013855025172233582, -0.011091279797255993, 0.004527994431555271, -0.009027183055877686, 0.04721345379948616, -0.07616588473320007, 0.02248193509876728, -0.015339652076363564, -0.004842928610742092, -0.015537210740149021, 0.001755545730702579, -0.05040713772177696, -0.01441878080368042, 0.006225413177162409, 0.007429341785609722, -0.0908033698797226, 0.04215550795197487, -0.026665858924388885, -0.041378363966941833, 0.02157711423933506, 0.018549324944615364, 0.038622453808784485, -0.06305507570505142, 0.019211074337363243, -0.023545291274785995, 0.009547012858092785, 0.008597246371209621, -0.002780517330393195, 0.013525502756237984, 0.04226899519562721, -0.002860545413568616, 0.012988842092454433, 0.03626791387796402, -0.045367807149887085, 0.019882379099726677, -0.0342884436249733, -0.015672791749238968, -0.06054574251174927, -0.0031945649534463882, 0.012581986375153065, -0.01867963932454586, -0.004242642316967249, 0.015902355313301086, 0.02624417468905449, 0.08872270584106445, -0.004908055532723665, 0.003599167335778475, 0.012729535810649395, 0.00967768020927906, 0.0029257910791784525, -0.03779199346899986, -0.0121660977602005, -0.04691087827086449, -0.040998440235853195, 0.05189139023423195, 0.03009321354329586, -0.05359990894794464, -0.020215895026922226, 0.01368186715990305, -0.04287555441260338, -0.001438539708033204, 0.005771083291620016, -0.02171969600021839, 0.006475554779171944, -0.007127166725695133, -0.050613872706890106, 0.00998761411756277, 0.029356352984905243, 0.023046409711241722, -0.08109699934720993, 0.007668159436434507, -0.047608595341444016, -0.014777804724872112, -0.015126821584999561, 0.012952284887433052, -0.013602806255221367, 0.03072015754878521, -0.00984745379537344, -0.013475190848112106, -0.08167364448308945, 0.06017887964844704, -0.008832162246108055, -0.02416727878153324, 0.026057260110974312, 0.004484735429286957, 0.04020402580499649, 0.05208170786499977, -0.0319192074239254, 0.07000512629747391, -0.013188070617616177, 0.008429840207099915, -0.01389287505298853, 0.027017265558242798, -0.003029404440894723, -0.06806204468011856, 0.008079933002591133, 0.061876993626356125, 0.02214440330862999, 0.026929887011647224, 0.011066040024161339, 0.0016214738134294748, 0.014696727506816387, -0.011156844906508923, 0.08367685973644257, 0.04169565811753273, 0.015863006934523582, -0.018609939143061638, -0.0115687046200037, -0.013306807726621628, 0.02589881233870983, 0.010224594734609127, 0.004139700438827276, -0.028198521584272385, -0.04408066347241402, 0.0030024265870451927, 0.027596991509199142, 0.03476526215672493, 0.062478527426719666, -0.02679920755326748, 0.01733824610710144, 0.06996478885412216, 0.02359103597700596, 0.01736375130712986, -0.038176026195287704, -0.011204192414879799, 0.03930215910077095, 0.0022220565006136894, 0.017691457644104958, 0.059864696115255356, 0.03287489339709282, -0.020112238824367523, -0.0031515650916844606, 0.004253493156284094, -0.004468412138521671, 0.03265560790896416, -0.060652829706668854, -0.0817527323961258, 0.05957072973251343, -0.04156830906867981, -0.024462517350912094, 0.001599437789991498, 0.08320524543523788, 0.0283467136323452, 0.03892974182963371, 0.009359014220535755, -0.07711619883775711, 0.03086317703127861, -0.027911430224776268, 0.027229325845837593, 0.018961679190397263, -0.019440246745944023, 0.0731152817606926, 0.02259165048599243, 0.02105659991502762, 0.0207905825227499, -0.06275264918804169, -0.07471510022878647, -0.005765633657574654, 0.02407594583928585, 0.04233802109956741, -0.051473468542099, -0.04115727171301842, 0.0816398337483406, 0.03449700027704239, 0.02902255952358246, 0.025217344984412193, 0.030160386115312576, 0.01984649896621704, -0.05627787113189697, -0.05639001354575157, 0.03571789711713791, 0.016495686024427414, -0.009376224130392075, -0.002971883164718747, 0.02235889434814453, -0.023627914488315582, 0.0259515643119812, 0.028921425342559814, -0.008712505921721458, 0.056758392602205276, -0.0114665562286973, 0.020978573709726334, -0.023411009460687637, 0.02464737743139267, -0.015314985997974873, 0.0035633821971714497, 0.004793468397110701, -0.03314421325922012, 0.02314082533121109, 0.0072000762447714806, 0.11227020621299744, 0.03223825618624687, -0.014322768896818161, -0.04703500121831894, 0.03922130912542343, 0.02553098089993, -0.053166553378105164, 0.032949771732091904, 0.002180572133511305, 0.014434644021093845, 0.021416084840893745, -0.02705526538193226, 0.005755866412073374, 0.01847781613469124, -0.022249262779951096, 0.006900543812662363, 0.047292981296777725, -0.036019306629896164, 0.06712550669908524, 0.0013205006252974272, -0.04033490642905235, 0.021777741611003876, -0.02748621255159378, -0.07463813573122025, -0.032393015921115875, 0.03040231391787529, -0.013987035490572453, 0.04252278432250023, -0.012021277099847794, -0.03127008676528931, -0.04580128937959671, -0.05017092823982239, 0.03798745572566986, 0.02878408692777157, 0.028653999790549278, -0.03196924552321434, 0.06980129331350327, -0.027512241154909134, 0.005585844162851572, -0.01243964210152626, -0.03714006394147873, -0.027997303754091263, 0.01324439886957407, -0.03167731687426567, -0.004256418440490961, -0.0120726702734828, -0.004572236444801092, 0.009438926354050636, 0.011848177760839462, 0.028304170817136765, -0.00938043650239706, 0.0073089380748569965, 0.022712254896759987, -0.019514024257659912, -0.034587498754262924, 0.013963812962174416, 0.008903390727937222, -0.023234404623508453, -0.03249417617917061, 0.028031742200255394, -0.057743463665246964, 0.029879720881581306, -0.06599406898021698, -0.056401319801807404, -0.01625308394432068, 0.0029070074670016766, 0.008447560481727123, 0.04099556431174278, 0.03250736743211746, 0.08477271348237991, 0.015538184903562069, 0.02166938968002796, 0.048209648579359055, 0.0065845889039337635, 0.008194449357688427, -0.015384351834654808, -0.01375595387071371, 0.011712064035236835, -0.005425268784165382, -0.014528840780258179, -0.024523859843611717, -0.011253261007368565, -0.028726011514663696, -0.26717647910118103, 0.04943336173892021, -0.012568943202495575, -0.04506919905543327, 0.04138593375682831, -0.03629263490438461, 0.004359440878033638, -0.026186618953943253, -0.019443849101662636, 0.023382483050227165, -0.0203408133238554, -0.037352364510297775, 0.000194398540770635, 0.033439818769693375, -0.004541514907032251, 0.03876059502363205, 0.040286123752593994, -0.022478265687823296, 0.0025560406502336264, 0.03155818581581116, -0.0021508673671633005, -0.02344021201133728, 0.014703815802931786, 0.03483596816658974, 0.033899176865816116, 0.07420733571052551, -0.0766715407371521, 0.049935147166252136, -0.05867462232708931, -0.03187909349799156, 0.0005085101001895964, -0.029295537620782852, -0.021305914968252182, 0.031026767566800117, -0.02257906086742878, -0.011856548488140106, 0.013464486226439476, -0.0040897186845541, 0.031041724607348442, -0.0030960552394390106, -0.026555748656392097, -0.04941151663661003, 0.010901750065386295, 0.02126898057758808, 0.04929066076874733, -0.016565954312682152, -0.09355683624744415, -0.010710754431784153, -0.03769778087735176, 0.06107592210173607, -0.06328527629375458, -0.027412379160523415, -0.018274076282978058, -0.001961272908374667, 0.01014323066920042, -0.0182659775018692, -0.04317470267415047, -0.0054794009774923325, -0.009218537248671055, -0.022112827748060226, 0.01549589354544878, -0.0503893680870533, -0.02175244688987732, -0.050423525273799896, 0.004610003903508186, -0.053194209933280945, -0.03632769733667374, -0.028281433507800102, 0.07659375667572021, 0.033651769161224365, -0.020881416276097298, 0.004641510546207428, -0.02151641808450222, -0.10381732136011124, -0.01872323825955391, -0.056983932852745056, -0.037334151566028595, 0.0037432515528053045, -0.022648291662335396, 0.024091346189379692, -0.04358839988708496, 0.006375996861606836, 0.01801733672618866, 0.024098435416817665, 0.009080401621758938, -0.02900899574160576, 0.009112613275647163, 0.007531865034252405, -0.02898503839969635, -0.011037955991923809, 0.060975514352321625, -0.045891717076301575, -0.03850493207573891, -0.00792180560529232, 0.005186660215258598, 0.016787000000476837, -0.01535551343113184, -0.005505661014467478, 0.03097992204129696, 0.01730835624039173, 0.03830796480178833, -0.03889656811952591, 0.0023896899074316025, -0.027898123487830162, -0.03310011699795723, -0.008953454904258251, -0.05786288157105446, 0.010780466720461845, 0.01343766413629055, 0.011086542159318924, -0.03144187852740288, -0.013435449451208115, 0.029697494581341743, -0.062416501343250275, -0.016746290028095245, -0.0005944036529399455, 0.033708393573760986, 0.016977857798337936, 0.03542477637529373, -0.027804849669337273, -0.08622574061155319, 0.025549177080392838, 0.005332052242010832, -0.027969280257821083, -0.045191675424575806, -0.018034061416983604, -0.030565576627850533, -0.005551328416913748, -0.020516157150268555, -0.004614460747689009, -0.014429550617933273, 0.018657777458429337, 0.057947974652051926, -0.008249064907431602, -0.0012510556261986494, -0.0069326432421803474, -0.05844178423285484, -0.03187995404005051, -0.00796419382095337, 0.016081014648079872, -0.058145832270383835, 0.002358808647841215, 0.04305916279554367, 0.030379537492990494, 0.0466429740190506, 0.009403576143085957, 0.03672816976904869, -0.008996776305139065, 0.004936464596539736, 0.027118459343910217, 0.014120609499514103, -0.06866275519132614, 0.03171742334961891, -0.04113822802901268, -0.02051946334540844, -0.013456864282488823, 0.07087505608797073, -0.04046953469514847, -0.03390074148774147, -0.022907333448529243, 0.018105747178196907, -0.06546694785356522, 0.018165631219744682, -0.023310907185077667, -0.019061701372265816, 0.03919021412730217, 0.021500207483768463, 0.01871625706553459, -0.0023935220669955015, 0.008574659936130047, -0.010109416209161282, -0.0027303381357342005, -0.030486904084682465, 0.0071084764786064625, 0.019807185977697372, -0.025503015145659447, 0.006328182760626078, 0.0039092013612389565, 0.033062227070331573, -0.012865780852735043, 0.025725577026605606, -0.00023116273223422468, -0.011383633129298687, 0.0029333308339118958, 0.050803374499082565, 0.001704736496321857, -0.033118657767772675, 0.0004845561343245208, -0.019280653446912766, -0.01534284371882677, -0.03231004998087883, -0.0011191378580406308, -0.0038817403838038445, 0.00613081781193614, -0.00651642307639122, -0.07135114073753357, 0.036593660712242126, 0.062424834817647934, -0.02637963928282261, -0.001506324391812086, 0.0035758549347519875, -0.02227819338440895, -0.06668644398450851, 0.03911442682147026, 0.0783088356256485, -0.059903040528297424, 0.022760679945349693, -0.003158894833177328, -0.004829593002796173, 0.028592374175786972, 0.012875726446509361, -0.03355276212096214, 0.0235133096575737, -0.01759069226682186, 0.0464789904654026, -0.02411237359046936, -0.05531298369169235, -0.014802428893744946, 0.012864540331065655, -0.0018705519614741206, 0.007554835174232721, -0.007897911593317986, 0.03985128179192543, -0.000630374881438911, -0.047754917293787, 0.016126414760947227, -0.04764343798160553, 0.026967409998178482, 0.024447258561849594, -0.028473036363720894, 0.02178606018424034, -0.03965124115347862, 0.0492989607155323, 0.006814461667090654, -0.016391489654779434, -0.018025480210781097, -0.04335083067417145, 0.013507251627743244, 0.004956482443958521, 0.0334828682243824, -0.016846738755702972, 0.029441624879837036, -0.018223293125629425, -0.01919354684650898, -0.02817429229617119, 0.013813655823469162, -0.019365089014172554, -0.0016558788483962417, 0.016572175547480583, 0.06941045820713043, 0.021402841433882713, 0.017365863546729088, -0.028410963714122772, -0.030787268653512, 0.04682937264442444, -0.06428949534893036, -0.03769534453749657, 0.016361096873879433, -0.08259603381156921, 0.05288904160261154, 0.037232886999845505, 0.017950482666492462, -0.056671760976314545, 0.04341961815953255, 0.05065375566482544, 0.01789558306336403, 0.009686540812253952, -0.014662579633295536, 0.03077601082623005, -0.044403377920389175, -0.00873867142945528, -0.08324957638978958, -0.011807328090071678, 0.013402113690972328, 0.03583500161767006, -0.03595953807234764, 0.028705356642603874, -0.027420412749052048, 0.03209678828716278, -0.046729542315006256, -0.042469050735235214, 0.00488104997202754, 0.017508232966065407, -0.009932717308402061, 0.03532000631093979, -0.06067420542240143, 0.02829478681087494, 0.03407391905784607, -0.02874547243118286, -0.019285229966044426, -0.03255508467555046, 0.06225539371371269, 0.012612382881343365, 0.02098500169813633, -0.021269336342811584, 0.008809098042547703, 0.11052478849887848, 0.020160868763923645, -0.005513791926205158, 0.04330548644065857, -0.031818799674510956, 0.05305081233382225, 0.03496666997671127, 0.017126139253377914, -0.0035916289780288935, -0.000497698609251529, -0.033018361777067184, -0.05830958113074303, -0.005297235678881407, 0.015903491526842117, -0.004063486587256193, -0.029589904472231865, 0.054514117538928986, 0.02179773710668087, -0.03544795140624046, -0.03186735883355141, 0.004074845928698778, -0.03981305658817291, -0.017843207344412804, -0.021113703027367592, 0.01759663037955761, -0.07576022297143936, 0.054301317781209946, 0.017823584377765656, 0.03030354157090187, 0.04801345244050026, 0.005805838853120804, -0.024057894945144653, 0.016577238216996193, 0.07870204746723175, 0.08155374228954315, -0.0015037987614050508, 0.03884398564696312, 0.022037500515580177, -0.03278901427984238, -0.0429847314953804, -0.015366381965577602, -0.032177697867155075, -0.02208900824189186, -0.05459720268845558, 0.006535590160638094, 0.08896138519048691, 0.007159425877034664, 0.053607624024152756, -0.012915190309286118, 0.027112383395433426, 0.013816140592098236, 0.010571455582976341, 0.024731643497943878, 0.026372170075774193, 0.008408409543335438, 0.02997015044093132, -0.0045442115515470505, -0.03841336816549301, 0.026195500046014786, -0.005233556032180786, -0.009016000665724277, 0.018623696640133858, 0.028772924095392227, -0.002502285875380039, 0.05554059520363808, 0.026764249429106712, 0.08919312059879303, -0.025100257247686386, -0.039211343973875046, -0.02768264338374138, 0.05142161622643471, -0.020199012011289597, 0.01806570589542389, 0.014336665160953999, -0.03646694868803024, 0.01704259030520916, -0.035886842757463455, -0.05361948907375336, -0.012681739404797554, -0.05208423361182213, 0.01739715412259102, -0.017522679641842842, 0.004241444636136293, 0.031286370009183884, 0.01744389533996582, -0.06600822508335114, -0.06347893923521042, -0.041757434606552124, -0.028505314141511917, -0.030591225251555443, -0.022004442289471626, -0.02058815024793148, -0.017352864146232605, -0.03507086634635925, -0.03914616256952286, -0.025310093536973, -0.03804723173379898, 0.011761609464883804, -0.06338430941104889, -0.03750753402709961, 0.016866512596607208, 0.013352340087294579, 0.021435271948575974, -0.0012607817770913243, 0.05902181565761566, -0.009344424121081829, 0.008786700665950775, 0.013870960101485252, 0.010905726812779903, 0.030995309352874756, -0.02728663757443428, -0.008234464563429356, -0.07895157486200333, 0.0251209307461977, 0.02197185717523098, 0.024315178394317627, -0.058021727949380875, 0.042569905519485474, 0.029098575934767723, 0.006433071568608284, 0.07383842766284943, -0.009863392449915409, 0.015706177800893784, -0.049173254519701004, -0.007266489788889885, 0.0051294611766934395, 0.0018546923529356718, 0.0245427917689085, -0.021964585408568382, 0.08265815675258636, 0.07545381784439087, -0.01997494325041771, -0.02988867461681366, 0.004311417229473591, 0.024930166080594063, -0.013974228873848915, -0.045114826411008835, -0.0064513953402638435, -0.03480098024010658, -0.06279333680868149, -0.008585244417190552, 0.016209499910473824, -0.0159563310444355, -0.03992912918329239, -0.0016083460068330169, 0.03575489670038223, -0.023501979187130928, 0.02446436509490013, -0.030018538236618042, -0.019627662375569344, -0.04405198246240616, -0.05100689455866814, 0.005547248758375645, 0.023382417857646942, 0.005988595075905323, -0.00414159195497632, 0.000020751971533172764, -0.011473778635263443, -0.03323628008365631, -0.017736393958330154, 0.050883699208498, 0.0613354817032814, -0.004371346905827522, 0.013709683902561665 ]
[ -0.08867067098617554, -0.04179243743419647, -0.02175971120595932, -0.07585935294628143, 0.02676955610513687, -0.061005037277936935, -0.035745564848184586, 0.026799816638231277, 0.02950330264866352, -0.023399334400892258, 0.025763599202036858, 0.007638497278094292, -0.03551798313856125, -0.023747950792312622, 0.04354220628738403, 0.0007482419605366886, -0.02932090312242508, -0.02937270700931549, 0.038535263389348984, 0.006356797181069851, -0.014269509352743626, -0.03011285327374935, -0.013887382112443447, -0.023238329216837883, -0.01024613343179226, 0.08108002692461014, 0.028954600915312767, -0.03790641576051712, -0.002978435019031167, -0.22960495948791504, 0.0016586084384471178, 0.02338404394686222, 0.0165963526815176, -0.0069331456907093525, -0.005408383905887604, 0.0337650291621685, -0.0024687654804438353, 0.02814834751188755, -0.016361428424715996, 0.06222602725028992, 0.050956591963768005, 0.02948673814535141, -0.053343720734119415, -0.01817638799548149, -0.003448836738243699, -0.010794386267662048, 0.02961874194443226, -0.02638840861618519, 0.04818759858608246, 0.02941916510462761, -0.036971013993024826, 0.04814992845058441, -0.004760056734085083, -0.009249789640307426, 0.011005389504134655, 0.014956415630877018, 0.07544976472854614, 0.08352252840995789, -0.012221205979585648, 0.005688508506864309, 0.019465366378426552, -0.019815532490611076, -0.17137081921100616, 0.10639095306396484, 0.027548927813768387, 0.020455578342080116, -0.0018144836649298668, -0.015194447711110115, -0.024853860959410667, 0.08560656011104584, -0.028808344155550003, -0.000016231368135777302, -0.03181928023695946, 0.06890140473842621, 0.011965814977884293, -0.022984081879258156, 0.0038635353557765484, -0.0077099427580833435, 0.019456297159194946, -0.06203227862715721, -0.0401625856757164, -0.02073254995048046, -0.06572481989860535, -0.01010445412248373, -0.05762818828225136, 0.027499105781316757, -0.005496323574334383, 0.06397818773984909, 0.02190558612346649, -0.007880800403654575, 0.017115402966737747, -0.025463690981268883, 0.06563185900449753, 0.031217141076922417, -0.06338618695735931, 0.032259415835142136, -0.020829947665333748, -0.008400160819292068, -0.01782018318772316, 0.4108465015888214, -0.006808354053646326, 0.021811727434396744, -0.006416572257876396, -0.004618911538273096, 0.04062437638640404, 0.00433764373883605, -0.01199845690280199, -0.03842978551983833, 0.006554505322128534, -0.01949298568069935, 0.026447203010320663, 0.0059397597797214985, 0.08376716822385788, -0.08721823990345001, 0.03340762481093407, 0.014468319714069366, 0.033307433128356934, -0.018378693610429764, -0.008517123758792877, -0.011887328699231148, -0.02771182358264923, -0.015667103230953217, 0.01135877426713705, 0.04017770662903786, 0.03269031643867493, -0.04663533344864845, 0.033506203442811966, 0.06080852448940277, -0.0044434708543121815, -0.012863626703619957, 0.054888468235731125, -0.0533132366836071, -0.053187474608421326, -0.016630209982395172, 0.014707245863974094, 0.009662043303251266, 0.043761976063251495, -0.028026599436998367, -0.0035648634657263756, 0.024367576465010643, -0.027203967794775963, -0.05102390795946121, 0.017560504376888275, 0.00350339338183403, 0.003397183259949088, 0.09472715854644775, 0.01346371229737997, -0.014706043526530266, -0.03222907707095146, -0.06769571453332901, -0.011745456606149673, 0.006176224444061518, 0.007790322881191969, -0.06735656410455704, -0.001388906966894865, 0.03320920467376709, 0.07033553719520569, 0.025315474718809128, -0.09284012019634247, -0.028319483622908592, -0.006072153337299824, -0.025265613570809364, -0.05284874886274338, 0.07072225958108902, 0.028254209086298943, -0.07786732167005539, -0.046065956354141235, 0.02352992817759514, 0.0213446244597435, 0.007069162558764219, 0.0258821789175272, -0.013156862929463387, -0.07468316704034805, -0.013458304107189178, 0.06014394387602806, -0.03748025372624397, 0.008113447576761246, 0.045267216861248016, 0.060733627527952194, 0.021277591586112976, 0.022091740742325783, 0.014525878243148327, -0.04074984788894653, -0.0047436608001589775, -0.043391838669776917, -0.10883107036352158, -0.08890963345766068, 0.010825296863913536, -0.01875365898013115, -0.06335163116455078, -0.014235248789191246, -0.008588956668972969, -0.03520798683166504, 0.075688436627388, -0.01375880092382431, -0.044601961970329285, 0.024502983316779137, -0.004907469265162945, 0.004012781661003828, -0.04191908240318298, 0.04649784415960312, 0.020645001903176308, -0.00023806517128832638, 0.048496097326278687, -0.06725595146417618, 0.03271600604057312, -0.0011203164467588067, -0.030095119029283524, 0.05613715574145317, -0.014866027049720287, -0.018745239824056625, -0.005786731839179993, 0.0026673320680856705, 0.03499668464064598, -0.012317226268351078, 0.026670819148421288, -0.04411434009671211, 0.025324353948235512, 0.02966259978711605, -0.005993798840790987, -0.018158460035920143, 0.009805561043322086, -0.0331365130841732, -0.3501564860343933, -0.05102325603365898, -0.014446137472987175, -0.01956978067755699, -0.023031670600175858, -0.020881785079836845, 0.008024645037949085, -0.020608892664313316, -0.023428918793797493, -0.027919597923755646, 0.02771781012415886, -0.05362183600664139, 0.04050252214074135, -0.03215661644935608, -0.019141843542456627, 0.03513474389910698, -0.05831729993224144, -0.0084052300080657, -0.013515601865947247, 0.006133164279162884, 0.008380874991416931, -0.02382558397948742, -0.023856569081544876, -0.05996419116854668, -0.0025623103138059378, 0.0018026597099378705, 0.08386579900979996, -0.001369556412100792, 0.08618176728487015, -0.019773103296756744, 0.07360069453716278, 0.04089843109250069, 0.014705664478242397, -0.10318925231695175, -0.02727414108812809, -0.00698147201910615, -0.015063134022057056, 0.020867429673671722, -0.004534658510237932, -0.012094452045857906, -0.059965550899505615, 0.027633845806121826, -0.05978726968169212, -0.024681808426976204, -0.024350695312023163, -0.03462376073002815, 0.006351816467940807, -0.0229084063321352, -0.010866893455386162, 0.05600482597947121, 0.020994633436203003, 0.028636911883950233, -0.00938196200877428, 0.03466794639825821, 0.03368676081299782, -0.044072121381759644, -0.057062190026044846, -0.021630166098475456, 0.028698952868580818, -0.01810372807085514, 0.05772538483142853, 0.03982851281762123, 0.036798153072595596, -0.038878221064805984, -0.004210815764963627, -0.016731705516576767, -0.004047988448292017, -0.006852809805423021, 0.07726117968559265, -0.042817939072847366, -0.059441130608320236, 0.08405613154172897, -0.01849547028541565, 0.021575303748250008, 0.028376931324601173, -0.0006619903142563999, 0.014396145939826965, -0.023028060793876648, -0.02322451025247574, -0.02498823218047619, 0.030442459508776665, -0.04007629677653313, 0.0523148775100708, -0.01181541383266449, -0.02168135531246662, 0.06903839856386185, 0.0016765822656452656, -0.0020450279116630554, 0.07656978070735931, -0.01657111383974552, -0.014307391829788685, 0.01217818632721901, -0.03042224794626236, -0.06706822663545609, 0.11047123372554779, 0.03449094295501709, -0.23695658147335052, 0.03716818988323212, 0.03953047841787338, 0.07224148511886597, -0.0015315362252295017, 0.0297031681984663, 0.02210102789103985, -0.038882698863744736, 0.0005956044769845903, -0.021954761818051338, 0.003122544614598155, 0.009292799048125744, -0.03394008055329323, -0.00815771333873272, 0.030509404838085175, 0.00206921249628067, 0.0748191848397255, 0.010143443942070007, 0.011839612387120724, 0.011229993775486946, -0.013240408152341843, 0.0042433482594788074, 0.14386168122291565, 0.01569102145731449, 0.039696548134088516, 0.020145250484347343, -0.010353859513998032, 0.026544157415628433, 0.047966714948415756, 0.03530944883823395, -0.006120491772890091, -0.009408499114215374, 0.07700131088495255, -0.015880972146987915, 0.05004281923174858, -0.023093463853001595, 0.014453733339905739, 0.03737427294254303, 0.03877991437911987, -0.015004787594079971, -0.008823455311357975, 0.031804393976926804, -0.04179547727108002, 0.04804754629731178, 0.06647266447544098, 0.0046037426218390465, 0.008028335869312286, -0.019364947453141212, -0.04722888395190239, 0.015565677545964718, -0.03512374311685562, -0.0499873012304306, 0.027928927913308144, 0.003957710228860378, -0.010794442147016525, 0.050562534481287, 0.008721810765564442, -0.0157388374209404, 0.01676093228161335, -0.0003058251750189811, 0.010205001570284367, -0.032853007316589355, 0.13373059034347534, 0.021662721410393715, 0.016867486760020256 ]
[ -0.019738493487238884, 0.0030273760203272104, -0.025753099471330643, -0.03871913626790047, 0.037351299077272415, -0.0072878459468483925, 0.04600096121430397, 0.06263191252946854, -0.03328897804021835, 0.031077124178409576, -0.03154488280415535, -0.03877968713641167, 0.0264901090413332, -0.0282574612647295, 0.01986972987651825, -0.014007960446178913, -0.003974749706685543, -0.02081191912293434, 0.03644267097115517, -0.005325793754309416, -0.001099949236959219, 0.04805411025881767, 0.028867648914456367, -0.003187666879966855, 0.01985221356153488, 0.012710437178611755, -0.04991236701607704, -0.03437653183937073, 0.025901293382048607, -0.12800921499729156, -0.028000716120004654, -0.000899457314517349, -0.008228454738855362, -0.008786576800048351, 0.0009562268969602883, -0.03517457842826843, 0.0002466331934556365, 0.020286323502659798, -0.02329757995903492, 0.03146388754248619, 0.03223138675093651, -0.023763781413435936, -0.06956810504198074, -0.022562561556696892, -0.03865104913711548, -0.015642695128917694, -0.029636884108185768, -0.04458382725715637, 0.03151191771030426, 0.014729906804859638, -0.009775790385901928, 0.009794296696782112, -0.020205315202474594, -0.011657869443297386, 0.06281621009111404, 0.016017239540815353, 0.0034223583061248064, 0.034506767988204956, 0.028449272736907005, -0.021136047318577766, 0.020800843834877014, 0.018059618771076202, -0.03191887587308884, -0.009906832128763199, 0.005613166373223066, -0.02786066010594368, -0.033197127282619476, -0.0019530057907104492, -0.016516687348484993, -0.007720730733126402, -0.043352194130420685, -0.011774864979088306, -0.03453836590051651, -0.03589287027716637, -0.056132566183805466, 0.02591199427843094, 0.048105597496032715, -0.021394973620772362, 0.00671474589034915, -0.021704236045479774, -0.037505365908145905, 0.05056766793131828, -0.036929138004779816, -0.018922587856650352, -0.016864001750946045, 0.0011358759365975857, 0.01460898108780384, -0.0024032171349972486, 0.06455596536397934, -0.016070935875177383, -0.0010601970134302974, -0.02550961822271347, -0.005510979797691107, -0.014926196075975895, -0.0714198648929596, 0.003051560139283538, -0.03405403718352318, -0.05154336988925934, -0.00040841783629730344, 0.7979937195777893, 0.0034865615889430046, 0.08208513259887695, 0.03683346509933472, -0.0003774975484702736, -0.033281777054071426, 0.023076532408595085, -0.035088010132312775, -0.042711757123470306, 0.0054265535436570644, -0.023718595504760742, 0.011850245296955109, 0.010503210127353668, 0.03874273598194122, -0.03815528750419617, 0.01847434602677822, 0.04513890668749809, 0.030466359108686447, -0.056356027722358704, 0.00872289203107357, -0.01320246234536171, 0.05985746160149574, -0.04738546162843704, 0.020845813676714897, 0.026665233075618744, 0.0377635695040226, -0.14049340784549713, 0.02999887987971306, -6.758720032455736e-33, -0.0007150206947699189, -0.0552491657435894, 0.009359668008983135, -0.0028263977728784084, 0.041124261915683746, 0.04372003674507141, -0.027848998084664345, 0.060054514557123184, -0.008667178452014923, -0.004340489860624075, -0.0040744817815721035, -0.007642746903002262, -0.02558046579360962, -0.01775372214615345, 0.04035484418272972, 0.04912132769823074, -0.010152449831366539, 0.04018845781683922, -0.037411823868751526, 0.01883016712963581, 0.024749208241701126, 0.017048081383109093, -0.042687684297561646, -0.010487373918294907, 0.027292998507618904, -0.020809751003980637, 0.014269622974097729, -0.010176903568208218, 0.018625330179929733, -0.03705785423517227, 0.0061408719047904015, -0.0414266511797905, -0.01387924887239933, -0.005893712863326073, -0.0011184506583958864, -0.05472079664468765, -0.01824449561536312, 0.023852011188864708, -0.011379487812519073, -0.05358508229255676, -0.015898164361715317, 0.018843580037355423, -0.01459608506411314, 0.014124284498393536, 0.007161905523389578, -0.0042692250572144985, 0.00782088190317154, 0.04429841786623001, -0.030426369979977608, -0.020694559440016747, -0.010058552958071232, 0.009646892547607422, -0.04063178226351738, 0.04503278434276581, 0.02311064675450325, 0.033503200858831406, -0.010809864848852158, -0.039486225694417953, -0.002944030798971653, -0.007691322360187769, -0.014379004947841167, -0.023568477481603622, -0.014526483602821827, 0.017511295154690742, 0.024088362231850624, -0.010077214799821377, 0.010267557576298714, 0.02224031463265419, 0.04314175248146057, -0.010039115324616432, -0.022048497572541237, -0.033489540219306946, 0.011430740356445312, -0.024332938715815544, 0.018360991030931473, -0.022779205814003944, -0.012378680519759655, -0.02429860457777977, -0.040642160922288895, 0.07413279265165329, 0.02772822231054306, 0.012770268134772778, -0.03751745820045471, -0.0333159901201725, -0.010394931770861149, -0.016171855852007866, 0.022736625745892525, -0.028483426198363304, -0.051760196685791016, -0.020147446542978287, 0.04351409152150154, 0.0195270124822855, 0.044448111206293106, -0.010928544215857983, -0.04261922091245651, 7.194072446806432e-33, 0.006811864674091339, -0.014019319787621498, 0.0058930679224431515, -0.03710402548313141, 0.04540861025452614, -0.034398164600133896, 0.02589624561369419, -0.005616419017314911, -0.057018328458070755, 0.005220551043748856, -0.033086147159338, 0.038376253098249435, -0.015452881343662739, 0.05324463173747063, 0.05021416395902634, -0.011911062523722649, 0.028031887486577034, 0.06410354375839233, 0.018643489107489586, 0.038786035031080246, 0.062166571617126465, 0.023751670494675636, 0.006976110860705376, 0.042727675288915634, 0.01605016179382801, 0.02965427190065384, -0.01202976331114769, 0.023756330832839012, -0.021086696535348892, -0.00286692613735795, -0.0060048880986869335, 0.026574622839689255, -0.008373354561626911, 0.009212853386998177, -0.041331253945827484, 0.0066466075368225574, -0.002196857240051031, -0.008485645987093449, -0.01137951947748661, -0.007844465784728527, 0.04942251369357109, 0.01340921875089407, -0.007174141705036163, 0.00021557595755439252, -0.0185235608369112, -0.003961948212236166, 0.01733606681227684, -0.002498382469639182, -0.004383876919746399, -0.00882382970303297, 0.000420611904701218, -0.002985397819429636, 0.00505076302215457, 0.049313995987176895, 0.04177948459982872, 0.004885661415755749, -0.00807331595569849, 0.023332400247454643, -0.01445775106549263, -0.0032896604388952255, 0.025052575394511223, 0.030673110857605934, -0.010835275053977966, 0.014528118073940277, -0.024478405714035034, 0.005509889218956232, 0.00603042496368289, 0.024062270298600197, -0.027908921241760254, -0.03119410201907158, -0.03921482339501381, -0.013788340613245964, 0.008096660487353802, 0.055326707661151886, 0.007406553253531456, -0.003872600616887212, -0.009946835227310658, -0.028974542394280434, 0.0035954054910689592, -0.003873417852446437, -0.034056130796670914, -0.020473498851060867, 0.009157382883131504, -0.0091050760820508, -0.01634357124567032, -0.00022207299480214715, -0.05754128843545914, 0.0011404750403016806, 0.022660300135612488, 0.02000814862549305, -0.028694432228803635, -0.012779038399457932, -0.023331886157393456, 0.025578418746590614, -0.012948072515428066, -1.2441670804719251e-8, 0.002732653636485338, -0.051707662642002106, -0.010430809110403061, 0.0016803907928988338, 0.05759654566645622, -0.023186998441815376, -0.03092585690319538, 0.009559625759720802, -0.04521407186985016, 0.011627561412751675, -0.01619117334485054, 0.016795197501778603, 0.031868431717157364, 0.043040961027145386, 0.04951242730021477, 0.009011520072817802, 0.045915525406599045, -0.001300695352256298, -0.00023474128101952374, -0.059289585798978806, 0.025677954778075218, 0.07547048479318619, -0.0034932757262140512, -0.004908796865493059, -0.018606647849082947, 0.028587650507688522, 0.05989374592900276, -0.06080840528011322, 0.008181151002645493, 0.016758287325501442, 0.055418334901332855, 0.01726989448070526, -0.04242930933833122, 0.015874164178967476, -0.019925668835639954, 0.012557052075862885, 0.024401824921369553, 0.07311257719993591, -0.011540408246219158, -0.04503212124109268, -0.03542139381170273, -0.03161206096410751, -0.018464088439941406, -0.009363509714603424, -0.02229016087949276, 0.0060313367284834385, -0.015538266859948635, 0.02201916091144085, 0.029961995780467987, -0.054867494851350784, 0.03757417947053909, -0.012911098077893257, 0.052057307213544846, -0.04943479970097542, -0.001689997618086636, -0.012840901501476765, -0.017911475151777267, 0.020382557064294815, -0.002362115541473031, 0.01209008228033781, 0.008919058367609978, -0.004476641770452261, 0.032805439084768295, 0.009873059578239918 ]
oracle-dbstart-oracle_home_listner-is-not-set-unable-to-auto-start-oracle-net-listener
https://markhneedham.com/blog/2012/01/26/oracle-dbstart-oracle_home_listner-is-not-set-unable-to-auto-start-oracle-net-listener
false
2012-01-07 17:14:41
Learning Android: java.lang.OutOfMemoryError: Java heap space with android-maven-plugin
[ "android" ]
[ "Android" ]
I've been trying to adapt my Android application to fit into the structure of the https://github.com/pivotal/RobolectricSample#readme[RobolectricSample] so that I can add some tests around my code but I was running into a problem when trying to deploy the application. To deploy the application you need to run the following command: [source,text] ---- mvn package android:deploy ---- Which was resulting in the following error: [source,text] ---- [INFO] UNEXPECTED TOP-LEVEL ERROR: [INFO] java.lang.OutOfMemoryError: Java heap space [INFO] at com.android.dx.rop.code.PlainInsn.withNewRegisters(PlainInsn.java:152) [INFO] at com.android.dx.ssa.NormalSsaInsn.toRopInsn(NormalSsaInsn.java:121) [INFO] at com.android.dx.ssa.back.SsaToRop.convertInsns(SsaToRop.java:342) [INFO] at com.android.dx.ssa.back.SsaToRop.convertBasicBlock(SsaToRop.java:323) [INFO] at com.android.dx.ssa.back.SsaToRop.convertBasicBlocks(SsaToRop.java:260) [INFO] at com.android.dx.ssa.back.SsaToRop.convert(SsaToRop.java:124) [INFO] at com.android.dx.ssa.back.SsaToRop.convertToRopMethod(SsaToRop.java:70) [INFO] at com.android.dx.ssa.Optimizer.optimize(Optimizer.java:102) [INFO] at com.android.dx.ssa.Optimizer.optimize(Optimizer.java:73) ---- I'd added a few dependencies to the original pom.xml file so I figured on of those must be causing the problem and eventually narrowed it down to be the twitter4j-core library which I had defined like this in the pom.xml file: [source,xml] ---- <dependency> <groupId>org.twitter4j</groupId> <artifactId>twitter4j-core</artifactId> <version>[2.2,)</version> </dependency> ---- I found a bug report for the http://code.google.com/p/maven-android-plugin/issues/detail?id=146[maven-android-plugin] which suggested that http://www.caucho.com/resin-3.0/performance/jvm-tuning.xtp[increasing the heap size] might solve the problem. That section of the pom.xml file ended up looking like this: [source,xml] ---- <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <version>3.0.0-alpha-13</version> <configuration> <sdk> <platform>10</platform> <path>/path/to/android-sdk</path> </sdk> <dex> <jvmArguments> <jvmArgument>-Xms256m</jvmArgument> <jvmArgument>-Xmx512m</jvmArgument> </jvmArguments> </dex> <undeployBeforeDeploy>true</undeployBeforeDeploy> </configuration> <extensions>true</extensions> </plugin> ---- That seemed to get rid of the problem but I also tried changing the plugin version to the latest one and that seemed to solve the problem as well without the need to add the JVM arguments: [source,xml] ---- <plugin> <groupId>com.jayway.maven.plugins.android.generation2</groupId> <artifactId>android-maven-plugin</artifactId> <configuration> <sdk> <platform>10</platform> <path>/path/to/android-sdk</path> </sdk> <undeployBeforeDeploy>true</undeployBeforeDeploy> </configuration> <extensions>true</extensions> </plugin> ---- The latest version is 3.0.2 from what I can tell.
null
null
[ -0.017520811408758163, -0.01762654446065426, -0.02520044706761837, 0.042446862906217575, 0.09960135817527771, 0.024270029738545418, 0.017549918964505196, -0.017724940553307533, -0.015721231698989868, -0.014102960005402565, -0.03474823012948036, -0.009514227509498596, -0.07372145354747772, -0.0041765738278627396, -0.0580502413213253, 0.054441966116428375, 0.09009517729282379, -0.0019496824825182557, -0.010871648788452148, 0.03277748078107834, 0.03788108378648758, 0.06369057297706604, 0.018719742074608803, 0.05309627577662468, 0.01202037651091814, 0.028068535029888153, 0.0369260311126709, 0.0008069993928074837, -0.06167290732264519, -0.02829538844525814, 0.018779391422867775, -0.03336278721690178, 0.0038661432918161154, -0.013195421546697617, 0.013137497939169407, 0.00802487600594759, -0.03969303518533707, 0.01163825299590826, -0.00791691243648529, 0.027951182797551155, -0.03688528388738632, 0.040569838136434555, -0.013370255939662457, -0.004223044496029615, -0.01673061214387417, 0.020334603264927864, -0.029888279736042023, 0.014364487491548061, -0.0308375284075737, -0.0393935851752758, -0.06840602308511734, 0.03728003427386284, -0.07352179288864136, -0.015360010787844658, 0.025210343301296234, 0.041192151606082916, 0.003366079181432724, -0.08246856927871704, 0.030965983867645264, -0.06187029927968979, -0.0023102189879864454, -0.022129179909825325, -0.015939220786094666, 0.02403155341744423, -0.0059787859208881855, -0.004111372400075197, 0.01813860796391964, 0.06241074949502945, -0.02233770489692688, -0.028931953012943268, -0.008996604010462761, 0.0000669411601847969, -0.01970532350242138, 0.007156113628298044, 0.023762298747897148, -0.03328705579042435, -0.003116770414635539, 0.07218871265649796, 0.005106861237436533, 0.038237813860177994, -0.02993478626012802, 0.0012553477426990867, 0.013833717443048954, 0.011349277570843697, 0.008992008864879608, -0.030770936980843544, -0.03233044967055321, -0.014750671572983265, -0.04424814507365227, 0.0382099486887455, 0.04266910254955292, -0.01547215599566698, 0.004418577533215284, 0.05108007416129112, 0.009590636007487774, 0.016597816720604897, -0.003858921118080616, -0.016615400090813637, -0.017666690051555634, 0.0273334551602602, 0.009979062713682652, 0.016312070190906525, 0.033830322325229645, 0.02191879227757454, -0.05771204084157944, -0.021291768178343773, -0.021251019090414047, -0.0005389149882830679, -0.01838861219584942, -0.006902097724378109, -0.01928306184709072, 0.04872345179319382, 0.0011599855497479439, -0.02680935151875019, -0.09144282341003418, 0.06865273416042328, 0.00794744398444891, -0.03234125301241875, -0.018829816952347755, 0.002716901944950223, 0.0731109008193016, 0.057337988168001175, 0.00044481069198809564, 0.07296494394540787, -0.010563177987933159, 0.05295059084892273, -0.018446803092956543, 0.04252542182803154, -0.025091253221035004, -0.051218416541814804, -0.02907661348581314, 0.020486250519752502, 0.043066784739494324, 0.009849063120782375, -0.013467803597450256, -0.004877731669694185, 0.0035514626652002335, 0.00910299550741911, 0.04313821345567703, -0.003691459773108363, -0.040598075836896896, 0.00929760280996561, 0.00970138143748045, -0.008787726983428001, 0.018739650025963783, 0.009089838713407516, 0.010543402284383774, -0.020692069083452225, -0.04672626405954361, 0.05415455996990204, 0.018152670934796333, 0.03684711456298828, 0.02417585998773575, -0.0319928415119648, 0.01415928266942501, 0.08402673155069351, 0.007653893902897835, 0.01213882677257061, -0.015688445419073105, 0.008030267432332039, 0.017243240028619766, 0.01388504821807146, -0.04561077058315277, 0.05424369499087334, 0.017548827454447746, -0.03138994798064232, 0.025717489421367645, 0.040540192276239395, -0.012659557163715363, 0.005962836090475321, -0.06658603996038437, -0.09729734808206558, 0.04704803600907326, -0.029401225969195366, -0.03334120288491249, 0.01052755769342184, 0.06840460747480392, 0.03167811408638954, 0.02796955592930317, 0.006512409076094627, -0.0801684707403183, 0.03417528048157692, 0.01888190768659115, -0.012293693609535694, 0.033761631697416306, -0.004301551263779402, 0.08900052309036255, 0.01388695277273655, -0.011087869293987751, 0.008257051929831505, -0.08514698594808578, -0.104747474193573, 0.023373562842607498, -0.02429153025150299, 0.05512407794594765, -0.010748249478638172, -0.042118627578020096, 0.074709951877594, 0.02247859165072441, 0.004497782792896032, 0.023098785430192947, 0.024813441559672356, -0.00043041471508331597, -0.04742171987891197, -0.05075715109705925, 0.028420256450772285, 0.06847301870584488, 0.002227611606940627, -0.017909811809659004, 0.0244604405015707, -0.005393797531723976, -0.026354331523180008, 0.019238963723182678, -0.02506513148546219, 0.08124832808971405, 0.01079970970749855, 0.011907082051038742, -0.02608831413090229, 0.07887513935565948, -0.04950093850493431, -0.003807045053690672, -0.01357236783951521, -0.011804583482444286, 0.02047520875930786, -0.008210605010390282, 0.11598917841911316, 0.04077485203742981, -0.014645094983279705, -0.05487735942006111, 0.0500645637512207, -0.004507729317992926, -0.052853308618068695, -0.007650356274098158, -0.01065157912671566, -0.009856248274445534, -0.004563681315630674, -0.024942750111222267, -0.026274612173438072, -0.002088867360725999, -0.010781981982290745, -0.004526425618678331, 0.06736772507429123, -0.024891404435038567, 0.05525082349777222, 0.006568355951458216, 0.00825122557580471, 0.009577088989317417, -0.041769757866859436, -0.06136220321059227, 0.015672238543629646, 0.013882027007639408, -0.0020047593861818314, 0.06785407662391663, -0.01057751476764679, -0.019697614014148712, -0.023605402559041977, -0.04544670134782791, 0.0060220686718821526, 0.04644835740327835, 0.0514976792037487, -0.006988412234932184, 0.06005100905895233, -0.0230953861027956, -0.0006133861024864018, -0.03614345192909241, -0.05224481225013733, 0.0091614481061697, 0.016676144674420357, 0.00691624078899622, 0.05766284838318825, 0.051632110029459, 0.016596179455518723, -0.0024971128441393375, -0.01027371734380722, 0.032472673803567886, -0.008106797002255917, 0.029896704480051994, -0.002203174401074648, -0.020803174003958702, -0.03538981080055237, 0.008050704374909401, 0.035773057490587234, -0.008411665447056293, -0.012188167311251163, 0.016876813024282455, -0.08526907116174698, 0.06342242658138275, -0.0848129615187645, -0.040903232991695404, 0.020242847502231598, 0.015554065816104412, 0.025885848328471184, 0.029349274933338165, -0.01535183284431696, 0.06059815734624863, 0.0029252402018755674, 0.02723734825849533, 0.01395915262401104, 0.032300617545843124, 0.017033405601978302, 0.010458922013640404, 0.006981622893363237, 0.00076630077091977, -0.01214798353612423, -0.006247834302484989, -0.05432424694299698, -0.0017885848646983504, -0.027639610692858696, -0.2702848017215729, 0.03276661038398743, -0.013506507501006126, -0.04198954254388809, 0.03531286120414734, -0.01072010863572359, 0.016552496701478958, -0.045444656163454056, -0.01202765479683876, 0.017089052125811577, -0.0065036341547966, -0.04805811494588852, 0.0277368426322937, 0.04018068686127663, 0.001832606503739953, -0.0043454235419631, 0.01736702211201191, -0.03397413715720177, 0.022433118894696236, 0.031514108180999756, 0.017492689192295074, -0.05888719856739044, 0.03559131920337677, 0.04158518835902214, 0.021963704377412796, 0.0522768460214138, -0.0771418884396553, 0.05105263739824295, -0.031604692339897156, -0.036803994327783585, 0.006332040764391422, -0.023167582228779793, -0.00509907491505146, -0.00572202866896987, -0.014555285684764385, 0.005361849907785654, -0.0029236022382974625, 0.024724382907152176, -0.002111104317009449, 0.02017858251929283, -0.020725959911942482, -0.07016108185052872, -0.0012293518520891666, -0.006821921560913324, 0.07317237555980682, -0.008002272807061672, -0.07534357160329819, 0.002065979177132249, -0.03214513510465622, 0.07396948337554932, -0.0267510786652565, -0.017182299867272377, 0.009860271587967873, 0.049953632056713104, -0.0007602500263601542, -0.03651367872953415, 0.002431049942970276, 0.0047239395789802074, -0.029124978929758072, -0.03246800974011421, 0.02262583188712597, -0.0321778766810894, -0.03230222687125206, -0.052390966564416885, -0.0356760248541832, -0.05870852991938591, -0.02540707029402256, -0.006276486907154322, 0.04453916475176811, 0.03632045537233353, -0.038896527141332626, 0.0005042515695095062, 0.005079700145870447, -0.1049073189496994, -0.006054730154573917, -0.039595406502485275, -0.05448126792907715, -0.02768930234014988, -0.04945928603410721, 0.046953294426202774, -0.03505568578839302, -0.030371377244591713, 0.01885758712887764, -0.007099739275872707, -0.006493890192359686, 0.00017651212692726403, -0.01129705086350441, -0.000051617644203361124, -0.001955155748873949, -0.016743440181016922, 0.05500095337629318, -0.04621497169137001, -0.03328332304954529, -0.049687083810567856, 0.003822838421911001, 0.025212112814188004, 0.003975333645939827, 0.00908985547721386, -0.008659755811095238, 0.039229292422533035, -0.004986293148249388, -0.034522224217653275, 0.000036758552596438676, -0.030051203444600105, 0.0029301063623279333, -0.030566057190299034, -0.07356178015470505, -0.020367173478007317, -0.010184316895902157, 0.034716907888650894, -0.0018370050238445401, -0.04540874809026718, 0.0145881287753582, -0.05548223853111267, -0.043566882610321045, -0.006691470742225647, 0.007403547875583172, 0.03277001529932022, 0.0020170281641185284, -0.028089988976716995, -0.08462518453598022, 0.013318373821675777, 0.023562856018543243, -0.032732006162405014, -0.026647867634892464, -0.018555723130702972, -0.022612858563661575, 0.009612592868506908, -0.016325796023011208, -0.013148145750164986, -0.011228054761886597, 0.04330504313111305, 0.04566795006394386, -0.01191052794456482, -0.010001955553889275, -0.012933329679071903, -0.04021006077528, -0.05217774957418442, 0.020085254684090614, -0.0007757970597594976, -0.0038397428579628468, -0.008763877674937248, 0.02491218037903309, -0.006356594152748585, 0.05249291658401489, -0.00952131487429142, 0.06002470850944519, 0.00749977258965373, -0.012193997390568256, 0.015572530217468739, 0.017631089314818382, -0.049845993518829346, 0.04034833610057831, -0.050985757261514664, -0.037654370069503784, -0.018230080604553223, 0.03515787050127983, -0.03936495631933212, -0.005081950221210718, -0.031065883114933968, 0.00790964812040329, -0.05117185041308403, -0.0040224515832960606, 0.0017583960434421897, -0.02019503340125084, 0.07945285737514496, 0.01312386617064476, -0.0269917119294405, -0.012014193460345268, -0.02337191253900528, -0.016199829056859016, -0.01679607294499874, -0.03244682773947716, 0.018472658470273018, -0.016115674749016762, 0.01846582442522049, 0.04918232187628746, -0.006402798928320408, 0.026175547391176224, -0.0032487083226442337, -0.039823614060878754, -0.0425727404654026, 0.016382290050387383, -0.0009458333952352405, 0.03550780564546585, 0.022899862378835678, -0.032364372164011, -0.015877090394496918, -0.0315428152680397, -0.05179215222597122, -0.034113600850105286, 0.028809791430830956, -0.020307376980781555, 0.010161635465919971, -0.0052506993524730206, -0.06798011064529419, 0.03591145575046539, 0.015730055049061775, 0.018964514136314392, 0.014113923534750938, 0.006369609851390123, 0.0160730741918087, -0.03966504707932472, 0.04210217297077179, 0.10993217676877975, -0.07544048130512238, -0.010807985439896584, 0.01331451814621687, 0.038902875036001205, -0.0001402884372510016, -0.022124096751213074, -0.023135114461183548, -0.00565533060580492, -0.042692385613918304, 0.020396219566464424, -0.03649230673909187, -0.062306959182024, -0.0032545144204050303, 0.015622586943209171, -0.016576632857322693, -0.02516699954867363, -0.00864293985068798, 0.001247784704901278, -0.01819104515016079, -0.018985169008374214, -0.002090624300763011, -0.015239677391946316, 0.03409066051244736, 0.026948507875204086, -0.018242649734020233, 0.009822679683566093, -0.034040119498968124, 0.026546942070126534, 0.030705628916621208, -0.0009313159389421344, -0.00914817675948143, -0.056787777692079544, 0.00983105693012476, 0.017924407497048378, 0.04064708948135376, 0.023786917328834534, 0.011966945603489876, -0.016278766095638275, 0.009566891007125378, -0.0423383004963398, 0.026679618284106255, 0.015295456163585186, -0.0348365493118763, 0.022754261270165443, 0.06856033951044083, 0.018287857994437218, 0.043058473616838455, -0.0398639515042305, 0.017328863963484764, 0.07841210067272186, -0.03631658852100372, -0.03861656412482262, -0.013329277746379375, -0.05254253372550011, 0.03708280995488167, 0.02745368517935276, 0.028893882408738136, -0.0350630097091198, 0.03510164096951485, 0.021739086136221886, -0.009135112166404724, 0.0375952385365963, -0.016868529841303825, 0.03576025366783142, -0.02875218354165554, -0.008045309223234653, -0.06490014493465424, 0.006852457299828529, 0.03354717418551445, -0.023326586931943893, -0.0028061512857675552, -0.010158193297684193, -0.04776676744222641, 0.006979114376008511, -0.04113464429974556, -0.014603208750486374, 0.025990044698119164, -0.009105144068598747, -0.020689116790890694, 0.0229622982442379, -0.05156473442912102, 0.039268966764211655, 0.007748828269541264, -0.048545315861701965, -0.022456854581832886, -0.019417280331254005, 0.0684739500284195, 0.028104936704039574, 0.01186769176274538, -0.02907269448041916, 0.010964670218527317, 0.08573571592569351, 0.014966309070587158, 0.00010294307139702141, 0.029528476297855377, 0.006876655388623476, 0.04103660210967064, 0.03903738781809807, 0.006194012239575386, -0.027198612689971924, 0.032224517315626144, -0.013244674541056156, -0.059978388249874115, 0.04345707222819328, -0.0068877339363098145, -0.005632193759083748, -0.0371943898499012, 0.04321423918008804, 0.02969374693930149, -0.02557806670665741, -0.03300592675805092, 0.003717500250786543, -0.05406682938337326, -0.035606443881988525, -0.050629593431949615, 0.012964798137545586, -0.021834859624505043, 0.05405151844024658, -0.039103325456380844, 0.0054142107255756855, 0.0980566069483757, 0.00581181887537241, -0.0288575179874897, 0.004458668176084757, 0.07262671738862991, 0.07126554846763611, 0.018060335889458656, 0.0029048158321529627, 0.052645307034254074, -0.002615584759041667, -0.038263991475105286, 0.027127088978886604, -0.023247282952070236, -0.015211083926260471, -0.03632466867566109, 0.0032570897601544857, 0.0776095762848854, -0.0020296748261898756, 0.06138654425740242, -0.0128431785851717, -0.005296350456774235, 0.02370341867208481, 0.04425831884145737, 0.01946333982050419, 0.023094626143574715, -0.0009809277253225446, 0.022468948736786842, -0.01884271577000618, -0.023509539663791656, 0.005572636146098375, 0.00681868614628911, -0.023186666890978813, 0.010358727537095547, -0.021575191989541054, 0.012535255402326584, 0.02581905759871006, 0.016941331326961517, 0.07282429933547974, 0.004540753085166216, -0.0008815910550765693, -0.00647230539470911, 0.020809678360819817, 0.0076330979354679585, -0.006420607212930918, -0.02429184876382351, -0.0398506224155426, 0.0029001052025705576, -0.01953776925802231, -0.01911252737045288, 0.005762833170592785, -0.029242021963000298, 0.051665157079696655, -0.019484153017401695, 0.046614523977041245, 0.028440149500966072, 0.026239007711410522, -0.050862859934568405, -0.04924142360687256, -0.0633704736828804, -0.020486988127231598, -0.0402449294924736, -0.004806837532669306, 0.014340363442897797, 0.0032934655901044607, -0.05136357247829437, 0.011081892065703869, -0.019964050501585007, -0.021082261577248573, 0.037679534405469894, -0.04032101109623909, -0.010402411222457886, 0.009832237847149372, 0.0015832819044589996, 0.018062690272927284, 0.03479764610528946, 0.0662132054567337, 0.010758946649730206, 0.007853975519537926, -0.0032263249158859253, 0.012780297547578812, 0.044047895818948746, 0.019132360816001892, 0.037823982536792755, -0.08016324043273926, 0.00043769655167125165, 0.03667604178190231, -0.02118443325161934, -0.03792468085885048, -0.0022318384144455194, 0.0675266832113266, 0.008505179546773434, 0.0490250438451767, -0.031162410974502563, -0.01205570250749588, -0.04566719010472298, -0.008092604577541351, 0.002152958419173956, 0.02101827971637249, 0.030490292236208916, -0.019632849842309952, 0.0820745974779129, 0.06971032917499542, -0.03341986611485481, -0.04883814603090286, -0.0026582591235637665, 0.023018259555101395, -0.016116831451654434, -0.005510695278644562, -0.01880555786192417, -0.060949720442295074, -0.08688822388648987, 0.0032361189369112253, 0.022311197593808174, -0.05881820246577263, -0.052569806575775146, -0.0009009452187456191, 0.01781553588807583, -0.044473350048065186, 0.011816044338047504, -0.024129683151841164, 0.00012849329505115747, -0.03790813311934471, -0.03315400332212448, 0.005938251502811909, 0.01706196926534176, 0.012193838134407997, 0.011516441591084003, 0.022756043821573257, -0.029046164825558662, 0.0006755947833880782, 0.0031189017463475466, 0.04546571150422096, 0.058443110436201096, -0.013508743606507778, -0.016524137929081917 ]
[ -0.07467402517795563, -0.00893328245729208, -0.00274666678160429, -0.0740695670247078, 0.0027312671300023794, -0.057310398668050766, -0.018814265727996826, 0.025191783905029297, 0.012880024500191212, -0.0318516343832016, 0.042313769459724426, -0.05714081972837448, 0.049943435937166214, -0.01690267212688923, 0.09056918323040009, -0.0007699980051256716, 0.012842882424592972, -0.04494936391711235, 0.005757693666964769, 0.0069908080622553825, 0.06514908373355865, -0.004323827568441629, 0.008397375233471394, -0.03497973084449768, 0.035386715084314346, 0.05595223605632782, 0.029996566474437714, -0.039376869797706604, -0.011317922733724117, -0.17010976374149323, 0.015350370667874813, 0.000839164771605283, 0.03236869350075722, -0.012670319527387619, -0.023399541154503822, 0.06301388144493103, -0.004202866926789284, 0.03272196277976036, -0.0015825449954718351, 0.06221286579966545, -0.02934771217405796, 0.04117513447999954, -0.03968220576643944, -0.023759808391332626, -0.0037481607869267464, -0.005266804248094559, -0.014539284631609917, -0.03132817521691322, -0.004664835520088673, -0.025237541645765305, -0.045889802277088165, 0.02754122018814087, 0.03297898918390274, 0.000554518832359463, -0.023022787645459175, 0.004266142845153809, 0.05308166891336441, 0.09968341141939163, 0.030544864013791084, 0.060300134122371674, 0.025786979123950005, 0.013813156634569168, -0.1198345348238945, 0.09936739504337311, 0.026780476793646812, 0.0018281037919223309, -0.009179740212857723, -0.036260657012462616, -0.0021959475707262754, 0.06101152300834656, -0.001916098059155047, 0.016029469668865204, 0.02708582580089569, 0.08088196069002151, 0.008853066712617874, 0.036533355712890625, -0.004384768195450306, -0.0005005259881727397, 0.004553220700472593, -0.04003061354160309, -0.05366651341319084, -0.04651845619082451, -0.018600882962346077, 0.007318778894841671, -0.0374554842710495, 0.014942225068807602, -0.0011273700511083007, 0.0729038342833519, 0.029766922816634178, 0.05589447170495987, 0.034447476267814636, 0.01476465817540884, 0.06211622804403305, 0.016600240021944046, -0.09622856229543686, 0.01705329865217209, -0.029506947845220566, -0.009737773798406124, -0.07510732114315033, 0.4363085627555847, -0.008731609210371971, -0.007726903539150953, 0.04192708805203438, 0.055415377020835876, -0.004267281852662563, -0.028216484934091568, -0.023187784478068352, -0.024485575035214424, 0.008508699014782906, -0.027143046259880066, 0.005109014455229044, -0.028999879956245422, 0.03844767063856125, -0.04753945395350456, 0.005089307203888893, 0.032137516885995865, 0.017345363274216652, 0.005282244645059109, -0.028177136555314064, 0.04046526923775673, -0.04061460867524147, -0.00573829235509038, 0.004421382676810026, 0.014854796230793, 0.01575709879398346, -0.024755004793405533, -0.01112507376819849, 0.03997251018881798, 0.05098961293697357, -0.00368297821842134, 0.039960406720638275, -0.0254499688744545, -0.12142961472272873, -0.01088572759181261, 0.03130493685603142, 0.023656409233808517, 0.051678407937288284, -0.051110025495290756, -0.011313959024846554, 0.006228419486433268, -0.013415919616818428, -0.0481392927467823, 0.0510658361017704, -0.021578604355454445, -0.04692404717206955, 0.11217159777879715, -0.0011630863882601261, -0.019834455102682114, -0.04540209472179413, -0.03587375208735466, -0.03235773369669914, 0.04643413797020912, 0.04139215126633644, -0.01744639128446579, 0.0014507515588775277, 0.004359545186161995, 0.0479828342795372, -0.019605327397584915, -0.08604210615158081, -0.004933640826493502, -0.0006686256383545697, 0.0013747323537245393, -0.041482966393232346, 0.05279131233692169, 0.03698498383164406, -0.08742015808820724, -0.03035222552716732, 0.016081111505627632, -0.018466725945472717, -0.002966750878840685, -0.015663810074329376, 0.03470328822731972, -0.021590404212474823, -0.020585548132658005, 0.022718805819749832, -0.03317560255527496, 0.0012589385733008385, -0.02914815954864025, -0.0007094073225744069, 0.028976107016205788, 0.024252599105238914, 0.002361465245485306, -0.04424116387963295, -0.042358431965112686, -0.0332951582968235, -0.09728222340345383, -0.07231120765209198, -0.006924910936504602, -0.01230710931122303, -0.07487988471984863, -0.07508490979671478, 0.004975738003849983, -0.07185566425323486, 0.05298985540866852, -0.005662962794303894, -0.01602141745388508, 0.0028946346137672663, -0.022902289405465126, 0.014359917491674423, -0.0564136803150177, 0.04837286099791527, 0.043945442885160446, -0.03540397062897682, 0.03390991687774658, -0.031785886734724045, 0.018569311127066612, 0.021366942673921585, -0.0323379710316658, 0.03185854107141495, 0.03875104710459709, -0.03809686750173569, -0.020410344004631042, 0.034730464220047, 0.06576164811849594, 0.001140219741500914, -0.01808267831802368, -0.022047989070415497, 0.009324516169726849, 0.056602951139211655, -0.006818355526775122, -0.031962934881448746, 0.004506342578679323, 0.00025136987096630037, -0.34783172607421875, -0.024087300524115562, 0.005332116968929768, -0.03898445889353752, -0.0631004124879837, 0.0034362899605184793, 0.015622593462467194, -0.04263859614729881, 0.023356782272458076, -0.008732595480978489, 0.09807060658931732, -0.03651348873972893, 0.00474387314170599, -0.0652846172451973, -0.011259740218520164, -0.027421507984399796, -0.05289946869015694, 0.022152483463287354, 0.011444863863289356, -0.007627060171216726, 0.0016758143901824951, -0.03101339191198349, 0.022532325237989426, -0.03335884213447571, 0.048786479979753494, 0.0026345043443143368, 0.08437587320804596, 0.03138463571667671, 0.06082760542631149, -0.059459149837493896, 0.05587191879749298, 0.05223225802183151, 0.004567864816635847, -0.1281607449054718, 0.00781816802918911, -0.043351784348487854, -0.0005224128253757954, 0.010447232984006405, 0.014944728463888168, 0.011759958229959011, -0.08299045264720917, 0.03164614737033844, -0.05186212435364723, -0.0477452278137207, 0.009675120934844017, -0.01539604738354683, -0.01784871332347393, -0.03628670051693916, 0.02315039001405239, 0.08096475154161453, 0.007491323631256819, -0.006816455628722906, 0.032583776861429214, 0.01845211535692215, 0.054287463426589966, -0.003159566083922982, -0.04021306708455086, -0.015962526202201843, 0.0055409991182386875, -0.02042837254703045, -0.012933701276779175, 0.04426009580492973, 0.03864602372050285, -0.05818120390176773, -0.012657830491662025, -0.0027954899705946445, 0.02245323546230793, 0.004881461150944233, -0.00429923553019762, -0.024657918140292168, -0.02857455238699913, 0.09689901769161224, -0.007946808822453022, 0.01928054727613926, 0.04480999708175659, 0.04016615450382233, 0.02208496816456318, -0.007073137443512678, 0.019285444170236588, -0.013322987593710423, -0.0034450364764779806, 0.014647040516138077, 0.04982364922761917, -0.015449789352715015, -0.029511217027902603, 0.04917968437075615, -0.0003677462518680841, -0.020029988139867783, 0.03568528592586517, -0.006613107398152351, -0.009446284733712673, -0.010554646141827106, -0.014190413057804108, -0.0534115731716156, 0.06366530060768127, -0.02455550990998745, -0.24411535263061523, 0.04158719256520271, 0.037828221917152405, 0.05732299014925957, -0.02980010025203228, -0.0003788943577092141, 0.03581351041793823, -0.018915066495537758, -0.035583335906267166, 0.03534997999668121, -0.03357040509581566, 0.02137528732419014, -0.007639924064278603, -0.0313352607190609, 0.055943217128515244, -0.021473007276654243, 0.044787004590034485, 0.015802329406142235, 0.0470346175134182, -0.029435625299811363, -0.005594700574874878, -0.03693058714270592, 0.12670201063156128, -0.010401878505945206, 0.005152365192770958, 0.059250012040138245, -0.02311505563557148, 0.0330374576151371, 0.0825207531452179, 0.04574144631624222, -0.023654434829950333, -0.0029871934093534946, 0.045843906700611115, 0.019583391025662422, 0.01074488926678896, -0.03921738639473915, 0.02422167733311653, -0.01311435829848051, 0.009060441516339779, 0.029320593923330307, -0.007724480237811804, 0.03660041466355324, -0.030791688710451126, 0.08166228979825974, 0.08732443302869797, -0.020992085337638855, -0.015659557655453682, -0.008224939927458763, -0.05174446478486061, -0.010250934399664402, -0.042975395917892456, -0.05986136943101883, -0.035166576504707336, 0.006933948490768671, -0.0034246263094246387, 0.07562880218029022, 0.02677224390208721, -0.053250156342983246, -0.02342221885919571, -0.008097736164927483, 0.008212966844439507, -0.04121539741754532, 0.11679810285568237, -0.03305845335125923, 0.04182475432753563 ]
[ 0.02626720815896988, 0.014875621534883976, 0.004735804628580809, -0.05454188585281372, 0.010015281848609447, -0.03316182270646095, 0.004615577403455973, 0.048891957849264145, -0.009601006284356117, -0.01451554149389267, 0.036533430218696594, 0.0005296392482705414, 0.08809254318475723, -0.011905680410563946, 0.007333480753004551, -0.03742334619164467, 0.023284107446670532, 0.025899935513734818, 0.03394597768783569, 0.04943467676639557, 0.00409852946177125, 0.02864760160446167, 0.01191895455121994, -0.02759408950805664, 0.024676229804754257, 0.05482138693332672, -0.003866425948217511, -0.0306025892496109, 0.002187007572501898, -0.10791373252868652, 0.0001803327031666413, 0.008328539319336414, 0.02238978073000908, -0.014763126149773598, -0.002703905338421464, 0.022228237241506577, -0.028429972007870674, 0.02141566015779972, -0.04353410005569458, -0.0059521556831896305, 0.02302049845457077, -0.0034971842542290688, 0.025947893038392067, 0.006082707550376654, -0.05087060108780861, -0.03861024230718613, 0.03330459073185921, -0.047766782343387604, -0.005493339151144028, -0.008395782671868801, -0.02433052472770214, -0.016182729974389076, 0.02262141741812229, -0.0046468316577374935, -0.03890956565737724, 0.018733743578195572, -0.03425652161240578, 0.022744717076420784, 0.028224069625139236, 0.0421166867017746, 0.032486457377672195, 0.014088042080402374, -0.061005156487226486, -0.005024229176342487, 0.024132590740919113, -0.004921704530715942, 0.021088341251015663, -0.025667091831564903, 0.00047022217768244445, 0.01520012877881527, 0.020319605246186256, 0.019655678421258926, 0.004680543672293425, -0.008917844854295254, -0.019356414675712585, 0.006867010146379471, 0.025565560907125473, 0.00002165424666600302, -0.00491347024217248, -0.019386960193514824, -0.05043654516339302, 0.014329874888062477, -0.03416880592703819, 0.039428435266017914, 0.0010486225364729762, 0.016535824164748192, 0.0044897510670125484, 0.011640745215117931, -0.009010620415210724, 0.06516193598508835, -0.004960787948220968, 0.04875774681568146, -0.03956383839249611, -0.012122963555157185, -0.09103100001811981, -0.014452246017754078, -0.049790941178798676, -0.03778284043073654, -0.009239805862307549, 0.8231264352798462, 0.026906108483672142, 0.0614924319088459, 0.032008737325668335, -0.010603485628962517, -0.0035373030696064234, -0.016723446547985077, 0.0029175749514251947, -0.020597878843545914, -0.012542199343442917, 0.005771893076598644, 0.025329025462269783, -0.0017977231182157993, 0.044112492352724075, 0.02317006140947342, 0.03319718316197395, 0.03714679554104805, 0.007475500460714102, -0.000973765563685447, 0.025887107476592064, 0.03780607506632805, -0.005168712232261896, -0.03994547575712204, 0.004701448604464531, -0.0014983544824644923, 0.030400268733501434, -0.1217460036277771, -0.02981201745569706, -7.148556570858624e-33, 0.03439922630786896, 0.004980551078915596, 0.040894851088523865, -0.011504764668643475, -0.022600101307034492, -0.008246434852480888, 0.008523327298462391, 0.004354424308985472, 0.0083184028044343, -0.05203739181160927, -0.000599249848164618, -0.019142385572195053, -0.011847492307424545, -0.030734287574887276, 0.0005010171444155276, -0.05092373117804527, 0.014564432203769684, 0.051524121314287186, 0.01506870612502098, 0.03492952510714531, -0.00829759519547224, 0.024047357961535454, -0.024680690839886665, -0.004403518512845039, -0.009564084000885487, 0.04416143149137497, 0.05709845945239067, 0.015993837267160416, 0.022232338786125183, -0.03878528252243996, -0.03750147670507431, -0.011282797902822495, -0.031076865270733833, -0.030858324840664864, 0.02208768017590046, -0.060868456959724426, -0.04749136418104172, -0.01422081608325243, 0.00489465519785881, -0.02166150137782097, -0.05720488727092743, -0.0068695261143147945, -0.022328438237309456, 0.009366853162646294, -0.009985511191189289, 0.0013503424124792218, 0.025586361065506935, 0.006362339947372675, 0.0014083030400797725, -0.016688935458660126, 0.01464754343032837, -0.018455345183610916, 0.009681914933025837, -0.02345077507197857, -0.038161735981702805, -0.0026762066408991814, -0.023968681693077087, 0.04339827224612236, -0.008008632808923721, 0.035961706191301346, -0.006365290842950344, 0.0007062039221636951, -0.014438513666391373, 0.019003070890903473, 0.02223525568842888, 0.008223169483244419, -0.014718031510710716, -0.04274493083357811, -0.01845751516520977, 0.002962455153465271, -0.03291056305170059, -0.0677662044763565, 0.02366453967988491, 0.007545800413936377, 0.0267756637185812, 0.004374880343675613, -0.00023799994960427284, 0.0219031423330307, -0.01677783951163292, -0.008722620084881783, -0.030995450913906097, -0.01379723846912384, 0.00818908866494894, -0.03905073180794716, -0.023606576025485992, 0.02465158700942993, 0.025165988132357597, -0.039107199758291245, -0.013090468011796474, 0.032394543290138245, 0.036657869815826416, 0.005060318857431412, -0.01005629263818264, 0.0009032649104483426, -0.06244150921702385, 7.319272146060606e-33, -0.04518318548798561, -0.024210896342992783, 0.0013555620098486543, -0.008864984847605228, 0.022029755637049675, -0.012170379981398582, -0.01189518067985773, 0.01095016859471798, -0.05082320794463158, 0.018340187147259712, -0.03765862435102463, -0.0017723175697028637, -0.0009338138625025749, -0.028312772512435913, 0.051686421036720276, 0.00028255407232791185, 0.07481040805578232, -0.0332297682762146, 0.004833864979445934, -0.004792673513293266, 0.022901251912117004, 0.03120921552181244, 0.03296339884400368, 0.02922375127673149, 0.019231727346777916, 0.02736261673271656, -0.011094692163169384, 0.05463208258152008, 0.014035257510840893, 0.0023447994608432055, 0.0473780520260334, 0.012977978214621544, -0.01582021452486515, 0.009534509852528572, -0.03511898219585419, 0.027731219306588173, -0.03090510703623295, -0.01750081218779087, 0.02299525961279869, -0.003563116304576397, 0.029523029923439026, -0.06111101806163788, 0.04850868880748749, 0.035507503896951675, 0.025900881737470627, -0.05497908219695091, 0.00007148927397793159, 0.001251343754120171, 0.0119641637429595, 0.00901474803686142, -0.0026367572136223316, 0.035683345049619675, 0.020242715254426003, -0.026205813512206078, 0.030656566843390465, -0.020168516784906387, -0.01460382342338562, -0.002240385627374053, -0.01726093515753746, -0.014618249610066414, -0.009485253132879734, -0.03452688455581665, 0.010876068845391273, 0.013318833895027637, -0.057172756642103195, -0.0038607181049883366, 0.031638551503419876, 0.019672174006700516, -0.041412778198719025, 0.031956229358911514, 0.005766319110989571, -0.02594241127371788, -0.012562309391796589, 0.035926494747400284, 0.04141132906079292, 0.0008505145669914782, -0.003184602130204439, -0.004528313409537077, -0.05020470544695854, -0.025790734216570854, -0.00007842319610062987, 0.06733987480401993, -0.04138685390353203, -0.03167473152279854, 0.02384699508547783, -0.02407265082001686, -0.03172678127884865, 0.025854462757706642, 0.013729608617722988, -0.0013150216545909643, -0.004242434166371822, 0.010312894359230995, -0.014445745386183262, 0.014681020751595497, -0.005539142992347479, -1.2737964460995954e-8, 0.0575437992811203, 0.023316623643040657, 0.007574025541543961, 0.005423992872238159, -0.0009900071891024709, -0.007990103214979172, -0.024142369627952576, -0.01209105085581541, 0.009899185970425606, 0.005299178883433342, 0.03191126510500908, -0.028242336586117744, 0.005745997186750174, 0.03328990936279297, 0.037949420511722565, -0.009333432652056217, -0.010028410702943802, -0.015010357834398746, -0.001994555816054344, -0.003939933143556118, 0.0028489893302321434, 0.023174379020929337, -0.03593488037586212, 0.040601663291454315, 0.029271947219967842, 0.034240078181028366, 0.01664607971906662, -0.05587718263268471, -0.005703593138605356, -0.0017471452010795474, 0.003658772213384509, -0.011674784123897552, -0.04525788128376007, -0.02661845088005066, -0.014779716730117798, 0.03224978223443031, 0.03735220804810524, -0.004612034186720848, 0.024840233847498894, 0.02691144496202469, -0.04186456650495529, 0.025814779102802277, -0.0014373963931575418, -0.01856483891606331, -0.06011149659752846, -0.01591482385993004, -0.04586130380630493, 0.008008730597794056, 0.03737476468086243, -0.0043997494503855705, -0.043116722255945206, -0.016004500910639763, -0.04841874539852142, -0.0169090386480093, 0.008158782497048378, 0.010605847463011742, -0.004274984821677208, -0.02896091528236866, -0.003038346068933606, 0.00035582896089181304, 0.03357313573360443, 0.007015001028776169, -0.046123307198286057, -0.028790824115276337 ]
learning-android-java-lang-outofmemoryerror-java-heap-space-with-android-maven-plugin
https://markhneedham.com/blog/2012/01/07/learning-android-java-lang-outofmemoryerror-java-heap-space-with-android-maven-plugin
false
2012-01-08 20:56:45
Learning Android: Getting android-support jar/compatability package as a Maven dependency
[ "android" ]
[ "Android" ]
In the app I'm working on I make use of the http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html[ViewPager class] which is only available in the compatibility package from revisions 3 upwards. Initially I followed the http://developer.android.com/sdk/compatibility-library.html[instructions on the developer guide] to get hold of the jar but now that I'm trying to adapt my code to fit the https://github.com/pivotal/RobolectricSample#readme[RobolectricSample], http://www.markhneedham.com/blog/2012/01/07/learning-android-java-lang-outofmemoryerror-java-heap-space-with-android-maven-plugin/[as I mentioned in my previous post], I needed to hook it up as a Maven dependency. I added the dependency to my pom.xml like this: [source,xml] ---- <dependency> <groupId>android.support</groupId> <artifactId>compatibility-v4</artifactId> <version>r6</version> </dependency> ---- But when I tried to resolve the dependencies (via 'mvn test') I ended up with this error: [source,text] ---- Downloading: http://repo1.maven.org/maven2/android/support/compatibility-v4/r6/compatibility-v4-r6.pom [WARNING] The POM for android.support:compatibility-v4:jar:r6 is missing, no dependency information available Downloading: http://repo1.maven.org/maven2/android/support/compatibility-v4/r6/compatibility-v4-r6.jar [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1.878s [INFO] Finished at: Sun Jan 08 20:42:17 GMT 2012 [INFO] Final Memory: 8M/554M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project tweetboard: Could not resolve dependencies for project com.markhneedham:tweetboard:apk:1.0.0-SNAPSHOT: Could not find artifact android.support:compatibility-v4:jar:r6 in central (http://repo1.maven.org/maven2) -> [Help 1] ---- A bit of googling led me to https://github.com/jayway/maven-android-plugin-samples/tree/master/support4demos[a demo project] showing how to hook up the compatibility package. It linked to the https://github.com/mosabua/maven-android-sdk-deployer[Maven Android SDK Deployer] which is: ____ The Maven Android SDK Deployer is a helper maven project that can be used to install the libraries necessary to build Android applications with Maven and the Android Maven Plugin directly from your local Android SDK installation. ____ I had to first clone that git repository: [source,text] ---- git clone git://github.com/mosabua/maven-android-sdk-deployer.git ---- And then find the compatability-v4 package and install it: [source,text] ---- $ cd maven-android-sdk-deployer $ cd extras/compatibility-v4 $ mvn clean install ---- I initially made the mistake of not setting +++<cite>+++$ANDROID_HOME+++</cite>+++ to the location of the Android SDK on my machine, which led to the following error: [source,text] ---- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.484s [INFO] Finished at: Sun Jan 08 20:51:07 GMT 2012 [INFO] Final Memory: 3M/81M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.codehaus.mojo:properties-maven-plugin:1.0-alpha-2:read-project-properties (default) on project android-extras: Properties file not found: /Users/mneedham/github/maven-android-sdk-deployer/extras/${env.ANDROID_HOME}/extras/android/support/source.properties -> [Help 1] ---- Setting it solves the problem: [source,text] ---- $ export ANDROID_HOME=/Users/mneedham/github/android/android-sdk-macosx ---- There are more detailed instructions on the https://github.com/mosabua/maven-android-sdk-deployer[home page of the github project].
null
null
[ -0.009231452830135822, 0.0033114799298346043, 0.00005198974031372927, 0.0344599112868309, 0.08844714611768723, 0.016312096267938614, 0.03129205107688904, -0.030139952898025513, -0.01703665219247341, -0.012737920507788658, -0.018043305724859238, 0.007504500448703766, -0.09034942090511322, -0.002167369471862912, -0.05616142600774765, 0.054790038615465164, 0.08774589747190475, 0.02675369381904602, -0.014375072903931141, 0.029516832903027534, 0.04259650781750679, 0.050059638917446136, 0.014840986579656601, 0.034107353538274765, 0.021543387323617935, 0.021841587498784065, 0.07580969482660294, -0.004130918998271227, -0.06462085992097855, -0.03157690167427063, 0.043973445892333984, -0.002843084977939725, 0.009588577784597874, -0.021194549277424812, 0.0010444128420203924, -0.008067421615123749, -0.03144889324903488, 0.017724646255373955, -0.00717834010720253, 0.014108708128333092, -0.03308304771780968, 0.041678983718156815, -0.021349743008613586, -0.008238396607339382, -0.024099258705973625, 0.006321813445538282, -0.019984029233455658, 0.02616170421242714, -0.022801829501986504, -0.028157660737633705, -0.08114343136548996, 0.047100551426410675, -0.04895903170108795, 0.0042751142755150795, -0.0010081963846459985, 0.039303407073020935, 0.01940339244902134, -0.0929112583398819, 0.005088907200843096, -0.041860248893499374, -0.01983833685517311, -0.018384909257292747, -0.01408353727310896, 0.024514153599739075, -0.020757433027029037, -0.00003911012026946992, -0.01791355386376381, 0.0513702817261219, -0.028539495542645454, -0.03241470456123352, -0.0019428081577643752, -0.012147256173193455, -0.029389725998044014, 0.0031911961268633604, 0.04106990620493889, -0.05209658294916153, 0.003284069709479809, 0.07313048839569092, 0.010656401515007019, 0.0488322414457798, -0.006466652732342482, -0.019173389300704002, 0.031047865748405457, 0.025983283296227455, 0.0035804894287139177, -0.04868169501423836, -0.01624728925526142, -0.01626940257847309, -0.039648596197366714, 0.027526790276169777, 0.03074623830616474, -0.0324450246989727, 0.019486090168356895, 0.037664398550987244, 0.00580151891335845, 0.003744554240256548, -0.010549185797572136, -0.006639502942562103, 0.017604921013116837, 0.015271664597094059, -0.002762453630566597, 0.014202680438756943, 0.044520456343889236, 0.0011922238627448678, -0.0407896563410759, -0.034764718264341354, -0.019138945266604424, -0.031309984624385834, -0.027084140107035637, -0.01994716003537178, -0.001877194968983531, 0.045757025480270386, 0.016909196972846985, -0.01198431197553873, -0.06704170256853104, 0.07975926995277405, 0.010603146627545357, -0.03312207758426666, -0.001551562687382102, 0.020846037194132805, 0.026998065412044525, 0.05263613164424896, -0.01752566732466221, 0.08557333797216415, -0.021694038063287735, 0.0661391094326973, -0.04369461163878441, 0.045796237885951996, -0.03287551552057266, -0.04906778410077095, -0.004350604489445686, 0.04915406554937363, 0.006431149784475565, 0.028683118522167206, -0.026915747672319412, 0.007559000048786402, -0.01749582029879093, 0.003532106289640069, 0.0641600638628006, 0.0234832763671875, -0.05214082822203636, -0.0014650871744379401, -0.0015453624073415995, 0.008888961747288704, 0.0338086262345314, -0.0035972849000245333, -0.0028118020854890347, -0.02081715129315853, -0.03720502182841301, 0.007109361235052347, -0.028600547462701797, 0.055937640368938446, 0.060561034828424454, -0.029977962374687195, 0.011290131136775017, 0.08917680382728577, 0.0020900494419038296, 0.023006455972790718, -0.020122213289141655, 0.010671333409845829, 0.0010280185379087925, -0.00015327053552027792, -0.023273654282093048, 0.03170910105109215, 0.010455595329403877, -0.025826167315244675, 0.0019882896449416876, 0.03785998374223709, 0.022271111607551575, 0.014939840883016586, -0.06258578598499298, -0.10315112769603729, 0.06103343889117241, -0.06870345771312714, -0.03492867201566696, 0.022602131590247154, 0.08058825135231018, 0.04443409666419029, 0.011507675983011723, 0.02512284368276596, -0.07921361178159714, 0.024565912783145905, 0.03605831786990166, -0.036804839968681335, 0.021024486050009727, -0.014193159528076649, 0.0852089524269104, 0.03664760664105415, -0.061775803565979004, 0.0006276044296100736, -0.07754629850387573, -0.07066953182220459, 0.0019812139216810465, -0.014246372506022453, 0.06908132880926132, -0.010172177106142044, -0.021656446158885956, 0.04248926043510437, 0.04081407189369202, 0.027996759861707687, -0.008783342316746712, 0.010889663361012936, 0.006834276020526886, -0.02611198090016842, -0.04653959721326828, 0.024241648614406586, 0.07630590349435806, -0.003308107377961278, -0.012902580201625824, 0.021934393793344498, -0.014418544247746468, -0.004955844953656197, 0.026924068108201027, -0.04009980708360672, 0.058809369802474976, 0.012469243258237839, 0.014685333706438541, -0.05551884323358536, 0.06163230538368225, -0.06195824593305588, -0.011640409007668495, -0.03018212877213955, -0.04391554370522499, -0.027407482266426086, 0.007149130571633577, 0.1053018867969513, 0.04451267421245575, -0.025426547974348068, -0.07344669848680496, 0.02303192764520645, 0.014703044667840004, -0.03194244205951691, -0.011138572357594967, -0.017460143193602562, 0.03598558530211449, -0.03305361047387123, -0.007351639214903116, -0.015681007876992226, -0.006986040156334639, -0.03097814880311489, -0.0070037078112363815, 0.07809439301490784, -0.007200500462204218, 0.02511679008603096, 0.01251770555973053, -0.019642299041152, -0.01564875990152359, -0.03225269541144371, -0.034625981003046036, 0.03339877352118492, 0.011914083734154701, -0.018792176619172096, 0.025598566979169846, -0.036419257521629333, 0.001767761423252523, -0.016276108101010323, -0.05951334908604622, 0.006566502619534731, 0.058879658579826355, 0.05560789629817009, 0.004281101748347282, 0.0233254786580801, -0.015840446576476097, 0.0061415936797857285, -0.036545343697071075, -0.02233012393116951, 0.002755227731540799, -0.017412416636943817, -0.007179430685937405, 0.06586738675832748, 0.016144661232829094, 0.024068569764494896, 0.008926929906010628, -0.013063788414001465, 0.025794411078095436, -0.006526040844619274, 0.026216426864266396, 0.008253020234405994, 0.0013785797636955976, -0.04326653108000755, 0.004333398770540953, 0.03376220166683197, -0.028560463339090347, -0.06675436347723007, 0.007900645956397057, -0.08264658600091934, 0.06276602298021317, -0.044095877557992935, -0.04248423874378204, 0.018767695873975754, 0.03920186311006546, 0.04838826507329941, -0.0063638025894761086, 0.01639360375702381, 0.06788677722215652, -0.019992759451270103, 0.012610751204192638, 0.017098555341362953, 0.03393346071243286, 0.046647217124700546, 0.004569790326058865, 0.01599017344415188, 0.03206876292824745, -0.013354944065213203, 0.000567222130484879, -0.04135718569159508, 0.03037937916815281, -0.06231444701552391, -0.24564528465270996, 0.007490080781280994, -0.03472813218832016, -0.06315135210752487, -0.003971022553741932, 0.010798796080052853, -0.017408207058906555, -0.058677010238170624, -0.000002637382749526296, 0.02285810187458992, 0.0022675597574561834, -0.02072622813284397, 0.01245946530252695, 0.05516698956489563, -0.000005011213033867534, -0.0012179079931229353, 0.0033206320367753506, -0.015602204948663712, 0.019457250833511353, 0.00885717011988163, 0.010549942031502724, -0.055752020329236984, -0.004319517407566309, 0.028353724628686905, 0.02278662659227848, 0.04244460538029671, -0.04056684300303459, 0.0600055493414402, -0.023565245792269707, -0.028532294556498528, 0.00965126883238554, 0.005947827827185392, -0.011096164584159851, -0.018843527883291245, -0.001785776810720563, -0.005085417069494724, 0.013398604467511177, 0.022131185978651047, -0.03120814822614193, 0.025349175557494164, -0.010098811239004135, -0.043541911989450455, 0.021058525890111923, 0.01856914535164833, 0.07641187310218811, 0.0014502883423119783, -0.09115799516439438, 0.025873754173517227, -0.030398447066545486, 0.0958930253982544, -0.028549842536449432, -0.024036474525928497, 0.043621327728033066, 0.04888833686709404, -0.020179426297545433, -0.0069197481498122215, 0.02171032316982746, -0.02175411581993103, -0.025614991784095764, -0.053734004497528076, -0.013197574764490128, -0.037678997963666916, -0.036229055374860764, -0.03623136505484581, -0.03551929444074631, -0.07062815129756927, -0.02885393425822258, -0.01884075254201889, 0.04441918432712555, 0.006905826274305582, -0.038436613976955414, -0.018916117027401924, -0.004564997740089893, -0.10467162728309631, -0.01783556118607521, -0.046214234083890915, -0.036771759390830994, -0.0002567029441706836, -0.02966698631644249, 0.03832241892814636, -0.038285233080387115, -0.032650720328092575, 0.009302197955548763, 0.014168072491884232, -0.023065511137247086, 0.015312466770410538, 0.001578034833073616, -0.016995036974549294, 0.021820053458213806, -0.012707371264696121, 0.06318391114473343, -0.05393761768937111, -0.01855510286986828, -0.04539075493812561, -0.0022398156579583883, 0.01876087859272957, -0.0013628669548779726, 0.022717615589499474, -0.003347561927512288, 0.061546362936496735, -0.007424488663673401, -0.043262287974357605, -0.008131349459290504, 0.004867925774306059, -0.01007178332656622, -0.009037659503519535, -0.06438064575195312, -0.011079336516559124, 0.02157500572502613, 0.029654143378138542, -0.0038327937945723534, -0.05772656202316284, 0.0002805404947139323, -0.037945691496133804, -0.05057996138930321, -0.04801985248923302, 0.02855895459651947, 0.04193153232336044, 0.015289523638784885, -0.028684481978416443, -0.09100436419248581, -0.0030399258248507977, -0.005736648570746183, -0.018725866451859474, -0.029963383451104164, -0.013158448040485382, -0.04179390147328377, -0.004513104911893606, -0.017423955723643303, 0.010609038174152374, -0.03677932173013687, 0.04047439619898796, 0.016372447833418846, -0.025776350870728493, 0.022069552913308144, -0.029047811403870583, -0.018412167206406593, -0.03137404844164848, 0.004585458431392908, -0.022775400429964066, -0.007296717260032892, 0.004791166167706251, 0.029242467135190964, -0.00305566331371665, 0.03438581898808479, -0.039095595479011536, 0.06703057140111923, -0.0106490608304739, -0.036403000354766846, 0.012617499567568302, 0.01658259890973568, -0.03666527196764946, 0.03802874684333801, -0.033278487622737885, -0.04427897557616234, -0.035378776490688324, 0.016591167077422142, 0.0012133038835600019, 0.01797676272690296, -0.02342253550887108, 0.008525756187736988, -0.04840421676635742, -0.009538808837532997, -0.009044644422829151, -0.020297717303037643, 0.06535320729017258, -0.00032454694155603647, -0.012950130738317966, -0.017727993428707123, -0.037724658846855164, 0.002872541081160307, -0.0019998035859316587, 0.0052772825583815575, 0.03343518450856209, -0.018196970224380493, 0.02755805291235447, 0.023596184328198433, 0.000889938382897526, 0.04334782436490059, -0.00003322572956676595, -0.022872785106301308, -0.03595319762825966, 0.030225995928049088, -0.010996390134096146, 0.013229991309344769, 0.004504219628870487, -0.03101612813770771, -0.02712920866906643, -0.018127910792827606, -0.03717949986457825, -0.02255220338702202, 0.05819185450673103, -0.010236956179141998, -0.014604008756577969, -0.028516288846731186, -0.09577514231204987, 0.002490290207788348, -0.006447367835789919, 0.03310922905802727, -0.00028593148454092443, -0.021489636972546577, 0.018231956288218498, -0.05636345595121384, 0.0738292932510376, 0.09207593649625778, -0.07663437724113464, 0.012236158363521099, 0.023134978488087654, 0.004011392593383789, -0.011713738553225994, -0.015337965451180935, -0.04230039566755295, 0.013272378593683243, -0.012963042594492435, -0.01748339645564556, -0.050888001918792725, -0.025451097637414932, 0.00947464071214199, 0.00932032335549593, 0.002460721880197525, 0.0015110396780073643, -0.00705108093097806, -0.005445931572467089, -0.012303807772696018, -0.013277106918394566, 0.019134197384119034, -0.005814562551677227, 0.015852676704525948, 0.015864811837673187, -0.025417450815439224, 0.026998037472367287, -0.06787826120853424, 0.02603934146463871, 0.01442649494856596, 0.008947535417973995, 0.004730453714728355, -0.07395797222852707, 0.013960125856101513, 0.03482922911643982, 0.0547691211104393, 0.023698382079601288, 0.018641263246536255, -0.012526905164122581, 0.017524972558021545, -0.04071338474750519, 0.027037883177399635, -0.009249686263501644, -0.022593529894948006, -0.01611960306763649, 0.07326210290193558, -0.0075222281739115715, 0.030526485294103622, -0.011948348954319954, 0.02109086513519287, 0.07526770979166031, -0.010996725410223007, -0.05127747729420662, 0.012447485700249672, -0.06900312006473541, 0.012626116164028645, 0.03602081909775734, 0.02131074108183384, -0.03605574369430542, 0.026442911475896835, 0.04593601077795029, -0.015875274315476418, 0.014600948430597782, -0.00901872105896473, 0.031096700578927994, -0.038739994168281555, -0.011301069520413876, -0.05389577895402908, 0.02539001777768135, 0.041441429406404495, -0.011607504449784756, -0.0006027370691299438, -0.034664712846279144, -0.058689896017313004, 0.03354604169726372, -0.07954011112451553, -0.018582705408334732, 0.02165273204445839, -0.008654946461319923, -0.0023544069845229387, 0.051608968526124954, -0.03769468143582344, 0.0480969063937664, 0.0024178028106689453, -0.04575269669294357, -0.031394872814416885, -0.028771664947271347, 0.06042065843939781, 0.012933106161653996, 0.023671135306358337, -0.0018072810489684343, 0.020808124914765358, 0.08158304542303085, 0.016942651942372322, 0.02951195277273655, 0.018793253228068352, 0.04797568917274475, 0.0466049388051033, 0.040172915905714035, -0.005221453960984945, -0.025562869384884834, 0.05754717439413071, 0.011318822391331196, -0.05400443449616432, 0.04751480743288994, -0.026841530576348305, 0.0035835395101457834, -0.02514542266726494, 0.041418418288230896, 0.02968231402337551, -0.019167114049196243, -0.006696109194308519, 0.0039351084269583225, -0.04043572023510933, -0.00017420566291548312, -0.02931448258459568, -0.015044521540403366, -0.02352762408554554, 0.06924538314342499, -0.022097989916801453, 0.021319571882486343, 0.07251491397619247, 0.013487576507031918, -0.01611623913049698, -0.014223290607333183, 0.08418846130371094, 0.0572395995259285, 0.014906041324138641, 0.019048023968935013, 0.061146415770053864, 0.016181301325559616, -0.04170524701476097, 0.022398527711629868, -0.016865616664290428, -0.025699032470583916, 0.006864199880510569, 0.00009654660243541002, 0.06965909153223038, -0.014431369490921497, 0.04779190197587013, -0.015180058777332306, -0.011913197115063667, 0.021856695413589478, -0.005265772342681885, 0.03747593238949776, 0.03359982743859291, -0.016558077186346054, 0.03514702618122101, -0.03395936265587807, -0.01269333902746439, 0.011994772590696812, 0.007270585745573044, -0.02417983114719391, 0.03472132980823517, 0.021266421303153038, 0.012732887640595436, 0.0034916969016194344, 0.03102998435497284, 0.07575652748346329, 0.005949597340077162, -0.026502788066864014, -0.008381868712604046, -0.0027331733144819736, 0.03256829455494881, 0.0050016907043755054, -0.014800791628658772, -0.022253189235925674, -0.0034596382174640894, -0.009890100918710232, 0.007207883521914482, -0.039572570472955704, -0.006128588225692511, 0.0600130669772625, -0.053151462227106094, 0.0161996278911829, 0.02186647616326809, -0.00682652834802866, -0.04882796108722687, -0.0158139169216156, -0.037485819309949875, -0.018983516842126846, -0.042137280106544495, 0.0008416153723374009, 0.01810598187148571, -0.005544688086956739, -0.07883545756340027, -0.005159857217222452, -0.012124522589147091, -0.019037587568163872, 0.011066376231610775, -0.0650053545832634, -0.04414334148168564, 0.03698957711458206, -0.0060111586935818195, 0.021595874801278114, 0.028291700407862663, 0.07195251435041428, 0.014833136461675167, 0.0019141619559377432, -0.012613492086529732, 0.033732473850250244, 0.05376219376921654, 0.011325271800160408, 0.05168434605002403, -0.06626813113689423, 0.002719804411754012, 0.04310052469372749, -0.015044155530631542, -0.04417693614959717, -0.027461670339107513, 0.04505671188235283, -0.02339864894747734, 0.04151768609881401, -0.014023616909980774, 0.0014664962654933333, -0.01703067682683468, 0.0009744588169269264, 0.004661785438656807, 0.015736129134893417, 0.04075637832283974, -0.012229111045598984, 0.09243400394916534, 0.05783556029200554, -0.014706017449498177, -0.044758379459381104, -0.005117708817124367, 0.010919290594756603, -0.011885011568665504, -0.03555627167224884, -0.04084540531039238, -0.03158136457204819, -0.08146796375513077, -0.02422948181629181, 0.015517539344727993, -0.0301988422870636, -0.05982610955834389, -0.022675728425383568, 0.01863001473248005, -0.05707879737019539, 0.028704777359962463, -0.05560629069805145, 0.019261518493294716, -0.01644275151193142, -0.00010247943282593042, -0.02031693235039711, 0.03206860274076462, 0.008796971291303635, 0.006919394712895155, 0.02493814006447792, -0.03890301287174225, 0.03289979323744774, -0.023146288469433784, 0.02455740049481392, 0.06326762586832047, 0.010596280917525291, -0.024294715374708176 ]
[ -0.0679609477519989, -0.004856377374380827, -0.017491718754172325, -0.06831247359514236, -0.0028210890013724566, -0.04395138472318649, -0.009042726829648018, 0.03361454978585243, -0.047468896955251694, -0.025436630472540855, 0.057667069137096405, -0.03504301235079765, 0.05195744335651398, 0.021821994334459305, 0.0808999091386795, 0.0013307497138157487, 0.037602778524160385, -0.02465006709098816, 0.021042389795184135, 0.0004896873142570257, 0.028385406360030174, -0.027321062982082367, 0.011435120366513729, -0.019498830661177635, 0.03064875863492489, 0.09645561128854752, 0.044273972511291504, -0.04151710122823715, 0.0069757006131112576, -0.2063383162021637, 0.021235253661870956, 0.017125513404607773, 0.02839990332722664, -0.014720013365149498, -0.015150493010878563, 0.06618961691856384, -0.012228241190314293, 0.019679997116327286, 0.0189499594271183, 0.03899305686354637, -0.05826732888817787, 0.027659041807055473, -0.018412508070468903, -0.02184021659195423, -0.008166351355612278, -0.023359287530183792, 0.015134591609239578, -0.01677740179002285, 0.02044031396508217, -0.06823959946632385, -0.04235519841313362, -0.007800109218806028, 0.0339471772313118, -0.014460110105574131, -0.02293289825320244, 0.009609716944396496, 0.008039962500333786, 0.06633532047271729, 0.027426406741142273, 0.04117323085665703, 0.024339986965060234, 0.024066656827926636, -0.11710156500339508, 0.13788188993930817, -0.026466522365808487, -0.006289919372648001, -0.005044133402407169, -0.018318872898817062, -0.001717804349027574, 0.04609137028455734, 0.00019480986520648003, 0.006627598311752081, -0.005947768688201904, 0.06777472794055939, -0.005267091561108828, 0.0389031246304512, 0.011922708712518215, -0.011978675611317158, 0.019143056124448776, -0.04486885666847229, -0.056569378823041916, -0.019374771043658257, -0.02549964003264904, -0.02064993605017662, -0.014029126614332199, 0.03863265737891197, 0.02006649039685726, 0.0036034267395734787, 0.004300128668546677, 0.03912191092967987, -0.010655064135789871, 0.014601164497435093, 0.03142440691590309, -0.000008560383321309928, -0.11145749688148499, 0.0045433747582137585, -0.022743675857782364, -0.006341662257909775, -0.0871114581823349, 0.40102654695510864, -0.029143037274479866, -0.008353346958756447, 0.05182446166872978, 0.06996408849954605, 0.00793493539094925, -0.042657408863306046, -0.0257926844060421, -0.04248441383242607, 0.015499473549425602, -0.012613718397915363, 0.017553085461258888, -0.047173257917165756, 0.035370901226997375, -0.026800410822033882, -0.012301507405936718, -0.010695971548557281, -0.011700211092829704, -0.01871863566339016, 0.031442828476428986, 0.03294925019145012, -0.027109283953905106, -0.0023005057591944933, 0.009315449744462967, 0.03046109713613987, 0.007791983895003796, -0.03491401672363281, -0.017935659736394882, 0.045075658708810806, 0.04051372781395912, -0.00901282113045454, 0.02802332676947117, -0.0364905446767807, -0.10145627707242966, -0.03893587738275528, -0.012011409737169743, 0.011076011694967747, 0.06728652864694595, -0.05553621053695679, 0.03113698400557041, -0.0075712986290454865, -0.03145790472626686, -0.04060890153050423, 0.06025836616754532, 0.019476955756545067, -0.04910735785961151, 0.06969481706619263, -0.014310695230960846, -0.011011471971869469, -0.03947686031460762, -0.009143169037997723, 0.004553578328341246, 0.0444057397544384, 0.008103407919406891, -0.021367894485592842, 0.009819498285651207, 0.01243610493838787, 0.06673762202262878, -0.02409258298575878, -0.09159550815820694, 0.035890646278858185, 0.0037719174288213253, -0.010407478548586369, -0.0572083406150341, 0.026036178693175316, 0.001086732605472207, -0.10363000631332397, -0.030964618548750877, 0.026949143037199974, -0.028613600879907608, -0.01457496639341116, -0.03215835988521576, 0.05288007855415344, 0.0070457155816257, 0.002731637330725789, 0.04429076984524727, 0.00867079384624958, -0.009544190019369125, 0.004304794128984213, 0.018081918358802795, 0.038149114698171616, 0.024406414479017258, -0.018957503139972687, -0.05285698175430298, -0.03865915536880493, 0.004667345434427261, -0.08126949518918991, -0.0336817167699337, -0.017478328198194504, 0.018729761242866516, -0.059314776211977005, -0.059610962867736816, 0.015641549602150917, -0.03872775286436081, 0.10010373592376709, 0.027726346626877785, -0.004748017527163029, 0.0005391284939832985, -0.029236845672130585, 0.028796598315238953, -0.058046117424964905, 0.05229320377111435, 0.07563340663909912, -0.03173581138253212, -0.0019976079929620028, -0.01995278149843216, 0.03658312186598778, 0.026589220389723778, -0.035030730068683624, 0.02920498140156269, 0.01844008080661297, -0.044358909130096436, -0.0008812933228909969, 0.02833554893732071, 0.016072526574134827, 0.020335692912340164, 0.00687421765178442, -0.0249676201492548, -0.008516295813024044, 0.04991631209850311, 0.011948592029511929, -0.029815152287483215, -0.009958895854651928, 0.0151737742125988, -0.3274746537208557, -0.03686121851205826, -0.005624637007713318, -0.0021275263279676437, -0.04265325516462326, -0.027914348989725113, -0.004646246321499348, -0.0416032150387764, 0.010189970023930073, -0.021106364205479622, 0.09206649661064148, 0.0060014063492417336, -0.013816522434353828, -0.030288849025964737, -0.0021722116507589817, -0.01842430979013443, -0.015664154663681984, -0.017658308148384094, -0.03491608798503876, -0.01386326551437378, -0.018266713246703148, -0.020091675221920013, -0.017302973195910454, -0.005857257172465324, 0.07882051169872284, 0.0024949372746050358, 0.09073446691036224, 0.029972968623042107, -0.013285497203469276, -0.07203415781259537, 0.05057397112250328, 0.09373614937067032, -0.0294514037668705, -0.11156920343637466, -0.011518321931362152, -0.006670496426522732, -0.01880316436290741, -0.025522835552692413, 0.03366656228899956, 0.0019048589747399092, -0.05968145653605461, 0.05729057639837265, -0.06475131213665009, -0.08172829449176788, -0.037739358842372894, -0.012499021366238594, -0.029124666005373, -0.04569323733448982, 0.0372515544295311, 0.09019497036933899, -0.01375773549079895, 0.010319545865058899, 0.0007981564267538488, 0.049729641526937485, 0.002383013255894184, 0.025374533608555794, -0.04775305092334747, 0.04496658965945244, 0.016992833465337753, -0.03518564626574516, -0.01643102988600731, 0.035479508340358734, 0.060843002051115036, -0.08167710155248642, -0.015325686894357204, 0.03289499506354332, 0.05405232682824135, 0.012106571346521378, 0.007084709592163563, 0.007129321340471506, -0.002937820740044117, 0.06520160287618637, 0.0010512428125366569, 0.05397965759038925, 0.03054606169462204, 0.051149092614650726, 0.042981699109077454, -0.010240511037409306, 0.04448787868022919, -0.004256214015185833, -0.028837189078330994, 0.04367944225668907, 0.047392841428518295, -0.029439905658364296, -0.015215941704809666, 0.04464276134967804, -0.010456767864525318, -0.05292443186044693, 0.040298376232385635, 0.00968316849321127, -0.03425366431474686, 0.00810504611581564, -0.011159267276525497, -0.042811695486307144, 0.08464880287647247, 0.007188853342086077, -0.23331953585147858, 0.04164644330739975, 0.06251244992017746, 0.06230001896619797, -0.03484877943992615, -0.012998259626328945, 0.055544305592775345, -0.05029028281569481, -0.011777989566326141, -0.0035479909274727106, -0.02818141132593155, 0.03505873680114746, 0.007848025299608707, -0.052529480308294296, 0.08160479366779327, -0.0015690922737121582, 0.06545611470937729, -0.009605776518583298, 0.026308231055736542, -0.06737615913152695, 0.0035934404004365206, -0.015708062797784805, 0.13490335643291473, -0.013939276337623596, -0.022260483354330063, 0.025072041898965836, 0.01794477365911007, 0.00020377305918373168, 0.0342438630759716, -0.0023350734263658524, -0.06506946682929993, -0.0022312584333121777, 0.06456359475851059, 0.03448609635233879, 0.022011971101164818, -0.005050166044384241, 0.0019355787662789226, -0.0037875762209296227, 0.02646704390645027, 0.03594278544187546, 0.007774622179567814, 0.04412339627742767, -0.07572658360004425, 0.05820417031645775, 0.10997039824724197, -0.0012286994606256485, -0.03667203336954117, 0.0357351191341877, -0.07858868688344955, -0.015207844786345959, -0.004725222010165453, -0.09769762307405472, -0.04016675427556038, -0.0011497470550239086, -0.04328033700585365, 0.07149269431829453, 0.011699977330863476, -0.042879074811935425, -0.047418899834156036, 0.03768487647175789, 0.0036683473736047745, -0.0009073916589841247, 0.13810788094997406, -0.031023524701595306, 0.011435287073254585 ]
[ 0.00961559172719717, -0.002939726924523711, 0.009671200066804886, -0.04502280801534653, 0.020688943564891815, -0.01913479156792164, -0.019597340375185013, 0.02570384182035923, -0.0019000552129000425, -0.02499683015048504, 0.054126136004924774, 0.016839100047945976, 0.059963613748550415, -0.007357396185398102, 0.0035902601666748524, -0.04326575621962547, 0.0041294097900390625, 0.019843176007270813, 0.030397990718483925, 0.06534802168607712, 0.006165709812194109, 0.017848949879407883, 0.03160636126995087, -0.03011357970535755, 0.014458282850682735, 0.032840508967638016, -0.006751864217221737, -0.030616378411650658, 0.011554606258869171, -0.1480754315853119, 0.008748235180974007, 0.015896739438176155, 0.01871502213180065, -0.05050249397754669, -0.004915548022836447, 0.0025007049553096294, -0.03428070247173309, 0.028733927756547928, -0.049600113183259964, 0.0010569582227617502, 0.008935418911278248, -0.02552475407719612, 0.05879621580243111, -0.00015553565754089504, -0.02852441929280758, -0.047860827296972275, 0.03160850703716278, -0.01742369681596756, 0.0008569924393668771, 0.02026374638080597, -0.025964301079511642, -0.010243059135973454, 0.02783958986401558, -0.02806743234395981, -0.008144421502947807, 0.012410923838615417, -0.0230112187564373, 0.0296194925904274, 0.01353437639772892, 0.007015617098659277, 0.010433552786707878, 0.014824588783085346, -0.050709497183561325, -0.03329339995980263, 0.0069360388442873955, -0.018777260556817055, 0.012759839184582233, -0.0123701561242342, 0.007554241456091404, 0.019433889538049698, -0.017276285216212273, 0.0020706963259726763, 0.02018529735505581, -0.027628421783447266, 0.017992325127124786, 0.023536987602710724, -0.00581222353503108, 0.010291993618011475, 0.0053244479931890965, -0.027009202167391777, -0.04131351038813591, 0.008519087918102741, -0.019848033785820007, 0.03940458968281746, 0.005893328692764044, -0.028225397691130638, 0.011241152882575989, 0.007606616709381342, 0.0025033524725586176, 0.037021081894636154, -0.030197124928236008, 0.03300054371356964, -0.045317258685827255, 0.02076064795255661, -0.11598891019821167, -0.02573070116341114, -0.05648602917790413, -0.02059001289308071, -0.01616993546485901, 0.8143835067749023, 0.03188394382596016, 0.0741209164261818, 0.051206350326538086, 0.013356056995689869, 0.015125470235943794, -0.03445754945278168, -0.02411043643951416, -0.014177615754306316, -0.0018727497663348913, 0.023028234019875526, 0.040148817002773285, 0.007617837283760309, 0.03622749447822571, 0.026813507080078125, 0.04519685357809067, 0.015927286818623543, 0.023661930114030838, 0.0030259108170866966, 0.02387309819459915, 0.017628904432058334, -0.01321802195161581, -0.034904107451438904, -0.01527087390422821, -0.027346644550561905, 0.03985780104994774, -0.15529656410217285, -0.015394754707813263, -6.805843396928294e-33, 0.006267028395086527, -0.0035288468934595585, 0.036326415836811066, -0.01637200079858303, -0.02104119583964348, -0.018043555319309235, -0.005678857676684856, 0.008969014510512352, 0.0067065004259347916, -0.06564327329397202, 0.0022663967683911324, -0.02178192511200905, 0.005783924367278814, -0.005476325284689665, 0.012593498453497887, -0.02350427396595478, 0.006184640806168318, 0.029524868354201317, -0.012653389945626259, 0.021048903465270996, -0.010455901734530926, 0.005536514800041914, -0.029561853036284447, 0.00004914859891869128, -0.006213468033820391, 0.06268877536058426, 0.06329334527254105, 0.027083473280072212, 0.017276868224143982, -0.03870690241456032, -0.0024874848313629627, -0.0018832298228517175, -0.01007909420877695, -0.03745880350470543, -0.005365633871406317, -0.05130007117986679, -0.06248481571674347, -0.027992643415927887, -0.01173505000770092, -0.040094804018735886, -0.07926537841558456, -0.017437133938074112, -0.01694248616695404, 0.02606971748173237, -0.013548960909247398, -0.008686456829309464, 0.04202700033783913, 0.04374692216515541, -0.010215960443019867, 0.019343873485922813, 0.014044532552361488, -0.03055713325738907, -0.011985762976109982, -0.0075023602694272995, -0.021480437368154526, 0.004815884865820408, -0.059467896819114685, 0.07088599354028702, -0.003966092597693205, 0.022726019844412804, 0.0015813217032700777, -0.003422799985855818, 0.009499846957623959, 0.027369821444153786, 0.005909322295337915, 0.02822686918079853, -0.017858661711215973, -0.03871472552418709, -0.0026853487361222506, 0.011951864697039127, -0.011681920848786831, -0.05188888683915138, 0.01069706678390503, 0.03326015546917915, 0.006474724039435387, 0.021546876057982445, 0.020064083859324455, 0.013669624924659729, 0.020446112379431725, 0.013913959264755249, -0.023700043559074402, -0.031269703060388565, 0.025581760331988335, -0.029872938990592957, -0.06540378928184509, 0.011127849109470844, 0.018481099978089333, -0.03946802020072937, 0.00446571409702301, 0.017726892605423927, 0.023654073476791382, 0.0220841895788908, -0.006012524012476206, -0.0003805005981121212, -0.05387496203184128, 7.037761085505839e-33, -0.007146675605326891, -0.007815517485141754, 0.004320499021559954, -0.015817712992429733, 0.003680640133097768, -0.015088619664311409, -0.023986997082829475, 0.01110481284558773, -0.0555916465818882, -0.0018386864103376865, -0.05917032063007355, 0.0034646345302462578, -0.019164113327860832, -0.037357576191425323, 0.0506170354783535, 0.005706396419554949, 0.061612166464328766, -0.03083454631268978, -0.001938971458002925, 0.03120003081858158, 0.027373336255550385, 0.029487596824765205, 0.0405084453523159, 0.03326314687728882, 0.0018545215716585517, 0.041758060455322266, 0.005354486405849457, 0.036361176520586014, -0.01178678683936596, 0.001310901832766831, 0.03896168991923332, 0.010830086655914783, -0.021646050736308098, 0.019879238680005074, -0.022693300619721413, 0.014268633909523487, 0.002014976693317294, -0.01586160995066166, -0.003699395339936018, 0.0003963949275203049, 0.0013556373305618763, -0.016526566818356514, 0.03701357915997505, -0.0027650739066302776, 0.02495833858847618, -0.031000947579741478, 0.005304562393575907, 0.03716717287898064, 0.020611030980944633, -0.011319950222969055, -0.04035387560725212, 0.030056869611144066, 0.05788717418909073, -0.012558470480144024, 0.011328100226819515, -0.028117867186665535, -0.009654332883656025, 0.0028409643564373255, 0.004197846166789532, 0.0008729639230296016, -0.013406542129814625, -0.02516617439687252, -0.005942579824477434, 0.022577740252017975, -0.051864948123693466, 0.0070554413832724094, 0.04322141781449318, 0.016978545114398003, -0.03155200183391571, 0.03752705827355385, 0.0032507386058568954, 0.009496455080807209, 0.008236986584961414, 0.039473846554756165, 0.06842182576656342, 0.025171689689159393, -0.009671448729932308, -0.015360348857939243, -0.0453709252178669, -0.051957547664642334, 0.007122316863387823, 0.02557351067662239, -0.02130097709596157, -0.011582160368561745, 0.01159154623746872, 0.0005070209736004472, -0.042788080871105194, 0.004120939411222935, 0.016521405428647995, -0.003891862230375409, -0.0021416260860860348, -0.01942545734345913, -0.014634610153734684, 0.02275565266609192, 0.02455173060297966, -1.245023373286358e-8, 0.056055713444948196, 0.024446185678243637, -0.0005577353877015412, -0.03671097010374069, 0.006692814640700817, 0.012457066215574741, -0.03529764339327812, 0.007214736193418503, -0.0008614410180598497, 0.01405232585966587, 0.04712939262390137, -0.05459121614694595, 0.01583869569003582, 0.020197464153170586, 0.045948486775159836, -0.010217715054750443, 0.01317430380731821, -0.006640471983700991, -0.005735287442803383, -0.004744048696011305, -0.009524271823465824, 0.019241994246840477, -0.017107263207435608, 0.029051627963781357, 0.0474831648170948, 0.03296202793717384, -0.005207040347158909, -0.04125310480594635, -0.03077472187578678, -0.015004973858594894, 0.02011493220925331, -0.0014841541415080428, -0.04855474829673767, 0.0004248102195560932, -0.011913803406059742, 0.014724486507475376, 0.046732936054468155, -0.006544710602611303, -0.0030558346770703793, 0.03874734044075012, -0.028058841824531555, 0.01643563248217106, -0.00028296015807427466, -0.021608024835586548, -0.03476132079958916, -0.0037773423828184605, -0.014239144511520863, -0.005424331407994032, 0.010166929103434086, 0.015180941671133041, -0.017637908458709717, -0.006823851261287928, -0.005428751930594444, -0.013341322541236877, -0.0047264257445931435, -0.003260445548221469, -0.00800947193056345, -0.029290607199072838, -0.015752315521240234, 0.0025440349709242582, 0.04305892437696457, -0.0012832769425585866, -0.04794372618198395, -0.03336920216679573 ]
learning-android-getting-android-support-jarcompatability-package-as-a-maven-dependency
https://markhneedham.com/blog/2012/01/08/learning-android-getting-android-support-jarcompatability-package-as-a-maven-dependency
false
2012-01-01 03:22:34
Learning Android: 'Unable to start service Intent not found'
[ "android" ]
[ "Android" ]
In the Android application that I've been playing around with I wrote a service which consumes the Twitter streaming API which I trigger from the app's main activity like so: [source,java] ---- public class MyActivity extends Activity { ... @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = new Intent(this, TweetService.class); startService(intent); ... } } ---- Where +++<cite>+++TweetService+++</cite>+++ is defined roughly like this: [source,java] ---- public class TweetService extends IntentService { @Override protected void onHandleIntent(Intent intent) { // Twitter streaming API stuff goes here } } ---- Unfortunately when I tried to deploy the app the service wasn't starting and I got this message in the log: [source,text] ---- 01-01 03:10:31.758: WARN/ActivityManager(106): Unable to start service Intent { cmp=com.example/.TweetService }: not found ---- What I hadn't realised is that the service needs to be specified in the +++<cite>+++AndroidManifest.xml+++</cite>+++ file but http://stackoverflow.com/questions/6313793/unable-to-start-service-intent-cmp-com-marie-mainactivity-backgroundservice[not inside the activity definition]: [source,xml] ---- <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example" android:versionCode="1" android:versionName="1.0"> <application android:label="@string/app_name"> <activity android:name="MyActivity" android:label="@string/app_name" android:launchMode="singleInstance"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <service android:name="TweetService"></service> </application> <uses-permission android:name="android.permission.INTERNET"/> </manifest> ---- After adding the service definition it works fine.
null
null
[ 0.03810838982462883, -0.03693914785981178, -0.021086344495415688, -0.00881523173302412, 0.07303943485021591, 0.024387920275330544, 0.05215229094028473, 0.03334938362240791, 0.012048638425767422, -0.0032844231463968754, -0.028338095173239708, -0.00869335699826479, -0.05453774333000183, 0.0029593559447675943, -0.0029099569655954838, 0.050346773117780685, 0.11241356283426285, 0.02354184351861477, 0.04647986963391304, -0.01673903875052929, 0.01601015217602253, 0.07145474851131439, 0.02242155373096466, 0.04970236122608185, 0.0325637049973011, 0.009930924512445927, 0.022202685475349426, 0.018104804679751396, -0.036007482558488846, 0.0011924778809770942, 0.027237117290496826, -0.010098692961037159, 0.019828975200653076, -0.0038115577772259712, -0.0007474091835319996, -0.0017626316985115409, -0.01727721467614174, 0.008391544222831726, -0.005451310891658068, 0.008624262176454067, -0.07907243818044662, 0.011586708948016167, -0.005790146999061108, -0.03593188896775246, -0.02947407029569149, 0.005473603960126638, -0.013800743967294693, 0.005120376590639353, -0.032256532460451126, -0.02183573693037033, -0.07337036728858948, 0.029289904981851578, -0.04601868987083435, -0.0017125842859968543, 0.02486051619052887, 0.05477496236562729, -0.005383832845836878, -0.09164819121360779, 0.018125541508197784, -0.0410907119512558, 0.03881775587797165, 0.001857052673585713, 0.007055715657770634, 0.00742896506562829, 0.007018835749477148, -0.0036184582859277725, -0.020565509796142578, 0.07180432975292206, -0.008419385179877281, -0.014523228630423546, 0.0011645853519439697, 0.01130139920860529, -0.03361626714468002, 0.003990188706666231, -0.004536537453532219, -0.04754837974905968, -0.01703130267560482, 0.10925804078578949, -0.015205946750938892, 0.032933369278907776, -0.04931521415710449, -0.002929829992353916, 0.013306277804076672, 0.01391946617513895, -0.00508258817717433, -0.04688888415694237, -0.019202591851353645, -0.01527845673263073, -0.020944800227880478, 0.029653865844011307, 0.04057292640209198, -0.018687216565012932, -0.00003933786501875147, 0.041496213525533676, 0.005841182544827461, 0.02759958617389202, 0.0018646620446816087, -0.015745993703603745, -0.008547010831534863, -0.010956211015582085, -0.03117584064602852, 0.012101948261260986, 0.008239034563302994, 0.06984004378318787, -0.05764491483569145, -0.054556407034397125, -0.008385688066482544, -0.03163274750113487, 0.007924515753984451, 0.0005500871920958161, -0.01830611377954483, 0.024689026176929474, -0.0005225763306953013, -0.007456280756741762, -0.07451041042804718, 0.08268453925848007, 0.016169339418411255, -0.012238414958119392, -0.013239804655313492, 0.020636320114135742, 0.0674273669719696, 0.035711079835891724, -0.03522911295294762, 0.04824553802609444, -0.012224202044308186, 0.025176476687192917, -0.06242433190345764, 0.01899557374417782, -0.03270662948489189, -0.05600816011428833, -0.002257563406601548, 0.0442734956741333, 0.044020820409059525, 0.019456714391708374, -0.0036101844161748886, 0.011124582029879093, 0.009686046279966831, -0.031393058598041534, 0.0666847825050354, 0.013080297037959099, -0.05240355804562569, -0.030047493055462837, -0.022786717861890793, -0.02085595205426216, 0.039269108325242996, 0.0032189383637160063, 0.02382679656147957, -0.048572346568107605, -0.04038049653172493, 0.026941638439893723, -0.006892970763146877, 0.0232809130102396, 0.05164957419037819, -0.011596092022955418, 0.00013053591828793287, 0.06750568002462387, 0.019753485918045044, 0.02519984170794487, -0.0347428061068058, 0.03650824353098869, 0.03175133466720581, 0.03778846189379692, -0.01897634007036686, 0.028323031961917877, 0.022048521786928177, -0.03808491677045822, 0.01709841564297676, 0.03878485783934593, 0.005957418587058783, -0.010007061064243317, -0.0509294830262661, -0.09197534620761871, 0.06994209438562393, -0.03896079212427139, 0.0027600692119449377, 0.021126698702573776, 0.058898091316223145, 0.02046510949730873, 0.009761384688317776, 0.04157233238220215, -0.06894052773714066, 0.038846950978040695, 0.042433418333530426, 0.005011449567973614, 0.03038768470287323, -0.007131738122552633, 0.02524620294570923, 0.05210939794778824, -0.024337569251656532, 0.020364809781312943, -0.0627942681312561, -0.08804643154144287, -0.0038146853912621737, 0.0236905999481678, 0.052513495087623596, -0.035851944237947464, -0.016743924468755722, 0.09082072973251343, 0.01803351193666458, 0.006767307873815298, 0.027318187057971954, -0.012733077630400658, 0.003335152054205537, -0.037975799292325974, -0.07413002848625183, 0.02713952772319317, 0.052794333547353745, -0.021942807361483574, -0.027152786031365395, 0.02261395752429962, -0.027163611724972725, -0.0159488283097744, 0.014950877986848354, -0.04616014286875725, 0.06003349646925926, 0.0012604329967871308, -0.0006179839256219566, -0.04687812179327011, 0.057834871113300323, -0.04774564504623413, -0.009519471786916256, -0.01292935386300087, -0.013271356001496315, -0.02278057672083378, -0.00031387966009788215, 0.10001938045024872, 0.03404076769948006, -0.00882050208747387, -0.06401050090789795, 0.02547473832964897, 0.038130830973386765, -0.04438447579741478, 0.012084830552339554, -0.034477490931749344, -0.005474315956234932, 0.017276277765631676, -0.01326393149793148, -0.028707241639494896, -0.014603004790842533, -0.044400643557310104, 0.009202348068356514, 0.08560355752706528, -0.029270589351654053, 0.05761373043060303, -0.012378555722534657, -0.025822993367910385, 0.00567100802436471, -0.05591218173503876, -0.04003257676959038, -0.015350641682744026, 0.0003989405231550336, -0.022172249853610992, 0.054659388959407806, -0.0416824072599411, -0.041602447628974915, -0.018998101353645325, -0.055528752505779266, 0.014055299572646618, 0.012405729852616787, 0.02751256339251995, -0.001224706880748272, 0.044831857085227966, -0.0428755097091198, 0.006253925152122974, -0.03165740892291069, -0.012001351453363895, 0.042258162051439285, 0.011668258346617222, -0.0006135136354714632, 0.04406783729791641, 0.025150911882519722, -0.020111942663788795, 0.03739865496754646, 0.011114595457911491, 0.014887026511132717, 0.0065093496814370155, 0.03367301821708679, -0.016039881855249405, -0.012763713486492634, -0.015645641833543777, -0.005983450915664434, 0.02645214833319187, -0.037136465311050415, -0.06949000805616379, 0.016235264018177986, -0.07817193120718002, 0.048627909272909164, -0.010011358186602592, -0.030454536899924278, 0.029039248824119568, 0.03402886167168617, 0.02175067365169525, 0.06323140114545822, -0.02536965347826481, 0.0726398378610611, 0.004439152777194977, 0.002222631825134158, 0.03789457678794861, -0.017054196447134018, 0.028457943350076675, -0.04793088138103485, 0.015841634944081306, 0.07271386682987213, -0.002240581903606653, 0.01074407808482647, -0.04993043467402458, 0.0034122115466743708, -0.01921771839261055, -0.2437107115983963, 0.017569750547409058, -0.014067860320210457, -0.020967494696378708, 0.016973212361335754, -0.006869477219879627, 0.01266474463045597, -0.016535157337784767, -0.017529776319861412, 0.07056088000535965, -0.01668088324368, -0.03418276086449623, -0.0004070969589520246, 0.016995534300804138, -0.019437741488218307, -0.010727662593126297, -0.012818603776395321, -0.025751834735274315, 0.013940908014774323, 0.011205925606191158, -0.03404310345649719, -0.05286416783928871, 0.02501923032104969, 0.02955027110874653, 0.055824022740125656, 0.0356895737349987, -0.07744163274765015, 0.04541067034006119, 0.0008649362716823816, -0.035316746681928635, 0.0052713677287101746, -0.06418953835964203, 0.002638431265950203, 0.016455180943012238, -0.03643842041492462, -0.0010523366509005427, 0.025823717936873436, 0.013063698075711727, -0.0006234162719920278, -0.0021647035609930754, 0.0022114641033113003, -0.07809430360794067, -0.025821056216955185, 0.012834584340453148, 0.04290638491511345, -0.015824899077415466, -0.06733392179012299, 0.021907689049839973, -0.03836498409509659, 0.08568887412548065, -0.018940867856144905, -0.0388517864048481, -0.02713618054986, -0.00257342541590333, 0.0006869409698992968, -0.030441394075751305, -0.02423831820487976, -0.005259669851511717, -0.027327660471200943, -0.045379091054201126, 0.015504457987844944, -0.028857821598649025, -0.034129198640584946, -0.026167437434196472, -0.026972752064466476, -0.04741533473134041, -0.019874902442097664, 0.0012603446375578642, 0.07335282117128372, 0.03767725080251694, -0.04219486936926842, -0.00017735805886331946, 0.013807015493512154, -0.10406630486249924, -0.007262038998305798, -0.04542168602347374, -0.04446699470281601, 0.010364023968577385, -0.03740943223237991, 0.005522243212908506, -0.0382051058113575, -0.0037816332187503576, 0.033276598900556564, 0.03391062468290329, 0.000703530153259635, -0.006344339810311794, -0.006058504339307547, -0.03647056594491005, 0.0034210984595119953, 0.01341869868338108, 0.059038080275058746, -0.046453624963760376, -0.02520458772778511, 0.011974594555795193, -0.02745664305984974, 0.03507043421268463, -0.0003754357749130577, 0.012175757437944412, -0.014208686538040638, 0.0032661627046763897, 0.02412329986691475, -0.032337114214897156, -0.0017376004252582788, 0.01124957948923111, 0.038205716758966446, -0.015246446244418621, -0.06685542315244675, -0.00027891856734640896, 0.005263015162199736, 0.030435878783464432, -0.002416360890492797, -0.01791941002011299, -0.023627933114767075, -0.0386914387345314, -0.06485995650291443, 0.013349260203540325, 0.007142231799662113, 0.049856048077344894, 0.0031042667105793953, -0.017952358350157738, -0.05958377942442894, 0.007041377015411854, 0.02341945841908455, 0.002689024666324258, -0.04042891040444374, -0.015164562501013279, -0.04641513526439667, -0.008939838036894798, -0.014184044674038887, 0.011427976191043854, 0.021727992221713066, -0.008899598382413387, 0.014414610341191292, -0.031006669625639915, -0.0009735158528201282, -0.03381473943591118, -0.012164272367954254, -0.05588993802666664, 0.009091928601264954, -0.0265829898416996, -0.005333030130714178, 0.013560214079916477, 0.009627417661249638, 0.03179636970162392, 0.08617296069860458, -0.015869170427322388, 0.05076247453689575, -0.01297021098434925, 0.005560359917581081, 0.0050650774501264095, -0.011668423190712929, -0.041871074587106705, 0.033928122371435165, -0.012750751338899136, -0.03136388584971428, -0.028186559677124023, 0.02584334835410118, -0.019609538838267326, -0.017358003184199333, -0.009746765717864037, 0.009211922995746136, -0.07473716139793396, -0.027860678732395172, 0.00832266453653574, -0.008527538739144802, 0.033647533506155014, -0.0289292111992836, 0.01726904697716236, -0.00942999217659235, -0.026768339797854424, 0.002456268761307001, -0.06953244656324387, -0.023117225617170334, 0.039022378623485565, -0.0033619245514273643, 0.011754292994737625, 0.03676849603652954, 0.007665006443858147, 0.006464580073952675, 0.016521159559488297, 0.032987285405397415, -0.023161781951785088, 0.01162186823785305, -0.013613642193377018, 0.05734170228242874, 0.07290121912956238, 0.009057506918907166, -0.006000681780278683, -0.017853284254670143, -0.046602874994277954, -0.046243228018283844, 0.02244739793241024, -0.008101754821836948, -0.010921523906290531, -0.02503732405602932, -0.0628933534026146, 0.04758404567837715, 0.00026104963035322726, 0.05673752725124359, 0.006546167191118002, -0.010880489833652973, 0.02502294071018696, -0.06769342720508575, 0.07329803705215454, 0.08406727015972137, -0.042172010987997055, 0.0026959022507071495, 0.0120786651968956, 0.017606938257813454, -0.0013218650128692389, 0.015331398695707321, -0.06020832434296608, 0.004233098588883877, -0.0441918782889843, 0.003580159740522504, -0.04641255363821983, -0.026789870113134384, -0.025503206998109818, 0.026728475466370583, -0.004562844522297382, -0.02135980688035488, 0.005507305730134249, -0.01652677170932293, -0.026351680979132652, -0.023936763405799866, 0.0380801223218441, -0.010881468653678894, -0.004478195682168007, 0.015566087327897549, -0.043302733451128006, -0.0162026546895504, -0.03776780515909195, 0.026712065562605858, 0.03238215297460556, 0.0007482017390429974, -0.025327369570732117, -0.06632132828235626, -0.009400507435202599, 0.0361328162252903, 0.06249469518661499, 0.0060018571093678474, -0.009365706704556942, -0.0005372672458179295, -0.014382472261786461, -0.022198624908924103, 0.026413386687636375, -0.003988860175013542, 0.017217477783560753, -0.0009300037636421621, 0.06959947198629379, 0.029537467285990715, 0.0141258854418993, -0.0068685393780469894, 0.008768420666456223, 0.07054702192544937, -0.020099958404898643, -0.02577027678489685, 0.016202406957745552, -0.06311745941638947, 0.00483813788741827, 0.006662661675363779, 0.009075337089598179, -0.0511045902967453, 0.02326594479382038, 0.055968210101127625, -0.0017720224568620324, 0.0560457669198513, -0.004515757318586111, 0.04838152229785919, -0.047194499522447586, 0.01318004447966814, -0.08444090187549591, 0.018123887479305267, 0.04580935463309288, 0.012321483343839645, 0.008472459390759468, -0.014197582378983498, -0.017994603142142296, 0.03710176795721054, -0.03928840532898903, -0.021843455731868744, 0.024152886122465134, -0.001410414231941104, -0.02351156435906887, 0.04711630940437317, -0.08808241784572601, 0.06415168941020966, 0.019987603649497032, -0.0407818965613842, -0.023616207763552666, 0.006584960035979748, 0.04358835145831108, 0.040036920458078384, 0.01917109079658985, -0.015455344691872597, -0.023038389161229134, 0.0812181681394577, -0.01154386717826128, 0.015545626170933247, 0.039230410009622574, -0.01233898475766182, 0.023714309558272362, 0.041669394820928574, -0.036436744034290314, -0.010021312162280083, 0.01880756765604019, -0.02736463025212288, -0.06941573321819305, 0.015021555125713348, 0.018157776445150375, 0.01401844434440136, -0.03266305476427078, 0.07512610405683517, 0.029218999668955803, -0.07082433253526688, -0.0027871939819306135, 0.021635062992572784, -0.022977584972977638, -0.05043835565447807, -0.04453819990158081, -0.013695448637008667, -0.03827466070652008, 0.06026284396648407, 0.01667116954922676, 0.00943746604025364, 0.08954662084579468, -0.0072630951181054115, -0.013438468798995018, -0.00018659229681361467, 0.07440425455570221, 0.06932712346315384, 0.0027227778919041157, 0.0003953014384023845, 0.058729808777570724, -0.031440120190382004, -0.03342884033918381, 0.011190079152584076, -0.021250003948807716, -0.03629673272371292, 0.02374696545302868, 0.00733819929882884, 0.08391860127449036, -0.0052498155273497105, 0.08033841103315353, 0.00800574105232954, -0.0035541311372071505, -0.00007402128539979458, 0.0320465974509716, 0.021103937178850174, 0.004085445310920477, -0.019899295642971992, 0.055303774774074554, 0.022390447556972504, 0.00443620840087533, 0.010946004651486874, -0.032834552228450775, -0.015479744412004948, 0.026728644967079163, 0.005783241707831621, -0.024799160659313202, 0.00327493017539382, 0.01339369360357523, 0.054690245538949966, -0.023296944797039032, -0.0002591670781839639, -0.009010598063468933, 0.012016124092042446, -0.03078145906329155, 0.04924334958195686, -0.0149347810074687, -0.029023488983511925, -0.0030568197835236788, -0.013520455919206142, -0.028330590575933456, -0.006369190756231546, -0.03771970421075821, 0.05033617466688156, -0.005931605119258165, 0.01636696420609951, -0.031690772622823715, -0.0033156578429043293, -0.0570882186293602, -0.014076223596930504, -0.07072727382183075, -0.026025846600532532, -0.06178736686706543, -0.03061312809586525, 0.003146534785628319, -0.0032917135395109653, -0.0381210520863533, -0.02517322078347206, -0.04213790223002434, -0.01265180204063654, -0.001330281258560717, -0.06817615777254105, -0.012652663514018059, 0.015632029622793198, 0.012805192731320858, 0.03325926885008812, -0.0042496174573898315, 0.07660935819149017, 0.015994630753993988, 0.006746080704033375, -0.045015621930360794, 0.002044598339125514, 0.03728827089071274, 0.021042514592409134, -0.01051607821136713, -0.06597548723220825, 0.01879810355603695, -0.0026892961468547583, -0.002307384042069316, -0.05195898190140724, -0.010588819161057472, 0.06753341108560562, 0.05859862267971039, 0.053652387112379074, -0.01666775718331337, -0.0015063865575939417, -0.03894153609871864, 0.013485374860465527, 0.012474698014557362, -0.005594139918684959, 0.06933172792196274, -0.0230018962174654, 0.06921928375959396, 0.050462789833545685, -0.006717514246702194, -0.030075494199991226, 0.025147758424282074, -0.01070888340473175, -0.023631161078810692, -0.0600733608007431, -0.015591755509376526, -0.033084847033023834, -0.06381639093160629, 0.00237639294937253, 0.02948499284684658, -0.006095544435083866, -0.054943352937698364, 0.027840744704008102, 0.05850859731435776, -0.008540021255612373, 0.0407576747238636, -0.03422536700963974, 0.022661522030830383, -0.026834866032004356, -0.024492859840393066, -0.01575571298599243, 0.0016491011483594775, 0.008948701433837414, -0.06747876107692719, -0.012319852598011494, -0.025280391797423363, -0.01093758549541235, -0.019582901149988174, 0.03221949562430382, 0.05222040042281151, -0.025088071823120117, 0.011715473607182503 ]
[ -0.04869892820715904, -0.03136204928159714, -0.01756029576063156, -0.05226025730371475, 0.001225411775521934, -0.07837290316820145, 0.03756324574351311, 0.05081496387720108, 0.02596091851592064, -0.018736347556114197, 0.017039252445101738, -0.016275595873594284, 0.021318787708878517, -0.014985942281782627, 0.08274824172258377, -0.015986353158950806, 0.046112023293972015, -0.06784592568874359, -0.013198425993323326, -0.002341302577406168, 0.05830055847764015, -0.03234216198325157, -0.012109003961086273, -0.030201418325304985, 0.025318151339888573, 0.03154096379876137, 0.027064930647611618, -0.038125887513160706, 0.015281463041901588, -0.16282182931900024, 0.0353720560669899, -0.0203779898583889, 0.016231250017881393, -0.01596442423760891, -0.019902309402823448, 0.05762619525194168, -0.004881011322140694, 0.009865033440291882, 0.017539575695991516, 0.07549462467432022, -0.004532143473625183, 0.013841747306287289, -0.06195251643657684, -0.028615916147828102, -0.016014520078897476, -0.03672724589705467, -0.0063316309824585915, 0.002083761617541313, -0.02037469483911991, -0.013136968947947025, -0.05136024206876755, 0.024082327261567116, 0.02191789075732231, 0.002583898603916168, -0.03125286474823952, 0.016923047602176666, 0.04673388600349426, 0.10107553005218506, 0.03911075368523598, 0.059727028012275696, 0.040520861744880676, -0.022760579362511635, -0.13937516510486603, 0.09665092080831528, -0.005374553147703409, 0.009406967088580132, -0.011468810960650444, 0.009233924560248852, 0.010783826000988483, 0.0629829466342926, 0.010110462084412575, 0.025298217311501503, 0.01471793744713068, 0.09003988653421402, 0.0047723231837153435, 0.01592005230486393, 0.03377029672265053, 0.018130993470549583, -0.003880023490637541, -0.06260724365711212, -0.06245279684662819, -0.04547300189733505, -0.008604099974036217, 0.028322678059339523, -0.040676016360521317, 0.025335533544421196, -0.021851561963558197, 0.06228092685341835, 0.033815592527389526, 0.04011452943086624, 0.025115683674812317, -0.004395799711346626, 0.023001696914434433, -0.0015408718027174473, -0.10622803866863251, -0.029384320601820946, -0.04233521223068237, -0.015389617532491684, -0.08809401094913483, 0.4472188949584961, -0.01364973932504654, 0.012959130108356476, 0.0483478307723999, 0.042710378766059875, 0.018144626170396805, -0.04125744476914406, -0.0026720601599663496, -0.0595591701567173, -0.011124609969556332, -0.012631351128220558, 0.0009730029851198196, -0.0031866685021668673, 0.03840816393494606, -0.05942152068018913, -0.008663175627589226, 0.03439807519316673, 0.03847682476043701, 0.00657795462757349, -0.009627562947571278, 0.022556636482477188, -0.03313327953219414, 0.012424556538462639, 0.020065808668732643, -0.010446019470691681, -0.025439387187361717, -0.04363328218460083, 0.050555918365716934, 0.041852664202451706, 0.008656293153762817, -0.005675435531884432, 0.048275742679834366, -0.03297123312950134, -0.08866042643785477, 0.005227855406701565, 0.01958979107439518, 0.019291190430521965, 0.0244300439953804, -0.04642519727349281, -0.0381709560751915, 0.01762196235358715, -0.012064640410244465, -0.04857410490512848, 0.04241938143968582, -0.05772032216191292, -0.020423319190740585, 0.13380256295204163, 0.021654684096574783, -0.006801052484661341, -0.012108276598155499, -0.04549720138311386, -0.023769071325659752, 0.03766791522502899, 0.01386228483170271, -0.03170131891965866, -0.0023822393268346786, 0.00728308130055666, 0.04873071238398552, -0.018333755433559418, -0.0400017574429512, 0.01923656463623047, 0.020596453920006752, -0.025820907205343246, -0.035341646522283554, 0.04602880775928497, 0.03901928663253784, -0.094719298183918, 0.002327787457033992, -0.0008958771359175444, -0.024448759853839874, -0.025723161175847054, -0.014488565735518932, 0.041597455739974976, -0.026261625811457634, -0.03776765614748001, 0.03736700490117073, -0.011008882895112038, 0.0011718852911144495, 0.018284710124135017, 0.023230653256177902, 0.0051599228754639626, -0.006569334771484137, -0.013130984269082546, -0.031556226313114166, -0.027941767126321793, -0.04574590548872948, -0.06470895558595657, -0.03172619268298149, -0.0322420634329319, 0.016131559386849403, -0.05487601086497307, -0.059704847633838654, 0.012774709612131119, -0.05443591997027397, 0.020741276443004608, 0.015357794240117073, -0.03918495774269104, 0.0160262119024992, -0.04528559371829033, 0.014499657787382603, -0.037869084626436234, 0.012262321077287197, 0.009280438534915447, -0.0509214885532856, 0.03807796165347099, -0.025081386789679527, 0.042889922857284546, 0.02085941657423973, 0.013737129978835583, 0.04372207820415497, 0.004200072027742863, -0.009599068202078342, 0.015227275900542736, 0.005407845135778189, 0.04678407311439514, -0.0002710709231905639, -0.030054518952965736, -0.001098170760087669, 0.026045579463243484, 0.03381192684173584, 0.007483862340450287, -0.03292118385434151, 0.037102241069078445, 0.017550723627209663, -0.3073079586029053, -0.04867022484540939, -0.00626316899433732, -0.03018178790807724, -0.06005026400089264, -0.00876430794596672, -0.006102829705923796, -0.045694392174482346, 0.018098006024956703, 0.011254146695137024, 0.12824028730392456, -0.04878672584891319, 0.019498461857438087, -0.06763911247253418, 0.03696521371603012, -0.019717426970601082, -0.05030836537480354, 0.02180275321006775, 0.05385807529091835, 0.01701580174267292, 0.01854126527905464, -0.029193619266152382, 0.037216998636722565, -0.05457903817296028, 0.025762362405657768, 0.0071566239930689335, 0.10591015219688416, 0.03330579772591591, 0.030092716217041016, -0.08142026513814926, 0.0554840974509716, 0.04504898935556412, -0.0016376010607928038, -0.12393169105052948, -0.002067271154373884, -0.05867172032594681, -0.005653271917253733, 0.010291188955307007, -0.02048521675169468, -0.01984352618455887, -0.0771942287683487, 0.061432331800460815, -0.04546613246202469, -0.040457189083099365, 0.0002035773650277406, -0.010166442021727562, -0.04539836198091507, -0.03801500052213669, -0.006659978535026312, 0.04799353703856468, -0.012865663506090641, -0.026974670588970184, 0.017175642773509026, 0.027409877628087997, 0.03458207845687866, -0.025612283498048782, -0.03771230950951576, 0.023445310071110725, -0.008215085603296757, -0.03531515598297119, -0.012484933249652386, 0.08719980716705322, 0.04238920658826828, -0.056262772530317307, 0.0022843624465167522, 0.00034730194602161646, -0.012347576208412647, 0.007447448093444109, -0.01965014450252056, -0.02096700482070446, -0.03455173969268799, 0.10143838077783585, -0.029111791402101517, 0.03228723257780075, 0.0371708944439888, -0.0027706099208444357, 0.04485417902469635, -0.04766912758350372, 0.04062657058238983, -0.010990502312779427, 0.021594583988189697, 0.004865674767643213, 0.04523252323269844, -0.05337263271212578, -0.03397773206233978, 0.0577591136097908, -0.010183165781199932, -0.024657344445586205, 0.05062026530504227, -0.015692606568336487, 0.00628418056294322, -0.0012828772887587547, -0.0068464819341897964, -0.0674770250916481, 0.08098544180393219, -0.014984778128564358, -0.2596140503883362, 0.01620003953576088, 0.015410919673740864, 0.043821509927511215, -0.016668537631630898, 0.013670112006366253, 0.02276782877743244, -0.011118163354694843, -0.03854835778474808, 0.015587958507239819, 0.0031076848972588778, 0.024034861475229263, 0.007323145866394043, -0.021105246618390083, 0.014147916808724403, 0.024326831102371216, 0.0650729089975357, 0.005258740857243538, 0.012795377522706985, -0.025640564039349556, 0.00960005447268486, -0.04758104681968689, 0.13714838027954102, -0.009004956111311913, 0.04788464680314064, 0.05038700997829437, -0.011116384528577328, 0.02935781516134739, 0.07768459618091583, 0.03428049013018608, -0.0190842617303133, -0.020456785336136818, 0.05720885097980499, 0.04887809976935387, 0.021319998428225517, -0.09009988605976105, 0.025156600400805473, 0.00861424207687378, 0.020827777683734894, 0.03651677072048187, -0.02921578846871853, 0.03841083124279976, -0.020703298971056938, 0.050325628370046616, 0.050723932683467865, -0.0028941105119884014, -0.05311620980501175, -0.03132987022399902, -0.06515464931726456, 0.018207671120762825, 0.0027698541525751352, -0.07205566018819809, -0.030392669141292572, 0.04610308259725571, 0.002891060197725892, 0.07036614418029785, 0.012484360486268997, -0.026195628568530083, -0.003256678581237793, 0.0034148297272622585, -0.005185018293559551, -0.02817261591553688, 0.12318036705255508, 0.00803402904421091, 0.04940773919224739 ]
[ 0.00452140299603343, -0.0018780528334900737, 0.026731500402092934, -0.043736353516578674, 0.019283803179860115, -0.00402434915304184, 0.013571313582360744, 0.07090280205011368, 0.014418629929423332, -0.004117412958294153, 0.003872815053910017, -0.01091856136918068, 0.03776499629020691, -0.002522598020732403, 0.04516766220331192, -0.021461166441440582, 0.02597498893737793, -0.048045892268419266, 0.025351110845804214, -0.012686464004218578, -0.0009131397819146514, 0.0522402822971344, 0.00040881751920096576, 0.013546963222324848, 0.030836904421448708, 0.012666722759604454, -0.042516425251960754, -0.03160439804196358, 0.012258836068212986, -0.08589872717857361, 0.02730521745979786, -0.00927713606506586, 0.011711826547980309, -0.006827573291957378, -0.04285341128706932, -0.000477994472021237, -0.014293315820395947, 0.01116809993982315, -0.0308513306081295, 0.0730241909623146, 0.026239752769470215, -0.04358040168881416, -0.01783156208693981, 0.01799837127327919, -0.04681522771716118, -0.01061043981462717, 0.037764813750982285, -0.027532177045941353, -0.030517257750034332, 0.05017777904868126, -0.01900862716138363, 0.009739503264427185, -0.00701473793014884, 0.04016079753637314, -0.01983579434454441, 0.01737230457365513, -0.04638383165001869, 0.05975298583507538, 0.0052399542182683945, 0.019747553393244743, -0.002579831052571535, 0.0003389291523490101, -0.02790161594748497, 0.007209619507193565, -0.0010321801528334618, -0.02165035530924797, -0.06072657182812691, -0.022577345371246338, 0.01641371287405491, 0.016771990805864334, 0.023490361869335175, 0.02977275848388672, 0.018451664596796036, -0.015193499624729156, -0.054882582277059555, 0.01743827760219574, 0.05285513028502464, -0.017478303983807564, -0.05465575307607651, -0.008337545208632946, -0.015045697800815105, 0.013134497217833996, -0.023868151009082794, 0.06476849317550659, -0.020792236551642418, 0.006465602666139603, 0.013520403765141964, 0.006789817940443754, -0.0051122703589499, 0.01957988180220127, -0.017824159935116768, 0.04519517347216606, 0.008772209286689758, -0.01792442984879017, -0.07213651388883591, 0.025201383978128433, -0.11213380098342896, -0.05796322226524353, -0.02707928605377674, 0.7850736975669861, 0.012548951432108879, 0.02398988977074623, 0.03430395573377609, 0.013685498386621475, 0.028045542538166046, -0.04534874111413956, -0.03562694415450096, -0.011428141966462135, 0.042584117501974106, 0.014682487584650517, 0.04945039749145508, -0.02587558701634407, 0.05684797838330269, 0.028511617332696915, 0.004826918710023165, 0.05986902862787247, 0.014944062568247318, 0.016426045447587967, 0.03329133242368698, 0.03884812071919441, 0.03471897542476654, -0.045108962804079056, -0.01971954107284546, -0.017757313326001167, 0.024439867585897446, -0.1417493224143982, 0.013495469465851784, -7.892248500269699e-33, 0.022102028131484985, -0.03269478678703308, 0.029580460861325264, 0.026953481137752533, -0.005816266406327486, -0.024391597136855125, 0.002442845143377781, 0.037565357983112335, 0.005732883233577013, -0.04318186268210411, 0.0022138780914247036, 0.005854204297065735, -0.0018030715873464942, -0.01502914261072874, 0.010240449570119381, -0.004674294497817755, -0.0027434583753347397, 0.023317981511354446, 0.013235247693955898, 0.002382357371971011, -0.0242718905210495, 0.017804646864533424, -0.04163586348295212, -0.0021759632509201765, -0.0018681712681427598, 0.04128422960639, 0.06678389012813568, -0.02500554919242859, 0.012400939129292965, -0.0585988387465477, -0.02821286767721176, -0.0013805740745738149, -0.026895133778452873, -0.012944699265062809, 0.05730928108096123, -0.04621896892786026, -0.06556223332881927, 0.02763480320572853, -0.03793398290872574, -0.06902541220188141, -0.058132730424404144, 0.019534917548298836, -0.03446859493851662, -0.02148931287229061, -0.01635402999818325, -0.013210928067564964, -0.006346037611365318, -0.007273995783179998, -0.01606180891394615, -0.019273873418569565, 0.0684632658958435, -0.005865013226866722, -0.017170408740639687, -0.018769172951579094, -0.020730281248688698, 0.008098549209535122, -0.03815435618162155, 0.04062813147902489, -0.007586073596030474, -0.00539179053157568, 0.03956839442253113, -0.0583876334130764, 0.006254571955651045, 0.03251195698976517, 0.011068263091146946, 0.0013781462330371141, -0.01804443821310997, -0.029420923441648483, 0.014783937484025955, 0.013472047634422779, -0.049777619540691376, -0.01323293149471283, 0.024866187945008278, -0.002339255763217807, -0.006294127553701401, 0.013573981821537018, 0.026939885690808296, -0.029219985008239746, -0.015126405283808708, 0.007527728099375963, 0.008914162404835224, -0.053764235228300095, 0.04600781947374344, -0.03950130194425583, -0.050684235990047455, 0.0011785912793129683, 0.038317419588565826, -0.023865895345807076, -0.012507538311183453, 0.04358154162764549, -0.011066170409321785, 0.05681804195046425, -0.022251177579164505, 0.014323501847684383, -0.020047631114721298, 7.997561773843837e-33, -0.05180453136563301, -0.023274390026926994, -0.007921886630356312, -0.039362724870443344, 0.02987225167453289, -0.00020851765293627977, 0.018570562824606895, 0.03172929584980011, -0.044156163930892944, 0.030572302639484406, -0.01016824971884489, -0.005385612137615681, -0.029715798795223236, 0.013943074271082878, 0.050023503601551056, -0.026626810431480408, 0.050045985728502274, 0.01932823471724987, -0.0013244993751868606, -0.0021144982893019915, -0.040850382298231125, 0.023826081305742264, 0.03917861357331276, 0.024754682555794716, 0.04098697379231453, 0.043827954679727554, -0.007333226501941681, 0.029588818550109863, -0.026078909635543823, -0.04011629894375801, 0.03414130583405495, -0.016732659190893173, 0.000944258295930922, -0.01899782195687294, -0.01649458333849907, 0.032886192202568054, -0.027679158374667168, -0.035675376653671265, 0.0586959570646286, -0.046592529863119125, 0.035296082496643066, -0.055529676377773285, 0.05381069704890251, -0.0011825149413198233, -0.016195224598050117, -0.030338117852807045, -0.001988994888961315, -0.027381492778658867, -0.013043069280683994, -0.016024773940443993, 0.016415486112236977, 0.003118884051218629, -0.0010917977197095752, 0.028264416381716728, 0.04121879115700722, -0.005825159139931202, -0.007332697976380587, -0.0019426335347816348, -0.03334375470876694, -0.06704842299222946, 0.04295330122113228, -0.01320668775588274, -0.014081417582929134, 0.044007688760757446, -0.025232072919607162, -0.024641476571559906, 0.01819436438381672, 0.01170910894870758, -0.04743235185742378, 0.022061431780457497, 0.012858087196946144, -0.03022775799036026, -0.016201144084334373, 0.04806993901729584, 0.04627211391925812, -0.017335180193185806, 0.017816899344325066, -0.019963553175330162, -0.05868085101246834, -0.0294530987739563, -0.0009467874187976122, 0.03243791311979294, -0.002573133446276188, -0.02453608438372612, 0.023300105705857277, 0.0003863658639602363, 0.006390201393514872, -0.012274696491658688, 0.025589609518647194, 0.017298029735684395, -0.01970985159277916, 0.027020053938031197, -0.01512130443006754, 0.0025129413697868586, -0.009479093365371227, -1.317834019687325e-8, 0.0171646848320961, -0.03829604387283325, -0.025452906265854836, 0.03549162670969963, 0.007701185531914234, -0.009305566549301147, -0.02708558924496174, -0.0035672318190336227, 0.035060033202171326, 0.013493104837834835, -0.027493242174386978, -0.062238454818725586, -0.016528474166989326, 0.04558169096708298, 0.04328378289937973, -0.030864614993333817, -0.025449421256780624, -0.024667251855134964, 0.029709555208683014, 0.04897816851735115, -0.019319677725434303, 0.04513552412390709, -0.021896865218877792, -0.007295204792171717, 0.008762932382524014, 0.04673657566308975, 0.02865387313067913, -0.06350795179605484, 0.035759780555963516, 0.02393028326332569, 0.034291889518499374, -0.02248069830238819, -0.024162599816918373, -0.03504007309675217, -0.03039541468024254, 0.045094482600688934, 0.011288420297205448, -0.03006630763411522, -0.02081838995218277, 0.011753951199352741, -0.0031237646471709013, 0.024465087801218033, 0.02333194389939308, -0.021616410464048386, -0.031498294323682785, 0.0017029731534421444, -0.0027611986733973026, 0.03284432739019394, 0.03206472471356392, 0.035142362117767334, -0.0335785448551178, 0.012061426416039467, 0.005540749523788691, -0.038723234087228775, 0.01450419332832098, -0.025454722344875336, 0.03080487996339798, -0.054340820759534836, -0.0188882015645504, -0.008114811033010483, 0.0519319549202919, 0.003191637573763728, -0.037934884428977966, -0.028509916737675667 ]
learning-android-unable-to-start-service-intent-not-found
https://markhneedham.com/blog/2012/01/01/learning-android-unable-to-start-service-intent-not-found
false
2012-01-06 23:40:53
Learning Android: Freezing the UI with a BroadcastReceiver
[ "android" ]
[ "Android" ]
As I http://www.markhneedham.com/blog/2012/01/05/learning-android-getting-a-service-to-communicate-with-an-activity/[mentioned in a previous post] I recently wrote some code in my Android app to inform a http://developer.android.com/reference/android/content/BroadcastReceiver.html[BroadcastReceiver] whenever a service processed a tweet with a link in it but in implementing this I managed to freeze the UI every time that happened. I made the stupid (in hindsight) mistake of not realising that I shouldn't be doing a lot of logic in +++<cite>+++BroadcastReceiver.onReceive+++</cite>+++ since that bit of code gets executed on the UI thread. The service code which raises the broadcast message is the same as in the previous post: [source,java] ---- public class TweetService extends IntentService { ... @Override protected void onHandleIntent(Intent intent) { StatusListener listener = new UserStreamListener() { // override a whole load of methods - removed for brevity public void onStatus(Status status) { String theTweet = status.getText(); if (status.getText().contains("http://")) { Intent tweetMessage = new Intent(TweetTask.NEW_TWEET); tweetMessage.putExtra(android.content.Intent.EXTRA_TEXT, status.getText()); sendBroadcast(tweetMessage); } } }; // code to connect to the twitter streaming API } } ---- That is then handled like this by the BroadcastReceiver: [source,java] ---- public class MyActivity extends Activity { protected void onPause() { super.onPause(); if (dataUpdateReceiver != null) unregisterReceiver(dataUpdateReceiver); } protected void onResume() { super.onResume(); if (dataUpdateReceiver == null) dataUpdateReceiver = new DataUpdateReceiver(); IntentFilter intentFilter = new IntentFilter(TweetTask.NEW_TWEET); registerReceiver(dataUpdateReceiver, intentFilter); } private class DataUpdateReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals(TweetTask.NEW_TWEET)) { Pattern p = Pattern.compile("(http://[^\\s]+)"); String theTweet = intent.getStringExtra(TweetTask.NEW_TWEET); Matcher matcher = p.matcher(theTweet); int startIndex = -1; int endIndex = -1; while (matcher.find()) { startIndex = matcher.start(); endIndex = matcher.end(); } if (startIndex != -1 && endIndex != -1) { String resolvedUrl = resolveUrl(theTweet.substring(startIndex, endIndex)); saveToDatabase(resolvedUrl); updateUI(resolvedUrl); } } } } } ---- In particular the 'resolveUrl' line was probably the one one causing the problem since it makes a network call tohttp://www.markhneedham.com/blog/2011/12/31/clojure-casting-to-a-java-class-or-not/[resolve URLs from link shorteners]. To stop the screen freezing up I just needed to move most of the code from BroadcastReceiver into the TweetService: [source,java] ---- public class TweetService extends IntentService { ... @Override protected void onHandleIntent(Intent intent) { StatusListener listener = new UserStreamListener() { // override a whole load of methods - removed for brevity public void onStatus(Status status) { String theTweet = status.getText(); if (status.getText().contains("http://")) { Pattern p = Pattern.compile("(http://[^\\s]+)"); Matcher matcher = p.matcher(theTweet); int startIndex = -1; int endIndex = -1; while (matcher.find()) { startIndex = matcher.start(); endIndex = matcher.end(); } if (startIndex != -1 && endIndex != -1) { String resolvedUrl = resolveUrl(theTweet.substring(startIndex, endIndex)); saveToDatabase(resolvedUrl); Intent tweetMessage = new Intent(TweetTask.NEW_TWEET); tweetMessage.putExtra(android.content.Intent.EXTRA_TEXT, resolvedUrl); sendBroadcast(tweetMessage); } } } }; // code to connect to the twitter streaming API } } ---- And then the code for BroadcastReceiver becomes much simpler which means we're doing less work on the UI thread: [source,java] ---- private class DataUpdateReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals(TweetTask.NEW_TWEET)) { String url = intent.getStringExtra(TweetTask.NEW_TWEET); updateUI(url); } } } ---- And the freezing up of the UI is gone!
null
null
[ 0.04737722873687744, -0.017182976007461548, -0.008878344669938087, -0.004843501374125481, 0.06834463030099869, 0.005958272144198418, 0.05344062298536301, 0.03537599742412567, -0.008537949062883854, -0.00431866804137826, -0.016280196607112885, 0.0189199335873127, -0.0824827030301094, 0.007635135669261217, -0.007520474027842283, 0.07323437184095383, 0.10330555588006973, 0.0024425818119198084, 0.04073907807469368, 0.009151593782007694, 0.023247869685292244, 0.07848268002271652, 0.014369501732289791, 0.03537141531705856, 0.03559434041380882, 0.006810394115746021, 0.0130483852699399, 0.030406193807721138, -0.03278735280036926, -0.017954371869564056, 0.051114264875650406, 0.010584496892988682, 0.0025773008819669485, 0.006498168222606182, 0.0050436039455235004, 0.0049207257106900215, -0.015120433643460274, 0.004565456882119179, -0.015510163269937038, 0.030925853177905083, -0.09547220915555954, 0.016916049644351006, -0.0413600355386734, -0.025127576664090157, -0.04247552901506424, -0.0007036988972686231, -0.016976242884993553, 0.013699469156563282, -0.02148459106683731, 0.00013577683421317488, -0.08487691730260849, 0.033394668251276016, -0.023717394098639488, 0.023683104664087296, 0.024067793041467667, 0.0582304373383522, 0.0058405594900250435, -0.07739897072315216, 0.01683182641863823, -0.04277363047003746, 0.036459289491176605, -0.01142194028943777, 0.012783908285200596, -0.01435661781579256, -0.023698337376117706, -0.04564850777387619, 0.0052430289797484875, 0.05537976697087288, -0.0007492651930078864, -0.011904720216989517, -0.04134361818432808, 0.011626341380178928, -0.015468656085431576, 0.014618380926549435, 0.003989143762737513, -0.059284746646881104, 0.015148021280765533, 0.10644866526126862, 0.0051619140431284904, 0.02092653699219227, -0.026273483410477638, -0.023816775530576706, 0.0024480910506099463, 0.02512737736105919, 0.02153271622955799, -0.046520013362169266, -0.03899146616458893, -0.019725078716874123, -0.04866262897849083, 0.04949774220585823, 0.006562546361237764, -0.02529199980199337, -0.004283459857106209, 0.03300198167562485, -0.0037549801636487246, 0.020781632512807846, 0.010432294569909573, -0.016347812488675117, 0.004463215824216604, -0.024970918893814087, -0.021228520199656487, -0.009922511875629425, 0.02201741747558117, 0.055845707654953, -0.049346525222063065, -0.04647073522210121, -0.02172444388270378, -0.028398806229233742, -0.010025321505963802, 0.0005520061822608113, -0.01004425436258316, 0.025938821956515312, -0.011435052379965782, -0.013194617815315723, -0.07611449062824249, 0.05844857916235924, 0.020481368526816368, -0.033616963773965836, -0.017701689153909683, 0.019549963995814323, 0.05163965001702309, 0.030093608424067497, -0.006254491396248341, 0.06364396959543228, -0.01953917369246483, 0.03535483777523041, -0.048294804990291595, 0.01040601171553135, -0.04288891330361366, -0.04589076712727547, 0.0035247611813247204, 0.05329691246151924, 0.02373030222952366, 0.014444191008806229, -0.016178252175450325, 0.009323014877736568, 0.007037799805402756, -0.015468071214854717, 0.044395383447408676, 0.026695461943745613, -0.04552971571683884, -0.011190743185579777, -0.015185997821390629, 0.0021171625703573227, 0.009278868325054646, 0.0020795846357941628, 0.0023793643340468407, -0.017645904794335365, 0.0036166871432214975, 0.030433975160121918, -0.012217548675835133, 0.0015237022889778018, 0.03596057370305061, -0.032189324498176575, 0.0020269230008125305, 0.06460774689912796, 0.017816418781876564, 0.028049388900399208, -0.02683297172188759, 0.054650742560625076, 0.0307331383228302, 0.034603167325258255, -0.008763252757489681, 0.022480759769678116, 0.011792010627686977, -0.030329572036862373, 0.014731169678270817, 0.056038953363895416, 0.0029771453700959682, -0.01179241482168436, -0.04683603718876839, -0.07706760615110397, 0.0537547692656517, -0.04597843438386917, -0.013924505561590195, 0.030355777591466904, 0.06531485170125961, 0.0018404216971248388, 0.013620940037071705, 0.016018066555261612, -0.06145373359322548, 0.027973558753728867, 0.0398295558989048, 0.022064505144953728, 0.01340887974947691, -0.004881842527538538, 0.04676416516304016, 0.022817349061369896, -0.02031796984374523, -0.007921096868813038, -0.07038827985525131, -0.06172769144177437, -0.013056911528110504, -0.002193781780079007, 0.05491696298122406, -0.05358130857348442, 0.00138218910433352, 0.06541628390550613, 0.01987265609204769, 0.02431553043425083, 0.027874886989593506, -0.016566382721066475, 0.013599452562630177, -0.03682466596364975, -0.08046843111515045, 0.0507657490670681, 0.06287621706724167, -0.028822941705584526, -0.042464468628168106, 0.03642748296260834, -0.01690700650215149, -0.01034608855843544, 0.018643207848072052, -0.03311501070857048, 0.04480697587132454, -0.011217007413506508, 0.008402649313211441, -0.038750726729631424, 0.060425180941820145, -0.048586174845695496, 0.0136719336733222, -0.006671333685517311, -0.005626811180263758, -0.0029437162447720766, -0.010353133082389832, 0.10590498149394989, 0.03226446732878685, -0.01746377907693386, -0.062261562794446945, 0.028784869238734245, 0.03555713966488838, -0.028787225484848022, -0.00302683562040329, -0.02924690581858158, -0.014543098397552967, 0.0041712746024131775, -0.022858617827296257, -0.031355682760477066, -0.02002526819705963, -0.0444522425532341, 0.01023891568183899, 0.0842854306101799, -0.02227681316435337, 0.052390653640031815, -0.012549028731882572, -0.023915210738778114, -0.005393983796238899, -0.04834108054637909, -0.016081171110272408, 0.0019588915165513754, 0.013696476817131042, -0.028202928602695465, 0.08096063137054443, -0.04403868317604065, -0.026807764545083046, -0.022711198776960373, -0.06324195116758347, 0.01052958145737648, 0.036304861307144165, 0.0470784567296505, -0.004952659364789724, 0.028498856350779533, -0.012405992485582829, -0.038547907024621964, -0.03402123227715492, -0.021079206839203835, 0.023681767284870148, -0.0027590342797338963, -0.015983356162905693, 0.035427216440439224, 0.017621589824557304, -0.009407281875610352, 0.04792707413434982, 0.02086523361504078, -0.011668278835713863, -0.005274980328977108, 0.027937963604927063, -0.010853927582502365, 0.005935642868280411, -0.020386705175042152, -0.02227390930056572, 0.020374983549118042, -0.04015828296542168, -0.07022705674171448, 0.024605151265859604, -0.08903952687978745, 0.06441109627485275, -0.013728471472859383, -0.05199650302529335, 0.04252386838197708, 0.014777639880776405, 0.01877506636083126, 0.0384334921836853, -0.016056900843977928, 0.06626146286725998, 0.005273937713354826, 0.01931825838983059, -0.004457805771380663, -0.018861275166273117, 0.010756958276033401, -0.018948867917060852, 0.018090950325131416, 0.07809532433748245, 0.002045621629804373, -0.012804828584194183, -0.06065479293465614, 0.020702999085187912, -0.018938768655061722, -0.23812073469161987, 0.04054725170135498, 0.01802467182278633, -0.06448715925216675, 0.020013928413391113, 0.0037006859201937914, 0.024621574208140373, -0.025153055787086487, -0.011511120945215225, 0.06627955287694931, 0.011165698058903217, -0.024279233068227768, -0.01257311087101698, -0.00897164922207594, -0.016425248235464096, -0.02266327105462551, -0.007159776985645294, -0.02648041397333145, -0.009313283488154411, 0.033100321888923645, 0.01677817851305008, -0.06767992675304413, 0.012799030169844627, 0.01712765172123909, 0.05505087599158287, 0.03762172907590866, -0.06759417057037354, 0.04715554416179657, -0.000077881442848593, -0.010182713158428669, 0.027390746399760246, -0.0377570241689682, 0.013510930351912975, 0.002651849528774619, -0.030851401388645172, 0.013511331751942635, 0.02259373851120472, 0.02700827084481716, -0.024518582969903946, 0.03353648632764816, -0.005572468042373657, -0.04966999962925911, -0.00738845719024539, 0.006598948035389185, 0.05671296641230583, 0.027251698076725006, -0.05561501905322075, 0.022098638117313385, -0.02728176862001419, 0.07493602484464645, -0.026137446984648705, -0.052448663860559464, -0.013858595862984657, -0.002695359056815505, -0.020581578835844994, -0.015536309219896793, -0.022585615515708923, -0.005253795068711042, -0.023282770067453384, -0.05297276750206947, -0.000889690883923322, -0.040822792798280716, -0.012993172742426395, -0.030206553637981415, -0.0232283566147089, -0.05287817865610123, -0.03477291017770767, 0.007427894044667482, 0.09318879246711731, 0.044608525931835175, -0.04529016092419624, 0.02268681488931179, 0.006197590380907059, -0.11341717094182968, -0.021739423274993896, -0.047154501080513, -0.03423960506916046, 0.028243517503142357, -0.01919817179441452, 0.001176210818812251, -0.04922506958246231, -0.011518316343426704, 0.022457223385572433, 0.04024219885468483, 0.017346879467368126, -0.01992742531001568, 0.004812154918909073, -0.022992918267846107, 0.00005759430132457055, 0.014733312651515007, 0.07316455990076065, -0.023645350709557533, -0.024298876523971558, -0.010059511289000511, -0.02283661812543869, 0.059831585735082626, 0.008310956880450249, 0.008791672065854073, -0.01601739600300789, 0.028020869940519333, 0.025560034438967705, -0.037650905549526215, 0.01370395626872778, -0.026500022038817406, 0.027865329757332802, -0.030364179983735085, -0.06808125227689743, 0.023544704541563988, -0.004050077870488167, 0.02501288242638111, 0.0024401736445724964, 0.0032851744908839464, -0.023419437929987907, -0.04027673602104187, -0.04971782863140106, -0.006962019484490156, -0.0033419805113226175, 0.05115114524960518, 0.005881006363779306, -0.044420890510082245, -0.05987245589494705, 0.011307031847536564, 0.023183444514870644, 0.0016748844645917416, -0.05164668336510658, -0.04144706204533577, -0.05081190913915634, -0.03731866180896759, -0.011177685111761093, 0.003208230948075652, 0.024408966302871704, 0.0020624827593564987, 0.017658846452832222, -0.017587678506970406, 0.002758946968242526, -0.014128081500530243, -0.011700645089149475, -0.05678945407271385, 0.01565517857670784, -0.009156879037618637, -0.0015146357472985983, 0.014501946046948433, -0.017147811129689217, 0.001976571511477232, 0.06306722015142441, -0.016252851113677025, 0.03407290205359459, -0.00832415372133255, 0.013770543038845062, 0.012744355946779251, -0.0000069106140472285915, -0.06032374128699303, -0.0016174069605767727, -0.01766776479780674, -0.035485900938510895, 0.006445494946092367, 0.04404768347740173, -0.033016636967659, -0.019587717950344086, -0.024214433506131172, 0.006926403846591711, -0.06611122936010361, -0.01085773017257452, -0.0051977732218801975, -0.009451084770262241, 0.030983788892626762, -0.03332819044589996, 0.022235414013266563, -0.002983971731737256, -0.06432205438613892, -0.030106427147984505, -0.05624754726886749, -0.02564065530896187, 0.036285821348428726, 0.01803976111114025, -0.0071619548834860325, 0.011976920999586582, -0.013073191046714783, 0.00023131001216825098, 0.01865699514746666, 0.03662963584065437, -0.018618633970618248, 0.010677141137421131, 0.001925703720189631, 0.05790337547659874, 0.0582943931221962, 0.021396225318312645, -0.009279667399823666, -0.009337485767900944, -0.0312865749001503, -0.042655643075704575, 0.012662363238632679, -0.002785289427265525, -0.004948630928993225, -0.02101423405110836, -0.07457651197910309, 0.03833335265517235, 0.021973801776766777, 0.037702035158872604, 0.007894370704889297, -0.007286848034709692, 0.04852667450904846, -0.07111022621393204, 0.06599690020084381, 0.06202090531587601, -0.04655219614505768, 0.006369786337018013, 0.015780173242092133, 0.00810705590993166, -0.015445975586771965, -0.001890340936370194, -0.049714528024196625, 0.0006876525585539639, -0.02048269845545292, 0.012344533577561378, -0.054972317069768906, -0.03028358332812786, -0.026987461373209953, 0.0075895399786531925, -0.009396848268806934, -0.0018323370022699237, -0.011140036396682262, -0.02381780557334423, -0.02648165263235569, -0.03648983687162399, 0.0354398712515831, -0.010173515416681767, -0.009484050795435905, 0.022810833528637886, -0.04915527626872063, -0.009781633503735065, -0.014788647182285786, 0.031069017946720123, 0.015226236544549465, -0.03284603729844093, -0.04465904086828232, -0.054063163697719574, -0.01805027574300766, 0.006730863358825445, 0.08332684636116028, 0.00761925196275115, -0.015000751242041588, -0.019600139930844307, -0.022002339363098145, -0.022286100313067436, 0.04086527228355408, 0.010965488851070404, 0.009223767556250095, 0.016052190214395523, 0.07721539586782455, 0.03900321573019028, 0.03988964483141899, -0.009421337395906448, 0.00010494205344002694, 0.06621555238962173, -0.03336476534605026, -0.03217937424778938, -0.001390106393955648, -0.06099817156791687, 0.011939977295696735, 0.012439384125173092, 0.006835327949374914, -0.038804322481155396, 0.034728508442640305, 0.0254133939743042, 0.015993069857358932, 0.06812036037445068, 0.00011932065535802394, 0.0501566119492054, -0.02110939845442772, 0.013342374935746193, -0.08832548558712006, 0.019216714426875114, 0.02491491660475731, 0.010258805006742477, 0.01326333824545145, -0.027051037177443504, -0.00747529836371541, 0.012791738845407963, -0.058286383748054504, -0.011966463178396225, 0.018285393714904785, 0.004876538645476103, -0.02477373369038105, 0.05963614583015442, -0.08467011898756027, 0.0444813072681427, 0.011571910232305527, -0.04822581261396408, -0.032917752861976624, -0.012424875050783157, 0.052167683839797974, 0.038871437311172485, 0.0046622357331216335, -0.013460326939821243, -0.029807189479470253, 0.06008585914969444, 0.012085240334272385, 0.028386415913701057, 0.03389213606715202, -0.02198179066181183, 0.03795897960662842, 0.05647514760494232, -0.02190208062529564, -0.0013625704450532794, 0.0338825061917305, -0.025969957932829857, -0.07713527232408524, 0.016785679385066032, -0.003880108706653118, -0.0070955101400613785, -0.03459833934903145, 0.0800480917096138, 0.02379968948662281, -0.05912390351295471, -0.0009748967131599784, 0.01032881811261177, -0.027781683951616287, -0.05538160726428032, -0.024006685242056847, 0.002730160253122449, -0.04411134868860245, 0.07482420653104782, 0.01158205233514309, 0.0069098686799407005, 0.07541360706090927, -0.011217433027923107, -0.005392865277826786, -0.014223999343812466, 0.09258570522069931, 0.07002376019954681, 0.013103089295327663, -0.013406584039330482, 0.06585131585597992, 0.0027057037223130465, -0.028358416631817818, 0.030446885153651237, -0.03994427248835564, -0.05723340064287186, 0.000018563761841505766, -0.0068780588917434216, 0.0929412692785263, -0.01818750612437725, 0.07928528636693954, -0.019866522401571274, 0.0049466039054095745, 0.022963251918554306, 0.03906732052564621, 0.01614825800061226, 0.010022404603660107, -0.016047319397330284, 0.06619266420602798, 0.007421244401484728, -0.009414677508175373, 0.014414450153708458, -0.010699025355279446, -0.015411172062158585, 0.015138057060539722, 0.010103465057909489, -0.005886559374630451, 0.019537467509508133, 0.01368989422917366, 0.05339505150914192, -0.004421167075634003, 0.00875855516642332, -0.023751839995384216, 0.03024073876440525, -0.014158381149172783, 0.03494511917233467, -0.0056281909346580505, -0.02475753054022789, 0.007633234839886427, -0.014591570012271404, -0.0020842566154897213, -0.025079727172851562, -0.03411714732646942, 0.03915988653898239, -0.017997166141867638, 0.02849387191236019, -0.006964585743844509, -0.01084111351519823, -0.0679662674665451, -0.0285001490265131, -0.05808167904615402, -0.043516963720321655, -0.050454478710889816, -0.0414854995906353, 0.008687101304531097, -0.0018692405428737402, -0.04647086560726166, -0.017403841018676758, -0.052621662616729736, -0.039169955998659134, -0.004222259856760502, -0.044859521090984344, -0.010620412416756153, 0.031792767345905304, 0.01659540832042694, 0.038364868611097336, 0.015256877988576889, 0.06682686507701874, 0.022580303251743317, 0.009691697545349598, -0.0332675501704216, -0.0019250368932262063, 0.042900748550891876, 0.0430384986102581, -0.016008153557777405, -0.08069508522748947, 0.010890946723520756, 0.005058288108557463, -0.015640920028090477, -0.050298113375902176, -0.0025848851073533297, 0.06251297146081924, 0.036305852234363556, 0.03936952352523804, -0.024573639035224915, -0.0006211097352206707, -0.02160182036459446, 0.007515075150877237, -0.010719784535467625, 0.010871721431612968, 0.06462829560041428, -0.017389526590704918, 0.09453747421503067, 0.044216450303792953, -0.006911618169397116, -0.023303626105189323, 0.021584060043096542, -0.004418885335326195, -0.03705224394798279, -0.06064026057720184, -0.045539434999227524, -0.03731164708733559, -0.06330841034650803, -0.01585584320127964, 0.048098962754011154, -0.00527057982981205, -0.051744505763053894, 0.039050810039043427, 0.059767745435237885, -0.02715020440518856, 0.040810517966747284, -0.04420847445726395, 0.02960696443915367, -0.02515721507370472, -0.037606921046972275, 0.011262447573244572, 0.015958156436681747, -0.03488294407725334, -0.037400633096694946, -0.004693195689469576, -0.04058047756552696, 0.019855042919516563, 0.004501172807067633, 0.031357694417238235, 0.05824437737464905, -0.018141521140933037, -0.019599009305238724 ]
[ -0.06367675215005875, -0.02633705548942089, -0.012093426659703255, -0.04777448624372482, 0.021794036030769348, -0.08215398341417313, 0.03712625429034233, 0.05765753239393234, 0.0426454171538353, 0.006123799830675125, 0.014115790836513042, -0.013664999976754189, 0.02362309955060482, 0.0008063518907874823, 0.061298660933971405, -0.010057407431304455, 0.06352408230304718, -0.07363813370466232, -0.014347786083817482, -0.006932890508323908, 0.04936099052429199, -0.02020649053156376, -0.015761354938149452, -0.02285866066813469, 0.06755757331848145, 0.027102753520011902, 0.03238193690776825, -0.054149143397808075, 0.01537163183093071, -0.18009184300899506, 0.02289220504462719, -0.028995146974921227, 0.026999199762940407, 0.0012935891281813383, -0.027406323701143265, 0.025679146870970726, -0.0010311180958524346, -0.005413845181465149, 0.018893757835030556, 0.09414413571357727, -0.011131692677736282, 0.02473306842148304, -0.06615211814641953, -0.052473146468400955, -0.01866246573626995, -0.029073910787701607, 0.005511808674782515, -0.012095763348042965, -0.010994856245815754, 0.0008169330540113151, -0.062235862016677856, 0.037622373551130295, 0.008980462327599525, 0.00015171684208326042, -0.03197276219725609, -0.00097858184017241, 0.03846287354826927, 0.11932422965765, 0.034625161439180374, 0.05203178524971008, 0.06454766541719437, -0.012376390397548676, -0.12112336605787277, 0.12758594751358032, -0.012995961122214794, 0.004285186994820833, 0.012312382459640503, -0.0052239615470170975, 0.026238176971673965, 0.0840572640299797, 0.019033076241612434, 0.02746468596160412, 0.026919418945908546, 0.07149539142847061, 0.010762505233287811, 0.006183232180774212, 0.02686900459229946, 0.022267550230026245, -0.01618926040828228, -0.05018456652760506, -0.06189770624041557, -0.04105323180556297, -0.0034749407786875963, 0.00296944216825068, -0.019091688096523285, 0.0003740296233445406, -0.01135080773383379, 0.04269153252243996, 0.010918596759438515, 0.04709761217236519, 0.019591404125094414, -0.0007244398002512753, 0.03959689289331436, 0.005566554144024849, -0.0920974612236023, -0.023991620168089867, -0.04974471777677536, -0.018381336703896523, -0.08867005258798599, 0.3804149925708771, -0.01006122212857008, 0.0015763064147904515, 0.0546143613755703, 0.08027087897062302, 0.011646903119981289, -0.04652667045593262, 0.020468510687351227, -0.05586516484618187, -0.02592727541923523, -0.0056037819012999535, 0.0009316988871432841, -0.013376879505813122, 0.03650449588894844, -0.039837561547756195, 0.01869320683181286, 0.04773657023906708, 0.049470629543066025, 0.04101064056158066, 0.00019110762514173985, 0.01775301620364189, -0.039321720600128174, 0.0054222107864916325, 0.01619783416390419, -0.021380124613642693, -0.004219049122184515, -0.032675836235284805, 0.04762707278132439, 0.062287844717502594, 0.001177959842607379, 0.014268173836171627, 0.052790384739637375, -0.03364037349820137, -0.09002573043107986, 0.00982255581766367, 0.0275757797062397, 0.028856191784143448, 0.024050453677773476, -0.04932523891329765, -0.014421865344047546, 0.0008775786845944822, 0.005504264496266842, -0.05804833397269249, 0.05152164027094841, -0.03775480017066002, -0.04002084583044052, 0.13261768221855164, -0.00706848781555891, -0.004420398734509945, -0.018751706928014755, -0.03673918545246124, -0.03930404409766197, 0.015868930146098137, -0.012570546008646488, -0.03558076173067093, -0.004910028539597988, 0.021878227591514587, 0.03397552669048309, -0.009403657168149948, -0.050661567598581314, 0.010585947893559933, 0.004326890222728252, -0.01280946098268032, -0.03617233783006668, 0.026853345334529877, 0.021734248846769333, -0.10702037066221237, 0.004730388056486845, 0.0025749558117240667, -0.02296166494488716, -0.04043687880039215, -0.03477254882454872, 0.03320387750864029, -0.023946646600961685, -0.057149726897478104, 0.04494394361972809, -0.005053128581494093, -0.014056469313800335, -0.009100734256207943, 0.043717049062252045, 0.03105633519589901, 0.00537214195355773, -0.035104528069496155, -0.024234963580965996, 0.008026218973100185, -0.03917127102613449, -0.05667613446712494, -0.040858905762434006, -0.028850216418504715, 0.02849695459008217, -0.032104115933179855, -0.060312919318675995, -0.03209131583571434, -0.05882921814918518, 0.04241538792848587, -0.019863104447722435, -0.053431957960128784, 0.03131983056664467, -0.039584677666425705, 0.017427459359169006, -0.02269585430622101, -0.015397890470921993, -0.008239026181399822, -0.05460639297962189, 0.012075833044946194, -0.019539684057235718, 0.07192115485668182, 0.04555669054389, -0.018654081970453262, 0.04044939577579498, 0.01708321087062359, -0.002906735986471176, -0.008762328885495663, -0.025203483179211617, 0.019293468445539474, 0.002847937634214759, -0.04003974795341492, 0.006706905085593462, 0.04009205102920532, 0.021833712235093117, -0.006514083594083786, -0.023588120937347412, 0.012562652118504047, 0.013185389339923859, -0.31823086738586426, -0.055357690900564194, -0.015377875417470932, -0.025441601872444153, -0.033525459468364716, -0.054477013647556305, -0.004427195526659489, -0.047210678458213806, 0.019903892651200294, -0.0016082718502730131, 0.12153705209493637, -0.03301975876092911, 0.003321271389722824, -0.11247069388628006, 0.019024837762117386, -0.027026232331991196, -0.045122262090444565, 0.009770755656063557, 0.012009802274405956, 0.01649586111307144, -0.0031226801220327616, -0.013805847615003586, 0.022187624126672745, -0.06852146238088608, 0.024521615356206894, 0.00045076117385178804, 0.09956146776676178, 0.005307771265506744, 0.060509711503982544, -0.07802258431911469, 0.04980572313070297, 0.0441194623708725, -0.010059832595288754, -0.1226121038198471, -0.0034720657858997583, -0.018988072872161865, 0.011906367726624012, 0.020250901579856873, -0.007060728967189789, -0.004436990711838007, -0.07964501529932022, 0.0408443845808506, -0.04043347015976906, -0.05472240597009659, 0.0020209336653351784, -0.0025028493255376816, -0.026809794828295708, -0.06002870574593544, -0.008426953107118607, 0.03320954740047455, 0.0019502685172483325, -0.037713851779699326, 0.014500226825475693, 0.04846401512622833, 0.04141413792967796, -0.011280166916549206, -0.04324638843536377, 0.010575882159173489, 0.0042344992980360985, -0.03134377300739288, 0.019322393462061882, 0.08010432869195938, 0.032261792570352554, -0.07725158333778381, 0.012121588923037052, 0.03346891328692436, 0.006707474123686552, -0.0048951455391943455, 0.002879966050386429, -0.014298989437520504, -0.026033401489257812, 0.13897894322872162, -0.03443002328276634, 0.02358352206647396, 0.05199999734759331, 0.01749037578701973, 0.04428138956427574, -0.051433876156806946, 0.015409833751618862, -0.009225066751241684, 0.013087145052850246, 0.002066731685772538, 0.06311793625354767, -0.016098132357001305, -0.05558471381664276, 0.04686378687620163, -0.005312700290232897, -0.02162082865834236, 0.03216557949781418, 0.005044151563197374, 0.0022459635511040688, 0.023867709562182426, -0.011536910198628902, -0.06505601108074188, 0.06448721140623093, -0.013018199242651463, -0.24363331496715546, -0.0023997456301003695, 0.03130097687244415, 0.030969062820076942, -0.013633648864924908, 0.010747180320322514, 0.016048945486545563, -0.034999895840883255, -0.06464188545942307, 0.036468278616666794, -0.020786907523870468, 0.03127468749880791, 0.013423041440546513, -0.023895859718322754, 0.04225723817944527, 0.03293093666434288, 0.05527405068278313, -0.009092728607356548, -0.01809913106262684, -0.007955670356750488, 0.031020117923617363, -0.062423110008239746, 0.1442251056432724, 0.025381866842508316, 0.04577014967799187, 0.04651455208659172, -0.005903453566133976, 0.03157509118318558, 0.07065961509943008, 0.013349752873182297, -0.02359381690621376, -0.03468041121959686, 0.047880806028842926, 0.0304409209638834, -0.006695799995213747, -0.09011121094226837, 0.018339058384299278, 0.05033604055643082, 0.0223484355956316, 0.025111179798841476, -0.016364583745598793, 0.054180216044187546, -0.012558459304273129, 0.04172809049487114, 0.08101162314414978, 0.02448682300746441, -0.05895218998193741, -0.03924178332090378, -0.07489503920078278, 0.03645656257867813, -0.011914142407476902, -0.06506063044071198, -0.0254447590559721, 0.028048980981111526, -0.022882377728819847, 0.09212683886289597, -0.01302365679293871, -0.03225751593708992, -0.004360670689493418, 0.011813282035291195, 0.020105265080928802, -0.028994815424084663, 0.11749953776597977, 0.0003746524453163147, 0.0836745947599411 ]
[ -0.014279225841164589, 0.015403012745082378, 0.022385459393262863, -0.02765234187245369, 0.01762126199901104, 0.010318229906260967, 0.011144024319946766, 0.021925173699855804, 0.015308134257793427, -0.0006219465285539627, 0.00018523579637985677, -0.003978266380727291, 0.030426668003201485, -0.02565268985927105, 0.02418089658021927, -0.043626315891742706, 0.032636940479278564, -0.04431123659014702, 0.026167746633291245, -0.017413225024938583, 0.003424189519137144, 0.0456564724445343, 0.01382132526487112, 0.0013709237100556493, 0.050904709845781326, -0.003874583635479212, -0.0040618353523314, -0.022932836785912514, 0.03019813448190689, -0.08147846907377243, 0.02286856807768345, -0.010202799923717976, 0.0004940198268741369, -0.0003752700868062675, -0.05474592000246048, -0.006483167875558138, -0.006774452049285173, 0.015145138837397099, -0.027673618867993355, 0.045775555074214935, -0.01900913007557392, -0.047367215156555176, -0.024257555603981018, 0.018840137869119644, -0.019764209166169167, -0.024059278890490532, 0.014781929552555084, -0.01826232671737671, -0.04073665663599968, 0.008665871806442738, -0.002766016637906432, 0.009644896723330021, -0.0155232148244977, 0.056781671941280365, -0.007185160182416439, 0.0009551399271003902, -0.05773559957742691, 0.06300689280033112, 0.011112538166344166, 0.02278481237590313, 0.016214890405535698, -0.01356587652117014, -0.014129740186035633, -0.009643860161304474, 0.010072143748402596, -0.018237149342894554, -0.024747319519519806, -0.005987914744764566, 0.010067273862659931, 0.018066655844449997, 0.017113903537392616, 0.049444518983364105, 0.028254801407456398, 0.009172237478196621, -0.03359099105000496, -0.00625084200873971, 0.018362976610660553, -0.028310976922512054, -0.02965540625154972, 0.006554456893354654, -0.014075901359319687, -0.01156106311827898, -0.018541496247053146, 0.05705516040325165, 0.011843190528452396, -0.008239835500717163, 0.014703474007546902, 0.01624801568686962, -0.026103990152478218, 0.021397089585661888, -0.0386432521045208, 0.06169350445270538, 0.010775922797620296, 0.009653684683144093, -0.08364571630954742, 0.04796577990055084, -0.096323661506176, -0.037800684571266174, -0.02860238030552864, 0.8104931712150574, 0.011831889860332012, 0.028826285153627396, 0.01638396643102169, 0.017255283892154694, 0.0016991564771160483, -0.05924433469772339, -0.014590353704988956, 0.008734366856515408, 0.0441918820142746, 0.017684563994407654, 0.04273625463247299, -0.01145545020699501, 0.015918349847197533, 0.03821947053074837, -0.012907755561172962, 0.04285997897386551, 0.021034153178334236, 0.01862362027168274, 0.03347359225153923, 0.0229522455483675, 0.010258805006742477, -0.021163921803236008, -0.005101876799017191, -0.010110247880220413, 0.007340799085795879, -0.1604766547679901, 0.029582040384411812, -7.630405664256096e-33, 0.04091288894414902, 0.0005227882647886872, 0.013564600609242916, 0.016325419768691063, -0.0066438643261790276, 0.012316706590354443, 0.0036776771303266287, 0.03871968761086464, 6.984511742302857e-7, -0.050789136439561844, 0.004314366262406111, -0.010448934510350227, 0.014221478253602982, -0.014226099476218224, 0.029113810509443283, -0.017479760572314262, -0.005028936080634594, 0.032743122428655624, 0.02726113237440586, 0.011549655348062515, 0.003427447285503149, 0.005276842042803764, -0.02036270685493946, 0.008157774806022644, 0.013812386430799961, 0.06034081056714058, 0.041888076812028885, -0.012665994465351105, 0.0027154511772096157, -0.05270153656601906, -0.005268698092550039, -0.0032855034805834293, -0.016596024855971336, -0.01930110715329647, 0.03718222305178642, -0.054281458258628845, -0.055876120924949646, 0.0008855169871822, -0.023986514657735825, -0.058405131101608276, -0.056757066398859024, 0.01573595590889454, -0.04555365815758705, -0.026773858815431595, -0.01879722811281681, -0.010641248896718025, -0.019259046763181686, -0.03393146023154259, -0.016040701419115067, -0.010415082797408104, 0.04483019933104515, 0.0050507779233157635, -0.007058828137814999, -0.04417940229177475, -0.015660081058740616, 0.02081770822405815, -0.02118692733347416, 0.04316749796271324, 0.005120409652590752, 0.031002525240182877, 0.015443158335983753, -0.04349192604422569, 0.013109005056321621, 0.0228877030313015, 0.01306190900504589, 0.004326412454247475, -0.044056426733732224, -0.02813362516462803, 0.010900905355811119, -0.017595557495951653, -0.04597141966223717, -0.01914689689874649, -0.0036480454728007317, 0.020512254908680916, -0.005087205674499273, 0.03099650703370571, -0.007568086963146925, -0.02943708933889866, -0.037158165127038956, -0.004994197748601437, 0.015278752893209457, -0.046091534197330475, 0.0479939728975296, -0.03084862045943737, -0.015017995610833168, -0.01395528856664896, 0.008841386996209621, -0.029272621497511864, -0.027373213320970535, 0.05587991327047348, -0.006797535810619593, 0.07551849633455276, -0.01757003366947174, 0.015405003912746906, -0.02013838104903698, 7.240810836879096e-33, -0.036066360771656036, -0.0055424426682293415, -0.037582699209451675, -0.03486211970448494, 0.014841899275779724, -0.005104216281324625, 0.02312476933002472, 0.05448916181921959, -0.048726070672273636, 0.020127957686781883, 0.001660502515733242, 0.001468159956857562, -0.03478579968214035, -0.0014105739537626505, 0.04463442787528038, -0.02281045727431774, 0.05117064714431763, -0.006858812645077705, -0.008233373053371906, -0.010970143601298332, -0.015336853452026844, 0.016547629609704018, 0.029319461435079575, 0.0013402689946815372, 0.03894667699933052, 0.03894045203924179, 0.004523696843534708, 0.03523825481534004, -0.0158082228153944, -0.010364157147705555, 0.03837096691131592, -0.021417705342173576, 0.0016572556924074888, -0.015958065167069435, 0.011986878700554371, 0.058943022042512894, -0.01007128693163395, -0.028816834092140198, 0.03662962466478348, -0.02706354483962059, 0.037839293479919434, -0.04172717034816742, 0.05185363069176674, 0.017803138121962547, -0.0016331241931766272, -0.065372996032238, -0.00421705050393939, -0.009512271732091904, -0.025391267612576485, 0.005213236436247826, 0.031959082931280136, -0.016456300392746925, -0.005749199539422989, 0.03191576898097992, 0.027591992169618607, -0.00847863033413887, -0.024050196632742882, -0.008886950090527534, -0.031589657068252563, -0.051190391182899475, 0.021430306136608124, -0.039347223937511444, -0.006084329914301634, 0.04289499670267105, -0.022372284904122353, -0.013435691595077515, 0.025270655751228333, 0.002511076396331191, -0.028192393481731415, 0.047383375465869904, 0.01731273904442787, -0.044467732310295105, -0.03224525600671768, 0.05689414590597153, 0.03762795776128769, -0.011153350584208965, 0.01149742491543293, 0.006461847573518753, -0.06973513960838318, -0.010080086067318916, 0.00042784580728039145, 0.045485831797122955, -0.01178790908306837, -0.02956901676952839, 0.04603425785899162, -0.020990360528230667, 0.004146657418459654, -0.012269834987819195, 0.0023479184601455927, -0.012537501752376556, -0.019670885056257248, 0.023441923782229424, -0.03435589000582695, -0.013834251090884209, -0.003486268687993288, -1.2992299680547603e-8, -0.007453057914972305, -0.03098156861960888, -0.0114033417776227, 0.013233128935098648, 0.01823228783905506, -0.0020751378033310175, -0.03847070410847664, -0.03633645549416542, 0.027476292103528976, -0.012102913111448288, -0.026926832273602486, -0.045995619148015976, 0.010198106989264488, 0.05584270879626274, 0.04038448631763458, -0.04804112762212753, -0.04237356409430504, -0.03614376112818718, 0.025810664519667625, 0.0410023033618927, -0.002588259521871805, 0.020939704030752182, -0.027079502120614052, -0.0019279619446024299, 0.021754475310444832, 0.02330840937793255, 0.03256732225418091, -0.06409169733524323, 0.013423657044768333, 0.024064701050519943, 0.003915946464985609, -0.026850424706935883, -0.016751300543546677, -0.027794353663921356, -0.018518662080168724, 0.01904401369392872, 0.021984295919537544, -0.03378039598464966, -0.0011628608917817473, 0.003753864439204335, -0.002427723491564393, 0.00986274890601635, 0.04108469560742378, -0.012812558561563492, -0.00013755181862507015, 0.006483662873506546, -0.012848393060266972, 0.01304007600992918, 0.03362331539392471, 0.01966298371553421, -0.02081647887825966, -0.0016611168393865228, -0.0041061644442379475, -0.03794269636273384, 0.011095267720520496, -0.026453981176018715, 0.03434164822101593, -0.04412209987640381, -0.016789833083748817, -0.013036585412919521, 0.0472722165286541, 0.032363634556531906, -0.06019001826643944, -0.03586425632238388 ]
learning-android-freezing-the-ui-with-a-broadcastreceiver
https://markhneedham.com/blog/2012/01/06/learning-android-freezing-the-ui-with-a-broadcastreceiver
false
2012-01-24 23:16:52
Developer machine automation: Dependencies
[ "software-development" ]
[ "Software Development" ]
As I http://www.markhneedham.com/blog/2012/01/18/installing-puppet-on-oracle-linux/[mentioned in a post last week] we've been automating the setup of our developer machines with puppet over the last week and one thing that we've learnt is that you need to be careful about how you define dependencies. The aim is to get your scripts to the point where the outcome is reasonably deterministic so that we can have confidence they're going to work the next we run them. We noticed two ways in which we haven't quite achieved determinism yet: == Accidental Dependencies The first few times that we ran the scripts on top of a vanilla image we were doing it on a virtual machine which had VMware tools installed on it. We'd forgotten that VMware tools had been installed on those VMs and ran into a problem with Oracle dependencies not being satisfied when we ran puppet on some machines which had CentOS installed directly (i.e. not on a virtual machine). Those dependencies had been satisfied by our VMware tools installation on the VMs so we didn't realise that we hadn't explicitly stated those dependencies, something which we have done now. == External Dependencies We couldn't find the Firefox version that we wanted install on the default yum repositories so we created a puppet task which linked to a Firefox RPM on an external server and then installed it. It worked originally but at some stage over the last couple of weeks the URI was changed as a minor version had been upgraded, breaking our script. We also came across another way that external dependencies can fail today - if a corporate proxy blocks access to the URL! We're trying to get to the stage where we're only relying on artifacts either coming from a *yum repository or an internal repository* where we can store any libraries which aren't available through yum. == Don't assume determinism While trying to solve these dependency problems in our puppet scripts I made the mistake of assuming that if the script runs through once and works that it's always going to be that way in the future. Since we had achieved that previously in my mind it was impossible for it to fail in future which stopped me from properly investigating why it had stopped working.
null
null
[ 0.011141383089125156, 0.01688789576292038, 0.0024048220366239548, 0.04159579053521156, 0.1087379902601242, 0.02276751771569252, 0.022608598694205284, 0.03756643831729889, 0.005609315354377031, -0.022790485993027687, -0.024612674489617348, 0.024232380092144012, -0.05881492421030998, 0.021688202396035194, -0.035356853157281876, 0.06485169380903244, 0.09043556451797485, 0.0036928763147443533, 0.008043883368372917, 0.012138505466282368, 0.03994066268205643, 0.05055086687207222, 0.007616966497153044, 0.04661811888217926, -0.004733129404485226, 0.015684636309742928, 0.018009841442108154, -0.024996809661388397, -0.0764259323477745, -0.018728548660874367, 0.04141443222761154, 0.0012908815406262875, 0.00028950453270226717, -0.011625496670603752, 0.011761629953980446, 0.011943336576223373, -0.017194386571645737, 0.012142140418291092, -0.010913750156760216, 0.013793843798339367, -0.05361540988087654, 0.05183085799217224, 0.005804793443530798, 0.01432299055159092, -0.04866863414645195, 0.008636316284537315, -0.041567325592041016, 0.015038448385894299, 0.01796044036746025, -0.01769162341952324, -0.0771840363740921, 0.03133818507194519, -0.019256340339779854, -0.016208462417125702, -0.013914545066654682, 0.011152255348861217, 0.017245212569832802, -0.089540034532547, 0.0062512983568012714, -0.025476742535829544, -0.0060045477002859116, 0.009677639231085777, 0.0007400377653539181, 0.0267937108874321, -0.0013090736465528607, -0.029271572828292847, 0.02250581979751587, 0.05032983049750328, -0.057818733155727386, -0.03287344425916672, -0.001094099716283381, 0.012729175388813019, -0.04007444158196449, -0.019661206752061844, 0.024895230308175087, -0.06103898212313652, -0.014098378829658031, 0.05444393679499626, 0.013900923542678356, 0.06330769509077072, -0.03645448386669159, 0.010764042846858501, 0.041000306606292725, 0.003022888908162713, 0.0027120583690702915, -0.053698670119047165, -0.002785650547593832, -0.019250404089689255, -0.04133114591240883, 0.06887621432542801, 0.041501834988594055, -0.057286348193883896, 0.013813056983053684, 0.022257154807448387, -0.00997171737253666, -0.0141585823148489, 0.02063591405749321, 0.009810642339289188, 0.007263418287038803, 0.008047068491578102, -0.018553107976913452, 0.00040209683356806636, 0.0010428744135424495, -0.01646108366549015, -0.08281829208135605, -0.024610668420791626, -0.034056976437568665, 0.004285162314772606, 0.001397519139572978, -0.005332560278475285, -0.006686733104288578, 0.037214409559965134, 0.008592968806624413, 0.015398077666759491, -0.0717632994055748, 0.08275855332612991, -0.01583128049969673, -0.055405646562576294, 0.014522483572363853, 0.01924239471554756, 0.08645988255739212, 0.06339555978775024, -0.02042432315647602, 0.08498215675354004, 0.01730143465101719, 0.03471983224153519, -0.010858137160539627, 0.03528677299618721, -0.01189852599054575, -0.06089678779244423, 0.02501731738448143, 0.08013040572404861, 0.0030244223307818174, -0.002873883582651615, -0.020675910636782646, -0.006197553593665361, 0.0011251504765823483, 0.0011303960345685482, 0.06645794212818146, 0.024320248514413834, -0.015967316925525665, -0.027471140027046204, -0.008346254006028175, 0.02960323542356491, 0.043194182217121124, 0.0043242257088422775, 0.01136812474578619, -0.026784002780914307, -0.06178681179881096, -0.010281935334205627, 0.005332933738827705, 0.023308156058192253, 0.029940104112029076, -0.049739763140678406, 0.0336257666349411, 0.07858258485794067, 0.046120982617139816, -0.002901495900005102, -0.035038553178310394, 0.01267009787261486, 0.02838021144270897, 0.023868130519986153, 0.018310969695448875, 0.046913452446460724, -0.0062067327089607716, -0.012896968983113766, -0.008325562812387943, 0.03468186780810356, 0.03166138008236885, 0.02828436717391014, -0.06843803077936172, -0.05270520597696304, 0.05797518044710159, -0.06631268560886383, -0.017923099920153618, 0.03788580372929573, 0.07650800794363022, 0.04537102207541466, 0.03181871399283409, -0.001216911361552775, -0.0912938266992569, 0.03539370000362396, 0.0050909388810396194, 0.022642437368631363, 0.005070808343589306, -0.00018300049123354256, 0.08094538748264313, 0.0158202163875103, -0.0012147105298936367, 0.03200772404670715, -0.07524585723876953, -0.0826418474316597, -0.022188611328601837, -0.019063429906964302, 0.04119249805808067, -0.002694023074582219, -0.0052580260671675205, 0.03798561543226242, 0.022335167974233627, 0.03350615128874779, 0.0020011868327856064, 0.009471353143453598, 0.013598778285086155, -0.0593571662902832, -0.06631758064031601, 0.04339540749788284, 0.03705509752035141, -0.00457968981936574, -0.022668128833174706, -0.003793028648942709, -0.030398093163967133, -0.011622325517237186, 0.026391956955194473, -0.01097424142062664, 0.056849293410778046, 0.01471597608178854, 0.049672726541757584, -0.04219584912061691, 0.03754807263612747, -0.04048415273427963, 0.0070992824621498585, -0.00005715095539926551, -0.0295682605355978, 0.01795622520148754, 0.003503582440316677, 0.11532478779554367, 0.060019295662641525, -0.050710923969745636, -0.03346393629908562, 0.04659194499254227, 0.012050547637045383, -0.0587291345000267, -0.008220679126679897, -0.0012819617986679077, -0.0021680244244635105, 0.012350460514426231, -0.04730185866355896, -0.056249070912599564, 0.012201187200844288, -0.0412234403192997, 0.003264696802943945, 0.06380334496498108, -0.02212957665324211, 0.06603436172008514, -0.013340895064175129, -0.0306293573230505, -0.0012077094288542867, -0.014845935627818108, -0.07577323913574219, 0.015171299688518047, 0.013924160972237587, -0.01439642533659935, 0.031330857425928116, -0.024914100766181946, -0.018063466995954514, -0.02520851418375969, -0.06343181431293488, 0.027898220345377922, 0.02497856318950653, 0.07740619033575058, -0.041753169149160385, 0.06362880021333694, -0.006569294724613428, 0.010682628490030766, -0.0026613157242536545, -0.03482815995812416, -0.0356266014277935, 0.006786596495658159, -0.004492716398090124, 0.020040573552250862, 0.002090062713250518, -0.020131811499595642, -0.002779268892481923, -0.018006766214966774, 0.03210463002324104, -0.01702839508652687, 0.013985414989292622, 0.00948391854763031, 0.012460130266845226, -0.043395351618528366, -0.01718003861606121, 0.045669227838516235, -0.0400962270796299, -0.011138738133013248, -0.001154125900939107, -0.052953243255615234, 0.05256297439336777, -0.09346477687358856, -0.04897802323102951, -0.03276631608605385, 0.0061383843421936035, 0.02020350657403469, 0.0024240787606686354, 0.00852214079350233, 0.02039947547018528, -0.004800531081855297, 0.01891288533806801, 0.026000846177339554, 0.023178813979029655, 0.041556768119335175, 0.010832876898348331, 0.0039636422879993916, 0.0217296089977026, 0.008557545021176338, 0.0035880838986486197, -0.04165974631905556, 0.031625404953956604, -0.03275462985038757, -0.2900916635990143, 0.023506568744778633, 0.018482016399502754, -0.04478972405195236, 0.03159017115831375, -0.004602906294167042, 0.008880732581019402, -0.047749072313308716, -0.01750953495502472, 0.013206927105784416, -0.018799150362610817, -0.042911916971206665, -0.004493999760597944, 0.05483086034655571, -0.005733063910156488, 0.007098963484168053, 0.019161807373166084, -0.037960465997457504, 0.006481447257101536, 0.015210912562906742, -0.016128910705447197, -0.05429290980100632, 0.03620960935950279, 0.020492326468229294, 0.04581071808934212, 0.07141193002462387, -0.0584297738969326, 0.05400271341204643, -0.05721341446042061, -0.031197860836982727, -0.022346246987581253, -0.012407850474119186, -0.01590040512382984, 0.00539014209061861, -0.0018005971796810627, 0.007556715048849583, 0.05527862533926964, -0.006361807230859995, 0.01319030486047268, -0.004487138707190752, -0.026772990822792053, -0.03611578792333603, 0.0076941619627177715, 0.007427442818880081, 0.07105018943548203, 0.005067958030849695, -0.09450441598892212, -0.008278870023787022, -0.031327810138463974, 0.0756036713719368, -0.0499831885099411, -0.042805612087249756, -0.003818971337750554, 0.028787804767489433, 0.0035418099723756313, 0.020754093304276466, -0.031050680205225945, -0.021152328699827194, -0.03674647584557533, -0.018995195627212524, -0.0005163509049452841, -0.04861383140087128, -0.03827603906393051, -0.04146067053079605, -0.004355948884040117, -0.038732316344976425, -0.048103608191013336, -0.02515016682446003, 0.10486958175897598, 0.010233642533421516, -0.03775797411799431, -0.013868111185729504, -0.014720696024596691, -0.10102242231369019, 0.03140565752983093, -0.0185963474214077, -0.04382219910621643, -0.014620067551732063, 0.002382433507591486, 0.056081175804138184, -0.03334963694214821, -0.053577397018671036, 0.023258771747350693, 0.009366285055875778, 0.007355563808232546, 0.005286978557705879, 0.021437879651784897, 0.009991767816245556, -0.025410791859030724, 0.006253342144191265, 0.06852567940950394, -0.015651056542992592, -0.031223321333527565, -0.01552890706807375, 0.005162870045751333, 0.0039339191280305386, 0.010391980409622192, 0.01037221122533083, 0.00021238881163299084, 0.05588527023792267, 0.03339191526174545, -0.06508470326662064, 0.03713446110486984, -0.025550058111548424, -0.013961266726255417, 0.014841755852103233, -0.051918838173151016, 0.008230026811361313, 0.04294103384017944, 0.035564620047807693, -0.013868652284145355, -0.023688163608312607, 0.024256663396954536, -0.06233469396829605, -0.04453550651669502, 0.00214486219920218, 0.013468334451317787, 0.032762110233306885, -0.004920473322272301, -0.014586139470338821, -0.04269423335790634, 0.0106204180046916, 0.006414820905774832, -0.009961321949958801, -0.059255219995975494, -0.009966387413442135, -0.0004426104424055666, 0.010232973843812943, 0.03536108508706093, 0.023147540166974068, -0.0005883063422515988, 0.022412525489926338, 0.03918102756142616, -0.05319071188569069, 0.018096886575222015, -0.009728814475238323, -0.061871714890003204, -0.03061705455183983, 0.010198689065873623, -0.007249976508319378, -0.03044183924794197, 0.002794835716485977, 0.01436739694327116, 0.013375251553952694, 0.025147704407572746, 0.003334580920636654, 0.044132716953754425, -0.02427777275443077, 0.014270824380218983, 0.010313971899449825, 0.01347348466515541, -0.05110754445195198, 0.020172808319330215, -0.04385523125529289, -0.02725028619170189, -0.015869487076997757, 0.03553679585456848, -0.017014704644680023, -0.019586313515901566, -0.006185565143823624, -0.007163344416767359, -0.07850056886672974, 0.003787964815273881, -0.00008410531881963834, -0.006768850609660149, 0.05818682163953781, 0.0017510264879092574, 0.0025046286173164845, -0.0025900353211909533, 0.004419283475726843, 0.024068661034107208, 0.052938178181648254, -0.029944144189357758, 0.012568014673888683, 0.030785247683525085, -0.00846763513982296, 0.006832054350525141, 0.003904307261109352, 0.04436943680047989, 0.015109228901565075, 0.01497538574039936, -0.01697932928800583, 0.008266745135188103, 0.0002518172550480813, 0.03305474668741226, -0.00019816402345895767, -0.026542793959379196, -0.01292857713997364, -0.0337909534573555, -0.014941170811653137, -0.023172874003648758, 0.02796171046793461, -0.011218060739338398, 0.014642702415585518, -0.03192709758877754, -0.07913675904273987, 0.05217095836997032, 0.027992621064186096, 0.03442930430173874, 0.010143362917006016, 0.0028223032131791115, -0.013867953792214394, -0.029684053733944893, 0.037268783897161484, 0.0697239562869072, -0.06752769649028778, -0.009160388261079788, 0.007486292161047459, 0.008620498701930046, -0.0010481063509359956, 0.02110239677131176, -0.045154817402362823, -0.03137419372797012, -0.017063535749912262, 0.004122042562812567, -0.07296822220087051, -0.031144792214035988, -0.02011645771563053, 0.01034668181091547, -0.0012395165394991636, -0.006013431586325169, 0.005276234354823828, 0.008556417189538479, 0.012172763235867023, -0.03366340324282646, -0.003494890406727791, -0.023662019520998, -0.029039382934570312, 0.023668322712183, -0.03239426761865616, 0.021787794306874275, -0.03156980872154236, 0.016869517043232918, 0.025631818920373917, -0.02636796422302723, -0.009484251029789448, -0.03403112292289734, -0.012125547043979168, -0.032392531633377075, 0.014312686398625374, -0.023656584322452545, 0.017448032274842262, -0.033631402999162674, -0.007345955818891525, -0.04347927123308182, 0.01785973459482193, -0.026172049343585968, -0.023807570338249207, 0.005581983830779791, 0.042090483009815216, 0.013101366348564625, 0.03515761345624924, -0.016293395310640335, -0.011724399402737617, 0.04769280180335045, -0.07276303321123123, -0.019404195249080658, -0.030175089836120605, -0.04472927749156952, 0.02048410475254059, 0.006559713743627071, -0.0029399257618933916, -0.04835566505789757, 0.04036897420883179, 0.032317209988832474, 0.022523097693920135, 0.030435675755143166, -0.007047314662486315, 0.03259706124663353, -0.05976971611380577, -0.02011868543922901, -0.06765922158956528, 0.028852062299847603, 0.01419908832758665, 0.004624491557478905, -0.013892590999603271, 0.01513197086751461, -0.0561075285077095, 0.037985146045684814, -0.07889819145202637, -0.001298890681937337, 0.04230552911758423, -0.013862237334251404, -0.021065497770905495, -0.0057441904209554195, -0.10311924666166306, 0.020810069516301155, 0.024337105453014374, -0.04347671940922737, -0.0043623256497085094, -0.010005450807511806, 0.049625154584646225, -0.005561469588428736, 0.03367128595709801, -0.029597921296954155, 0.007771745324134827, 0.06659793853759766, 0.005759669933468103, -0.00374954123981297, 0.0386371947824955, -0.013075902126729488, 0.04828764498233795, 0.03477653115987778, 0.04283958673477173, -0.002676786156371236, 0.014135354198515415, -0.030066946521401405, -0.04985308647155762, 0.020807422697544098, -0.007762153632938862, -0.0014588673366233706, -0.03936286270618439, 0.049962352961301804, 0.037630099803209305, -0.03259455785155296, -0.05327237769961357, 0.024663841351866722, -0.048448346555233, -0.014900239184498787, -0.011970450170338154, 0.002875524340197444, -0.04528295248746872, 0.05907965078949928, -0.008454632945358753, 0.01881558820605278, 0.06959818303585052, 0.005928121041506529, 0.011186999268829823, 0.01371544785797596, 0.06015302613377571, 0.07074941694736481, 0.0474485382437706, 0.016922099515795708, 0.05927807465195656, -0.027111368253827095, -0.037496525794267654, 0.002294806996360421, -0.0037577934563159943, -0.02291196770966053, -0.019406747072935104, 0.005340206902474165, 0.06627392023801804, -0.023918593302369118, 0.07502327859401703, 0.004294636193662882, 0.006304523907601833, 0.011718036606907845, 0.0048020342364907265, 0.011176622472703457, 0.06018679216504097, 0.002626323839649558, -0.000566190283279866, -0.004680021200329065, -0.026833631098270416, 0.025342771783471107, -0.039683789014816284, 0.005227129440754652, 0.014689840376377106, -0.014252488501369953, 0.017152851447463036, 0.0025214734487235546, 0.029854336753487587, 0.08326683193445206, -0.0124692153185606, 0.026059353724122047, 0.01622280851006508, 0.02863771840929985, -0.006723685190081596, 0.016428522765636444, -0.03687519207596779, -0.01634066551923752, 0.000982855912297964, -0.03677370026707649, -0.0035205844324082136, -0.0017516311490908265, -0.014808204025030136, 0.05057677999138832, -0.028712691739201546, 0.00564866466447711, 0.02770892158150673, -0.004096084274351597, -0.02879415452480316, -0.019192468374967575, -0.054723046720027924, -0.032325904816389084, -0.03295452520251274, -0.011842875741422176, 0.006959841586649418, -0.002320070518180728, -0.025042928755283356, -0.014393486082553864, -0.02239060029387474, -0.03238264098763466, 0.02581639215350151, -0.07194124162197113, -0.03151316195726395, 0.014045312069356441, 0.005084425676614046, 0.013885333202779293, 0.0042034657672047615, 0.06614458560943604, 0.015064086765050888, -0.005228063091635704, -0.026030153036117554, 0.0004628304741345346, 0.022970348596572876, -0.015928838402032852, 0.0056665507145226, -0.07543592900037766, 0.036351580172777176, 0.021913202479481697, -0.004374786280095577, -0.059730470180511475, 0.021008742973208427, 0.008816727437078953, -0.024552328512072563, 0.06570272892713547, -0.03979254513978958, 0.02454390563070774, -0.02919365093111992, -0.016433609649538994, -0.005077768582850695, -0.004504844080656767, 0.06385275721549988, -0.02238106168806553, 0.08749475330114365, 0.04384748265147209, 0.00010745263716671616, -0.06444060802459717, -0.004615190904587507, -0.017407255247235298, -0.01582345925271511, -0.030980302020907402, -0.014567949809134007, -0.026101691648364067, -0.08043000847101212, -0.041814785450696945, 0.01933217979967594, -0.015902377665042877, -0.03829476609826088, 0.01566421054303646, -0.004874327685683966, -0.05976575240492821, 0.006330022122710943, -0.022577984258532524, 0.003216295037418604, -0.02465885505080223, -0.011972318403422832, 0.00812322087585926, 0.04097306728363037, -0.0014916072832420468, -0.009670237079262733, 0.015829870477318764, -0.05236738920211792, -0.012316849082708359, 0.005124234594404697, 0.050380684435367584, 0.042342450469732285, 0.02939751371741295, 0.024873904883861542 ]
[ -0.09973502159118652, -0.024005288258194923, 0.02021520957350731, -0.07213777303695679, 0.03125660493969917, -0.04265212640166283, -0.04582234099507332, 0.010015634819865227, -0.02905462682247162, -0.03515872731804848, 0.02025672420859337, -0.007806150708347559, 0.01602242700755596, -0.017315765842795372, 0.08291709423065186, 0.009207816794514656, -0.017189206555485725, -0.03655995428562164, 0.03138939291238785, 0.018988769501447678, 0.005794166121631861, -0.05610965937376022, -0.03618031367659569, -0.05348635092377663, -0.05152823403477669, 0.057708512991666794, 0.04006301239132881, -0.047318946570158005, 0.018641656264662743, -0.19583992660045624, 0.03427741676568985, -0.00693518528714776, -0.013805320486426353, -0.03185513615608215, 0.01605239324271679, 0.04393906146287918, 0.023879794403910637, -0.00039693567669019103, -0.004568831063807011, 0.04952458664774895, 0.004185800906270742, 0.030459150671958923, -0.07825849950313568, -0.048509225249290466, 0.03429994359612465, -0.01777702011168003, -0.001797491917386651, -0.02279861457645893, -0.020607182756066322, 0.012124456465244293, -0.035877883434295654, 0.02977348119020462, 0.0004963116953149438, -0.012268051505088806, -0.013483889400959015, 0.026909202337265015, 0.04305374249815941, 0.07673519104719162, -0.0018084581242874265, -0.002493677195161581, 0.008067154325544834, -0.0053284913301467896, -0.10996600240468979, 0.0856749638915062, 0.03542075678706169, 0.0416732095181942, -0.01796531118452549, -0.053272590041160583, -0.031513143330812454, 0.09100493043661118, -0.031222498044371605, -0.0008430403540842235, -0.02647010050714016, 0.05951171740889549, -0.009151924401521683, -0.022444171831011772, 0.015129264444112778, 0.0013107701670378447, 0.030488861724734306, -0.030586829409003258, -0.04863770306110382, -0.018636392429471016, -0.0388382226228714, 0.0018724938854575157, -0.029837707057595253, 0.02993970923125744, 0.021060023456811905, 0.05159975215792656, 0.023837249726057053, 0.04124531149864197, 0.03766028955578804, -0.005817710421979427, 0.04889395460486412, 0.005012533161789179, -0.048137057572603226, 0.032514702528715134, -0.015377486124634743, 0.005538743454962969, -0.02689569629728794, 0.4254833161830902, 0.01805831491947174, -0.012548676691949368, 0.05545559525489807, 0.015401812270283699, 0.03137655183672905, 0.019108634442090988, -0.002580552361905575, -0.035561881959438324, 0.024804389104247093, -0.012319906614720821, 0.010014905594289303, -0.0019150119042024016, 0.06702384352684021, -0.06285353004932404, 0.024373937398195267, -0.018259907141327858, -0.018323825672268867, 0.030631521716713905, -0.01611340045928955, -0.01788032241165638, -0.01577497273683548, 0.016528617590665817, 0.04865720123052597, 0.01951628550887108, 0.010815787129104137, -0.022258589044213295, 0.01737239956855774, 0.04398233816027641, 0.015397503040730953, -0.015586714260280132, 0.018877657130360603, -0.06968355178833008, -0.040440917015075684, -0.004558961372822523, 0.0368150919675827, 0.030100956559181213, 0.03358842805027962, -0.05777920037508011, 0.016056455671787262, 0.03964240476489067, -0.015022729523479939, -0.02101653255522251, 0.04177612438797951, -0.0027414897922426462, -0.0143072959035635, 0.073536217212677, 0.02602803148329258, 0.00610552029684186, -0.05300804600119591, -0.0056581380777060986, -0.022558117285370827, 0.035188909620046616, -0.0075320410542190075, -0.08138496428728104, 0.004793068394064903, 0.006834023632109165, 0.06094527617096901, 0.014764116145670414, -0.1045558899641037, -0.0018285505939275026, 0.0154933612793684, -0.06410852819681168, -0.02761569246649742, 0.02793968841433525, 0.016488784924149513, -0.100845567882061, -0.02763606421649456, 0.038991592824459076, 0.05435739830136299, -0.021513400599360466, -0.01733158901333809, 0.013386623933911324, -0.03857272490859032, -0.05545919016003609, 0.021770762279629707, -0.0540706105530262, -0.017673183232545853, 0.03234609216451645, 0.03871062770485878, 0.03758680447936058, 0.00194115552585572, 0.003817093325778842, -0.03173985704779625, -0.009232152253389359, -0.06567509472370148, -0.12876412272453308, -0.037743233144283295, 0.012778504751622677, -0.04215653985738754, -0.03417477011680603, -0.0012887698831036687, -0.020854134112596512, -0.046985432505607605, 0.06841383129358292, 0.03500520810484886, -0.00046429812209680676, 0.018489249050617218, -0.002350608818233013, -0.00712380837649107, -0.01631271280348301, 0.01020969171077013, 0.035114992409944534, -0.005863645579665899, 0.02232399582862854, -0.08649825304746628, 0.05661308765411377, 0.010379305109381676, -0.045966409146785736, 0.07769247889518738, 0.05993666499853134, -0.03235308825969696, -0.011779136955738068, -0.009757430292665958, 0.030537089332938194, -0.008299755863845348, 0.022836823016405106, -0.03678561747074127, 0.026318654417991638, 0.047813866287469864, 0.005318057257682085, 0.0032901884987950325, 0.01147837471216917, -0.04236367717385292, -0.34883376955986023, -0.028149094432592392, -0.064417764544487, -0.014543156139552593, -0.019986137747764587, -0.049351949244737625, 0.05035431310534477, -0.024893218651413918, 0.0021394267678260803, -0.01985693909227848, 0.0693303644657135, -0.03473187983036041, 0.039093267172575, -0.06312990188598633, -0.014540940523147583, -0.0003673286992125213, -0.021616023033857346, -0.013545289635658264, -0.038798198103904724, 0.01017119362950325, -0.04203176870942116, -0.05302857607603073, -0.008800012059509754, -0.07304684072732925, -0.0002929734473582357, -0.026406001299619675, 0.11680904775857925, 0.030818680301308632, 0.07837365567684174, -0.06508328765630722, 0.05404037982225418, 0.030967267230153084, 0.008557482622563839, -0.12176483124494553, 0.012229896150529385, 0.012648168951272964, 0.015301200561225414, -0.02475750632584095, 0.03109779953956604, -0.012633858248591423, -0.07681725174188614, 0.02540660835802555, -0.06388920545578003, -0.0438520722091198, -0.029583750292658806, -0.006872390862554312, 0.0014255096903070807, -0.024279795587062836, -0.047596339136362076, 0.06934607774019241, 0.013063233345746994, 0.03924238309264183, -0.005348300561308861, 0.00563601590692997, -0.024364065378904343, -0.003532367292791605, -0.034550197422504425, -0.016175800934433937, 0.045487672090530396, 0.01450001448392868, 0.054164960980415344, 0.03371341526508331, 0.007642118260264397, -0.06139346584677696, 0.015041928738355637, -0.011975552886724472, 0.02111242711544037, -0.009983209893107414, 0.09336115419864655, -0.02637394517660141, -0.040874771773815155, 0.12167993187904358, -0.004279388580471277, 0.015404298901557922, 0.018301159143447876, 0.00005148478157934733, -0.00044000515481457114, 0.03768894076347351, 0.0027622252237051725, -0.00238236621953547, 0.03241383656859398, -0.016402537003159523, 0.042290762066841125, -0.021934162825345993, -0.03196990489959717, 0.03568759560585022, -0.0260346420109272, -0.03875870630145073, 0.029579201713204384, 0.013020765967667103, -0.007191455457359552, 0.0031507674138993025, -0.003939434885978699, -0.039521001279354095, 0.08744873106479645, 0.022899361327290535, -0.23449115455150604, 0.04265671223402023, 0.07952626049518585, 0.06472690403461456, 0.009602434933185577, -0.006761669181287289, 0.022498831152915955, -0.056494876742362976, 0.02812742069363594, 0.0019021626794710755, 0.0311813373118639, 0.052124299108982086, -0.0015686851693317294, -0.023548057302832603, 0.03233420476317406, -0.006180799566209316, 0.058852847665548325, -0.003336356719955802, 0.011454431340098381, -0.03746870160102844, 0.01190963201224804, 0.00731765478849411, 0.15141700208187103, 0.032637037336826324, -0.017366578802466393, 0.017509400844573975, 0.012170141562819481, 0.04903354495763779, 0.04761796072125435, 0.0022908325772732496, -0.030909664928913116, -0.005993315484374762, -0.0017754181753844023, -0.0001256871473742649, 0.04297438636422157, -0.0454002320766449, -0.03082270361483097, 0.033643051981925964, 0.043574899435043335, 0.00901132170110941, 0.005959002301096916, 0.03534860163927078, -0.003999610897153616, 0.035615224391222, 0.06216597557067871, -0.034703027456998825, 0.013486366719007492, -0.011558485217392445, -0.062388304620981216, 0.0036509542260318995, -0.037839967757463455, -0.07045233994722366, 0.022654367610812187, -0.010001560673117638, 0.02533988654613495, 0.08107857406139374, 0.010924111120402813, -0.022595345973968506, 0.012364700436592102, -0.0008491057669743896, 0.008052755147218704, -0.0541880764067173, 0.13546015322208405, 0.00954511109739542, 0.015765490010380745 ]
[ -0.019977493211627007, 0.010207238607108593, 0.013346061110496521, -0.023060208186507225, 0.0479980893433094, 0.0005688538076356053, -0.03481709212064743, 0.017197340726852417, -0.04540428891777992, -0.01220739260315895, 0.008119242265820503, -0.0035172677598893642, 0.010094898752868176, -0.017625004053115845, 0.014049094170331955, -0.01224145945161581, -0.00046346132876351476, 0.06620624661445618, 0.038895390927791595, 0.004891117103397846, -0.03819161280989647, 0.026730144396424294, 0.03719335049390793, -0.011356308124959469, -0.026287488639354706, -0.01173451915383339, -0.03587964177131653, -0.000037372294173110276, 0.027361253276467323, -0.1739775687456131, 0.011530674993991852, -0.002770459745079279, -0.01550192479044199, -0.006728310603648424, 0.0002138806157745421, 0.0341663658618927, 0.014616676606237888, -0.042023006826639175, -0.01469532772898674, -0.007524623069912195, 0.025819115340709686, 0.0022238518577069044, -0.023679282516241074, -0.012774406000971794, -0.014765911735594273, -0.049104273319244385, -0.01625143550336361, -0.0292342621833086, -0.007569722831249237, -0.02710358425974846, -0.017632972449064255, 0.006208684295415878, 0.023365190252661705, 0.01027615461498499, -0.046257611364126205, -0.03371691331267357, 0.035075537860393524, -0.01469931099563837, -0.020469404757022858, -0.03051455318927765, 0.007051317952573299, -0.028607510030269623, -0.016733622178435326, -0.01752862147986889, -0.043065767735242844, 0.010044138878583908, 0.03381256014108658, -0.011539526283740997, -0.005901735741645098, -0.014910416677594185, -0.04091453552246094, 0.017196718603372574, 0.010173276998102665, -0.04080486670136452, 0.0024105063639581203, -0.04488830268383026, 0.032315436750650406, 0.00762726878747344, 0.01361379586160183, 0.029209334403276443, -0.043894972652196884, 0.03746502101421356, 0.022587886080145836, -0.008935223333537579, -0.004369236994534731, 0.012267633341252804, 0.014537702314555645, 0.01191742718219757, 0.045997828245162964, 0.0033839198295027018, -0.015390992164611816, 0.005606609862297773, 0.002637408673763275, 0.03578602150082588, -0.06052631139755249, -0.009712109342217445, 0.009329687803983688, -0.03007471188902855, 0.020701361820101738, 0.7949700355529785, 0.00040705123683437705, 0.027973463758826256, 0.017192864790558815, 0.0016056502936407924, 0.010008028708398342, 0.03220072388648987, -0.04151322320103645, -0.009470357559621334, -0.039149343967437744, -0.039182137697935104, 0.030111247673630714, 0.010367462411522865, 0.04735283926129341, -0.018607908859848976, -0.015710577368736267, -0.020144615322351456, 0.013850249350070953, 0.01586720533668995, -0.0013721509603783488, -0.010095375590026379, 0.058867812156677246, 0.00033045042073354125, 0.014585823751986027, 0.012362571433186531, -0.02437843196094036, -0.23324531316757202, -0.01225720252841711, -6.763506498515491e-33, 0.016724392771720886, -0.007375237066298723, -0.014120110310614109, -0.0024783050175756216, 0.03179791569709778, 0.00827048346400261, 0.02428184449672699, 0.06445551663637161, -0.04921598732471466, -0.034347303211688995, 0.007523334119468927, -0.026415308937430382, -0.0020422108937054873, -0.015096467919647694, -0.00324622867628932, 0.0102817602455616, -0.006797385402023792, 0.0667886957526207, 0.0023958273231983185, -0.031115660443902016, 0.015557202510535717, 0.005602076184004545, 0.0017420814838260412, -0.019697969779372215, 0.042105939239263535, 0.025073444470763206, 0.03773604333400726, 0.020645519718527794, -0.010275125503540039, -0.05556785687804222, -0.00414827698841691, 0.0008559126872569323, 0.03667840734124184, 0.018797392025589943, -0.005903674755245447, -0.02676251344382763, -0.02350265346467495, -0.01420893706381321, -0.060542427003383636, -0.012584475800395012, 0.012919275090098381, 0.06177150458097458, -0.03174945339560509, -0.029668498784303665, -0.024612244218587875, -0.04090699926018715, -0.006008149590343237, 0.03426080569624901, 0.02617351897060871, 0.00660287868231535, -0.0035349498502910137, 0.000806126743555069, 0.024110645055770874, 0.0007084095850586891, -0.010347974486649036, 0.003432114142924547, -0.017833160236477852, 0.004439016338437796, -0.011471106670796871, 0.010641388595104218, 0.0088539132848382, -0.001888996921479702, 0.0030229755211621523, 0.003349067410454154, 0.010445790365338326, -0.022714346647262573, 0.0025160573422908783, 0.020806297659873962, 0.04287340119481087, 0.045253947377204895, -0.05041502043604851, -0.012445195578038692, -0.029987890273332596, -0.02319512888789177, 0.04100947082042694, -0.04995657503604889, 0.005264367442578077, -0.052163783460855484, 0.0014289050595834851, 0.04210079088807106, 0.0228450708091259, -0.004976795520633459, -0.05249848589301109, -0.025698473677039146, -0.016426825895905495, -0.011000445112586021, 0.006352960132062435, 0.0012016904074698687, -0.0030686769168823957, 0.021852603182196617, 0.055866971611976624, -0.030528005212545395, 0.015860533341765404, -0.020147833973169327, -0.038194697350263596, 6.984972572946287e-33, 0.008192953653633595, 0.015043558552861214, -0.03791363537311554, 0.029354019090533257, 0.02478112280368805, -0.05313057452440262, 0.022665172815322876, 0.015033810399472713, -0.05986250564455986, 0.015565739944577217, -0.0439177006483078, 0.02004089020192623, -0.043484851717948914, 0.02378852106630802, 0.0360419936478138, 0.0178698543459177, 0.05009344592690468, -0.04913010448217392, 0.027573322877287865, 0.003234262578189373, -0.010923613794147968, 0.029225165024399757, 0.03144668787717819, 0.015027523972094059, 0.0025406230706721544, 0.064672090113163, -0.021979928016662598, 0.027175188064575195, -0.015301377512514591, 0.008540094830095768, 0.011020882055163383, -0.02680383436381817, -0.0063386582769453526, -0.012366599403321743, 0.02123560942709446, 0.011970486491918564, -0.015220064669847488, 0.02481083571910858, 0.02570492960512638, 0.021565763279795647, 0.02525538019835949, 0.01864369958639145, -0.047575950622558594, 0.00202495907433331, 0.0015131529653444886, 0.007955914363265038, -0.02207833342254162, 0.021604472771286964, -0.006282137241214514, -0.004577304236590862, -0.019783444702625275, 0.03753684461116791, 0.004779737908393145, -0.02038285881280899, -0.013425313867628574, -0.015329091809689999, -0.07114459574222565, 0.0435483381152153, -0.0019387667998671532, 0.013276953250169754, 0.007003775332123041, -0.028460070490837097, -0.033494651317596436, 0.03926786407828331, -0.026127347722649574, 0.01637229137122631, -0.040703173726797104, 0.00404385756701231, 0.02898682840168476, 0.02613258734345436, -0.014133908785879612, 0.04390763118863106, -0.0005364093231037259, 0.01994127593934536, 0.005984653253108263, -0.012639119289815426, 0.0028961668722331524, -0.030924992635846138, 0.01657373271882534, 0.020532922819256783, -0.019689828157424927, 0.005493410397320986, -0.007789243943989277, 0.011350966058671474, -0.017139803618192673, 0.03817931190133095, -0.05297446623444557, 0.05093966796994209, 0.027633346617221832, -0.014056648127734661, 0.024199431762099266, -0.02685648947954178, -0.021031217649579048, 0.03968017175793648, -0.004287844989448786, -1.2406560223610086e-8, 0.05587507411837578, -0.027778958901762962, 0.016573665663599968, 0.01391143910586834, 0.025916678830981255, 0.01927940547466278, 0.004642486572265625, -0.019527040421962738, -0.022747712209820747, 0.022788291797041893, 0.056526005268096924, 0.018792349845170975, 0.0013154963962733746, 0.048160284757614136, 0.04502611607313156, -0.020201731473207474, 0.012879613786935806, 0.06431175768375397, 0.0047475299797952175, -0.019017117097973824, -0.005074403714388609, 0.06985489279031754, 0.001208581728860736, 0.011916123330593109, 0.0027353495825082064, 0.0318017341196537, 0.02110782079398632, -0.0839519202709198, -0.013290279544889927, 0.032948751002550125, 0.017086641862988472, -0.018922341987490654, -0.05499006807804108, 0.01588309369981289, -0.04468515142798424, -0.02530691958963871, -0.02568037249147892, 0.035279110074043274, 0.010218912735581398, -0.03629479929804802, 0.02161790430545807, -0.0016987320268526673, 0.005733221769332886, -0.015151427127420902, -0.04484925791621208, -0.03387671336531639, -0.00590366730466485, 0.025409448891878128, 0.03188973665237427, -0.04412680119276047, 0.03501664847135544, -0.009846063330769539, -0.02454746514558792, 0.03520176559686661, -0.005199371371418238, -0.029630163684487343, 0.026994280517101288, -0.01850190758705139, -0.014634208753705025, -0.028467297554016113, 0.02004278637468815, 0.0059326086193323135, 0.006521009374409914, -0.011223146691918373 ]
developer-machine-automation-dependencies
https://markhneedham.com/blog/2012/01/24/developer-machine-automation-dependencies
false
2012-01-12 17:24:30
Learning Android: Roboguice - Injecting context into PreferenceManager
[ "android" ]
[ "Android" ]
In my last post I showed how I'd been able to http://www.markhneedham.com/blog/2012/01/10/learning-android-testing-details-got-saved-to-sharedpreferences/[write a test around saved preferences in my app by making use of a ShadowPreferenceManager] but it seemed a bit hacky. I didn't want to have to do that for every test where I dealt with preferences - I thought it'd be better if I could wrap the preferences in an object of my own and then inject it where necessary. Another benefit of taking this approach is that the interface of exactly what I'm storing as user preferences. I wanted the class to be roughly like this: [source,java] ---- public class UserPreferences { public String userKey() { return getDefaultSharedPreferences().getString("user_key", ""); } public String userSecret() { return getDefaultSharedPreferences().getString("user_secret", ""); } private SharedPreferences getDefaultSharedPreferences() { return PreferenceManager.getDefaultSharedPreferences(getContextHereSomehow()); } } ---- Initially it wasn't entirely obvious how I could get a +++<cite>+++Context+++</cite>+++ to pass to +++<cite>+++getDefaultSharedPreferences+++</cite>+++ but I came across http://www.irasenthil.com/2011/09/how-to-inject-context-in-android-with.html[a blog post explaining how to do it]. What we need to do is inject a +++<cite>+++Context+++</cite>+++ object via the constructor of the class and decorate the constructor with the +++<cite>+++@Inject+++</cite>+++ attribute so that Roboguice will resolve the dependency: [source,java] ---- public class UserPreferences { private Context context; @Inject public UserPreferences(Context context) { this.context = context; } public SharedPreferences getDefaultSharedPreferences() { return PreferenceManager.getDefaultSharedPreferences(context.getApplicationContext()); } public String userKey() { return getDefaultSharedPreferences().getString("user_key", ""); } public String userSecret() { return getDefaultSharedPreferences().getString("user_secret", ""); } } ---- We never have to explicitly setup a binding for +++<cite>+++Context+++</cite>+++ in our Roboguice because it's already been done for us in https://github.com/abombss/roboguice/blob/master/roboguice/src/main/java/roboguice/config/RoboModule.java[RoboModule] which is instantiated by https://github.com/abombss/roboguice/blob/master/roboguice/src/main/java/roboguice/application/RoboApplication.java[RoboApplication] which we extend like so: [source,java] ---- public class TweetBoardApplication extends RoboApplication { private Module module = new RobolectricSampleModule(); @Override protected void addApplicationModules(List<Module> modules) { modules.add(module); } public void setModule(Module module) { this.module = module; } } ---- We then hook +++<cite>+++TweetBoardApplication+++</cite>+++ up in the AndroidManifest.xml file like this: [source,xml] ---- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.pivotallabs" android:versionCode="1" android:versionName="1.0"> <application android:label="@string/app_name" android:theme="@android:style/Theme.Light.NoTitleBar" android:icon="@drawable/app_icon" android:name="TweetBoardApplication"> </application> </manifest> ---- And that's it!
null
null
[ 0.02936246059834957, 0.000986881903372705, 0.00832581426948309, 0.038769710808992386, 0.08441344648599625, 0.005532791838049889, 0.048333313316106796, 0.010264434851706028, 0.012627826072275639, -0.024530678987503052, -0.013445612974464893, 0.015251090750098228, -0.050221674144268036, -0.006715174298733473, -0.018217401579022408, 0.062685027718544, 0.05692382529377937, 0.005498508457094431, 0.01419792976230383, 0.0026776629965752363, 0.03723937273025513, 0.030184205621480942, 0.012723521329462528, 0.03644730523228645, 0.03139037638902664, 0.02584768831729889, 0.03245773911476135, 0.016487466171383858, -0.047194954007864, -0.018671082332730293, 0.026754261925816536, 0.011285828426480293, 0.0005482552805915475, 0.010529662482440472, -0.00014937727246433496, -0.028488120064139366, -0.0363570861518383, -0.0010402320185676217, 0.010863011702895164, 0.05586701259016991, -0.0622989647090435, 0.01976599544286728, -0.03460429981350899, -0.01391663495451212, -0.03713681921362877, -0.004832452163100243, -0.0285013560205698, 0.03279682993888855, -0.010201740078628063, -0.014119225554168224, -0.06988566368818283, 0.04125488921999931, -0.005693646147847176, 0.004938958212733269, 0.005145849194377661, 0.05132203549146652, 0.04406131058931351, -0.08508681505918503, 0.02427898533642292, -0.044669002294540405, -0.01152048259973526, 0.02297373302280903, -0.005410888697952032, 0.03629355877637863, 0.002197530586272478, -0.002669632202014327, 0.009340383112430573, 0.034357279539108276, -0.04134880751371384, -0.002613159827888012, -0.02420702390372753, -0.01845860481262207, 0.00802720058709383, 0.019737664610147476, -0.025675443932414055, -0.02929307334125042, 0.02045789361000061, 0.06918290257453918, 0.016927361488342285, 0.042331088334321976, -0.031114691868424416, -0.034158218652009964, 0.001778754754923284, 0.01123457495123148, -0.02410970814526081, -0.04860278591513634, -0.021554457023739815, -0.022319629788398743, -0.04462961480021477, 0.053837887942790985, -0.005603984463959932, -0.022175060585141182, 0.015996849164366722, 0.03950398415327072, 0.0013057142496109009, 0.0014886417193338275, 0.0370602048933506, -0.019458219408988953, -0.010229980573058128, -0.003328694961965084, -0.017486998811364174, -0.01906662806868553, 0.02078711800277233, 0.017808375880122185, -0.07848004251718521, -0.03187280893325806, -0.04609716311097145, -0.02241133153438568, -0.03415752947330475, -0.008994526229798794, -0.03276023268699646, 0.05357016995549202, -0.002931006019935012, -0.015549390576779842, -0.0739862471818924, 0.03680609539151192, 0.033601313829422, -0.007637326139956713, -0.019010715186595917, 0.0409943051636219, 0.025674570351839066, 0.04023904725909233, 0.028490517288446426, 0.06839493662118912, 0.012415731325745583, 0.06730088591575623, -0.028706355020403862, 0.04294416308403015, -0.017463449388742447, -0.06304570287466049, 0.01319705881178379, 0.04166248440742493, -0.0013219735119491816, 0.023426156491041183, -0.007066953927278519, -0.012309440411627293, -0.0015867522452026606, 0.007298067677766085, 0.05265551805496216, 0.036519866436719894, -0.029089955613017082, -0.052857596427202225, 0.005447716917842627, -0.003416186198592186, 0.002351432340219617, 0.0029600877314805984, 0.01722094602882862, 0.002333385171368718, -0.014606352895498276, 0.030563978478312492, 0.01148108672350645, 0.039354220032691956, 0.06395076215267181, -0.046072520315647125, 0.0017319427570328116, 0.07483787089586258, 0.012486297637224197, 0.008871372789144516, -0.009952894411981106, 0.026881281286478043, 0.024803025647997856, 0.007046522572636604, -0.014782206155359745, 0.02262444794178009, 0.02500893734395504, -0.024243135005235672, -0.012969993986189365, 0.04371178150177002, 0.005450941156595945, -0.00799338798969984, -0.05024726688861847, -0.08043549209833145, 0.03982662037014961, -0.05671652778983116, -0.031136000528931618, 0.06514226645231247, 0.06931612640619278, 0.012086249887943268, 0.054861605167388916, -0.005113688297569752, -0.073545441031456, 0.03255660831928253, 0.015109565109014511, 0.0013511303113773465, 0.02203240618109703, 0.02025798335671425, 0.041713740676641464, 0.03799113258719444, -0.004703367128968239, 0.03818261995911598, -0.07089798897504807, -0.06191473826766014, 0.00835751835256815, -0.026057656854391098, 0.08474308997392654, -0.026362504810094833, 0.018116682767868042, 0.07445525377988815, 0.03370235860347748, 0.03734952211380005, 0.02766481786966324, -0.009398936294019222, -0.002735795918852091, -0.03433337062597275, -0.04228822514414787, 0.00458097830414772, 0.037585098296403885, -0.011406123638153076, -0.035100679844617844, 0.032759904861450195, -0.025419194251298904, 0.02092602476477623, 0.03899659588932991, -0.033376291394233704, 0.020372062921524048, 0.01622740924358368, 0.008857115171849728, -0.020083509385585785, 0.060481876134872437, -0.058421555906534195, 0.00975024700164795, -0.013075935654342175, -0.012152847833931446, 0.0038951041642576456, -0.014509456232190132, 0.12252900004386902, 0.027597712352871895, -0.0329003669321537, -0.03607092797756195, 0.02280176244676113, 0.01279387902468443, -0.055145975202322006, 0.005146005190908909, -0.02595307119190693, -0.003194181015715003, 0.008367477916181087, -0.0308708306401968, -0.011221256107091904, 0.028481530025601387, -0.037722937762737274, 0.02081567607820034, 0.09533867239952087, -0.05367477983236313, 0.04769199341535568, -0.020798973739147186, -0.020517105236649513, -0.017499646171927452, -0.01979614794254303, -0.04462931677699089, -0.010225808247923851, 0.014767415821552277, -0.024058466777205467, 0.061161454766988754, -0.01659829542040825, 0.0016987192211672664, -0.03504191339015961, -0.04590124264359474, 0.00866706483066082, 0.015256342478096485, 0.0926704853773117, -0.0007046196842566133, 0.06826572865247726, -0.022549325600266457, -0.000050211616326123476, -0.017552319914102554, -0.027599109336733818, 0.0003696189378388226, -0.018869975581765175, -0.009414099156856537, 0.07513140141963959, -0.005231718998402357, 0.009799842722713947, 0.02675946056842804, 0.010956203565001488, -0.004019365180283785, 0.02207189053297043, -0.0030753305181860924, 0.027231590822339058, 0.0007864153012633324, -0.03127744793891907, -0.03803316503763199, 0.018709572032094002, -0.04035375267267227, -0.04349913075566292, 0.02330857329070568, -0.09727175533771515, 0.02673281542956829, -0.04003406688570976, -0.039834532886743546, 0.021747944876551628, 0.022730575874447823, 0.016352524980902672, 0.027266893535852432, 0.020288806408643723, 0.07229965180158615, 0.005045408848673105, 0.003734874539077282, 0.024313945323228836, 0.005463544279336929, 0.04468034952878952, -0.01354409009218216, -0.011933018453419209, 0.053541023284196854, 0.009759640321135521, 0.01898881047964096, -0.04049714654684067, 0.024326270446181297, -0.024709666147828102, -0.2818467617034912, 0.006066589150577784, -0.011084464378654957, -0.0406239852309227, 0.01214062049984932, 0.014963007532060146, 0.022259818390011787, -0.07688198238611221, -0.015063319355249405, 0.079665906727314, -0.021009596064686775, -0.02974255383014679, -0.007763537112623453, 0.034423571079969406, -0.030100243166089058, 0.01829661801457405, 0.02111460641026497, -0.025430789217352867, -0.0035807357635349035, 0.04489490017294884, -0.005476807709783316, -0.08035089820623398, -0.005331187043339014, 0.03001912496984005, 0.040704503655433655, 0.055714137852191925, -0.0952322855591774, 0.05526800826191902, -0.017547842115163803, -0.00013134941400494426, 0.005687294062227011, -0.013109824620187283, 0.004204321652650833, -0.021755315363407135, -0.0066611203365027905, -0.000809933990240097, 0.0032580653205513954, 0.017672814428806305, -0.02951027639210224, 0.00021976022981107235, -0.04225068539381027, -0.06133358180522919, -0.029351932927966118, 0.014102362096309662, 0.059490419924259186, -0.02624419331550598, -0.08193595707416534, -0.011489703319966793, -0.03505295142531395, 0.05909561365842819, -0.04119228571653366, -0.046859852969646454, -0.016913920640945435, 0.046504370868206024, -0.012108787894248962, -0.03425066918134689, 0.026547091081738472, -0.025762924924492836, -0.03219437971711159, -0.04828757792711258, 0.002909346017986536, -0.04082319512963295, -0.00694282166659832, -0.03939908370375633, -0.017365608364343643, -0.07335790991783142, -0.03683265298604965, -0.011728562414646149, 0.06445455551147461, 0.04967985302209854, -0.059354618191719055, 0.0014411475276574492, 0.02008301392197609, -0.11240900307893753, 0.0043206787668168545, -0.04883045703172684, -0.04766228795051575, -0.028833191841840744, -0.03268309682607651, 0.030756212770938873, -0.042268767952919006, -0.00009155428415397182, 0.03325137495994568, 0.03181307017803192, -0.014256414957344532, -0.0032719727605581284, 0.012990808114409447, -0.013802953064441681, 0.01218245830386877, -0.013167633675038815, 0.07681457698345184, -0.017835624516010284, -0.01927996799349785, -0.03589838370680809, 0.005820796359330416, 0.033150386065244675, 0.04131890460848808, -0.0025079597253352404, 0.024835992604494095, 0.025096703320741653, 0.022805672138929367, -0.04174363613128662, 0.010731752961874008, -0.038120806217193604, -0.012942145578563213, -0.01720726117491722, -0.0762396827340126, 0.008321830071508884, 0.01464862935245037, 0.011842751875519753, -0.036137741059064865, -0.013714148662984371, -0.004647089168429375, -0.03286564350128174, -0.07774319499731064, -0.015156608074903488, 0.04030844569206238, 0.0398811437189579, -0.011144768446683884, -0.02014004811644554, -0.05762654170393944, 0.008292410522699356, -0.009599592536687851, -0.0050371382385492325, -0.06802515685558319, -0.030456390231847763, -0.040848203003406525, -0.03980249539017677, -0.007663455791771412, 0.027197346091270447, -0.01357815507799387, 0.013633687049150467, 0.037026889622211456, -0.011170384474098682, 0.015132730826735497, -0.02339819446206093, -0.005520597565919161, -0.0445576049387455, 0.007388575002551079, -0.019039567559957504, -0.0015044989995658398, -0.004518031608313322, -0.0010312686208635569, 0.03246229887008667, 0.04081502929329872, -0.037341341376304626, 0.05515919625759125, -0.0016449888935312629, -0.02251611091196537, 0.030577197670936584, 0.024341508746147156, -0.0732535719871521, 0.008105330169200897, -0.02590986341238022, -0.03170955926179886, -0.009327145293354988, 0.023203156888484955, -0.013203323818743229, -0.033571626991033554, -0.013119987212121487, 0.03134509548544884, -0.0631495788693428, 0.0013426701771095395, -0.022047849372029305, 0.00574894342571497, 0.03475814685225487, -0.04246187582612038, 0.04868217185139656, -0.009295545518398285, -0.02092677913606167, 0.03180877864360809, -0.013723810203373432, -0.036607060581445694, 0.01028987392783165, -0.006026711780577898, -0.012651617638766766, 0.010881592519581318, 0.007021334487944841, 0.010921018198132515, 0.015395681373775005, 0.0036589428782463074, -0.021038202568888664, 0.0119550172239542, -0.00821512658149004, 0.06019005551934242, 0.016841880977153778, 0.0016333740204572678, -0.03449594974517822, -0.01778740994632244, -0.027651503682136536, -0.038469862192869186, 0.00014026375720277429, -0.00411459943279624, 0.011098708026111126, -0.031258467584848404, -0.07182011753320694, 0.011078836396336555, -0.01665373332798481, 0.02775947004556656, 0.023083901032805443, -0.015871964395046234, 0.01791509799659252, -0.0392318032681942, 0.043926261365413666, 0.07128877192735672, -0.04711267352104187, 0.014464892446994781, -0.0036139190196990967, -0.0006325506838038564, -0.005893762223422527, -0.011967592872679234, -0.07905813306570053, 0.002878790721297264, -0.027363846078515053, 0.006731286179274321, -0.05899391695857048, -0.008363832719624043, -0.015918267890810966, -0.02275518886744976, 0.016833292320370674, -0.012120327912271023, 0.01321293506771326, -0.0035431634169071913, -0.009375794790685177, -0.034341055899858475, 0.013152035884559155, -0.0021332267206162214, 0.013453790917992592, 0.02225065976381302, -0.03893377631902695, 0.02493416517972946, -0.004226780030876398, 0.054781146347522736, 0.041464127600193024, -0.029449425637722015, -0.014977904967963696, -0.04260074347257614, 0.022781578823924065, 0.02100377343595028, 0.061996519565582275, 0.025054100900888443, -0.024128293618559837, -0.05727345123887062, -0.02211451716721058, -0.03927609696984291, 0.023725487291812897, -0.015284118242561817, 0.0010086698457598686, 0.019943054765462875, 0.05660967528820038, 0.035450901836156845, 0.03508543223142624, -0.011186842806637287, 0.018532879650592804, 0.07267304509878159, -0.03601788729429245, -0.029287395998835564, -0.019124340265989304, -0.06363366544246674, 0.021464621648192406, 0.02146664261817932, 0.043040238320827484, -0.009895481169223785, 0.04489583522081375, 0.020236996933817863, -0.017687179148197174, 0.031453151255846024, -0.013127457350492477, 0.035750556737184525, -0.054189685732126236, 0.006337430328130722, -0.05842982605099678, 0.04072035104036331, 0.051221445202827454, -0.006853640079498291, -0.0007722822483628988, -0.021926207467913628, -0.04798322543501854, 0.05631064623594284, -0.07120414823293686, -0.030113093554973602, 0.003824306884780526, -0.04266180470585823, -0.013582094572484493, 0.017138449475169182, -0.04952747002243996, 0.017336145043373108, 0.011655254289507866, -0.04111780971288681, -0.04185732826590538, 0.0031535234302282333, 0.055135853588581085, 0.01689322479069233, 0.02189802937209606, -0.013414931483566761, 0.03922637924551964, 0.05839499458670616, 0.029923217371106148, 0.02214917168021202, 0.010568566620349884, -0.0011734932195395231, 0.039846137166023254, 0.03752279281616211, 0.012394517660140991, 0.003640580689534545, 0.022573666647076607, 0.019714612513780594, -0.06909682601690292, 0.019928518682718277, 0.0013687413884326816, -0.009361199103295803, -0.046214018017053604, 0.040443941950798035, 0.035671502351760864, -0.04144363850355148, -0.043820820748806, 0.030325349420309067, -0.04799868166446686, -0.05621374025940895, -0.01143579836934805, -0.013463175855576992, -0.032002635300159454, 0.0764382928609848, -0.004345633555203676, 0.0012590974802151322, 0.0707726776599884, 0.005339912138879299, -0.01369086280465126, -0.015171562321484089, 0.08991552144289017, 0.07050374150276184, 0.0443376749753952, 0.017259612679481506, 0.059247229248285294, 0.00990183837711811, -0.04475283995270729, 0.020283428952097893, -0.006237358786165714, -0.012148580513894558, -0.003340449184179306, 0.019166046753525734, 0.08290822058916092, -0.014445212669670582, 0.049376942217350006, -0.021929020062088966, 0.016101554036140442, 0.006177792325615883, 0.05087102949619293, 0.026483671739697456, 0.040038906037807465, -0.01506041456013918, 0.02431386150419712, -0.03234932944178581, -0.02657214179635048, 0.005341529380530119, -0.025601163506507874, -0.0023669886868447065, 0.03604816645383835, -0.02895992062985897, 0.02516917511820793, 0.009609992615878582, 0.024898597970604897, 0.07244031131267548, -0.030973762273788452, -0.014182365499436855, 0.01629207655787468, 0.015731414780020714, 0.02978898026049137, 0.030299024656414986, -0.024105265736579895, -0.008015960454940796, 0.011288212612271309, -0.02538960985839367, -0.03396541625261307, -0.03018595091998577, -0.011788143776357174, 0.02832278423011303, -0.017641879618167877, 0.049266621470451355, 0.01544049009680748, -0.010856696404516697, -0.07251027226448059, -0.057490795850753784, -0.03715817257761955, -0.022039849311113358, -0.060472019016742706, -0.024096539244055748, 0.018248187378048897, 0.015586845576763153, -0.06673477590084076, 0.003566573141142726, -0.06978695094585419, 0.006745262071490288, 0.027208236977458, -0.0401790626347065, -0.011459730565547943, 0.01908791996538639, 0.018971556797623634, 0.028902661055326462, -0.0027705843094736338, 0.05298492684960365, 0.025485437363386154, 0.008396605961024761, -0.010478543117642403, -0.0016373272519558668, 0.05196366086602211, -0.015469560399651527, -0.022209197282791138, -0.08219733834266663, -0.0025580553337931633, 0.014376293867826462, -0.04536730423569679, -0.05005005747079849, -0.012263032607734203, 0.040627144277095795, 0.011976066045463085, 0.059680357575416565, -0.011409343220293522, -0.001994992606341839, -0.0035048804711550474, -0.016241271048784256, 0.03488511964678764, 0.013533470220863819, 0.056672751903533936, -0.007097622845321894, 0.07786915451288223, 0.03611919283866882, -0.034282904118299484, -0.01817520707845688, -0.016756707802414894, 0.008741507306694984, -0.00013821314496453851, -0.043146174401044846, -0.009668215177953243, -0.031595177948474884, -0.07280190289020538, -0.006995101924985647, 0.02049475908279419, -0.03647046908736229, -0.030930308625102043, -0.03131644055247307, 0.01659071445465088, -0.015984011813998222, 0.05225817486643791, -0.060639556497335434, 0.05401083081960678, -0.047047827392816544, 0.0026478951331228018, -0.008526518940925598, -0.0035404206719249487, -0.0210898257791996, -0.01308626588433981, 0.025830084457993507, -0.050872400403022766, -0.02790018729865551, 0.013288634829223156, 0.02503202296793461, 0.0450965091586113, -0.005039325915277004, -0.028584877029061317 ]
[ -0.09335706382989883, 0.03352860361337662, -0.006904147565364838, -0.05222229287028313, -0.01561881322413683, -0.03018699586391449, 0.06822582334280014, 0.014708063565194607, 0.018135327845811844, -0.018349334597587585, -0.032822951674461365, -0.00044254024396650493, 0.05109937861561775, 0.015381406992673874, 0.07208643853664398, -0.027736932039260864, 0.0037010624073445797, -0.02740240842103958, 0.008284066803753376, 0.024462945759296417, 0.03926195576786995, -0.03189849108457565, -0.005374979693442583, -0.0512731708586216, 0.0253357645124197, 0.06021103262901306, 0.04098832979798317, -0.05988779664039612, 0.022290129214525223, -0.20884063839912415, 0.0633237287402153, 0.0371759794652462, -0.008574539795517921, -0.03334186598658562, -0.05738550424575806, 0.026966258883476257, 0.007310767192393541, 0.017276020720601082, 0.01891888678073883, 0.06043131276965141, -0.0025917754974216223, 0.015303803607821465, -0.0392066054046154, 0.012227901257574558, -0.014008278958499432, 0.0077033028937876225, 0.02625359781086445, -0.07013235241174698, -0.012818139046430588, -0.0319473072886467, -0.019352123141288757, -0.004346986301243305, 0.005204014480113983, -0.0003949208476115018, -0.039022620767354965, -0.03524034842848778, 0.04183216020464897, 0.07725690305233002, -0.01925230212509632, 0.039559364318847656, -0.008640887215733528, -0.007008813321590424, -0.11708171665668488, 0.12623801827430725, -0.030311638489365578, -0.004952792543917894, -0.026786014437675476, 0.005071983207017183, -0.00009491683158557862, 0.07613511383533478, 0.004423391539603472, 0.02859078161418438, 0.006254689767956734, 0.07464291900396347, 0.008438353426754475, -0.0007224417640827596, 0.011328705586493015, -0.018013708293437958, 0.03804834187030792, -0.023860102519392967, -0.07821115851402283, -0.0045256949961185455, 0.034124329686164856, 0.019042212516069412, 0.008524669334292412, 0.020364027470350266, 0.02541125752031803, -0.01035983394831419, 0.025589225813746452, 0.023554297164082527, 0.05203928053379059, -0.017407653853297234, 0.037028029561042786, 0.013089606538414955, -0.08138701319694519, -0.0052323597483336926, -0.005906965583562851, -0.01892501674592495, -0.07111680507659912, 0.40126287937164307, -0.04217952862381935, -0.012669451534748077, 0.011082645505666733, 0.021038908511400223, -0.028900818899273872, -0.014343248680233955, -0.00019834577688015997, -0.05999336764216423, -0.0009219471248798072, -0.0052097574807703495, -0.008822999894618988, 0.002193834399804473, 0.02637961506843567, -0.04839770123362541, 0.018925044685602188, 0.013617997989058495, 0.05934814736247063, 0.007417019456624985, 0.022860467433929443, -0.012117517180740833, -0.04197658225893974, 0.004291515331715345, -0.002870162483304739, -0.032497111707925797, 0.0026354221627116203, -0.03392091765999794, 0.012033728882670403, 0.014858328737318516, 0.009417237713932991, 0.009858896024525166, 0.02021879144012928, -0.04842060059309006, -0.14796650409698486, -0.02053341455757618, 0.0018813282949849963, 0.05896443501114845, 0.0016201694961637259, -0.0551382340490818, 0.01746608503162861, -0.0003643329255282879, 0.019592296332120895, -0.003567302133888006, 0.050629664212465286, -0.013926433399319649, -0.05373138189315796, 0.1424340009689331, -0.017120113596320152, -0.02378280647099018, -0.03801257908344269, -0.006508604623377323, 0.039301563054323196, 0.023092208430171013, -0.01165399607270956, -0.0257186908274889, 0.03340065851807594, 0.010917588137090206, 0.06355341523885727, 0.019125793129205704, -0.03828822821378708, 0.002580042229965329, -0.013235035352408886, 0.006746990140527487, -0.044451672583818436, 0.0364835187792778, 0.03090505115687847, -0.07771111279726028, -0.025982672348618507, 0.011654200032353401, -0.012822232209146023, -0.03119897097349167, 0.002896166406571865, 0.035586725920438766, -0.017913706600666046, -0.01061287522315979, 0.03009128011763096, 0.03144381567835808, -0.04608723521232605, -0.021653592586517334, 0.01661476492881775, 0.023917745798826218, 0.03871757537126541, -0.016476526856422424, -0.06820691376924515, -0.04422314465045929, -0.04138534888625145, -0.07913310080766678, -0.052056148648262024, -0.023459499701857567, -0.0075709205120801926, 0.01668403297662735, -0.024638118222355843, -0.009375390596687794, -0.09960910677909851, 0.05689220875501633, -0.013395971618592739, 0.01123117096722126, 0.006641276180744171, -0.04237266629934311, -0.036274395883083344, -0.028416136279702187, -0.002998476615175605, 0.06046989560127258, -0.01448890008032322, -0.0075266058556735516, -0.019329123198986053, 0.06533448398113251, 0.029415210708975792, -0.04610360413789749, 0.07734567672014236, -0.016513673588633537, -0.05927480012178421, -0.007694928906857967, 0.0030329537112265825, 0.039398498833179474, -0.034045323729515076, -0.02733105607330799, -0.010238025337457657, 0.007759575732052326, 0.06758002936840057, 0.004598047584295273, -0.025156455114483833, -0.006863857619464397, -0.0017439532093703747, -0.3030829131603241, -0.010201255790889263, -0.016918988898396492, -0.03551102429628372, -0.01856183633208275, -0.07789858430624008, 0.02605924755334854, -0.001089550438337028, 0.029522264376282692, -0.04218418896198273, 0.06524509936571121, -0.03227728605270386, 0.01518710795789957, 0.0007310416549444199, 0.004992453847080469, 0.014906533062458038, -0.009329491294920444, -0.0014272219268605113, -0.02892123907804489, 0.03424719348549843, -0.025074806064367294, -0.040424805134534836, 0.02924560010433197, -0.07641448080539703, 0.06635048240423203, -0.040899354964494705, 0.0742626041173935, -0.00927511416375637, -0.01920829527080059, -0.052815333008766174, 0.06587192416191101, 0.05308110639452934, -0.01284089032560587, -0.15998105704784393, 0.0004375808348413557, 0.0013491997960954905, -0.07181362807750702, 0.017185699194669724, 0.012345931492745876, -0.030833838507533073, -0.014204507693648338, 0.052517328411340714, -0.041086211800575256, -0.06737327575683594, -0.01212495006620884, -0.03276321291923523, -0.012675263918936253, -0.04952435940504074, 0.025795402005314827, 0.08491294831037521, -0.036395568400621414, -0.029332831501960754, -0.003954568412154913, -0.0002013170742429793, -0.013985681347548962, -0.007400291971862316, -0.029626160860061646, 0.0018792846240103245, -0.001000221585854888, 0.017158236354589462, -0.002058772137388587, 0.02985682152211666, 0.020503126084804535, -0.11102969199419022, -0.026689155027270317, -0.018600571900606155, -0.023077351972460747, -0.016257528215646744, 0.007357551250606775, -0.01579868234694004, -0.02433842606842518, 0.05053333565592766, -0.03196598216891289, 0.03224839270114899, 0.039432525634765625, 0.0704369992017746, 0.03920704871416092, 0.002541204448789358, 0.017386503517627716, -0.014422452077269554, 0.000053627929446520284, 0.025889378041028976, 0.04981222003698349, 0.009766875766217709, -0.0057775662280619144, 0.052634529769420624, 0.03719635307788849, 0.010417644865810871, 0.044304486364126205, -0.010258601978421211, -0.023669889196753502, -0.013431107625365257, 0.029741108417510986, -0.041439712047576904, 0.0740637555718422, -0.004371733404695988, -0.22555214166641235, 0.04114949330687523, 0.028679464012384415, 0.05322260037064552, 0.0023651563096791506, 0.05409985035657883, 0.05783529579639435, -0.0716443657875061, -0.03094237670302391, 0.021902233362197876, 0.017771832644939423, 0.017419839277863503, 0.03740662336349487, -0.042550742626190186, 0.03994598239660263, 0.02014242671430111, 0.06485793739557266, 0.02461940236389637, 0.03684240207076073, -0.05620453879237175, 0.0005224947817623615, -0.049737975001335144, 0.17245130240917206, 0.009210770018398762, 0.009734193794429302, 0.017477381974458694, 0.04485422745347023, -0.00359373539686203, 0.07992596924304962, 0.041170634329319, 0.011061307974159718, -0.027826804667711258, 0.0834658220410347, 0.014980803243815899, 0.011449991725385189, -0.07072082906961441, -0.01095775980502367, -0.00863774586468935, 0.05461060255765915, 0.06390254944562912, 0.021975520998239517, -0.0010518069611862302, -0.03863215446472168, 0.018030138686299324, 0.0891377404332161, 0.01744268648326397, -0.015202658250927925, 0.011427055113017559, -0.09900099784135818, -0.01546695176512003, 0.014568380080163479, -0.05498553067445755, -0.039714615792036057, -0.035893138498067856, -0.0054204887710511684, 0.05850481614470482, 0.026584362611174583, -0.043351106345653534, -0.02937316708266735, 0.030688779428601265, 0.038579538464546204, 0.06354734301567078, 0.14122998714447021, 0.0022220388054847717, 0.08236058056354523 ]
[ 0.004799278918653727, 0.029902102425694466, 0.022012971341609955, -0.0010419971076771617, 0.002620956627652049, 0.034285496920347214, 0.005073454696685076, 0.015273853205144405, -0.01933949813246727, 0.00589543953537941, 0.0022416869178414345, 0.00574419554322958, 0.06323907524347305, -0.02780146338045597, 0.04237153008580208, -0.01348873134702444, 0.015372785739600658, 0.00008246389188570902, 0.0017085301224142313, 0.0411478616297245, 0.003031299216672778, 0.02620009332895279, 0.023852696642279625, -0.03942185640335083, 0.02100841887295246, 0.01887354627251625, 0.015496154315769672, -0.053084567189216614, 0.0018117139115929604, -0.09429242461919785, 0.005240458995103836, 0.018622897565364838, -0.008075833320617676, -0.002698273165151477, -0.06180110201239586, -0.022477898746728897, -0.0006869781645946205, 0.035265661776065826, 0.022101785987615585, -0.024442235007882118, -0.040569331496953964, -0.031455811113119125, 0.012739281170070171, 0.02051244117319584, -0.03724168613553047, -0.010389002971351147, 0.002616655081510544, -0.002711404813453555, -0.017587803304195404, -0.006613912992179394, -0.010549916885793209, -0.023001300171017647, 0.013858053833246231, -0.022388584911823273, 0.011914548464119434, 0.030481228604912758, -0.042433541268110275, 0.033694587647914886, 0.009924836456775665, -0.017264937981963158, -0.0010419017635285854, -0.008427518419921398, -0.04871838912367821, -0.005315388552844524, 0.007547654677182436, -0.006679944694042206, 0.03247307240962982, -0.025889594107866287, 0.03485479950904846, -0.008900905027985573, 0.00795545894652605, 0.035832300782203674, 0.0253817867487669, -0.03171693906188011, 0.007274074014276266, 0.018037835136055946, -0.009236624464392662, 0.00039449750329367816, -0.014461943879723549, -0.029588153585791588, -0.0023223243188112974, 0.03833945840597153, -0.01963222026824951, 0.05547367036342621, 0.024370653554797173, 0.0006261268863454461, 0.03067055530846119, 0.004691643174737692, -0.012136192992329597, 0.03686201944947243, -0.030017666518688202, 0.02804495207965374, 0.013962134718894958, -0.025500353425741196, -0.11291788518428802, 0.012353258207440376, -0.06924255192279816, -0.027930432930588722, -0.025250256061553955, 0.835365355014801, 0.022554447874426842, 0.034237101674079895, 0.01478543784469366, 0.02049427479505539, 0.03712360933423042, -0.016408229246735573, 0.003406928386539221, -0.037298623472452164, 0.02960025705397129, 0.03378362953662872, 0.03927295655012131, 0.0027880731504410505, 0.008998115547001362, 0.022714002057909966, 0.03410221263766289, 0.029360180720686913, 0.03734525665640831, -0.027747908607125282, 0.003678874345496297, 0.02166944555938244, -0.009314839728176594, -0.0071135410107672215, 0.008095329627394676, -0.016087906435132027, -0.017016544938087463, -0.15363888442516327, -0.016298746690154076, -7.367528393213769e-33, 0.041135311126708984, 0.002607902744784951, 0.04369065910577774, 0.002575661288574338, -0.02081243135035038, 0.023890461772680283, 0.014118364080786705, 0.027352821081876755, -0.012858466245234013, -0.06413330137729645, 0.03696150705218315, -0.002665790496394038, -0.002085828222334385, 0.023025406524538994, 0.053527042269706726, -0.005444045644253492, -0.002503881696611643, 0.00820951908826828, 0.02112022414803505, -0.012060518376529217, -0.02058243192732334, 0.02707507275044918, -0.01282398123294115, -0.03241434693336487, -0.01228973176330328, 0.04503563791513443, 0.06134159490466118, 0.015042142011225224, 0.011389639228582382, -0.033909525722265244, -0.004763101693242788, -0.012999393045902252, -0.006056553218513727, -0.018076667562127113, -0.0046663060784339905, -0.036483943462371826, -0.039257679134607315, 0.0017665245104581118, -0.014836990274488926, -0.08771063387393951, -0.053999487310647964, -0.019275221973657608, -0.04759278893470764, -0.01940927281975746, -0.03993789479136467, -0.04480205848813057, 0.018534211441874504, 0.022522730752825737, -0.019290318712592125, 0.012029848992824554, -0.014259458519518375, 0.013380982913076878, -0.011944407597184181, -0.03632506728172302, -0.05285132676362991, -0.02383282221853733, -0.029060259461402893, 0.016492346301674843, 0.004284772556275129, 0.023444704711437225, 0.021178919821977615, -0.0006237004417926073, 0.014565556310117245, 0.03303438425064087, -0.014905808493494987, 0.018488701432943344, -0.008819963783025742, -0.08543041348457336, 0.03630860522389412, 0.014882945455610752, -0.01949772797524929, -0.029604222625494003, 0.0020991561468690634, -0.01320873387157917, -0.005104464944452047, 0.009831441566348076, -0.001735095982439816, 0.019717305898666382, -0.006235115230083466, 0.027653412893414497, 0.007537363097071648, -0.023783113807439804, 0.0030497692059725523, -0.03399651125073433, -0.024603797122836113, -0.012585344724357128, 0.029349327087402344, -0.02391968108713627, -0.01859767735004425, 0.03383030369877815, 0.040385372936725616, 0.038734111934900284, -0.021503815427422523, -0.0010274735977873206, -0.01736566610634327, 6.923520667021175e-33, -0.0007981783128343523, -0.016253801062703133, -0.005271319765597582, -0.007982849143445492, 0.02510884962975979, -0.012443318031728268, -0.0089718047529459, 0.040362611413002014, -0.06645554304122925, -0.0010624636197462678, -0.022153330966830254, 0.04209325462579727, 0.006099992897361517, 0.006667206063866615, 0.07303439825773239, -0.01693197898566723, 0.038625285029411316, -0.019020408391952515, 0.02193276584148407, -0.021704871207475662, 0.02783544920384884, 0.02203165553510189, 0.041403915733098984, 0.0507325604557991, 0.006994104478508234, 0.005401003174483776, -0.0083493422716856, 0.020860057324171066, -0.022705938667058945, -0.003029878716915846, 0.0167463980615139, 0.014175363816320896, -0.009167071431875229, -0.026085874065756798, -0.016825929284095764, 0.002932252362370491, -0.04176930710673332, -0.007975911721587181, -0.0035497420467436314, 0.01143855694681406, -0.024828383699059486, -0.035196349024772644, 0.033378615975379944, -0.011828036047518253, 0.011827021837234497, -0.05063500627875328, -0.018410833552479744, 0.005183044355362654, 0.039637528359889984, -0.013550885953009129, 0.0262061208486557, 0.010384808294475079, 0.006858839653432369, -0.019710883498191833, 0.02247435227036476, -0.006976115982979536, -0.03247305005788803, 0.0028004981577396393, 0.034247271716594696, -0.027002746239304543, 0.008148595690727234, -0.018510470166802406, -0.01872154325246811, 0.029747888445854187, -0.047264669090509415, -0.03819485753774643, 0.022429585456848145, -0.0004104331019334495, -0.026345835998654366, 0.01634262502193451, -0.010524900630116463, -0.04814164713025093, 0.012010447680950165, 0.03090141899883747, 0.037761520594358444, -0.0009772679768502712, 0.0028750754427164793, 0.0006868151831440628, -0.017374686896800995, -0.02006634697318077, 0.02328176237642765, 0.004168146755546331, 0.009548049420118332, -0.009811723604798317, 0.0017086819279938936, -0.034251678735017776, -0.026034338399767876, -0.0011112700449302793, -0.025703055784106255, 0.013692094944417477, -0.03780268505215645, 0.0087039265781641, -0.008298918604850769, -0.008340653032064438, -0.004051314201205969, -1.293411155955937e-8, -0.011552647687494755, 0.0034779163543134928, 0.01823212392628193, 0.04427513852715492, 0.012603185139596462, 0.012127171270549297, -0.03272004798054695, -0.03860250487923622, 0.023059533908963203, 0.011853993870317936, 0.0023269853554666042, -0.006487330421805382, -0.0044461521320044994, 0.04778256267309189, 0.014011784456670284, -0.03762192651629448, 0.018009930849075317, -0.007697031367570162, 0.016895297914743423, 0.03384403511881828, 0.007890110835433006, -0.0017127040773630142, -0.008142887614667416, -0.0072486791759729385, 0.03812083601951599, -0.00008150180656230077, 0.03919927403330803, -0.05432812497019768, 0.001088590594008565, 0.05190685763955116, 0.027913345023989677, -0.030043277889490128, -0.028871171176433563, -0.035411324352025986, -0.04627259448170662, 0.01717919111251831, 0.016353201121091843, -0.0031912128906697035, 0.012016710825264454, -0.0002764294040389359, -0.007666008546948433, -0.025768719613552094, 0.0071741919964551926, -0.020414922386407852, -0.04479901120066643, -0.012758816592395306, 0.017898699268698692, 0.0052136206068098545, -0.012318666093051434, -0.003495176322758198, -0.02565557137131691, -0.013829783536493778, -0.0017962270649150014, -0.015032008290290833, 0.037187106907367706, -0.02276662550866604, 0.010753577575087547, -0.03339214250445366, 0.013007262721657753, -0.015348454006016254, 0.046141959726810455, 0.050788622349500656, -0.035276662558317184, -0.018784264102578163 ]
learning-android-roboguice-injecting-context-into-preferencemanager
https://markhneedham.com/blog/2012/01/12/learning-android-roboguice-injecting-context-into-preferencemanager
false
2012-01-13 21:46:58
Oracle: exp - EXP-00008: ORACLE error 904 encountered/ORA-00904: "POLTYP": invalid identifier
[ "software-development", "oracle" ]
[ "Software Development" ]
I spent a bit of time this afternoon trying to export an Oracle test database so that we could use it locally using the +++<cite>+++http://www.orafaq.com/wiki/Import_Export_FAQ#How_does_one_use_the_import.2Fexport_utilities.3F[exp]+++</cite>+++ tool. I had to connect to exp like this: [source,text] ---- exp user/password@remote_address ---- And then filled in the other parameters interactively. Unfortunately when I tried to actually export the specified tables I got the following error message: [source,text] ---- EXP-00008: ORACLE error 904 encountered ORA-00904: "POLTYP": invalid identifier EXP-00000: Export terminated unsuccessfully ---- I eventually came across http://oisene.blogspot.com/2010/06/error-when-using-11g-export-client-on.html[Oyvind Isene's blog post which pointed out that you'd get this problem if you tried to export a 10g database using an 11g client] which is exactly what I was trying to do! He explains it like so: ____ The export command runs a query against a table called EXU9RLS in the SYS schema. On 11g this table was expanded with the column POLTYP and the export command (exp) expects to find this column. ____ I needed to download the 10g client so that I could use that version of exp instead. I haven't quite got it working yet but at least it's a different error to deal with!
null
null
[ -0.0068099237978458405, 0.024396229535341263, -0.014386790804564953, 0.049334567040205, 0.09941183775663376, 0.00165238615591079, -0.014715606346726418, 0.03293684497475624, 0.009187707677483559, -0.0162196047604084, -0.03619096800684929, -0.001586293801665306, -0.07842020690441132, 0.027558468282222748, 0.011326504871249199, 0.05888917297124863, 0.06599245220422745, 0.007785800378769636, 0.03580207750201225, 0.01600131019949913, 0.02331322431564331, 0.05780088156461716, -0.0016786186024546623, 0.021408267319202423, 0.02461325377225876, 0.03963660076260567, -0.0007838430465199053, -0.008537846617400646, -0.08276113867759705, -0.023833854123950005, 0.026992160826921463, -0.029934659600257874, 0.0027926135808229446, -0.025356335565447807, 0.01507857721298933, 0.008366469293832779, -0.038471464067697525, 0.013132953085005283, -0.004558142274618149, 0.015029638074338436, -0.05846419930458069, 0.02547241561114788, 0.0025465155486017466, 0.031491316854953766, -0.009661510586738586, 0.004196777939796448, -0.014283871278166771, 0.007381338160485029, -0.023348035290837288, 0.022637322545051575, -0.04509648680686951, 0.05618760362267494, -0.03989763930439949, -0.029370924457907677, 0.05931597203016281, 0.03905210644006729, 0.00087649718625471, -0.05942360684275627, 0.01036040298640728, -0.03703657537698746, 0.02124292403459549, -0.030667902901768684, -0.012221956625580788, 0.01760278455913067, 0.024357816204428673, 0.0006686389679089189, 0.01058419980108738, 0.029056094586849213, -0.054041117429733276, 0.0003136207815259695, -0.009126484394073486, 0.007279929239302874, -0.03276697173714638, -0.02476438693702221, 0.025693323463201523, -0.022533388808369637, -0.013305466622114182, 0.03363880142569542, 0.02506607212126255, 0.09753292798995972, -0.011293911375105381, -0.0038459470961242914, 0.015644675120711327, 0.017397813498973846, 0.022572632879018784, -0.05925494059920311, -0.036360859870910645, -0.014015143737196922, -0.03686560317873955, 0.047061968594789505, 0.0015322633553296328, -0.02233990840613842, 0.01587173528969288, 0.006908810697495937, -0.030246132984757423, -0.015717649832367897, -0.005488217808306217, -0.00313747301697731, 0.008384281769394875, -0.018345007672905922, -0.028021806851029396, 0.00000999415624391986, 0.03202959522604942, 0.05008794739842415, -0.07555956393480301, 0.010356438346207142, -0.02554117515683174, -0.014444935135543346, 0.014670426957309246, 0.02065672166645527, -0.0019870921969413757, 0.03727950528264046, -0.004225132986903191, -0.024281824007630348, -0.07816614210605621, 0.05288063734769821, 0.027754144743084908, -0.03668200969696045, 0.021811267361044884, 0.008767175488173962, 0.0393042117357254, 0.044675905257463455, -0.010157533921301365, 0.07314679026603699, 0.015653906390070915, 0.03145661950111389, -0.04766768962144852, 0.04785372316837311, -0.019700687378644943, -0.05644020438194275, 0.0006514996057376266, 0.04670035094022751, 0.004384008701890707, 0.0402216762304306, 0.00787018146365881, -0.023491987958550453, 0.00829387828707695, -0.025344369933009148, 0.06287197023630142, 0.03005470335483551, -0.0011247412767261267, -0.03088737279176712, -0.03322582691907883, 0.025066297501325607, 0.026974737644195557, 0.03293418139219284, 0.0005441480898298323, -0.0663488358259201, -0.0311625637114048, -0.021921930834650993, 0.04244150593876839, 0.021273773163557053, 0.07266542315483093, -0.04749770835042, 0.013883580453693867, 0.09955251961946487, 0.04543427377939224, -0.00013774074614048004, -0.024391312152147293, -0.01314011961221695, 0.01669761911034584, 0.037597183138132095, 0.04117049649357796, 0.03839384391903877, 0.016831761226058006, -0.021401748061180115, 0.012930750846862793, 0.03621361404657364, -0.00035257061244919896, 0.030308695510029793, -0.07109229266643524, -0.06717351078987122, 0.0752287358045578, -0.04665476456284523, -0.0389118567109108, 0.04100426658987999, 0.07844781875610352, 0.05271190032362938, 0.024593425914645195, 0.0019066509557887912, -0.07740248739719391, 0.022663598880171776, -0.039956897497177124, -0.007485832553356886, 0.005982003640383482, -0.0022881655022501945, 0.08212962746620178, 0.034187451004981995, -0.00736381346359849, 0.06904824078083038, -0.05448821187019348, -0.0689966231584549, -0.011942414566874504, -0.00606694957241416, 0.04663114994764328, -0.06805398315191269, -0.008062990382313728, 0.07920784503221512, 0.04000759869813919, 0.021399764344096184, 0.026901859790086746, 0.06460610032081604, 0.024904664605855942, -0.0599319227039814, -0.040392257273197174, 0.04252336174249649, 0.03648558259010315, 0.013558441773056984, -0.030071236193180084, 0.017498886212706566, -0.023316852748394012, 0.01687953621149063, 0.01856483332812786, -0.0036274129524827003, 0.059371594339609146, 0.027867285534739494, 0.018495412543416023, -0.029669538140296936, 0.049263615161180496, -0.03543699532747269, 0.024850590154528618, 0.02621944062411785, -0.018188927322626114, -0.0012637826148420572, -0.014226795174181461, 0.12280283123254776, 0.04074467346072197, 0.012139460071921349, -0.06702541559934616, 0.027936533093452454, -0.008360995911061764, -0.04031817615032196, 0.0331423245370388, -0.027171295136213303, 0.018109630793333054, -0.004217916168272495, -0.04405906796455383, -0.011649013496935368, 0.018857337534427643, -0.01681906171143055, -0.003991687670350075, 0.0650627464056015, 0.0022602577228099108, 0.03656983748078346, 0.011166734620928764, -0.03104758821427822, -0.0003150824340991676, -0.05229727551341057, -0.04065602645277977, 0.0003669634461402893, 0.04245186224579811, -0.016981596127152443, 0.032949138432741165, -0.02688019350171089, -0.03764413669705391, -0.018108876422047615, -0.05065232887864113, 0.0381089448928833, 0.034480512142181396, 0.04704901576042175, -0.040586214512586594, 0.04302845895290375, 0.007347423117607832, 0.010854075662791729, -0.012105212546885014, -0.02149403654038906, -0.03467155620455742, -0.016626067459583282, -0.008048070594668388, 0.022498520091176033, 0.026075564324855804, 0.013858906924724579, -0.017959266901016235, -0.00035781049518845975, 0.04481818899512291, 0.01373420748859644, -0.008441283367574215, 0.009983314201235771, -0.007408895529806614, -0.04891479015350342, -0.0058959913440048695, 0.011015525087714195, -0.029849614948034286, -0.03680076450109482, 0.007951218634843826, -0.0733226090669632, 0.00014705327339470387, -0.0951601043343544, -0.04170505702495575, -0.009313054382801056, 0.012191979214549065, 0.003317658556625247, 0.031231755390763283, -0.0028822198510169983, 0.07071065902709961, -0.024560172110795975, 0.015382101759314537, 0.03217039629817009, 0.026439493522047997, 0.04296701028943062, 0.015104242600500584, 0.002391949761658907, 0.022143814712762833, -0.026381731033325195, -0.004182261414825916, -0.05681264400482178, -0.010159490630030632, -0.025810284540057182, -0.2856837809085846, 0.02515358105301857, -0.03242288529872894, -0.03610305115580559, 0.02820315770804882, -0.027478719130158424, 0.03771185874938965, -0.041708867996931076, -0.05059054121375084, 0.02052508480846882, -0.009105129167437553, -0.02023889310657978, 0.017620651051402092, 0.05492393672466278, -0.0006551396800205112, 0.04788166657090187, 0.027972456067800522, -0.03422518074512482, 0.016936395317316055, 0.03255928307771683, -0.0025871964171528816, -0.04373034089803696, 0.0026995118241757154, 0.028400080278515816, 0.031294967979192734, 0.06826000660657883, -0.06412432342767715, 0.018104182556271553, -0.021702555939555168, -0.04343971610069275, 0.005245774053037167, -0.0074673006311059, -0.011630532331764698, -0.005620530806481838, -0.021705539897084236, -0.008306491188704967, 0.008883900940418243, 0.010440791957080364, 0.003949103876948357, -0.009952632710337639, -0.04834213852882385, -0.034934885799884796, 0.01932237111032009, 0.016213832423090935, 0.07063367962837219, -0.009518241509795189, -0.06726492196321487, 0.01071596797555685, -0.007320404052734375, 0.06705497950315475, -0.0509660467505455, -0.03816702589392662, -0.0095286276191473, 0.023749032989144325, -0.007156968116760254, 0.0009895643452182412, -0.020802181214094162, 0.0038525299169123173, -0.040285781025886536, -0.03799702972173691, -0.00493670254945755, -0.039827533066272736, -0.014284339733421803, -0.060260310769081116, 0.0002932801144197583, -0.04504316300153732, -0.03583751246333122, -0.017195051535964012, 0.06393618136644363, 0.02933625504374504, -0.04262666031718254, -0.013968474231660366, -0.025349577888846397, -0.1015876978635788, 0.004000332206487656, -0.03759527951478958, -0.04475845769047737, -0.0022638021036982536, -0.027276357635855675, 0.03550500422716141, -0.04737308993935585, -0.00848027691245079, 0.02261929027736187, 0.022148752585053444, -0.004605157766491175, -0.0428372360765934, 0.02653542533516884, 0.02298688516020775, -0.022915462031960487, -0.011012814939022064, 0.07808190584182739, -0.04814224690198898, -0.025546176359057426, 0.015511877834796906, -0.0035442551597952843, -0.00635673850774765, 0.03698018938302994, 0.005512308329343796, 0.029965907335281372, 0.011974944733083248, 0.021202445030212402, -0.050923481583595276, -0.009943933226168156, -0.06967777013778687, -0.01495735626667738, -0.005650954786688089, -0.06637554615736008, 0.026724662631750107, 0.001274398760870099, 0.02191927470266819, -0.016649002209305763, -0.02080133929848671, 0.03412448242306709, -0.053643614053726196, -0.07371598482131958, 0.015754127874970436, 0.03288779780268669, 0.03238010033965111, 0.03608350455760956, -0.03663874417543411, -0.05537429079413414, 0.01647884026169777, 0.03187127783894539, -0.012039502151310444, -0.05508064106106758, 0.0012991600669920444, 0.0009100808529183269, -0.01089363545179367, -0.03683073818683624, -0.011594992130994797, -0.05706772953271866, 0.006981925573199987, 0.05664416030049324, -0.011776132509112358, 0.05087969824671745, 0.0039500887505710125, -0.05968145281076431, -0.011399080976843834, -0.0165033508092165, 0.015170087106525898, -0.027501121163368225, 0.004470095969736576, -0.003946694079786539, 0.04538195952773094, 0.05023450404405594, -0.009258708916604519, 0.03315068408846855, 0.04279894009232521, 0.010880746878683567, 0.05283593013882637, 0.013019454665482044, -0.04783780500292778, 0.03323826193809509, -0.020959753543138504, -0.04589858278632164, 0.00078519934322685, 0.056907083839178085, -0.013242528773844242, 0.00935424119234085, -0.009912480600178242, 0.033356599509716034, -0.07430357486009598, 0.005308876279741526, 0.013801267370581627, -0.022549040615558624, 0.04364996403455734, 0.019876113161444664, 0.02148626744747162, -0.00821693241596222, 0.012241072952747345, 0.017031123861670494, 0.022328553721308708, -0.02022828906774521, 0.0023432504385709763, 0.0048627909272909164, -0.0028512883000075817, -0.0027065814938396215, 0.008653899654746056, 0.05483046919107437, 0.011965207755565643, -0.03468068316578865, -0.03233204782009125, 0.021616466343402863, 0.01828022301197052, 0.04119965061545372, -0.0024568643420934677, -0.021465443074703217, -0.013364113867282867, 0.0034068624954670668, -0.019262395799160004, -0.030839011073112488, 0.006682057399302721, -0.017663707956671715, 0.04305628687143326, -0.009945575147867203, -0.06693052500486374, 0.044497013092041016, 0.052160706371068954, -0.02483268454670906, 0.0322980135679245, -0.010091560892760754, -0.03407277166843414, -0.027024604380130768, 0.05521358177065849, 0.0342266783118248, -0.05604728311300278, -0.002381999744102359, -0.021724719554185867, 0.0013868720270693302, 0.007893824018537998, 0.01832989603281021, -0.0417124442756176, -0.02162696234881878, -0.010954882018268108, 0.02287210151553154, -0.01920398138463497, -0.010830906219780445, -0.0036249214317649603, 0.0020757904276251793, -0.01990235410630703, -0.007049010135233402, -0.003682640613988042, 0.006855364423245192, -0.006238874979317188, -0.021008353680372238, 0.02565125562250614, -0.030958741903305054, 0.01168697327375412, 0.022732460871338844, -0.004390433896332979, 0.011831844225525856, -0.05191123113036156, 0.016582081094384193, 0.020550476387143135, 0.024959584698081017, -0.018557192757725716, -0.025158416479825974, 0.002589796669781208, -0.013091069646179676, 0.030663447454571724, -0.009249337948858738, -0.019651690497994423, 0.00768582196906209, 0.0025858080480247736, -0.025323420763015747, 0.039505716413259506, -0.01460473146289587, -0.03673248365521431, 0.014257077127695084, 0.04311505705118179, 0.046638619154691696, 0.04095793142914772, -0.024964241310954094, -0.03696252405643463, 0.04749525710940361, -0.08353708684444427, -0.004833459388464689, 0.003650062717497349, -0.06368506699800491, 0.039251163601875305, 0.015016645193099976, 0.0075547886081039906, -0.05333994701504707, 0.029646731913089752, 0.03460635617375374, -0.0025723071303218603, 0.06041363254189491, 0.016335589811205864, 0.036698874086141586, -0.021026471629738808, -0.009963196702301502, -0.07814910262823105, 0.008283850736916065, 0.025546224787831306, -0.009589127264916897, -0.039529718458652496, 0.018534518778324127, -0.02884034253656864, 0.03553451597690582, -0.07504836469888687, -0.033456023782491684, 0.04109935835003853, 0.015320178121328354, -0.017903286963701248, 0.030771099030971527, -0.04070734232664108, -0.00640008132904768, 0.04338555783033371, -0.01510121114552021, -0.03127023205161095, -0.01566133461892605, 0.04556271806359291, -0.006117645185440779, 0.010488430969417095, -0.0500963032245636, -0.0049662357196211815, 0.07332254201173782, 0.010834239423274994, -0.0038011339493095875, 0.023980267345905304, -0.013760633766651154, 0.024393068626523018, 0.00960437674075365, -0.002178159076720476, 0.005567966960370541, 0.008336158469319344, -0.026266807690262794, -0.04919838532805443, 0.03379682078957558, 0.003387174801900983, 0.01949429325759411, -0.05530561879277229, 0.042356278747320175, -0.01540996041148901, -0.03211326152086258, -0.07888360321521759, 0.012576191686093807, -0.05898657068610191, -0.023811277002096176, -0.04838372394442558, 0.012712969444692135, -0.05365189537405968, 0.049411214888095856, -0.001806373824365437, 0.014372843317687511, 0.06434669345617294, 0.004140263888984919, -0.03197892755270004, 0.0028389650397002697, 0.07483135163784027, 0.07474654912948608, 0.01792789250612259, 0.015658779069781303, 0.024464843794703484, -0.035533301532268524, -0.05499442294239998, -0.031588200479745865, -0.0371517576277256, 0.007215077057480812, -0.011005436070263386, 0.011976867914199829, 0.07573018968105316, -0.01671692356467247, 0.05014278367161751, -0.029710296541452408, -0.0016671286430209875, 0.004211772233247757, -0.016163935884833336, 0.012767140753567219, 0.05326937884092331, -0.0015470198122784495, 0.013561238534748554, -0.003693754319101572, -0.022175036370754242, 0.014105039648711681, -0.018330808728933334, -0.0257334616035223, 0.015992041677236557, 0.00738238450139761, 0.03055703267455101, 0.024795586243271828, 0.029349524527788162, 0.07919350266456604, -0.020912956446409225, 0.002891342854127288, 0.007617894094437361, 0.04131688177585602, -0.01977277547121048, 0.034412745386362076, -0.02633540704846382, -0.035624999552965164, 0.0018898285925388336, -0.041727982461452484, -0.02299170196056366, -0.008800141513347626, -0.03716700151562691, 0.007830549962818623, -0.015686096623539925, 0.021591661497950554, 0.04088559001684189, -0.0043099080212414265, -0.07526730746030807, -0.05889859423041344, -0.08105435222387314, -0.02062712237238884, -0.05585862323641777, -0.002154720015823841, -0.022606482729315758, -0.012645858339965343, -0.03818089887499809, -0.021606573835015297, -0.038569774478673935, -0.02744050696492195, 0.016057053580880165, -0.03704007714986801, -0.06153564527630806, 0.030251042917370796, 0.01542584877461195, 0.0015298742800951004, 0.014572987332940102, 0.08491988480091095, -0.01902005262672901, 0.0196975190192461, -0.0260437224060297, 0.012769315391778946, 0.03158864751458168, -0.039038095623254776, 0.028413478285074234, -0.08537102490663528, 0.006533273495733738, 0.011292400769889355, 0.0034647404681891203, -0.046941645443439484, 0.024214208126068115, 0.04026179015636444, 0.001744493143633008, 0.047749266028404236, -0.01586514338850975, 0.03624211251735687, -0.03175586834549904, -0.028195330873131752, -0.019374659284949303, 0.006019710563123226, 0.03700972720980644, -0.024894870817661285, 0.08004584908485413, 0.03747493028640747, -0.020929211750626564, -0.04118482396006584, 0.00547769945114851, 0.02115236595273018, -0.0037958279717713594, -0.020322391763329506, -0.03531434014439583, -0.04499353468418121, -0.08695618808269501, -0.00805999431759119, 0.01244306843727827, -0.022205810993909836, -0.016365544870495796, -0.03163526579737663, 0.02603059820830822, -0.04641927778720856, 0.025298312306404114, -0.05773715302348137, 0.015174348838627338, -0.056145597249269485, -0.03822938725352287, 0.0025308970361948013, 0.039675068110227585, 0.018245689570903778, -0.013694602996110916, 0.027839452028274536, -0.030016666278243065, 0.016859067603945732, -0.015419871546328068, 0.017305132001638412, 0.0184682235121727, 0.004153166897594929, 0.026949206367135048 ]
[ -0.08440811187028885, -0.025079460814595222, -0.010734137147665024, -0.06237487867474556, 0.03699525073170662, -0.077766552567482, -0.04657542705535889, 0.025376182049512863, -0.011581719852983952, -0.02317669801414013, 0.017177140340209007, -0.03852567449212074, -0.028920428827404976, -0.034802939742803574, 0.035807233303785324, 0.03682824596762657, -0.02924209088087082, -0.08104529976844788, 0.01966080069541931, 0.0267060324549675, -0.02941322699189186, -0.0266838651150465, -0.0441543273627758, -0.02803017571568489, -0.020994003862142563, 0.0691591203212738, 0.04100249707698822, -0.040669847279787064, -0.005306142847985029, -0.21349994838237762, -0.0011399829527363181, 0.013686837628483772, -0.025026490911841393, -0.015120814554393291, 0.038227230310440063, 0.030622417107224464, -0.000336478347890079, 0.0032961394172161818, 0.009267236106097698, 0.06162258982658386, 0.03338749334216118, 0.01262113731354475, -0.06354495137929916, -0.005896061193197966, 0.029398996382951736, -0.002648698864504695, 0.0034223818220198154, -0.004444553516805172, 0.03108958713710308, 0.041018299758434296, -0.03754867613315582, 0.04967546463012695, -0.00341554032638669, -0.008054526522755623, -0.010820470750331879, 0.009693395346403122, 0.09746427834033966, 0.07445070892572403, -0.01736452616751194, 0.03601525351405144, 0.021044181659817696, -0.011487355455756187, -0.1715572029352188, 0.10778238624334335, 0.017611557617783546, 0.02688031643629074, -0.035996317863464355, 0.004101479891687632, -0.05660487711429596, 0.04555409401655197, -0.05298503860831261, -0.036231301724910736, -0.0555042140185833, 0.08272212743759155, 0.04087214916944504, -0.0014488399028778076, 0.011837412603199482, -0.00404016301035881, 0.005120530258864164, -0.033186282962560654, -0.030142685398459435, -0.027106910943984985, -0.03566603362560272, -0.0022007706575095654, -0.033086732029914856, 0.025004524737596512, 0.004008216317743063, 0.08306550234556198, 0.017560407519340515, -0.008636628277599812, 0.030029019340872765, -0.003989092539995909, 0.05717785283923149, 0.020116159692406654, -0.0881805345416069, 0.002384232822805643, -0.0003853660309687257, 0.03618288040161133, -0.022951265797019005, 0.4125089943408966, 0.01530988235026598, -0.0054915002547204494, 0.04108346253633499, 0.018210049718618393, 0.0019204982090741396, -0.003204426961019635, -0.033990442752838135, -0.040150634944438934, -0.0004148531297687441, -0.014142394065856934, -0.01853853464126587, -0.005413215607404709, 0.04503383859992027, -0.05842319130897522, 0.0053082541562616825, 0.028715740889310837, 0.01351119764149189, 0.002155671361833811, -0.0710538923740387, 0.003317397553473711, -0.059459734708070755, 0.014099374413490295, 0.02431795932352543, 0.04159287363290787, 0.02677219919860363, -0.03778567910194397, 0.006490493193268776, 0.04055466502904892, 0.013405521400272846, -0.0019316297257319093, 0.02767062373459339, -0.053660012781620026, -0.06786418706178665, -0.004168739542365074, 0.0009057997376658022, -0.005796289071440697, 0.019448015838861465, -0.012127377092838287, -0.03788840398192406, 0.027473585680127144, -0.022596580907702446, -0.05088075250387192, 0.00551050016656518, 0.0007922402583062649, -0.006713208742439747, 0.11925195157527924, 0.029000114649534225, -0.038288604468107224, -0.037095390260219574, -0.06752202659845352, 0.018208887428045273, 0.02170376293361187, 0.008089280687272549, -0.04324439913034439, 0.012660577893257141, 0.022240856662392616, 0.08184141665697098, 0.04628830403089523, -0.12616433203220367, -0.019284212961792946, 0.05317811295390129, -0.07315003126859665, -0.05582478269934654, 0.06681644916534424, 0.028328584507107735, -0.11395350843667984, -0.022191666066646576, -0.0022617694921791553, 0.015259925276041031, -0.019912565127015114, 0.021098356693983078, -0.025510206818580627, -0.042927682399749756, -0.001576376031152904, 0.04041473567485809, -0.05074707046151161, 0.0012809394393116236, 0.0009252334129996598, 0.029273085296154022, 0.016669129952788353, 0.01274710800498724, 0.016046741977334023, -0.027364525943994522, -0.02233005315065384, -0.037003133445978165, -0.09632726013660431, -0.06487030535936356, 0.018710879608988762, -0.03332003578543663, -0.050596680492162704, -0.0008962543215602636, -0.0020263297483325005, -0.08077704906463623, 0.07738786935806274, -0.009682806208729744, -0.016995031386613846, -0.0020058269146829844, -0.009563698433339596, 0.01448084320873022, -0.041290830820798874, 0.05357671529054642, 0.02914702706038952, -0.02314237505197525, 0.061075225472450256, -0.06343891471624374, 0.03467622026801109, 0.03395431116223335, -0.019143996760249138, 0.03282474726438522, 0.04370630159974098, -0.010501665063202381, 0.009113596752285957, 0.005656279157847166, 0.04376222565770149, 0.014347592368721962, 0.0158707182854414, -0.006868285592645407, 0.03473616763949394, 0.024194424971938133, 0.004159776493906975, -0.038761891424655914, -0.010037295520305634, -0.0010196977527812123, -0.34030282497406006, -0.010983196087181568, -0.03787122666835785, -0.005416553933173418, -0.020842747762799263, -0.04603481665253639, 0.02870919182896614, 0.006625327747315168, 0.013006886467337608, 0.03544827178120613, 0.09653331339359283, -0.033824995160102844, 0.036551930010318756, -0.020765963941812515, -0.034095872193574905, 0.018376225605607033, -0.05460210144519806, 0.026516782119870186, -0.000024918304916354828, -0.012479777447879314, -0.036317046731710434, -0.014123867265880108, -0.04101147875189781, -0.04279210790991783, -0.011165902949869633, -0.02344774641096592, 0.10802783071994781, 0.0004281318688299507, 0.06749916076660156, -0.05972946062684059, 0.057133082300424576, 0.04344633221626282, 0.03211481496691704, -0.12427345663309097, 0.004716404713690281, -0.024687528610229492, -0.0005412272876128554, 0.023192472755908966, 0.020727086812257767, -0.005398961715400219, -0.06209217756986618, 0.01575315184891224, -0.048074737191200256, -0.024036193266510963, 0.0017888484289869666, -0.02064139023423195, 0.001189548522233963, 0.0006618404877372086, -0.024975508451461792, 0.1090627983212471, 0.004026041831821203, 0.037912797182798386, 0.03642002120614052, 0.03782114014029503, 0.029860498383641243, 0.000842092267703265, -0.08361440151929855, -0.011912725865840912, 0.025022491812705994, -0.007658727467060089, 0.029009319841861725, 0.02632269449532032, 0.026726430281996727, -0.030964303761720657, 0.008297007530927658, -0.010639803484082222, 0.01197365764528513, 0.024517040699720383, 0.09567613154649734, -0.0366097092628479, -0.04826633632183075, 0.10608337819576263, -0.032174475491046906, 0.004951599985361099, 0.021960465237498283, 0.045938268303871155, 0.002412081230431795, 0.011285441927611828, 0.011768685653805733, -0.006401491351425648, 0.0308175440877676, -0.023142732679843903, 0.059163957834243774, -0.035924769937992096, -0.014448767527937889, 0.07102891057729721, -0.019162898883223534, -0.006588299758732319, 0.048922497779130936, -0.010051694698631763, -0.012715870514512062, -0.01439845934510231, -0.016207315027713776, -0.04472016543149948, 0.06690174341201782, 0.01794530265033245, -0.23445174098014832, 0.02628483437001705, 0.07260926067829132, 0.05955010652542114, -0.0160811934620142, -0.00019192606850992888, 0.022637777030467987, -0.01842547208070755, -0.020150767639279366, -0.0009463376482017338, 0.029535913839936256, -0.012729004956781864, -0.019465049728751183, -0.015749109908938408, 0.029511749744415283, -0.012942098081111908, 0.032903511077165604, 0.005627204664051533, 0.04349984973669052, 0.02603711560368538, -0.026035191491246223, -0.020254846662282944, 0.14164693653583527, 0.04392249882221222, -0.01353617012500763, -0.0035868457052856684, 0.017100565135478973, 0.021012170240283012, 0.06602384150028229, 0.027899960055947304, 0.005663375835865736, -0.0015864778542891145, 0.01754866912961006, -0.003922473639249802, 0.021577272564172745, -0.04188400134444237, -0.009137209504842758, 0.030206765979528427, 0.01879933476448059, -0.014406795613467693, 0.0012060754233971238, 0.015182072296738625, -0.02097322978079319, 0.06445629894733429, 0.03979635611176491, 0.016959108412265778, -0.009645535610616207, -0.027574870735406876, -0.05186711251735687, 0.0004356290155556053, -0.020646080374717712, -0.04920808598399162, 0.03525378182530403, -0.01875457540154457, 0.003644058480858803, 0.044088464230298996, 0.02099570259451866, -0.03880717605352402, 0.004915454890578985, 0.02939121425151825, 0.01081943977624178, -0.04731542244553566, 0.09726281464099884, 0.02408304624259472, 0.025295253843069077 ]
[ -0.010701946914196014, -0.008594343438744545, -0.06305187940597534, -0.013785889372229576, 0.02982291951775551, -0.013225913979113102, 0.036653485149145126, 0.034221772104501724, -0.036376919597387314, 0.012193718925118446, 0.029842976480722427, -0.0007543379906564951, 0.018455401062965393, -0.009553168900310993, 0.0018161273328587413, 0.01473758090287447, 0.009410724975168705, 0.0016603493131697178, 0.04382887855172157, 0.025197232142090797, -0.01301263365894556, 0.006674273405224085, 0.043144095689058304, -0.031030023470520973, 0.02208111248910427, -0.02153671160340309, -0.026323707774281502, 0.02267041802406311, 0.016690582036972046, -0.12126930803060532, -0.051416583359241486, 0.0002958195109385997, -0.05958741903305054, 0.024671221151947975, 0.0026281545870006084, -0.002289809985086322, 0.03703458234667778, 0.014445538632571697, -0.005945718381553888, -0.002745622070506215, 0.010969888418912888, -0.028288520872592926, -0.026985712349414825, -0.00275636138394475, -0.018541935831308365, -0.03506441041827202, -0.01803060807287693, -0.0018908592173829675, -0.004962647333741188, 0.007991934195160866, -0.018585601821541786, 0.0464712455868721, -0.02980409748852253, -0.003540406469255686, 0.049277547746896744, -0.018091831356287003, -0.0072621069848537445, -0.002371234819293022, 0.006987880915403366, 0.022724652662873268, 0.0013727268669754267, 0.011366410180926323, -0.012559214606881142, -0.0015823619905859232, -0.04505053162574768, 0.012363092973828316, -0.05505399405956268, -0.014917311258614063, -0.03936498239636421, -0.0010927130933851004, -0.04807674139738083, -0.008506298065185547, -0.08331353217363358, -0.03697318211197853, -0.043620288372039795, 0.0035198356490582228, 0.03813406080007553, -0.0005451244651339948, -0.0030711370054632425, 0.0034729354083538055, -0.03188839554786682, 0.02726585604250431, -0.025805871933698654, -0.022331971675157547, -0.01804797723889351, -0.02491389773786068, 0.028288425877690315, -0.02442087233066559, 0.008869250304996967, 0.0043710065074265, 0.015678608790040016, 0.005222566891461611, -0.006399557925760746, 0.025418700650334358, -0.09672892093658447, -0.01773792691528797, 0.016278373077511787, -0.01220969669520855, -0.011297157034277916, 0.8257923722267151, -0.011647838167846203, 0.06261934340000153, 0.039908986538648605, 0.008715719915926456, -0.05162394046783447, -0.012640959583222866, 0.017806118354201317, -0.00789574347436428, 0.0074352542869746685, -0.05714503303170204, 0.017681986093521118, -0.006753115449100733, 0.002670677611604333, -0.043162330985069275, -0.009965629316866398, 0.04202812537550926, -0.0345909520983696, -0.03136853501200676, -0.009996452368795872, 0.015214500017464161, -0.010005848482251167, -0.014347869902849197, 0.00003699665467138402, 0.06416609138250351, 0.019032537937164307, -0.1411322057247162, 0.021335909143090248, -6.636683882373213e-33, -0.0008063404820859432, -0.040009818971157074, -0.013803231529891491, 0.010675206780433655, 0.053856249898672104, 0.03324231132864952, 0.009386633522808552, 0.022086631506681442, -0.014112350530922413, -0.014531577937304974, 0.005493061617016792, -0.011412642896175385, -0.00036919789272360504, -0.01121517177671194, 0.027522951364517212, 0.02955356426537037, -0.009368588216602802, 0.06614810228347778, 0.0154294827952981, 0.01949319802224636, 0.028587516397237778, 0.0003309063904453069, 0.028644120320677757, -0.0003936193825211376, 0.04270521551370621, 0.01682102307677269, -0.030645642429590225, 0.027244389057159424, 0.024530142545700073, -0.043877050280570984, 0.02138880267739296, -0.016867011785507202, -0.04772593080997467, -0.04536421224474907, 0.015469553880393505, -0.044938262552022934, 0.011951505206525326, 0.021962705999612808, -0.003494070842862129, -0.037068985402584076, -0.06659361720085144, 0.029424132779240608, -0.030286822468042374, 0.019674615934491158, 0.015588078647851944, -0.006237760651856661, 0.039706964045763016, 0.013493617996573448, -0.0033825640566647053, -0.03572661429643631, -0.02128523960709572, 0.0008379550417885184, 0.00027692283038049936, 0.06020207330584526, 0.035872459411621094, 0.012129637412726879, -0.02334076724946499, 0.00797789916396141, 0.00879107415676117, -0.004102305043488741, 0.023286396637558937, -0.0031575988978147507, -0.01883270964026451, 0.01464727520942688, 0.01217819843441248, -0.0033466091845184565, 0.009827732108533382, 0.012222367338836193, 0.050737813115119934, -0.013962531462311745, -0.011274851858615875, -0.013502869755029678, -0.007473586592823267, -0.03524955362081528, 0.04230816662311554, -0.016862843185663223, -0.01099345088005066, -0.001852470450103283, 0.022204585373401642, 0.04151125252246857, 0.018571754917502403, 0.003961704671382904, -0.08400269597768784, -0.021748390048742294, -0.03889639303088188, 0.00035485191619955003, -0.014526407234370708, -0.021096156910061836, -0.01776944100856781, -0.01595466397702694, 0.05786456540226936, 0.010251465253531933, 0.011205919086933136, -0.05672312155365944, -0.02504550851881504, 6.679891381289594e-33, -0.007104360498487949, -0.03251926228404045, -0.017520666122436523, -0.034128811210393906, 0.017155440524220467, -0.009161078371107578, 0.021052565425634384, 0.013373015448451042, -0.049906421452760696, 0.027923382818698883, -0.030772127211093903, 0.01107731368392706, -0.018592314794659615, 0.0027872861828655005, 0.04843856021761894, 0.012981069274246693, 0.0044895363971591, 0.0449129119515419, -0.0022096317261457443, 0.025931982323527336, 0.05337531492114067, 0.023233070969581604, 0.029554571956396103, 0.03512130677700043, 0.0497475229203701, 0.04850985109806061, 0.00152947090100497, 0.0060583967715501785, -0.019291749224066734, 0.002800770802423358, 0.004197413567453623, 0.020143533125519753, -0.029149141162633896, 0.013231956399977207, -0.05291491746902466, 0.009305818006396294, 0.006478562019765377, 0.007901353761553764, 0.014992967247962952, -0.00020009020227007568, 0.03477748855948448, 0.016733990982174873, -0.017925482243299484, 0.005591264460235834, -0.02649727091193199, 0.039625007659196854, -0.008553159423172474, -0.004544683266431093, -0.03883684426546097, -0.0020848610438406467, 0.011572124436497688, -0.0006084810593165457, -0.004777134396135807, -0.019066302105784416, 0.006288361735641956, 0.0020034138578921556, -0.039259057492017746, 0.041822295635938644, -0.020823640748858452, -0.027420302852988243, -0.0038089549634605646, 0.047679413110017776, 0.005039169918745756, 0.003022929187864065, -0.04082087054848671, 0.027373820543289185, 0.017409883439540863, 0.030738554894924164, -0.014581754803657532, 0.0078004891984164715, -0.03467753902077675, -0.03232548013329506, -0.00869075208902359, 0.0485478974878788, 0.0368085652589798, 0.014094643294811249, -0.019820164889097214, -0.005371193401515484, 0.0058232201263308525, 0.010891806334257126, 0.01906105875968933, 0.001453771605156362, 0.003934913314878941, 0.015808720141649246, -0.00023681885795667768, -0.003841560101136565, -0.03776717558503151, 0.0373314768075943, 0.025521012023091316, 0.01333842147141695, -0.015182082541286945, -0.03291060030460358, -0.030744239687919617, 0.007662354037165642, -0.0006228931597433984, -1.2421914163951442e-8, -0.018947601318359375, -0.024327611550688744, 0.0015920203877612948, -0.0025737336836755276, 0.03240888565778732, -0.01365029625594616, -0.020569395273923874, 0.009907124564051628, -0.01843329891562462, 0.002049904316663742, 0.022826451808214188, 0.016214078292250633, 0.0012065459741279483, 0.02660457044839859, 0.01856825314462185, -0.04340154305100441, 0.06931110471487045, -0.01160108670592308, 0.014366015791893005, -0.03542153909802437, -0.005573180038481951, 0.05722049996256828, 0.002991552697494626, -0.005988851189613342, 0.016629815101623535, 0.018556881695985794, 0.003975525498390198, -0.07696889340877533, 0.03368166834115982, -0.005278067197650671, 0.019172469154000282, -0.026500513777136803, -0.06599584966897964, 0.004335968289524317, -0.009199024178087711, -0.017087554559111595, 0.004944020416587591, 0.011186704970896244, -0.015595301985740662, -0.014535071328282356, -0.03342730924487114, -0.01738850213587284, -0.00987308006733656, -0.020084701478481293, -0.03543565049767494, 0.00609666109085083, -0.030817300081253052, 0.009134928695857525, 0.012955506332218647, -0.006618060637265444, 0.03929268941283226, -0.04255989193916321, 0.007652451284229755, 0.050134655088186264, -0.02315744385123253, -0.015804557129740715, -0.038081686943769455, 0.03555407375097275, -0.004052258096635342, 0.03076010011136532, -0.0007003045175224543, 0.05012927204370499, -0.01327216811478138, -0.014735762029886246 ]
oracle-exp-exp-00008-oracle-error-904-encounteredora-00904-poltyp-invalid-identifier
https://markhneedham.com/blog/2012/01/13/oracle-exp-exp-00008-oracle-error-904-encounteredora-00904-poltyp-invalid-identifier
false
2012-01-14 23:20:44
Wireshark: Following HTTP requests/responses
[ "wireshark" ]
[ "Software Development" ]
I like using http://www.wireshark.org/[Wireshark] to have a look at the traffic going across different interfaces but because it shows what's happening across the wire by the packet it's quite difficult to tell what a request/response looked like. I've been playing around with https://github.com/caelum/restfulie-java[restfulie]/http://vraptor.caelum.com.br/[Vraptor] today so I wanted to be able to see the request/response pair when something wasn't working. I didn't know it was actually possible but http://stackoverflow.com/questions/2163636/mapping-http-requests-to-http-responses[this post on StackOverflow describes how]. First we need to select the row which contains any part of our request/response - in this case I just selected the row representing the request - and then we go to the Analyze menu and click 'Follow TCP Stream': image::{{<siteurl>}}/uploads/2012/01/follow_tcp_stream.jpg[Follow tcp stream,447] We can then see the requests/responses which happened all next to each other: image::{{<siteurl>}}/uploads/2012/01/show_stream.jpg[Show stream,500] The keyboard shortcut to get to that menu is 'Alt-A F' but for some reason the 'Alt' key wasn't working for me by default so I had to follow the http://francisnorth.blogspot.com/2009/07/how-to-get-alt-key-to-function-properly.html[instructions on Francis North's blog] to get it working.
null
null
[ 0.0223393477499485, -0.041989147663116455, 0.011417687870562077, 0.02730054222047329, 0.06541214883327484, -0.0026313860435038805, 0.008066757582128048, 0.04506845772266388, -0.00025117999757640064, -0.022446125745773315, -0.009861264377832413, 0.0023261394817382097, -0.07987996190786362, 0.013683472760021687, 0.004952421877533197, 0.06898906081914902, 0.061009734869003296, -0.030906498432159424, 0.045094989240169525, -0.03479943796992302, 0.008933293633162975, 0.05241446569561958, -0.002708379877731204, -0.0008088971953839064, 0.009922752156853676, -0.0015282777603715658, 0.006900785490870476, 0.018384544178843498, -0.053050447255373, -0.002619003178551793, 0.07742579281330109, -0.003921773750334978, 0.0037891713436692953, -0.034170299768447876, 0.01857958920300007, -0.024658625945448875, 0.014731256291270256, 0.015671508386731148, -0.009819378145039082, 0.044727373868227005, -0.07719457894563675, 0.028896663337945938, -0.05187799036502838, 0.009598473086953163, -0.022621773183345795, 0.003809879068285227, -0.004513309337198734, 0.02080175280570984, 0.0066621494479477406, 0.040867775678634644, -0.05043528228998184, 0.037647947669029236, -0.011373715475201607, 0.006352220196276903, 0.026302509009838104, 0.031687214970588684, 0.012110029347240925, -0.07110339403152466, 0.031148044392466545, -0.045868292450904846, -0.01262766495347023, 0.006621622014790773, 0.027927221730351448, 0.014092382974922657, -0.02486194111406803, -0.02936624549329281, -0.002766478108242154, 0.05739117041230202, -0.004013144411146641, -0.004293705802410841, 0.02581782639026642, 0.022293696179986, -0.002495676511898637, 0.007571238558739424, 0.03324354067444801, -0.033406905829906464, -0.032279230654239655, 0.04518583416938782, -0.005829351954162121, 0.03572220727801323, -0.02335839532315731, 0.002262270310893655, 0.03848625719547272, 0.024017827585339546, 0.02530232071876526, -0.04769601672887802, -0.0022003627382218838, 0.016144990921020508, -0.04052745923399925, 0.05777518078684807, 0.0036166601348668337, -0.05142989754676819, -0.012291653081774712, 0.008444429375231266, -0.003007778199389577, -0.014497783966362476, 0.001779769198037684, -0.004975032526999712, -0.0029521489050239325, -0.02241329476237297, -0.05179491639137268, 0.014124948531389236, 0.0202947985380888, 0.02706482820212841, -0.06572553515434265, -0.00973186269402504, -0.008490541949868202, -0.05041082948446274, 0.005808969493955374, 0.027441445738077164, -0.019124161452054977, 0.011790785007178783, -0.018546458333730698, 0.005219394341111183, -0.06494337320327759, 0.07813951373100281, 0.019757384434342384, -0.03164057806134224, 0.003816172480583191, 0.045375388115644455, 0.032476626336574554, 0.028359537944197655, -0.030634036287665367, 0.07257666438817978, 0.05274162441492081, -0.006078029982745647, 0.0022032982669770718, 0.039331525564193726, -0.022326208651065826, -0.060982830822467804, 0.0315648689866066, 0.08617210388183594, -0.010940292850136757, 0.011683584190905094, 0.001324811251834035, -0.00037333028740249574, 0.014284837990999222, -0.02113667130470276, 0.05567833408713341, 0.031181180849671364, -0.016398487612605095, -0.04763801395893097, -0.0011040798854082823, 0.0063682859763503075, 0.04462478309869766, -0.0011704298667609692, -0.00490198191255331, -0.03331441059708595, -0.03202280402183533, 0.03358203172683716, -0.01104486919939518, 0.02820948138833046, 0.07679318636655807, -0.043522804975509644, -0.0006380232516676188, 0.05213066563010216, 0.030539151281118393, 0.02716957964003086, -0.022008024156093597, -0.012362843379378319, 0.027807151898741722, 0.024070871993899345, 0.004885836970061064, 0.031902607530355453, 0.01231947261840105, -0.0040111481212079525, -0.017513565719127655, 0.014870533719658852, -0.023298684507608414, 0.004005392547696829, -0.07363640516996384, -0.01930801011621952, 0.06752534210681915, -0.010852543637156487, -0.003184926463291049, 0.03382733464241028, 0.09104033559560776, 0.017824528738856316, 0.03586268424987793, 0.0012248109560459852, -0.06568142026662827, 0.06287173926830292, 0.005333989858627319, 0.02822168730199337, 0.012595108710229397, 0.0009912700625136495, 0.08057384938001633, 0.03405317664146423, -0.032628677785396576, 0.000028495460355770774, -0.06055140122771263, -0.07109705358743668, -0.06732969731092453, -0.0007993123726919293, 0.04844503477215767, -0.06118430197238922, -0.001330273225903511, 0.053754087537527084, 0.03320637717843056, 0.026171790435910225, 0.011098995804786682, -0.017972411587834358, 0.03306378051638603, -0.052608173340559006, -0.07486481964588165, 0.013907955959439278, 0.034071534872055054, -0.03216695040464401, -0.01852208375930786, -0.0007154821651056409, -0.0395541787147522, 0.011705751530826092, -0.010331913828849792, -0.014335546642541885, 0.03499551862478256, 0.013420949690043926, 0.05200323835015297, -0.014378123916685581, 0.04593655467033386, -0.03907276317477226, 0.04741198942065239, 0.0022910316474735737, -0.0045096841640770435, 0.024088887497782707, -0.00045457432861439884, 0.13625679910182953, 0.06427053362131119, 0.014293675310909748, -0.06462576240301132, 0.027134468778967857, -0.009334174916148186, -0.038035787642002106, -0.03216840699315071, -0.017356036230921745, -0.027131374925374985, 0.023115208372473717, -0.02751125395298004, -0.02894189953804016, 0.007643487304449081, -0.05367698147892952, 0.010008021257817745, 0.08273855596780777, -0.0005322821089066565, 0.033274635672569275, -0.013609617948532104, -0.03132886067032814, 0.031350478529930115, -0.03338204696774483, -0.02950228378176689, 0.03078664094209671, 0.012300233356654644, 0.0018845240119844675, 0.05927778407931328, -0.07603956013917923, -0.0026143910363316536, 0.005850743502378464, -0.032838836312294006, 0.007828276604413986, 0.043769579380750656, 0.04961834102869034, 0.01811947673559189, 0.05890776216983795, -0.026860620826482773, -0.0037040349561721087, -0.0027121060993522406, -0.03216372802853584, -0.05699928104877472, -0.04506896808743477, 0.012811543419957161, 0.03493427112698555, 0.008322000503540039, -0.008046936243772507, 0.0028450856916606426, -0.008926051668822765, -0.01651717722415924, -0.02990284189581871, 0.03555428981781006, 0.017211072146892548, 0.03389577567577362, -0.021443720906972885, -0.029051169753074646, 0.04979901760816574, -0.026928313076496124, -0.011536065489053726, 0.02144169993698597, -0.058265917003154755, 0.03674037754535675, -0.04614473879337311, -0.026499256491661072, -0.000756687019020319, -0.009379069320857525, 0.027044547721743584, 0.005758320447057486, 0.020997179672122, 0.04247935116291046, -0.00007280680438270792, 0.011998591013252735, -0.001191678806208074, 0.0038906382396817207, 0.024483684450387955, 0.0024203660432249308, 0.0089712580665946, 0.04313967376947403, 0.0036834077909588814, 0.000933217816054821, -0.07440627366304398, 0.035248782485723495, -0.043184541165828705, -0.2876878082752228, 0.026509784162044525, 0.03599051386117935, -0.027128590270876884, 0.0097941430285573, -0.014971427619457245, -0.00804851297289133, -0.04069780185818672, -0.0012448959751054645, 0.023069195449352264, -0.02430184744298458, -0.02949630841612816, -0.025708384811878204, 0.03202619031071663, 0.029795413836836815, 0.007895410992205143, -0.021322255954146385, -0.054609913378953934, 0.016946367919445038, 0.007207413204014301, -0.006688746623694897, -0.03022848814725876, 0.02776375412940979, 0.045480482280254364, 0.041320499032735825, 0.04528805613517761, -0.0879092812538147, 0.044107772409915924, -0.024453794583678246, -0.01516809593886137, 0.01869729906320572, -0.01785801164805889, 0.0008877494256012142, -0.015712739899754524, -0.016919521614909172, -0.0026713903062045574, 0.05031747743487358, 0.0010117361089214683, -0.006803475320339203, 0.008197798393666744, -0.052452363073825836, -0.027359724044799805, -0.029982490465044975, -0.019439298659563065, 0.0679963156580925, -0.016594404354691505, -0.04599133878946304, 0.012789533473551273, 0.004773846827447414, 0.07091641426086426, -0.05150652304291725, -0.036065537482500076, -0.013580841943621635, 0.06355968862771988, -0.04598456621170044, -0.018024975433945656, -0.00931357592344284, -0.031032197177410126, -0.026833269745111465, -0.052412062883377075, 0.009866571053862572, -0.043784502893686295, -0.042489711195230484, -0.05465241149067879, 0.007547908462584019, -0.03718733415007591, -0.04360758513212204, 0.0056259105913341045, 0.06518742442131042, 0.0069796247407794, -0.02608110010623932, -0.00658154021948576, -0.037667661905288696, -0.10644137114286423, 0.03370149806141853, -0.0434882789850235, -0.038048285990953445, 0.02382527105510235, 0.005332901608198881, 0.030483489856123924, -0.05057363584637642, -0.022554459050297737, 0.013599546626210213, 0.011260323226451874, 0.012704220600426197, -0.039090368896722794, 0.027139943093061447, -0.028231507167220116, -0.018605859950184822, 0.0030967574566602707, 0.07410566508769989, -0.06320658326148987, -0.05274496227502823, -0.03350387513637543, -0.01872413605451584, 0.01889107935130596, 0.019162820652127266, 0.022877752780914307, 0.04195302724838257, 0.04127710685133934, 0.04301276430487633, -0.055404722690582275, 0.02490728721022606, -0.043093856424093246, -0.004500799346715212, 0.005710587836802006, -0.023869672790169716, 0.014412482269108295, 0.02549656853079796, 0.016499854624271393, -0.025764089077711105, -0.05588167905807495, 0.008422762155532837, -0.040187910199165344, -0.01746068149805069, 0.005394650157541037, 0.0103151835501194, -0.001966099487617612, 0.017359182238578796, -0.0476519800722599, -0.02542339451611042, 0.010216315276920795, 0.037738457322120667, 0.0010848123347386718, -0.04052068293094635, -0.01241333968937397, -0.03208104148507118, -0.01058698259294033, 0.02069253660738468, 0.03246521204710007, 0.011627859435975552, 0.008902391418814659, 0.006592223420739174, -0.03689975291490555, 0.014827355742454529, -0.04010273143649101, -0.003807738423347473, -0.02354874648153782, 0.021719295531511307, 0.0022119462955743074, -0.03316385671496391, 0.009393666870892048, 0.017861733213067055, 0.04878467693924904, 0.04254212975502014, 0.007774821948260069, 0.018417462706565857, 0.036630041897296906, -0.017537381500005722, -0.004845398478209972, -0.010132033377885818, -0.045914553105831146, 0.00867525115609169, -0.025722799822688103, -0.011343322694301605, -0.01663939096033573, 0.02783975750207901, 0.018356928601861, -0.04925757646560669, -0.011063335463404655, 0.025391360744833946, -0.0510760098695755, -0.0051949284970760345, 0.029690565541386604, -0.00646388391032815, 0.0533466711640358, -0.025076400488615036, 0.009892118163406849, -0.01568141020834446, -0.045337069779634476, 0.004317236598581076, 0.015794767066836357, 0.007701796013861895, 0.028031891211867332, -0.0005428629228845239, -0.008258413523435593, 0.0029934686608612537, 0.012976217083632946, 0.034671008586883545, 0.017016854137182236, -0.0019331711810082197, 0.0022905960213392973, 0.031347062438726425, 0.02330721914768219, 0.0647449940443039, 0.04551665112376213, -0.004118381533771753, 0.003102456219494343, 0.012570049613714218, 0.034488558769226074, -0.007261569611728191, 0.02924971655011177, -0.02810552343726158, 0.021471284329891205, -0.002809777157381177, -0.10427505522966385, 0.03777410462498665, 0.0077893720008432865, 0.011111662723124027, -0.007261726539582014, 0.002590389922261238, 0.02492619678378105, 0.0029976465739309788, 0.04015076160430908, 0.02453656867146492, -0.03569534793496132, 0.023101506754755974, 0.0059359692968428135, 0.027350876480340958, 0.0057801976799964905, -0.005014105699956417, -0.07045432925224304, 0.006335612386465073, -0.017799342051148415, -0.0028324341401457787, -0.038475364446640015, -0.05622789263725281, -0.03454199060797691, 0.00028767489129677415, 0.01583288237452507, 0.01553686335682869, 0.0002801395021378994, -0.01392088271677494, -0.005736181978136301, -0.019517268985509872, 0.012246103025972843, -0.02037127874791622, -0.04727315157651901, 0.003574374131858349, 0.004132754635065794, 0.011083206161856651, -0.0063341641798615456, 0.04235800355672836, 0.051319003105163574, -0.022554103285074234, -0.019705502316355705, -0.058655258268117905, -0.014082055538892746, -0.008415068499743938, 0.08893032371997833, 0.0031362471636384726, -0.010092795826494694, -0.034561220556497574, 0.0054757981561124325, -0.004100237041711807, 0.030487891286611557, -0.007062950637191534, 0.0007230897899717093, 0.025430556386709213, 0.04786437749862671, 0.006566877942532301, -0.00010126085544470698, 0.014805772341787815, -0.027203690260648727, 0.029367545619606972, -0.060948144644498825, -0.02809009701013565, 0.01589289680123329, -0.043534714728593826, 0.01761992834508419, 0.013593718409538269, -0.005301623605191708, -0.08327372372150421, 0.04541651904582977, 0.03878088667988777, -0.006025353912264109, 0.062262047082185745, 0.012237215414643288, 0.003236939199268818, -0.03026331216096878, -0.004167996812611818, -0.0886373296380043, 0.01348954625427723, 0.02848835103213787, -0.0021216273307800293, -0.02721988968551159, -0.004995761904865503, -0.03798067942261696, 0.043723952025175095, -0.10203368961811066, -0.0439472571015358, 0.03659875690937042, -0.04018281772732735, -0.020282980054616928, 0.010650441981852055, -0.06178288534283638, 0.05427089333534241, 0.03962795436382294, -0.01848209835588932, -0.0417916364967823, -0.032511766999959946, 0.04049038141965866, 0.0007795155979692936, 0.018570004031062126, -0.002930713351815939, -0.030372537672519684, 0.04572506621479988, 0.008168745785951614, 0.006180376745760441, 0.048841770738363266, -0.009631980210542679, -0.013194196857511997, 0.03317685052752495, -0.03597165271639824, 0.010104510001838207, 0.017282456159591675, -0.009229211136698723, -0.039040084928274155, 0.046274200081825256, 0.017211223021149635, -0.024366065859794617, -0.04251658171415329, 0.06154654175043106, 0.007662641350179911, -0.036338504403829575, -0.036834850907325745, 0.058157846331596375, -0.04858337342739105, -0.03218110278248787, 0.006244716700166464, 0.023073064163327217, -0.019623471423983574, 0.056574683636426926, 0.0169543270021677, 0.01956816203892231, 0.06936123222112656, -0.0049443780444562435, -0.007892265915870667, 0.009958745911717415, 0.08782950788736343, 0.08976960927248001, 0.021202944219112396, -0.0055498299188911915, 0.056202977895736694, -0.0443163700401783, -0.05057879164814949, 0.004101563710719347, -0.03265634551644325, -0.03726140409708023, 0.021834777668118477, -0.01220815721899271, 0.05996183305978775, -0.02884119376540184, 0.05750159174203873, -0.05221349745988846, 0.02038954198360443, 0.03770583122968674, 0.013123963959515095, 0.016703061759471893, 0.0342288538813591, 0.013202283531427383, 0.002325352281332016, 0.015587872825562954, -0.030522089451551437, 0.011210191994905472, 0.008191005326807499, -0.014646963216364384, 0.010884461924433708, -0.005224148277193308, -0.012281248345971107, -0.009239510633051395, 0.009518912993371487, 0.06612578779459, -0.027583297342061996, -0.007845273241400719, 0.018168482929468155, 0.014034966006875038, -0.019970359280705452, 0.017856068909168243, 0.013568641617894173, -0.0003936225257348269, 0.0012313338229432702, -0.031331781297922134, -0.009023324586451054, -0.029214031994342804, -0.0028760796412825584, 0.02510790154337883, -0.028549987822771072, -0.006575446575880051, -0.016544237732887268, -0.021196678280830383, -0.01683049090206623, -0.029907802119851112, -0.04576149582862854, -0.08029329776763916, -0.051391810178756714, -0.04499923810362816, -0.000813160790130496, -0.011366345919668674, -0.060720931738615036, -0.04959403723478317, -0.05380365625023842, -0.014681815169751644, 0.019442666321992874, -0.03585341200232506, -0.028653478249907494, 0.037359267473220825, 0.005988602992147207, -0.008158219046890736, 0.03646761551499367, 0.048988811671733856, 0.020168697461485863, -0.00254766084253788, -0.05249839276075363, -0.0003966025833506137, 0.03773891180753708, -0.00595781160518527, -0.03839763626456261, -0.09693197160959244, 0.009289595298469067, 0.032571230083703995, 0.048592325299978256, -0.06755878776311874, 0.02049476094543934, 0.02820941060781479, 0.004573768004775047, 0.05897209048271179, -0.04034523293375969, -0.03999970853328705, -0.03199707716703415, -0.07856343686580658, 0.013571950607001781, 0.02122708410024643, 0.04577934369444847, -0.0047242059372365475, 0.07970696687698364, 0.07008704543113708, -0.0007431664853356779, -0.04419476166367531, -0.017912190407514572, -0.014129020273685455, -0.00512985372915864, -0.04164581000804901, -0.07110032439231873, -0.030039329081773758, -0.0804722011089325, -0.052234064787626266, 0.05284544453024864, -0.00018180761253461242, -0.018686354160308838, 0.014282460324466228, 0.04094257950782776, -0.05899270251393318, 0.010292291641235352, -0.0353800430893898, -0.014705901965498924, 0.01166287437081337, -0.04666254296898842, -0.03439624607563019, 0.03304794058203697, 0.014291555620729923, -0.05084661394357681, 0.004451736342161894, -0.049510277807712555, 0.02186409756541252, 0.013078147545456886, 0.02564767189323902, 0.06171121820807457, -0.005471664015203714, 0.0010258002439513803 ]
[ -0.07772070914506912, -0.007321573793888092, -0.05365922302007675, -0.0020881337113678455, 0.01877770945429802, -0.05337553471326828, 0.03750913590192795, 0.0027872673235833645, -0.02272455208003521, -0.04007900878787041, 0.0396929606795311, -0.049244146794080734, -0.004031510557979345, 0.018136631697416306, 0.08973410725593567, 0.0040897103026509285, -0.005271025467664003, -0.04918424412608147, -0.010548115707933903, 0.035962995141744614, -0.009292653761804104, -0.009532052092254162, -0.015930023044347763, -0.05252699553966522, 0.021108299493789673, -0.00048269543913193047, 0.0498214028775692, -0.02529309131205082, -0.008597050793468952, -0.18121123313903809, 0.035719119012355804, 0.0065627614967525005, -0.018107470124959946, -0.030057476833462715, -0.011067424900829792, 0.0472089983522892, 0.030382171273231506, -0.056464165449142456, 0.007678928319364786, 0.03507426753640175, 0.013671739026904106, 0.02054511196911335, -0.022789573296904564, 0.0005849768640473485, 0.0059200311079621315, -0.04163646697998047, 0.009509964846074581, 0.00042797590140253305, 0.013024385087192059, 0.016282623633742332, -0.0287315770983696, -0.000029887094569858164, 0.04281030595302582, -0.012671812437474728, 0.05184805393218994, 0.008166174404323101, 0.06319179385900497, 0.0871749296784401, 0.037393271923065186, -0.014379274100065231, 0.029292091727256775, -0.019175652414560318, -0.12267528474330902, 0.06399272382259369, 0.040244657546281815, 0.06299605220556259, -0.03813621401786804, 0.022901836782693863, -0.0018129171803593636, 0.05474991723895073, 0.021245069801807404, -0.01581241562962532, -0.09504427760839462, 0.03488204628229141, -0.002152781467884779, -0.008725627325475216, -0.0035662734881043434, 0.05887770280241966, 0.032264623790979385, -0.036674000322818756, -0.07836707681417465, -0.012246564961969852, 0.016519753262400627, 0.01058187521994114, -0.024324195459485054, 0.005850367713719606, -0.006280191708356142, 0.046711258590221405, 0.023508712649345398, 0.007114250212907791, 0.0029028570279479027, -0.0067977216094732285, 0.007445754483342171, 0.007350058760493994, -0.0816098153591156, 0.0022438159212470055, -0.03746235370635986, 0.024669405072927475, -0.02206406556069851, 0.39161989092826843, -0.004143868573009968, -0.010316052474081516, 0.0446774922311306, 0.009788445197045803, 0.021678708493709564, -0.028447642922401428, -0.026741815730929375, -0.04424635320901871, 0.014918800443410873, -0.003265958745032549, -0.0003426204202696681, -0.05062025785446167, 0.019109651446342468, -0.03264356404542923, 0.00630584079772234, 0.013369446620345116, 0.01961926557123661, 0.052570369094610214, -0.0036829456221312284, 0.0007469250704161823, -0.04043048992753029, -0.03499167039990425, 0.038433682173490524, -0.019173670560121536, -0.00923712644726038, -0.019854236394166946, 0.060439784079790115, 0.046671636402606964, 0.02934376150369644, 0.0379817970097065, 0.05468440428376198, -0.051081426441669464, -0.0679294690489769, -0.028213150799274445, -0.046422649174928665, 0.018286673352122307, 0.022554021328687668, -0.044090427458286285, -0.012552146799862385, 0.020303042605519295, 0.0036338523495942354, -0.046178411692380905, 0.011838255450129509, -0.028392840176820755, -0.04920363426208496, 0.13079971075057983, -0.01454261876642704, -0.005667069926857948, -0.027448272332549095, -0.04027592018246651, -0.001064449897967279, 0.02913195826113224, -0.007056465372443199, -0.07487878203392029, -0.0033470841590315104, 0.05979875475168228, 0.062015898525714874, 0.03107008896768093, 0.009396770037710667, 0.01873781345784664, -0.01647656038403511, -0.02893310971558094, -0.04643145203590393, 0.05059902369976044, 0.042754992842674255, -0.12111249566078186, -0.032303377985954285, 0.002831650199368596, -0.022141464054584503, -0.058899130672216415, -0.004367153160274029, 0.02037970721721649, -0.021754255518317223, -0.02812109887599945, 0.01681174524128437, -0.060565315186977386, -0.04640914872288704, 0.009344067424535751, 0.014325451105833054, -0.006498347967863083, -0.05350937694311142, -0.00004308605275582522, -0.02883557416498661, -0.005997003521770239, -0.005749668926000595, -0.054120022803545, -0.04471008479595184, 0.031361937522888184, -0.035043902695178986, 0.0019204866839572787, -0.027764879167079926, -0.07190468162298203, -0.06932839751243591, 0.0881313756108284, 0.021028634160757065, -0.013733410276472569, 0.01645476743578911, -0.01995357684791088, -0.005145546048879623, -0.012796804308891296, 0.03700951114296913, 0.08078902214765549, -0.04147942736744881, 0.04827373847365379, -0.11726939678192139, 0.0286529790610075, 0.03747072443366051, -0.0463985800743103, 0.08167809993028641, -0.007912290282547474, -0.025065936148166656, -0.0017693759873509407, -0.00035168620524927974, 0.009938351809978485, -0.0013042772188782692, -0.04474402591586113, -0.0009805100271478295, 0.04199611768126488, 0.017542138695716858, 0.05011315271258354, -0.03247404471039772, -0.03683428838849068, 0.009267820976674557, -0.3507082462310791, -0.027548614889383316, -0.010075044818222523, -0.00716566015034914, 0.0344952829182148, -0.09402718394994736, 0.02275286801159382, 0.011629624292254448, 0.011206768453121185, 0.015678152441978455, 0.1433154046535492, 0.0504792220890522, 0.017982227727770805, -0.09722958505153656, 0.0073715331964194775, 0.06900455057621002, -0.030350415036082268, 0.002073040697723627, -0.02961605228483677, 0.021212557330727577, -0.014787002466619015, -0.0205581896007061, 0.0034653630573302507, -0.02876143902540207, 0.021025586873292923, -0.023798378184437752, 0.08338795602321625, 0.0017738303868100047, 0.08278101682662964, -0.060977935791015625, 0.03223828598856926, 0.028768116608262062, 0.007166188210248947, -0.1109408289194107, 0.0021222345530986786, -0.004228079225867987, 0.008359250612556934, 0.03017830289900303, 0.05732390284538269, -0.018137680366635323, -0.08736966550350189, 0.013077287003397942, -0.03346163406968117, -0.0543888583779335, -0.005142624024301767, 0.0037739600520581007, 0.002998432144522667, -0.03755222260951996, -0.03532804921269417, 0.028074050322175026, -0.00913670752197504, -0.010668807663023472, -0.01926022581756115, 0.013932691887021065, 0.03541349247097969, 0.007450194098055363, -0.03406183794140816, -0.035313867032527924, -0.004473136737942696, -0.002139080548658967, 0.01824774220585823, 0.10472898930311203, 0.02821408398449421, -0.05534391105175018, 0.00003183892840752378, 0.0644313395023346, -0.00784975290298462, 0.018965454772114754, 0.027263591066002846, -0.027783019468188286, -0.033001501113176346, 0.08873899281024933, -0.004649237263947725, 0.06824059784412384, -0.020360123366117477, 0.05449517443776131, -0.017751134932041168, -0.0025775942485779524, 0.07401976734399796, 0.007536314427852631, 0.048857565969228745, -0.04156365990638733, 0.055960893630981445, -0.02804953046143055, -0.00474976422265172, 0.07792278379201889, -0.0195981003344059, 0.017627153545618057, 0.05241815000772476, -0.007798235863447189, -0.034052226692438126, -0.02397850714623928, -0.048351600766181946, -0.08908693492412567, 0.06165364757180214, 0.024624453857541084, -0.20711366832256317, 0.028119109570980072, 0.02459678426384926, 0.01321908738464117, -0.03316527232527733, 0.05105442553758621, 0.057629093527793884, -0.030422313138842583, -0.05483726039528847, -0.01640055514872074, 0.024748580530285835, 0.056298378854990005, -0.006123430095613003, -0.02962079644203186, 0.027043543756008148, 0.015090043656527996, 0.06148308515548706, 0.00315547245554626, -0.017214227467775345, 0.01579776406288147, -0.0034223459661006927, -0.01567036844789982, 0.1699218899011612, 0.02599490061402321, 0.03297945111989975, 0.0542052686214447, -0.023751990869641304, -0.01783180795609951, 0.0751081258058548, 0.0007096861372701824, 0.005860914476215839, -0.009817948564887047, 0.023961272090673447, -0.02884090505540371, 0.051855623722076416, -0.08066123723983765, 0.008208663202822208, 0.018766699358820915, 0.01494777761399746, -0.011175333522260189, -0.005546519532799721, 0.022392891347408295, -0.03410707041621208, -0.00920301303267479, 0.07812425494194031, 0.031075356528162956, -0.023689549416303635, -0.008081240579485893, -0.013618730939924717, 0.0015372380148619413, -0.030408281832933426, -0.06957967579364777, -0.006765919737517834, -0.013168564066290855, 0.045233674347400665, 0.07622601836919785, -0.020038820803165436, -0.052474427968263626, -0.028802739456295967, 0.04035741090774536, 0.012979263439774513, -0.033835746347904205, 0.12245327234268188, -0.04142451658844948, 0.038500845432281494 ]
[ -0.018369080498814583, 0.06595898419618607, 0.00771582406014204, -0.0008739244658499956, 0.012809103354811668, 0.032546523958444595, -0.003922510426491499, -0.008877509273588657, 0.018228208646178246, -0.02727011777460575, -0.03598806634545326, -0.028418242931365967, 0.02233588881790638, 0.009598171338438988, 0.0019903697539120913, -0.030712706968188286, 0.030704738572239876, 0.0301201194524765, 0.036552462726831436, -0.0027319551445543766, -0.013995315879583359, 0.016115836799144745, 0.02587464638054371, -0.03719758614897728, 0.0023075896315276623, 0.056747350841760635, -0.026398656889796257, 0.012037242762744427, 0.020276300609111786, -0.14529232680797577, -0.027630463242530823, -0.032989293336868286, -0.08024975657463074, 0.016688494011759758, -0.046715233474969864, -0.013931012712419033, -0.00972045212984085, -0.033862028270959854, 0.002450257772579789, 0.024048922583460808, 0.0013183850096538663, -0.0037688601296395063, -0.006950709968805313, 0.005977016407996416, -0.013076288625597954, 0.0014796183677390218, -0.012399074621498585, -0.00897466205060482, -0.005549728404730558, -0.036361947655677795, 0.01402338594198227, 0.013395411893725395, -0.016577910631895065, 0.014316516928374767, 0.031830329447984695, -0.02141614258289337, -0.046675268560647964, -0.010801858268678188, -0.011286593973636627, -0.004717246163636446, 0.001167175592854619, -0.022555090487003326, -0.009843049570918083, -0.0357481986284256, 0.0047207982279360294, 0.0029286749195307493, -0.017709821462631226, 0.032351091504096985, 0.003252242226153612, -0.016495773568749428, -0.055001672357320786, 0.040422018617391586, -0.08000997453927994, -0.005201753228902817, -0.0011411270825192332, -0.013294271193444729, 0.02347211353480816, 0.008292394690215588, 0.02141544036567211, -0.017086904495954514, -0.015809131786227226, -0.0044193328358232975, -0.016669820994138718, 0.0589108020067215, 0.03168362379074097, 0.00802852213382721, -0.00229054968804121, -0.012212049216032028, 0.005536702461540699, -0.02640925906598568, -0.03283197432756424, 0.026075441390275955, -0.005478336941450834, 0.015615824609994888, -0.07599464058876038, 0.00814063660800457, -0.023503312841057777, -0.019499002024531364, -0.01932404190301895, 0.8225175738334656, 0.018239745870232582, -0.019491780549287796, 0.029740383848547935, 0.0032381124328821898, 0.03242906555533409, 0.0006674437900073826, -0.007167078088968992, 0.012001070193946362, -0.0037773323711007833, -0.036774735897779465, -0.008576378226280212, 0.006623053923249245, 0.015654580667614937, 0.0010929208947345614, 0.010113281197845936, 0.04560808092355728, 0.006529146805405617, 0.032131802290678024, -0.0269093569368124, 0.007437366992235184, -0.023641647771000862, -0.004204291384667158, -0.0025940509513020515, 0.006060280371457338, 0.016861433163285255, -0.19359290599822998, 0.0569135919213295, -7.670326921777959e-33, 0.015381094999611378, -0.014524174854159355, 0.03988715261220932, 0.01034892164170742, 0.022314438596367836, -0.022942792624235153, 0.03749433532357216, 0.0015968289226293564, -0.012643086723983288, -0.018244532868266106, -0.01813320443034172, -0.0028907759115099907, -0.007599311880767345, 0.004859877750277519, 0.04254899173974991, -0.01009426824748516, -0.014535995200276375, 0.004358155652880669, -0.014792167581617832, -0.009329830296337605, 0.020313333719968796, 0.0056146290153265, 0.04265755042433739, 0.015064584091305733, -0.024465974420309067, 0.018862193450331688, -0.016518110409379005, -0.004532333463430405, -0.019027944654226303, -0.041761305183172226, -0.007775746285915375, 0.043810442090034485, 0.007648396771401167, -0.04179772362112999, 0.020049378275871277, -0.02936735935509205, 0.0017901654355227947, 0.005512059200555086, -0.0440208725631237, 0.003162893233820796, -0.02944289520382881, 0.02222435176372528, -0.03624194860458374, 0.02045058272778988, -0.02934020571410656, -0.03220340982079506, -0.006823797710239887, 0.020243214443325996, 0.00833274144679308, 0.013808128423988819, -0.014922619797289371, -0.0033255743328481913, -0.0024603402707725763, -0.024256212636828423, -0.014774288050830364, 0.03222906216979027, 0.017963554710149765, 0.050842490047216415, -0.015696106478571892, 0.022197430953383446, 0.02322426624596119, -0.006261325906962156, -0.01759285293519497, 0.04795495793223381, 0.008594250306487083, 0.03018823452293873, 0.03249229118227959, 0.004172376822680235, 0.014547789469361305, -0.016857141628861427, -0.052736178040504456, 0.03673133999109268, -0.009487896226346493, -0.017390448600053787, 0.04630763828754425, -0.01565506123006344, -0.0005928610917180777, -0.006659890525043011, 0.055701207369565964, 0.03175966441631317, 0.0398792140185833, -0.028488002717494965, 0.042626943439245224, -0.033127665519714355, 0.0007458139443770051, -0.03044247440993786, 0.017766809090971947, -0.047088623046875, 0.012349989265203476, 0.060029078274965286, 0.032783783972263336, 0.07008711248636246, 0.049328457564115524, -0.03154227137565613, 0.0013871832052245736, 7.700141131934659e-33, -0.0001130825185100548, 0.02968304418027401, -0.03368505835533142, 0.00045464583672583103, -0.0029041380621492863, -0.007429797668009996, 0.04218712076544762, 0.032135266810655594, -0.012002827599644661, 0.05312003940343857, 0.018764058127999306, 0.003597293281927705, -0.030769504606723785, 0.013659879565238953, 0.06290718913078308, -0.012924452312290668, 0.006772966124117374, -0.015528871677815914, 0.01740875467658043, -0.019560281187295914, -0.025173349305987358, -0.009361719712615013, 0.01817411556839943, -0.022695384919643402, 0.02806309051811695, 0.048092056065797806, 0.010231569409370422, 0.009759477339684963, -0.008383294567465782, -0.0281501654535532, 0.0060406033881008625, -0.014070117846131325, 0.009966413490474224, -0.015480278059840202, 0.030316047370433807, 0.035163767635822296, 0.042265161871910095, 0.028813650831580162, 0.03837954252958298, 0.007447835523635149, -0.010908382013440132, -0.009745746850967407, -0.012411030009388924, 0.006501139607280493, 0.010634098201990128, 0.011800537817180157, -0.006612058728933334, -0.01668800599873066, -0.033425141125917435, -0.017186308279633522, 0.020665640011429787, 0.03748151287436485, -0.03711627051234245, 0.00863676518201828, -0.008048751391470432, -0.023746846243739128, -0.015615485608577728, 0.0428902842104435, 0.011175951920449734, 0.008135083131492138, -0.00802100170403719, -0.019324008375406265, -0.048576489090919495, 0.02907838299870491, 0.015879187732934952, -0.013710015453398228, -0.019286716356873512, -0.06263183057308197, 0.046573538333177567, -0.023845866322517395, 0.012591473758220673, -0.037220560014247894, 0.015307566151022911, 0.0038030631840229034, 0.06274761259555817, -0.0398157462477684, -0.01855568028986454, -0.009388781152665615, -0.009551160037517548, 0.019730031490325928, -0.021168217062950134, 0.021512120962142944, -0.013812254182994366, -0.012773167341947556, 0.0060197738930583, 0.02106582000851631, -0.02350182645022869, 0.01190708577632904, 0.006142613012343645, -0.02310449443757534, -0.01060225535184145, -0.05661967396736145, -0.02665257640182972, 0.016967130824923515, -0.0028741713613271713, -1.2755426048727259e-8, -0.018315985798835754, 0.009957431815564632, -0.02276543714106083, -0.016224317252635956, 0.05381733924150467, 0.07462188601493835, -0.010222581215202808, -0.005589891225099564, 0.004799181595444679, 0.004286591894924641, 0.01316064689308405, 0.009538819082081318, 0.028463242575526237, 0.019639311358332634, 0.03832607343792915, -0.03978936746716499, 0.0034048936795443296, -0.024254057556390762, 0.026586243882775307, 0.004805099219083786, 0.008338477462530136, 0.032792847603559494, -0.0006329084280878305, 0.009740479290485382, -0.00431933393701911, 0.01333405077457428, 0.023274410516023636, -0.0787404403090477, -0.00943765789270401, -0.00581075856462121, 0.012402243912220001, -0.031226424500346184, -0.02233673259615898, 0.01088077761232853, -0.03320014476776123, -0.009708992205560207, -0.032866641879081726, 0.034882377833127975, 0.0014917179942131042, -0.0010128443827852607, -0.009542057290673256, -0.02908182516694069, 0.010830472223460674, -0.016871925443410873, 0.02699359878897667, 0.03158906102180481, -0.012556983157992363, -0.0008886689902283251, 0.003421732224524021, -0.04694749414920807, 0.00774119608104229, -0.022312724962830544, 0.009641758166253567, -0.009013601578772068, -0.02799338474869728, -0.005490426905453205, 0.04368078336119652, -0.0647457018494606, -0.016833143308758736, -0.0348784364759922, 0.02645467035472393, 0.02857300639152527, -0.040045030415058136, -0.010821188800036907 ]
wireshark-following-http-requestsresponses
https://markhneedham.com/blog/2012/01/14/wireshark-following-http-requestsresponses
false
2012-01-22 21:25:19
Playing around with pomodoros
[ "pomodoro" ]
[ "Software Development" ]
Over the last 3/4 months I've been playing around with the idea of using http://www.markhneedham.com/blog/2011/02/20/pomodoro-observations-from-giving-it-a-go/[pomodoros] to track all coding/software related stuff that I do outside of work. I originally started using this technique while I was doing the programming assignments for http://ml-class.com/[ml-class] because I wanted to know how much time I was spending on it each week and make sure I didn't run down rabbit holes too often. One interesting observation that I noticed from keeping the data of these pomodoros was that while during the early programming assignments it would take me 7 or 8 pomodoros to finish, by the end it was down to around 4. I think this was due to the difficulty of the assignments decreasing as time went on, I didn't improve that dramatically! As I mentioned a few weeks ago I've also been http://www.markhneedham.com/blog/2011/12/31/yak-shaving-tracking-the-yak-stack/[using pomodoros in combination with a yak stack] to make sure I don't go off track and it's been interesting applying the technique while http://stackoverflow.com/questions/8949453/jersey-client-thrown-nullpointerexception-on-android[trying to solve a problem I'm having with using the Jersey client on Android]. It's such a fiddly problem and splitting my time into 25 minute slots has forced me to create a plan for what I'm going to try and do in that pomodoro, whether it be ruling out an approach or trying to understand the underlying code that isn't working. I haven't been successful in solving my problem but I'm pretty sure that I've spent much less time trying to solve it than I would have otherwise. I can certainly imagine spending hours aimlessly trying things that have no chance of working. One thing I've been experimenting with is reducing the length of the pomodoro to 15 minutes when I know there's something specific that I want to investigate and I'm fairly sure it won't take a full length pomodoro. Previously I would end up just killing time for 10 minutes or just resetting the pomodoro because I didn't have anything else to do. I generally enjoy coding much more by applying this time constraint and I think the reason for that is explained by http://www.amazon.co.uk/Progress-Principle-Engagement-Creativity-ebook/dp/B0054KBLBI/ref=sr_1_2?ie=UTF8&qid=1327267340&sr=8-2[The Progress Principle], which I'm currently reading: ____ If people are in an excellent mood at the end of the day, it's a good bet that they have made some progress in their work. If they are in a terrible mood, it's a good bet that they have had a setback. To a great extent, inner work life rises and falls with progress and setbacks in the work. This is the progress principle ____ Using a pomodoro seems to reduce the amount of time that is spent dealing with setbacks and it creates frequent opportunities to discard an approach you're taking if it's clear that it's not going anywhere. A disadvantage that I've sometimes felt when working on the Jersey/Android problem is that I really don't want to spend 25 minutes working on it because I've been getting absolutely nowhere with it for about 6/7 pomodoros now. I'd rather delude myself that I'm going to magically fix it just by fiddling around with the code for an indeterminate period of time! In a way constraining coding in this way does take some of the fun out of it as well because it's now more structured and you tend to have fun when you're just randomly doing stuff and lose track of time. On the other hand I probably end up doing a lot more of the stuff I want to do when I constrain it in this way! Decisions, decisions...
null
null
[ 0.00876608770340681, -0.025105636566877365, 0.014683680608868599, 0.044995974749326706, 0.0949624553322792, 0.031098823994398117, 0.04026394709944725, 0.032195452600717545, -0.004618732258677483, -0.01875731535255909, -0.013666746206581593, -0.005087766330689192, -0.06074323132634163, 0.01007428951561451, -0.03922344371676445, 0.06945110112428665, 0.07206554710865021, -0.015999190509319305, 0.03277606889605522, 0.00598598038777709, 0.03972747176885605, 0.058549802750349045, -0.0003138318134006113, 0.016685621812939644, 0.0004941546358168125, 0.009854127652943134, -0.007490026764571667, 0.007914516143500805, -0.07135893404483795, -0.021466998383402824, 0.04194609820842743, 0.009214208461344242, 0.021544691175222397, 0.009262576699256897, 0.016594301909208298, -0.01917356811463833, -0.018060937523841858, 0.026873184368014336, -0.011297557502985, 0.027183428406715393, -0.06288564950227737, 0.044334374368190765, -0.015145035460591316, -0.0008888963493518531, -0.024898987263441086, -0.0011820485815405846, -0.016270434483885765, 0.009706687182188034, 0.013090685941278934, -0.013544433750212193, -0.08552322536706924, 0.042956214398145676, -0.007967671379446983, 0.00993795320391655, -0.016139263287186623, 0.0520416796207428, 0.040531959384679794, -0.08269961923360825, 0.01580423302948475, -0.034105025231838226, -0.001840944983996451, -0.013810364529490471, 0.0022073190193623304, 0.01605456881225109, 0.004944813437759876, -0.03214634582400322, 0.013426361605525017, 0.06131790578365326, -0.02270762249827385, 0.010290619917213917, -0.0008533205254934728, 0.00771710928529501, -0.01417186763137579, -0.001129091833718121, 0.021090323105454445, -0.053544674068689346, 0.0038229068741202354, 0.07437652349472046, 0.015841476619243622, 0.04063412547111511, -0.01567135751247406, 0.00518067879602313, 0.011444849893450737, 0.02340642921626568, 0.005669993814080954, -0.036805011332035065, -0.02985323593020439, -0.020219657570123672, -0.053969427943229675, 0.061455219984054565, 0.0503704808652401, -0.04588776081800461, 0.02348003350198269, 0.046347860246896744, -0.012922852300107479, 0.013011509552598, 0.01752198301255703, -0.0011752769351005554, -0.0041037960909307, -0.014858491718769073, 0.0006986989756114781, -0.008838985115289688, 0.011744214221835136, 0.01342636626213789, -0.06487634778022766, -0.028519002720713615, -0.020935900509357452, -0.00454385532066226, -0.005601707845926285, -0.00476624071598053, -0.04577977582812309, 0.02778502367436886, -0.021012544631958008, 0.0036276013124734163, -0.07971787452697754, 0.06994662433862686, -0.004706238396465778, -0.04591628536581993, -0.028424538671970367, 0.0020488309673964977, 0.03404463455080986, 0.03760646656155586, -0.009705197997391224, 0.08441941440105438, 0.01185386162251234, 0.025606779381632805, -0.006010197568684816, 0.03754385933279991, -0.013074006885290146, -0.04421672970056534, -0.009109650738537312, 0.053846575319767, -0.0017396642360836267, -0.0019504446536302567, 0.015060112811625004, -0.015502255409955978, -0.014746027998626232, 0.01769035868346691, 0.043213825672864914, 0.03680558502674103, -0.026753949001431465, -0.030058806762099266, 0.019417300820350647, 0.027766503393650055, 0.025595834478735924, 0.006105844862759113, 0.011013336479663849, -0.01992715150117874, -0.031057612970471382, -0.0063811191357672215, -0.00328654027543962, 0.025276118889451027, 0.015137364156544209, -0.04632669314742088, 0.010048449039459229, 0.07882162928581238, 0.011409113183617592, 0.01800084486603737, -0.02752162702381611, 0.025167370215058327, 0.03492104262113571, 0.029333418235182762, -0.003291842294856906, 0.025479374453425407, 0.015585462562739849, -0.018800003454089165, 0.025475937873125076, 0.05363401770591736, 0.006841848138719797, 0.017496610060334206, -0.06435507535934448, -0.033473901450634, 0.07756996899843216, -0.061929814517498016, -0.06410867720842361, 0.05073556676506996, 0.08871046453714371, 0.012182962149381638, 0.02956981211900711, -0.011983495205640793, -0.07435214519500732, 0.013479702174663544, 0.01759951561689377, 0.012841187417507172, 0.005342550575733185, -0.010150096379220486, 0.056446708738803864, 0.03199855238199234, -0.012182365171611309, -0.0012020815629512072, -0.06342434138059616, -0.08086966723203659, 0.006271579768508673, -0.026602691039443016, 0.06732761114835739, -0.012742423452436924, 0.0026019348297268152, 0.04837416484951973, 0.03452121466398239, 0.04200492426753044, 0.013039014302194118, 0.013217979110777378, -0.00559728080406785, -0.03810717165470123, -0.053521882742643356, 0.045854516327381134, 0.04216134175658226, -0.011172452010214329, -0.036078110337257385, 0.01771942712366581, -0.0365876704454422, -0.021395310759544373, 0.036332905292510986, -0.03323879465460777, 0.03271624445915222, 0.0329255647957325, 0.05455152690410614, -0.035675205290317535, 0.05951261892914772, -0.06300642341375351, -0.016582250595092773, -0.0020408194977790117, -0.02410215325653553, 0.0035694215912371874, 0.00822217483073473, 0.11435087025165558, 0.052661340683698654, -0.04909079149365425, -0.03248700872063637, 0.004495649132877588, 0.02168714441359043, -0.05169948190450668, -0.021042389795184135, -0.01212024874985218, 0.0007343458128161728, -0.012090851552784443, -0.041964706033468246, -0.04973956570029259, 0.02678038366138935, -0.03655511885881424, 0.015947498381137848, 0.07181127369403839, -0.023793306201696396, 0.05840960890054703, 0.005761964246630669, -0.000420561118517071, -0.03059733286499977, -0.019845010712742805, -0.05280769616365433, 0.0009420823189429939, 0.011827245354652405, -0.005770388524979353, 0.04750637337565422, -0.021554963663220406, -0.01032409630715847, -0.05286342278122902, -0.041126690804958344, -0.01893468014895916, 0.03739384561777115, 0.07655104994773865, 0.00932615902274847, 0.08309445530176163, 0.005815392825752497, 0.011631297878921032, -0.019014960154891014, -0.05690415948629379, -0.030207086354494095, -0.02775382250547409, 0.004642173182219267, 0.057150986045598984, 0.015957919880747795, 0.008032363839447498, 0.005812613293528557, 0.0025134056340903044, 0.0008082213462330401, -0.031573835760354996, 0.04515620321035385, -0.006562984548509121, -0.018359070643782616, -0.03476487472653389, -0.019709596410393715, 0.05484139174222946, -0.047724321484565735, -0.021781623363494873, 0.020042678341269493, -0.07691259682178497, 0.05785997211933136, -0.049951620399951935, -0.05348219349980354, 0.026980383321642876, 0.01930919848382473, 0.043480075895786285, -0.008700868114829063, 0.0350053496658802, 0.09686210006475449, 0.0005467522423714399, 0.018767409026622772, -0.00697003398090601, 0.0011218847939744592, 0.02078833431005478, 0.005850435700267553, -0.010103804059326649, 0.028268998488783836, 0.011752830818295479, -0.011412899009883404, -0.039079450070858, 0.0397079661488533, -0.03547783941030502, -0.2980605959892273, 0.03557708486914635, -0.018623139709234238, -0.04494502395391464, 0.006164478603750467, -0.005635043606162071, 0.019450483843684196, -0.033373016864061356, -0.018353110179305077, 0.034168701618909836, -0.025722751393914223, -0.048738956451416016, -0.027193265035748482, 0.04051612317562103, 0.007509362883865833, 0.012000625021755695, 0.004705596249550581, -0.016967369243502617, 0.0031922003254294395, 0.04645437374711037, -0.007554756011813879, -0.07183554023504257, 0.004546892363578081, 0.04916884005069733, 0.04359738528728485, 0.07902681082487106, -0.07446280121803284, 0.02872409112751484, -0.045459263026714325, -0.00060610705986619, 0.02431030571460724, -0.026872189715504646, 0.007702051196247339, -0.041309621185064316, -0.01458455715328455, -0.01962217316031456, 0.009575953707098961, 0.011487914249300957, -0.01949356123805046, 0.014023900963366032, -0.01320033147931099, -0.04590446129441261, -0.014067267067730427, 0.01603868417441845, 0.07266141474246979, 0.0023096452932804823, -0.0736192837357521, -0.007471655961126089, -0.022004786878824234, 0.054697636514902115, -0.014092677272856236, -0.03533393517136574, -0.008515230379998684, 0.02638900652527809, -0.010140003636479378, -0.03740755841135979, -0.00016461372433695942, -0.01718607358634472, -0.04290606081485748, -0.029027052223682404, 0.002944604028016329, -0.040655989199876785, -0.01899339072406292, -0.04374701902270317, -0.0025950055569410324, -0.06315861642360687, -0.042014509439468384, -0.010013916529715061, 0.09257332980632782, 0.021599410101771355, -0.03858267515897751, 0.007693634834140539, 0.020466433838009834, -0.10819748789072037, 0.00034326958120800555, 0.009523109532892704, -0.032084476202726364, 0.013986464589834213, 0.0025172478053718805, 0.0507432296872139, -0.04775922745466232, -0.06210053712129593, 0.03625285252928734, 0.0035904322285205126, 0.022142741829156876, -0.04204557463526726, 0.007485378999263048, 0.002324609784409404, 0.004169491119682789, 0.02093556523323059, 0.06588953733444214, -0.01531573198735714, -0.018061095848679543, -0.026387948542833328, 0.029371939599514008, 0.021654251962900162, 0.02107815630733967, -0.007712270133197308, -0.0044642044231295586, 0.03987159579992294, -0.01923036016523838, -0.046675726771354675, 0.028898073360323906, -0.03149097040295601, -0.0001830949477152899, -0.01546412892639637, -0.04431767016649246, 0.00789516419172287, 0.03489493951201439, 0.019589517265558243, -0.0004195429792162031, -0.0355113260447979, -0.0076267593540251255, -0.04749445617198944, -0.03332486376166344, -0.0007129551377147436, 0.01339252945035696, 0.039592064917087555, -0.004048891831189394, -0.026844870299100876, -0.06096852943301201, -0.003200723323971033, 0.0069628930650651455, 0.008476574905216694, -0.06041879951953888, -0.027026399970054626, -0.025603391230106354, -0.028020476922392845, 0.03092796728014946, 0.01690828800201416, -0.015380585566163063, 0.038044705986976624, 0.011316538788378239, -0.033496953547000885, -0.007464973255991936, -0.023152539506554604, -0.04589220881462097, -0.039333947002887726, 0.01804603450000286, -0.01511501707136631, -0.001487224013544619, 0.020678279921412468, 0.005540250334888697, 0.027799243107438087, 0.02328401617705822, 0.000401140539906919, 0.03973463177680969, -0.034424133598804474, 0.008489787578582764, 0.0072442879900336266, 0.0010172849288210273, -0.09624173492193222, 0.03131910413503647, -0.050165798515081406, -0.032639868557453156, -0.017542164772748947, 0.03930632770061493, -0.026467029005289078, -0.023712197318673134, 0.006401681341230869, 0.011937364935874939, -0.04584778845310211, -0.032568465918302536, -0.017649313434958458, 0.006088126916438341, 0.05170634388923645, -0.03245285525918007, 0.034942563623189926, 0.0007581155514344573, -0.02879367582499981, 0.0009371388587169349, -0.00646536098793149, -0.03566593676805496, 0.017075154930353165, 0.009886002168059349, -0.005734907928854227, -0.012150947004556656, -0.003497533965855837, 0.020732147619128227, 0.0072419424541294575, -0.008233509957790375, -0.035629238933324814, -0.004608396906405687, 0.017893290147185326, 0.05687662959098816, 0.006759569980204105, 0.0023641411680728197, -0.01730945333838463, -0.005485231522470713, -0.01036189217120409, -0.04756530746817589, 0.009104437194764614, 0.0051381587982177734, 0.028139205649495125, -0.030911045148968697, -0.08669089525938034, 0.04045876860618591, 0.032644376158714294, 0.013363699428737164, 0.029201390221714973, -0.011286227032542229, -0.014441965147852898, -0.027964986860752106, 0.02778286673128605, 0.08266833424568176, -0.06437428295612335, -0.003064547199755907, -0.00015527076902799308, 0.02401473931968212, 0.004941429011523724, -0.01750292256474495, -0.04147902503609657, -0.009821486659348011, -0.030831729993224144, -0.0054893638007342815, -0.054034117609262466, -0.02279195748269558, -0.021537167951464653, 0.00962026696652174, -0.0057409643195569515, -0.027051091194152832, -0.005207066889852285, -0.026733390986919403, -0.03319185599684715, -0.032939363270998, 0.010530520230531693, -0.026700809597969055, 0.008211581036448479, 0.011690262705087662, -0.04017067328095436, 0.022954657673835754, -0.04114270210266113, 0.013133850879967213, 0.05034681409597397, -0.01921115443110466, -0.010525969788432121, -0.04199838638305664, -0.0028830277733504772, 0.02366715483367443, 0.06859362125396729, 0.0018167846137657762, -0.015822455286979675, -0.029278922826051712, -0.00029199555865488946, -0.0407988540828228, 0.037317678332328796, -0.021718669682741165, 0.003618637565523386, 0.014190349727869034, 0.06601987034082413, 0.047166552394628525, 0.03264784812927246, -0.020662439987063408, -0.013221838511526585, 0.06337402015924454, -0.04976097121834755, -0.019191764295101166, -0.03226158022880554, -0.06169619411230087, 0.008486106991767883, 0.0010130953742191195, 0.025923192501068115, -0.022094959393143654, 0.04334584251046181, 0.014964606612920761, 0.03717491030693054, 0.03184400126338005, 0.008153172209858894, 0.03299424424767494, -0.0661526694893837, 0.002677480224519968, -0.09731882065534592, 0.018399203196167946, 0.06197699159383774, 0.004408061970025301, 0.00840304046869278, -0.001474450808018446, -0.03901708498597145, 0.03506555035710335, -0.05371306091547012, -0.03167785331606865, 0.04990623891353607, -0.0019100320059806108, -0.02549915574491024, 0.009004587307572365, -0.06986074894666672, 0.0456966795027256, 0.02439146488904953, -0.05424968898296356, -0.027884040027856827, -0.011067306622862816, 0.05540572479367256, 0.008947215974330902, 0.03602760285139084, -0.019742915406823158, -0.005300663877278566, 0.06552848219871521, -0.001740994630381465, -0.006443073973059654, 0.0405774787068367, -0.0015294294571503997, 0.04325332120060921, 0.04680652543902397, 0.013473660685122013, -0.01758357137441635, 0.014216160401701927, 0.007828683592379093, -0.06813029199838638, 0.012322412803769112, 0.012527510523796082, -0.014484860934317112, -0.02286600135266781, 0.06397241353988647, 0.04747603461146355, -0.011226329021155834, -0.049896858632564545, 0.008083888329565525, -0.062200143933296204, -0.0002872622571885586, -0.018669942393898964, -0.009319891221821308, -0.031033160164952278, 0.05634121224284172, -0.008167771622538567, 0.0006774723879061639, 0.07993556559085846, 0.0033519344870001078, -0.02108234539628029, -0.006613615434616804, 0.09096810966730118, 0.07090476900339127, 0.043813556432724, -0.00027242081705480814, 0.06507031619548798, -0.016075236722826958, -0.027755089104175568, 0.029017312452197075, -0.019295087084174156, -0.04343689978122711, -0.018901163712143898, 0.023045247420668602, 0.07230222225189209, -0.009950004518032074, 0.07183660566806793, -0.03644738718867302, -0.003350525163114071, 0.013958089984953403, 0.020102297887206078, 0.005520741455256939, 0.04732222855091095, 0.0035765040665864944, 0.010771836154162884, -0.011575659736990929, -0.04462599381804466, -0.003512278199195862, -0.042997099459171295, -0.020230678841471672, 0.04527474567294121, -0.030087657272815704, 0.004298110958188772, 0.0037041434552520514, 0.013229034841060638, 0.06237836554646492, -0.026049932464957237, 0.03317181020975113, -0.014191413298249245, 0.03959226235747337, 0.013722332194447517, 0.029856499284505844, -0.024621404707431793, 0.001976619241759181, 0.01659332402050495, -0.00678640091791749, 0.007319599390029907, -0.038602374494075775, -0.026922838762402534, 0.022811228409409523, -0.02631862834095955, 0.007475617341697216, 0.021047797054052353, 0.006528160534799099, -0.03781468793749809, -0.05626806989312172, -0.0428633838891983, -0.028658676892518997, -0.07180695235729218, -0.024416157975792885, 0.027821026742458344, -0.002904547844082117, -0.039767924696207047, 0.0034099987242370844, -0.03682252764701843, -0.0028532573487609625, 0.04111051186919212, -0.04572027176618576, -0.017648085951805115, 0.021305665373802185, -0.003996321931481361, 0.03970511257648468, 0.0279084462672472, 0.049365654587745667, -0.01112277526408434, 0.0019248240860179067, -0.02641933038830757, -0.0037725421134382486, 0.03844135254621506, 0.007339803036302328, -0.0023469426669180393, -0.08700039237737656, 0.023670637980103493, 0.02651735581457615, -0.002791173756122589, -0.04790541157126427, 0.01155801210552454, 0.035957660526037216, 0.00025171757442876697, 0.06289798766374588, -0.029145022854208946, 0.005772287491708994, -0.055210888385772705, 0.0034651777241379023, -0.02010374143719673, 0.010616806335747242, 0.04140836000442505, -0.012332526035606861, 0.05976620689034462, 0.03343968465924263, -0.027774197980761528, -0.05168619751930237, 0.0014236044371500611, -0.0006594543810933828, 0.004126091953366995, -0.038592614233493805, -0.047804735600948334, -0.021804748103022575, -0.06404868513345718, -0.023991866037249565, 0.0314239002764225, -0.012309610843658447, -0.045981161296367645, 0.02985367923974991, 0.03201034665107727, -0.02233055979013443, 0.03534141927957535, -0.0364624448120594, 0.0499613955616951, -0.04249444603919983, -0.007391699124127626, -0.010680110193789005, -0.011564888060092926, -0.021992851048707962, 0.0059708477929234505, 0.0013775003608316183, -0.05817412585020065, 0.011395493522286415, 0.013102051801979542, 0.036872103810310364, 0.03933631628751755, 0.0016523052472621202, -0.018444659188389778 ]
[ -0.08964720368385315, -0.02054828219115734, 0.005281360354274511, -0.061143673956394196, 0.0014807145344093442, -0.05946674570441246, -0.010461674071848392, 0.03337711840867996, -0.01026221364736557, -0.027855053544044495, 0.026006702333688736, -0.022219888865947723, 0.007796518038958311, 0.015981612727046013, 0.08189651370048523, -0.011225735768675804, 0.01143689826130867, -0.06928930431604385, 0.008547122590243816, 0.029135797172784805, 0.028648676350712776, -0.012553411535918713, -0.04127635806798935, -0.00922860112041235, 0.01672491803765297, 0.054365940392017365, 0.04481302574276924, -0.025450846180319786, 0.007639063522219658, -0.19698014855384827, -0.005470633041113615, -0.0033817822113633156, 0.06785039603710175, -0.013901706784963608, -0.02767856791615486, 0.06598494201898575, -0.005643937736749649, 0.035043250769376755, 0.02373962476849556, 0.06477789580821991, 0.00979888066649437, 0.02181403897702694, -0.0703122466802597, -0.025553924962878227, 0.028736518695950508, -0.03226207569241524, -0.008527937345206738, -0.031197289004921913, 0.003186855698004365, 0.006073418539017439, -0.05173814296722412, -0.014392189681529999, -0.00668391864746809, -0.005002517718821764, -0.036176443099975586, 0.017549529671669006, 0.01973608508706093, 0.08610860258340836, 0.025360357016324997, 0.05122080445289612, 0.023052500560879707, -0.002695049624890089, -0.1279045194387436, 0.10158988833427429, 0.026181712746620178, 0.045730821788311005, -0.006321460008621216, -0.014752806164324284, -0.019170083105564117, 0.07593030482530594, 0.009399655275046825, -0.022390173748135567, 0.011289012618362904, 0.05874146893620491, 0.01207017619162798, 0.002705928171053529, 0.016627490520477295, 0.029407083988189697, -0.008785069920122623, -0.05066607519984245, -0.04281274974346161, -0.014918794855475426, -0.019191453233361244, -0.012705300934612751, -0.023815389722585678, 0.015348243527114391, -0.015576896257698536, 0.07100994139909744, 0.016162388026714325, 0.03664056211709976, 0.06014611944556236, 0.00690007209777832, 0.040667563676834106, 0.012869462370872498, -0.10483865439891815, -0.0012319236993789673, -0.017710823565721512, 0.040485624223947525, -0.06252679228782654, 0.44275709986686707, -0.028579261153936386, -0.011513840407133102, 0.09797834604978561, 0.03475985676050186, 0.007228948175907135, -0.012366957031190395, -0.011538279242813587, -0.06777121126651764, 0.0008549087215214968, 0.0015848722541704774, 0.0016612517647445202, -0.013777092099189758, 0.05148960277438164, -0.02398739568889141, -0.0019228507298976183, 0.03423693776130676, 0.034243497997522354, 0.027698809280991554, -0.005279057193547487, 0.01858144998550415, -0.03241247683763504, -0.0026982384733855724, 0.002725139493122697, -0.003637858433648944, -0.004279866814613342, -0.02439882792532444, 0.00922261644154787, 0.04985172301530838, 0.03247647359967232, 0.012353809550404549, 0.060584887862205505, -0.05100847780704498, -0.0846967026591301, 0.011320714838802814, 0.007942736148834229, 0.004939631558954716, 0.04036642238497734, -0.045891620218753815, 0.009533785283565521, 0.0076887537725269794, -0.013363022357225418, -0.011180227622389793, 0.07627331465482712, -0.015162969008088112, -0.034723762422800064, 0.12101482599973679, 0.006155642215162516, -0.025241833180189133, 0.019467933103442192, -0.06831411272287369, -0.017769893631339073, 0.03585031256079674, 0.0018014733213931322, -0.06744613498449326, -0.002641273196786642, 0.0044936868362128735, 0.08066511154174805, -0.003231394337490201, -0.06674802303314209, -0.0020244764164090157, -0.04328932613134384, -0.015458942390978336, -0.03531946614384651, 0.03735785931348801, 0.05691669508814812, -0.09616193920373917, 0.0058936323039233685, 0.02001030743122101, 0.0036141129676252604, -0.0618564672768116, 0.00097480951808393, 0.03402838855981827, -0.0070753744803369045, -0.03339354693889618, 0.04744315892457962, -0.03994756191968918, -0.039707642048597336, -0.004651449155062437, 0.03695547953248024, 0.0081154964864254, 0.009437656961381435, 0.0034795613028109074, -0.04100947082042694, -0.040276333689689636, -0.038425832986831665, -0.10259657353162766, -0.03950997814536095, -0.00978560745716095, -0.019083615392446518, -0.012920936569571495, -0.028903070837259293, -0.060134079307317734, -0.09702061116695404, 0.07032491266727448, -0.023989912122488022, -0.055546075105667114, 0.020430980250239372, -0.013787558302283287, -0.004436939489096403, -0.011888083070516586, -0.01604536548256874, 0.020271839573979378, -0.009112347848713398, 0.02118821255862713, -0.027828000485897064, 0.0575520284473896, 0.03380950540304184, -0.04006894305348396, 0.0700640007853508, 0.025338632985949516, -0.03023451752960682, -0.02420029044151306, 0.01034234557300806, 0.04729171097278595, 0.007198978215456009, -0.003669096389785409, -0.028647584840655327, 0.033522166311740875, 0.012725685723125935, 0.01057624351233244, -0.053830280900001526, 0.0017643970204517245, 0.02328420989215374, -0.3253813087940216, -0.04436385631561279, -0.016842283308506012, 0.01295627560466528, -0.04110834375023842, -0.03756146505475044, 0.01831543818116188, -0.0341256782412529, 0.028030138462781906, -0.019580256193876266, 0.07718323171138763, -0.016667453572154045, 0.00043533489224500954, -0.07267095893621445, 0.009995542466640472, -0.000042843759729294106, -0.03936552628874779, -0.00945892371237278, -0.02900082804262638, -0.0010451240232214332, 0.001810878631658852, -0.03290460631251335, -0.012791343964636326, -0.04756274074316025, -0.010366485454142094, -0.025579208508133888, 0.08241091668605804, 0.02555686980485916, 0.08035311847925186, -0.053638216108083725, 0.06763118505477905, 0.01111693773418665, 0.005734322126954794, -0.11804228276014328, -0.01618383079767227, -0.032001446932554245, 0.008270216174423695, -0.0322251059114933, 0.05125242471694946, -0.02813470922410488, -0.08603698015213013, 0.01826143078505993, -0.05729518458247185, -0.043956175446510315, -0.06459210813045502, 0.042357854545116425, -0.03127893805503845, -0.033401377499103546, -0.0216527096927166, 0.08779940754175186, 0.015522420406341553, 0.0033541929442435503, 0.03840876743197441, -0.01279553584754467, 0.01041349209845066, -0.012052751146256924, -0.09038066864013672, 0.005364165175706148, -0.0007917778566479683, -0.0051361876539886, -0.006144287530332804, 0.029733648523688316, 0.03296428546309471, -0.05594627931714058, 0.01664625108242035, 0.03061862662434578, 0.009806101210415363, 0.0012205971870571375, 0.05461086705327034, -0.018809834495186806, -0.013568470254540443, 0.10460776090621948, -0.007828060537576675, 0.00470252800732851, 0.043039679527282715, 0.03488839417695999, 0.0292232446372509, 0.003790389047935605, 0.001973250415176153, -0.009309520944952965, 0.042704567313194275, 0.0062983096577227116, 0.027367332950234413, -0.03213048353791237, -0.03460034728050232, 0.034820787608623505, 0.027865013107657433, -0.010389763861894608, 0.055697135627269745, -0.003032748121768236, -0.002044019056484103, 0.01431070826947689, -0.005296371411532164, -0.056044258177280426, 0.08737022429704666, -0.009219253435730934, -0.23126710951328278, 0.02394411526620388, 0.061267390847206116, 0.06266406178474426, -0.005681225098669529, 0.02203836664557457, 0.018077177926898003, -0.03460771590471268, 0.00668549258261919, 0.024358779191970825, 0.022637469694018364, 0.03981979191303253, -0.011502875946462154, -0.02161853201687336, 0.047445159405469894, 0.004226439166814089, 0.02155616693198681, 0.017006931826472282, 0.0475696362555027, -0.022286539897322655, 0.022837655618786812, -0.018841316923499107, 0.13192535936832428, -0.01034560240805149, 0.022112755104899406, 0.0346941202878952, 0.0012211205903440714, 0.009529588744044304, 0.058350950479507446, 0.013965419493615627, -0.030055172741413116, -0.0026783847715705633, 0.03741167113184929, 0.03058525174856186, 0.012617066502571106, -0.08500776439905167, -0.025652553886175156, 0.01532811764627695, 0.004775561857968569, 0.0036768177524209023, 0.02274269610643387, 0.015069623477756977, -0.04481710493564606, 0.020388644188642502, 0.09771546721458435, 0.00879371166229248, -0.013975804671645164, -0.005780512932687998, -0.05479788780212402, -0.0018826484447345138, -0.03947753086686134, -0.09032060205936432, -0.018557749688625336, -0.00974353402853012, -0.018081244081258774, 0.09601511061191559, 0.015317750163376331, -0.03431222215294838, -0.01557560358196497, 0.016006065532565117, 0.005584378726780415, -0.03709851950407028, 0.11327017843723297, 0.0026663478929549456, 0.02467174641788006 ]
[ -0.01710568368434906, 0.045814137905836105, 0.02148575522005558, -0.03020593337714672, -0.01266300305724144, -0.05077284574508667, -0.004427675623446703, 0.006613798439502716, 0.00709021370857954, -0.02338147908449173, 0.0321686752140522, 0.007733579725027084, 0.020693734288215637, 0.011250321753323078, 0.031087009236216545, 0.019544171169400215, 0.014863560907542706, 0.015769844874739647, 0.036207228899002075, 0.032946906983852386, 0.005330882500857115, 0.006591226905584335, -0.006338939536362886, 0.006677765864878893, -0.03153783828020096, 0.015437297523021698, 0.011826873756945133, -0.034766703844070435, -0.013699090108275414, -0.17188671231269836, -0.02259998768568039, -0.01896587200462818, 0.006880470085889101, -0.02053946629166603, -0.020966911688447, -0.004780909977853298, 0.009630433283746243, 0.011084192432463169, 0.016142189502716064, 0.00873381644487381, 0.003986509516835213, -0.009823457337915897, -0.015406605787575245, 0.015796154737472534, 0.0013318826677277684, -0.028574500232934952, 0.01905352994799614, -0.02281709387898445, -0.032224927097558975, -0.0063745444640517235, -0.03286614269018173, -0.0200898889452219, -0.0058921040035784245, 0.011951670050621033, 0.0027096529956907034, -0.01765909232199192, -0.04187820106744766, 0.012073609046638012, 0.009229471907019615, 0.00458486657589674, 0.014109780080616474, 0.0022574923932552338, -0.07825354486703873, -0.029819723218679428, -0.03202606365084648, -0.022799288854002953, 0.03346439450979233, -0.012255740351974964, -0.027729958295822144, 0.013196064159274101, -0.004695726092904806, 0.04308009892702103, 0.00033902961877174675, -0.016907475888729095, -0.013719800859689713, 0.03145313635468483, -0.022482190281152725, -0.0035547923762351274, 0.0038817469030618668, 0.005982464645057917, -0.015729716047644615, 0.027762994170188904, 0.005115055013448, 0.04047480970621109, 0.001336204819381237, -0.011800795793533325, -0.012984424829483032, 0.025912940502166748, 0.009223614819347858, -0.007125116419047117, -0.010235396213829517, 0.010788105428218842, -0.02624049223959446, 0.010130028240382671, -0.10310642421245575, -0.01735585555434227, -0.005607154686003923, 0.00927820522338152, -0.002899055602028966, 0.8471091389656067, 0.027403123676776886, 0.010350513271987438, 0.02589869685471058, 0.021337781101465225, 0.0318005196750164, -0.015888284891843796, 0.023778630420565605, 0.0032868303824216127, -0.007179315201938152, -0.034150999039411545, -0.010952598415315151, 0.009207294322550297, 0.020552659407258034, 0.017902733758091927, 0.016439998522400856, 0.04079292342066765, 0.024726813659071922, 0.025866229087114334, -0.009892266243696213, 0.046068012714385986, 0.016653848811984062, 0.003405192866921425, -0.02370189130306244, -0.01567010022699833, -0.0004984255065210164, -0.16866670548915863, 0.0004009398980997503, -6.331790035128682e-33, 0.045149751007556915, -0.009446591138839722, 0.02737315744161606, -0.0060217236168682575, 0.024368539452552795, -0.010301440954208374, 0.019523119553923607, 0.004824851173907518, 0.011247316375374794, -0.04634078964591026, -0.00167522591073066, -0.026950452476739883, -0.020741239190101624, -0.033018022775650024, 0.03675460442900658, -0.01616743393242359, 0.00030318068456836045, 0.050826866179704666, 0.010675252415239811, 0.017292195931077003, 0.016084643080830574, 0.00851497147232294, -0.031221622601151466, -0.010046429000794888, 0.015017627738416195, 0.06231936439871788, 0.03292379155755043, -0.016989409923553467, -0.018869172781705856, -0.04014815762639046, -0.00864982046186924, -0.009564689360558987, 0.0026540467515587807, -0.025449667125940323, 0.012311110273003578, -0.038240037858486176, -0.01402613427489996, -0.0033777058124542236, -0.005706062540411949, -0.05108403414487839, -0.04518929123878479, -0.01953093893826008, -0.05920999124646187, 0.023594515398144722, -0.03539979085326195, -0.006179877556860447, -0.012105665169656277, 0.019474543631076813, -0.009849252179265022, 0.01848093792796135, 0.010927206836640835, 0.010235652327537537, -0.019101934507489204, -0.011933501809835434, -0.048870354890823364, -0.007865093648433685, 0.006687309127300978, 0.01828395575284958, 0.0010326227638870478, 0.021934624761343002, 0.015018421225249767, -0.0011544200824573636, 0.012745007872581482, 0.007807193323969841, -0.015658238902688026, 0.011728975921869278, -0.018513191491365433, 0.00646726880222559, 0.033760085701942444, 0.0169011652469635, -0.023461179807782173, -0.000567611597944051, -0.005152460187673569, 0.004297339823096991, 0.002596114529296756, 0.0009934576228260994, -0.009450453333556652, -0.0014843103708699346, -0.02633439004421234, 0.01923094503581524, 0.008786792866885662, -0.025314845144748688, -0.009660353884100914, -0.05396706610918045, -0.025409463793039322, 0.0159608144313097, 0.06102696433663368, 0.007078131195157766, -0.032362230122089386, 0.04095427319407463, 0.04956843703985214, 0.00431861961260438, -0.007895344868302345, -0.021746890619397163, -0.0026647821068763733, 6.802887763319945e-33, 0.0029033587779849768, -0.02559724450111389, 0.0010793902911245823, -0.02084227465093136, 0.0047770533710718155, -0.008832140825688839, 0.01027592271566391, 0.020570887252688408, -0.04924898222088814, 0.04857851564884186, -0.05313091725111008, 0.021241338923573494, -0.015263473615050316, 0.043006349354982376, 0.017425278201699257, 0.022877531126141548, 0.023384761065244675, -0.015758059918880463, 0.014041963964700699, -0.014375333674252033, -0.016479184851050377, -0.00922387558966875, 0.02378731034696102, 0.010022091679275036, 0.025985758751630783, 0.0586840957403183, -0.008254953660070896, 0.0038423885125666857, -0.01794619672000408, 0.011382676661014557, 0.01601765677332878, -0.02906101569533348, 0.02368277683854103, -0.006265990436077118, -0.03163139894604683, 0.02749829739332199, 0.002626127330586314, 0.007336421404033899, 0.039366282522678375, -0.028336836025118828, 0.040755849331617355, -0.035047028213739395, 0.03384336829185486, 0.02272331342101097, -0.009994485415518284, 0.0006890875520184636, 0.013163408264517784, 0.0009164663497358561, -0.013721833936870098, -0.0050891065038740635, -0.0013524176320061088, 0.0441092774271965, 0.031299371272325516, 0.003730264725163579, 0.004779093433171511, -0.014283365570008755, -0.038667723536491394, 0.0029458985663950443, -0.01628316007554531, -0.008874974213540554, -0.029881980270147324, -0.024439910426735878, -0.037493180483579636, 0.03664309158921242, -0.006788306869566441, -0.013817601837217808, 0.027123477309942245, -0.02272731438279152, 0.006801208946853876, 0.022313112393021584, -0.026806015521287918, 0.03544363006949425, -0.013282718136906624, 0.040057383477687836, 0.023915745317935944, 0.0022858786396682262, -0.013731805607676506, 0.006193886045366526, -0.01870385743677616, 0.020097238942980766, -0.001864287187345326, 0.0052114734426140785, -0.02069961093366146, -0.02015288732945919, -0.013076375238597393, -0.014738509431481361, 0.00612806249409914, 0.05598590150475502, -0.013707003556191921, -0.0014246802311390638, 0.016300804913043976, 0.02287929877638817, -0.022553423419594765, 0.030011698603630066, 0.0058346395380795, -1.2595803511317172e-8, 0.007375340908765793, -0.033710867166519165, -0.008263926953077316, 0.03954442963004112, 0.042814191430807114, 0.024785935878753662, -0.043439969420433044, 0.011952432803809643, 0.006772333290427923, 0.022093741223216057, 0.05659748241305351, -0.022492622956633568, -0.00998658686876297, 0.01250531431287527, 0.03915941342711449, -0.04950632154941559, 0.03889407962560654, -0.005758585408329964, 0.025553403422236443, 0.004055889789015055, 0.017578767612576485, 0.048668891191482544, -0.029287323355674744, 0.032946713268756866, 0.024376017972826958, 0.001550756860524416, 0.017061231657862663, -0.04496153071522713, -0.014700084924697876, -0.001303419703617692, -0.006734619382768869, -0.018468564376235008, -0.05115991085767746, -0.0055086491629481316, -0.01205627340823412, -0.020496942102909088, -0.007222435437142849, 0.0029811065178364515, 0.008119403384625912, 0.0011626632185652852, -0.01166349183768034, -0.00012901304580736905, -0.017342163249850273, -0.015603910200297832, -0.01782452128827572, -0.011948171071708202, -0.035810526460409164, -0.037828005850315094, 0.011217891238629818, -0.027169793844223022, -0.011984420008957386, -0.002856760984286666, 0.04912063479423523, 0.02014431171119213, -0.009229245595633984, 0.0067843664437532425, 0.021308796480298042, -0.03369855508208275, -0.04795325547456741, 0.011896530166268349, 0.021118154749274254, 0.010098930448293686, -0.014465884305536747, -0.028724368661642075 ]
playing-around-with-pomodoros
https://markhneedham.com/blog/2012/01/22/playing-around-with-pomodoros
false
2012-06-03 20:13:54
Haskell: Building a range of numbers from command line arguments
[ "haskell" ]
[ "Haskell" ]
I'm working through some of the http://mitpress.mit.edu/sicp/[SICP problems] in Haskell and for http://www.billthelizard.com/2010/02/sicp-exercise-122-timed-prime-test.html[problem 1.22] you need to write a function which will indicate the first 3 prime numbers above a starting value. It is also suggested to only consider odd numbers so to find the prime numbers above 1000 the function call would look like this: [source,haskell] ---- > searchForPrimes [1001,1003..] [1009,1013,1019] ---- I wanted to be able to feed in the range of numbers from the command line so that I'd be able to call the function with different values and see how long it took to work it out. I initially tried passing the above array to the program as a command line argument wrapped in a string and then parse it using +++<cite>+++read+++</cite>+++ which works if you provide a complete array: [source,haskell] ---- > read "[1,2]" :: [Int] [1,2] ---- But not so well for ranges: [source,haskell] ---- > read "[1,2..]" :: [Int] *** Exception: Prelude.read: no parse ---- Instead I thought I could just provide the first two values for the proposed range and then work from there. To help me do this I came across the +++<cite>+++enumFromThen+++</cite>+++ function which has the following signature: [source,haskell] ---- > :t enumFromThen enumFromThen :: Enum a => a -> a -> [a] ---- From the Haskell source this function seems to call the literal range syntax which I mentioned above: [source,haskell] ---- enumFromThen x y = map toEnum [fromEnum x, fromEnum y ..] ---- I was actually expecting there to be a literal range syntax definition which made a call to the various enumFrom... methods since the literal syntax seems more like http://en.wikibooks.org/wiki/Haskell/Syntactic_sugar[syntactic sugar] on top of the function call approach but apparently not! I use it like this: [source,haskell] ---- main = do args <- getArgs let (first:second:_) = map read args in putStrLn $ show $ searchForPrimes (enumFromThen first second) ---- Which I suppose could just as easily be written like this: [source,haskell] ---- main = do args <- getArgs let (first:second:_) = map read args in putStrLn $ show $ searchForPrimes ([first, second..]) ---- And I've gone full circle!
null
null
[ -0.005360282026231289, 0.03940611705183983, -0.05984751507639885, 0.028847711160779, 0.056679386645555496, 0.03627033159136772, 0.019878549501299858, -0.0019447440281510353, 0.011837850324809551, -0.02081235684454441, 0.014184151776134968, 0.01569194346666336, -0.05866963043808937, 0.03078395500779152, 0.008998575620353222, 0.06029946729540825, 0.06920894235372543, -0.04327603802084923, -0.005825856700539589, 0.02272561751306057, 0.007279265206307173, 0.050114911049604416, 0.017024237662553787, 0.004891739692538977, 0.012667262926697731, 0.013622111640870571, -0.012388174422085285, 0.005635599140077829, -0.03584708273410797, -0.00044406691449694335, 0.02142757922410965, -0.010961709544062614, -0.010323147289454937, -0.0438479483127594, 0.024761736392974854, 0.014613819308578968, 0.012819171883165836, 0.0009177598403766751, 0.031333111226558685, 0.03435583785176277, -0.046811219304800034, 0.004732009023427963, -0.012511336244642735, -0.00263015809468925, -0.045898593962192535, 0.01849863864481449, -0.05409632995724678, -0.012454654090106487, -0.030227379873394966, 0.0008099654223769903, -0.05547062307596207, 0.013111463747918606, 0.0032197372056543827, -0.022237364202737808, 0.024437086656689644, 0.017069723457098007, 0.0029575128573924303, -0.07886166125535965, 0.02951132506132126, -0.00853762123733759, 0.024767542257905006, 0.02127661742269993, 0.006703726947307587, 0.028268570080399513, 0.0008994932286441326, -0.006770689506083727, -0.011423325166106224, 0.05040213465690613, -0.03740018233656883, -0.0158754363656044, -0.01928476244211197, 0.012121784500777721, -0.016487786546349525, -0.024305498227477074, 0.016201892867684364, -0.03258895501494408, -0.00018084536714013666, 0.06750057637691498, 0.011059018783271313, 0.04598701745271683, -0.02656344324350357, 0.058594293892383575, 0.03396330401301384, 0.002335818950086832, 0.029971783980727196, -0.002735323505476117, -0.03539466857910156, 0.009246326051652431, 0.0008635229896754026, 0.0349147692322731, 0.03768863528966904, -0.06311577558517456, -0.007159392349421978, -0.013727490790188313, 0.025358498096466064, 0.006988637149333954, 0.014950140379369259, -0.023807313293218613, -0.0077056544832885265, 0.007855718955397606, -0.03502091392874718, -0.03433799743652344, 0.048291951417922974, 0.012507482431828976, -0.06421199440956116, -0.011424927972257137, -0.008688620291650295, -0.012926707975566387, 0.003354310756549239, 0.0065443445928394794, -0.011664817109704018, 0.0028958451002836227, -0.004208211321383715, 0.02964347042143345, -0.06603239476680756, 0.054399117827415466, 0.00507248705253005, -0.0003750415926333517, 0.01561002992093563, 0.02258177474141121, 0.049724653363227844, 0.03917474299669266, 0.01771327666938305, 0.05861152708530426, 0.028562523424625397, 0.024141864851117134, 0.011374903842806816, 0.04693492129445076, -0.011385063640773296, -0.04785428196191788, -0.04073303937911987, 0.06817565113306046, 0.009110203944146633, -0.010866732336580753, -0.03815523907542229, -0.01529774721711874, -0.0281937625259161, -0.0035052914172410965, 0.04121117666363716, 0.03626206889748573, 0.02120140753686428, -0.019117049872875214, 0.030162664130330086, -0.06509754806756973, 0.018242748454213142, 0.005065069533884525, 0.015552274882793427, -0.01832537166774273, -0.020079584792256355, 0.04786493629217148, 0.03647972270846367, 0.024915724992752075, 0.06125790253281593, -0.009967925027012825, 0.017953678965568542, 0.040974799543619156, 0.05386025831103325, 0.03249931335449219, -0.02094844914972782, 0.027951166033744812, 0.043325312435626984, 0.041932687163352966, 0.019611597061157227, 0.04171782359480858, 0.01083808857947588, 0.002797482069581747, -0.0041587562300264835, 0.04720050096511841, -0.051375456154346466, -0.004996040835976601, -0.011156553402543068, -0.014242514036595821, 0.05521661043167114, -0.01702866144478321, 0.012132170610129833, -0.015385260805487633, 0.07033740729093552, 0.02133064717054367, 0.05780063197016716, -0.041456691920757294, -0.08130737394094467, 0.024373292922973633, 0.006877067033201456, 0.03986455127596855, 0.015174586325883865, -0.00223351176828146, 0.0627032071352005, 0.0236270260065794, -0.0025708600878715515, -0.001670141238719225, -0.03689371794462204, -0.09686946123838425, 0.0031703016720712185, -0.036963529884815216, 0.08027336001396179, -0.06211644411087036, -0.014279555529356003, 0.02987275831401348, 0.005026656202971935, 0.0396425724029541, 0.02600579522550106, -0.01380063034594059, 0.023026643320918083, -0.04114270210266113, -0.046517129987478256, 0.03853840008378029, 0.04900633916258812, 0.02962450310587883, -0.03214412182569504, 0.02763308770954609, -0.00021381596161518246, -0.0005884445272386074, 0.025690043345093727, -0.0019654002971947193, 0.04727877676486969, 0.03914755582809448, 0.015240819193422794, -0.043402865529060364, 0.024268949404358864, -0.03613810986280441, 0.050943922251462936, 0.03200507164001465, 0.003360245143994689, -0.02077319473028183, -0.012271815910935402, 0.1307464838027954, 0.0892615020275116, -0.04650874063372612, -0.045025892555713654, 0.06386308372020721, -0.011177579872310162, -0.015118934214115143, 0.029834425076842308, -0.0037273364141583443, -0.03512200713157654, -0.03625975549221039, -0.02783185802400112, -0.014153850264847279, 0.01974635012447834, -0.03349726274609566, -0.012391913682222366, 0.08210930973291397, -0.038280289620161057, 0.03478240594267845, -0.032393623143434525, -0.034602563828229904, -0.0023971768096089363, -0.02103259041905403, -0.06098535284399986, 0.027431225404143333, -0.010907684452831745, -0.007433165796101093, 0.05778290703892708, -0.03956581652164459, -0.05082448571920395, 0.00023602473083883524, -0.04120590537786484, 0.0349479503929615, 0.05768999829888344, 0.04638795554637909, -0.011494096368551254, 0.047332823276519775, -0.03982361778616905, -0.015844127163290977, 0.0045365528203547, -0.05136752128601074, -0.02870551310479641, -0.009456377476453781, 0.01738041825592518, 0.02285202220082283, 0.05128316208720207, 0.01803763583302498, 0.008958373218774796, 0.0062229991890490055, 0.026713304221630096, -0.0460020937025547, 0.021558452397584915, -0.01377659011632204, -0.041270703077316284, -0.04142611101269722, 0.010345648042857647, 0.06609644740819931, -0.033958788961172104, -0.02329164370894432, -0.023549534380435944, -0.014625830575823784, 0.04990335926413536, -0.09539709240198135, -0.04451270401477814, 0.00516276340931654, 0.039082884788513184, 0.009604059159755707, -0.024070752784609795, 0.02489360235631466, 0.07168971002101898, 0.009049760177731514, 0.012500425800681114, 0.05137202516198158, 0.03456154838204384, 0.007317429408431053, -0.016040360555052757, 0.008895340375602245, 0.030805164948105812, 0.019929224625229836, -0.038350123912096024, -0.0544607937335968, -0.014067314565181732, -0.014782248996198177, -0.26052942872047424, 0.030120188370347023, -0.05624518170952797, -0.03163009509444237, 0.016198378056287766, -0.06327912956476212, -0.021034948527812958, -0.03339928388595581, 0.003372975392267108, 0.032068584114313126, -0.0064380778931081295, -0.033455051481723785, -0.02633998915553093, 0.03981219604611397, 0.011820360086858273, -0.00903711561113596, 0.009465144947171211, -0.056531086564064026, 0.029503842815756798, 0.017413688823580742, 0.012771678157150745, -0.06738132983446121, 0.029596559703350067, 0.07454589009284973, 0.01044204831123352, 0.040349025279283524, -0.07214095443487167, 0.04089345410466194, -0.06257843226194382, -0.02423112839460373, -0.011792216449975967, -0.015403691679239273, 0.0029527584556490183, -0.019404755905270576, 0.001937964465469122, 0.010016068816184998, 0.027087386697530746, 0.0006325753638520837, 0.026845181360840797, 0.0362577810883522, -0.047366973012685776, -0.04907359927892685, 0.011087997816503048, -0.0029533575288951397, 0.05823361873626709, -0.02926391363143921, -0.027751745656132698, -0.03740176558494568, -0.021785976365208626, 0.07298386096954346, -0.06336821615695953, -0.01374052930623293, -0.02867918647825718, 0.005748497322201729, -0.0028992968145757914, -0.007673470303416252, -0.01160450093448162, -0.009920272044837475, -0.017522824928164482, -0.01897202618420124, -0.008259465917944908, -0.03837190568447113, -0.012835164554417133, -0.03257668763399124, -0.028774363920092583, -0.07458971440792084, -0.056480322033166885, -0.006939641200006008, 0.05625900253653526, 0.015301963314414024, 0.004238911438733339, -0.04778829589486122, -0.027198551222682, -0.12231306731700897, -0.022045845165848732, -0.048513539135456085, -0.026416338980197906, -0.007719021290540695, 0.000392636691685766, 0.054957713931798935, -0.049497392028570175, -0.05138178542256355, 0.033973291516304016, 0.01150591392070055, 0.051623351871967316, -0.02163771167397499, -0.0008292155107483268, -0.024704694747924805, 0.00943850353360176, -0.00770622119307518, 0.05221462994813919, -0.045967765152454376, -0.008447514846920967, -0.02813122421503067, 0.011365359649062157, 0.028050556778907776, 0.004871240351349115, 0.008304460905492306, 0.03254405036568642, 0.015804914757609367, 0.026865242049098015, -0.05500360578298569, 0.021118834614753723, -0.027191082015633583, -0.025297893211245537, -0.006622058339416981, -0.042284298688173294, 0.018861928954720497, 0.022638341411948204, -0.022268369793891907, -0.032963573932647705, -0.07241187244653702, -0.004731861874461174, -0.04958174750208855, -0.030963970348238945, -0.005191587843000889, 0.009972861036658287, 0.017991095781326294, 0.03601944446563721, 0.015881653875112534, -0.08200681209564209, -0.0015478356508538127, -0.0059180306270718575, -0.03783835098147392, -0.038786835968494415, -0.02775905653834343, -0.0237750094383955, -0.015754088759422302, -0.003329393919557333, 0.03741798549890518, -0.0069229574874043465, 0.05723709240555763, 0.03619014844298363, -0.005919287446886301, -0.003379707457497716, -0.01144419051706791, -0.013606542721390724, 0.002600237959995866, -0.010248774662613869, 0.002996440278366208, 0.012712482362985611, -0.019024558365345, 0.01966681517660618, 0.04638204723596573, 0.06872592866420746, 0.002831917256116867, 0.027608919888734818, -0.03430270776152611, -0.01661614514887333, 0.04520679637789726, 0.011745158582925797, -0.033574845641851425, 0.06386955082416534, -0.041982512921094894, -0.050385069102048874, -0.013149005360901356, 0.03108481504023075, -0.018897252157330513, -0.08544129878282547, -0.038958389312028885, 0.012228839099407196, -0.030763205140829086, -0.030531585216522217, -0.04601181298494339, -0.01820462942123413, 0.03596961125731468, -0.020476238802075386, 0.04572886973619461, -0.02411222830414772, 0.02252882346510887, 0.0011364450911059976, 0.030413586646318436, -0.02757292613387108, 0.03674280270934105, -0.01141943596303463, -0.043256405740976334, 0.022225406020879745, 0.032610151916742325, 0.02949463203549385, -0.017063995823264122, -0.0136242201551795, -0.017916861921548843, 0.00465587479993701, 0.04340370371937752, 0.0546623058617115, 0.013516300357878208, 0.012196323834359646, -0.009379957802593708, -0.03945078328251839, -0.04619418829679489, -0.03751293569803238, -0.01235245168209076, -0.05163177475333214, 0.012962785549461842, -0.02413100004196167, -0.04577217996120453, 0.0015886069741100073, 0.044548843055963516, 0.0019248496973887086, 0.003990043420344591, 0.024724125862121582, -0.05280669033527374, -0.0164472758769989, 0.01632693037390709, 0.05385524407029152, -0.05473264306783676, 0.02459637075662613, -0.0001669295597821474, 0.017899654805660248, 0.03237873688340187, 0.03511878475546837, -0.03479114919900894, -0.0060477773658931255, -0.017604881897568703, -0.016691777855157852, -0.007401224225759506, -0.034391142427921295, 0.001634302199818194, 0.0054532866925001144, -0.03575984761118889, -0.027368048205971718, -0.003497385187074542, 0.020966412499547005, -0.052948247641325, -0.015052968636155128, -0.025168854743242264, -0.0017851098673418164, -0.018470020964741707, 0.05553792789578438, -0.03786614164710045, 0.023794472217559814, -0.030611801892518997, 0.03486277535557747, 0.005001903977245092, -0.0004825472424272448, -0.02568105049431324, -0.0654686912894249, 0.0032844548113644123, -0.06358833611011505, 0.09292064607143402, -0.0009590625413693488, -0.012074477039277554, 0.007257459685206413, 0.026176169514656067, -0.04467220604419708, 0.002485515782609582, 0.019115447998046875, -0.0750785619020462, 0.010812810622155666, 0.05113040283322334, -0.04073363542556763, 0.004672073293477297, -0.009938178583979607, -0.02059083618223667, 0.02508316934108734, 0.022105824202299118, -0.017658816650509834, 0.01244749128818512, -0.05189133808016777, 0.036555156111717224, 0.012093051336705685, -0.0050081429071724415, -0.051978182047605515, 0.0502251461148262, 0.05085710063576698, 0.02493254467844963, 0.02250564657151699, -0.017605090513825417, 0.024730602279305458, -0.008808414451777935, -0.008906187489628792, -0.09116518497467041, -0.010103657841682434, 0.025184396654367447, 0.015014208853244781, -0.02864200994372368, -0.002308487193658948, -0.0069070435129106045, 0.02356531284749508, -0.07826683670282364, -0.035389941185712814, 0.044712528586387634, 0.02366359904408455, 0.0014749469701200724, 0.021594999358057976, -0.04008163511753082, 0.011629331856966019, 0.02378072217106819, -0.025593018159270287, -0.00016894050349947065, -0.024310696870088577, 0.046609874814748764, 0.010907112620770931, 0.02433622255921364, -0.008018039166927338, 0.013254995457828045, 0.06778696179389954, 0.03412722796201706, 0.02189142070710659, 0.044692423194646835, -0.011486354283988476, 0.02414848655462265, 0.015127236023545265, -0.001060684327967465, -0.036645520478487015, 0.008169468492269516, -0.016673952341079712, -0.037685103714466095, -0.00003442159140831791, 0.010345298796892166, -0.03332363814115524, -0.05149591341614723, 0.06637128442525864, 0.022598834708333015, -0.01125712413340807, -0.05436547100543976, 0.05163983628153801, -0.0480920672416687, -0.00900060124695301, -0.0004329458752181381, 0.006609355565160513, -0.014434754848480225, 0.04638340696692467, 0.013790658675134182, -0.0021471772342920303, 0.06540515273809433, 0.01417357474565506, -0.0004276772669982165, 0.020428912714123726, 0.059034258127212524, 0.08320870250463486, 0.01479936670511961, -0.011829446069896221, 0.04286888614296913, -0.03464451804757118, -0.05212188512086868, 0.010898062027990818, -0.0639786571264267, 0.014604813419282436, -0.04552512615919113, 0.03522525727748871, 0.08950778841972351, -0.04321904107928276, 0.0565202496945858, -0.03277995064854622, 0.02754756063222885, -0.004781276918947697, 0.02131136693060398, 0.04520690441131592, 0.10781171917915344, 0.023094942793250084, 0.015113895758986473, 0.019227052107453346, -0.03858080133795738, 0.00097075937082991, -0.0048039015382528305, -0.038060642778873444, -0.004804773256182671, 0.005777712911367416, 0.020466063171625137, 0.04578494280576706, 0.02622857689857483, 0.07082509249448776, -0.01436923909932375, -0.03068888746201992, 0.02988639660179615, 0.018664339557290077, 0.0005510416231118143, -0.02090841345489025, -0.02754938043653965, -0.03523145988583565, -0.018577024340629578, -0.02204328589141369, -0.01119404286146164, -0.05071568116545677, -0.07127341628074646, 0.04427216947078705, -0.01344300527125597, -0.000813057238701731, 0.012605761177837849, -0.027590163052082062, -0.03707020729780197, -0.05040273815393448, -0.06079598516225815, -0.024242961779236794, -0.07428359985351562, 0.0037731961347162724, -0.01637791469693184, -0.035945188254117966, -0.026640672236680984, -0.03290330246090889, -0.0056378403678536415, -0.036404483020305634, 0.015183896757662296, -0.022043511271476746, -0.04854041710495949, 0.02529817260801792, 0.016277678310871124, 0.03585752844810486, 0.03564179316163063, 0.03528581187129021, 0.01017940416932106, 0.004751944914460182, 0.005176246631890535, -0.006265092175453901, 0.040775150060653687, 0.02878536842763424, 0.004643078427761793, -0.06957758963108063, 0.0032632797956466675, 0.03711313381791115, 0.03328368812799454, -0.07406482845544815, -0.008787575177848339, 0.013856852427124977, -0.013412291184067726, 0.02898605912923813, -0.004498965106904507, 0.022304730489850044, -0.004370725713670254, -0.031015990301966667, -0.010566052980720997, -0.013245031237602234, 0.05376003682613373, -0.02603944018483162, 0.0920000970363617, 0.008322583511471748, -0.02561313286423683, -0.0016334321117028594, 0.012260138988494873, -0.04400814324617386, 0.056026194244623184, -0.0455593578517437, -0.04623857140541077, -0.039465613663196564, -0.051190122961997986, -0.0008414306794293225, -0.023959601297974586, -0.05076712742447853, -0.02549334429204464, 0.005662537645548582, 0.04512811452150345, -0.07119962573051453, 0.05268894508481026, -0.021351361647248268, 0.02003774791955948, -0.013640747405588627, -0.05092497169971466, -0.010499757714569569, 0.04834742099046707, 0.020687583833932877, -0.030124973505735397, 0.023501891642808914, -0.027453670278191566, -0.008686318062245846, -0.014290961436927319, 0.03939907252788544, 0.021951567381620407, -0.016840295866131783, 0.021009067073464394 ]
[ -0.10278356820344925, -0.00539008155465126, -0.018358267843723297, -0.06391429901123047, -0.004650017712265253, -0.05224309861660004, -0.006408536806702614, 0.05149576812982559, 0.019441841170191765, -0.03084980510175228, 0.05582641437649727, -0.06279906630516052, 0.030567090958356857, -0.009561651386320591, 0.024603165686130524, 0.0016131459269672632, -0.024240903556346893, -0.01171051524579525, -0.03190303593873978, 0.027524445205926895, 0.07490487396717072, -0.03787980228662491, -0.012746885418891907, -0.03474562242627144, 0.05692274123430252, 0.0662369579076767, 0.038425881415605545, -0.07247644662857056, -0.021633049473166466, -0.2322995662689209, 0.0015967815415933728, -0.009325464256107807, 0.09128052741289139, -0.058517105877399445, -0.04250587522983551, 0.020455995574593544, 0.021977761760354042, 0.010906216688454151, 0.018242428079247475, 0.0950915664434433, 0.03271903842687607, 0.014611143618822098, -0.01263065729290247, 0.018238702788949013, -0.015753917396068573, 0.0007163365953601897, -0.040677983313798904, -0.020908936858177185, 0.0015777434455230832, 0.006348188500851393, -0.06890331953763962, 0.023465007543563843, 0.011387810111045837, 0.009240411221981049, 0.015903504565358162, -0.02777923084795475, 0.0775771513581276, 0.040684595704078674, 0.03714056685566902, 0.0278286412358284, -0.020936382934451103, -0.0029369948897510767, -0.13685178756713867, 0.09323213994503021, 0.03199365362524986, 0.038698963820934296, -0.027149038389325142, -0.04040621593594551, -0.08048051595687866, 0.06375420093536377, -0.012739262543618679, 0.003875428345054388, -0.01574917882680893, 0.05407501384615898, -0.0022113893646746874, -0.05475209280848503, -0.02087680995464325, 0.023463843390345573, 0.07261288166046143, -0.0038931502494961023, -0.01945740170776844, -0.02680087462067604, -0.016596278175711632, -0.030921224504709244, 0.02123071253299713, 0.007470055483281612, -0.0042668054811656475, 0.07988081127405167, 0.024308133870363235, -0.06163095310330391, -0.0059850760735571384, -0.04328402504324913, -0.059358738362789154, 0.008953044191002846, -0.06084105744957924, -0.015328279696404934, 0.03026319481432438, 0.008682834915816784, -0.05077974125742912, 0.355820894241333, -0.010770080611109734, 0.0002522026770748198, -0.03002522699534893, 0.012937607243657112, -0.013235780410468578, -0.013138447888195515, -0.010128423571586609, -0.0431365892291069, 0.009190019220113754, -0.08093768358230591, -0.015394318848848343, -0.023330872878432274, 0.09620059281587601, -0.07493780553340912, 0.0061855739913880825, 0.005393385887145996, 0.05126018822193146, -0.024545757099986076, 0.03170685097575188, -0.01385999470949173, 0.04044870287179947, 0.008640697225928307, -0.005042492412030697, -0.02725672908127308, 0.019417880102992058, 0.02909643016755581, 0.0373462475836277, 0.05311839282512665, 0.010209253989160061, 0.056370195001363754, 0.09010900557041168, -0.07295738905668259, -0.038850296288728714, -0.04643680155277252, 0.01266799122095108, 0.010205221362411976, 0.04671343415975571, -0.007398239336907864, 0.03329285606741905, -0.021730592474341393, -0.02757963351905346, -0.041353702545166016, 0.04765072837471962, -0.020183777436614037, 0.027888009324669838, 0.09336059540510178, -0.02036742866039276, -0.028250183910131454, 0.018042579293251038, -0.054497163742780685, 0.004890069831162691, 0.048787184059619904, 0.005766482558101416, -0.04545312374830246, -0.012499948963522911, 0.008099477738142014, 0.0712638646364212, 0.0028737669344991446, -0.04632587358355522, -0.011438656598329544, -0.05895867943763733, -0.041867297142744064, -0.020946772769093513, 0.06217721477150917, 0.005221944767981768, -0.030560800805687904, -0.04379837587475777, 0.009913613088428974, 0.004847184754908085, -0.11383071541786194, 0.0035495974589139223, 0.00989530235528946, -0.03982580825686455, 0.011248098686337471, 0.04858315363526344, -0.019778968766331673, -0.030312612652778625, -0.0024044811725616455, 0.04834854602813721, 0.08960824459791183, -0.06050794571638107, 0.014931592158973217, -0.004902814980596304, 0.007204643916338682, -0.022540464997291565, -0.05261220037937164, -0.08322376757860184, 0.004818189889192581, -0.0024327770806849003, -0.014658740721642971, 0.005068220663815737, -0.002731319284066558, -0.08793257921934128, 0.05263260006904602, -0.04157409816980362, -0.008679652586579323, 0.02840138040482998, 0.03191222622990608, -0.016941502690315247, -0.01654009521007538, 0.03970459848642349, 0.013726168312132359, 0.015252855606377125, 0.03228053078055382, -0.0924072191119194, -0.0020490509923547506, 0.049859315156936646, -0.05042559280991554, 0.0631888210773468, 0.026058338582515717, -0.018165769055485725, 0.025469079613685608, -0.05077262967824936, 0.00020004449470434338, -0.018900807946920395, -0.038906197994947433, -0.01773100160062313, -0.02257925644516945, 0.0140498923137784, 0.057500410825014114, -0.04115952551364899, -0.043387915939092636, -0.04135521128773689, -0.3308192789554596, -0.024055425077676773, 0.028706228360533714, -0.037212301045656204, 0.03322359919548035, -0.06481943279504776, -0.023611517623066902, -0.025096017867326736, -0.023462556302547455, 0.04234325513243675, 0.07528801262378693, 0.006262337323278189, -0.023917263373732567, -0.042542364448308945, 0.001289253938011825, 0.025708265602588654, -0.03487464413046837, -0.03213900327682495, -0.01034684106707573, 0.06428775936365128, -0.01935098133981228, -0.0008434862247668207, -0.05234319716691971, -0.0517590157687664, -0.03322036936879158, -0.040185313671827316, 0.09826608002185822, 0.0033421425614506006, 0.03074699081480503, -0.08531462401151657, 0.04594120755791664, -0.04377320408821106, -0.010923247784376144, 0.020675426349043846, -0.01990671642124653, -0.06742389500141144, -0.05323726311326027, 0.038043312728405, 0.03172565624117851, -0.006204730831086636, -0.03804190829396248, 0.012758307158946991, -0.04702167958021164, 0.019881637766957283, -0.028788669034838676, 0.008208822458982468, 0.01903175190091133, -0.010896667838096619, 0.03540151193737984, 0.06813988834619522, -0.00217206752859056, 0.004671434406191111, -0.03127587214112282, -0.001156980055384338, 0.00259932829067111, -0.018104154616594315, -0.06332194060087204, -0.045526906847953796, -0.023458508774638176, 0.004946200642734766, 0.044578276574611664, 0.06531605124473572, 0.052155882120132446, 0.017518918961286545, -0.0037375076208263636, 0.03799957409501076, -0.010551379062235355, -0.0025140387006103992, 0.055097825825214386, -0.022301480174064636, 0.010193758644163609, 0.09431308507919312, -0.017128100618720055, 0.010706105269491673, 0.0360860601067543, 0.04090137779712677, -0.011963327415287495, 0.04886273667216301, 0.033176202327013016, -0.0030899455305188894, 0.03750491514801979, 0.021223604679107666, 0.04068848118185997, -0.020576979964971542, -0.014329474419355392, 0.013986808247864246, -0.008606537245213985, 0.0767405778169632, 0.03352172672748566, -0.010737835429608822, -0.03423689678311348, 0.051703378558158875, 0.037994127720594406, -0.02908523753285408, 0.06025247275829315, -0.003613610053434968, -0.24769070744514465, 0.03723621368408203, 0.028762293979525566, -0.001499134348705411, 0.005920731462538242, -0.014460929669439793, 0.024752717465162277, -0.07080036401748657, -0.04118713364005089, -0.04386524856090546, 0.04106999933719635, 0.04870188236236572, 0.019000956788659096, 0.02431666851043701, 0.016485946252942085, -0.03360431268811226, 0.028114579617977142, 0.05683285742998123, -0.017879297956824303, 0.0022746343165636063, 0.07532192021608353, -0.006956792902201414, 0.2238115817308426, -0.004353378899395466, -0.00607698317617178, 0.002348989713937044, 0.0016488466644659638, 0.021759409457445145, 0.0545198880136013, 0.039607882499694824, 0.022161871194839478, 0.0037367502227425575, 0.06535430997610092, -0.02526841312646866, 0.015614635311067104, -0.016190439462661743, 0.041147537529468536, 0.04288917034864426, 0.020883899182081223, -0.04056898504495621, -0.04197140410542488, 0.034209199249744415, -0.03441433236002922, 0.016144288703799248, 0.07017196714878082, -0.011286601424217224, -0.028705406934022903, -0.038610830903053284, -0.0075517878867685795, 0.04071669280529022, -0.06162261217832565, -0.005057241767644882, 0.005269831046462059, -0.007126645650714636, 0.034253962337970734, 0.026691343635320663, 0.014753499068319798, -0.022591307759284973, -0.016211284324526787, 0.02227545902132988, 0.017715459689497948, 0.013782339170575142, 0.09327001124620438, -0.002203437266871333, 0.019657045602798462 ]
[ 0.0067062173038721085, 0.0106104277074337, -0.03227021545171738, 0.007172726094722748, -0.0033328833524137735, 0.011429735459387302, -0.008551404811441898, 0.05039902403950691, -0.05638248845934868, -0.042410995811223984, -0.04057636484503746, -0.007529292721301317, 0.04510487988591194, -0.020214254036545753, 0.015559321269392967, -0.03204096853733063, 0.01910422556102276, 0.0037118205800652504, 0.03319299593567848, -0.031651820987463, 0.003398486878722906, 0.04713369160890579, -0.013478906825184822, 0.012726317159831524, 0.017474917694926262, 0.0014349373523145914, -0.018995895981788635, -0.014375141821801662, 0.02275053784251213, -0.10692495852708817, -0.022265680134296417, 0.01015858631581068, 0.014859656803309917, 0.009863341227173805, -0.014808892272412777, 0.015425332821905613, -0.0029342644847929478, 0.022037316113710403, -0.029946623370051384, 0.001083645038306713, 0.014921777881681919, -0.012799141928553581, -0.006313283462077379, 0.006947942543774843, 0.01105058565735817, -0.0019370976369827986, -0.008981619030237198, 0.016617627814412117, -0.002692406764253974, 0.037592098116874695, -0.042622651904821396, 0.03650664910674095, -0.017337525263428688, 0.019928066059947014, -0.006253592204302549, -0.04555835202336311, 0.01700144074857235, -0.07341738790273666, -0.005627382081001997, -0.03929736465215683, -0.044421080499887466, 0.04990432783961296, -0.05736206844449043, -0.007313030306249857, 0.004355361219495535, 0.018052207306027412, -0.0038321116007864475, -0.03571488335728645, 0.0040235682390630245, -0.009557790122926235, 0.026040058583021164, 0.0031907232478260994, -0.035229384899139404, -0.000653566385153681, -0.001724358182400465, -0.008520813658833504, 0.022979456931352615, -0.040332261472940445, -0.015432561747729778, -0.022930938750505447, -0.005653264932334423, -0.021050531417131424, 0.0359390489757061, 0.016835715621709824, -0.02671814151108265, -0.005175923462957144, -0.009265724569559097, 0.035350389778614044, 0.0058983019553124905, -0.02524932473897934, 0.01618190109729767, 0.001593697932548821, 0.017707817256450653, 0.027247125282883644, -0.03279030695557594, 0.029741259291768074, -0.024314681068062782, -0.019093837589025497, -0.0012625131057575345, 0.8169736862182617, -0.02642148733139038, 0.06759631633758545, -0.031437795609235764, -0.012153729796409607, -0.0401124581694603, 0.017548710107803345, 0.013759057968854904, 0.00909633468836546, 0.009809997864067554, -0.029800405725836754, 0.06558764725923538, -0.036658450961112976, 0.049399763345718384, -0.0065005067735910416, 0.00915736984461546, -0.01007829513400793, 0.0040461476892232895, -0.006399623118340969, -0.0028352621011435986, -0.0024887272156774998, 0.04280799254775047, 0.017474832013249397, 0.002507165540009737, 0.05354929342865944, 0.020241471007466316, -0.1719214767217636, 0.006813108921051025, -7.18887529240786e-33, 0.038629867136478424, -0.025796348229050636, -0.005961310118436813, -0.0149464076384902, 0.011494327336549759, 0.030285028740763664, 0.009347529150545597, 0.006718616466969252, -0.04340962693095207, 0.007845576852560043, 0.003984562586992979, -0.02875736728310585, 0.003096668515354395, -0.02536124177277088, 0.0326375812292099, -0.014381719753146172, 0.03149578347802162, 0.020209552720189095, 0.007909407839179039, 0.009014108218252659, 0.0008927026065066457, 0.018150659278035164, 0.01689390279352665, 0.004590650554746389, 0.02902645245194435, 0.07226569205522537, 0.010822458192706108, -0.0011595169780775905, 0.01168464682996273, -0.05699913203716278, 0.017150048166513443, 0.03272993490099907, -0.018896253779530525, -0.003663746640086174, 0.06329600512981415, -0.051033273339271545, -0.0036797502543777227, 0.0169103741645813, -0.01488314475864172, -0.013880369253456593, -0.058151278644800186, 0.05986570194363594, -0.021094363182783127, -0.042789530009031296, 0.0320713110268116, -0.04606490209698677, 0.029350200667977333, 0.042795389890670776, -0.017340078949928284, 0.006270550657063723, 0.009418067522346973, 0.04660266637802124, 0.020746007561683655, -0.04269217327237129, 0.008808533661067486, -0.0448482483625412, 0.013652024790644646, 0.007031245622783899, -0.004260174930095673, 0.03780052438378334, 0.02277052402496338, 0.025784850120544434, -0.003245909931138158, 0.01881023310124874, -0.04681190475821495, -0.006468196399509907, -0.05797905474901199, 0.016603410243988037, 0.04438108205795288, 0.07102172076702118, -0.038343917578458786, -0.002628159709274769, -0.003142674919217825, -0.005275206174701452, -0.007431458681821823, -0.0497991181910038, 0.006916189566254616, -0.027781758457422256, -0.026261229068040848, 0.013305271975696087, 0.034173790365457535, -0.04251948371529579, 0.011558372527360916, 0.04978330805897713, 0.0015012122457847, -0.010252222418785095, -0.00869144406169653, 0.02931690588593483, -0.012007839977741241, -0.0414249412715435, 0.02808704972267151, 0.0035514032933861017, -0.011981913819909096, -0.016688963398337364, -0.014491689391434193, 7.570188762083316e-33, -0.03545566275715828, -0.011444784700870514, -0.016106272116303444, 0.027542483061552048, -0.02921469509601593, -0.023781711235642433, 0.032908227294683456, -0.0075923423282802105, -0.012270492501556873, 0.06965074688196182, 0.008610337972640991, 0.025133460760116577, -0.009077859111130238, -0.002407199703156948, 0.03758551925420761, -0.04159098118543625, 0.022295035421848297, 0.0060821580700576305, -0.00883076898753643, 0.008724795654416084, 0.029223879799246788, 0.0026621383149176836, -0.014560106210410595, -0.011013654060661793, 0.028542976826429367, 0.03907306492328644, -0.025600897148251534, 0.022979553788900375, -0.0042271846905350685, -0.005314120557159185, 0.029635298997163773, -0.01658746227622032, 0.004730152431875467, -0.04586552083492279, 0.0016238383250311017, 0.0379885695874691, 0.02403719164431095, -0.016762597486376762, 0.024213312193751335, 0.01140503864735365, 0.018247848376631737, -0.002781953662633896, 0.019078122451901436, -0.01031746156513691, 0.002699849661439657, 0.023628704249858856, 0.011421078816056252, -0.014072746969759464, 0.012443876825273037, -0.004622234497219324, 0.015421932563185692, -0.006790968589484692, -0.004294088575989008, 0.010612796060740948, 0.014056393876671791, -0.026718003675341606, -0.012109283357858658, 0.008225678466260433, 0.004815485794097185, -0.044029638171195984, -0.009320259094238281, 0.03358902037143707, 0.013486271724104881, 0.012821967713534832, -0.028248414397239685, -0.0066074407659471035, -0.04306097701191902, -0.06534922868013382, -0.029666505753993988, 0.03372756764292717, -0.028094762936234474, -0.02065878175199032, -0.00042116816621273756, 0.052590567618608475, -0.06805231422185898, -0.0005935811204835773, -0.03363169729709625, 0.04821635037660599, 0.011302143335342407, 0.044970445334911346, 0.032138556241989136, -0.018623340874910355, 0.003728180192410946, 0.033410269767045975, -0.0025235938373953104, 0.018133480101823807, 0.012075435370206833, 0.03507101535797119, 0.0371512807905674, -0.021724006161093712, -0.011519665829837322, 0.0035039561334997416, 0.006244780961424112, 0.004061089362949133, 0.03073752671480179, -1.2871129939640014e-8, -0.002468356629833579, -0.01862654648721218, -0.05098266899585724, 0.020865757018327713, -0.008536861278116703, 0.014704607427120209, -0.018035223707556725, -0.044015657156705856, -0.02141580916941166, -0.012708463706076145, 0.029171248897910118, -0.009303991682827473, 0.00047527061542496085, 0.0043976143933832645, 0.06160535290837288, -0.03146055340766907, 0.07029504328966141, -0.05936233326792717, 0.01790354773402214, -0.01505541242659092, -0.026778999716043472, 0.025019463151693344, 0.006924066226929426, -0.016218310222029686, -0.02808934822678566, -0.03668181970715523, 0.026194337755441666, -0.06887352466583252, 0.03237792104482651, 0.0005316479364410043, -0.0003593321889638901, -0.031045159325003624, -0.029546789824962616, 0.0011797203915193677, -0.0005582910962402821, -0.010067147202789783, -0.022308817133307457, 0.03462750092148781, 0.044854987412691116, -0.022746492177248, -0.005684634670615196, -0.008307363837957382, -0.015335052274167538, -0.020393142476677895, -0.02379445545375347, -0.0323873870074749, 0.018674353137612343, -0.007112634833902121, 0.008250105194747448, -0.02846165932714939, 0.017148489132523537, -0.013497855514287949, 0.04839491844177246, 0.004526868462562561, 0.043912019580602646, 0.013785572722554207, 0.017204036936163902, -0.08978703618049622, -0.04224671050906181, -0.001701969187706709, 0.028981493785977364, -0.009597808122634888, -0.03651499003171921, -0.02652745135128498 ]
haskell-building-a-range-of-numbers-from-command-line-arguments
https://markhneedham.com/blog/2012/06/03/haskell-building-a-range-of-numbers-from-command-line-arguments
false
2012-06-05 00:10:29
Haskell: Writing a function that can take Ints or Doubles
[ "haskell" ]
[ "Haskell" ]
In my continued reading of SICP I wanted to recreate a 'sum' function used to demonstrate a function which could take another function as one of its parameters. In Scheme the function is defined like this: [source,scheme] ---- (define (sum term a next b) (if (> a b) 0 (+ (term a) (sum term (next a) next b)))) ---- And can be used like this to sum the values between two numbers: [source,scheme] ---- (define (identity x) x) (define (sum-integers a b) (sum identity a inc b)) ---- [source,text] ---- > (sum-integers 1 10) 55 ---- I translated it into Haskell as the following: [source,haskell] ---- sicpSum :: (Int -> Int) -> Int -> (Int -> Int) -> Int -> Int sicpSum term a next b | a > b = 0 | otherwise = term a + sicpSum term (next a) next b ---- The 'sum-integers' function translates like this: [source,haskell] ---- sumIntegers :: Int -> Int -> Int sumIntegers a b = sicpSum id a inc b ---- [source,text] ---- > sumIntegers 1 10 55 ---- It works fine with integers but later on in the chapter it's used to define a function which returns a double: [source,scheme] ---- (define (pi-sum a b) (define (pi-term x) (/ 1.0 (* x (+ x 2)))) (define (pi-next x) (+ x 4)) (sum pi-term a pi-next b)) ---- [source,text] ---- > (* 8 (pi-sum 1 1000)) 3.139592655589783 ---- I tried writing my 'piSum' function to call the existing 'sumIntegers': [source,haskell] ---- piSum a b = sicpSum piTerm a piNext b where piTerm x = 1 / (x * (x + 2)) piNext x = x + 4 ---- Which unfortunately doesn't compile because of our use of '/': [source,text] ---- sicp.hs:124:22: No instance for (Fractional Int) arising from a use of `piTerm' Possible fix: add an instance declaration for (Fractional Int) In the first argument of `sicpSum2', namely `piTerm' In the expression: sicpSum2 piTerm a piNext b In an equation for `piSum': piSum a b = sicpSum2 piTerm a piNext b where piTerm x = 1 / (x * x + 2) piNext x = x + 4 ---- [source,text] ---- > :t (/) (/) :: Fractional a => a -> a -> a ---- I need to make 'sicpSums' generic enough to take in a Double or Int in order to reuse it here. Most of the functions I've written have been for very specific types although a lot of the Haskell examples I've come across tend to have very generic type signatures. I found quite a http://en.wikibooks.org/wiki/Haskell/Classes_and_types#Standard_classes[cool diagram on a Haskell wiki] which shows which types inherit different type classes. image::{{<siteurl>}}/uploads/2012/06/haskell-classes-small1.png[Haskell classes small,288,link=http://upload.wikimedia.org/wikipedia/commons/thumb/6/69/Classes.svg/480px-Classes.svg.png] In this case both Int and Double derive from the Num type class so we can redefine 'sicpSum' in terms of that: [source,haskell] ---- sicpSum :: (Ord a, Num a1) => (a -> a1) -> a -> (a -> a) -> a -> a1 sicpSum term a next b | a > b = 0 | otherwise = term a + sicpSum term (next a) next b ---- We had to also make sure that 'a' inherits the 'Ord' type class because of the comparison between a and b that we do on the second line. 'piSum' can then make use of the new 'sicpSum' in its definition: [source,haskell] ---- piSum :: (Ord a1, Fractional a1) => a1 -> a1 -> a1 piSum a b = sicpSum piTerm a piNext b where piTerm x = 1 / (x * (x + 2)) piNext x = x + 4 ---- We can then use it like this: [source,haskell] ---- > 8 * (piSum 1 1000) 3.139592655589783 ---- Obviously this is a very simple example but I haven't written any functions which could take in different types so I thought I'd document how I did it, especially because the diagram of the type classes is really useful!
null
null
[ -0.02242269366979599, 0.025407059118151665, -0.011291814967989922, 0.020384732633829117, 0.06455938518047333, 0.04860652983188629, 0.002011350356042385, -0.02791096828877926, 0.031094644218683243, -0.004553049337118864, 0.013508238829672337, -0.004587811883538961, -0.0669654905796051, 0.02771744318306446, -0.020427946001291275, 0.05795770511031151, 0.07784060388803482, -0.004422351252287626, -0.036396704614162445, 0.014823297038674355, 0.01872703805565834, 0.06267993152141571, 0.01370165217667818, 0.014310329221189022, 0.011589441448450089, 0.027668587863445282, 0.028314070776104927, -0.002259128028526902, -0.02865775302052498, -0.014462624676525593, 0.048642341047525406, 0.0003085668431594968, -0.016297928988933563, -0.026760201901197433, 0.009136633947491646, 0.008782884106040001, -0.03344961628317833, -0.008170336484909058, 0.01382187008857727, 0.017619922757148743, -0.06068829819560051, 0.004389464855194092, -0.004960940685123205, -0.018817970529198647, -0.046155896037817, -0.03390650078654289, -0.03612294793128967, -0.006589475087821484, -0.05117053538560867, -0.012923264876008034, -0.06699111312627792, 0.0028670683968812227, -0.012116129510104656, -0.007284117396920919, 0.007118146866559982, 0.039663977921009064, -0.03323673829436302, -0.06720086932182312, 0.049389518797397614, -0.02878287248313427, -0.0280270017683506, -0.0025355673860758543, 0.018016984686255455, 0.032123468816280365, 0.01720621809363365, -0.028872864320874214, -0.0329112634062767, 0.02668285369873047, -0.05520927906036377, 0.0031920303590595722, -0.021769855171442032, -0.01965596340596676, -0.026374034583568573, -0.011278449557721615, 0.003847214626148343, -0.04087626561522484, 0.0003514078271109611, 0.06777386367321014, 0.006392411421984434, -0.0160528514534235, -0.03357488289475441, 0.06401801854372025, 0.02039937861263752, 0.006592035759240389, 0.03128686547279358, -0.016636140644550323, -0.0441434346139431, 0.003514533396810293, -0.019551457837224007, 0.04578014090657234, 0.005396384280174971, -0.07750493288040161, -0.00518086738884449, 0.0011254294076934457, 0.005843226332217455, -0.003121196525171399, 0.002462808508425951, -0.019513877108693123, 0.012417278252542019, 0.033608149737119675, -0.017185937613248825, -0.0216958187520504, 0.040518999099731445, 0.004867936484515667, -0.07575439661741257, 0.026628676801919937, -0.011136997491121292, -0.026868000626564026, -0.013686916790902615, 0.006020922679454088, -0.002225967589765787, -0.0017460741801187396, 0.02478312887251377, 0.020614931359887123, -0.08748675137758255, 0.03224653750658035, 0.015662675723433495, -0.005020841956138611, -0.01483477745205164, 0.031016536056995392, 0.06446623057126999, 0.01876707747578621, -0.022977255284786224, 0.07477021217346191, 0.04105658829212189, 0.02797289565205574, 0.013532321900129318, 0.06493576616048813, -0.005508772097527981, -0.05637659505009651, -0.015444474294781685, 0.061727773398160934, 0.005715830717235804, -0.011242535896599293, -0.012684598565101624, -0.044979773461818695, -0.05444711446762085, 0.021085668355226517, 0.04425165802240372, 0.02239381894469261, 0.02716486155986786, -0.005486463196575642, 0.01729210838675499, -0.017284030094742775, 0.023048778995871544, 0.002894137753173709, 0.004886624403297901, -0.020820116624236107, -0.0024952623061835766, 0.014117611572146416, 0.0255954060703516, 0.039848778396844864, 0.05691669508814812, -0.026281753554940224, 0.04785390943288803, 0.07318159192800522, 0.057025738060474396, 0.0038896165788173676, -0.021877409890294075, 0.005043109878897667, 0.03649153187870979, 0.00027103960746899247, 0.012352666817605495, 0.07386277616024017, -0.0009322119294665754, 0.0031581560615450144, 0.0008063918212428689, 0.04991128295660019, -0.02968103066086769, -0.011748269200325012, -0.038133442401885986, -0.02232455089688301, 0.06568731367588043, -0.03233858942985535, 0.014656316488981247, -0.004498559050261974, 0.09219643473625183, 0.01143729966133833, 0.0532318577170372, 0.001909639802761376, -0.08099440485239029, 0.04454983398318291, 0.01833738572895527, 0.05061060190200806, 0.012200970202684402, -0.010513996705412865, 0.0654514878988266, 0.049161192029714584, 0.017267925664782524, 0.01923871412873268, -0.057868022471666336, -0.060875508934259415, 0.024664651602506638, -0.016472019255161285, 0.07028571516275406, 0.0008561881841160357, -0.002224930329248309, 0.01919119618833065, 0.007292166352272034, 0.0057111927308142185, -0.0010525729740038514, -0.009600741788744926, 0.029855750501155853, 0.004167799372226, -0.022604869678616524, 0.01806710474193096, 0.030652981251478195, 0.01156952790915966, -0.03558262437582016, 0.005626825615763664, -0.008772428147494793, -0.013832307420670986, 0.052607692778110504, -0.030958207324147224, 0.03751367703080177, 0.019188158214092255, 0.001429661177098751, -0.02624168060719967, 0.030708162114024162, -0.026445532217621803, 0.030306460335850716, 0.01622491143643856, -0.008459778502583504, -0.01128160860389471, -0.019179653376340866, 0.10930120199918747, 0.09479013085365295, -0.030714603140950203, -0.03499841317534447, 0.04608134925365448, -0.006213220302015543, -0.042607009410858154, 0.04212740808725357, -0.0038555776700377464, -0.0017683056648820639, 0.004207954742014408, -0.011442672461271286, 0.02494909055531025, 0.03235382214188576, -0.04362069070339203, -0.005078958347439766, 0.09638635069131851, -0.022013692185282707, 0.04508759081363678, -0.0037699996028095484, -0.0064511531963944435, -0.02888297289609909, -0.006577551830559969, -0.0389251708984375, 0.017403578385710716, 0.004129065200686455, 0.0011502431007102132, 0.06454343348741531, -0.05547581613063812, -0.04244948551058769, -0.02480241470038891, -0.0005155749968253076, 0.022224660962820053, 0.056590206921100616, 0.025489915162324905, -0.03693457692861557, 0.01919051632285118, -0.026279257610440254, -0.0010993329342454672, -0.032086558640003204, -0.04549311101436615, -0.06358449161052704, 0.026965072378516197, -0.011931120418012142, 0.02056765928864479, 0.07641914486885071, 0.002584608271718025, -0.03430024906992912, -0.023452412337064743, 0.013532928191125393, -0.02482783794403076, 0.03167823702096939, -0.026877379044890404, -0.04659293219447136, -0.031881239265203476, -0.03402525931596756, 0.0674939975142479, -0.059476420283317566, -0.04314552992582321, -0.028422009199857712, -0.004768803250044584, 0.020772205665707588, -0.0873045101761818, -0.016087336465716362, -0.003991430159658194, 0.04261251166462898, 0.03910590335726738, -0.02620067074894905, 0.03540876880288124, 0.07183735817670822, 0.0009860519785434008, 0.008264971897006035, 0.028931770473718643, 0.03477977216243744, 0.0038808046374469995, -0.013242293149232864, 0.004805423319339752, 0.03968353569507599, 0.021571308374404907, 0.0030012098141014576, -0.05075148865580559, -0.01627570390701294, -0.018989108502864838, -0.27544623613357544, 0.0024515315890312195, -0.04018976539373398, -0.028026390820741653, 0.0268825963139534, -0.03852095454931259, -0.008272833190858364, -0.030709289014339447, -0.031477585434913635, 0.018917763605713844, -0.00867944210767746, -0.027551662176847458, 0.011522970162332058, 0.05695018917322159, 0.047610118985176086, -0.012595958076417446, -0.014771131798624992, -0.04473036155104637, 0.01615608111023903, 0.03824744373559952, 0.010798745788633823, -0.06046617776155472, 0.02062334306538105, 0.029832657426595688, 0.012155495584011078, 0.028234070166945457, -0.06142709404230118, 0.027983853593468666, -0.07218511402606964, -0.03621043264865875, -0.07688290625810623, -0.045182161033153534, 0.03457265347242355, -0.019652433693408966, 0.010787262581288815, -0.010835434310138226, -0.0008145434549078345, -0.002036791294813156, -0.00998702086508274, 0.03300357609987259, -0.04118000715970993, -0.05161678418517113, 0.021411454305052757, 0.017549587413668633, 0.06744489073753357, -0.002027364680543542, -0.0756656676530838, -0.009913797490298748, -0.04655766114592552, 0.07826235145330429, -0.032351136207580566, 0.003876765724271536, -0.03108339197933674, 0.026059465482831, -0.05412298068404198, -0.02199217863380909, -0.0062429290264844894, -0.0442635715007782, -0.01735408790409565, -0.0106580825522542, 0.0010022347560152411, -0.015471513383090496, -0.0231368076056242, -0.022742679342627525, -0.016271444037556648, -0.04643586650490761, -0.07024840265512466, -0.013427493162453175, 0.03890998661518097, 0.013700796291232109, 0.006514361593872309, -0.03646443411707878, -0.019092684611678123, -0.10822739452123642, -0.011594538576900959, -0.03909362107515335, -0.03429373726248741, -0.002562146633863449, 0.011791701428592205, 0.05487102270126343, -0.021006779745221138, -0.06652567535638809, 0.014202333986759186, -0.013013395480811596, 0.02180054597556591, 0.0002005427231779322, -0.011527884751558304, -0.00369290541857481, -0.012696539051830769, -0.003908416721969843, 0.06224970147013664, -0.00457160035148263, -0.01046164333820343, -0.023281177505850792, 0.04131896048784256, 0.014542384073138237, 0.007707407232373953, 0.002368772868067026, 0.029793722555041313, 0.009971991181373596, 0.03161545842885971, -0.03348677232861519, 0.008543822914361954, -0.044965047389268875, -0.019241824746131897, -0.03507506474852562, -0.03133575618267059, 0.000988727668300271, 0.013951361179351807, -0.0158303901553154, -0.04421297460794449, -0.05011226609349251, 0.008784165605902672, -0.03840114548802376, -0.03428961709141731, 0.008702670224010944, 0.006623890250921249, 0.006622664164751768, 0.028720656409859657, 0.013257241807878017, -0.057313889265060425, -0.01076798141002655, 0.03798642382025719, -0.05875757709145546, -0.0451916866004467, -0.01733311638236046, -0.03876727446913719, -0.016556721180677414, 0.01374019030481577, 0.046828821301460266, -0.029116962105035782, 0.02785050868988037, 0.012925085611641407, -0.03939427062869072, 0.030565621331334114, 0.015077540650963783, -0.016100745648145676, -0.024818506091833115, -0.00037334172520786524, -0.013126421719789505, 0.016256531700491905, 0.011580741964280605, 0.03167049214243889, 0.04462292790412903, 0.06259085237979889, -0.01889044977724552, 0.02063903398811817, -0.0234206672757864, -0.013617007061839104, 0.031769417226314545, 0.0056556048803031445, -0.0328998900949955, 0.05325410142540932, -0.04234906658530235, -0.0016828234074637294, -0.01102914847433567, 0.041935838758945465, -0.03434612974524498, -0.045804377645254135, -0.018086135387420654, 0.05029509961605072, 0.009657163172960281, -0.04572794958949089, -0.039153844118118286, 0.006222836673259735, 0.046304646879434586, -0.04056074470281601, 0.012062113732099533, -0.02958972379565239, 0.03565609082579613, 0.014883684925734997, 0.018780890852212906, -0.04643537849187851, 0.03254866972565651, -0.02903149649500847, -0.01652020588517189, 0.029841911047697067, 0.023521075025200844, 0.003985345363616943, -0.05336908996105194, -0.02377132512629032, -0.031615324318408966, 0.0060382988303899765, 0.04118409380316734, 0.05036285147070885, 0.004566228948533535, -0.002679809695109725, -0.002902011154219508, -0.02343743108212948, -0.026033977046608925, -0.01271727029234171, 0.004382566083222628, -0.03392825275659561, 0.02784682810306549, -0.05741899833083153, -0.06373273581266403, -0.01326957531273365, 0.051467135548591614, -0.011232389137148857, -0.004702818114310503, 0.014645637013018131, 0.008616212755441666, 0.01788204349577427, 0.006126911845058203, 0.06445585191249847, -0.03714297339320183, 0.01779695600271225, 0.004239554982632399, 0.027769913896918297, 0.0027746681589633226, 0.027774974703788757, -0.015410123392939568, -0.04549931734800339, 0.019027546048164368, 0.007556806784123182, 0.016091160476207733, 0.0005546534084714949, -0.011625920422375202, -0.01612669788300991, -0.0012913669925183058, 0.02062596008181572, -0.008819214068353176, 0.0173647403717041, -0.032469820231199265, -0.026265420019626617, 0.011194903403520584, -0.013074706308543682, -0.010196312330663204, -0.007979121059179306, -0.0185855720192194, 0.028145188465714455, -0.015152322128415108, 0.01792553998529911, 0.011621803045272827, 0.006691821850836277, -0.03235551714897156, -0.06181444227695465, 0.01759062334895134, -0.056783560663461685, 0.07545649260282516, -0.03132658451795578, -0.011421087197959423, 0.024441560730338097, -0.003783134277909994, -0.038188155740499496, -0.004535101354122162, 0.036477748304605484, -0.0564422532916069, -0.022144712507724762, 0.05136345699429512, -0.05748078227043152, 0.02032577246427536, -0.02692185528576374, -0.028059810400009155, 0.03706129267811775, 0.006136832758784294, -0.031360555440187454, -0.018667735159397125, -0.022165805101394653, 0.018682224676012993, -0.018210608512163162, 0.014204924926161766, -0.05767810717225075, 0.08354316651821136, 0.04782601073384285, 0.0400090254843235, 0.06042682006955147, -0.0259013082832098, 0.03075513429939747, -0.03330625966191292, -0.011319740675389767, -0.08300374448299408, -0.0032602634746581316, 0.03023189678788185, 0.02575439214706421, -0.03220314532518387, -0.0006702031241729856, -0.01797928288578987, 0.06277421861886978, -0.06784990429878235, -0.0015229538548737764, 0.05851222574710846, 0.005121493712067604, 0.03749946504831314, 0.012511677108705044, -0.02851329930126667, -0.00012112787953810766, 0.00413852883502841, -0.01581060327589512, 0.022905122488737106, -0.016555916517972946, 0.03403468430042267, 0.01271232683211565, 0.03799615800380707, -0.01941487565636635, -0.02175525762140751, 0.049202922731637955, 0.03803024813532829, 0.015571300871670246, 0.07830265909433365, 0.008167607709765434, 0.009458312764763832, 0.0008815850014798343, -0.007826730608940125, -0.02112264558672905, 0.0310414656996727, -0.02768092043697834, -0.04002675786614418, 0.01315320935100317, -0.009613747708499432, 0.008490928448736668, -0.021692784503102303, 0.043765872716903687, 0.016698768362402916, -0.030073005706071854, -0.08592327684164047, 0.03660034388303757, -0.059206850826740265, -0.008169270120561123, -0.0032782957423478365, -0.01467299647629261, -0.0001294693793170154, 0.0808386504650116, -0.0235781017690897, -0.03261923789978027, 0.05499438941478729, 0.029436493292450905, -0.029721831902861595, 0.010227423161268234, 0.0836428627371788, 0.07410277426242828, 0.036893945187330246, -0.004086977802217007, 0.06114587187767029, -0.05646467208862305, -0.04517865553498268, 0.006474182475358248, -0.0682612732052803, -0.003606954589486122, 0.03499597683548927, 0.02630244381725788, 0.08964923769235611, -0.0059173377230763435, 0.06498665362596512, -0.057796966284513474, 0.02753608673810959, -0.00044401129707694054, -0.007934420369565487, 0.013434130698442459, 0.07814337313175201, 0.022537460550665855, -0.0038549606688320637, -0.004975629970431328, -0.06318965554237366, 0.010882724076509476, -0.020339373499155045, -0.025207608938217163, -0.013324772007763386, 0.007930890657007694, -0.012153084389865398, 0.0235229954123497, 0.02748141437768936, 0.08451836556196213, -0.007654156535863876, -0.015499536879360676, 0.03477977216243744, 0.04046318307518959, -0.009497079998254776, 0.0010623381240293384, -0.025628045201301575, -0.012912188656628132, 0.023019997403025627, -0.035000983625650406, -0.03339840844273567, 0.008733014576137066, -0.01868467591702938, 0.028577540069818497, -0.029145879670977592, -0.00428604893386364, -0.0011747117387130857, -0.029988998547196388, -0.04413560405373573, -0.05228569358587265, -0.024526631459593773, -0.03401564061641693, -0.0945311188697815, 0.0015942382160574198, 0.020226309075951576, -0.04778120294213295, -0.03628312423825264, -0.01458500511944294, -0.006989656016230583, -0.013848358765244484, -0.007715441752225161, -0.001644512522034347, -0.017066918313503265, -0.006847293581813574, 0.012976589612662792, 0.012825403362512589, 0.010465256869792938, 0.035792481154203415, -0.0024592953268438578, 0.004175856243818998, -0.03777480870485306, -0.03891586512327194, 0.043199796229600906, 0.06574266403913498, 0.031083185225725174, -0.09085650742053986, -0.025983551517128944, 0.05519437789916992, 0.03641816973686218, -0.0761728584766388, 0.0018671901198104024, -0.009102169424295425, 0.0017578836996108294, 0.03287334367632866, -0.0019384082406759262, -0.009762188419699669, -0.020103711634874344, 0.006423283834010363, 0.028931930661201477, 0.024581272155046463, 0.03835611417889595, -0.04072831571102142, 0.07970704138278961, 0.023226143792271614, -0.023325730115175247, 0.013135087676346302, -0.012043338268995285, -0.05034942924976349, 0.024994205683469772, -0.04809515178203583, -0.00726558081805706, -0.021708006039261818, -0.04904738441109657, -0.00040392851224169135, -0.024850934743881226, -0.06938963383436203, -0.031491536647081375, 0.0423896498978138, 0.04143547639250755, -0.06191965937614441, 0.004570633638650179, -0.036292996257543564, 0.0512784868478775, -0.026416076347231865, -0.02633429504930973, 0.01951710879802704, 0.06029023230075836, 0.055893424898386, -0.0065212007611989975, 0.005769414361566305, -0.04238135740160942, 0.010250424966216087, -0.0036281421780586243, 0.039264023303985596, 0.010553163476288319, -0.03637789562344551, 0.058944422751665115 ]
[ -0.07295472174882889, -0.032728467136621475, -0.018598439171910286, -0.05195913836359978, -0.03242569789290428, -0.006201349664479494, 0.01869874820113182, 0.0203712098300457, 0.012265683151781559, -0.032646749168634415, 0.04009764641523361, -0.0710049495100975, 0.022852959111332893, -0.01954878494143486, 0.06907714903354645, 0.012337402440607548, -0.047935497015714645, -0.03171265870332718, -0.03987539932131767, 0.0012096493737772107, 0.07467325776815414, -0.023191016167402267, -0.062344204634428024, -0.0248600784689188, 0.08386856317520142, 0.05629953369498253, 0.030279824510216713, -0.040172744542360306, -0.004990964662283659, -0.23240086436271667, 0.015061655081808567, 0.018720323219895363, 0.0018321933457627892, -0.04124517738819122, -0.01916981115937233, 0.026623064652085304, 0.029852576553821564, 0.013781189918518066, -0.014158320613205433, 0.08040590584278107, 0.01824263110756874, 0.012768127955496311, 0.017890876159071922, 0.0011288938112556934, 0.029232317581772804, 0.00959579274058342, -0.020366108044981956, 0.007321584969758987, 0.00861575547605753, 0.014970355667173862, -0.03704061359167099, 0.025019485503435135, 0.005819546990096569, 0.01631920225918293, -0.01927006244659424, 0.024565676227211952, 0.07905694842338562, 0.05210261791944504, 0.013864342123270035, 0.032451216131448746, 0.0018773971823975444, -0.007950515486299992, -0.13464227318763733, 0.07333829253911972, 0.020592857152223587, 0.04841553419828415, -0.036322806030511856, -0.0648893415927887, -0.0540931411087513, 0.11088989675045013, -0.005754466634243727, -0.00881009642034769, -0.010163463652133942, 0.0355042964220047, -0.011556655168533325, -0.031493209302425385, -0.029340455308556557, 0.018519701436161995, 0.030852513387799263, -0.028904736042022705, -0.039240363985300064, -0.03278914839029312, -0.061551131308078766, 0.0008905052090995014, -0.001261967234313488, 0.0015940923476591706, -0.0159531831741333, 0.05792860686779022, 0.040556177496910095, -0.026583600789308548, 0.022903038188815117, -0.02683708816766739, 0.005179807543754578, 0.029742509126663208, -0.05770823359489441, 0.027626369148492813, 0.004731036722660065, 0.03021821193397045, -0.014117281883955002, 0.3677864372730255, -0.01761169545352459, 0.012477698735892773, 0.017142830416560173, 0.0146675119176507, -0.004142941907048225, -0.00871201977133751, -0.012541687116026878, -0.041904520243406296, -0.012787803076207638, -0.04647031053900719, -0.02091715671122074, -0.05160496383905411, 0.0643821582198143, -0.08830877393484116, 0.012042430229485035, -0.03220169246196747, 0.0429236963391304, -0.013052835129201412, 0.022358320653438568, -0.008959033526480198, 0.03224597126245499, 0.045620616525411606, 0.004004816059023142, 0.0179083701223135, -0.0034827685449272394, 0.021257152780890465, 0.035394906997680664, 0.059257473796606064, -0.013534678146243095, 0.03705637902021408, 0.09019003063440323, -0.023321421816945076, -0.034265920519828796, -0.01370413601398468, 0.014653269201517105, -0.0100399786606431, 0.017413297668099403, -0.029438776895403862, 0.002506871009245515, 0.021427877247333527, -0.0048918528482317924, -0.005175123456865549, 0.022798892110586166, 0.009804493747651577, 0.010550202801823616, 0.14880871772766113, -0.01211023423820734, -0.04814980924129486, 0.03914133459329605, -0.030527301132678986, -0.004667666740715504, 0.001525898464024067, 0.006125924177467823, -0.0673748254776001, -0.01269362773746252, 0.027706189081072807, 0.05912009999155998, -0.017847953364253044, -0.08369970321655273, 0.016712788492441177, -0.06689049303531647, -0.07002813369035721, -0.03658841922879219, 0.07202066481113434, 0.024588841944932938, -0.06204289570450783, -0.031241582706570625, 0.007178539875894785, 0.014866028912365437, -0.11012660712003708, -0.009147148579359055, 0.0065117161720991135, -0.05997423827648163, -0.012583098374307156, 0.055508725345134735, -0.01953105255961418, -0.023214904591441154, -0.013000044971704483, 0.05625145509839058, 0.03153298422694206, -0.0019198667723685503, 0.005060933995991945, -0.033094242215156555, -0.003475264413282275, -0.05104713886976242, -0.029801955446600914, -0.08021480590105057, -0.010549766011536121, -0.03898940235376358, -0.032016266137361526, -0.023009631782770157, 0.04017586261034012, -0.09066703170537949, 0.08485238254070282, -0.04708616062998772, -0.014297764748334885, 0.020165707916021347, 0.000751640007365495, -0.012274559587240219, 0.014653205871582031, 0.009619777090847492, 0.02264322154223919, 0.008337526582181454, -0.013607463799417019, -0.04974310100078583, -0.021187903359532356, 0.05573102459311485, -0.04553993046283722, 0.05752495303750038, 0.04988126829266548, -0.005138536915183067, -0.004615409765392542, -0.023781204596161842, 0.03109056130051613, -0.013544931076467037, 0.008417372591793537, 0.0013915111776441336, 0.011599439196288586, 0.0021156705915927887, 0.02347899042069912, -0.07070519775152206, -0.02491084299981594, -0.051451828330755234, -0.3457944393157959, -0.0321832001209259, 0.008951349183917046, -0.04227004200220108, 0.02662547118961811, -0.08521901816129684, -0.0046489788219332695, -0.049986276775598526, -0.06898857653141022, 0.04101355001330376, 0.07749933004379272, 0.0014257830334827304, -0.03158042952418327, -0.06947453320026398, -0.010741906240582466, 0.011666986159980297, -0.02182481437921524, -0.04454303905367851, -0.00783541239798069, 0.0284041129052639, -0.03384207934141159, 0.004359276499599218, 0.014017852023243904, -0.03998391702771187, -0.04041801020503044, -0.032462574541568756, 0.08658662438392639, 0.009962406009435654, 0.08684109151363373, -0.036022525280714035, 0.05142579600214958, -0.025145534425973892, 0.0006648559938184917, -0.009978284128010273, -0.020658686757087708, -0.03801864758133888, -0.018965356051921844, 0.03694654256105423, 0.006158473901450634, -0.01645071804523468, -0.012212999165058136, 0.01677452214062214, -0.06059849262237549, 0.01149749755859375, 0.015109018422663212, 0.03757399320602417, -0.027671338990330696, -0.049000296741724014, 0.02687043510377407, 0.06635244190692902, -0.001530216890387237, 0.02479924075305462, -0.021787947043776512, 0.012821177020668983, 0.019735973328351974, -0.02365223690867424, -0.052167002111673355, -0.049945831298828125, -0.0060532065108418465, 0.004857724532485008, 0.031018324196338654, 0.0523839071393013, 0.05328003317117691, -0.005065660923719406, 0.028890172019600868, 0.0019882081542164087, 0.021585313603281975, -0.01590816117823124, 0.046392738819122314, -0.02413802221417427, 0.0028523309156298637, 0.0892563909292221, -0.009024295024573803, 0.008838526904582977, 0.035403840243816376, 0.01828186959028244, 0.017110303044319153, 0.057801373302936554, 0.03719262406229973, -0.025805678218603134, 0.019293291494250298, -0.042903073132038116, 0.029431207105517387, -0.0387173667550087, -0.005458577536046505, 0.002244742354378104, -0.01408384833484888, 0.04983501508831978, 0.01829640567302704, 0.00958422850817442, -0.05970103293657303, 0.04112137854099274, 0.027654873207211494, -0.027691930532455444, 0.040465835481882095, -0.002325559500604868, -0.2912989556789398, 0.044183261692523956, 0.002229371340945363, 0.02119085192680359, -0.0415397547185421, -0.025853488594293594, 0.02498805895447731, -0.06440409272909164, -0.05688007175922394, -0.0010282249422743917, 0.030384808778762817, 0.036784324795007706, 0.08014941960573196, 0.039396315813064575, 0.04408958554267883, -0.03846724331378937, 0.03408456966280937, 0.01125358697026968, -0.0029758717864751816, 0.038497764617204666, 0.06471893191337585, 0.0015367597807198763, 0.22447633743286133, 0.004047214053571224, 0.0003642454103101045, -0.0059417118318378925, 0.0188671313226223, 0.008399679325520992, 0.07853982597589493, 0.02773609757423401, 0.0006880980799905956, 0.008117357268929482, 0.0683269277215004, -0.023678721860051155, -0.008185702376067638, -0.0015634583542123437, 0.024163594469428062, 0.06669241189956665, 0.04308028519153595, 0.011384798213839531, -0.032359570264816284, -0.01018695067614317, -0.05220567435026169, 0.054090045392513275, 0.07167650759220123, -0.0170831810683012, -0.02444537915289402, -0.03493404760956764, 0.012875599786639214, 0.029590528458356857, -0.021266229450702667, -0.006851645652204752, 0.01124581228941679, -0.012810583226382732, 0.004961728118360043, 0.01848592981696129, -0.01444888487458229, -0.017391154542565346, 0.006634716410189867, 0.03276345506310463, 0.006804350763559341, -0.006332484073936939, 0.07816899567842484, 0.014826144091784954, -0.006719666998833418 ]
[ -0.024729670956730843, -0.010370972566306591, -0.02029474265873432, 0.02353714406490326, -0.02941792644560337, 0.02179402858018875, 0.030416859313845634, 0.012311027385294437, 0.005748045165091753, -0.029003625735640526, -0.009765583090484142, -0.0004425366932991892, 0.043405283242464066, -0.014738540165126324, -0.01038982905447483, -0.005526590161025524, 0.005200959276407957, 0.029776612296700478, 0.01553383469581604, -0.0420968160033226, -0.001511507434770465, -0.0015032637165859342, 0.007352259010076523, 0.019100330770015717, 0.0191967636346817, -0.00811285525560379, -0.008686268702149391, -0.03748047351837158, 0.02248750999569893, -0.12825976312160492, -0.0188472680747509, -0.0008199465228244662, 0.01453430950641632, 0.004226980730891228, -0.02834266982972622, -0.009823030792176723, -0.0015002430882304907, -0.0028402567841112614, -0.017787914723157883, -0.005436306353658438, -0.007431202568113804, -0.019528118893504143, 0.00013856455916538835, -0.0137666966766119, 0.02256758138537407, -0.000047910896682878956, -0.003529158653691411, 0.0012725278502330184, 0.03960493206977844, -0.01386177446693182, -0.022329671308398247, 0.057093825191259384, -0.018245026469230652, 0.01923459582030773, 0.01833413541316986, -0.024012260138988495, -0.0017583590233698487, -0.019469985738396645, 0.019166696816682816, -0.030473828315734863, -0.03486551716923714, 0.054573796689510345, -0.03385346382856369, -0.0036888120230287313, -0.010008328594267368, 0.026601385325193405, 0.002351580886170268, -0.002612719079479575, 0.004159609787166119, 0.008325107395648956, 0.008606578223407269, 0.017707252874970436, -0.0495469830930233, -0.01539025828242302, -0.008321167901158333, 0.021443378180265427, 0.04266994446516037, -0.022977419197559357, -0.016940630972385406, -0.01838524080812931, -0.010694158263504505, 0.02144479565322399, 0.02105058915913105, -0.00628344202414155, -0.024305131286382675, 0.0068252491764724255, 0.006028679199516773, 0.01750335656106472, 0.028085997328162193, -0.039801307022571564, -0.0012677579652518034, 0.041358448565006256, 0.0002850602613762021, 0.003380199894309044, -0.04752903804183006, -0.024134600535035133, -0.03937307372689247, 0.01081132423132658, -0.01203131303191185, 0.8176034092903137, -0.014692256227135658, 0.05399664491415024, 0.013396309688687325, -0.00835113413631916, -0.05254574120044708, -0.00033504609018564224, 0.04982875660061836, 0.0041419873014092445, 0.0016953138401731849, -0.03187142312526703, 0.04764894023537636, -0.007131545804440975, 0.04075748473405838, 0.012505857273936272, 0.003424211172387004, 0.03315168619155884, 0.06145556643605232, -0.010045475326478481, -0.018933705985546112, -0.01394057646393776, 0.05334772914648056, -0.026229359209537506, 0.02431371435523033, 0.04636823758482933, -0.027119997888803482, -0.19902414083480835, -0.03497405722737312, -6.690887396257567e-33, -0.0029561021365225315, 0.009201711043715477, -0.006293339189141989, -0.009808594360947609, 0.0044889929704368114, 0.02759111113846302, 0.035409681499004364, -0.0012617509346455336, -0.038482483476400375, -0.011007525026798248, -0.01338814478367567, 0.010774240829050541, -0.046271372586488724, -0.03086119331419468, 0.025086665526032448, -0.04288412630558014, 0.023279424756765366, 0.052683256566524506, 0.0017226154450327158, -0.016048315912485123, 0.02423589490354061, 0.0419292226433754, 0.02592352218925953, 0.032972272485494614, 0.010445386171340942, 0.04773709550499916, 0.035040710121393204, -0.026076162233948708, 0.0041548460721969604, -0.058595139533281326, -0.012174054980278015, 0.037045568227767944, 0.019615041092038155, -0.026146071031689644, 0.025067787617444992, -0.021830441430211067, 0.004325181245803833, 0.00016801111632958055, 0.01506401039659977, -0.014165946282446384, -0.03182806074619293, 0.027259724214673042, 0.01431355532258749, -0.0020632254891097546, -0.005235463380813599, -0.018475158140063286, 0.009477992542088032, 0.0323667898774147, 0.0002090573834720999, 0.00886607263237238, -0.03521488234400749, 0.025408761575818062, -0.0024540394078940153, 0.04160407558083534, -0.016187043860554695, -0.013009543530642986, -0.0078094094060361385, 0.009357597678899765, -0.0005471702315844595, 0.03374131768941879, -0.004982864949852228, 0.014677474275231361, -0.0380559004843235, 0.037101276218891144, -0.06046554073691368, 0.0136148976162076, -0.03717009723186493, 0.01855556108057499, 0.04387499392032623, 0.049118079245090485, -0.0728282630443573, 0.034531138837337494, -0.019058208912611008, 0.02895224466919899, 0.023700730875134468, -0.05499647185206413, -0.018593186512589455, -0.00730782188475132, -0.025436650961637497, 0.04023062065243721, 0.00879505556076765, -0.0487411767244339, 0.029340706765651703, 0.014151308685541153, 0.008971412666141987, 0.008373966440558434, 0.005544601008296013, 0.03664802759885788, -0.023410100489854813, -0.018254753202199936, 0.021682171151041985, 0.027513528242707253, 0.010040108114480972, -0.0016228120075538754, 0.0024664585944265127, 6.78846003953154e-33, -0.06948726624250412, -0.013354708440601826, -0.024375412613153458, 0.026692979037761688, -0.028760157525539398, -0.009847793728113174, 0.030621079728007317, -0.03393414616584778, -0.0008805433171801269, 0.020827218890190125, -0.01750260964035988, -0.006794573739171028, 0.019319022074341774, 0.007252666167914867, 0.05872475728392601, -0.046514008194208145, 0.014406589791178703, 0.010698297992348671, -0.007161266170442104, 0.048713568598032, -0.034649789333343506, 0.006797086447477341, -0.01648424006998539, -0.01436851266771555, 0.021920787170529366, 0.08045534789562225, -0.003396807936951518, 0.023743081837892532, -0.011442920193076134, -0.01476288866251707, 0.0340445451438427, -0.008726630359888077, -0.020563997328281403, -0.044375184923410416, 0.008801406249403954, 0.010590014979243279, 0.030758604407310486, -0.011459150351583958, -0.002503521740436554, 0.00725793931633234, 0.025216935202479362, -0.018331948667764664, 0.006234840489923954, 0.020266136154532433, -0.006545090116560459, 0.01882048323750496, 0.025905072689056396, -0.045729413628578186, 0.010522162541747093, 0.005877847317606211, 0.02205832675099373, -0.016753096133470535, 0.001887946855276823, 0.035246748477220535, 0.010911939665675163, -0.0412517748773098, 0.014619879424571991, 0.01689337007701397, -0.02615361288189888, -0.05836610496044159, -0.03798985108733177, 0.009919548407196999, -0.006264799274504185, -0.009907525964081287, -0.021364515647292137, -0.02437397837638855, 0.01411260012537241, -0.07222537696361542, -0.02404332347214222, 0.009031442925333977, -0.021116523072123528, -0.005685687530785799, 0.001077180728316307, 0.05743461102247238, -0.05086063593626022, 0.007880596444010735, -0.026222841814160347, 0.012289735488593578, 0.04198199138045311, 0.03527936711907387, -0.005443670321255922, -0.016893615946173668, 0.02988394908607006, -0.01931103505194187, 0.01876400038599968, -0.004703752230852842, -0.01377643458545208, 0.046652767807245255, 0.025095259770751, 0.007362989243119955, -0.01597543992102146, -0.0038880601059645414, 0.019059382379055023, -0.005336680915206671, 0.006075346376746893, -1.2411095262621075e-8, -0.009023012593388557, -0.010391926392912865, -0.05386839434504509, 0.0134477773681283, 0.02241286262869835, -0.017014892771840096, -0.02818630263209343, -0.0373530313372612, -0.019388537853956223, -0.030352503061294556, -0.024293992668390274, 0.019778376445174217, 0.010855287313461304, -0.030939798802137375, 0.025582386180758476, -0.02051256224513054, 0.03598305210471153, -0.02354102022945881, 0.025596393272280693, -0.004026481416076422, 0.0054005468264222145, 0.016031190752983093, 0.00035840464988723397, -0.02180645987391472, -0.03465056046843529, -0.02551032043993473, 0.03688028082251549, -0.07019331306219101, -0.023646822199225426, -0.005202109459787607, 0.02729487232863903, -0.02421063557267189, -0.03627447411417961, 0.040145423263311386, -0.016070302575826645, 0.022249523550271988, 0.023730382323265076, 0.04271017760038376, 0.06472370773553848, -0.013332800008356571, -0.03872767090797424, -0.013354185037314892, 0.01809149980545044, -0.023361187428236008, -0.012437391094863415, -0.04049857705831528, -0.02526264823973179, -0.04938255250453949, 0.03867826238274574, -0.019533410668373108, 0.03549106791615486, -0.015951845794916153, 0.019837018102407455, 0.016575701534748077, 0.03760545328259468, 0.0005955063970759511, 0.019864048808813095, -0.06498456001281738, 0.006121102254837751, 0.012696146965026855, 0.016978131607174873, -0.016262874007225037, -0.03982226550579071, -0.036316510289907455 ]
haskell-writing-a-function-that-can-take-ints-or-doubles
https://markhneedham.com/blog/2012/06/05/haskell-writing-a-function-that-can-take-ints-or-doubles
false
2012-06-16 10:41:03
neo4j/Cypher: Finding the most connected node on the graph
[ "neo4j", "cypher" ]
[ "neo4j" ]
As I mentioned in http://www.markhneedham.com/blog/2012/05/12/neo4jcypher-finding-the-shortest-path-between-two-nodes-while-applying-predicates/[another post about a month ago] I've been playing around with a neo4j graph in which I have the following relationship between nodes: image::{{<siteurl>}}/uploads/2012/05/initial.png[] One thing I wanted to do was work out which node is the most connected on the graph, which would tell me who's worked with the most people. I started off with the following cypher query: [source,ruby] ---- query = " START n = node(*)" query << " MATCH n-[r:colleagues]->c" query << " WHERE n.type? = 'person' and has(n.name)" query << " RETURN n.name, count(r) AS connections" query << " ORDER BY connections DESC" ---- I can then execute that via the neo4j console or through irb using the neography gem like so: [source,ruby] ---- > require 'rubygems' > require 'neography' > neo = Neography::Rest.new(:port => 7476) > neo.execute_query query # cut for brevity {"data"=>[["Carlos Villela", 283], ["Mark Needham", 221]], "columns"=>["n.name", "connections"]} ---- That shows me each person and the number of people they've worked with but I wanted to be able to see the most connected person in each office . Each person is assigned to an office while they're working out of that office but people tend to move around so they'll have links to multiple offices: image::{{<siteurl>}}/uploads/2012/06/v3.png[V3,600] I put 'start_date' and 'end_date' properties on the 'member_of' relationship and we can work out a person's current office by finding the 'member_of' relationship which doesn't have an end date defined: [source,ruby] ---- query = " START n = node(*)" query << " MATCH n-[r:colleagues]->c, n-[r2:member_of]->office" query << " WHERE n.type? = 'person' and has(n.name) and not(has(r2.end_date))" query << " RETURN n.name, count(r) AS connections, office.name" query << " ORDER BY connections DESC" ---- And now our results look more like this: [source,text] ---- {"data"=>[["Carlos Villela", 283, "Porto Alegre - Brazil"], ["Mark Needham", 221, "London - UK South"]], "columns"=>["n.name", "connections"]} ---- If we want to restrict that just to return the people for a specific person we can do that as well: [source,ruby] ---- query = " START n = node(*)" query << " MATCH n-[r:colleagues]->c, n-[r2:member_of]->office" query << " WHERE n.type? = 'person' and has(n.name) and (not(has(r2.end_date))) and office.name = 'London - UK South'" query << " RETURN n.name, count(r) AS connections, office.name" query << " ORDER BY connections DESC" ---- [source,text] ---- {"data"=>[["Mark Needham", 221, "London - UK South"]], "columns"=>["n.name", "connections"]} ---- In the current version of cypher we need to put brackets around the not expression otherwise it will apply the not to the rest of the where clause. Another way to get around that would be to put the not part of the where clause at the end of the line. While I am able to work out the most connected person by using these queries I'm not sure that it actually tells you who the most connected person is because it's heavily biased towards people who have worked on big teams. Some ways to try and account for this are to bias the connectivity in favour of those you have worked longer with and also to give less weight to big teams since you're less likely to have a strong connection with everyone as you might in a smaller team. I haven't got onto that yet though!
null
null
[ 0.011272245086729527, -0.008440731093287468, 0.009028914384543896, 0.03828931599855423, 0.09630778431892395, -0.008786356076598167, 0.03660641610622406, 0.027749791741371155, 0.007440686691552401, -0.02166532166302204, -0.035321444272994995, -0.007208452094346285, -0.06765561550855637, 0.02297482080757618, 0.0014732733834534883, 0.06471771001815796, 0.05618235096335411, 0.01835053227841854, 0.027567904442548752, -0.037430454045534134, 0.04558610916137695, 0.045888543128967285, -0.0024521350860595703, 0.02975483611226082, 0.06458234786987305, -0.0006858623237349093, -0.0020220824517309666, 0.001990602118894458, -0.03831649571657181, 0.002739348914474249, 0.04511404410004616, -0.014458664692938328, 0.028341878205537796, -0.0036461090203374624, 0.028434855863451958, 0.011255024001002312, -0.030148731544613838, -0.0015474061947315931, -0.006299267057329416, 0.0004083734820596874, -0.06276421993970871, 0.03870579972863197, -0.028795652091503143, 0.017955143004655838, -0.03024955280125141, 0.01014881394803524, -0.05238654464483261, 0.04899360239505768, 0.039898939430713654, 0.013429799117147923, -0.09186926484107971, 0.023097706958651543, 0.00784904696047306, 0.027068881317973137, -0.009337184019386768, 0.04261112958192825, 0.017254255712032318, -0.05988599359989166, 0.04316981881856918, -0.013567132875323296, 0.01768929325044155, -0.014679653570055962, -0.010764739476144314, 0.021707192063331604, -0.002480626106262207, -0.0437682643532753, 0.016480764374136925, 0.06474028527736664, -0.0378865972161293, 0.007355077657848597, -0.004292752128094435, 0.019129328429698944, 0.009679704904556274, 0.007854369468986988, -0.002940400969237089, -0.031037263572216034, -0.004023248329758644, 0.03374912589788437, 0.03093167021870613, 0.048043832182884216, -0.025912007316946983, 0.014088465832173824, -0.00785855669528246, 0.04007229208946228, -0.008321849629282951, -0.03281112760305405, -0.02668452449142933, -0.021822448819875717, -0.05105428025126457, 0.03626536950469017, -0.00032904642284847796, -0.06693137437105179, -0.003999272361397743, 0.005149852018803358, -0.032899901270866394, 0.0011743223294615746, 0.005111649166792631, 0.017525751143693924, 0.0007993156323209405, -0.031008832156658173, -0.0009792515775188804, -0.04267985373735428, -0.017777403816580772, 0.02129712700843811, -0.06927188485860825, -0.022419629618525505, -0.019597215577960014, -0.009717346169054508, -0.0027862507849931717, -0.005957312416285276, -0.0647134929895401, 0.003710129065439105, -0.01571112871170044, 0.019977442920207977, -0.08221947401762009, 0.06724708527326584, 0.019709495827555656, -0.03513354808092117, -0.03384222462773323, 0.018448930233716965, 0.04838201031088829, 0.02158147282898426, 0.001404586131684482, 0.059129443019628525, -0.01986219547688961, 0.03605368733406067, -0.011523460038006306, 0.03144342079758644, -0.04501791298389435, -0.06629593670368195, -0.015716534107923508, 0.06346581131219864, -0.0018564057536423206, 0.0034730962943285704, -0.0142436558380723, -0.049403902143239975, -0.009229869581758976, 0.01933443360030651, 0.040566012263298035, 0.02335096336901188, 0.013537299819290638, -0.04792904853820801, 0.028754303231835365, 0.009280168451368809, 0.02896043471992016, 0.005260401871055365, -0.024400686845183372, -0.03452955186367035, -0.023324573412537575, 0.003972573205828667, -0.0003694767947308719, 0.02472223900258541, 0.04313879460096359, -0.04188569635152817, 0.0128716342151165, 0.10333365201950073, 0.047098856419324875, 0.008376765996217728, -0.02130124531686306, 0.01764862798154354, 0.04573458060622215, 0.018749013543128967, 0.01960613764822483, 0.0782092809677124, 0.0006650702562183142, -0.01334645226597786, 0.00276413862593472, 0.06668594479560852, 0.0035030946601182222, 0.016853176057338715, -0.04943959042429924, -0.06245223432779312, 0.044668592512607574, -0.04053989052772522, -0.016361640766263008, 0.047676797956228256, 0.07516952604055405, 0.0028978553600609303, 0.0034904158674180508, -0.02074495702981949, -0.07512467354536057, 0.05543731153011322, -0.017087826505303383, 0.007824077270925045, 0.020625649020075798, -0.0006599784246645868, 0.06860682368278503, 0.045655135065317154, -0.01842055842280388, 0.028942896053195, -0.07878551632165909, -0.06517431139945984, -0.005083117168396711, -0.028451262041926384, 0.06248842552304268, -0.007553476840257645, 0.021301589906215668, 0.03548119589686394, -0.006910824216902256, 0.0301296878606081, 0.009306071326136589, -0.028151394799351692, 0.0275470782071352, -0.041415292769670486, -0.06337465345859528, 0.06090304255485535, 0.028544006869196892, -0.02633710764348507, -0.03605775907635689, 0.02919258177280426, -0.018588842824101448, -0.0019868044182658195, 0.020486732944846153, -0.02932833507657051, 0.04359360784292221, 0.018339531496167183, 0.017423737794160843, -0.02486228756606579, 0.028311144560575485, -0.03793157637119293, 0.03736439719796181, 0.029222428798675537, -0.018942059949040413, 0.007166102062910795, 0.0005066296434961259, 0.111143559217453, 0.06550779193639755, -0.01992429792881012, -0.07390757650136948, 0.05087270960211754, 0.029105549678206444, -0.02434207685291767, 0.029149824753403664, -0.007193489000201225, -0.0069660902954638, -0.011690793558955193, -0.036635253578424454, -0.03204251080751419, 0.013998124748468399, -0.04770730808377266, 0.0039957002736628056, 0.05501127615571022, -0.016065072268247604, 0.056000515818595886, 0.008044317364692688, 0.006740390323102474, 0.001391498721204698, -0.04135720431804657, -0.0459350161254406, 0.055116917937994, 0.008550235070288181, -0.007713333237916231, 0.05345983803272247, -0.0061331214383244514, 0.002952851355075836, -0.02495981752872467, -0.009928993880748749, 0.04482750967144966, 0.04897204786539078, 0.0489056296646595, -0.000746428850106895, 0.041253264993429184, -0.055091843008995056, 0.011303484439849854, -0.023117896169424057, -0.0573463961482048, -0.0461806058883667, -0.04301146790385246, 0.014970660209655762, -0.008782955817878246, 0.020827986299991608, -0.031247315928339958, 0.044883910566568375, 0.0019362206803634763, 0.016673162579536438, -0.015237624756991863, 0.025249574333429337, 0.016939187422394753, 0.020820286124944687, -0.03139953315258026, -0.037325769662857056, 0.04905844107270241, -0.05901433899998665, -0.029699496924877167, -0.021335061639547348, -0.06245598942041397, 0.045749418437480927, -0.048332273960113525, -0.018016749992966652, -0.012944416143000126, 0.019559143111109734, 0.05398603156208992, 0.033659957349300385, -0.010598299093544483, 0.06940881162881851, 0.037174567580223083, 0.028823086991906166, 0.01193254068493843, -0.015383892692625523, 0.04755400866270065, -0.005641893018037081, 0.029185816645622253, 0.05397355556488037, -0.03892740607261658, 0.007640067022293806, -0.024219749495387077, 0.0196050014346838, -0.011284596286714077, -0.2680407166481018, 0.043658547103405, -0.03933907300233841, -0.05792972072958946, 0.011859247460961342, -0.04465026408433914, 0.0020500761456787586, -0.02581202983856201, -0.02427549660205841, -0.002168928971514106, -0.021608959883451462, -0.03753397613763809, -0.0021283100359141827, 0.02928357943892479, 0.013756465166807175, 0.012873715721070766, -0.013372453860938549, -0.05448015034198761, 0.01047096773982048, 0.02771853841841221, 0.013537486083805561, -0.04427143186330795, -0.0189028512686491, 0.018999695777893066, 0.018615100532770157, 0.053467798978090286, -0.09998131543397903, 0.02500595897436142, -0.05377838760614395, -0.029196498915553093, -0.001717014703899622, -0.021794792264699936, -0.009433227591216564, 0.005030271131545305, -0.009878452867269516, -0.032873883843421936, 0.06016591563820839, 0.0052022491581737995, 0.0164639949798584, 0.015133277513086796, -0.05498742312192917, -0.05315200239419937, -0.014311819337308407, -0.015081491321325302, 0.0735585018992424, 0.012604997493326664, -0.08021930605173111, -0.022671913728117943, -0.02037196233868599, 0.057925283908843994, -0.023501820862293243, -0.023852059617638588, -0.00077738834079355, 0.006516612134873867, -0.013282435946166515, -0.039588186889886856, -0.01999332755804062, -0.003295576898381114, -0.06199738383293152, -0.05217303708195686, -0.020379789173603058, -0.03472944349050522, 0.023820998147130013, -0.05847008898854256, -0.0134557681158185, -0.044971439987421036, -0.08364584296941757, -0.022562315687537193, 0.0461745522916317, 0.003535850904881954, -0.018694298341870308, 0.025561681017279625, -0.02241339534521103, -0.11614346504211426, -0.046706508845090866, -0.009941661730408669, 0.010772008448839188, 0.008161729201674461, -0.012570060789585114, 0.03651303052902222, -0.02784251607954502, -0.040189921855926514, -0.006004537455737591, 0.03796708211302757, 0.014111231081187725, 0.008293172344565392, 0.010973076336085796, -0.00834676343947649, -0.027659539133310318, 0.03079233318567276, 0.05880983918905258, -0.02176525630056858, -0.028622942045331, -0.00040031413664110005, 0.002080033766105771, 0.03082132712006569, 0.015344386920332909, 0.003464306937530637, 0.019869809970259666, 0.0511162243783474, 0.050020817667245865, -0.043912794440984726, 0.01481529138982296, -0.00962075125426054, -0.023406168445944786, -0.012617685832083225, -0.028775621205568314, 0.027727190405130386, 0.02046494372189045, 0.02785264514386654, 0.0016531026922166348, -0.02457471378147602, 0.020270008593797684, -0.05055547133088112, -0.012093882076442242, -0.012895003892481327, 0.026187121868133545, 0.03140921890735626, 0.040146082639694214, -0.004604598972946405, -0.06980537623167038, 0.03343360871076584, 0.03600217401981354, -0.003363877534866333, -0.07222846895456314, -0.02089604176580906, -0.03441326320171356, -0.026250645518302917, 0.017411954700946808, 0.021784458309412003, -0.031565550714731216, 0.02610444650053978, 0.0217767171561718, -0.0261465385556221, 0.04539543017745018, -0.01720072142779827, -0.037034813314676285, -0.03358354791998863, 0.022357672452926636, -0.015559914521872997, -0.023976458236575127, 0.00045995585969649255, -0.004325636196881533, 0.05259479209780693, 0.03339176997542381, 0.02120412141084671, 0.008037022314965725, -0.005568716675043106, 0.02005128748714924, 0.0031701806001365185, -0.027773384004831314, -0.022082604467868805, 0.005649488884955645, -0.038933802396059036, -0.00039966488839127123, -0.0070916758850216866, 0.05449901893734932, -0.016874393448233604, -0.06054329872131348, -0.012939125299453735, 0.026229819282889366, -0.08290618658065796, 0.034740835428237915, -0.009971150197088718, -0.0023068503942340612, 0.06169307231903076, -0.02772391587495804, 0.02458394318819046, -0.03191682696342468, -0.0019944077357649803, 0.009818706661462784, 0.024017637595534325, -0.03590097278356552, 0.014692037366330624, 0.01530380081385374, 0.01651914045214653, 0.00005502433850779198, 0.05403521656990051, 0.046036455780267715, 0.022423194721341133, -0.018856091424822807, -0.01686248369514942, 0.023759910836815834, 0.011262734420597553, 0.03176529332995415, 0.04669969156384468, -0.02908051386475563, -0.001957822358235717, -0.01969159208238125, 0.004545346833765507, 0.0036765881814062595, -0.004107242450118065, -0.052920300513505936, 0.017837131395936012, -0.02860860526561737, -0.057053469121456146, 0.049383632838726044, -0.01613900624215603, 0.015748538076877594, 0.06410128623247147, -0.007015000097453594, -0.017140883952379227, -0.018465638160705566, 0.038807593286037445, 0.05246500298380852, -0.04853774979710579, -0.01690402813255787, 0.016871336847543716, -0.039802223443984985, -0.010263734497129917, 0.02482999861240387, -0.05262616276741028, -0.02483331970870495, -0.013465890660881996, 0.022939739748835564, -0.045062147080898285, -0.0379287414252758, -0.013549167662858963, -0.0062582534737885, -0.005157107952982187, 0.030964190140366554, 0.004517120309174061, 0.010935967788100243, -0.011541446670889854, 0.006102645769715309, 0.05966858193278313, -0.009702245704829693, -0.012398812919855118, -0.002175892237573862, -0.010751346126198769, 0.0006717588985338807, -0.010194842703640461, 0.03299717232584953, 0.01640751026570797, -0.016587229445576668, 0.007763836067169905, -0.051939163357019424, 0.01344090886414051, -0.0047509437426924706, 0.0351373516023159, -0.005705595016479492, -0.009162764996290207, -0.053953152149915695, -0.012896619737148285, -0.010165683925151825, 0.001791284536011517, -0.00020612658408936113, -0.00480175856500864, 0.029590953141450882, 0.01240006648004055, 0.008393115364015102, 0.02414771355688572, 0.00220286613330245, -0.04105888307094574, 0.0378856398165226, -0.03800073638558388, -0.05236414447426796, -0.007751788478344679, -0.05548543483018875, -0.00342101464048028, 0.02287660725414753, 0.0035357344895601273, -0.03042418137192726, 0.05980614572763443, 0.05267282947897911, 0.03653955087065697, 0.03543933853507042, -0.007816174067556858, 0.02793055959045887, -0.04281076043844223, -0.0045538549311459064, -0.0840032696723938, 0.0034547888208180666, 0.028904175385832787, -0.014896024018526077, 0.015107306651771069, -0.0027259904891252518, -0.015035375021398067, -0.014292759820818901, -0.07305718958377838, -0.02669980376958847, 0.021329941228032112, -0.034960534423589706, 0.014526017010211945, 0.015140276402235031, -0.05374264717102051, 0.009668868966400623, 0.04398538917303085, -0.01775691658258438, -0.03415350615978241, -0.039562858641147614, 0.05002405121922493, -0.02388000674545765, 0.03710188716650009, -0.014721186831593513, -0.022969454526901245, 0.07470747083425522, 0.03091304749250412, 0.026344716548919678, 0.048228852450847626, -0.03242793306708336, 0.02672470547258854, 0.02963298372924328, 0.005088387057185173, -0.014667557552456856, 0.03802262246608734, -0.01392590906471014, -0.044369880110025406, 0.04135335236787796, 0.01919093355536461, -0.00955731887370348, -0.057702403515577316, 0.06586289405822754, 0.007196490187197924, -0.040017906576395035, -0.050560470670461655, 0.046580784022808075, -0.018626419827342033, -0.01827101781964302, -0.046317774802446365, 0.017827527597546577, -0.037368372082710266, 0.04371950775384903, -0.02133663184940815, 0.01470980141311884, 0.07606828212738037, 0.018358130007982254, 0.0006953903939574957, -0.003604923142120242, 0.09583664685487747, 0.10263942182064056, 0.052118606865406036, 0.024062655866146088, 0.08800677210092545, -0.005330500192940235, -0.028888724744319916, -0.018707508221268654, -0.04339931532740593, -0.014049242250621319, 0.03021642006933689, 0.013992279767990112, 0.062087249010801315, -0.0518789105117321, 0.07908282428979874, -0.0217900313436985, -0.020544111728668213, -0.004920543171465397, -0.03436654433608055, 0.03010437823832035, 0.06603401899337769, 0.017531953752040863, 0.05337635800242424, -0.04427680745720863, -0.025839747861027718, 0.013395863585174084, 0.003975097090005875, -0.011001070030033588, 0.03125843033194542, -0.023551687598228455, -0.0037824439350515604, -0.002746416488662362, 0.03322434797883034, 0.08923420310020447, -0.03851423040032387, -0.00942828319966793, -0.00657437602058053, 0.008784839883446693, -0.02718319557607174, -0.0034472686238586903, -0.003510681912302971, -0.019432520493865013, -0.009123427793383598, -0.049470651894807816, -0.03470082953572273, -0.028858622536063194, -0.04293376952409744, -0.005756828933954239, -0.013567493297159672, 0.0005438627558760345, -0.007397363428026438, -0.0008625395712442696, -0.002807639306411147, -0.03376910090446472, -0.039727162569761276, -0.061312541365623474, -0.07364320009946823, 0.009199529886245728, 0.006441637873649597, -0.004832616541534662, -0.025607846677303314, -0.0007180245011113584, -0.01640830934047699, -0.006905449088662863, 0.06367634981870651, -0.03970910608768463, -0.008885388262569904, 0.0017261755419895053, 0.0219600610435009, 0.029929079115390778, 0.02957313321530819, 0.061560098081827164, -0.00799289159476757, 0.01496527437120676, -0.04097474366426468, 0.015654200688004494, 0.04164014384150505, 0.024793654680252075, -0.02976183593273163, -0.084698885679245, -0.002371582668274641, 0.003269736422225833, -0.03433040902018547, -0.06811007112264633, -0.015499507077038288, 0.04454465210437775, 0.020709851756691933, 0.04391583055257797, -0.007386628072708845, -0.006255615036934614, -0.024818506091833115, 0.015645520761609077, -0.005518094636499882, -0.017835436388850212, 0.024680709466338158, -0.024149615317583084, 0.06782983243465424, 0.02134833298623562, -0.022539597004652023, -0.008339331485331059, -0.02066369727253914, 0.015132888220250607, -0.014164647087454796, -0.04907700791954994, -0.04244183376431465, -0.0341709740459919, -0.09384006261825562, -0.05754072964191437, 0.02809194289147854, -0.007839212194085121, -0.0451870933175087, -0.015279898419976234, 0.029804343357682228, -0.01665090210735798, 0.03817935287952423, -0.03911668062210083, 0.04895535483956337, -0.02184024266898632, -0.03975244611501694, -0.016534270718693733, 0.003811408532783389, -0.020123686641454697, 0.010050499811768532, 0.013361921533942223, -0.0513494610786438, -0.02266792207956314, -0.03525615110993385, 0.037512145936489105, 0.02962888590991497, 0.042322710156440735, 0.00040133020957000554 ]
[ -0.035376761108636856, -0.029275475069880486, -0.04692459478974342, -0.01939890719950199, 0.06744738668203354, -0.06083066388964653, -0.006121634505689144, 0.021908747032284737, 0.028111644089221954, -0.015996264293789864, 0.04407868534326553, -0.03008192963898182, 0.031205490231513977, -0.004838877357542515, 0.05814558267593384, 0.0025452752597630024, -0.01670183427631855, -0.046338632702827454, -0.013368112035095692, 0.05325149744749069, -0.042400144040584564, -0.058840759098529816, -0.015177984721958637, -0.0614212341606617, 0.02943398989737034, 0.0534202866256237, 0.04637374356389046, -0.04545673727989197, -0.01861422136425972, -0.1990959793329239, -0.005684322211891413, 0.010724326595664024, 0.04094887897372246, 0.007744713686406612, 0.02973729372024536, 0.023882189765572548, 0.077347531914711, -0.035130467265844345, 0.01906850002706051, 0.0190232302993536, 0.006574853323400021, 0.007997872307896614, -0.042506083846092224, -0.005522275343537331, 0.028514234349131584, 0.04597434028983116, -0.008526491932570934, -0.03537400811910629, -0.04501772299408913, -0.006488398183137178, -0.0043969363905489445, -0.021916450932621956, -0.008684554137289524, 0.01164695993065834, 0.028316861018538475, 0.0398206003010273, 0.029950005933642387, 0.06200697273015976, 0.026212552562355995, 0.0531444288790226, 0.017295047640800476, 0.00928917434066534, -0.13579343259334564, 0.04866132140159607, 0.02773408032953739, -0.013025020249187946, -0.0502731017768383, -0.03260521590709686, -0.0767970085144043, 0.07893867045640945, 0.06048871949315071, 0.023797687143087387, -0.05924142524600029, 0.04098816215991974, -0.013630110770463943, 0.013781626708805561, -0.02149943634867668, 0.027606498450040817, 0.04148521646857262, -0.03947405889630318, -0.055347442626953125, 0.03943420201539993, -0.022845080122351646, -0.0057075913064181805, -0.034486837685108185, 0.052520737051963806, -0.01959775760769844, 0.013393258675932884, -0.006549841724336147, 0.04332234337925911, 0.02286447025835514, 0.030605362728238106, 0.01966736651957035, 0.01059471070766449, -0.09253649413585663, -0.04940282180905342, 0.005878868047147989, 0.018449218943715096, 0.016030477359890938, 0.39109015464782715, -0.016784008592367172, 0.00030266476096585393, 0.07575248181819916, 0.05973193421959877, -0.018611250445246696, -0.020352885127067566, 0.010884033516049385, -0.056711699813604355, 0.03636601194739342, -0.00008224185148719698, 0.0016248649917542934, -0.06738116592168808, 0.04371974989771843, -0.08417831361293793, 0.049705903977155685, 0.028935648500919342, 0.06878279894590378, 0.04431941360235214, -0.016406849026679993, 0.007364531047642231, -0.023298349231481552, 0.011071733199059963, 0.03842225298285484, 0.016138166189193726, 0.01745246909558773, 0.036502763628959656, 0.009409032762050629, 0.04593297839164734, 0.03240398317575455, 0.030900312587618828, 0.05471164360642433, 0.02316589094698429, -0.06007465347647667, 0.03202785924077034, -0.049751829355955124, 0.021343082189559937, 0.037866074591875076, -0.042584389448165894, -0.027172429487109184, 0.012514826841652393, 0.005485949106514454, -0.03435095027089119, 0.0409296415746212, 0.01272585615515709, -0.03264346346259117, 0.15349242091178894, -0.051057685166597366, -0.0366026796400547, -0.0391656868159771, -0.03949683532118797, 0.007931397296488285, 0.032466571778059006, -0.02152816765010357, -0.05012792721390724, -0.027799155563116074, 0.0059011951088905334, 0.08847793936729431, 0.0024992134422063828, -0.07358518987894058, 0.03849271684885025, 0.0026225820183753967, -0.03079884871840477, -0.029105357825756073, 0.07793458551168442, 0.04973869025707245, -0.1357753723859787, 0.026265140622854233, 0.033592235296964645, -0.006165686994791031, -0.08810777217149734, 0.03957688435912132, 0.014548241160809994, -0.047910045832395554, -0.008585660718381405, 0.060168713331222534, -0.01927286572754383, -0.028616053983569145, -0.017955146729946136, 0.03292723745107651, 0.003898554714396596, -0.003471159841865301, 0.03682532534003258, -0.04185807704925537, -0.01564709097146988, -0.06120147928595543, -0.00832151249051094, -0.05402308702468872, 0.023590723052620888, -0.045030377805233, -0.04310811683535576, -0.033848267048597336, 0.0055960495956242085, -0.04463161528110504, 0.08543691784143448, -0.052192188799381256, -0.0246481541544199, -0.025621464475989342, -0.0018868130864575505, -0.05772364139556885, -0.007997729815542698, 0.018438657745718956, 0.01029968447983265, -0.03716498985886574, 0.010392094030976295, -0.09111867100000381, 0.0005053852801211178, 0.04111967235803604, -0.01653105951845646, 0.060368284583091736, 0.002437698421999812, -0.03814152255654335, -0.026459548622369766, -0.02743036113679409, 0.015203475020825863, 0.00798018742352724, -0.02695157378911972, -0.00614201882854104, 0.011440440081059933, 0.018753724172711372, 0.0782339870929718, 0.006679339800029993, 0.002585501642897725, -0.03727956861257553, -0.3569861352443695, -0.04227059334516525, -0.02904329262673855, 0.005991814658045769, 0.03398844599723816, -0.01900012418627739, 0.04089556634426117, 0.011623947881162167, -0.009505673311650753, 0.030178895220160484, 0.0800882950425148, 0.016543669626116753, -0.010316709987819195, -0.0747682973742485, 0.001904118456877768, 0.05751369893550873, -0.020283043384552002, 0.024564728140830994, -0.030272921547293663, 0.004917536396533251, 0.02714134007692337, -0.06291323900222778, -0.014845773577690125, -0.04406465217471123, -0.010706206783652306, -0.005870309192687273, 0.12845797836780548, -0.0009754674974828959, -0.01587478443980217, -0.040014591068029404, 0.02063038758933544, 0.004761897958815098, -0.06240440905094147, -0.0585753507912159, 0.013699501752853394, -0.006325142458081245, 0.03400513529777527, -0.012471182271838188, 0.0037887466605752707, -0.0016635915962979198, -0.05496931076049805, 0.0029196208342909813, -0.01714671403169632, -0.0325411781668663, -0.04566648229956627, 0.0055971709080040455, -0.029499297961592674, -0.01833745278418064, -0.00311033776961267, 0.04021027311682701, 0.00481304619461298, 0.024566050618886948, 0.006876832339912653, 0.006786232814192772, 0.0021818960085511208, -0.024678515270352364, -0.061909254640340805, -0.019403042271733284, -0.0067923786118626595, 0.05606768652796745, -0.019968867301940918, 0.02386302687227726, 0.00002910727016569581, -0.07853485643863678, 0.04844779521226883, -0.0006077949074096978, -0.011169963516294956, 0.019307268783450127, 0.030592555180191994, -0.021905802190303802, -0.008655352517962456, 0.07622075825929642, -0.016164522618055344, 0.018461357802152634, 0.04015248268842697, 0.03790492191910744, 0.0010577577631920576, 0.0031965961679816246, 0.028348326683044434, -0.01115009281784296, 0.0388784259557724, -0.07163585722446442, 0.06942950934171677, -0.030365385115146637, -0.012648561038076878, 0.06894926726818085, 0.028675798326730728, -0.0324295312166214, 0.05081978440284729, 0.006709245499223471, -0.028085723519325256, -0.013029870577156544, -0.00814408902078867, -0.05188445746898651, 0.03988359868526459, -0.030364742502570152, -0.2511707842350006, 0.03863953799009323, 0.005567934364080429, 0.040912024676799774, -0.005476736463606358, 0.01621197536587715, 0.037578944116830826, -0.02012507990002632, 0.021413441747426987, -0.017545178532600403, 0.059508610516786575, 0.07453247904777527, -0.004826793912798166, -0.004800829105079174, -0.0034818071871995926, 0.021183481439948082, 0.013447637669742107, 0.0012679933570325375, -0.0082906074821949, 0.00569265428930521, 0.048646267503499985, -0.02620183490216732, 0.17183175683021545, 0.0018604559591040015, 0.019805358722805977, 0.029575910419225693, -0.05291765555739403, 0.0028879388701170683, 0.02358313836157322, -0.03694970905780792, -0.01734103076159954, 0.023398328572511673, -0.00016864143253769726, 0.00854266993701458, 0.010786209255456924, -0.027643313631415367, 0.0010414165444672108, 0.039641231298446655, 0.03506389260292053, -0.055129554122686386, 0.0038050797302275896, -0.019177278503775597, -0.057444773614406586, 0.006801391486078501, 0.10782640427350998, -0.013672714121639729, -0.01648912951350212, 0.011225108988583088, -0.03909815475344658, -0.010228371247649193, -0.026735026389360428, -0.0686783567070961, -0.019145196303725243, 0.002179230097681284, 0.02967708930373192, 0.07685237377882004, 0.01493210718035698, -0.022249411791563034, 0.008216681890189648, 0.012976625002920628, -0.025354944169521332, -0.03159356117248535, 0.11566808819770813, -0.027367055416107178, 0.042534392327070236 ]
[ 0.023548979312181473, 0.04105420038104057, -0.004809828475117683, 0.055706243962049484, -0.028151623904705048, 0.011185620911419392, -0.02689029648900032, 0.0013216875959187746, -0.02349472977221012, -0.012762651778757572, -0.031140020117163658, 0.022568924352526665, 0.04930613934993744, 0.012341395020484924, 0.004234852269291878, 0.01315962616354227, -0.02117684669792652, 0.03324882313609123, 0.029715707525610924, -0.022055013105273247, -0.036814771592617035, -0.02154499664902687, 0.03629673272371292, -0.03712109103798866, -0.009529255330562592, -0.006600609980523586, -0.02685101144015789, -0.01157885417342186, 0.025327520444989204, -0.10866325348615646, -0.027879992499947548, -0.02839774452149868, -0.030403489246964455, 0.024280769750475883, -0.03298807516694069, 0.003045574761927128, 0.03067130036652088, 0.022053593769669533, 0.0233974140137434, 0.037347447127103806, 0.01265050284564495, -0.009510916657745838, -0.026841189712285995, 0.0012641629436984658, 0.00807788223028183, 0.0050994399935007095, -0.03158505633473396, -0.003773720236495137, -0.006694496609270573, -0.026879290118813515, -0.05020011588931084, -0.027140842750668526, -0.020087290555238724, 0.016484111547470093, 0.025135450065135956, 0.00213855248875916, -0.037537652999162674, -0.028470978140830994, -0.000047291690862039104, -0.003403331618756056, 0.05197558179497719, -0.022679975256323814, -0.051494237035512924, -0.027555720880627632, -0.006323378533124924, -0.011717653833329678, 0.0023397200275212526, 0.024280229583382607, 0.0012682420201599598, 0.004652807023376226, -0.030434999614953995, 0.04248391091823578, -0.0817250981926918, -0.014832567423582077, -0.03549553081393242, 0.02900945581495762, 0.0475914403796196, -0.0005271963309496641, 0.0100820641964674, -0.025500118732452393, 0.008887553587555885, 0.019620582461357117, -0.024403048679232597, 0.03232664242386818, -0.032290127128362656, 0.010454745031893253, -0.0028995038010179996, -0.02842775732278824, 0.009980346076190472, 0.002855730475857854, -0.03716731071472168, 0.01884990744292736, -0.016261190176010132, 0.006585205905139446, -0.09983594715595245, -0.006122941616922617, 0.007624620571732521, 0.012996051460504532, 0.006075264886021614, 0.8103179931640625, 0.00503524299710989, -0.03248089179396629, 0.00872130785137415, 0.004647993482649326, 0.0014260654570534825, 0.023010268807411194, 0.005544239189475775, 0.012197330594062805, -0.017460105940699577, 0.0015625491505488753, -0.012422332540154457, 0.003870743326842785, -0.020018156617879868, 0.01061240304261446, 0.008062229491770267, 0.016330460086464882, 0.0366772897541523, 0.011546122841536999, 0.004605038557201624, 0.026339657604694366, 0.019994664937257767, 0.03651850298047066, -0.029882853850722313, -0.024314595386385918, -0.011686533689498901, -0.1895616203546524, 0.0030801366083323956, -6.57918531088671e-33, 0.0684887021780014, 0.013532690703868866, 0.059352751821279526, 0.0006208278355188668, 0.0067824083380401134, 0.042918045073747635, -0.022281598299741745, -0.013177505694329739, -0.018612327054142952, -0.015929609537124634, -0.018622945994138718, 0.01900673098862171, 0.006813502870500088, -0.026198208332061768, 0.007003152742981911, -0.004816470667719841, 0.01829366758465767, 0.018340740352869034, -0.017169205471873283, 0.002618970815092325, 0.01265675388276577, 0.011384290643036366, -0.05831369385123253, 0.048856619745492935, 0.0027565942145884037, 0.0244812723249197, -0.009978686459362507, -0.013991612009704113, -0.004865148104727268, -0.050476159900426865, -0.03817073628306389, 0.029945900663733482, 0.02216969057917595, -0.010343246161937714, -0.001849187770858407, -0.0716613158583641, -0.02188451960682869, 0.008961125276982784, -0.026875421404838562, -0.07705520838499069, -0.05520857125520706, 0.0012907525524497032, 0.003560830606147647, -0.03652185946702957, -0.02923441119492054, -0.012070729397237301, -0.01856686733663082, 0.024839414283633232, -0.019775288179516792, 0.020563947036862373, 0.020662451162934303, 0.0057806819677352905, -0.011523001827299595, 0.0561632364988327, -0.03766646236181259, -0.003616142086684704, 0.009922119788825512, 0.011355984956026077, -0.016652869060635567, 0.007468200754374266, 0.0413341298699379, -0.02099701389670372, -0.006610693410038948, 0.04791439324617386, 0.030765250325202942, 0.02156265452504158, -0.018528636544942856, 0.01034623198211193, 0.0033710715360939503, 0.04387018457055092, -0.061085812747478485, 0.09325991570949554, -0.010827384889125824, -0.031053584069013596, 0.02824721299111843, -0.05177449807524681, -0.00941484235227108, -0.021303221583366394, -0.0022190662566572428, 0.0632123127579689, -0.028919780626893044, -0.020169734954833984, 0.025272874161601067, -0.020515281707048416, -0.007289998698979616, -0.0019316338002681732, 0.0689508318901062, 0.033277105540037155, 0.007882359437644482, 0.03710709512233734, 0.052899911999702454, 0.043105680495500565, -0.003985594492405653, 0.0023075994104146957, 0.0029661771841347218, 6.432173579269059e-33, 0.011362427845597267, 0.009040186181664467, -0.0009863143786787987, -0.003664144780486822, 0.056296732276678085, 0.010202850215137005, 0.024600794538855553, -0.0028321705758571625, -0.04477878287434578, 0.054287586361169815, 0.009903589263558388, -0.044176045805215836, 0.0051200129091739655, 0.034414004534482956, 0.0724487155675888, -0.005434852093458176, 0.014586457051336765, -0.07269565016031265, 0.0005283554783090949, 0.021508565172553062, -0.021730920299887657, 0.01210108958184719, -0.0022743765730410814, 0.022174159064888954, 0.0475943498313427, 0.013698686845600605, 0.0203248243778944, -0.011275452561676502, -0.025914305821061134, 0.002396166091784835, -0.013440114445984364, -0.051541320979595184, -0.008170179091393948, -0.029202766716480255, 0.023974915966391563, 0.026431698352098465, -0.01980441063642502, -0.00024379757815040648, 0.04172573611140251, -0.019229846075177193, 0.029112884774804115, 0.014120886102318764, -0.027555832639336586, 0.06274539232254028, 0.009730903431773186, 0.013413950800895691, -0.0031638985965400934, -0.002982764272019267, -0.0025075601879507303, 0.02456955797970295, 0.01593146286904812, 0.0029420158825814724, -0.028321854770183563, 0.029414113610982895, 0.0076095485128462315, -0.0440121553838253, 0.0009601497440598905, 0.04796326532959938, 0.005493959411978722, 0.011294505558907986, -0.019936885684728622, -0.027162771672010422, -0.03467662259936333, 0.040651921182870865, -0.01193256862461567, -0.036834508180618286, -0.02852381020784378, 0.003068827325478196, 0.012074422091245651, -0.0017107318853959441, 0.0024355417117476463, 0.02672240324318409, -0.013237278908491135, 0.0193680077791214, 0.03717106580734253, -0.04285046085715294, -0.010869924910366535, -0.024463465437293053, -0.05229433998465538, 0.0221567302942276, 0.008082722313702106, 0.0052455575205385685, 0.02214813604950905, 0.015425866469740868, -0.012790614739060402, 0.017938774079084396, -0.014294733293354511, 0.02164328843355179, -0.021670907735824585, 0.008786451071500778, 0.01721140183508396, -0.042919937521219254, -0.030240977182984352, 0.02276170626282692, -0.04195680469274521, -1.2508179381143236e-8, -0.06549876928329468, 0.010206632316112518, -0.019153336063027382, -0.013734771870076656, 0.02349761500954628, 0.017637452110648155, 0.015636276453733444, 0.014030336402356625, -0.012021657079458237, 0.032235030084848404, 0.029682794585824013, -0.014303269796073437, 0.026187656447291374, 0.02357240952551365, 0.015823421999812126, -0.04276547580957413, 0.005432735197246075, -0.030931619927287102, 0.03167467936873436, 0.010277832858264446, 0.0010942837689071894, -0.0012847078032791615, -0.04862302914261818, 0.03603599593043327, -0.0034210423473268747, -0.01314648985862732, 0.017690666019916534, -0.05731256306171417, 0.006295778322964907, -0.016989760100841522, 0.01770944520831108, -0.018921291455626488, -0.004316224716603756, 0.01595788635313511, -0.056953124701976776, -0.0076245274394750595, 0.011504518799483776, 0.0402374193072319, -0.02047300711274147, 0.034516625106334686, -0.0013094316236674786, -0.0018585121724754572, -0.03564630448818207, -0.013604982756078243, -0.03231824189424515, -0.01596924476325512, -0.011216538958251476, -0.03187563642859459, 0.038157664239406586, -0.04833812266588211, -0.012123098596930504, -0.02539069950580597, 0.0336913987994194, 0.015149654820561409, 0.025781363248825073, -0.018334057182073593, 0.024261120706796646, -0.0157566349953413, -0.025256482884287834, -0.0032973417546600103, 0.004484109114855528, -0.009479831904172897, -0.02297052927315235, -0.003959400113672018 ]
neo4jcypher-finding-the-most-connected-node-on-the-graph
https://markhneedham.com/blog/2012/06/16/neo4jcypher-finding-the-most-connected-node-on-the-graph
false
2012-06-10 23:30:23
CSV parsing/UTF-8 encoding
[ "utf-8" ]
[ "Software Development" ]
I was recently trying to parse a CSV file which I'd converted from an Excel spreadsheet but was having problems with characters beyond the standard character set. This is http://stackoverflow.com/questions/1549139/ruby-cannot-parse-excel-file-exported-as-csv-in-os-x[an example] of what was going wrong: [source,ruby] ---- > require 'csv' > people = CSV.open("sponsors.csv", 'r', ?,, ?\r).to_a ["Erik D\366rnenburg", "N/A"] > people.each { |sponsee, sponsor| puts "#{sponsee} #{sponsor}" } Erik D?rnenburg N/A ---- I came across a Ruby gem called +++<cite>+++http://snippets.aktagon.com/snippets/159-Detecting-file-data-encoding-with-Ruby-and-the-chardet-RubyGem[chardet]+++</cite>+++ which allowed me to work out the character set of Erik's name like so: [source,ruby] ---- > require 'chardet' > require 'UniversalDetector' > UniversalDetector::chardet("Erik D\366rnenburg") => {"encoding"=>"ISO-8859-2", "confidence"=>0.879630020576305} ---- I'd forgotten that you can work out the same thing by making use of +++<cite>+++file+++</cite>+++ like so: [source,text] ---- > file sponsors.csv sponsors.csv: ISO-8859 text, with CR line terminators ---- We can then make use of +++<cite>+++http://docs.moodle.org/22/en/Converting_files_to_UTF-8[iconv]+++</cite>+++ to change the file encoding like this: [source,text] ---- > iconv -f iso-8859-2 -t utf-8 sponsors.csv > sponsors_conv.csv ---- [source,text] ---- > file sponsors_conv.csv sponsors_conv.csv: UTF-8 Unicode text, with CR line terminators ---- Now if we parse the UTF-8 encoded file it doesn't ruin Erik's name! [source,ruby] ---- > people = CSV.open("sponsors.csv", 'r', ?,, ?\r).to_a ["Erik D\303\266rnenburg", "N/A"] > people.each { |sponsee, sponsor| puts "#{sponsee} #{sponsor}" } Erik Dörnenburg N/A ---- Hopefully I'll now remember what to do next time I come across this problem!
null
null
[ -0.004391108639538288, 0.01653393544256687, -0.0480019636452198, 0.05239420011639595, 0.09172133356332779, 0.005410747602581978, 0.009311847388744354, 0.05346225947141647, 0.019831066951155663, -0.0077385203912854195, -0.045990779995918274, -0.01588616892695427, -0.05963553860783577, 0.011019289493560791, -0.010571736842393875, 0.06823992729187012, 0.05394101142883301, 0.018665360286831856, -0.000039482365536969155, -0.011189455166459084, 0.022007819265127182, 0.052037160843610764, 0.008754310198128223, 0.021837200969457626, 0.010811349377036095, -0.017342273145914078, -0.016004925593733788, 0.002475936431437731, -0.05526868999004364, -0.0007041643257252872, 0.041214488446712494, 0.02178093045949936, 0.02071586437523365, -0.00941681582480669, 0.015141937881708145, 0.017149735242128372, -0.028943968936800957, 0.00276932492852211, 0.00021246535470709205, 0.028669817373156548, -0.047636061906814575, 0.038702014833688736, -0.013881483115255833, 0.02010442689061165, -0.05399578437209129, -0.003644145093858242, -0.05668823421001434, 0.0209942813962698, -0.017387190833687782, 0.003480715211480856, -0.030417190864682198, 0.030448459088802338, -0.008284559473395348, -0.06880716234445572, 0.020898859947919846, 0.055538322776556015, -0.0078929103910923, -0.06549276411533356, 0.03658301755785942, -0.03163762763142586, 0.014387780800461769, -0.025849392637610435, -0.006101864855736494, 0.026811562478542328, 0.026018815115094185, -0.03790271282196045, -0.011770090088248253, 0.05229505896568298, -0.04939119517803192, -0.03489622101187706, 0.007173549849539995, 0.01519778836518526, -0.015443137846887112, -0.0214073546230793, 0.031994305551052094, -0.05729785934090614, 0.006027515511959791, 0.052136149257421494, 0.0045106434263288975, 0.07021462917327881, -0.03499477356672287, 0.04019845277070999, -0.006428867112845182, 0.017079997807741165, 0.0037583850789815187, -0.04180486127734184, -0.03333926573395729, -0.010512491688132286, -0.03290211409330368, 0.06851666420698166, 0.024357734248042107, -0.025299111381173134, 0.01480523869395256, 0.01784192956984043, -0.029917312785983086, 0.0017321208724752069, -0.027816254645586014, 0.008206965401768684, -0.028281429782509804, -0.021230053156614304, -0.08277972042560577, -0.033264920115470886, 0.03209575265645981, 0.04126289486885071, -0.07333166152238846, 0.020455464720726013, 0.0015578391030430794, 0.022659840062260628, 0.021391279995441437, 0.009566327556967735, -0.026866672560572624, -0.01600429229438305, -0.04030882567167282, -0.01468055509030819, -0.07245966047048569, 0.02910131774842739, 0.03173568472266197, -0.034904588013887405, -0.016311420127749443, 0.042389340698719025, 0.05666886642575264, 0.034364283084869385, -0.010285033844411373, 0.07232049107551575, 0.02724955603480339, 0.005354864057153463, -0.014607544057071209, 0.05344147980213165, -0.03406304493546486, -0.06201808527112007, -0.035059764981269836, 0.07222200185060501, -0.01421782374382019, 0.014773561619222164, -0.008617820218205452, -0.0049161785282194614, -0.028071848675608635, -0.007441036868840456, 0.031800173223018646, 0.020967794582247734, 0.007294266019016504, -0.026365229859948158, -0.01601518876850605, 0.022510286420583725, 0.033417992293834686, 0.018904365599155426, -0.011125748977065086, -0.01168224960565567, -0.01849515363574028, 0.025594251230359077, 0.0314205065369606, 0.004803513176739216, 0.0834374651312828, -0.01462983526289463, 0.012715614400804043, 0.08561048656702042, 0.027974460273981094, 0.014135919511318207, -0.030915431678295135, 0.003289749613031745, 0.013258595019578934, 0.04610389098525047, -0.018463831394910812, 0.024495825171470642, 0.012896311469376087, -0.006501793395727873, 0.009048989973962307, 0.036661792546510696, -0.035091206431388855, 0.012467891909182072, -0.04860445857048035, -0.01453574001789093, 0.06499296426773071, -0.04317354038357735, 0.01127498410642147, 0.041870590299367905, 0.06249643862247467, 0.05118855834007263, 0.0467880479991436, -0.02292804792523384, -0.09406597167253494, 0.05632559210062027, -0.013260038569569588, 0.02941344678401947, 0.030156316235661507, -0.0017213522223755717, 0.07024671137332916, 0.034439828246831894, 0.014596409164369106, 0.046140749007463455, -0.07429560273885727, -0.08013925701379776, -0.03363894671201706, -0.013245818205177784, 0.05295468121767044, -0.02902085706591606, -0.0002792705490719527, 0.04924240708351135, -0.004394182004034519, 0.013785592280328274, -0.015858285129070282, -0.015094106085598469, 0.03995976224541664, -0.0416623055934906, -0.047420259565114975, 0.059022825211286545, 0.05958632379770279, -0.013817894272506237, -0.018016722053289413, 0.016693217679858208, -0.01011382695287466, 0.015857234597206116, 0.036823518574237823, -0.021932171657681465, 0.030794452875852585, 0.0297545213252306, 0.030610360205173492, -0.014640677720308304, 0.039892446249723434, -0.06874068081378937, 0.048740554600954056, -0.00615436676889658, 0.0004655093071050942, -0.014914722181856632, -0.008209251798689365, 0.13300670683383942, 0.06263455003499985, 0.010464873164892197, -0.06616421043872833, 0.004250623751431704, -0.007114262320101261, -0.06254280358552933, 0.03348264470696449, -0.005151933990418911, -0.02007061243057251, 0.0011004835832864046, -0.05258787050843239, -0.03206478804349899, 0.01332356408238411, -0.017096374183893204, -0.007560862228274345, 0.07729737460613251, 0.007576546631753445, 0.027319621294736862, -0.006682081613689661, -0.01916080340743065, 0.007714617531746626, -0.045181453227996826, -0.06356418877840042, 0.0015141140902414918, 0.03483869507908821, -0.011316430754959583, 0.026358241215348244, -0.032942574471235275, -0.02554056979715824, -0.009669856168329716, -0.053795844316482544, 0.024347689002752304, 0.06625620275735855, 0.023827750235795975, -0.015355397947132587, 0.060642607510089874, -0.07136498391628265, 0.0005461565451696515, -0.012833395972847939, -0.03274191543459892, -0.023132523521780968, -0.027491575106978416, -0.000090195877419319, 0.011600466445088387, 0.012505367398262024, 0.0271089356392622, -0.0051664807833731174, 0.00790199264883995, -0.0005074056680314243, 0.009465411305427551, 0.034877777099609375, -0.00882121454924345, 0.0006702975369989872, -0.030282611027359962, -0.005218207370489836, 0.04556446895003319, -0.04562035948038101, -0.015674272552132607, -0.007842553779482841, -0.06714702397584915, 0.023798123002052307, -0.0668700635433197, -0.043466951698064804, -0.05958794802427292, -0.0010596996871754527, 0.024346303194761276, 0.005777871701866388, 0.005283206235617399, 0.05121561139822006, 0.014251215383410454, 0.027916960418224335, 0.01679871790111065, 0.05983822047710419, 0.05646387115120888, 0.014314391650259495, 0.03128108009696007, 0.08566548675298691, 0.008660859428346157, -0.02795296534895897, -0.059487517923116684, 0.002610814291983843, -0.02539663389325142, -0.2752940356731415, 0.03677664324641228, -0.06354520469903946, -0.040953345596790314, 0.024910058826208115, -0.036713868379592896, 0.009180539287626743, -0.06205490604043007, -0.020708931609988213, 0.00618639774620533, -0.025939634069800377, -0.01452889945358038, -0.03351427987217903, 0.035696789622306824, 0.00576388044282794, 0.026911208406090736, 0.018014689907431602, -0.053605977445840836, 0.003977918531745672, 0.05476544424891472, 0.019274575635790825, -0.03035326488316059, 0.0012368045281618834, 0.07676917314529419, 0.02995523437857628, 0.0718982070684433, -0.07967273890972137, 0.05428304150700569, -0.04021874815225601, -0.044297002255916595, 0.01263427734375, -0.0352514386177063, -0.004538208246231079, -0.01701260730624199, 0.0013204620918259025, -0.039973992854356766, 0.04622906073927879, 0.035736825317144394, 0.01636011339724064, 0.007437177002429962, -0.03911382332444191, -0.057663533836603165, 0.007985938340425491, -0.029457055032253265, 0.08109023422002792, -0.020106373354792595, -0.05782304331660271, -0.01625089719891548, -0.043167080730199814, 0.07877921313047409, -0.020869560539722443, -0.0372353121638298, -0.008967631496489048, 0.051509104669094086, 0.01329701580107212, 0.016624558717012405, -0.0008804175304248929, -0.010587967000901699, -0.028801776468753815, -0.032103974372148514, 0.005533012095838785, -0.055764250457286835, -0.009664327837526798, -0.044981151819229126, -0.01930796355009079, -0.05826297402381897, -0.06585509330034256, -0.007935259491205215, 0.045661408454179764, 0.04908017814159393, -0.041123829782009125, 0.022126521915197372, 0.011663098819553852, -0.0874042734503746, 0.00384932360611856, -0.038580700755119324, -0.010636739432811737, -0.00781757477670908, -0.016071036458015442, 0.046133801341056824, -0.04145613685250282, -0.047994405031204224, 0.03024735487997532, -0.0006898760912008584, 0.02362966351211071, -0.023668361827731133, 0.013371127657592297, -0.0032273409888148308, 0.005674145650118589, 0.0023509422317147255, 0.05949682369828224, -0.040821511298418045, -0.023772623389959335, -0.008492114953696728, -0.010362309403717518, 0.027969859540462494, 0.02814490720629692, -0.006180954165756702, 0.03036951832473278, 0.04645582661032677, -0.004175753798335791, -0.07223454117774963, 0.004481836222112179, -0.0684846043586731, -0.02493305876851082, 0.0004936692421324551, -0.04204399138689041, 0.014746722765266895, 0.019085310399532318, 0.02326662838459015, 0.0046966057270765305, -0.05532165989279747, 0.010168914683163166, -0.04534320905804634, -0.03411710634827614, -0.0027009982150048018, 0.03448152542114258, 0.000018062868548440747, 0.03272086754441261, 0.00030111445812508464, -0.047743942588567734, 0.013785378076136112, 0.029078766703605652, -0.03161187097430229, -0.057492539286613464, -0.015097028575837612, 0.02995074912905693, 0.006346931681036949, -0.02165454812347889, -0.017824945971369743, -0.04559784382581711, -0.010914536193013191, 0.013641971163451672, -0.03757966682314873, 0.03385376185178757, 0.007881972938776016, -0.047099027782678604, -0.0109536899253726, -0.02342900075018406, 0.009255047887563705, 0.005844804923981428, -0.021199224516749382, 0.011492079123854637, 0.029284708201885223, 0.049464304000139236, -0.002775631146505475, 0.0353383906185627, 0.007981287315487862, 0.0125706372782588, 0.02803679369390011, 0.0026134878862649202, -0.037872813642024994, 0.01869177259504795, 0.0013933877926319838, -0.04859241098165512, -0.01617213897407055, 0.04196079075336456, 0.02347576431930065, 0.002566928043961525, -0.026796981692314148, 0.04977385699748993, -0.06051654368638992, -0.0032664828468114138, -0.031775813549757004, 0.004169614054262638, 0.05023559182882309, -0.0006628133123740554, 0.0067726075649261475, -0.007379892747849226, 0.036077968776226044, -0.0035912576131522655, 0.05321324244141579, -0.01985669508576393, -0.0009242582600563765, -0.001190593116916716, 0.0018407540628686547, 0.013729902915656567, 0.0233877282589674, 0.029329294338822365, 0.024341711774468422, -0.017084551975131035, -0.025532541796565056, 0.0008209539228118956, 0.026727380231022835, 0.03037199191749096, 0.03756532445549965, -0.03284194692969322, 0.0053832619450986385, -0.023243512958288193, -0.04575524106621742, -0.02292679436504841, -0.016515303403139114, -0.030674371868371964, -0.005359025206416845, -0.04577532783150673, -0.05951462313532829, 0.01771242544054985, 0.015008381567895412, 0.0005356004112400115, 0.04590155929327011, -0.022629862651228905, 0.01043025404214859, -0.026056520640850067, -0.01575973443686962, 0.05770845338702202, -0.05433768406510353, -0.004674648866057396, -0.022213440388441086, -0.004805772565305233, 0.01109921745955944, 0.013177593238651752, -0.06048737093806267, 0.004103800281882286, -0.006207616999745369, 0.025396324694156647, -0.0455392524600029, -0.04573386162519455, -0.029373105615377426, -0.008453424088656902, -0.028692323714494705, 0.014251000247895718, -0.017407746985554695, 0.02947225049138069, -0.004509815480560064, -0.020134519785642624, 0.02178737334907055, 0.00613927748054266, 0.0010621057590469718, 0.01633116789162159, -0.01682005450129509, 0.013097018003463745, -0.030780063942074776, 0.054434582591056824, 0.02957853674888611, -0.0005183291505090892, -0.026743663474917412, -0.03707539290189743, 0.0037059744354337454, 0.004675437696278095, 0.041744474321603775, 0.013413491658866405, -0.0018503294559195638, -0.007640337571501732, 0.026348652318120003, -0.026372453197836876, 0.0055899852886796, -0.01964692212641239, -0.02532321959733963, 0.0007518899510614574, 0.04694490507245064, 0.0035357088781893253, 0.03420022130012512, -0.013791767880320549, -0.05290577933192253, 0.03486533463001251, -0.04575401172041893, -0.03457339480519295, 0.000011528547474881634, -0.05836545675992966, 0.031394533812999725, 0.026257483288645744, 0.016800951212644577, -0.015766335651278496, 0.048478107899427414, 0.025421762838959694, 0.027071865275502205, 0.04642083868384361, -0.01013204175978899, 0.004444428253918886, -0.024249974638223648, -0.022793278098106384, -0.08115708827972412, 0.05724891275167465, 0.050529997795820236, -0.0018508713692426682, -0.017656756564974785, -0.01705983094871044, -0.03879762813448906, 0.003434422193095088, -0.04141759127378464, -0.03793809935450554, 0.03441707044839859, -0.03437788784503937, 0.022193897515535355, -0.0025737301912158728, -0.04364130273461342, 0.05091391131281853, 0.045550160109996796, -0.05845079943537712, -0.02910582721233368, -0.04376017674803734, 0.06940840184688568, -0.004634724464267492, 0.04323431849479675, -0.004008039366453886, -0.04025835916399956, 0.0563187412917614, 0.02213558740913868, -0.0071427421644330025, 0.02647448517382145, -0.038737036287784576, 0.035112831741571426, 0.02214784175157547, -0.036343786865472794, 0.03339222073554993, 0.017941156402230263, -0.012338390573859215, -0.04284169524908066, 0.009979791939258575, 0.0072196233086287975, 0.011198734864592552, -0.022475335747003555, 0.07234585285186768, 0.016424238681793213, -0.018221408128738403, -0.06356532126665115, 0.016996776685118675, -0.012572798877954483, -0.01705244369804859, -0.029587794095277786, 0.019361944869160652, -0.03939189016819, 0.031581610441207886, -0.004233493469655514, 0.005694644525647163, 0.07610109448432922, -0.007177564315497875, -0.004043729975819588, -0.01759941875934601, 0.08184922486543655, 0.07550102472305298, 0.047675903886556625, 0.03560037538409233, 0.031535450369119644, -0.01768113672733307, -0.05635831132531166, 0.01195263396948576, -0.006895126309245825, 0.025300845503807068, -0.0012086819624528289, -0.033592116087675095, 0.06265555322170258, -0.01785210333764553, 0.060080282390117645, -0.01271769404411316, -0.02327008545398712, -0.029519163072109222, 0.01344593707472086, 0.011022530496120453, 0.04289523512125015, 0.003760729217901826, 0.02998346835374832, -0.01259410846978426, -0.013285483233630657, 0.031097374856472015, 0.02226075902581215, -0.04301510751247406, 0.015427076257765293, -0.013143342919647694, 0.011712535284459591, -0.011425334960222244, 0.042658522725105286, 0.07720073312520981, -0.037224240601062775, 0.0024130679666996002, 0.013854176737368107, 0.028065357357263565, -0.03949924185872078, 0.019280986860394478, -0.01630924828350544, -0.02217315509915352, -0.04334365203976631, -0.03640829026699066, -0.016079487279057503, -0.013723678886890411, -0.032681338489055634, 0.025146378204226494, -0.022313963621854782, -0.008735384792089462, 0.04775518178939819, -0.0014162772567942739, -0.03783700242638588, -0.042137134820222855, -0.06022801622748375, -0.03949771448969841, -0.07669462263584137, -0.0025773432571440935, 0.010654996149241924, 0.0035218368284404278, -0.051338810473680496, -0.015508132055401802, -0.04936326667666435, -0.005738826934248209, 0.005348533857613802, -0.036909859627485275, -0.037993475794792175, -0.000004163344783592038, 0.011628255248069763, 0.011184967122972012, 0.03675304725766182, 0.047747526317834854, -0.0178595669567585, -0.0051663420163095, 0.006718642544001341, -0.0020573146175593138, 0.03981006518006325, 0.017733965069055557, 0.005506441928446293, -0.08647112548351288, 0.008105314336717129, 0.03524644672870636, -0.02675648033618927, -0.07658856362104416, 0.040554892271757126, 0.039427999407052994, -0.004143296275287867, 0.0279560387134552, -0.006427163258194923, 0.025674818083643913, -0.013362361118197441, -0.02772018313407898, -0.022771693766117096, 0.0014634577091783285, 0.04341268539428711, 0.010138273239135742, 0.11528962850570679, 0.044829361140728, 0.005771350581198931, -0.0450112409889698, -0.028262043371796608, -0.020332705229520798, 0.03755434975028038, -0.0201940406113863, -0.012741967104375362, -0.04767366498708725, -0.08307549357414246, -0.001465728273615241, 0.007293228060007095, -0.05955100059509277, -0.04221330210566521, 0.0024690122809261084, 0.01858270727097988, -0.04218703508377075, 0.02596745640039444, -0.014100637286901474, 0.009666847996413708, -0.02305793948471546, -0.03471352532505989, -0.014733088202774525, 0.02213824726641178, 0.015012173913419247, -0.006285189185291529, -0.001931627164594829, -0.018808236345648766, 0.03168442100286484, 0.001015211339108646, 0.013536256738007069, 0.04790497571229935, 0.007438665255904198, 0.01860123500227928 ]
[ -0.06957077234983444, 0.0034125635866075754, -0.03672439977526665, -0.040836673229932785, 0.05553165078163147, -0.0759863406419754, -0.02556699886918068, 0.0004606864822562784, 0.0034872882533818483, -0.009934628382325172, 0.022599298506975174, -0.058991704136133194, -0.006265627685934305, -0.061611518263816833, 0.04990917444229126, -0.020926108583807945, 0.005166362505406141, -0.0388568714261055, -0.04012911394238472, 0.07547538727521896, -0.005738262087106705, -0.02381567284464836, -0.01312236301600933, -0.06893602013587952, -0.015332643873989582, 0.022792154923081398, 0.01823335513472557, -0.037804409861564636, -0.020685160532593727, -0.22818829119205475, 0.007279983256012201, 0.008371474221348763, 0.0391402430832386, -0.012157191522419453, 0.027993733063340187, 0.008296322077512741, 0.035558003932237625, -0.012929040007293224, 0.0008821537485346198, 0.06710321456193924, 0.0082848584279418, -0.002903078682720661, -0.04389505088329315, -0.0035652753431349993, 0.021223250776529312, 0.016502168029546738, -0.013025076128542423, 0.0009525191853754222, -0.010237256065011024, 0.016611319035291672, -0.09527046978473663, 0.02177600935101509, 0.002079276368021965, -0.03189929574728012, -0.007212772034108639, 0.03212360665202141, 0.05189801752567291, 0.05559852346777916, -0.010659795254468918, 0.022898703813552856, -0.00959183182567358, -0.00019087226246483624, -0.1505226194858551, 0.08623158931732178, 0.04393421486020088, 0.05741170048713684, -0.045725978910923004, -0.03281039744615555, -0.05257733166217804, 0.05735130235552788, -0.0331331267952919, -0.02342185564339161, -0.06123276427388191, 0.10621446371078491, -0.000009505888556304853, -0.003220310201868415, -0.02419564127922058, 0.0003603826626203954, 0.03524216637015343, -0.020646415650844574, -0.07069231569766998, -0.006756358314305544, -0.025963768362998962, -0.011700555682182312, -0.03923430293798447, 0.01268775388598442, -0.022986821830272675, 0.05453839525580406, 0.03510519862174988, 0.0179548729211092, 0.018542854115366936, -0.013964059762656689, 0.03816547244787216, 0.04287436604499817, -0.09548143297433853, -0.05932062491774559, 0.01738862693309784, 0.01869341917335987, 0.0006376639939844608, 0.4541028141975403, -0.06796950846910477, -0.05042145773768425, 0.045361049473285675, -0.00205985433422029, 0.013650561682879925, -0.007562967482954264, 0.004893419332802296, -0.03317585960030556, 0.017182452604174614, -0.06556101143360138, 0.0013493249425664544, -0.026227271184325218, 0.0474914014339447, -0.061008673161268234, 0.014852751977741718, 0.021256322041153908, 0.018571514636278152, -0.010789917781949043, -0.02098231576383114, 0.02093256264925003, -0.010094935074448586, 0.019311655312776566, 0.012662599794566631, 0.006780541501939297, 0.005804745480418205, 0.002295599551871419, 0.059176236391067505, 0.08032756298780441, 0.0368853323161602, 0.0425126850605011, 0.04830155521631241, -0.02101723849773407, -0.06700572371482849, 0.0114336172118783, -0.03389359265565872, 0.03776877373456955, 0.02699580229818821, -0.02383020706474781, 0.007295313291251659, -0.0013019501930102706, 0.0018278757343068719, -0.05489301681518555, 0.0067514898255467415, 0.035828277468681335, -0.013614103198051453, 0.0784904882311821, -0.048902224749326706, -0.030702020972967148, -0.02311289682984352, -0.051974304020404816, -0.00017006210691761225, 0.039147261530160904, 0.00641321437433362, -0.03480265289545059, -0.005180732347071171, -0.0018082576571032405, 0.067018523812294, -0.047677647322416306, -0.06359965354204178, -0.01484422106295824, -0.010643886402249336, -0.06586344540119171, -0.02314477041363716, 0.03340314328670502, 0.06265363842248917, -0.06944194436073303, -0.03671708330512047, 0.007201129570603371, 0.03964636102318764, -0.06547591835260391, 0.04138871654868126, -0.022036969661712646, -0.04048338532447815, 0.01832561567425728, 0.02287651225924492, -0.034141868352890015, -0.037461452186107635, 0.005717330612242222, 0.03575100377202034, 0.007052186876535416, 0.024777375161647797, 0.016262466087937355, -0.02788679115474224, 0.0265892893075943, -0.0463651642203331, -0.0600394532084465, -0.07221518456935883, 0.004358765669167042, 0.0066124070435762405, -0.005386680364608765, -0.011720685288310051, 0.0006822860450483859, -0.08425716310739517, 0.013075543567538261, -0.00528611708432436, 0.0007978243520483375, 0.027699902653694153, 0.027347171679139137, -0.013138952665030956, -0.03822288289666176, 0.03024601936340332, 0.05443480238318443, -0.013255643658339977, 0.015538630075752735, -0.04780329391360283, -0.03337237611413002, 0.054621271789073944, -0.04464372619986534, 0.04672703519463539, 0.01548929512500763, -0.017650604248046875, 0.0012539216550067067, -0.015020928345620632, 0.03221803158521652, -0.013218628242611885, -0.033763542771339417, -0.016795288771390915, -0.03252667933702469, 0.033371470868587494, 0.03402608633041382, -0.03787684440612793, -0.052642419934272766, -0.030242690816521645, -0.34150955080986023, 0.0023211271036416292, 0.006206083111464977, -0.03454459086060524, 0.005427707452327013, -0.0388125441968441, 0.012200038880109787, 0.00811862200498581, -0.024197082966566086, 0.046312589198350906, 0.056234657764434814, -0.017110098153352737, -0.0030433237552642822, -0.08038420975208282, -0.011895602568984032, 0.037873633205890656, -0.020942742004990578, -0.014380610547959805, 0.01771143078804016, 0.06088465452194214, 0.0060355085879564285, -0.029457084834575653, -0.00634191045537591, -0.015412542037665844, 0.005865379702299833, -0.050105612725019455, 0.11032923310995102, 0.04944225773215294, 0.07005715370178223, -0.05031208693981171, 0.03747069090604782, 0.025268850848078728, 0.015937188640236855, -0.08507233113050461, -0.001323860022239387, -0.030290061607956886, -0.017523741349577904, 0.04617758095264435, 0.04303798824548721, 0.016635896638035774, -0.0045284489169716835, 0.007990265265107155, -0.03258417919278145, -0.009769033640623093, 0.008498298935592175, 0.01893099956214428, 0.019930757582187653, -0.014197755604982376, -0.004777033347636461, 0.07288214564323425, 0.020612172782421112, -0.000943446415476501, 0.028912337496876717, 0.05904069542884827, 0.014571823179721832, -0.03291468322277069, -0.07254461199045181, -0.005780108273029327, 0.02803223766386509, -0.016619648784399033, 0.022992601618170738, -0.0025931796990334988, 0.04600158706307411, -0.05501791089773178, -0.01755150780081749, 0.013347863219678402, 0.005480323452502489, 0.016309663653373718, 0.028533248230814934, -0.0022980289068073034, -0.0166965052485466, 0.08737395703792572, 0.009934121742844582, 0.006822986528277397, -0.008142691105604172, 0.08497954159975052, 0.0027302552480250597, 0.00724004115909338, 0.013746961951255798, 0.00047638893011026084, 0.04416155442595482, -0.0123103903606534, 0.05574312433600426, -0.030299516394734383, 0.04500087723135948, 0.052491579204797745, 0.005682054441422224, -0.0010432160925120115, 0.061945147812366486, -0.0029958533123135567, -0.02190510928630829, -0.057204581797122955, 0.00006401832797564566, -0.0348883718252182, 0.07729417830705643, -0.009175898507237434, -0.25928547978401184, 0.0342167392373085, 0.06085822358727455, 0.052858199924230576, 0.017851542681455612, 0.015308472327888012, 0.0218768659979105, -0.08414443582296371, -0.013135910965502262, 0.03181469812989235, 0.01272188127040863, 0.023445671424269676, 0.02101239748299122, -0.030951576307415962, 0.016202807426452637, -0.019692247733473778, 0.0578264482319355, -0.001537136035040021, 0.013918234966695309, 0.04033738374710083, 0.00738710630685091, -0.01019272394478321, 0.1564340889453888, -0.001108282245695591, 0.00406868988648057, -0.008072343654930592, -0.0037727849557995796, 0.0219724178314209, 0.07597454637289047, 0.0325733982026577, 0.00897200871258974, -0.004300544038414955, 0.03731131553649902, 0.023683995008468628, 0.019810449331998825, -0.027790097519755363, -0.03275709226727486, 0.02392418496310711, 0.03345077857375145, -0.020801134407520294, -0.02306467294692993, 0.032016854733228683, -0.06275332719087601, 0.008522083051502705, 0.029031382873654366, 0.003304636338725686, -0.012253855355083942, 0.004703737795352936, -0.01558756921440363, -0.02987794391810894, -0.004010324366390705, -0.02990429848432541, -0.01708761602640152, -0.006434985902160406, 0.02395620383322239, 0.05689084157347679, -0.0001276537514058873, -0.023200780153274536, 0.017629902809858322, 0.02956092543900013, -0.003819067729637027, -0.04806499183177948, 0.10464978963136673, 0.06179160997271538, -0.0331607349216938 ]
[ -0.028846915811300278, 0.028526537120342255, -0.05710521340370178, 0.019795449450612068, -0.015937358140945435, 0.03275443613529205, -0.022855620831251144, 0.043923791497945786, -0.003873206675052643, -0.011539344675838947, -0.003939300309866667, -0.021222025156021118, 0.026299521327018738, -0.04641890525817871, 0.004242307040840387, -0.010744265280663967, 0.02528880164027214, -0.0052231536246836185, 0.009761522524058819, 0.023949066177010536, -0.0023765203077346087, 0.012421759776771069, -0.005550437606871128, -0.024420319125056267, 0.01788562908768654, 0.004749377258121967, -0.045225873589515686, 0.005985181778669357, -0.003407461801543832, -0.1046636551618576, -0.010184152983129025, -0.007703360170125961, 0.023932665586471558, 0.031561076641082764, 0.0196929182857275, 0.003561360528692603, -0.000009560461876390036, 0.015432079322636127, 0.003784216707572341, 0.026804661378264427, 0.003576369257643819, 0.026130935177206993, -0.007276169024407864, 0.01844881661236286, 0.012084423564374447, -0.010509631596505642, 0.010526216588914394, 0.018222268670797348, -0.003897644579410553, 0.0037847827188670635, -0.05752502381801605, 0.010083098895847797, 0.02011834643781185, -0.028542712330818176, 0.0026591201312839985, -0.06097451597452164, -0.001909124432131648, -0.01953962631523609, 0.03545401617884636, -0.02124796435236931, 0.029315076768398285, 0.008069365285336971, -0.04748888313770294, -0.010690008290112019, -0.024277975782752037, -0.04048871621489525, -0.061653025448322296, -0.004978076089173555, -0.0025666665751487017, -0.02882477454841137, -0.023445134982466698, 0.02121884748339653, -0.05448060482740402, -0.007087377831339836, 0.0032591542694717646, -0.010308001190423965, -0.00859284121543169, -0.05538873001933098, -0.020779144018888474, 0.0036781395319849253, -0.04780783876776695, -0.012971051968634129, 0.004055482801049948, 0.030708175152540207, -0.022162482142448425, -0.003915132023394108, -0.0019471637206152081, 0.03119676187634468, -0.016147680580615997, 0.025016898289322853, -0.002923957072198391, -0.0076539041474461555, 0.04654853418469429, 0.039707280695438385, -0.09288796037435532, 0.008083228021860123, 0.006772269494831562, 0.007516251876950264, -0.018355652689933777, 0.8237157464027405, -0.01879018172621727, 0.012238080613315105, 0.03896450623869896, -0.02187293767929077, -0.013170520775020123, -0.03183355927467346, 0.016507210209965706, 0.014881821349263191, 0.032273150980472565, -0.07011471688747406, 0.0663684830069542, -0.019342850893735886, 0.013968140818178654, -0.02850690670311451, 0.015383975580334663, 0.03577986732125282, -0.004816059488803148, -0.00866157840937376, 0.022267017513513565, -0.004586602095514536, 0.007112851832062006, 0.013685103505849838, -0.02127039059996605, -0.020494529977440834, 0.01055262703448534, -0.17836400866508484, 0.0289955772459507, -6.984358377147982e-33, -0.00831991620361805, -0.026988422498106956, -0.011962644755840302, 0.007562515325844288, -0.010861172340810299, 0.01848074235022068, -0.011920172721147537, 0.009411162696778774, 0.0038534547202289104, -0.023802993819117546, 0.014735321514308453, 0.006134512834250927, -0.024410778656601906, 0.009226975031197071, -0.0011712389532476664, 0.007986821234226227, 0.0021570750977844, 0.01016228087246418, -0.0021355862263590097, 0.0031238170340657234, 0.050809040665626526, -0.005877721589058638, 0.03209175169467926, 0.020236622542142868, 0.014270054176449776, 0.00019053849973715842, 0.03876994177699089, -0.043894343078136444, -0.0011087495367974043, -0.04304440692067146, -0.021272702142596245, 0.052648287266492844, 0.029902728274464607, -0.06322313845157623, 0.0371985100209713, -0.04334034025669098, -0.027758514508605003, 0.014600876718759537, -0.028690777719020844, -0.015696633607149124, -0.017375919967889786, -0.0005169984069652855, -0.02430628053843975, 0.029211215674877167, 0.00785576831549406, 0.0002808657300192863, 0.005305563099682331, 0.035099610686302185, -0.0051622940227389336, 0.013631423003971577, 0.015252324752509594, 0.028097953647375107, 0.038549721240997314, 0.036697037518024445, -0.01078301016241312, 0.005688649136573076, -0.025684278458356857, 0.008541267365217209, -0.027069373056292534, -0.02376905083656311, 0.02538667432963848, -0.009903190657496452, 0.012029740959405899, 0.01662997528910637, -0.00100904970895499, -0.017375821247696877, 0.04650263488292694, 0.0012941493187099695, 0.020903686061501503, 0.001385263167321682, -0.052488990128040314, 0.022935716435313225, 0.009270408190786839, -0.020098891109228134, 0.0025840462185442448, -0.03408650681376457, 0.0019573625177145004, 0.03277641162276268, 0.014455529861152172, 0.008449957706034184, -0.00932230707257986, -0.013567525893449783, -0.02130827121436596, -0.032190266996622086, -0.03916288912296295, 0.04120170697569847, 0.04477981850504875, -0.012174773029983044, -0.03305574879050255, -0.004392486531287432, 0.02528279647231102, 0.04504662752151489, -0.024463795125484467, -0.01881225034594536, -0.011404849588871002, 6.879582892239345e-33, 0.011401928029954433, -0.04102203622460365, -0.0062188939191401005, 0.0015381815610453486, 0.04678243026137352, -0.005362877156585455, 0.04049135744571686, -0.013192201033234596, -0.01886506751179695, 0.011484087444841862, -0.025501802563667297, -0.015028279274702072, -0.011524329893290997, 0.015196507796645164, 0.0538504458963871, -0.011611117981374264, -0.005517692770808935, 0.005404510069638491, -0.01811012253165245, -0.0270837489515543, -0.057078566402196884, 0.015110386535525322, 0.02579161338508129, 0.04572461172938347, 0.06068485230207443, 0.019457116723060608, -0.05265745520591736, 0.0029037243220955133, 0.0009411643259227276, 0.018007447943091393, 0.016587207093834877, 0.0374983474612236, -0.01495165005326271, -0.010879461653530598, -0.06890728324651718, 0.061042286455631256, 0.0029049934819340706, 0.021991712972521782, 0.043413374572992325, 0.029502389952540398, 0.039105720818042755, -0.015133109875023365, -0.027043938636779785, 0.01754320226609707, 0.026818865910172462, 0.0459955632686615, 0.009038245305418968, -0.013855730183422565, -0.0015523325419053435, 0.03919730335474014, 0.015201946720480919, 0.02581525407731533, 0.002660493366420269, 0.017470313236117363, 0.0777733251452446, -0.0036548031494021416, -0.02963634394109249, 0.012248877435922623, -0.027813758701086044, -0.04016926512122154, -0.05217632278800011, 0.003231419250369072, 0.017542794346809387, -0.0007870416739024222, -0.03900114446878433, 0.015365968458354473, -0.053920064121484756, -0.002881597960367799, 0.024209555238485336, -0.03135332465171814, -0.013172763399779797, -0.0089516406878829, -0.020823946222662926, 0.01338010560721159, -0.015904340893030167, -0.0026896586641669273, -0.032599855214357376, -0.004869756754487753, -0.04694904386997223, 0.00933057814836502, 0.013556609861552715, 0.004854594822973013, 0.027248885482549667, 0.043392062187194824, 0.051896996796131134, 0.03305232152342796, -0.02680305577814579, -0.040510404855012894, 0.007508678361773491, 0.052611950784921646, -0.02543564885854721, -0.018004151061177254, 0.02724013477563858, -0.014151853509247303, -0.024508945643901825, -1.2691762307781573e-8, -0.0235049519687891, 0.03259268403053284, -0.046120744198560715, -0.006869050208479166, 0.02676597610116005, 0.018725359812378883, -0.03035280480980873, -0.0054173958487808704, -0.01206207275390625, 0.013100574724376202, 0.029903341084718704, -0.019672725349664688, 0.01485532708466053, 0.0455736480653286, 0.03339157626032829, -0.025816330686211586, 0.007943290285766125, -0.02515173703432083, 0.009585900232195854, 0.000024483893867000006, 0.03272318094968796, 0.021467259153723717, -0.027462953701615334, 0.01715835928916931, 0.008071322925388813, -0.0033517717383801937, -0.02854766882956028, -0.08081068843603134, 0.02623130939900875, 0.01473680417984724, 0.06172269955277443, -0.02609524503350258, -0.0323520265519619, -0.04473942890763283, 0.0068642757833004, -0.023036355152726173, 0.0035271458327770233, 0.0013446472585201263, 0.020783409476280212, 0.014338514767587185, 0.017954133450984955, -0.02172604762017727, -0.040798675268888474, -0.03130748122930527, -0.04760172218084335, -0.04448390007019043, -0.028974289074540138, 0.008104962296783924, 0.00662220548838377, 0.0016474175499752164, 0.01251374464482069, -0.017179667949676514, -0.004721100442111492, 0.050021927803754807, 0.03399817645549774, -0.013965421356260777, 0.02325005829334259, -0.005168212112039328, 0.0019455592846497893, -0.0030780809465795755, 0.011284489184617996, -0.0031605050899088383, -0.010692150332033634, -0.020280221477150917 ]
csv-parsingutf-8-encoding
https://markhneedham.com/blog/2012/06/10/csv-parsingutf-8-encoding
false
2012-06-19 23:09:39
Haskell: Mixed type lists
[ "haskell" ]
[ "Haskell" ]
I've been continuing to work through the exercises in http://www.amazon.co.uk/The-Little-Schemer-Daniel-Friedman/dp/0262560992/ref=sr_1_1?ie=UTF8&qid=1340144213&sr=8-1[The Little Schemer] and came across a problem which needed me to write a function to take a mixed list of Integers and Strings and filter out the Integers. As I http://www.markhneedham.com/blog/2012/06/19/the-little-schemer-attempt-2/[mentioned in my previous post] I've been doing the exercises in Haskell but I thought I might struggle with that approach here because Haskell collections are homogeneous i.e. all the elements need to be of the same type. I read about http://en.wikibooks.org/wiki/Haskell/Existentially_quantified_types#Example%3a_heterogeneous_lists[existentially quantified types] but they seemed a bit complicated and instead I decided to use the http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-Dynamic.html[Dynamic] interface. Using Dynamic we can define a function to strip out the numbers like this: [source,haskell] ---- import Data.Dynamic import Data.Maybe noNums :: [Dynamic] -> [Dynamic] noNums lat = cond [(null lat, []), (isNumber (head lat), noNums (tail lat)), (otherwise, head lat : noNums (tail lat))] justInt :: Dynamic -> Maybe Int justInt dyn = fromDynamic dyn :: Maybe Int isNumber :: Dynamic -> Bool isNumber x = isJust $ justInt x ---- We can then call the function like this: [source,haskell] ---- > map toString $ noNums [toDyn (5 :: Int), toDyn "pears", toDyn (6 :: Int), toDyn "prunes", toDyn (9 :: Int), toDyn "dates"] [Just "pears",Just "prunes",Just "dates"] ---- [source,haskell] ---- toString :: Dynamic -> Maybe String toString dyn = fromDynamic dyn ---- +++<cite>+++fromDynamic+++</cite>+++ eventually makes a call to +++<cite>+++http://www.haskell.org/ghc/docs/7.2.2/html/libraries/ghc-prim-0.2.0.0/GHC-Prim.html#v:unsafeCoerce-35-[unSafeCoerce#]+++</cite>+++: ____ The function unsafeCoerce# allows you to side-step the typechecker entirely. That is, it allows you to coerce any type into any other type. If you use this function, you had better get it right, otherwise segmentation faults await. It is generally used when you want to write a program that you know is well-typed, but where Haskell's type system is not expressive enough to prove that it is well typed. ____ I wanted to try and make the 'isNumber' function handle any numeric type rather than just Ints but I haven't quite worked out how to do that. Obviously I'm only using Dynamic here because the exercise requires it but I'm not sure what real life situation would require its use. If anyone has used it before or knows a use case I'd be interested to know what it is!
null
null
[ -0.011586684733629227, 0.01765330322086811, -0.023563960567116737, 0.031237969174981117, 0.04552527517080307, 0.05350303649902344, 0.0016953699523583055, 0.007538061123341322, 0.0008220418822020292, -0.009550080634653568, -0.0035261460579931736, -0.004794082138687372, -0.03774793818593025, 0.03218672424554825, -0.010423457249999046, 0.060372523963451385, 0.08035997301340103, -0.013635191135108471, -0.037646934390068054, 0.02067236229777336, 0.029792414978146553, 0.054864831268787384, -0.009252278134226799, -0.006709283217787743, 0.019334852695465088, 0.013832774013280869, 0.04795333370566368, 0.002801676746457815, -0.04845702648162842, 0.01950955018401146, 0.017501363530755043, 0.013021060265600681, -0.009528663009405136, -0.0154109550639987, 0.011150522157549858, -0.009517287835478783, 0.0163777656853199, -0.02883658930659294, -0.001896174275316298, 0.03532561659812927, -0.07142078876495361, 0.024156324565410614, 0.0003083025512751192, 0.02501559816300869, -0.06157287210226059, -0.009760714136064053, -0.036507271230220795, 0.009146181866526604, -0.02804267220199108, -0.010988919995725155, -0.04286912456154823, 0.021229952573776245, 0.0001848528627306223, -0.023416591808199883, -0.03341531753540039, 0.04995012283325195, -0.0006135375588200986, -0.09956953674554825, 0.039455004036426544, -0.047558799386024475, 0.00560190761461854, -0.005566142965108156, 0.01581694930791855, 0.03861537575721741, 0.014398704282939434, -0.022692793980240822, -0.04409763962030411, 0.040799904614686966, -0.07968106120824814, -0.027901988476514816, -0.027191322296857834, 0.019805222749710083, -0.04235794022679329, -0.01871984638273716, -0.004842750728130341, -0.05423247069120407, -0.013064341619610786, 0.06954921036958694, 0.017670776695013046, 0.03529531881213188, -0.01832503266632557, 0.026343533769249916, 0.032719407230615616, 0.022180037572979927, 0.022584231570363045, -0.028712371364235878, -0.05507662519812584, 0.009736509993672371, -0.036734048277139664, 0.048812299966812134, 0.025419307872653008, -0.06338820606470108, 0.0033424310386180878, -0.008817296475172043, 0.017973944544792175, -0.00284502818249166, 0.009630870074033737, -0.013210318051278591, 0.0012273225001990795, -0.012596906162798405, -0.04337179288268089, -0.02246096357703209, 0.04592651501297951, -0.03063655085861683, -0.074373260140419, 0.0011209321673959494, -0.014121273532509804, -0.0036410060711205006, 0.010413405485451221, 0.029306067153811455, -0.028733843937516212, -0.013755490072071552, 0.003508464666083455, 0.009271246381103992, -0.04957163333892822, 0.05329414829611778, -0.0007939400966279209, -0.017283810302615166, -0.019787631928920746, 0.03914831578731537, 0.06051180884242058, 0.006437726318836212, -0.004674351774156094, 0.06695271283388138, 0.036099787801504135, 0.03900551795959473, 0.007744193077087402, 0.057076774537563324, 0.006159175653010607, -0.06966796517372131, -0.028176449239253998, 0.0639074370265007, -0.020281797274947166, 0.004309515468776226, -0.015048006549477577, -0.03486280143260956, -0.04840322956442833, 0.017647424712777138, 0.05244874581694603, 0.043755754828453064, 0.01611235924065113, -0.038472212851047516, 0.027667773887515068, -0.036287035793066025, 0.031788889318704605, 0.01239292323589325, -0.008816441521048546, -0.012498345226049423, -0.01924351416528225, 0.014309403486549854, 0.015080532990396023, 0.04027848690748215, 0.07076893001794815, -0.02545257657766342, 0.019976921379566193, 0.08576134592294693, 0.027484672144055367, 0.047492317855358124, -0.020988665521144867, 0.010875863954424858, 0.041483696550130844, 0.03932702913880348, 0.010515373200178146, 0.02601003460586071, -0.0036073606461286545, -0.02394440397620201, -0.009866143576800823, 0.04669470712542534, -0.01281758863478899, -0.02641010843217373, -0.049877822399139404, -0.0500996895134449, 0.06945046037435532, -0.012425802648067474, 0.020021600648760796, 0.006889894139021635, 0.08583211153745651, 0.012419182807207108, 0.031137919053435326, -0.0012523566838353872, -0.07737361639738083, 0.030862361192703247, 0.030742840841412544, 0.013273277319967747, 0.03685786947607994, 0.015557194128632545, 0.05555588752031326, 0.029809001833200455, 0.006552098784595728, 0.030334727838635445, -0.0570739284157753, -0.07165392488241196, -0.03413574397563934, -0.017377754673361778, 0.06411269307136536, -0.021519703790545464, 0.006574477069079876, 0.03854680433869362, -0.0022569624707102776, 0.028374023735523224, 0.00562670174986124, -0.014468539506196976, 0.020928822457790375, 0.006027271505445242, -0.022254306823015213, 0.0379319041967392, 0.03198365867137909, 0.019115757197141647, -0.027688506990671158, 0.01663351058959961, -0.0052249678410589695, -0.01357839722186327, 0.03773422911763191, -0.004050396848469973, 0.02389257773756981, 0.04640448838472366, 0.03014412708580494, -0.006696230266243219, 0.048995304852724075, -0.0358009897172451, 0.05272907018661499, 0.03887852653861046, -0.016958478838205338, -0.025159291923046112, 0.006949929054826498, 0.14225171506404877, 0.09369034320116043, -0.02731316164135933, -0.05312977358698845, 0.01801230013370514, -0.018919313326478004, -0.010030269622802734, 0.011297924444079399, -0.009953312575817108, -0.020226169377565384, 0.008897327817976475, -0.010171473026275635, -0.00405533891171217, 0.02287306822836399, -0.04272571578621864, -0.023652808740735054, 0.07595928758382797, -0.01156400702893734, 0.05683283880352974, -0.010403825901448727, -0.026141805574297905, -0.022294996306300163, -0.021991321817040443, -0.051404282450675964, -0.022314395755529404, 0.011095459572970867, 0.00044164061546325684, 0.05602853372693062, -0.0410800501704216, -0.035129498690366745, -0.014727485366165638, -0.041123609989881516, 0.040816303342580795, 0.07342811673879623, 0.050641611218452454, -0.03266213461756706, 0.03093794733285904, -0.015280773863196373, -0.0005330994026735425, -0.024505186825990677, -0.05198505520820618, -0.022912930697202682, 0.01817626692354679, -0.0019626931753009558, 0.02678520418703556, 0.03475718945264816, 0.007442639209330082, -0.005822594743221998, -0.02692176215350628, -0.013781649060547352, -0.03375871479511261, 0.032019298523664474, -0.010797583498060703, -0.03431135416030884, -0.036971285939216614, -0.03273963928222656, 0.07886441051959991, -0.030984465032815933, -0.035448960959911346, 0.0027391219045966864, -0.020048746839165688, 0.06770531833171844, -0.05667430907487869, -0.031017353758215904, 0.0013933110749348998, 0.030577022582292557, 0.047214094549417496, -0.042038511484861374, 0.009335489943623543, 0.05272390693426132, 0.030543606728315353, 0.03442202880978584, 0.013836071826517582, -0.009527451358735561, 0.0289075318723917, -0.012792587280273438, 0.019689537584781647, 0.05816396325826645, 0.02090376615524292, -0.01580033265054226, -0.033430781215429306, 0.007125173695385456, -0.023180782794952393, -0.2948755621910095, 0.014844030141830444, -0.03245231881737709, -0.03752262145280838, 0.021666506305336952, -0.012785654515028, -0.014001069590449333, -0.030368652194738388, -0.007225787732750177, 0.025132428854703903, -0.030119849368929863, -0.013077381998300552, -0.05140572041273117, 0.05781996250152588, 0.05020568147301674, 0.009885628707706928, -0.014094853773713112, -0.04240952432155609, -0.02122984081506729, 0.037977658212184906, -0.018633021041750908, -0.0645347535610199, 0.011942512355744839, 0.06887904554605484, 0.012908391654491425, 0.03825341910123825, -0.07008096575737, 0.02790970169007778, -0.0626106709241867, -0.0215531587600708, -0.02989947982132435, -0.014011132530868053, 0.013899076730012894, -0.03724294900894165, -0.005349097307771444, -0.0008332882425747812, 0.024850688874721527, -0.004234184045344591, 0.04169721156358719, 0.040250103920698166, -0.041957788169384, -0.006384844891726971, 0.011493202298879623, -0.013060200959444046, 0.07907145470380783, -0.017437702044844627, -0.07691069692373276, -0.0011374560417607427, -0.04660843312740326, 0.06222042813897133, -0.02668810822069645, -0.03249790146946907, -0.0151012372225523, 0.031685199588537216, -0.010912789031863213, -0.0030560181476175785, -0.03457118570804596, -0.011914432048797607, -0.03267822042107582, -0.041894711554050446, 0.023521501570940018, -0.03669576719403267, -0.04321390017867088, -0.03548891842365265, -0.02901327796280384, -0.05973552539944649, -0.06806875765323639, -0.003050438594073057, 0.05093148350715637, -0.009922093711793423, -0.012402711436152458, -0.02411169931292534, -0.032433975487947464, -0.12042064964771271, -0.026339974254369736, -0.02334294095635414, -0.025022214278578758, -0.01687259040772915, 0.012724834494292736, 0.0444953478872776, -0.027944711968302727, -0.0687485933303833, 0.033840738236904144, 0.0065197753719985485, 0.03906095772981644, -0.034510403871536255, -0.002384504768997431, -0.022084588184952736, -0.005594422575086355, -0.028173860162496567, 0.07370185852050781, -0.019103430211544037, 0.020426424220204353, -0.031246662139892578, 0.02429778315126896, 0.02201579324901104, -0.00005733833313570358, -0.007679489441215992, 0.015270805917680264, 0.034629300236701965, 0.01973085105419159, -0.03279819339513779, 0.03453958407044411, -0.0358130969107151, -0.018728697672486305, -0.01372312381863594, -0.045028459280729294, 0.032768551260232925, 0.011869330890476704, -0.0026328894309699535, -0.020187828689813614, -0.03869585320353508, 0.01576879806816578, -0.05810205265879631, -0.046981655061244965, -0.008897833526134491, 0.003875730326399207, 0.02454809844493866, 0.03217345476150513, -0.001309724641032517, -0.06935837864875793, -0.0115080326795578, 0.011159617453813553, -0.023781385272741318, -0.04933195188641548, -0.022461766377091408, -0.023693175986409187, -0.015869712457060814, 0.028154931962490082, 0.034873321652412415, -0.0018924993928521872, 0.034145280718803406, 0.016033830121159554, -0.022188974544405937, 0.0592903234064579, -0.026141224429011345, -0.02645764872431755, -0.0066263554617762566, -0.01645449735224247, 0.006272465921938419, 0.0028434009291231632, -0.011516454629600048, 0.05766470357775688, 0.0375838503241539, 0.032199420034885406, -0.01177127379924059, -0.0004607994924299419, 0.01652952842414379, -0.0013444690266624093, 0.014995326288044453, 0.006352375727146864, -0.03118113987147808, 0.029354168102145195, -0.0281777773052454, -0.018391242250800133, -0.0047876848839223385, 0.055252108722925186, -0.004340924322605133, -0.02047693356871605, -0.03703461214900017, 0.033355385065078735, -0.02738996408879757, -0.031185191124677658, -0.02796103060245514, 0.004465705715119839, 0.04667229950428009, -0.02171301282942295, 0.034194216132164, -0.013832968659698963, 0.010836327448487282, 0.016204917803406715, 0.02547496370971203, -0.02638092078268528, 0.03421177342534065, 0.006679797079414129, -0.021883465349674225, 0.019058022648096085, 0.023517804220318794, 0.025807959958910942, 0.01853807270526886, -0.02466287836432457, -0.014127165079116821, -0.004595045931637287, 0.020154058933258057, 0.07430420815944672, 0.007954180240631104, -0.0023156972602009773, -0.002887773560360074, -0.031506024301052094, -0.04044179990887642, -0.048870787024497986, 0.014388526789844036, -0.021749550476670265, 0.03530381992459297, -0.04350924491882324, -0.08453373610973358, 0.018325412645936012, 0.0339813195168972, -0.008710293099284172, 0.004268918186426163, 0.007687906734645367, -0.01858562044799328, -0.01015209686011076, 0.02117692120373249, 0.06767265498638153, -0.06424254924058914, 0.002574060345068574, -0.030571727082133293, 0.029711857438087463, 0.007536391727626324, 0.009214961901307106, -0.07001867890357971, 0.0023929495364427567, -0.024035824462771416, -0.016107456758618355, 0.008200245909392834, -0.029253466054797173, -0.042591892182826996, 0.013016195967793465, -0.015385983511805534, -0.003929860889911652, 0.01054178923368454, -0.01799488067626953, -0.01590794138610363, -0.03660871088504791, 0.005931107327342033, -0.02956627868115902, -0.017611343413591385, 0.030005861073732376, -0.02887686900794506, 0.029686085879802704, -0.03678777441382408, 0.024438895285129547, 0.01672232151031494, -0.011061454191803932, -0.009038973599672318, -0.046518437564373016, -0.0009469403885304928, -0.025125553831458092, 0.05739903450012207, -0.00757398409768939, 0.010268662124872208, -0.008790429681539536, -0.00231771357357502, -0.04496077075600624, 0.007323690690100193, 0.004049868788570166, -0.05122324451804161, 0.005726476665586233, 0.05566555634140968, -0.049765437841415405, 0.026037290692329407, -0.03809501975774765, -0.013672028668224812, 0.03956502676010132, 0.0021709376014769077, -0.06014079228043556, -0.022804273292422295, -0.017590485513210297, 0.0008740483317524195, -0.008562657050788403, 0.00863636564463377, -0.02639368735253811, 0.033290136605501175, 0.0481850802898407, 0.04927273467183113, 0.049813661724328995, -0.0022240495309233665, 0.03197150304913521, -0.03638210520148277, -0.02439383789896965, -0.08614766597747803, -0.013760448433458805, -0.013989856466650963, 0.01491272822022438, -0.04052551090717316, 0.0011841001687571406, -0.022783862426877022, 0.036622464656829834, -0.06860405206680298, -0.021650824695825577, 0.030572038143873215, 0.010089554823935032, 0.03377983346581459, 0.0035526289138942957, -0.03183526173233986, -0.0004781803290825337, 0.016849538311362267, -0.010552454739809036, -0.008915861137211323, -0.038966104388237, 0.02797248773276806, -0.00447805505245924, 0.020583711564540863, -0.0028938711620867252, -0.00682338560000062, 0.05248398333787918, 0.030695170164108276, 0.020033685490489006, 0.04633435606956482, -0.01164531521499157, 0.03429943695664406, 0.01084898877888918, -0.017620250582695007, -0.020453793928027153, 0.026400502771139145, 0.007685001008212566, -0.06462549418210983, 0.027982372790575027, 0.019509414210915565, 0.000971214147284627, -0.04145864397287369, 0.04260096698999405, 0.025596385821700096, -0.001828195177949965, -0.04520021006464958, 0.03328777104616165, -0.04679903760552406, 0.024326786398887634, -0.0021026949398219585, -0.015814412385225296, -0.023820722475647926, 0.0590645894408226, -0.016333313658833504, 0.0017074707429856062, 0.04955562204122543, -0.0041839056648314, -0.021631957963109016, 0.0001495663746027276, 0.11214829236268997, 0.08293601125478745, 0.04093969985842705, 0.00724992947652936, 0.06399829685688019, -0.06020021066069603, -0.05204000696539879, 0.0031200095545500517, -0.023700330406427383, -0.004490415565669537, -0.012850197963416576, 0.018524648621678352, 0.07030752301216125, -0.003151397220790386, 0.05757739394903183, -0.04187833517789841, 0.010132204741239548, -0.002620387589558959, 0.005508949048817158, 0.029322434216737747, 0.06010747328400612, 0.018840836361050606, 0.05783781036734581, -0.005613590590655804, -0.0533781461417675, 0.026111645624041557, -0.011505327187478542, -0.045372940599918365, -0.002528078854084015, 0.01357999350875616, -0.006102049723267555, 0.05752294883131981, 0.03387214243412018, 0.06507444381713867, -0.004443064332008362, 0.002100301207974553, -0.002750414190813899, 0.03780561685562134, -0.011967465281486511, 0.007843917235732079, -0.018555130809545517, -0.02509327232837677, 0.006227683275938034, -0.02197984792292118, -0.02003646083176136, -0.01012695487588644, -0.06156044080853462, 0.04549695923924446, -0.029233912006020546, 0.005802002269774675, -0.004393234383314848, -0.014247342012822628, -0.043876003473997116, -0.054385919123888016, -0.037327997386455536, -0.013166268356144428, -0.0818774476647377, 0.005652052816003561, 0.00284651480615139, -0.04004202038049698, -0.01737065427005291, -0.03317246958613396, 0.004945711698383093, -0.006401148159056902, 0.04491633549332619, -0.02852928452193737, -0.05789162963628769, 0.02239685319364071, 0.0068701812997460365, 0.022433897480368614, 0.024341467767953873, 0.0468396358191967, -0.019906099885702133, 0.003754841163754463, -0.014720183797180653, -0.014886620454490185, 0.07420660555362701, 0.042693279683589935, 0.0290460754185915, -0.0788048654794693, -0.004185662604868412, 0.026608169078826904, 0.040009159594774246, -0.08286038786172867, 0.007360248826444149, 0.014244791120290756, -0.010407298803329468, 0.024472303688526154, -0.0013965436955913901, -0.014439230784773827, -0.03512418642640114, -0.03700019419193268, 0.015863914042711258, 0.01705101691186428, 0.03992382064461708, -0.049956612288951874, 0.09905015677213669, 0.010139492340385914, -0.02942330576479435, -0.020451990887522697, -0.00579632306471467, -0.028675315901637077, 0.008034627884626389, -0.04426007345318794, -0.06438005715608597, -0.039362069219350815, -0.05529777333140373, -0.028361478820443153, 0.016830403357744217, -0.028549382463097572, -0.013641629368066788, 0.008384006097912788, 0.06403274834156036, -0.06459739059209824, 0.07061880081892014, -0.03887437656521797, 0.047818560153245926, -0.017762605100870132, -0.03018246963620186, -0.007194437086582184, 0.04145090654492378, 0.029285408556461334, -0.0009683707030490041, 0.010465207509696484, -0.02616836130619049, 0.019923223182559013, -0.02518569864332676, 0.02651304192841053, 0.021324748173356056, -0.010553793050348759, 0.04860644042491913 ]
[ -0.10103223472833633, -0.01710628904402256, -0.04241056367754936, -0.002302846871316433, -0.01027038972824812, -0.02335786074399948, 0.0036954637616872787, 0.019954277202486992, -0.012820874340832233, -0.036536283791065216, 0.006314612925052643, -0.053318679332733154, 0.015398581512272358, 0.002266399562358856, 0.07677367329597473, -0.00024671637220308185, -0.02764222025871277, -0.030068635940551758, -0.058904748409986496, 0.00979388877749443, 0.04032376408576965, -0.016066979616880417, -0.04134861379861832, -0.04522170498967171, 0.031129764392971992, 0.04058719798922539, 0.028019776567816734, -0.020558016374707222, 0.023903533816337585, -0.22132548689842224, -0.0011069460306316614, -0.006686751265078783, 0.04768110439181328, -0.030308201909065247, -0.012991610914468765, 0.03682981804013252, 0.030263924971222878, 0.0007953825988806784, -0.02869988977909088, 0.0730980783700943, 0.037446312606334686, -0.0017849652795121074, -0.018070010468363762, -0.011872715316712856, 0.01784345880150795, -0.007456358056515455, -0.05547675862908363, -0.02542785182595253, -0.007306270767003298, -0.001877879723906517, -0.06936076283454895, 0.010953651741147041, 0.0160061027854681, 0.016730941832065582, -0.02027909830212593, 0.02344701625406742, 0.05957400053739548, 0.08822399377822876, 0.031436607241630554, 0.028438234701752663, 0.0092434948310256, 0.009741239249706268, -0.10628111660480499, 0.11261608451604843, 0.002864754991605878, 0.04247038811445236, -0.029276980087161064, -0.04462814703583717, -0.02428053691983223, 0.07905242592096329, 0.018817251548171043, -0.015902938321232796, -0.04062096029520035, 0.05760679766535759, 0.023030869662761688, -0.060339801013469696, -0.026607131585478783, 0.008297494612634182, 0.06225443631410599, -0.016031574457883835, -0.047574009746313095, -0.04776665195822716, -0.023000100627541542, -0.008004975505173206, 0.0008710087859071791, -0.0022139938082545996, -0.053041230887174606, 0.05807146802544594, -0.0006307524163275957, 0.0031836649868637323, 0.005297929979860783, -0.011363341473042965, 0.0177854523062706, 0.02729721926152706, -0.0426151268184185, -0.005969450809061527, -0.0030440364498645067, 0.0056611900217831135, -0.02519732527434826, 0.4061318635940552, -0.028982555493712425, 0.003050790401175618, 0.03939293697476387, 0.03645109757781029, -0.01956937648355961, -0.006206014659255743, -0.01460176706314087, -0.0807836502790451, -0.01623334363102913, -0.06493285298347473, -0.03710098937153816, -0.04046068340539932, 0.07972864806652069, -0.06389238685369492, -0.0046446919441223145, -0.027994710952043533, 0.05315374210476875, 0.013760714791715145, 0.03582226485013962, 0.0034072212874889374, 0.010999990627169609, -0.0017165221506729722, 0.0160337146371603, 0.03550371155142784, 0.0038480907678604126, 0.014743752777576447, 0.01809615269303322, 0.04000191390514374, 0.0075669800862669945, 0.07174600660800934, 0.053100842982530594, -0.02713080495595932, -0.05061855912208557, -0.024277357384562492, 0.00820093508809805, 0.004415339790284634, 0.028861425817012787, -0.016773657873272896, 0.02608579955995083, 0.006207356229424477, -0.008758080191910267, -0.03114808350801468, -0.002141348784789443, -0.00568400789052248, -0.0043617659248411655, 0.09302101284265518, -0.005779130384325981, -0.028388304635882378, -0.003149620722979307, -0.0258729699999094, -0.005004797130823135, 0.03755498677492142, 0.003534452524036169, -0.07142262905836105, 0.009007321670651436, 0.03718110918998718, 0.05424581095576286, -0.02922528050839901, -0.07523956149816513, 0.025933600962162018, -0.04326724261045456, -0.021425718441605568, -0.04847586154937744, 0.07623931020498276, -0.015714477747678757, -0.05778190493583679, -0.0439242385327816, -0.009183349087834358, 0.022214744240045547, -0.10530778765678406, 0.021484673023223877, 0.018923968076705933, -0.0361928716301918, 0.014085393399000168, 0.07049468904733658, -0.024783264845609665, -0.038712698966264725, 0.011673996224999428, 0.026954755187034607, 0.0367816686630249, -0.033564016222953796, -0.003138221800327301, -0.02680332213640213, 0.004341128747910261, -0.0315106064081192, -0.046337854117155075, -0.06782670319080353, 0.016807785257697105, 0.0037685022689402103, -0.03351294621825218, 0.0007847311208024621, 0.00056167395086959, -0.09057316184043884, 0.05384594574570656, -0.03238459676504135, -0.036813680082559586, 0.03808878734707832, 0.0009340628748759627, -0.01687891036272049, 0.004684670828282833, -0.0017445675330236554, 0.04509970173239708, 0.03316878899931908, 0.03668930381536484, -0.060420166701078415, -0.008877642452716827, 0.05974659323692322, -0.0762975811958313, 0.08475511521100998, 0.053272753953933716, 0.019207041710615158, -0.0003746802976820618, -0.022849831730127335, 0.017356133088469505, 0.013952446170151234, -0.011740445159375668, 0.02619546465575695, -0.027502289041876793, 0.026279756799340248, 0.014496322721242905, -0.038012150675058365, -0.07411691546440125, -0.04564672335982323, -0.36197105050086975, -0.05357651039958, 0.0033646973315626383, -0.009945565834641457, -0.006238785572350025, -0.09509815275669098, -0.017942827194929123, -0.013315700925886631, -0.03370041772723198, 0.06333085894584656, 0.036112286150455475, 0.009372787550091743, -0.005964859388768673, -0.07621943950653076, -0.0020840854849666357, 0.029691332951188087, -0.018910396844148636, -0.056731875985860825, -0.03267790377140045, 0.04683636873960495, -0.012273786589503288, -0.006735160946846008, -0.020755145698785782, -0.04679117351770401, -0.024439632892608643, -0.026620367541909218, 0.1197514608502388, 0.004750736057758331, 0.10112383216619492, -0.03551327809691429, 0.051977213472127914, -0.017600320279598236, 0.007769860792905092, -0.020984861999750137, -0.006063828244805336, -0.045155517756938934, -0.016508953645825386, 0.0006610820419155061, 0.06963524222373962, -0.017339110374450684, -0.06011431664228439, -0.0010203029960393906, -0.055556830018758774, -0.030361449345946312, 0.00384873291477561, 0.013593209907412529, -0.015001162886619568, -0.056913115084171295, -0.001556628500111401, 0.054333314299583435, 0.03178732097148895, 0.010664591565728188, 0.010044426657259464, 0.02225802280008793, -0.00949831958860159, -0.003804146545007825, -0.05155361443758011, -0.035661209374666214, 0.005530908703804016, -0.0010023266077041626, -0.0003586218517739326, 0.06264611333608627, 0.057340968400239944, -0.007330156862735748, -0.0038204770535230637, -0.00047382715274579823, -0.011766018345952034, -0.0003100970934610814, 0.02565688081085682, -0.029832487925887108, 0.0007816558936610818, 0.07119348645210266, 0.0006011446821503341, 0.022436872124671936, 0.008972160518169403, 0.06945239007472992, -0.026996076107025146, 0.05520723760128021, 0.056972116231918335, 0.0008635051199235022, 0.0086591811850667, 0.01109834760427475, 0.017223002389073372, -0.020870395004749298, -0.02226249687373638, 0.012872469611465931, -0.021704742684960365, 0.0276347603648901, 0.018405528739094734, -0.007759551052004099, -0.008100957609713078, 0.05194700509309769, 0.029311470687389374, -0.01619216613471508, 0.03971760347485542, -0.00892768707126379, -0.26205894351005554, 0.02751314453780651, 0.034366533160209656, 0.01662575639784336, -0.013993495143949986, 0.011734526604413986, 0.018351592123508453, -0.07327694445848465, -0.023921111598610878, 0.0002932971983682364, 0.028881704434752464, 0.046968281269073486, 0.057843372225761414, -0.00019878704915754497, 0.023722147569060326, -0.027102462947368622, 0.05676006153225899, -0.012701520696282387, -0.01849452778697014, 0.03109198808670044, 0.06222133710980415, -0.002301899716258049, 0.22204583883285522, 0.018131135031580925, 0.009115105494856834, 0.03935829550027847, 0.009296627715229988, 0.013068316504359245, 0.07645224779844284, 0.030101794749498367, 0.020329823717474937, 0.015086894854903221, 0.06622156500816345, -0.025835683569312096, 0.030490301549434662, -0.040706995874643326, 0.000059439924370963126, 0.04766731336712837, 0.029515720903873444, -0.025615084916353226, -0.028536153957247734, 0.006260310765355825, -0.03230704367160797, 0.03214764595031738, 0.0848810002207756, 0.01602857932448387, -0.02060929499566555, -0.03796596825122833, -0.03999742865562439, 0.03440330550074577, -0.025744814425706863, -0.022959889844059944, -0.021264608949422836, -0.02130909264087677, 0.006366783753037453, 0.06593240797519684, -0.014528390020132065, 0.003953646402806044, -0.030709225684404373, 0.015474984422326088, 0.01590793952345848, -0.01703856885433197, 0.08831804990768433, 0.015844402834773064, 0.03745674714446068 ]
[ 0.01879722997546196, 0.047252997756004333, -0.009098412469029427, 0.029337704181671143, 0.003018879797309637, -0.0026417188346385956, 0.007546015549451113, 0.012838803231716156, -0.017066219821572304, -0.017020097002387047, -0.010399507358670235, -0.026780180633068085, 0.022408388555049896, -0.036597177386283875, 0.008386075496673584, 0.0026001455262303352, 0.0005326782120391726, 0.003150648670271039, 0.0018046267796307802, -0.039958611130714417, -0.03379608318209648, 0.028526440262794495, -0.0004057761689182371, 0.03692898154258728, -0.018089784309267998, 0.02019450068473816, -0.010955923236906528, 0.005977758672088385, 0.023128436878323555, -0.12345331162214279, -0.03907862305641174, 0.013761558569967747, -0.005719034932553768, -0.02665444277226925, -0.022418949753046036, 0.03380792215466499, -0.0024551190435886383, 0.003085317322984338, -0.007168320938944817, 0.008209910243749619, -0.014997049234807491, -0.0044971974566578865, -0.005558650474995375, -0.010459531098604202, -0.005714212544262409, 0.0004011022683698684, 0.00651397043839097, -0.02259066142141819, -0.01831318996846676, 0.006053413730114698, 0.008903566747903824, 0.05699050426483154, -0.01208616141229868, 0.01646612025797367, -0.0026434625033289194, -0.0018283044919371605, -0.047743283212184906, -0.018887361511588097, 0.010138280689716339, -0.01913580484688282, -0.03187735006213188, 0.0006049451767466962, 0.00445081852376461, -0.038885556161403656, -0.0365433543920517, -0.004217448644340038, 0.002417447045445442, 0.015313243493437767, 0.026353981345891953, -0.007947532460093498, -0.003544888459146023, 0.025514615699648857, -0.05566423386335373, 0.000901850697118789, -0.0030364729464054108, -0.025784851983189583, 0.05270526185631752, -0.07652751356363297, -0.019345438107848167, 0.013580530881881714, -0.047293052077293396, -0.009659801609814167, 0.01143115758895874, 0.008822647854685783, -0.01192452572286129, -0.0480467863380909, 0.0057449559681117535, 0.02964460290968418, 0.028560344129800797, -0.026492290198802948, -0.005469046998769045, 0.03755535930395126, 0.00047757604625076056, -0.003902877913787961, -0.04459984973073006, 0.004091043025255203, -0.008681333623826504, -0.007335754577070475, -0.016008634120225906, 0.8499622941017151, 0.002385413274168968, 0.03312685340642929, -0.006285315845161676, 0.0391760915517807, -0.021759282797574997, -0.0083604846149683, 0.0036351941525936127, 0.0036733406595885754, -0.02885996736586094, -0.04670696705579758, 0.036686643958091736, -0.019234802573919296, 0.03796455264091492, 0.04278925433754921, -0.0006777986418455839, 0.008086168207228184, -0.014002077281475067, -0.002577620791271329, -0.0009139199974015355, 0.00944697018712759, 0.038123782724142075, -0.0010114131728187203, 0.009286925196647644, 0.050206299871206284, 0.025600263848900795, -0.16710148751735687, -0.00017842088709585369, -7.753026622778154e-33, 0.017344415187835693, 0.004361398052424192, 0.0462215356528759, -0.02230924181640148, 0.014678574167191982, -0.006726388819515705, 0.03938959538936615, 0.0029489281587302685, -0.006332291290163994, -0.011651876382529736, 0.019378582015633583, -0.010669833980500698, -0.008221905678510666, -0.02258959971368313, 0.05115731060504913, -0.007501861080527306, 0.0040313382633030415, 0.01348054688423872, -0.015713023021817207, 0.027467302978038788, 0.0010798026341944933, 0.06370645016431808, -0.000051252642151666805, -0.011702687479555607, 0.0006299913511611521, 0.04207459092140198, 0.026521172374486923, -0.03294189274311066, 0.009366541169583797, -0.05211670696735382, -0.04522290825843811, 0.012925408780574799, 0.031013742089271545, -0.003081507282331586, 0.030695060268044472, -0.015735236927866936, -0.016363784670829773, 0.017359333112835884, -0.007773375138640404, -0.016486063599586487, -0.027041703462600708, 0.008967768400907516, 0.0008442024700343609, 0.0006305731949396431, 0.006403421517461538, 0.0009861531434580684, 0.04437916353344917, 0.07071336358785629, 0.0015619060723111033, 0.04337010905146599, 0.008318289183080196, 0.011324050836265087, -0.018934311345219612, -0.0072253672406077385, -0.005339471623301506, -0.008583860471844673, -0.009554089978337288, -0.00607666838914156, -0.003957931883633137, 0.05789429694414139, 0.018278401345014572, -0.0055607957765460014, -0.010062619112432003, 0.04069201275706291, -0.016976721584796906, -0.014041058719158173, 0.012808240018785, 0.0019501650240272284, -0.011767911724746227, 0.016157105565071106, -0.05104668065905571, 0.010615698993206024, -0.014629889279603958, 0.0015309664886444807, 0.04539193585515022, -0.008422192186117172, -0.013935291208326817, -0.016195794567465782, -0.017004869878292084, 0.0010868551908060908, 0.03651466220617294, -0.034647103399038315, 0.04973975569009781, 0.013190335594117641, -0.019804123789072037, -0.013112102635204792, 0.03974677249789238, 0.03816807270050049, 0.023074079304933548, -0.022631581872701645, 0.002756923669949174, 0.03552548587322235, -0.02360450103878975, -0.03076871857047081, 0.014990865252912045, 7.630812679175068e-33, -0.03535616025328636, 0.0022381891030818224, 0.001014944864436984, 0.04191485792398453, -0.018440846353769302, -0.010262965224683285, 0.047904618084430695, 0.013922974467277527, -0.0029324081260710955, 0.020733652636408806, 0.0013939549680799246, 0.0027064091991633177, -0.028554340824484825, -0.006521246861666441, 0.0685093030333519, -0.024691514670848846, 0.005532799754291773, 0.015661675482988358, 0.020585769787430763, 0.01532132551074028, -0.012743322178721428, 0.010582210496068, 0.0032334006391465664, -0.018897024914622307, 0.012218082323670387, 0.03659092262387276, 0.0025717534590512514, -0.0026237417478114367, 0.002608468057587743, 0.004918187391012907, 0.0017562397988513112, -0.04013165086507797, 0.014376417733728886, -0.036523837596178055, 0.011670703068375587, 0.004568198695778847, -0.0015018797712400556, -0.02008388563990593, 0.01139062736183405, 0.019175346940755844, -0.007608965504914522, -0.015155047178268433, 0.017703581601381302, 0.00938158854842186, -0.03148118779063225, -0.000024952247258624993, -0.01716211810708046, 0.02778020314872265, 0.017483457922935486, 0.014002475887537003, 0.016070086508989334, 0.019600728526711464, 0.0025803428143262863, 0.0017448682337999344, -0.0033330190926790237, -0.007358728442341089, -0.018861791118979454, 0.0020085975993424654, -0.02056545950472355, -0.021283775568008423, -0.032316435128450394, -0.006869043223559856, 0.010449022054672241, -0.019606107845902443, -0.020450813695788383, -0.03523223474621773, -0.031278062611818314, -0.07466155290603638, -0.020776301622390747, 0.01047228742390871, -0.01442445907741785, -0.018367568030953407, -0.004580327309668064, 0.024139810353517532, -0.021753856912255287, -0.014769621193408966, -0.042260970920324326, 0.004153450019657612, 0.020524077117443085, 0.024814018979668617, 0.005021481774747372, 0.009105173870921135, 0.03599930554628372, -0.02835181914269924, 0.0181942917406559, -0.007938952185213566, -0.003893784713000059, 0.029277242720127106, 0.01958645135164261, 0.02136920765042305, -0.014963819645345211, -0.04710790142416954, 0.02499912492930889, 0.03379959613084793, -0.031002404168248177, -1.3188189207369305e-8, 0.002588439267128706, -0.050053127110004425, -0.043789248913526535, 0.003935731947422028, 0.017565952613949776, 0.015851318836212158, -0.04663673788309097, -0.03405848890542984, 0.010794386267662048, 0.023111116141080856, 0.032772988080978394, -0.0033326910343021154, -0.015880383551120758, -0.010712294839322567, 0.029253175482153893, -0.019165875390172005, 0.04299899563193321, -0.02637166902422905, 0.014782088808715343, -0.01498104352504015, -0.026191329583525658, 0.036965176463127136, -0.030615035444498062, -0.033105961978435516, 0.01811942085623741, -0.005615769885480404, 0.048390574753284454, -0.054896436631679535, 0.015198755078017712, -0.01088681723922491, 0.02859385311603546, -0.042120311409235, -0.03305639699101448, 0.010991755872964859, -0.034358810633420944, -0.01520018931478262, -0.002094623167067766, 0.03472573310136795, 0.038340386003255844, -0.035995326936244965, -0.009968116879463196, -0.028369633480906487, -0.021934853866696358, -0.02700972743332386, -0.0024395822547376156, -0.04621381312608719, -0.022084804251790047, -0.03328116238117218, 0.03261863440275192, 0.013203795999288559, 0.006387458648532629, -0.012236027978360653, 0.03794442489743233, 0.0021893910598009825, 0.043143220245838165, 0.011832879856228828, 0.03360578417778015, -0.05393246188759804, -0.03792477771639824, -0.01541171781718731, 0.004551011603325605, 0.019600829109549522, -0.002305104397237301, -0.0224493108689785 ]
haskell-mixed-type-lists
https://markhneedham.com/blog/2012/06/19/haskell-mixed-type-lists
false
2012-06-19 00:21:52
The Little Schemer: Attempt #2
[ "software-development", "little-schemer" ]
[ "Software Development" ]
A few weeks ago I asked the twittersphere for some advice on how I could get better at writing recursive functions and one of the pieces of advice was to work through http://www.amazon.co.uk/The-Little-Schemer-Daniel-Friedman/dp/0262560992/ref=sr_1_1?ie=UTF8&qid=1340064292&sr=8-1[The Little Schemer]. I first heard about The Little Schemer a couple of years ago and after going through the first few pages I got bored and gave up. I still found the first few pages a bit trivial this time around as well but my colleague https://twitter.com/#!/jennifersmithco[Jen Smith] encouraged me to keep going and once I'd got about 20 pages in it became clearer to me why the first few pages had been written the way they had. I'm just under half way through at the moment and so far the whole thing that the authors are trying to get you to do is *think through problems in a way that makes them easily solvable using recursion*. In the first few pages that approach seems ridiculously over the top but it gets you thinking in the right way and means that when you reach the exercises where you need to write your own functions it's not too much of a step up. Since I've been learning Haskell for the last few months I thought it'd be interesting to try and use that language even though Clojure would be a more natural fit. I initially wrote the solutions to exercises using idiomatic Haskell before realising I was probably missing the point by doing that: [source,haskell] ---- multiInsertL new old [] = [] multiInsertL new old (x:xs) | x == old = new:old:multiInsertL new old xs | otherwise = x:multiInsertL new old xs ---- I came across the http://hackage.haskell.org/package/cond[cond] package which lets you simulate a Scheme/Clojure 'cond' and so far all the functions in the exercises have made use of that. [source,haskell] ---- multiInsertL2 new old lat = cond [(null lat, []), (head lat == old, new:old:multiInsertL2 new old (tail lat)), (otherwise, (head lat):multiInsertL2 new old (tail lat))] ---- I wouldn't write Haskell like this normally but I think it's helpful for me while I'm getting used to the different patterns you can have in recursive functions. As we go through the exercises the authors describe 'commandments' that you should follow when writing recursive functions which are really useful for me as a novice. My favourite one so far is the 4th commandment: ____ Always change at least one argument while recursing. It must be changed to be closer to termination. The changing argument must be tested in the termination condition: * when using cdr, test termination with null? and * when using sub1, test termination with zero? ____ So many times when I've tried to write recursive functions I've ended up putting them into an infinite loop but following this rule should help avoid that! The cool thing about this book is that you can work through a few problems, put it down for a few days before picking it back up and you'll still be able to pick up from where you left off quite easily. Highly recommended so far!
null
null
[ 0.011853867210447788, 0.00003993374411948025, -0.0066434526816010475, 0.029178710654377937, 0.07882917672395706, 0.03524661809206009, 0.02359381876885891, 0.004437706898897886, 0.015514916740357876, -0.013021941296756268, 0.008403616026043892, -0.0008334940066561103, -0.052750490605831146, 0.015248089097440243, -0.01870500110089779, 0.04670450836420059, 0.05826762318611145, -0.02123669534921646, -0.01191174890846014, 0.011732920072972775, 0.028736310079693794, 0.07460333406925201, 0.0021594432182610035, 0.011392466723918915, 0.02056680992245674, -0.003808113979175687, 0.02755131758749485, 0.014603640884160995, -0.051374029368162155, 0.002474994631484151, 0.03192348778247833, 0.022299064323306084, 0.007305220700800419, -0.021969646215438843, 0.012322010472416878, -0.014690417796373367, -0.010748562403023243, -0.00005704208160750568, 0.0033705737441778183, 0.018601570278406143, -0.07307057827711105, 0.02457944117486477, -0.012438939884305, 0.0056111752055585384, -0.03958461061120033, 0.00027458902332000434, -0.04430292919278145, 0.0004361836181487888, -0.0013168714940547943, 0.005395587999373674, -0.06124472618103027, 0.024044567719101906, 0.02081175707280636, -0.021740984171628952, -0.034762345254421234, 0.04257139563560486, 0.01922179013490677, -0.08376391232013702, 0.05618331581354141, -0.032397158443927765, -0.03163451701402664, 0.00026140265981666744, 0.014871153049170971, 0.04394562914967537, -0.0015491282101720572, -0.013656709343194962, -0.03315411135554314, 0.04182944819331169, -0.055941976606845856, -0.02580149658024311, -0.012963125482201576, 0.013691253028810024, -0.023790275678038597, -0.026040876284241676, 0.0016369725344702601, -0.03961062431335449, 0.0013953521847724915, 0.07708847522735596, 0.009478104300796986, 0.026271941140294075, -0.03129342198371887, 0.031698327511548996, 0.013088022358715534, 0.03694811835885048, 0.003575084265321493, -0.03152184188365936, -0.02840660884976387, 0.0009922186145558953, -0.06643420457839966, 0.061595261096954346, 0.02550174854695797, -0.07324499636888504, 0.005001004319638014, 0.007551494054496288, 0.010476112365722656, 0.014311984181404114, 0.01812116615474224, 0.006278210785239935, 0.017637858167290688, -0.005490821786224842, -0.02439156174659729, -0.04511769488453865, -0.0088268481194973, -0.033185288310050964, -0.07520968466997147, -0.0014625327894464135, -0.019896119832992554, -0.009770862758159637, 0.014803205616772175, -0.00986317079514265, -0.031137540936470032, 0.014811831526458263, -0.001042177784256637, 0.003953882958739996, -0.0786396935582161, 0.05696774274110794, 0.0028472181875258684, -0.020079324021935463, -0.0369507372379303, 0.0065512931905686855, 0.04427241533994675, 0.020733634009957314, 0.015122832730412483, 0.08482250571250916, 0.0333845280110836, 0.034558214247226715, 0.0041226232424378395, 0.07616805285215378, -0.0029184073209762573, -0.056866761296987534, -0.02652355097234249, 0.05998653173446655, -0.020792396739125252, 0.0009070898522622883, -0.0036599179729819298, -0.03729546442627907, -0.04627087339758873, 0.024713410064578056, 0.05382158234715462, 0.04869198054075241, 0.030617015436291695, -0.023839764297008514, 0.04212794452905655, -0.018487999215722084, 0.02828100137412548, 0.006231712643057108, -0.0059430901892483234, -0.001222205930389464, -0.03213901445269585, -0.0057017747312784195, 0.014501328580081463, 0.02207578718662262, 0.0389365516602993, -0.021922236308455467, 0.030407223850488663, 0.08020960539579391, 0.026184165850281715, 0.013425005599856377, -0.021258316934108734, 0.034819670021533966, 0.030472299084067345, 0.02235613390803337, 0.013869431801140308, 0.029604928568005562, 0.013871177099645138, -0.02628687396645546, 0.005763152614235878, 0.061552539467811584, 0.012647105380892754, -0.012642628513276577, -0.05886353924870491, -0.030237382277846336, 0.06241041049361229, -0.02550436742603779, -0.026726165786385536, 0.0018354268977418542, 0.08281251043081284, 0.015452376566827297, 0.055726975202560425, 0.0030247061513364315, -0.07053939998149872, 0.03830306977033615, 0.01030595414340496, 0.055725712329149246, 0.0056661320850253105, -0.010123131796717644, 0.07222920656204224, 0.030232250690460205, 0.032591383904218674, 0.026671212166547775, -0.06894459575414658, -0.06931870430707932, -0.011466518975794315, -0.024227675050497055, 0.07273948192596436, 0.00010180393292102963, -0.004646151326596737, 0.04464567080140114, 0.014419099316000938, 0.03498822823166847, 0.030868183821439743, 0.001073140767402947, 0.006238928530365229, -0.016304336488246918, -0.04702603816986084, 0.045575015246868134, 0.042111366987228394, -0.024925386533141136, -0.05194457247853279, 0.009468846023082733, -0.007505479268729687, -0.007305941544473171, 0.05280350521206856, -0.02986900694668293, 0.010970521718263626, 0.048848897218704224, 0.03399350494146347, -0.009745595045387745, 0.05028245970606804, -0.03906531259417534, 0.023373346775770187, 0.019013341516256332, 0.009797208942472935, 0.00233099446631968, 0.0052176048047840595, 0.13382552564144135, 0.0676097422838211, -0.056312162429094315, -0.03365221619606018, 0.009303807280957699, -0.009474149905145168, -0.034138645976781845, -0.005007203668355942, -0.0009017057018354535, 0.0116959810256958, 0.024948298931121826, -0.033128853887319565, -0.022309621796011925, 0.01840926520526409, -0.027996927499771118, -0.015225488692522049, 0.08489123731851578, -0.025474602356553078, 0.06241592764854431, -0.01538575068116188, -0.009135653264820576, -0.03315487876534462, -0.03334084525704384, -0.07110601663589478, 0.002303198678418994, 0.009304509498178959, -0.0008548761252313852, 0.062152788043022156, -0.02885521948337555, -0.021346626803278923, -0.020512713119387627, -0.03369831666350365, 0.039189405739307404, 0.05683271586894989, 0.07274210453033447, -0.022019343450665474, 0.04463299363851547, -0.002677014796063304, 0.011629566550254822, -0.017082972452044487, -0.05696083605289459, -0.028149433434009552, -0.01688956655561924, 0.010312804952263832, 0.02306412160396576, 0.03171142190694809, 0.009841140359640121, -0.0011268830858170986, -0.015804562717676163, -0.0020069971214979887, -0.03260759264230728, 0.010089621879160404, -0.02255203202366829, -0.0321371927857399, -0.034915436059236526, -0.05381764844059944, 0.08019179105758667, -0.04701804742217064, -0.022501230239868164, -0.004244710318744183, -0.02446690760552883, 0.08178915083408356, -0.05040065199136734, -0.02608540467917919, 0.007893833331763744, 0.01767726242542267, 0.04011331498622894, -0.01193227432668209, 0.008866468444466591, 0.06439913809299469, 0.008577962405979633, 0.028913285583257675, 0.009478609077632427, 0.0056191314943134785, 0.04602733999490738, -0.005639792885631323, 0.015366815961897373, 0.053716741502285004, 0.026278188452124596, 0.0018134423298761249, -0.032869111746549606, 0.00988150667399168, -0.011775841005146503, -0.27801406383514404, 0.024101968854665756, -0.015246099792420864, -0.0336708128452301, 0.015191243030130863, -0.021112678572535515, -0.004853270016610622, -0.05543920025229454, -0.018597900867462158, 0.025407355278730392, -0.02376924641430378, -0.025566821917891502, -0.049456506967544556, 0.042153071612119675, 0.018446389585733414, -0.006395530421286821, -0.007398779038339853, -0.017979633063077927, -0.015313453041017056, 0.06405775249004364, -0.010609226301312447, -0.0695648267865181, 0.01088956743478775, 0.02491360530257225, 0.02351628988981247, 0.036615632474422455, -0.08239032328128815, 0.032593730837106705, -0.06242823973298073, -0.02101721055805683, -0.02854214981198311, -0.022157810628414154, 0.01895393803715706, -0.02415841817855835, -0.03541302680969238, -0.008294363506138325, 0.011767284944653511, 0.007458103820681572, 0.01612883433699608, 0.034763507544994354, -0.013890792615711689, -0.032091036438941956, 0.001992914592847228, -0.012672977522015572, 0.07553376257419586, -0.01290048100054264, -0.068265400826931, -0.0068190861493349075, -0.033318422734737396, 0.0688941702246666, -0.03715565428137779, -0.05556131526827812, -0.006084802560508251, 0.02972230315208435, -0.009069683030247688, -0.025162216275930405, -0.03592456132173538, -0.03237888589501381, -0.03728816285729408, -0.03788934648036957, -0.0074343872256577015, -0.017862116917967796, -0.005498029291629791, -0.04232746735215187, -0.018968472257256508, -0.06177108734846115, -0.08058596402406693, -0.007231501396745443, 0.0879007875919342, 0.009961421601474285, -0.021111678332090378, -0.0052566081285476685, -0.016376085579395294, -0.0998242050409317, -0.031320974230766296, -0.018745945766568184, -0.03876197338104248, -0.003657120978459716, 0.036982957273721695, 0.057873908430337906, -0.04865572229027748, -0.07830148190259933, 0.011994530446827412, 0.006965283770114183, 0.04653801769018173, -0.015690144151449203, -0.001056091976352036, -0.013466463424265385, -0.029780469834804535, -0.01270205993205309, 0.06079186126589775, 0.002157153096050024, -0.019656214863061905, -0.025332540273666382, 0.020692363381385803, 0.03579887002706528, 0.018285835161805153, -0.010215450078248978, 0.01672680862247944, 0.04859817773103714, 0.03021441586315632, -0.037664733827114105, 0.026008306071162224, -0.027632510289549828, -0.024699382483959198, -0.00734817935153842, -0.05626101419329643, 0.018245413899421692, 0.011687291786074638, 0.010426439344882965, -0.037895042449235916, -0.05241067707538605, 0.01839621551334858, -0.06387796998023987, -0.06556785851716995, -0.0076937442645430565, -0.0022541768848896027, 0.027913585305213928, 0.0003218007623218, -0.015195864252746105, -0.06575699150562286, 0.00620162533596158, -0.00009137499728240073, -0.02014298550784588, -0.05389595776796341, -0.025961047038435936, -0.012589293532073498, -0.026071317493915558, 0.02441326342523098, 0.025871410965919495, 0.006040298845618963, 0.01725533977150917, 0.014297391287982464, -0.05392623692750931, 0.036830008029937744, -0.030971933156251907, -0.03741471841931343, -0.02587019093334675, -0.017900021746754646, -0.009913325309753418, 0.02873918041586876, -0.0025126615073531866, 0.024910004809498787, 0.024708066135644913, 0.03213415667414665, -0.006283347960561514, 0.026788337156176567, -0.00818692147731781, -0.007381448056548834, 0.02521837130188942, 0.012178845703601837, -0.04601644352078438, 0.030437732115387917, -0.04689948633313179, -0.013785479590296745, 0.004948462825268507, 0.04851797968149185, -0.027530688792467117, -0.04867978394031525, -0.027288394048810005, 0.034404266625642776, -0.0471806526184082, -0.02537478134036064, -0.024827199056744576, 0.016072126105427742, 0.05117205157876015, -0.023388396948575974, 0.03846593201160431, -0.024859780445694923, 0.003771540941670537, 0.014019283466041088, 0.035353418439626694, -0.040297966450452805, 0.026593176648020744, -0.0068057808093726635, 0.005390367936342955, -0.009740563109517097, 0.015614522621035576, 0.045839108526706696, 0.002253411104902625, -0.024153955280780792, -0.019043948501348495, 0.007885856553912163, 0.03257986530661583, 0.06614319980144501, -0.0001302566088270396, -0.009469167329370975, 0.020883789286017418, -0.028318030759692192, -0.014684523455798626, -0.026233432814478874, 0.004930925089865923, -0.0067144352942705154, 0.0370066873729229, -0.03786340728402138, -0.0697493702173233, 0.0009887850610539317, 0.0629221647977829, -0.007898072712123394, 0.01664077118039131, 0.0025771320797502995, -0.012950963340699673, -0.00479136360809207, 0.01084673311561346, 0.08304246515035629, -0.05336196348071098, -0.01813846454024315, -0.015566222369670868, 0.027368171140551567, 0.031755734235048294, 0.037057992070913315, -0.0662802904844284, -0.025645796209573746, -0.017802657559514046, 0.0003275895433034748, -0.011942113749682903, -0.020611431449651718, -0.016897832974791527, 0.010992620140314102, -0.006140653043985367, -0.03214002400636673, -0.04033992439508438, -0.014349806122481823, 0.0028771094512194395, -0.04366232827305794, 0.010938966646790504, -0.03779304772615433, -0.010380200110375881, 0.027355439960956573, -0.05029614642262459, 0.034529972821474075, -0.03133415803313255, 0.0336470864713192, 0.015354600735008717, -0.013014628551900387, 0.005605367943644524, -0.04288816824555397, 0.01775447279214859, -0.048197191208601, 0.03516146540641785, -0.01783633604645729, -0.02478904090821743, -0.04004662111401558, -0.011454328894615173, -0.06391464173793793, 0.003595680231228471, 0.0010942477965727448, -0.02748206816613674, 0.007197472266852856, 0.04390982910990715, -0.021620050072669983, 0.046286147087812424, -0.025951508432626724, -0.003652550745755434, 0.04481610283255577, -0.030898576602339745, -0.04126069322228432, -0.045442141592502594, -0.03403571993112564, 0.011014743708074093, -0.0003944016934838146, 0.01383931189775467, -0.04319363832473755, 0.04297015443444252, 0.051352255046367645, 0.01822562888264656, 0.03932112827897072, -0.018248137086629868, 0.035077523440122604, -0.043474603444337845, -0.007194974925369024, -0.09751669317483902, -0.007016490213572979, 0.026683103293180466, -0.0004944517277181149, -0.007613909896463156, 0.0026272935792803764, -0.01752421446144581, 0.03598052263259888, -0.06694496423006058, 0.0042630648240447044, 0.043317198753356934, -0.01135623175650835, 0.01179354079067707, 0.024591835215687752, -0.05711362883448601, 0.0125765111297369, 0.02372882328927517, -0.02698276750743389, 0.0008444443228654563, -0.028179505839943886, 0.042475905269384384, -0.003771102288737893, 0.045945268124341965, 0.012994599528610706, 0.002981281140819192, 0.04677209630608559, 0.018846042454242706, 0.010262200608849525, 0.05580595135688782, -0.00579790398478508, 0.012919927947223186, 0.03724820911884308, 0.013968427665531635, -0.00913073867559433, 0.027046890929341316, -0.03384004160761833, -0.07382519543170929, 0.02936618961393833, 0.013013225048780441, -0.030963724479079247, -0.031105484813451767, 0.05323304608464241, 0.021765975281596184, -0.023465266451239586, -0.051979854702949524, 0.02809114381670952, -0.060519102960824966, 0.004755886737257242, -0.021390601992607117, 0.006315404549241066, -0.03916657343506813, 0.05113471299409866, -0.02636520192027092, -0.019281355664134026, 0.07005245983600616, 0.003235460724681616, -0.0357380285859108, -0.009043845348060131, 0.10838476568460464, 0.08760057389736176, 0.06795459985733032, -0.006919141858816147, 0.05937720835208893, -0.05139267444610596, -0.048724375665187836, 0.014171332120895386, 0.013741878792643547, 0.012802372686564922, -0.037654343992471695, 0.030816184356808662, 0.0735587477684021, -0.02219318225979805, 0.07623829692602158, -0.020524147897958755, -0.00489339092746377, 0.0005121186841279268, 0.01629708521068096, 0.012223755940794945, 0.07514882832765579, 0.03175165504217148, 0.04250338301062584, -0.017468180507421494, -0.05152294039726257, 0.033308643847703934, -0.03218957036733627, -0.011675484478473663, 0.005380588583648205, 0.015205895528197289, 0.00292279664427042, 0.03621350973844528, 0.03572754189372063, 0.06928498297929764, -0.03931230306625366, 0.02155953273177147, 0.0007594712660647929, 0.04413687065243721, 0.021542847156524658, 0.006946399807929993, -0.020461102947592735, -0.020169954746961594, 0.0051764631643891335, -0.028665363788604736, -0.017038235440850258, -0.023027239367365837, -0.03800727799534798, 0.04096885770559311, -0.02905835583806038, -0.02015876956284046, 0.019640956073999405, -0.023843128234148026, -0.02548365667462349, -0.06537699699401855, -0.031466785818338394, -0.03496210649609566, -0.07615870982408524, 0.015466898679733276, -0.006317188963294029, -0.02548602968454361, -0.028062738478183746, -0.019982777535915375, -0.010168163105845451, -0.02270415984094143, 0.04011085256934166, -0.02349790371954441, -0.02329087257385254, -0.0031722381245344877, 0.011938037350773811, 0.031264837831258774, 0.014862287789583206, 0.04046856239438057, 0.00019143946701660752, -0.013021441176533699, -0.023611517623066902, -0.014542356133460999, 0.043306395411491394, 0.034592531621456146, -0.0022958579938858747, -0.08872117847204208, 0.019802404567599297, 0.04051820933818817, 0.02775515802204609, -0.08964819461107254, 0.010321971960365772, 0.010150718502700329, 0.0014977558748796582, 0.034151047468185425, -0.010463302955031395, -0.008103330619633198, -0.02781333215534687, 0.010955395177006721, 0.01892966218292713, 0.02855326421558857, 0.03707508742809296, -0.017403291538357735, 0.09905610233545303, 0.005910905543714762, -0.02279903180897236, -0.025942979380488396, -0.025043092668056488, -0.022437848150730133, 0.004484143108129501, -0.027821261435747147, -0.004472942557185888, -0.03188313916325569, -0.06679261475801468, -0.022594986483454704, -0.00783879030495882, -0.04371139407157898, -0.019295774400234222, 0.026371633633971214, 0.052935633808374405, -0.03449724242091179, 0.05506513640284538, -0.03857572376728058, 0.045857105404138565, -0.011807553470134735, -0.012365405447781086, 0.0040731281042099, -0.0031520396005362272, 0.00240067346021533, 0.012841807678341866, -0.0029182343278080225, -0.046556007117033005, 0.009199769236147404, -0.009476923383772373, 0.036882299929857254, 0.008094086311757565, -0.01211907435208559, 0.032947417348623276 ]
[ -0.10290425270795822, -0.043420590460300446, -0.02213098853826523, -0.013410758227109909, -0.003909023944288492, -0.047075964510440826, -0.03487962856888771, 0.03726049140095711, -0.001591294421814382, -0.041979093104600906, 0.005824096966534853, -0.040881868451833725, 0.007993772625923157, -0.01225905492901802, 0.12050805240869522, 0.013336090371012688, -0.009878257289528847, -0.05052325874567032, -0.022567979991436005, -0.015787316486239433, 0.03247582167387009, -0.03918213024735451, -0.04537459462881088, -0.06293129175901413, 0.03504428267478943, 0.03998906910419464, 0.04111422970890999, -0.03485988825559616, 0.008270930498838425, -0.20584581792354584, 0.00444834865629673, 0.006491558160632849, 0.04596146568655968, -0.02525576762855053, -0.003324774792417884, 0.05025027319788933, 0.009661702439188957, 0.010030903853476048, -0.03547248616814613, 0.05623948946595192, 0.027105098590254784, 0.019825341179966927, -0.02075115218758583, -0.007025374099612236, 0.04274663329124451, -0.008588621392846107, -0.024649955332279205, -0.017242930829524994, -0.03906959295272827, 0.0035090388264507055, -0.08842664957046509, -0.028158092871308327, 0.007581723388284445, -0.012064569629728794, 0.014182348735630512, 0.03649793937802315, 0.051060233265161514, 0.08834119886159897, 0.01338557992130518, 0.013667847961187363, 0.022286364808678627, 0.011511304415762424, -0.12096813321113586, 0.0994253009557724, 0.04285521060228348, 0.03920300304889679, -0.019678819924592972, -0.038286708295345306, -0.014362421818077564, 0.10710756480693817, 0.0253150537610054, -0.013790972530841827, -0.0349709652364254, 0.06065816432237625, 0.016039326786994934, -0.03331868723034859, -0.004443132318556309, 0.010126054286956787, 0.04169366881251335, -0.030937833711504936, -0.03310607373714447, -0.037686433643102646, -0.04226095601916313, -0.009095384739339352, -0.01685199700295925, -0.001101684058085084, -0.052084945142269135, 0.047299012541770935, 0.020557358860969543, 0.022342970594763756, 0.03864258527755737, -0.022798186168074608, 0.030201483517885208, 0.006058055907487869, -0.0845087468624115, -0.007311138324439526, -0.0005556858377531171, 0.013304297812283039, -0.04750784486532211, 0.4196535348892212, -0.028219930827617645, -0.013520396314561367, 0.08635280281305313, 0.04094826430082321, -0.011946866288781166, 0.005312986206263304, 0.002326671965420246, -0.06403035670518875, 0.006080750375986099, -0.04666581377387047, -0.02883954532444477, -0.032063473016023636, 0.08625034987926483, -0.05137570574879646, 0.0012314262567088008, 0.0010713260853663087, 0.06279624998569489, 0.022510971873998642, 0.02107647806406021, 0.012259544804692268, 0.008853815495967865, 0.015092534944415092, -0.00043739774264395237, 0.008668286725878716, 0.0011398934293538332, -0.024065693840384483, 0.010081874206662178, 0.03819577395915985, 0.02750186063349247, 0.05869642272591591, 0.04597809910774231, -0.006003256421536207, -0.03873791918158531, -0.0023513869382441044, 0.021513894200325012, 0.002827898832038045, 0.006779447663575411, -0.031831275671720505, 0.021395763382315636, 0.02960294485092163, -0.010124868713319302, -0.022851474583148956, 0.021394532173871994, 0.002460883231833577, -0.03367307782173157, 0.10032840073108673, -0.0026449691504240036, -0.016479386016726494, 0.011942662298679352, -0.01790878362953663, 0.00297129200771451, 0.02938658557832241, 0.012594825588166714, -0.1015339121222496, 0.0298009030520916, 0.01893475092947483, 0.06950908899307251, -0.03161781281232834, -0.08313024789094925, 0.01755991205573082, -0.04274865612387657, -0.02758621796965599, -0.04715048521757126, 0.0385061539709568, 0.010040432214736938, -0.0856969952583313, -0.01711125485599041, 0.007067604921758175, 0.050308555364608765, -0.07875530421733856, 0.012365564703941345, 0.024996381253004074, -0.024372011423110962, -0.02118411287665367, 0.048212017863988876, -0.03318158909678459, -0.04475521668791771, 0.004421559628099203, 0.05316046252846718, 0.034673064947128296, 0.0063789705745875835, -0.0038506698329001665, -0.036005642265081406, 0.023907450959086418, -0.04500443488359451, -0.05610590800642967, -0.052543774247169495, -0.012277108617126942, -0.005581469740718603, -0.016143906861543655, 0.004629612900316715, -0.012844445183873177, -0.07465042918920517, 0.04514172673225403, -0.04830686375498772, -0.03606412187218666, 0.03540879860520363, -0.012916644103825092, -0.006674136966466904, -0.0014405817491933703, -0.03603338450193405, 0.03845168277621269, -0.00839936826378107, 0.022372562438249588, -0.07735585421323776, 0.010258891619741917, 0.06109679862856865, -0.07894092053174973, 0.10293322801589966, 0.0611962229013443, -0.0038658545818179846, -0.02350476384162903, -0.010846026241779327, -0.0037619667127728462, -0.005819959565997124, -0.0011061575496569276, 0.016019215807318687, -0.017561178654432297, 0.016373615711927414, 0.008347704075276852, -0.03795650228857994, -0.02886214666068554, -0.04692874848842621, -0.3358989357948303, -0.06705178320407867, 0.008795651607215405, -0.027268825098872185, 0.0014954376965761185, -0.09607785940170288, -0.006357570178806782, -0.021197693422436714, -0.020780149847269058, 0.013062488287687302, 0.058860696852207184, -0.023397238925099373, 0.0032307757064700127, -0.07603877037763596, 0.00951441004872322, 0.01809357851743698, -0.017430920153856277, -0.023681167513132095, -0.023417392745614052, 0.03148368373513222, -0.007640071678906679, -0.021728897467255592, -0.0059498632326722145, -0.07082755118608475, -0.023077908903360367, -0.03339621424674988, 0.10774726420640945, 0.018418075516819954, 0.10179854184389114, -0.02986055053770542, 0.05788741260766983, -0.009739874862134457, 0.025307215750217438, -0.0661211758852005, 0.00012095041893189773, -0.010151403956115246, 0.026271384209394455, -0.038355499505996704, 0.051853325217962265, -0.0382213331758976, -0.030541228130459785, 0.02297173999249935, -0.05537296086549759, -0.020835932344198227, -0.05868777632713318, 0.036338601261377335, -0.04350970685482025, -0.05483710765838623, -0.021652616560459137, 0.08072227239608765, 0.032009657472372055, 0.011422179639339447, 0.016779659315943718, 0.015948472544550896, -0.019114363938570023, -0.006389734800904989, -0.06194409728050232, -0.010755820199847221, 0.010775426402688026, -0.011304863728582859, 0.0346757210791111, 0.07114803791046143, 0.04543961212038994, -0.04076795652508736, 0.015391594730317593, -0.00014442927204072475, -0.011712731793522835, -0.011364728212356567, 0.026704631745815277, -0.0172369834035635, -0.01839895360171795, 0.09903120994567871, -0.018732905387878418, 0.014084217138588428, 0.023165766149759293, 0.052103184163570404, -0.015433908440172672, 0.05274897813796997, 0.039557430893182755, 0.00274793803691864, 0.029903443530201912, -0.022268010303378105, 0.02339065819978714, -0.04319608211517334, -0.027843350544571877, -0.010113482363522053, -0.020409753546118736, -0.004231522791087627, 0.027686117216944695, 0.025099169462919235, -0.031002461910247803, 0.053759001195430756, 0.013954232446849346, -0.021903784945607185, 0.06368505954742432, -0.0017657573334872723, -0.25432664155960083, 0.02065226063132286, 0.03772645816206932, 0.042637959122657776, -0.0022557664196938276, 0.02265230193734169, 0.028293678537011147, -0.05975916236639023, -0.018476542085409164, -0.0088193966075778, 0.02985757775604725, 0.05780608952045441, 0.025531355291604996, 0.016101054847240448, 0.028541846200823784, -0.0323844850063324, 0.034770309925079346, -0.004830298945307732, -0.01933031529188156, 0.0034383395686745644, 0.04158077389001846, 0.008791382424533367, 0.19427481293678284, 0.0004663092258851975, 0.012756513431668282, 0.024263910949230194, 0.005240981001406908, 0.016380133107304573, 0.0705234706401825, 0.006226035766303539, -0.01627100631594658, 0.018767761066555977, 0.034822139889001846, 0.006066920701414347, 0.03497504070401192, -0.05041573569178581, -0.029485391452908516, 0.032562412321567535, 0.040581125766038895, -0.014728235080838203, 0.005582377314567566, 0.022420335561037064, -0.017130648717284203, 0.042991865426301956, 0.05375121161341667, 0.007679575122892857, 0.004277611616998911, -0.04172471538186073, -0.05085863173007965, 0.025045638903975487, -0.0395318940281868, -0.03527458384633064, 0.004351846873760223, 0.012291008606553078, 0.009134845808148384, 0.06736857444047928, 0.013583739288151264, -0.022677302360534668, -0.022518742829561234, 0.0028631146997213364, -0.007527752313762903, -0.024597980082035065, 0.11713051795959473, 0.026855451986193657, 0.03527030348777771 ]
[ -0.010689286515116692, -0.023015063256025314, -0.0055324542336165905, -0.038134559988975525, -0.004778450354933739, -0.018419824540615082, 0.004681337624788284, 0.011777915991842747, -0.014590660110116005, -0.010919669643044472, 0.01133028231561184, 0.014381194487214088, 0.034937720745801926, -0.024020584300160408, 0.0047516231425106525, 0.006817829329520464, -0.02747965231537819, 0.002622622298076749, 0.017644857987761497, -0.04264282062649727, -0.012275593355298042, 0.020736997947096825, -0.0002471805491950363, 0.02274349518120289, -0.005749194882810116, 0.02724464423954487, -0.011448501609265804, -0.022449953481554985, 0.004037461243569851, -0.11134684830904007, -0.014497680589556694, -0.01127338781952858, 0.005583608523011208, -0.00933124776929617, -0.03245406597852707, 0.03747601807117462, -0.011804888024926186, -0.016561204567551613, -0.0074785989709198475, -0.0031141815707087517, -0.02577516809105873, -0.021534062922000885, -0.007631305605173111, 0.005446702241897583, 0.003123587928712368, 0.01871313713490963, 0.01621791161596775, -0.009013778530061245, 0.004013914614915848, -0.016528157517313957, -0.0008921526023186743, 0.013216002844274044, -0.0007659572875127196, 0.025730283930897713, 0.030937559902668, -0.0040239072404801846, -0.028242245316505432, -0.013483497314155102, -0.001807219348847866, -0.03897596523165703, -0.027506684884428978, 0.010797123424708843, -0.031960245221853256, -0.025955911725759506, -0.026127777993679047, -0.026419365778565407, -0.020010462030768394, 0.028514541685581207, 0.007921029813587666, 0.015788419172167778, -0.00882174912840128, 0.0345686636865139, -0.05033610761165619, -0.019913580268621445, 0.008744530379772186, 0.007393382024019957, 0.037771064788103104, -0.040704529732465744, -0.009370114654302597, -0.02581210434436798, -0.012046380899846554, 0.0037118836771696806, 0.05207345262169838, 0.013844463974237442, -0.005423249211162329, -0.04886108636856079, -0.01760227046906948, -0.018149694427847862, 0.02362256683409214, -0.008228476159274578, 0.01277493592351675, 0.03301890939474106, -0.0020853138994425535, 0.0007323818281292915, -0.07759932428598404, -0.0029983047861605883, -0.012771562673151493, -0.01724569872021675, 0.004481577780097723, 0.872980535030365, -0.006177786737680435, 0.0331716351211071, 0.03143918514251709, 0.008152239955961704, 0.007182699162513018, -0.0029040563385933638, -0.016305575147271156, 0.026880690827965736, 0.0032102675177156925, -0.0466751791536808, 0.025646181777119637, -0.008056040853261948, 0.02205396443605423, 0.03459862619638443, 0.013668579049408436, 0.039004020392894745, 0.022048374637961388, 0.009997343644499779, 0.016370946541428566, 0.013388271443545818, 0.012687905691564083, -0.009281999431550503, 0.009570087306201458, 0.03584782034158707, 0.013062073849141598, -0.17439314723014832, -0.03157077729701996, -7.32259218291771e-33, 0.01564265601336956, 0.015394984744489193, 0.006728241220116615, -0.011569246649742126, 0.002645544707775116, -0.01017182506620884, 0.03804229199886322, 0.015384153462946415, -0.03837460279464722, -0.001618710346519947, -0.0023272340185940266, 0.0011233608238399029, -0.01316969282925129, -0.022758064791560173, 0.04033656045794487, -0.014479437842965126, 0.0026270945090800524, 0.035504039376974106, -0.0026952801272273064, 0.011898880824446678, 0.025831785053014755, 0.055834151804447174, 0.0013741012662649155, -0.003952268976718187, 0.01866305246949196, 0.04028390720486641, 0.03497438132762909, -0.015419221483170986, -0.009005858562886715, -0.05895350128412247, -0.026426244527101517, 0.038921844214200974, 0.011705645360052586, 0.0025708782486617565, 0.04004227742552757, -0.017237698659300804, 0.0038999610114842653, 0.01619901694357395, -0.025089643895626068, -0.013427318073809147, -0.021763255819678307, -0.003276870120316744, -0.018915193155407906, -0.013682406395673752, 0.005604133475571871, -0.008773131296038628, -0.021495267748832703, 0.010206813924014568, 0.02500729262828827, 0.005618831608444452, 0.011289219371974468, 0.020412074401974678, -0.005068526603281498, 0.006013740319758654, -0.0019404286285862327, -0.00993648637086153, -0.04113548994064331, 0.017318805679678917, 0.029007647186517715, 0.020672069862484932, 0.01574666053056717, 0.007195828482508659, -0.03620157763361931, 0.03163154423236847, -0.024901198223233223, -0.028017094358801842, -0.00431636581197381, 0.009579205885529518, -0.0026000665966421366, 0.016031373292207718, -0.04007728025317192, 0.009400923736393452, -0.012355557642877102, 0.0037135134916752577, 0.035709530115127563, -0.0313289575278759, -0.03247704729437828, -0.0292679313570261, -0.01437355112284422, 0.031644806265830994, 0.01606866903603077, -0.01545572280883789, 0.01633494347333908, 0.008348481729626656, -0.013713888823986053, 0.010767272673547268, 0.03659828007221222, 0.004607102833688259, -0.0044403173960745335, 0.0006366873276419938, 0.011615073308348656, 0.0005683116614818573, 0.012260498479008675, -0.032120201736688614, -0.010629545897245407, 7.521269095305908e-33, -0.033915597945451736, -0.025242486968636513, -0.002957246033474803, 0.04138372465968132, -0.0058150882832705975, -0.007550329435616732, 0.035169776529073715, 0.012936904095113277, -0.030087310820817947, 0.027515936642885208, -0.02256453037261963, 0.014882512390613556, -0.0028326702304184437, 0.014179462566971779, 0.07381083071231842, -0.01950398087501526, 0.01396896131336689, -0.013032713904976845, -0.0013439293252304196, 0.01751931756734848, -0.0004998521762900054, -0.005728104151785374, 0.008848801255226135, -0.015932995826005936, -0.0008134995587170124, 0.0568029060959816, 0.0006724195554852486, 0.019269831478595734, -0.007927323691546917, -0.009974654763936996, -0.02663438767194748, -0.02405506744980812, 0.04187806695699692, 0.009654191322624683, 0.018988875672221184, 0.020645219832658768, -0.02122122421860695, -0.012194729410111904, 0.009352880530059338, 0.0017231235979124904, 0.020029261708259583, -0.010537474416196346, 0.01995049975812435, 0.03383613005280495, -0.013313595205545425, 0.0009023526799865067, 0.0010584460105746984, 0.005089914426207542, 0.010072067379951477, -0.0022975588217377663, 0.001324883894994855, -0.006095550023019314, 0.019233601167798042, -0.0060861618258059025, 0.0011502442648634315, -0.017169959843158722, -0.01664777658879757, 0.01605501025915146, -0.012309441342949867, -0.023381732404232025, -0.01690017431974411, -0.0281878262758255, -0.005017570685595274, 0.011138886213302612, -0.005804135464131832, -0.0302727110683918, -0.04861845448613167, -0.03368113934993744, -0.00916391983628273, 0.004696582444012165, -0.024376394227147102, -0.01703760027885437, -0.0005536111420951784, 0.02512807957828045, 0.008988359943032265, -0.0009985972428694367, -0.043737102299928665, 0.00014232682588044554, -0.015621884725987911, 0.029239751398563385, 0.0180386733263731, -0.0005854499177075922, 0.015849746763706207, -0.0010767917847260833, 0.0039305188693106174, 0.00627296743914485, 0.010397331789135933, 0.05483408272266388, 0.006138193886727095, -0.030273830518126488, -0.0058638607151806355, 0.014562590979039669, 0.016062598675489426, 0.0309786144644022, 0.011356324888765812, -1.3148173216848136e-8, 0.001722790184430778, -0.02274428680539131, -0.026045314967632294, 0.003315049922093749, 0.02603759616613388, 0.029551323503255844, -0.013250043615698814, -0.004109056666493416, -0.026833683252334595, 0.00002712790410441812, 0.007403998635709286, 0.012859612703323364, -0.00859238114207983, -0.009938787668943405, 0.02677995152771473, -0.023550067096948624, 0.023096749559044838, -0.021532978862524033, 0.013694113120436668, 0.007786572445183992, -0.0249345600605011, 0.07053413987159729, -0.013151248916983604, -0.0071196830831468105, -0.020437870174646378, -0.0005793909076601267, 0.05263833701610565, -0.07902348041534424, -0.006902636960148811, -0.033307019621133804, 0.006845638621598482, -0.04223771020770073, -0.00866144523024559, 0.04419323429465294, -0.028241675347089767, -0.027038080617785454, 0.0037885652855038643, 0.04828290641307831, 0.03526745364069939, -0.018637873232364655, -0.015171024017035961, -0.0005423403345048428, -0.01503804326057434, -0.026012366637587547, -0.014420438557863235, -0.036546289920806885, -0.017125289887189865, -0.014537281356751919, 0.011010617017745972, -0.0078080627135932446, 0.014384409412741661, 0.007584678940474987, 0.039848703891038895, -0.0019849801901727915, 0.03988753259181976, -0.02092360332608223, 0.014173063449561596, -0.020905500277876854, -0.023052651435136795, -0.007762451656162739, -0.010568669997155666, 0.019064512103796005, -0.0372946597635746, -0.024173583835363388 ]
the-little-schemer-attempt-2
https://markhneedham.com/blog/2012/06/19/the-little-schemer-attempt-2
false
2012-06-21 05:02:32
Visualising a neo4j graph using gephi
[ "neo4j", "gephi", "gexf", "cypher" ]
[ "neo4j" ]
At ThoughtWorks we don't have line managers but people can choose to have a sponsor - typically someone who has worked in the company for longer/has more experience in the industry than them - who can help them navigate the organisation better. From hearing people talk about sponsors over the last 6 years it seemed like quite a few people sponsored the majority and there were probably a few people who didn't have a sponsor. It seemed like a pretty good problem to visualise in a graph so I got access to the data, spent a few hours tidying it up so all the names matched the names we have in our staffing application and then loaded it into neo4j. I initially tried to visualise the data in http://maxdemarzi.com/2012/04/12/using-sigma-js-with-neo4j/[sigma.js] but that didn't work that well here - I think it's much better when we actually want to browse around a graph whereas here I'm just interested in an overall snapshot. I therefore decided to load the data into link:[gephi] and find a way of visualising it using that. The relationships on the graph are like this: image::{{<siteurl>}}/uploads/2012/06/sponsors_graphviz.png[Sponsors graphviz,600] I created this using the following http://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CGMQFjAA&url=http%3A%2F%2Fwww.graphviz.org%2F&ei=D6niT4OpNdHe8QOMkNjYDg&usg=AFQjCNFBHZ7SJPeNZlIqRSySygkPgv07xg[graphviz] definition: [source,text] ---- graph effectgraph { size="8,8"; rankdir=LR; person1[label="Person 1"]; person2[label="Person 2"]; person3[label="Person 3"]; officeA[label="Office A"]; officeA -- person1 [label="member_of"]; officeA -- person2 [label="member_of"]; officeA -- person3 [label="member_of"]; person1 -- person2 [label="sponsor_of"]; person2 -- person3 [label="sponsor_of"]; } ---- [source,text] ---- dot -Tpng v3.dot >> sponsors.png ---- I wrote a script http://maxdemarzi.com/2012/04/12/using-sigma-js-with-neo4j/[based on Max de Marzi's blog post] to get the data into gexf format so that I could load it into gephi: First I get a collection of all the people who are sponsors and how many sponsees they have: [source,ruby] ---- def load_sponsors query = " START n = node(*)" query << " MATCH n-[r:sponsor_of]->n2" query << " RETURN ID(n), count(r) AS sponsees ORDER BY sponsees DESC" sponsors = {} @neo.execute_query(query)["data"].each do |id, sponsees| sponsors[id] = sponsees end sponsors end ---- That creates a hash of sponsors with a count of how many sponsees they which I used in the following function to creates a collection of nodes: [source,ruby] ---- def nodes query = " START n = node(*)" query << " MATCH n-[r:member_of]->o" query << " WHERE o.name IN ['London', 'Manchester', 'Hamburg'] AND not(has(r.end_date))" query << " RETURN DISTINCT(n.name), ID(n)" sponsors_sponsee_count = load_sponsors nodes = Set.new @neo.execute_query(query)["data"].each do |n| nodes << { "id" => n[1], "name" => n[0], "size" => 5 + ((sponsors_sponsee_count[n[1]] || 0) * 5) } end nodes end ---- I have nodes representing people in the whole organisation so I need to filter to only find people who work for ThoughtWorks Europe since that's where I have the sponsor data for. I add a size property here so that people who have more sponsees will be more prominent on the graph. We then have the following function to describe the 'sponsor_of' relationships: [source,ruby] ---- def edges query = " START n = node(*)" query << " MATCH n-[r:sponsor_of]->n2" query << " RETURN ID(r), ID(n), ID(n2)" @neo.execute_query(query)["data"].collect{|n| {"id" => n[0], "source" => n[1], "target" => n[2]} } end ---- I use the following code to generate the XML format I need: [source,ruby] ---- xml = Builder::XmlMarkup.new(:target=>STDOUT, :indent=>2) xml.instruct! :xml xml.gexf 'xmlns' => "http://www.gephi.org/gexf", 'xmlns:viz' => "http://www.gephi.org/gexf/viz" do xml.graph 'defaultedgetype' => "directed", 'idtype' => "string", 'type' => "static" do xml.nodes :count => nodes.size do nodes.each do |n| xml.node :id => n["id"], :label => n["name"] do xml.tag!("viz:size", :value => n["size"]) xml.tag!("viz:color", :b => 255, :g => 255, :r => 255) xml.tag!("viz:position", :x => rand(100), :y => rand(100)) end end end xml.edges :count => edges.size do edges.each do |e| xml.edge:id => e["id"], :source => e["source"], :target => e["target"] end end end end ---- We end up with something like the following: [source,text] ---- <?xml version="1.0" encoding="UTF-8"?> <gexf xmlns="http://www.gephi.org/gexf" xmlns:viz="http://www.gephi.org/gexf/viz"> <graph defaultedgetype="directed" idtype="string" type="static"> <nodes count="274"> <node id="1331" label="Person 1"> <viz:size value="5"/> <viz:color b="255" g="255" r="255"/> <viz:position x="69" y="31"/> </node> .... </nodes> <edges count="187"> <edge id="7975" source="56" target="1374"/> </edges> </graph> </gexf> ---- I set the positions of the nodes to be randomised because the gephi algorithms seem to work much better that way. I can then create the gexf file like so: [source,text] ---- ruby gephi_me.rb >> sponsors.gexf ---- I loaded it into gephi and ran the Force Atlas & 'Noverlap' algorithms over the graph to make it a bit easier to visualise the data: image::{{<siteurl>}}/uploads/2012/06/sponsors.png[Sponsors,600] The top 4 sponsors on the graph are sponsors to 28 people between them and the next 7 cover a further 35 people. Interestingly there's a big group of orphans in the middle who don't have a sponsor - initially I thought it was a bit strange that there are so many but people who have moved to the UK from another country and have a sponsor from that country would also come in this category. I wrote the following query to help me find out who the orphans were after noticing that on the visualisation: [source,ruby] ---- query = " START n = node(*)" query << " MATCH n-[r:member_of]->o, n<-[r2?:sponsor_of]-n2" query << " WHERE r2 is null and o.name IN ['London', 'Manchester', 'Hamburg'] AND not(has(r.end_date))" query << " RETURN DISTINCT(n.name), ID(n)" ---- I wanted to annotate the image to point out who specific people were for internal use and a few people on twitter pointed me towards http://skitch.com/[skitch] which made my life amazingly easy so I'd highly recommend that.
null
null
[ 0.030257945880293846, 0.002714358502998948, 0.010446458123624325, 0.03922305628657341, 0.09224938601255417, 0.01853046379983425, 0.011304193176329136, 0.0497019998729229, 0.012041169218719006, -0.010863151401281357, -0.0022872071713209152, -0.008821237832307816, -0.06745173782110214, 0.030406974256038666, 0.01175682619214058, 0.06807588040828705, 0.05844296142458916, 0.07354692369699478, -0.010518550872802734, -0.012242890894412994, 0.026086464524269104, 0.05164234712719917, -0.002578101120889187, 0.03194842487573624, 0.04056426137685776, -0.001261633588001132, 0.02708808332681656, -0.006965042557567358, -0.042439818382263184, 0.003173412987962365, 0.04650085046887398, -0.012667442671954632, 0.02164262719452381, -0.0033250339329242706, 0.03866845741868019, -0.011717354878783226, -0.028325311839580536, 0.022207189351320267, 0.01295518223196268, -0.006856502499431372, -0.09905689209699631, 0.04610714688897133, -0.006920708809047937, 0.01518348790705204, -0.049372006207704544, 0.011818121187388897, -0.048449743539094925, 0.030842961743474007, 0.0018848117906600237, 0.015711838379502296, -0.07512181252241135, 0.027570731937885284, -0.00844812672585249, 0.035212405025959015, -0.015377919189631939, 0.043947309255599976, 0.026189936324954033, -0.04087482765316963, 0.009042470715939999, -0.051359958946704865, -0.0036035107914358377, -0.005033560562878847, 0.011471620760858059, 0.02947399392724037, 0.005010236985981464, -0.04152924194931984, 0.014339056797325611, 0.05285833403468132, -0.029278740286827087, 0.013150260783731937, -0.008334862068295479, -0.015623786486685276, -0.016315845772624016, -0.011798233725130558, 0.002485468750819564, -0.04946233332157135, -0.008686915971338749, 0.05223630741238594, 0.0366668626666069, 0.0156081048771739, -0.02197331190109253, 0.03106713481247425, -0.015428506769239902, 0.024755774065852165, -0.009187199175357819, -0.04394228011369705, -0.0063821738585829735, -0.05138744041323662, -0.07245856523513794, 0.044101398438215256, -0.00016333763778675348, -0.05670267716050148, 0.006312923971563578, 0.022457007318735123, -0.016497472301125526, 0.0009739376837387681, 0.030351297929883003, -0.008158457465469837, -0.004274097271263599, -0.03494049608707428, -0.042189713567495346, -0.022483211010694504, -0.009530678391456604, 0.033691879361867905, -0.06350944936275482, -0.006364056840538979, 0.01036525797098875, -0.008210672996938229, -0.0011707018129527569, 0.0037421584129333496, -0.04023964703083038, 0.002615433419123292, -0.03348296135663986, 0.020980598405003548, -0.07014791667461395, 0.06823080033063889, 0.02472163364291191, -0.01905537024140358, -0.008574862033128738, 0.02559470385313034, 0.052286386489868164, 0.022507760673761368, -0.003365827491506934, 0.061312559992074966, -0.028840215876698494, 0.037988997995853424, -0.04155762493610382, 0.053634099662303925, -0.03669137507677078, -0.0665508508682251, 0.0030358480289578438, 0.06244117021560669, -0.047840915620326996, 0.019497603178024292, 0.011276901699602604, -0.05100439488887787, 0.012111092917621136, -0.006776262074708939, 0.05132436379790306, 0.014022966846823692, 0.01996896229684353, -0.02873528003692627, -0.00040768610779196024, 0.018437359482049942, 0.023501422256231308, -0.023497123271226883, 0.009385159239172935, -0.03569206967949867, -0.05223501846194267, -0.01602221094071865, 0.008445288054645061, 0.006295979954302311, 0.05111408978700638, -0.022973140701651573, 0.04746484383940697, 0.12113168090581894, 0.07947644591331482, -0.012483354657888412, -0.015922557562589645, 0.017241857945919037, 0.0436435267329216, 0.022733470425009727, 0.012531636282801628, 0.07175964117050171, 0.007683926727622747, -0.02388792298734188, -0.015716364607214928, 0.03021153248846531, -0.029246501624584198, -0.01722903735935688, -0.0491732619702816, -0.06694488972425461, 0.04785040393471718, -0.04358530044555664, -0.011033640243113041, 0.0685291737318039, 0.0914740264415741, 0.023307621479034424, 0.02338186278939247, 0.017363712191581726, -0.07729779183864594, 0.06214723736047745, 0.0241105780005455, 0.022315358743071556, 0.02253546752035618, -0.016215110197663307, 0.08320330083370209, 0.03645005077123642, -0.010539758950471878, 0.034749045968055725, -0.0597049705684185, -0.07450077682733536, -0.015352190472185612, -0.03176897019147873, 0.02746507152915001, -0.036543406546115875, 0.01988811418414116, 0.054488085210323334, 0.014021598733961582, 0.033256739377975464, 0.0021641699131578207, -0.01015782542526722, 0.029950052499771118, -0.04088378697633743, -0.07623567432165146, 0.07195747643709183, 0.032142288982868195, -0.02719556726515293, -0.036914803087711334, 0.03559045493602753, -0.021745039150118828, -0.015579493716359138, 0.046260956674814224, -0.019837331026792526, 0.029732925817370415, 0.01018113736063242, 0.045030154287815094, 0.0028114819433540106, 0.03861544653773308, -0.041862521320581436, 0.02359881065785885, 0.03201601654291153, -0.0010091791627928615, -0.01028570719063282, -0.02150970697402954, 0.12340282648801804, 0.053520627319812775, -0.037387914955616, -0.06405926495790482, 0.022730980068445206, 0.03401453420519829, -0.01417890191078186, 0.04221191257238388, -0.02347574755549431, -0.006185303442180157, -0.018244493752717972, -0.04474586248397827, -0.032196927815675735, 0.0242154598236084, -0.050153542309999466, 0.01260150782763958, 0.04834260791540146, -0.02133941277861595, 0.06091054901480675, 0.002956047188490629, -0.00127730006352067, -0.023504571989178658, -0.015588301233947277, -0.062074244022369385, 0.04099927842617035, 0.01027162279933691, 0.000877225014846772, 0.030610503628849983, -0.022544464096426964, -0.0290830135345459, -0.021136678755283356, -0.013043802231550217, 0.02947511337697506, 0.05432834476232529, 0.05865085870027542, -0.00009464885806664824, 0.05386221036314964, -0.03234107419848442, 0.03318788483738899, -0.006934718694537878, -0.03921983763575554, -0.03817522153258324, -0.022971682250499725, 0.003064196091145277, 0.005250679329037666, 0.04885893687605858, -0.03211097791790962, -0.007945180870592594, 0.01796589605510235, 0.026640307158231735, 0.005626539699733257, 0.013990968465805054, 0.0104389488697052, 0.014313395135104656, -0.028972702100872993, -0.012649702839553356, 0.06961162388324738, -0.033246755599975586, -0.031545430421829224, -0.002042287029325962, -0.07132108509540558, 0.01297061424702406, -0.051790133118629456, -0.03777427598834038, -0.002560646738857031, 0.020532572641968727, 0.041726332157850266, 0.02062004990875721, -0.011324219405651093, 0.05115538090467453, 0.011000636033713818, 0.020432787016034126, 0.00569384777918458, -0.00787027645856142, 0.05740925669670105, 0.009189654141664505, 0.0265207402408123, 0.06969521939754486, -0.03117567114531994, 0.0024071771185845137, -0.05174458771944046, 0.05039234831929207, -0.06346943974494934, -0.28286880254745483, 0.04454020410776138, -0.008517627604305744, -0.04966569319367409, 0.014356814324855804, -0.0513194277882576, 0.030044876039028168, -0.034943971782922745, -0.04818994551897049, -0.010033654049038887, 0.003959414083510637, -0.038228701800107956, -0.014773577451705933, 0.022618522867560387, 0.022060690447688103, 0.029360026121139526, 0.01598624512553215, -0.06999330222606659, 0.01584700308740139, 0.033303551375865936, -0.021455783396959305, -0.04391089081764221, -0.016384175047278404, 0.03690624609589577, 0.03754820674657822, 0.06515195220708847, -0.08699735999107361, 0.015294036827981472, -0.06543365865945816, -0.01985449157655239, 0.0014166075270622969, -0.031302470713853836, -0.02043081633746624, -0.01284841075539589, -0.008680174127221107, -0.0603906512260437, 0.017783598974347115, -0.018390867859125137, 0.0045552379451692104, -0.015915585681796074, -0.022786971181631088, -0.024240143597126007, -0.011380692943930626, -0.0031062511261552572, 0.07214905321598053, 0.013811432756483555, -0.10078819841146469, -0.01558939553797245, -0.0305333249270916, 0.0714997798204422, -0.01913483440876007, -0.006962227169424295, -0.018864793702960014, 0.021671855822205544, -0.01909022592008114, -0.027407275512814522, -0.006339567247778177, -0.01697613298892975, -0.06225508451461792, -0.033220019191503525, -0.011708824895322323, -0.010901179164648056, -0.004651024006307125, -0.0554821752011776, -0.01602942869067192, -0.06015250086784363, -0.06860609352588654, -0.01931227184832096, 0.06335709244012833, 0.004377457313239574, -0.032934051007032394, 0.014745398424565792, -0.016327233985066414, -0.10011137276887894, 0.007304722908884287, -0.013502286747097969, -0.005167415831238031, 0.018042579293251038, 0.0231782253831625, 0.04705210030078888, -0.006536825560033321, -0.055712293833494186, 0.019718773663043976, 0.015600593760609627, 0.020830664783716202, -0.0022616141941398382, 0.04538137838244438, 0.042565878480672836, -0.03550491854548454, 0.008652802556753159, 0.06395470350980759, 0.011969306506216526, -0.039957135915756226, -0.011270744726061821, -0.0027657216414809227, 0.023647094145417213, 0.000820599845610559, -0.04408767819404602, -0.0025556592736393213, 0.04883936792612076, 0.02794932946562767, -0.03916926309466362, -0.006319398991763592, -0.017441827803850174, -0.02693881280720234, -0.02704910933971405, -0.05129272863268852, 0.004243978299200535, 0.011945434845983982, 0.0032008597627282143, 0.01158135011792183, -0.0355425700545311, 0.010659557767212391, -0.057667169719934464, -0.04145853593945503, -0.0006073052063584328, -0.0026260921731591225, 0.03726204112172127, 0.010672985576093197, -0.025213338434696198, -0.032634951174259186, 0.02552313730120659, 0.016360105946660042, 0.0033061024732887745, -0.07536756247282028, -0.005936387460678816, -0.008459036238491535, -0.028143445029854774, 0.016394268721342087, 0.016727428883314133, -0.012070437893271446, 0.01866414211690426, 0.03404716029763222, -0.04671914502978325, 0.0438784658908844, -0.018865438178181648, -0.0446319617331028, -0.031711358577013016, 0.00788748636841774, -0.007721821777522564, -0.0030414951033890247, 0.02466467209160328, 0.003215067321434617, 0.015096168033778667, 0.062230996787548065, 0.006291254423558712, -0.0041350931860506535, -0.003439299063757062, 0.026756348088383675, 0.0004964802064932883, -0.014188501052558422, -0.037824034690856934, 0.008298484608530998, -0.03994998708367348, 0.00746281398460269, -0.01515650562942028, 0.04204551503062248, -0.04067322611808777, -0.01910392940044403, -0.03241351991891861, 0.013771248050034046, -0.06369195878505707, -0.013920043595135212, 0.002901290776208043, 0.009366638027131557, 0.06001470237970352, 0.0032683592289686203, 0.009771943092346191, -0.0047125802375376225, 0.004467335529625416, 0.024796580895781517, 0.015598433092236519, -0.03314093500375748, -0.00589385349303484, 0.002703775418922305, -0.007204574998468161, 0.01622955873608589, 0.016992978751659393, 0.04014403745532036, 0.011177483946084976, -0.02488783374428749, -0.007422788068652153, 0.0026086338330060244, -0.015459315851330757, 0.034826043993234634, 0.04812649264931679, -0.01252681389451027, 0.012569142505526543, -0.0332755409181118, -0.0005796332843601704, -0.00837942585349083, -0.01580544374883175, -0.0209613386541605, 0.008055980317294598, -0.041233308613300323, -0.05746481567621231, 0.04101524502038956, -0.0023252801038324833, 0.016331592574715614, 0.025796836242079735, -0.03240246698260307, 0.01305751595646143, -0.03403189405798912, 0.03917957842350006, 0.06338535994291306, -0.05551648139953613, -0.02188895083963871, -0.00225232751108706, -0.011388714425265789, 0.014746446162462234, -0.004877799190580845, -0.03075585514307022, -0.028821052983403206, -0.050327520817518234, 0.031670380383729935, -0.0625951737165451, -0.030979104340076447, -0.04453040659427643, 0.02089758776128292, 0.020129673182964325, 0.019121430814266205, -0.017592815682291985, -0.03542640805244446, -0.006843464449048042, 0.00140414631459862, 0.04368120804429054, -0.020315712317824364, -0.01969779096543789, -0.009183364920318127, -0.026449061930179596, -0.019480025395751, -0.01998787559568882, 0.032461609691381454, 0.03628049045801163, -0.030563196167349815, 0.01385517604649067, -0.038284555077552795, 0.02680605836212635, 0.02633468247950077, 0.019856180995702744, -0.00797676295042038, -0.008694734424352646, -0.03506949916481972, -0.012560400180518627, -0.006921184714883566, 0.006973044015467167, -0.008249223232269287, 0.010997620411217213, 0.017723632976412773, 0.029809502884745598, 0.010652993805706501, 0.011219860054552555, 0.007399413734674454, -0.032509032636880875, 0.05700964108109474, -0.029215767979621887, -0.04317082092165947, -0.0030319446232169867, -0.03500080853700638, 0.006368457339704037, -0.0009172701393254101, 0.023318691179156303, -0.026467036455869675, 0.0499790795147419, 0.036951106041669846, 0.029144881293177605, 0.027997512370347977, 0.02328936941921711, 0.03919076919555664, -0.030903801321983337, -0.005409320816397667, -0.07525574415922165, -0.01002433616667986, 0.04495682567358017, 0.004383897874504328, 0.00662121782079339, -0.01621543988585472, -0.03715185821056366, 0.03512522578239441, -0.07430785149335861, -0.050339475274086, 0.02874184399843216, -0.009145720861852169, 0.00894232839345932, 0.01928115263581276, -0.0496375635266304, 0.01782778836786747, 0.03526073321700096, -0.048889730125665665, -0.036272838711738586, -0.024603886529803276, 0.061165060847997665, -0.03484129160642624, 0.02350960113108158, -0.03924097120761871, -0.021519072353839874, 0.062248725444078445, 0.020815037190914154, 0.0069251349195837975, 0.06383633613586426, -0.010869050398468971, 0.036765921860933304, 0.040489569306373596, -0.020451411604881287, -0.017175568267703056, 0.04631044343113899, -0.01885986328125, -0.07002796977758408, 0.0405723862349987, -0.011875093914568424, -0.021032948046922684, -0.05877804383635521, 0.0664689689874649, 0.003561039688065648, -0.014018058776855469, -0.046546828001737595, 0.023338576778769493, -0.02290276810526848, 0.019290423020720482, -0.029888542369008064, -0.019445650279521942, -0.034074559807777405, 0.04028468579053879, -0.017131296917796135, 0.006994682364165783, 0.04980235919356346, 0.017192961648106575, 0.013576993718743324, -0.019775688648223877, 0.07631809264421463, 0.08351120352745056, 0.07197141647338867, 0.03357096016407013, 0.0788838341832161, -0.01318987924605608, -0.036707594990730286, 0.0033009673934429884, -0.016568154096603394, -0.03216082602739334, 0.010145253501832485, -0.005629686173051596, 0.05322471261024475, -0.021280301734805107, 0.05692145600914955, 0.003866137471050024, -0.022506164386868477, -0.0026240262668579817, 0.003927023150026798, 0.009226414375007153, 0.04693050682544708, 0.0022273636423051357, 0.024625424295663834, -0.03577551245689392, -0.0401882603764534, 0.030466310679912567, -0.02269674837589264, 0.00384179363027215, 0.04115607589483261, -0.021582111716270447, 0.005013848189264536, -0.004260673187673092, 0.02921466901898384, 0.08227887004613876, -0.03985665738582611, -0.008003011345863342, -0.02000352554023266, 0.018744932487607002, 0.010185327380895615, 0.012834472581744194, 0.005915096960961819, -0.016868922859430313, -0.037369608879089355, -0.03028762899339199, -0.018939340487122536, -0.03070538304746151, 0.004767339210957289, 0.0222448892891407, -0.035820428282022476, 0.0073011815547943115, 0.02547185868024826, -0.0029436368495225906, -0.02410406805574894, -0.031789228320121765, -0.025277407839894295, -0.06498685479164124, -0.07364392280578613, -0.011764531955122948, 0.0000411794098909013, -0.007626728620380163, -0.02222832851111889, -0.01875070296227932, -0.015728473663330078, -0.019816454499959946, 0.02397201769053936, -0.06951184570789337, -0.012169893831014633, -0.004274305421859026, 0.02826765924692154, 0.010748026892542839, 0.004946726839989424, 0.05010067671537399, 0.011415640823543072, 0.004907062277197838, -0.010509145446121693, 0.02549261786043644, 0.034494832158088684, 0.019242707639932632, 0.009889364242553711, -0.0893070325255394, 0.008675634860992432, 0.0021210794802755117, -0.05381974205374718, -0.0782277062535286, 0.010217011906206608, 0.05694255977869034, 0.01245006825774908, 0.04549529775977135, 0.02917374111711979, -0.02117597684264183, -0.016215281561017036, 0.0013960546348243952, 0.005228654947131872, -0.01575637236237526, 0.036208003759384155, -0.02819344960153103, 0.0783645510673523, 0.03147820383310318, -0.00749677000567317, -0.008408106863498688, -0.031123612076044083, -0.0003832889487966895, -0.007084433455020189, -0.04564444348216057, -0.03858624026179314, -0.03459570184350014, -0.09687405079603195, -0.006674016360193491, 0.010426383465528488, -0.028440028429031372, -0.03101583570241928, -0.004558538552373648, 0.029441675171256065, -0.022286241874098778, 0.03624053671956062, -0.046127136796712875, 0.025543123483657837, -0.006607500836253166, 0.006792327854782343, 0.0007609865861013532, 0.029106931760907173, 0.01108040101826191, -0.005677628330886364, 0.010029538534581661, -0.06770581752061844, 0.020504621788859367, -0.03545215353369713, 0.00008935474761528894, 0.03640667349100113, 0.022812370210886, 0.018671618774533272 ]
[ -0.04121574014425278, -0.008803023025393486, -0.04636698216199875, -0.016392502933740616, 0.06255365908145905, -0.011079123243689537, 0.0031062860507518053, 0.03303747624158859, 0.0042288340628147125, -0.02280411869287491, 0.02903999574482441, -0.041502855718135834, -0.008608900010585785, -0.009906630963087082, 0.04668555036187172, -0.0009430755162611604, -0.019154822453856468, -0.0700053870677948, 0.0034454213455319405, 0.050522446632385254, -0.026146385818719864, -0.0592908076941967, -0.04829836264252663, -0.02534305490553379, 0.02934793382883072, 0.017227863892912865, 0.03404020890593529, -0.011828228831291199, 0.0017580558778718114, -0.17800091207027435, 0.012590700760483742, -0.0003485326888039708, 0.05286984518170357, 0.020105957984924316, 0.018688632175326347, 0.03246556967496872, 0.03754003718495369, 0.02019263431429863, 0.026925431564450264, 0.007610895670950413, -0.005949169863015413, -0.005053396802395582, -0.05321168527007103, -0.007626616396009922, 0.03870213031768799, 0.016477810218930244, 0.0056756651028990746, -0.013226511888206005, -0.057429052889347076, 0.0019438422750681639, -0.02549387328326702, -0.022670168429613113, -0.012390652671456337, 0.00916382111608982, -0.011872504837810993, 0.04463963955640793, 0.035961881279945374, 0.028650589287281036, 0.013053977862000465, 0.03888116404414177, 0.02184642292559147, -0.02564350515604019, -0.16441795229911804, 0.06967417150735855, -0.0005479473620653152, 0.03732110187411308, -0.05990906432271004, -0.00950887706130743, -0.059856805950403214, 0.08645975589752197, 0.045648857951164246, -0.05238417908549309, -0.04511970281600952, -0.010692466981709003, 0.027936438098549843, 0.012189956381917, -0.012265740893781185, 0.02961415983736515, 0.0029058598447591066, -0.05575445666909218, -0.034689825028181076, 0.018550105392932892, -0.05093863233923912, -0.017435172572731972, -0.03488607704639435, 0.06781909614801407, -0.015337915159761906, 0.0374751091003418, 0.018043404445052147, 0.04148766025900841, 0.035412658005952835, 0.04324353486299515, 0.020307546481490135, -0.01061564963310957, -0.09126965701580048, -0.048309262841939926, 0.01889779418706894, 0.020100940018892288, -0.03048861026763916, 0.43493223190307617, 0.00001347382476524217, 0.01149287261068821, 0.07724424451589584, 0.05661272257566452, -0.00803835317492485, -0.02270134538412094, -0.008727644570171833, -0.03554430976510048, 0.036521170288324356, 0.010241108015179634, 0.0068043009378015995, 0.0011220319429412484, 0.05109003558754921, -0.07322622835636139, 0.02041598968207836, 0.012429333291947842, 0.013221053406596184, 0.038527894765138626, -0.0038031854201108217, 0.0007116237538866699, -0.02452200837433338, 0.03088720142841339, 0.014497929252684116, 0.013525367714464664, -0.015298407524824142, 0.02262871339917183, 0.019675154238939285, 0.04884019121527672, 0.03204425051808357, -0.014920669607818127, 0.06850354373455048, -0.0014734474243596196, -0.07308463007211685, 0.04267378896474838, -0.014219611883163452, -0.010732565075159073, 0.03505878895521164, -0.0001642040442675352, -0.018785014748573303, 0.06421025097370148, 0.03201808035373688, 0.0073829409666359425, 0.027093609794974327, 0.006835580803453922, -0.027840321883559227, 0.1279333233833313, -0.014127443544566631, -0.04794345423579216, -0.022962011396884918, 0.0018996490398421884, 0.016947520896792412, 0.037483662366867065, -0.020168617367744446, -0.04765824228525162, -0.00908150989562273, 0.007621969096362591, 0.0848928913474083, -0.017293395474553108, -0.06607415527105331, 0.023462390527129173, 0.005563110578805208, -0.02843446657061577, -0.049257829785346985, 0.056645214557647705, 0.06798961013555527, -0.14271564781665802, -0.02098969742655754, 0.007586047053337097, 0.01106235571205616, -0.08438877761363983, -0.004375822842121124, 0.01598113588988781, -0.039490703493356705, 0.010369515977799892, 0.04660671576857567, -0.011972218751907349, -0.051602162420749664, 0.002528868615627289, 0.034579094499349594, -0.004372742958366871, 0.008011255413293839, -0.00520184263586998, -0.04437323659658432, -0.03738010674715042, -0.0694912001490593, -0.05503072962164879, -0.07001307606697083, 0.005446461495012045, -0.06105195730924606, -0.021540360525250435, -0.0006417036056518555, -0.003683981951326132, -0.0901574045419693, 0.09963566064834595, -0.030861791223287582, -0.015867600217461586, -0.024749331176280975, -0.01485717948526144, -0.012408546172082424, -0.019118070602416992, -0.03658348321914673, 0.009335339069366455, -0.03795170038938522, 0.00997213739901781, -0.07654460519552231, 0.042943064123392105, 0.06408937275409698, -0.02255316451191902, 0.10878805816173553, 0.006689476780593395, -0.03293757140636444, -0.007035442627966404, -0.014628618024289608, 0.014448810368776321, 0.010270914062857628, 0.017534857615828514, 0.017416391521692276, -0.015192887745797634, 0.037980176508426666, 0.035386256873607635, 0.013675438240170479, 0.01787508837878704, -0.029828758910298347, -0.34686559438705444, -0.04955087974667549, -0.03192867338657379, 0.03828975930809975, -0.004581247456371784, -0.021185437217354774, 0.01608690619468689, -0.006280266679823399, 0.0078635448589921, 0.0616348534822464, 0.08447130024433136, 0.013474391773343086, -0.01625119149684906, -0.0797910988330841, -0.001954849576577544, 0.00458205072209239, -0.03934459015727043, 0.009226418100297451, -0.043122854083776474, -0.025846462696790695, -0.019038058817386627, -0.0066312337294220924, -0.025234315544366837, -0.018673885613679886, -0.007065960671752691, -0.005466690752655268, 0.14109158515930176, 0.014964732341468334, 0.014911646023392677, -0.03585336357355118, 0.020577125251293182, 0.00381183042190969, -0.01774170994758606, -0.07451365888118744, 0.03091293014585972, -0.02107333391904831, 0.0026184101589024067, -0.013286418281495571, -0.007115519605576992, -0.04226778820157051, -0.0744824931025505, -0.014572926796972752, -0.05530153214931488, -0.016848843544721603, -0.04245338216423988, 0.04155507683753967, -0.010060756467282772, -0.020420245826244354, -0.027204707264900208, 0.08807025104761124, 0.01820467598736286, 0.003041081363335252, 0.02754124067723751, 0.021193619817495346, 0.011711201630532742, -0.033493492752313614, -0.08949833363294601, 0.015403155237436295, -0.012549866922199726, 0.008389961905777454, 0.02246139384806156, 0.0067533026449382305, 0.04129086434841156, -0.07322170585393906, 0.00831275712698698, 0.01797393523156643, -0.022095732390880585, 0.009385865181684494, 0.04135959595441818, -0.029207492247223854, -0.010551182553172112, 0.11023391783237457, 0.0021954472176730633, -0.0010767350904643536, 0.0630594789981842, 0.04591318592429161, -0.0025483251083642244, -0.00231676222756505, 0.021634407341480255, 0.05127399042248726, 0.010421866551041603, -0.03197997808456421, 0.046647436916828156, -0.011752146296203136, -0.008190304040908813, 0.06080080568790436, 0.0064095305278897285, -0.05987407639622688, 0.05109739676117897, 0.011204598471522331, -0.00865128356963396, 0.01172967255115509, -0.026715435087680817, -0.05000641942024231, 0.067208431661129, -0.023159097880125046, -0.2674315571784973, 0.04215637966990471, 0.035452309995889664, 0.047116611152887344, 0.003885662415996194, 0.0029260499868541956, 0.005251155700534582, -0.013964558951556683, 0.00039616183494217694, -0.0038649961352348328, 0.03582531586289406, 0.02861352451145649, 0.0008323738584294915, -0.01260219793766737, 0.0049786376766860485, 0.01336037926375866, 0.019300226122140884, -0.00860251858830452, 0.02183457463979721, 0.005052634049206972, 0.03818509727716446, -0.02468903176486492, 0.16385601460933685, 0.03545823693275452, 0.02187085524201393, 0.011138258501887321, -0.026990337297320366, 0.005548299755901098, 0.054647546261548996, -0.008057902567088604, -0.008222991600632668, 0.010064327158033848, 0.005705223418772221, 0.02328851819038391, 0.04317598044872284, -0.0651363953948021, -0.02937767654657364, 0.04230894893407822, 0.02408652752637863, 0.007864650338888168, 0.02750592678785324, 0.0023857331834733486, -0.03617483749985695, 0.012563063763082027, 0.06549855321645737, 0.0023217799607664347, 0.01730475202202797, -0.01248758565634489, -0.055324070155620575, -0.004745521582663059, -0.037636980414390564, -0.07663130015134811, -0.032241884618997574, -0.0020347016397863626, 0.00006619548366870731, 0.0489174909889698, 0.015431609004735947, -0.027595531195402145, 0.03374569118022919, -0.00555981881916523, -0.04644573852419853, -0.015172370709478855, 0.066928930580616, 0.0034736855886876583, 0.026333216577768326 ]
[ 0.00948637630790472, 0.03701552003622055, 0.01914350502192974, 0.011826416477560997, 0.013712869957089424, 0.017993783578276634, -0.0008476294460706413, -0.006662456784397364, -0.03652243688702583, -0.0010773518588393927, 0.002193215535953641, 0.021559787914156914, 0.00790269486606121, -0.00500443996861577, 0.026360483840107918, 0.01558668352663517, 0.022395653650164604, -0.012504961341619492, 0.02177191711962223, 0.0066264960914850235, -0.0060008070431649685, -0.050996556878089905, -0.007640415336936712, -0.013914615847170353, 0.01612633280456066, 0.029555317014455795, -0.017127789556980133, 0.00667455792427063, 0.02857336960732937, -0.11058331280946732, -0.015426981262862682, -0.059527184814214706, -0.01504616066813469, 0.021601250395178795, -0.007409348618239164, 0.01993427984416485, 0.006850791163742542, 0.030284276232123375, 0.024863705039024353, 0.03891488537192345, 0.02244725450873375, -0.004045870155096054, -0.031055478379130363, -0.007748669479042292, 0.02227812260389328, -0.006155265960842371, -0.02288518100976944, 0.0035982865374535322, 0.02461959607899189, 0.0031445848289877176, -0.06074430048465729, -0.06553982198238373, -0.002261757617816329, -0.013463949784636497, 0.002638068050146103, -0.002551114419475198, -0.03833010792732239, -0.04244256019592285, -0.0016011694679036736, 0.018046358600258827, 0.05971100181341171, -0.013387179933488369, -0.03561917319893837, 0.0017487091245129704, -0.018777571618556976, 0.005532900337129831, -0.03339236602187157, 0.022910581901669502, -0.0368942953646183, 0.01853983663022518, 0.010887526907026768, 0.0018703180830925703, -0.06398779153823853, -0.030449381098151207, -0.016638953238725662, 0.004335256293416023, 0.00016335217515006661, 0.0042058005928993225, 0.009602127596735954, -0.03465912491083145, -0.008393724448978901, 0.005412616766989231, -0.02752641588449478, 0.05606131628155708, -0.02868848666548729, 0.009186065755784512, 0.003616718575358391, -0.04002442955970764, 0.020784320309758186, 0.019961146637797356, -0.04855409637093544, 0.03480330482125282, 0.0036574210971593857, -0.003327875630930066, -0.1097433790564537, 0.01157000008970499, -0.011696096509695053, 0.01231656689196825, -0.015241093002259731, 0.8252205848693848, -0.017190804705023766, -0.028075840324163437, 0.03717915341258049, 0.01402344647794962, -0.020649343729019165, -0.01257567573338747, 0.009115505963563919, 0.006499022711068392, -0.011508584022521973, 0.011875605210661888, -0.020925723016262054, 0.05660257861018181, -0.020465882495045662, 0.02798222005367279, -0.01819271594285965, 0.01308407448232174, -0.008586782962083817, -0.01642053760588169, 0.005316427443176508, 0.019239986315369606, 0.0077920290641486645, 0.04289077967405319, -0.0017303009517490864, -0.02797304093837738, 0.0009139797184616327, -0.16791442036628723, -0.006220543757081032, -7.048575633533404e-33, 0.02512909285724163, 0.0050711012445390224, 0.02926538698375225, 0.022063661366701126, 0.005663230549544096, 0.04260275512933731, -0.013990246690809727, -0.036745935678482056, -0.013995972461998463, -0.0075212763622403145, -0.017523856833577156, -0.003440441796556115, 0.022352734580636024, -0.016405463218688965, -0.002184523968026042, -0.006862057838588953, 0.025333363562822342, 0.03120553120970726, -0.04114576801657677, 0.003474462078884244, 0.02464006282389164, 0.035510849207639694, -0.014659213833510876, 0.04348856583237648, 0.011428246274590492, 0.027624191716313362, -0.011233441531658173, 0.035680774599313736, -0.00881766714155674, -0.03485506772994995, -0.009022362530231476, 0.0074387164786458015, 0.04483157396316528, -0.033358704298734665, 0.004266581032425165, -0.047140903770923615, -0.04907768592238426, -0.030749516561627388, -0.0040751006454229355, -0.03417354077100754, -0.0512290820479393, 0.013542546890676022, 0.01215369813144207, -0.020032191649079323, -0.06486812978982925, 0.025903010740876198, 0.02854928746819496, -0.00854299496859312, -0.009051838889718056, 0.009499387815594673, 0.0066047064028680325, 0.0018008959013968706, -0.0030418678652495146, 0.055147457867860794, -0.03053644672036171, -0.01628553867340088, 0.008411912247538567, 0.01643170602619648, -0.017415061593055725, -0.047267477959394455, 0.0012278974754735827, -0.024361569434404373, -0.007135378662496805, 0.05018458887934685, 0.02094525471329689, 0.04000706225633621, -0.010482723824679852, -0.01821335032582283, 0.024059763178229332, 0.025091534480452538, -0.05599341541528702, 0.05481526255607605, -0.015040264464914799, 0.00194695801474154, 0.015594440512359142, -0.037053707987070084, -0.02515299990773201, 0.02502824179828167, 0.0050289081409573555, 0.07647476345300674, -0.02010308764874935, -0.03137299790978432, 0.01407837588340044, -0.0379018597304821, 0.0032503590919077396, -0.004713870584964752, 0.07177114486694336, -0.004763710778206587, 0.019793152809143066, 0.020952526479959488, 0.033730633556842804, 0.04384775087237358, -0.032802313566207886, 0.00666128471493721, -0.016572827473282814, 6.623328062495964e-33, 0.00840790756046772, 0.01725577935576439, 0.046148158609867096, -0.009889626875519753, 0.07207087427377701, 0.03136327490210533, 0.019383111968636513, 0.006009112577885389, -0.05713599920272827, 0.050172749906778336, 0.022778328508138657, -0.04465511441230774, -0.012241215445101261, 0.04399847239255905, 0.0447278693318367, -0.0019481854978948832, 0.03457216918468475, -0.04193080589175224, -0.015045089647173882, -0.011627386324107647, 0.01545338612049818, 0.021793434396386147, 0.011390059255063534, 0.007867705076932907, 0.03851606696844101, 0.030480604618787766, 0.005347525700926781, 0.006437146104872227, -0.0026430520229041576, 0.0058271195739507675, -0.022476090118288994, -0.02906075119972229, -0.014273584820330143, -0.01535339280962944, 0.02703210711479187, 0.038231268525123596, -0.031964533030986786, -0.003249536035582423, 0.02058647759258747, -0.013489784672856331, 0.019815152511000633, -0.007520429324358702, 0.004974473733454943, 0.043576646596193314, 0.0025430801324546337, -0.011191106401383877, -0.005236768629401922, -0.0184068251401186, -0.013692832551896572, 0.024002330377697945, -0.016660701483488083, 0.005361012648791075, 0.008870590478181839, 0.03158468380570412, 0.008223284035921097, -0.06132432818412781, 0.008310254663228989, 0.02248458005487919, -0.007665409240871668, 0.02037532813847065, -0.033906687051057816, -0.018728362396359444, -0.02897460013628006, 0.022040246054530144, -0.04006753861904144, 0.0050031631253659725, -0.0032187586184591055, -0.004293168894946575, -0.002904498251155019, -0.016408240422606468, 0.004816372413188219, -0.014742116443812847, -0.013099262490868568, 0.01795533113181591, 0.03792886808514595, -0.023139575496315956, -0.023090068250894547, 0.01779739186167717, -0.03595643863081932, 0.0034982904326170683, 0.029257887974381447, 0.0011015370255336165, 0.03770468011498451, 0.017611173912882805, 0.02665896899998188, 0.02469734475016594, -0.009299111552536488, 0.022130517289042473, 0.007108175661414862, 0.005236465483903885, 0.020019493997097015, -0.03786801919341087, -0.015747493132948875, 0.050524838268756866, 0.007719898130744696, -1.2456785825065708e-8, -0.07863716036081314, 0.015543639659881592, -0.0010463742073625326, -0.034687694162130356, 0.002331765601411462, -0.011245417408645153, -0.008993715979158878, -0.02178157866001129, -0.01573924534022808, 0.024230539798736572, 0.033113010227680206, -0.004659186117351055, -0.029089458286762238, 0.008844844996929169, 0.00940236821770668, -0.06182367354631424, -0.011276000179350376, -0.02910018153488636, 0.029216937720775604, 0.010092505253851414, 0.028686854988336563, 0.015969393774867058, -0.014623716473579407, 0.02534550242125988, 0.011792444624006748, -0.0014284808421507478, -0.021396158263087273, -0.07683298736810684, -0.007462808396667242, 0.010799889452755451, 0.00011367585830157623, -0.006026176735758781, 0.013939568772912025, 0.015015700832009315, -0.027945127338171005, -0.04521236941218376, 0.007344174198806286, 0.011572477407753468, -0.0004216620873194188, 0.04259166866540909, 0.0011453869519755244, 0.04077993333339691, -0.022026199847459793, -0.025945067405700684, -0.011365745216608047, 0.03179938718676567, -0.0334402471780777, -0.030644603073596954, 0.01492682658135891, -0.05563484877347946, -0.007640060503035784, -0.04073556512594223, 0.018907610327005386, 0.019526131451129913, -0.007162902969866991, -0.04620496928691864, 0.013771871104836464, -0.006051656324416399, -0.030588418245315552, -0.018184669315814972, 0.017038125544786453, -0.051855456084012985, 0.0010912975994870067, -0.022082390263676643 ]
visualising-a-neo4j-graph-using-gephi
https://markhneedham.com/blog/2012/06/21/visualising-a-neo4j-graph-using-gephi
false
2012-06-30 10:05:04
Powerpoint saving movies as images
[ "software-development", "powerpoint" ]
[ "Software Development" ]
I've been working on a presentation for the ThoughtWorks Europe away day over the last few days and I created some screen casts using http://www.techsmith.com/camtasia.html[Camtasia] which I wanted to include. It's reasonably easy to insert movies into Powerpoint but I was finding that when I saved the file and then reloaded it the movies had been converted into images which wasn't what I wanted at all! Eventually I came across http://www.ehow.com/how_4500346_keep-embedded-video-powerpoint-after.html[a blog post which explained that I'd been saving the file as the wrong format]. I'd been saving it as a 'ppt' but what I actually needed was to save it as a 'ppsx': image::{{<siteurl>}}/uploads/2012/06/graph.png[Graph,600] I spent about an hour trying to work out what I was doing wrong, an hour I hopefully won't have to spend next time.
null
null
[ 0.0037177291233092546, -0.007850323803722858, 0.004333296790719032, 0.07935863733291626, 0.086664579808712, 0.006548511330038309, 0.010992532595992088, 0.03877710923552513, 0.011662963777780533, -0.011546013876795769, -0.028258107602596283, -0.006947346031665802, -0.04672691226005554, 0.013732175342738628, -0.020523032173514366, 0.06602764129638672, 0.03603210300207138, 0.012838485650718212, 0.017358653247356415, 0.029270339757204056, 0.016555747017264366, 0.06780876219272614, 0.004665366839617491, 0.027634788304567337, -0.013237198814749718, -0.01394723728299141, -0.00310883903875947, 0.013529635965824127, -0.08201219141483307, -0.027872946113348007, 0.031276635825634, -0.013630649074912071, -0.0074099767953157425, 0.005675827153027058, 0.0509643629193306, -0.03848554566502571, -0.034144818782806396, 0.010486721061170101, -0.019963154569268227, 0.023425813764333725, -0.07196211069822311, 0.015399628318846226, -0.01212194561958313, -0.026612523943185806, -0.05350952968001366, 0.012192226015031338, -0.01413776259869337, 0.024579428136348724, -0.035435356199741364, 0.009329888969659805, -0.04657047614455223, 0.0628226101398468, 0.02458713948726654, 0.020495682954788208, -0.015352346934378147, 0.05209249630570412, 0.006499516312032938, -0.055842749774456024, 0.018581483513116837, -0.03069627471268177, 0.008485558442771435, -0.009572473354637623, 0.0052124871872365475, 0.03876059502363205, 0.01872933655977249, -0.04517008736729622, 0.0033745854161679745, 0.06500690430402756, -0.026485636830329895, -0.031298667192459106, -0.010004876181483269, -0.007585145998746157, -0.027641065418720245, -0.01933179423213005, 0.026641905307769775, -0.035577286034822464, 0.008529051207005978, 0.053995281457901, 0.01776142604649067, 0.04267275333404541, -0.0054202270694077015, 0.05757445842027664, 0.00643862783908844, 0.05846996605396271, -0.009691288694739342, -0.030870990827679634, -0.013277651742100716, -0.018898649141192436, -0.03874770551919937, 0.05929242819547653, -0.00641515851020813, -0.04762730374932289, 0.014685830101370811, 0.022049585357308388, 0.008248778060078621, -0.011669836938381195, -0.01994514837861061, -0.01564527489244938, -0.006860171910375357, 0.010397594422101974, -0.03567535802721977, -0.028538065031170845, 0.010939010418951511, 0.02839908003807068, -0.06559086591005325, 0.007741027045994997, 0.0005035421927459538, -0.02434398978948593, -0.003082053270190954, 0.010195287875831127, -0.014627845026552677, 0.0138169564306736, -0.014509293250739574, 0.00017621371080167592, -0.06996528059244156, 0.04084118455648422, 0.036634791642427444, -0.05044979974627495, -0.027687083929777145, 0.017941556870937347, 0.028898172080516815, 0.0023555888328701258, -0.005783428903669119, 0.07821673154830933, 0.011476455256342888, 0.05215509235858917, -0.0030294114258140326, 0.052762579172849655, -0.03121485561132431, -0.06407322734594345, 0.02318543568253517, 0.03962339460849762, -0.030237283557653427, -0.00832596980035305, 0.029612507671117783, -0.04035994037985802, 0.0011794758029282093, -0.03295781463384628, 0.03020251728594303, 0.022233346477150917, -0.002723675686866045, -0.022333869710564613, -0.01567443646490574, 0.014317965134978294, 0.039968736469745636, 2.5720888174873835e-7, -0.0026825254317373037, -0.01993965543806553, -0.03309902176260948, -0.0034233888145536184, -0.0075562321580946445, -0.013331103138625622, 0.07611102610826492, -0.04763447865843773, -0.004257975611835718, 0.08403507620096207, 0.06501010805368423, -0.0027100928127765656, -0.011465241201221943, 0.019119860604405403, 0.04770921915769577, 0.02912714146077633, -0.005630867555737495, 0.06069997325539589, -0.002510638674721122, -0.007742736022919416, -0.009980703704059124, 0.042102813720703125, 0.017135554924607277, 0.016403190791606903, -0.07290889322757721, -0.029814384877681732, 0.07895468920469284, -0.03493214771151543, -0.035033177584409714, 0.09115996211767197, 0.09114617109298706, 0.05624104291200638, 0.029482055455446243, -0.009934133850038052, -0.0800209790468216, 0.041022151708602905, -0.00495607266202569, 0.03789715841412544, 0.022810062393546104, -0.030684661120176315, 0.07821303606033325, 0.026171768084168434, -0.008628698997199535, 0.03046332858502865, -0.08831225335597992, -0.0953628420829773, -0.05756550282239914, -0.047175824642181396, 0.053223636001348495, -0.03601318225264549, 0.010255484841763973, 0.033024862408638, 0.022146718576550484, 0.05161714926362038, -0.005199064966291189, 0.005702837370336056, 0.03964880481362343, -0.05118947848677635, -0.06088784337043762, 0.0198742114007473, 0.03722047060728073, -0.002631708048284054, -0.024453729391098022, 0.012770397588610649, -0.02023300528526306, 0.011299708858132362, 0.07085131853818893, 0.004232365172356367, 0.013177678920328617, 0.018216444179415703, 0.03757781907916069, -0.04905880615115166, 0.04513251781463623, -0.05117921158671379, -0.0088191581889987, -0.007234521675854921, -0.02871786430478096, -0.0034026564098894596, -0.01078756619244814, 0.13656067848205566, 0.035244930535554886, -0.017945043742656708, -0.03603077679872513, 0.02777540683746338, -0.02089592069387436, -0.02214205451309681, -0.012885983102023602, -0.008061789907515049, 0.009176211431622505, 0.006066115573048592, -0.04811704531311989, -0.02575899474322796, 0.003918493166565895, -0.04447774961590767, 0.04343537986278534, 0.0560731515288353, 0.01463232096284628, 0.029994366690516472, -0.014521502889692783, 0.015168124809861183, -0.007875071838498116, -0.01345035806298256, -0.05261703580617905, 0.011662731878459454, 0.013754908926784992, 0.007646873127669096, 0.033327534794807434, -0.02470250427722931, -0.020323529839515686, -0.032911740243434906, -0.027271181344985962, -0.0025273384526371956, 0.0541384294629097, 0.05147944763302803, 0.019183896481990814, 0.041987042874097824, -0.03047931380569935, 0.047324713319540024, -0.014951914548873901, -0.04015519469976425, -0.037474099546670914, -0.03215144947171211, -0.029392478987574577, 0.02873731218278408, 0.0511140339076519, 0.004113876260817051, 0.009808097034692764, 0.00649192463606596, 0.008174850605428219, -0.006877390667796135, 0.03233497589826584, 0.009969458915293217, -0.019908783957362175, -0.008392277173697948, 0.023918205872178078, 0.0561925433576107, -0.03629392012953758, -0.026754718273878098, -0.0019020679173991084, -0.05779238045215607, 0.011710290797054768, -0.03406520560383797, -0.03600180521607399, -0.0070754108019173145, 0.008547641336917877, 0.03513815253973007, 0.008433257229626179, 0.007193308789283037, 0.06456752121448517, 0.010389333590865135, 0.017270883545279503, -0.0019877103623002768, 0.00281916162930429, 0.05025340989232063, -0.005426041316241026, 0.052778564393520355, 0.07094161957502365, -0.00927666388452053, -0.027284275740385056, -0.040259577333927155, 0.05251603201031685, -0.08006291091442108, -0.2891903221607208, 0.018909329548478127, 0.033753179013729095, -0.01748806983232498, 0.033134955912828445, -0.03172817826271057, 0.019596507772803307, -0.07321956753730774, -0.029144028201699257, 0.014799577184021473, 0.0003936522116418928, -0.03757185488939285, -0.044057201594114304, 0.03956097736954689, 0.025986505672335625, 0.01648898608982563, 0.00933796726167202, -0.020143350586295128, 0.032223258167505264, 0.02922239899635315, -0.005047718994319439, -0.03750567510724068, 0.009747709147632122, 0.05023844540119171, 0.03645452484488487, 0.04260413348674774, -0.04925939068198204, 0.04367944598197937, -0.043320849537849426, -0.029728082939982414, 0.026338551193475723, -0.038566600531339645, 0.021995216608047485, 0.002894024131819606, -0.015708962455391884, -0.022515587508678436, 0.06525906920433044, -0.0015082003083080053, -0.01386808417737484, -0.02920418232679367, -0.01789962127804756, -0.04667264223098755, 0.00856961589306593, 0.0025120920035988092, 0.06579915434122086, -0.01638166233897209, -0.026651719585061073, -0.03242427483201027, -0.04610302299261093, 0.06321790814399719, 0.016416816040873528, -0.010451419278979301, 0.027105888351798058, 0.04038039594888687, -0.020619641989469528, -0.012788837775588036, 0.01062406599521637, 0.0077277920208871365, -0.060315437614917755, -0.029980286955833435, -0.00428884057328105, -0.020197827368974686, -0.038350820541381836, -0.024146994575858116, 0.011373446322977543, -0.04346922039985657, -0.06534577906131744, -0.0018057192210108042, 0.05558265745639801, 0.035104524344205856, -0.04104667529463768, -0.0015049830544739962, 0.012943070381879807, -0.09307567775249481, 0.0020248345099389553, -0.0010624727001413703, -0.01923563703894615, 0.020195690914988518, -0.01854981668293476, 0.06349031627178192, -0.006903878413140774, -0.03356693685054779, 0.04215694218873978, 0.016590667888522148, 0.0220200102776289, -0.03219248354434967, 0.03552407771348953, 0.0008756921743042767, 0.021295716986060143, -0.0009182374342344701, 0.07142115384340286, -0.02019188180565834, -0.028206119313836098, 0.0039962599985301495, -0.020710427314043045, 0.038349542766809464, -0.004019550513476133, -0.01578401029109955, 0.0154575752094388, 0.020784933120012283, 0.01396409422159195, -0.02790958806872368, 0.020500192418694496, -0.04832550883293152, -0.010955316945910454, -0.01242468785494566, -0.019305752590298653, 0.013935994356870651, -0.01745527796447277, -0.010290154255926609, -0.030965635553002357, 0.0028580734506249428, 0.005620194599032402, -0.044022634625434875, -0.01183641329407692, -0.004569347482174635, 0.011514226906001568, 0.029297472909092903, 0.01478373073041439, -0.053271811455488205, -0.037580929696559906, 0.019060498103499413, -0.006619762163609266, -0.022860461845993996, -0.05892711132764816, -0.010761499404907227, 0.01135410275310278, -0.031054336577653885, 0.006209580693393946, 0.030814258381724358, -0.022208601236343384, -0.004939146805554628, 0.030641891062259674, -0.027842961251735687, 0.06477485597133636, -0.023904135450720787, -0.03772633895277977, -0.017385493963956833, -0.003154624719172716, -0.0014428606955334544, -0.009143797680735588, 0.007916457951068878, 0.0009135507280007005, 0.020325753837823868, 0.06511244922876358, -0.0026852511800825596, 0.030795510858297348, -0.005159041378647089, 0.01786838285624981, 0.006119502242654562, 0.011306189000606537, -0.058783214539289474, 0.0011348869884386659, -0.02863846719264984, -0.027000300586223602, -0.0011142274597659707, 0.0011094940127804875, -0.03811574727296829, 0.016881568357348442, -0.028754400089383125, 0.03289882838726044, -0.03890286758542061, -0.05346527695655823, -0.003029490588232875, 0.007288509514182806, 0.03781735897064209, -0.006948346737772226, -0.0009268553694710135, 0.0012716888450086117, -0.010842704214155674, 0.02742241881787777, 0.001989169977605343, -0.01748911291360855, -0.0059021394699811935, 0.018096106126904488, 0.000797613465692848, 0.011120198294520378, 0.008278661407530308, 0.022500786930322647, 0.02603895403444767, 0.0015740268863737583, -0.04791731387376785, 0.032441556453704834, -0.012394765391945839, 0.035256803035736084, 0.03493021801114082, -0.05164773017168045, 0.011500478722155094, -0.03463554382324219, -0.011862116865813732, -0.049344003200531006, -0.003850039327517152, -0.013422990217804909, -0.0001129674055846408, -0.03093806654214859, -0.0765233114361763, 0.0610024556517601, -0.0358356274664402, 0.02051534876227379, -0.019378412514925003, -0.02300785481929779, 0.009710768237709999, -0.04134899750351906, 0.023274924606084824, 0.04117706045508385, -0.056977249681949615, -0.0012448035413399339, 0.014005190692842007, 0.005633350927382708, 0.025777572765946388, 0.014407535083591938, -0.007497764192521572, -0.04107130691409111, -0.042380861937999725, 0.005782703869044781, -0.048077940940856934, -0.012633941136300564, -0.05794469267129898, 0.04281973838806152, -0.001963504124432802, 0.009965051896870136, -0.021257728338241577, -0.011463519185781479, -0.0032506464049220085, -0.050069522112607956, -0.0024221923667937517, -0.022619396448135376, -0.0008835030603222549, 0.02863463945686817, -0.028248941525816917, 0.03345050290226936, -0.04078246280550957, 0.01569713093340397, 0.04473000392317772, -0.00932562630623579, -0.02169664204120636, -0.02536511793732643, 0.0031831867527216673, 0.011686781421303749, 0.035518523305654526, 0.009447897784411907, 0.0030319332145154476, -0.030182277783751488, 0.016530346125364304, -0.02508649416267872, 0.0306718572974205, -0.005410938989371061, -0.01773045025765896, 0.019583875313401222, 0.060236163437366486, 0.012381814420223236, 0.030953332781791687, -0.004175624810159206, -0.032795801758766174, 0.031559690833091736, -0.08184073120355606, -0.01789015904068947, -0.022015482187271118, -0.05606962740421295, 0.03908099979162216, -0.0070179239846765995, 0.0228078942745924, -0.034952763468027115, 0.027137553319334984, 0.023612910881638527, -0.005946556106209755, 0.06313593685626984, 0.017795387655496597, 0.012831057421863079, -0.03623311594128609, 0.0045894901268184185, -0.06078263744711876, 0.0008878663647919893, 0.009319488890469074, 0.006913024000823498, -0.01670384779572487, 0.0031974315643310547, -0.057392191141843796, 0.07168599963188171, -0.07353735715150833, -0.033463552594184875, 0.05052480101585388, -0.019045492634177208, 0.0030726015102118254, 0.0035208521876484156, -0.03877260535955429, 0.03723880648612976, 0.050283219665288925, -0.05640934035181999, 0.005311205517500639, -0.02313522808253765, 0.08150378614664078, 0.005104660987854004, 0.01851329207420349, -0.018469160422682762, -0.01919322833418846, 0.06678301841020584, 0.004066126421093941, -0.02186310477554798, 0.019875597208738327, 0.006677888333797455, 0.006763995159417391, 0.04382060095667839, -0.01680890843272209, -0.008022991940379143, -0.0013950781431049109, -0.017069300636649132, -0.08372209221124649, 0.03850464150309563, -0.015894491225481033, -0.01579260267317295, -0.0469379760324955, 0.06395075470209122, 0.014687194488942623, -0.015861760824918747, -0.058358531445264816, 0.03890351578593254, -0.024304930120706558, -0.028414051979780197, -0.013453653082251549, -0.02541760727763176, -0.030392466112971306, 0.05283219367265701, -0.0502195730805397, -0.00792577676475048, 0.07530167698860168, 0.01715722866356373, 0.007194363512098789, -0.0296770092099905, 0.06119690090417862, 0.08896399289369583, 0.06676948070526123, 0.009280459955334663, 0.07378409802913666, -0.03579207509756088, -0.02815834991633892, -0.008563040755689144, -0.011841630563139915, -0.018020600080490112, -0.03655696660280228, 0.007605847902595997, 0.08057285845279694, 0.0026515107601881027, 0.06809304654598236, -0.012953679077327251, -0.0183459110558033, 0.01881347969174385, -0.005426956340670586, 0.012485474348068237, 0.01753191649913788, 0.023496801033616066, -0.0034604230895638466, -0.015376451425254345, -0.035628512501716614, 0.060832679271698, -0.02140957862138748, -0.001925838878378272, 0.03183934837579727, -0.012844432145357132, 0.0264151468873024, -0.011000590398907661, 0.029641244560480118, 0.06315603852272034, -0.0006147102685645223, -0.02878098376095295, 0.008848912082612514, 0.02213895134627819, 0.015481606125831604, 0.061061181128025055, -0.021482737734913826, -0.008061470463871956, 0.02301335148513317, -0.041175805032253265, -0.011574123054742813, -0.03218749538064003, -0.048043303191661835, 0.03726419806480408, -0.03733299300074577, 0.0255600456148386, 0.03395092487335205, -0.0252048522233963, -0.05794956535100937, -0.049610815942287445, -0.03656162694096565, -0.07248610258102417, -0.07567480206489563, -0.021986614912748337, 0.0035901879891753197, -0.00825850386172533, -0.054751377552747726, -0.0461326539516449, -0.05480924993753433, 0.0011241543106734753, 0.02236960642039776, -0.07070114463567734, -0.027051618322730064, 0.03168630227446556, 0.0033535058610141277, 0.002700366545468569, 0.007000491954386234, 0.0475701205432415, 0.0063059646636247635, -0.007641563192009926, -0.005825134459882975, 0.04075822979211807, 0.02917509898543358, -0.031084172427654266, 0.02190886065363884, -0.11084083467721939, 0.006470585707575083, 0.024511728435754776, -0.02245436981320381, -0.06332171708345413, 0.01068510115146637, 0.05294245108962059, -0.0007670324994251132, 0.055624112486839294, -0.010589800775051117, 0.00669454038143158, -0.05918712913990021, 0.00654089730232954, -0.04747132956981659, -0.00012938794679939747, 0.054196298122406006, -0.023528074845671654, 0.07270302623510361, 0.0267071183770895, -0.007627058308571577, -0.037589773535728455, -0.02768070437014103, -0.02800927497446537, 0.02817060612142086, -0.017102040350437164, -0.012801827862858772, -0.044450171291828156, -0.08859928697347641, -0.05212786793708801, 0.022529952228069305, -0.022938549518585205, -0.024348212406039238, -0.008100222796201706, 0.0178529005497694, -0.019491152837872505, -0.0010466347448527813, -0.03592995926737785, -0.004950588569045067, -0.0048422133550047874, -0.0005899948882870376, -0.006415449548512697, 0.01371421106159687, 0.03229597210884094, -0.017312556505203247, 0.0263519324362278, -0.06126833334565163, -0.021663935855031013, 0.007494316436350346, 0.024666527286171913, 0.04044733941555023, 0.015087997540831566, 0.009464738890528679 ]
[ -0.07523136585950851, -0.0014138364931568503, -0.02357730269432068, -0.040101367980241776, 0.03487967699766159, -0.0130563760176301, -0.05548575893044472, -0.011177320964634418, -0.01699761487543583, -0.004496100824326277, 0.011167324148118496, -0.04149177297949791, -0.002466872800141573, 0.015605307184159756, 0.06894782185554504, -0.004044051747769117, 0.03189807012677193, -0.08659464865922928, -0.016079556196928024, 0.053731054067611694, 0.022308286279439926, -0.01601363718509674, -0.02151687629520893, -0.017681388184428215, -0.011594372801482677, 0.002053978620097041, 0.019357142969965935, -0.02876906655728817, 0.0012964728521183133, -0.20657534897327423, 0.007612064480781555, -0.005894497502595186, -0.009517977014183998, -0.006392859388142824, 0.0007720337598584592, 0.012909643352031708, 0.006112668197602034, 0.011896687559783459, -0.021741559728980064, 0.02059980109333992, -0.0028107149992138147, 0.001895920722745359, -0.046390846371650696, -0.07717712968587875, 0.03653709962964058, -0.012868700549006462, 0.013800935819745064, -0.01611417718231678, 0.024119988083839417, 0.030444039031863213, -0.016540465876460075, -0.008768252097070217, -0.0008255200809799135, -0.024339379742741585, -0.06216826289892197, 0.03481797128915787, 0.02815363183617592, 0.057243119925260544, 0.022497588768601418, 0.01858118362724781, 0.01626158319413662, 0.0020787615794688463, -0.14955316483974457, 0.11117193847894669, 0.0021061410661786795, 0.06632557511329651, -0.03602413833141327, -0.01601121388375759, -0.028285689651966095, 0.0702703595161438, -0.05659206956624985, -0.043492671102285385, -0.016844453290104866, 0.05772500857710838, -0.009217042475938797, -0.025770744308829308, 0.0011654153931885958, 0.052709344774484634, -0.03356463462114334, -0.04624835401773453, -0.03029089979827404, -0.023050582036376, -0.023651069030165672, -0.0009141432819887996, -0.025338761508464813, 0.020384788513183594, 0.005294973962008953, 0.06723476201295853, 0.031126970425248146, 0.039521411061286926, 0.036276862025260925, -0.012004265561699867, 0.014879831112921238, 0.0018662137445062399, -0.08094018697738647, -0.051887642592191696, 0.027353983372449875, 0.044625770300626755, -0.018702205270528793, 0.45820602774620056, -0.014889433048665524, -0.05271514132618904, 0.1040281429886818, 0.03836183249950409, -0.021119050681591034, -0.01860097609460354, -0.0001218760444317013, -0.0015215110033750534, -0.02038949728012085, -0.009060477837920189, -0.0027906224131584167, -0.013840383850038052, 0.05489527806639671, -0.02561134099960327, 0.046187471598386765, 0.01288018561899662, -0.007129122503101826, 0.04483858123421669, -0.007026177365332842, -0.03423167020082474, -0.009012185037136078, 0.020248688757419586, 0.009766753762960434, -0.013564654625952244, -0.02685309387743473, -0.04804970324039459, 0.050553128123283386, 0.033889494836330414, 0.01441066712141037, 0.010015938431024551, 0.0487297885119915, -0.043149400502443314, -0.07630102336406708, 0.00788646936416626, -0.0008201610762625933, 0.049923885613679886, 0.06981556117534637, -0.02849949337542057, 0.028233982622623444, -0.0024644548539072275, 0.01842823252081871, -0.004021084867417812, 0.026329511776566505, 0.03647298738360405, -0.0042618075385689735, 0.1247653067111969, -0.023380668833851814, -0.012023357674479485, -0.020355459302663803, -0.03463302180171013, -0.0034735766239464283, 0.033679500222206116, -0.024851739406585693, -0.023191435262560844, 0.015107836574316025, 0.0032663135789334774, 0.10488021373748779, -0.023073963820934296, -0.057846542447805405, 0.014227227307856083, 0.011669197119772434, -0.03720180690288544, -0.024329103529453278, 0.014419459737837315, 0.07451867312192917, -0.10054775327444077, -0.008594983257353306, -0.00011594154057092965, 0.03224536404013634, -0.06316179782152176, -0.03575453907251358, 0.019540827721357346, -0.013902867212891579, -0.033358994871377945, 0.048375990241765976, 0.00032008715788833797, -0.044493526220321655, 0.007072916720062494, 0.03542749211192131, 0.0034110501874238253, -0.015842018648982048, -0.016840169206261635, -0.030790386721491814, -0.011781668290495872, -0.05579344183206558, -0.1043735221028328, -0.04000816494226456, -0.0018104193732142448, -0.0009065918857231736, 0.01207276713103056, 0.013311529532074928, -0.04807812720537186, -0.09616576880216599, 0.08935344964265823, -0.013086678460240364, 0.03097929060459137, -0.008042524568736553, 0.006470108404755592, 0.005161695182323456, -0.012361593544483185, -0.0029179747216403484, -0.01293003000319004, -0.016000790521502495, 0.02577049471437931, -0.05324973538517952, 0.04233856499195099, 0.041128337383270264, -0.050680696964263916, 0.06884846091270447, 0.03418179973959923, -0.04506679251790047, -0.041187651455402374, 0.03550121933221817, 0.04009295627474785, -0.029580919072031975, -0.0077087352983653545, -0.020316854119300842, -0.01911572739481926, 0.04220834746956825, 0.029444174841046333, -0.002779706148430705, -0.01213973667472601, -0.011126510798931122, -0.31692469120025635, -0.020329486578702927, -0.05151708424091339, 0.0009119893074966967, 0.0315510518848896, -0.07687416672706604, 0.020685184746980667, 0.008694103918969631, 0.0082431361079216, 0.022409897297620773, 0.06930316984653473, -0.00892701931297779, 0.013958138413727283, -0.09738697856664658, 0.007665209472179413, -0.022172315046191216, -0.03471336141228676, -0.010179391130805016, -0.032239481806755066, 0.006908009294420481, -0.010730499401688576, -0.0208890438079834, -0.04336941987276077, -0.04217049106955528, 0.011463751085102558, -0.013343676924705505, 0.12629057466983795, 0.04577108845114708, 0.07178395986557007, -0.030057009309530258, 0.05264132842421532, 0.03382553160190582, -0.007192312739789486, -0.09637637436389923, -0.026091258972883224, -0.016434574499726295, 0.02506919763982296, 0.02011837065219879, 0.019794374704360962, -0.026895573362708092, -0.031508300453424454, 0.004795273765921593, -0.04412544146180153, -0.05699433013796806, -0.03261910378932953, 0.027949456125497818, -0.009870821610093117, 0.026604188606142998, -0.0017087444430217147, 0.10254337638616562, 0.009366254322230816, -0.04214204475283623, -0.014400158077478409, 0.011566597037017345, 0.00932103581726551, 0.004468260798603296, -0.06470198929309845, 0.0024898285046219826, 0.02001037634909153, 0.00581918703392148, 0.0030691418796777725, 0.04175102710723877, 0.03891365975141525, -0.07564924657344818, -0.030057521536946297, 0.04371172562241554, 0.01226333063095808, 0.0015640180790796876, 0.040565378963947296, 0.012225461192429066, 0.002683425322175026, 0.0902247205376625, 0.011273989453911781, 0.03349227458238602, 0.030723249539732933, 0.08016866445541382, 0.02965920977294445, 0.04560685157775879, 0.013204916380345821, -0.034105654805898666, -0.01104460097849369, 0.022980237379670143, -0.0025938989128917456, -0.041592780500650406, 0.011757844127714634, 0.044847212731838226, -0.02868075855076313, -0.07418028265237808, 0.040249407291412354, -0.002476081484928727, -0.007576391566544771, 0.001505345106124878, -0.02272823080420494, -0.021263759583234787, 0.06177225708961487, 0.0048116715624928474, -0.26000910997390747, 0.03257408365607262, 0.08517094701528549, 0.03240600973367691, -0.018093615770339966, 0.010162967257201672, 0.0023548442404717207, -0.04583585262298584, 0.0005676858709193766, 0.013581761159002781, -0.0074564144015312195, 0.018637150526046753, -0.003130722790956497, -0.015312723815441132, -0.014406898058950901, 0.0017794850282371044, 0.054314449429512024, 0.032176848500967026, 0.05735296756029129, 0.0021640057675540447, -0.009488026611506939, -0.04702118784189224, 0.14839118719100952, 0.016511552035808563, -0.003376931883394718, -0.01794438436627388, 0.0002330009883735329, -0.0015170268015936017, 0.07327157258987427, 0.012463509105145931, 0.00576228741556406, 0.002752601634711027, -0.01729411445558071, -0.0030789582524448633, 0.015324359759688377, -0.08866806328296661, -0.04052697494626045, 0.039159517735242844, 0.03783462196588516, 0.007748450618237257, -0.009017547592520714, -0.002797933993861079, -0.03730931133031845, -0.01145846676081419, 0.048818089067935944, 0.0336335189640522, 0.03902206942439079, 0.031649138778448105, -0.07098209857940674, -0.020662929862737656, -0.03345809876918793, -0.03309054672718048, 0.009342499077320099, -0.0010391568066552281, 0.003472327720373869, 0.050227273255586624, 0.02666970156133175, 0.004573047161102295, 0.019320113584399223, 0.03829723224043846, 0.020056098699569702, -0.034727081656455994, 0.08893369138240814, 0.0005509763723239303, 0.028705613687634468 ]
[ -0.009112473577260971, 0.0037048847880214453, -0.009301328100264072, 0.021481778472661972, 0.04076336696743965, 0.03464232385158539, 0.027913492172956467, 0.03606383129954338, 0.02053498849272728, 0.004385269246995449, 0.0016360804438591003, 0.046786364167928696, -0.0008748493855819106, 0.049462005496025085, 0.02457517758011818, -0.0021279691718518734, 0.04057442396879196, -0.029559435322880745, 0.026769394055008888, 0.025757985189557076, 0.00805760733783245, -0.052799567580223083, 0.0038487394340336323, -0.035721149295568466, 0.04510347172617912, 0.006610232871025801, -0.0061963400803506374, 0.02290049009025097, 0.04181155562400818, -0.10218387097120285, -0.033261317759752274, -0.0490858294069767, -0.02989214099943638, -0.007824795320630074, 0.016513127833604813, 0.006406957283616066, -0.00950610637664795, -0.01577279344201088, -0.017851537093520164, 0.0044179740361869335, 0.01881658099591732, 0.013829086907207966, 0.02651752345263958, 0.007909003645181656, 0.019224993884563446, -0.029807424172759056, -0.0008458101074211299, 0.005359638016670942, -0.03223644196987152, -0.020571183413267136, -0.04598289728164673, -0.03420000150799751, -0.03802146017551422, -0.014066106639802456, -0.009835630655288696, -0.017135517671704292, 0.010235798545181751, -0.008118108846247196, 0.030472738668322563, -0.004374061711132526, -0.020267805084586143, -0.025311922654509544, -0.04585554823279381, -0.0034216109197586775, -0.009132123552262783, 0.023751169443130493, 0.012296928092837334, -0.011149824596941471, -0.006961982697248459, 0.011917724274098873, -0.039258718490600586, 0.03614877909421921, -0.0177475456148386, -0.017042959108948708, -0.05267016217112541, -0.0058942874893546104, 0.002064381493255496, -0.05037125572562218, -0.0021250846330076456, -0.01897376962006092, 0.026933977380394936, 0.011667339131236076, -0.024186700582504272, 0.03457054868340492, 0.031242888420820236, 0.042736779898405075, 0.03730808570981026, 0.024053344503045082, -0.021496398374438286, -0.025667039677500725, -0.09161338210105896, 0.032756440341472626, -0.020942071452736855, 0.04533401504158974, -0.0634448453783989, -0.040548019111156464, -0.0368431955575943, -0.035890575498342514, -0.019295252859592438, 0.7935478091239929, -0.0028326993342489004, -0.003527616383507848, 0.06645885109901428, 0.004808264318853617, -0.05468520149588585, -0.02461676113307476, -0.018800491467118263, 0.030998721718788147, -0.007918892428278923, -0.0059900847263634205, -0.007904807105660439, 0.031151453033089638, 0.007963264361023903, 0.025781851261854172, 0.0006221432122401893, 0.022691141813993454, -0.056890588253736496, 0.003339615184813738, -0.013957849703729153, -0.045206449925899506, -0.0035387100651860237, 0.022972600534558296, -0.01728970743715763, -0.006446844432502985, 0.00117054907605052, -0.2086523324251175, 0.0038135529030114412, -6.685057678961458e-33, -0.012058443389832973, -0.046959299594163895, 0.040628477931022644, 0.009936410002410412, -0.016176119446754456, 0.044185392558574677, -0.019917447119951248, -0.002011100295931101, -0.005403764080256224, -0.020427223294973373, 0.014147977344691753, -0.041143640875816345, -0.0003071901446674019, 0.03241286054253578, 0.0008216061978600919, 0.014147107489407063, 0.023405974730849266, 0.036702074110507965, -0.025307156145572662, 0.03471248969435692, 0.02036874182522297, 0.010046050883829594, 0.004735240712761879, 0.0531376414000988, -0.02962549403309822, 0.04452802240848541, 0.019506141543388367, 0.015267615206539631, 0.0060614836402237415, -0.05964060500264168, -0.033265501260757446, -0.010272706858813763, 0.031042061746120453, -0.03946099430322647, 0.044930294156074524, -0.0556342639029026, -0.0327603816986084, -0.027036484330892563, 0.013211935758590698, -0.014355610124766827, -0.03382905200123787, 0.008220983669161797, -0.044969383627176285, -0.011809781193733215, -0.030319100245833397, -0.010618872009217739, 0.01585610955953598, 0.013675466179847717, -0.042792730033397675, 0.017006520181894302, 0.0010524881072342396, 0.048348065465688705, -0.002181414281949401, -0.01740071550011635, -0.04683154076337814, -0.0009349984466098249, -0.005840925499796867, 0.008401196449995041, 0.041880156844854355, -0.05071893706917763, 0.049406323581933975, 0.0004780638846568763, -0.00948537141084671, 0.006903147324919701, -0.0409521609544754, 0.008761577308177948, 0.0476367250084877, -0.0159292072057724, 0.0031948396936059, 0.032189056277275085, -0.0446772538125515, 0.03580842167139053, -0.01585581712424755, -0.03930734097957611, 0.05127767473459244, -0.018419824540615082, -0.049231305718421936, 0.05043791979551315, 0.00885379035025835, 0.03249281272292137, -0.05646037310361862, -0.04934955760836601, 0.02682378888130188, -0.03437338396906853, -0.022661972790956497, 0.001013541012071073, 0.05070848390460014, 0.0022341490257531404, -0.006159630604088306, 0.05070206895470619, 0.04310093820095062, 0.011068298481404781, -0.015089878812432289, -0.003674704348668456, 0.006613408215343952, 6.766284338603278e-33, 0.013225913047790527, 0.008678312413394451, -0.04067159816622734, -0.03707568719983101, -0.004773295484483242, -0.013245637528598309, -0.000043348911276552826, 0.027636263519525528, -0.00876456219702959, -0.007994809187948704, 0.003396315034478903, -0.013838003389537334, -0.05764336511492729, -0.015640337020158768, 0.06342414766550064, -0.025199364870786667, -0.010968951508402824, -0.027452195063233376, -0.017845364287495613, -0.025879498571157455, 0.04661836102604866, 0.026601986959576607, 0.03344868868589401, 0.022368861362338066, 0.0683218315243721, 0.05513940751552582, 0.011481420136988163, 0.012329484336078167, 0.004266621079295874, 0.023296954110264778, -0.013888474553823471, -0.01080084778368473, -0.008784947916865349, -0.00219202833250165, -0.011473990976810455, 0.025865798816084862, 0.021363448351621628, 0.00935850478708744, -0.014711868949234486, 0.02672410197556019, -0.010124428197741508, 0.023904995992779732, -0.03516549617052078, 0.027143394574522972, -0.008402008563280106, 0.04900994524359703, -0.008185016922652721, 0.014185125939548016, -0.016522925347089767, -0.013660729862749577, -0.027375634759664536, 0.030041826888918877, 0.029074402526021004, -0.02454954758286476, 0.05260168015956879, -0.04088140279054642, -0.02946648560464382, -0.0005238859448581934, 0.006889356300234795, -0.05222240090370178, -0.017845818772912025, -0.03561779111623764, -0.0017840892542153597, -0.013781892135739326, -0.04663936048746109, 0.018894584849476814, -0.032314907759428024, -0.0012179262703284621, 0.007380682043731213, 0.027696600183844566, 0.011555190198123455, 0.03635450825095177, -0.01143697090446949, 0.0329633392393589, -0.006585122551769018, 0.00930696725845337, -0.02036123536527157, 0.022558722645044327, 0.0127018503844738, -0.000991464825347066, 0.014611187390983105, -0.018436338752508163, 0.018432345241308212, 0.0011870904127135873, 0.006717376876622438, 0.060785695910453796, -0.01552592683583498, -0.0017456504283472896, 0.007757740560919046, 0.00954476185142994, -0.027253668755292892, 0.017678452655673027, 0.024195918813347816, 0.011722414754331112, 0.018767748028039932, -1.2466718324333215e-8, -0.06428733468055725, 0.026159297674894333, -0.02276470512151718, 0.0008708158857189119, -0.043181709945201874, -0.022365465760231018, 0.01358909159898758, 0.05634187534451485, 0.0672786608338356, 0.00039274056325666606, 0.05757804960012436, -0.07679715007543564, 0.039943866431713104, -0.0031605034600943327, -0.03430069610476494, -0.015717854723334312, 0.029244588688015938, 0.01894799806177616, 0.039353109896183014, 0.012922660447657108, -0.005512004252523184, 0.006014333106577396, 0.016599446535110474, -0.014433142729103565, -0.018664168193936348, 0.02489118091762066, 0.0116824209690094, -0.09144993871450424, -0.017550712451338768, 0.02175365760922432, 0.004595251753926277, -0.011602899990975857, -0.027287518605589867, -0.020097998902201653, -0.025729618966579437, -0.02564094588160515, 0.02483806200325489, 0.015264774672687054, 0.029952863231301308, 0.004044103901833296, 0.030257588252425194, -0.0315311960875988, 0.0253245048224926, -0.027088550850749016, -0.02308339625597, 0.018176333978772163, 0.02920723892748356, -0.03194427117705345, 0.009429500438272953, 0.020336730405688286, -0.0027188893873244524, 0.00016179792874027044, -0.04765566065907478, 0.020169049501419067, 0.030776219442486763, -0.03358696401119232, 0.04479232057929039, 0.0029402642976492643, -0.04204490780830383, 0.001922468887642026, 0.027647869661450386, -0.0071889739483594894, -0.01086118258535862, 0.00006464609759859741 ]
powerpoint-saving-movies-as-images
https://markhneedham.com/blog/2012/06/30/powerpoint-saving-movies-as-images
false
2012-06-24 00:40:35
Creating a Samba share between Ubuntu and Mac OS X
[ "software-development" ]
[ "Software Development" ]
On the project I'm currently working on we have our development environment setup on a bare bones Ubuntu instance which we run via VmWare. We wanted to be able to edit files on the VM from the host O/S so my colleague http://twitter.com/philandstuff[Phil] suggested that we set up a Samba server on the VM and then connect to it from the Mac. We first needed to install a couple of packages on the VM: * apt-get install samba * apt-get install libpam-smbpass The first package is self explanatory and the second allows us to keep the samba username/password in sync with the unix user on the VM. Installing the samba package will automatically start up the Samba daemon 'smbd'. [source,text] ---- $ ps aux | grep smbd mneedham 10915 0.0 0.0 7624 928 pts/14 S+ 17:37 0:00 grep --color=auto smbd root 32610 0.0 0.1 95372 5408 ? S Jun22 0:50 smbd -F ---- We then need to edit +++<cite>+++/etc/samba/smb.conf+++</cite>+++: First we uncomment this line: [source,text] ---- security = user ---- Then add a share, probably at the bottom of the file but anywhere is fine: [source,text] ---- [mneedham] comment = Mark's vm read only = no path = /home/mneedham guest ok = no browseable = yes create mask = 0644 ---- From the Mac we need to mount the share: * Go to finder * Connect to server (Cmd - K) * Type in 'smb://ip.of-vm * Select the name of the share The share should now be accessible from the host O/S at +++<cite>+++/Volumes/name.of.share+++</cite>+++ Looking back I'm sure there's a way to configure VmWare to share files from the guest O/S but at least I now know another way to do it as well!
null
null
[ 0.010500012896955013, -0.012293427251279354, -0.011568949557840824, 0.07758355885744095, 0.11140397936105728, -0.010724074207246304, 0.008864099159836769, 0.016465218737721443, -0.012158701196312904, -0.022822923958301544, -0.01962389424443245, 0.009188291616737843, -0.061734117567539215, 0.017099324613809586, -0.021230367943644524, 0.054211460053920746, 0.08220259100198746, -0.02588067576289177, -0.0011605196632444859, 0.016718540340662003, 0.013106252066791058, 0.059387531131505966, 0.018375156447291374, 0.028858738020062447, -0.005345208570361137, 0.01214261818677187, 0.012309260666370392, -0.007920097559690475, -0.05098510533571243, -0.012944916263222694, 0.04010498523712158, -0.02905094251036644, 0.023582851514220238, -0.026442360132932663, 0.002196676330640912, -0.0050634643994271755, -0.010876238346099854, 0.018233604729175568, -0.0021934276446700096, -0.0020842822268605232, -0.06486672163009644, 0.05010264739394188, -0.0020540114492177963, -0.004622775595635176, -0.010262281633913517, 0.019420208409428596, -0.04328141361474991, 0.013676070608198643, 0.0030899483244866133, -0.01242077350616455, -0.06295660883188248, 0.04388989880681038, -0.020625244826078415, -0.002279994310811162, 0.030952898785471916, 0.02582128532230854, -0.005323874764144421, -0.0775873214006424, 0.02815038524568081, -0.03819451481103897, -0.040820732712745667, -0.010272810235619545, -0.0044502136297523975, 0.031116953119635582, 0.01660454273223877, -0.02565394528210163, -0.0007694626692682505, 0.037754856050014496, -0.029534298926591873, -0.014276795089244843, -0.0036752047017216682, -0.0019691544584929943, -0.03561610355973244, -0.043094176799058914, 0.037286754697561264, -0.06526559591293335, 0.015303781256079674, 0.03988993167877197, 0.020555630326271057, 0.03736913949251175, -0.06846282631158829, 0.009511815384030342, -0.018134234473109245, 0.019731903448700905, 0.007183823734521866, -0.05254139378666878, -0.02872372232377529, 0.029339486733078957, -0.0813581645488739, 0.08578108996152878, 0.02144947275519371, -0.047112319618463516, 0.019933585077524185, 0.02693241275846958, 0.006838996894657612, -0.019292956218123436, 0.01904304325580597, -0.003979387693107128, 0.03619246184825897, 0.00023405194224324077, -0.048385463654994965, -0.01286045927554369, -0.014571540988981724, 0.03505920246243477, -0.07041112333536148, 0.0004606661095749587, -0.023226941004395485, -0.010715881362557411, -0.012431962415575981, -0.001960521563887596, -0.006347487680613995, -0.011244204826653004, -0.005005129147320986, 0.014101963490247726, -0.04312074929475784, 0.0684935674071312, 0.02166765183210373, -0.08987541496753693, -0.000749357626773417, 0.01425075251609087, 0.03833293542265892, 0.04225727915763855, -0.0363168865442276, 0.05481777340173721, 0.005165536887943745, -0.012320620939135551, -0.01051376760005951, 0.04416349157691002, -0.019092626869678497, -0.03709599748253822, -0.028405379503965378, 0.07435009628534317, 0.020460788160562515, 0.005541571415960789, -0.01164909265935421, -0.006859954912215471, 0.0007687973557040095, 0.011889457702636719, 0.018842607736587524, 0.02479214407503605, 0.019068103283643723, -0.004663840401917696, -0.018193095922470093, 0.015989048406481743, 0.0435185506939888, 0.023563114926218987, 0.008216657675802708, -0.04818715527653694, -0.06194620952010155, 0.010421011596918106, 0.023369062691926956, 0.02025820128619671, 0.06606260687112808, -0.02669530175626278, -0.007375097367912531, 0.10305603593587875, 0.06694621592760086, 0.020014358684420586, -0.03462926670908928, -0.009196844883263111, 0.005855566821992397, 0.01744328998029232, -0.019021857529878616, 0.04955639690160751, -0.017156211659312248, -0.022166559472680092, -0.009098125621676445, 0.053088024258613586, 0.028080545365810394, -0.0011674299603328109, -0.04902093857526779, -0.07475263625383377, 0.03344675153493881, -0.051696475595235825, 0.00540738832205534, 0.03593633323907852, 0.08972311019897461, 0.049130622297525406, 0.028904229402542114, 0.00502478051930666, -0.08018231391906738, 0.036518462002277374, -0.007822864688932896, 0.028077945113182068, 0.048326946794986725, 0.004379416350275278, 0.040831517428159714, 0.03004881925880909, 0.025105055421590805, 0.03328337520360947, -0.0774335041642189, -0.10769645869731903, -0.018365606665611267, 0.0032645300962030888, 0.03539426624774933, 0.008672564290463924, -0.006839393638074398, 0.04236201196908951, 0.025511443614959717, 0.034818653017282486, 0.03168182075023651, 0.04109595715999603, 0.009934027679264545, -0.06209136173129082, -0.09545128792524338, 0.02476387657225132, 0.02102644555270672, -0.012271400541067123, -0.04580264165997505, 0.008596139959990978, -0.03658819943666458, -0.008289813064038754, 0.05252176150679588, -0.032122932374477386, 0.07299111783504486, 0.006064964458346367, 0.007105971686542034, -0.03819052875041962, 0.039044175297021866, -0.059183984994888306, 0.019452275708317757, 0.006269433535635471, -0.01243800949305296, 0.011511901393532753, 0.007258136756718159, 0.11256776750087738, 0.053632695227861404, -0.030307890847325325, -0.031808994710445404, 0.04594266042113304, 0.012738507241010666, -0.05630604550242424, 0.014062341302633286, 0.0024001793935894966, 0.008178872987627983, 0.040541715919971466, -0.052141375839710236, -0.04360778629779816, 0.0052500562742352486, -0.020238960161805153, 0.0023872563615441322, 0.0804111585021019, 0.0009166235686279833, 0.057654015719890594, 0.019058832898736, -0.032674357295036316, -0.010951405391097069, -0.06644565612077713, -0.0694735199213028, 0.011454292573034763, 0.035047661513090134, -0.013352449052035809, 0.04308798536658287, -0.0429718978703022, -0.01186179555952549, -0.03976209834218025, -0.036594025790691376, 0.03330147638916969, 0.02093031071126461, 0.05959130823612213, -0.06022002920508385, 0.04110553488135338, -0.03140904754400253, 0.015721606090664864, -0.02174289897084236, -0.022207139059901237, -0.05054270848631859, 0.028884684666991234, -0.0025066903326660395, 0.0016604128759354353, -0.013477549888193607, -0.015279905870556831, -0.01100246887654066, -0.02491658926010132, 0.03804723545908928, -0.009405186399817467, 0.03186114877462387, 0.01821901462972164, 0.02165462262928486, -0.05876600369811058, -0.0030062836594879627, 0.03878563642501831, -0.06055042892694473, -0.018659723922610283, 0.0043610516004264355, -0.0557759553194046, 0.019332412630319595, -0.08577361702919006, -0.037304047495126724, -0.02665720507502556, 0.03117346204817295, 0.012724162079393864, 0.03273826837539673, 0.0480024553835392, 0.03391587734222412, -0.0027501736767590046, 0.006863635499030352, 0.013845513574779034, -0.006076547782868147, 0.04219764843583107, 0.0021197767928242683, 0.0010042078793048859, 0.018774932250380516, -0.03854662925004959, 0.002509497106075287, -0.04944351315498352, 0.043272558599710464, -0.04997621849179268, -0.2528056502342224, 0.04712473601102829, -0.0075577422976493835, -0.0521615706384182, 0.024150898680090904, -0.021858148276805878, -0.011460722424089909, -0.04254867136478424, -0.040205828845500946, 0.0005065064178779721, -0.04050980880856514, -0.021237974986433983, 0.02477916330099106, -0.0008209183579310775, -0.006422948557883501, 0.05314105004072189, 0.024852847680449486, -0.06855537742376328, 0.007724286522716284, 0.0046120439656078815, -0.015416991896927357, -0.04809856414794922, 0.04188822582364082, 0.025030871853232384, 0.041149597615003586, 0.08185259997844696, -0.04658742994070053, 0.06949103623628616, -0.04513460397720337, -0.006697314325720072, 0.010923809371888638, -0.007521986495703459, 0.004016345366835594, 0.023354554548859596, -0.00628434494137764, -0.014256209135055542, 0.04169025644659996, 0.002602582797408104, 0.03480527922511101, 0.015841044485569, -0.015682758763432503, -0.05211378633975983, 0.023302381858229637, -0.005897790193557739, 0.05404015630483627, -0.020973404869437218, -0.07288530468940735, -0.026957368478178978, -0.052276160567998886, 0.09410221874713898, -0.03529607877135277, -0.03720095008611679, -0.0049640764482319355, 0.017186332494020462, -0.04546761512756348, -0.007276150863617659, -0.008998260833323002, 0.01743045262992382, -0.044798776507377625, -0.043391987681388855, -0.02542141079902649, -0.02585258148610592, -0.027072597295045853, -0.04494768753647804, 0.03913695365190506, -0.045549944043159485, -0.055445920675992966, -0.011910206638276577, 0.06629239022731781, 0.02684173174202442, -0.037771087139844894, 0.0183242280036211, -0.010996666736900806, -0.10718531161546707, -0.004847643431276083, -0.011640427634119987, -0.06034490838646889, -0.0032958330120891333, 0.021885471418499947, 0.019254161044955254, -0.024068228900432587, -0.013303832150995731, -0.002187893260270357, 0.02413473092019558, 0.010517220944166183, -0.02909342758357525, 0.020399007946252823, -0.014416808262467384, -0.011695276945829391, -0.019283751025795937, 0.051553402096033096, -0.02544340305030346, -0.030772631987929344, -0.010250711813569069, 0.00046774535439908504, 0.010119674727320671, -0.008675819262862206, 0.03312969207763672, 0.026120128110051155, 0.01570259965956211, 0.03170617297291756, -0.03725677356123924, -0.0048707895912230015, -0.04789049178361893, -0.017368094995617867, 0.010669083334505558, -0.061167094856500626, -0.013082538731396198, 0.024374445900321007, 0.034046631306409836, -0.014620497822761536, -0.03425202518701553, 0.025028957054018974, -0.1016371101140976, -0.02940683811903, -0.00621282821521163, 0.019892493262887, 0.014816889539361, 0.03539383038878441, -0.016968732699751854, -0.02420942671597004, 0.002219958696514368, 0.039214808493852615, -0.014401824213564396, -0.050041262060403824, 0.02088388055562973, -0.012075178325176239, -0.003709631273522973, 0.014491572976112366, -0.010693707503378391, -0.016666565090417862, 0.02535257674753666, 0.07562782615423203, -0.04864692687988281, 0.015019788406789303, -0.01278276089578867, -0.037179991602897644, -0.0365699827671051, -0.005776276811957359, 0.006783919874578714, -0.02481493353843689, 0.009883083403110504, -0.00862671248614788, 0.02640179544687271, 0.04496895149350166, -0.010085147805511951, 0.03922417759895325, -0.037104927003383636, 0.00810958631336689, 0.00574762187898159, 0.0022837715223431587, -0.04112893342971802, 0.009554016403853893, -0.021956564858555794, -0.039994433522224426, -0.029263516888022423, 0.03068659082055092, -0.02337014488875866, -0.01573382504284382, -0.007484771311283112, 0.013653982430696487, -0.05568481609225273, -0.005549564491957426, 0.00631815567612648, -0.015243292786180973, 0.07656657695770264, 0.007243368774652481, -0.005971195176243782, -0.034592676907777786, 0.007839580997824669, 0.03042156994342804, 0.027368301525712013, -0.045176200568675995, -0.019664309918880463, 0.005633069202303886, 0.018889889121055603, 0.011632438749074936, 0.03317464143037796, 0.043804317712783813, 0.004549192264676094, 0.020175278186798096, -0.016828304156661034, 0.009666171856224537, -0.012248130515217781, 0.04096118360757828, -0.012192612513899803, -0.03899718448519707, 0.004259824752807617, -0.02159629762172699, -0.031626079231500626, -0.007365206256508827, 0.011310487054288387, -0.004629975650459528, 0.019522687420248985, -0.023413468152284622, -0.09162506461143494, 0.028167549520730972, 0.02274640090763569, -0.003408164018765092, -0.01859179139137268, -0.02067456766963005, 0.011000001803040504, -0.044185493141412735, 0.07728543132543564, 0.07673521339893341, -0.04193337634205818, 0.007921036332845688, 0.011637232266366482, 0.019659509882330894, -0.007818262092769146, 0.006088219583034515, -0.0219093207269907, 0.0028532787691801786, 0.012939048931002617, 0.03471696376800537, -0.03992444649338722, -0.03893201798200607, -0.0028314862865954638, -0.0034672038163989782, 0.006671533454209566, -0.009166929870843887, 0.0028049075044691563, -0.005358141381293535, -0.0017244881018996239, -0.03764894977211952, 0.020334839820861816, 0.012559890747070312, -0.0230165496468544, 0.006512612570077181, -0.013084957376122475, -0.005061876028776169, -0.0524241141974926, 0.026829777285456657, 0.0005351912113837898, -0.029146606102585793, -0.015832971781492233, -0.040908463299274445, 0.009304555132985115, 0.0022769880015403032, 0.02651672065258026, -0.006271969527006149, 0.0062803239561617374, -0.032428111881017685, 0.029428746551275253, -0.05184902250766754, -0.010358775034546852, -0.03061562031507492, -0.026305008679628372, 0.022517887875437737, 0.04918298125267029, -0.030995333567261696, 0.013173338957130909, -0.00025804067263379693, -0.016570845618844032, 0.04960564523935318, -0.042097680270671844, -0.07115450501441956, -0.005923619493842125, -0.0575653500854969, 0.017270773649215698, 0.03115025721490383, 0.011666251346468925, -0.07708679139614105, 0.05032074451446533, 0.019295798614621162, -0.013147463090717793, 0.055765215307474136, 0.0007979382062330842, 0.021808933466672897, -0.02278211899101734, -0.014408525079488754, -0.07060949504375458, 0.01521462295204401, 0.011088456027209759, -0.016220103949308395, 0.0027121712919324636, 0.0235124658793211, -0.027690881863236427, 0.03820672631263733, -0.04724711924791336, -0.028880927711725235, 0.037240639328956604, 0.013092339038848877, 0.0038540498353540897, -0.010052180849015713, -0.05750594288110733, 0.033211786299943924, 0.0414292998611927, -0.039335884153842926, 0.047340698540210724, -0.02054705284535885, 0.05244238302111626, 0.020207960158586502, 0.05180560424923897, -0.011427895165979862, -0.042268056422472, 0.061249569058418274, 0.013856422156095505, 0.0037131074350327253, 0.047439828515052795, -0.004780956543982029, 0.03631279617547989, 0.0420512855052948, -0.016273856163024902, 0.029993753880262375, -0.0011809458956122398, -0.040621306747198105, -0.05622429400682449, -0.007640640716999769, -0.015854978933930397, -0.008532711304724216, -0.03726848214864731, 0.05983290448784828, 0.020830130204558372, -0.053146641701459885, -0.059249769896268845, 0.0385611429810524, -0.006763146724551916, -0.01689469814300537, -0.033148422837257385, 0.012522573582828045, -0.04132179543375969, 0.05427316203713417, 0.0014089501928538084, 0.02486940659582615, 0.05899577587842941, -0.014186574146151543, -0.015970662236213684, 0.03912688046693802, 0.07469599694013596, 0.07821197062730789, 0.03090486489236355, 0.020945992320775986, 0.08482709527015686, -0.016888359561562538, -0.046556223183870316, -0.024355975911021233, -0.018657056614756584, -0.022408846765756607, -0.01410653442144394, 0.0022412308026105165, 0.07110249251127243, -0.035928018391132355, 0.0338861346244812, -0.015603172592818737, -0.0003832995716948062, 0.012200480327010155, 0.02065635286271572, 0.03914400562644005, 0.00990383978933096, 0.012823633849620819, 0.05307372286915779, 0.00020341409253887832, -0.018656134605407715, 0.006264813244342804, -0.0178151223808527, -0.013967815786600113, 0.010377640835940838, -0.011676534079015255, 0.006727883592247963, 0.019001958891749382, 0.005245362874120474, 0.0859953984618187, -0.008459270931780338, 0.0031574671156704426, -0.0055471486411988735, 0.049504637718200684, -0.00375201809220016, 0.043318383395671844, -0.025173019617795944, -0.027335576713085175, -0.008572105318307877, -0.011959793046116829, -0.0018762997351586819, 0.021163949742913246, 0.022530298680067062, 0.02362716570496559, -0.010773121379315853, -0.0002554802340455353, 0.01778181828558445, 0.002670315559953451, -0.030875608325004578, -0.01928769424557686, -0.05423682928085327, -0.03975779563188553, -0.03281419724225998, 0.02242596074938774, 0.007875429466366768, -0.006588187534362078, -0.04040271416306496, -0.0022880765609443188, -0.01616961508989334, -0.039467841386795044, 0.026810502633452415, -0.047232259064912796, -0.03746085986495018, -0.0033813868649303913, 0.02191966585814953, 0.021289478987455368, 0.011460860259830952, 0.04986901581287384, -0.028066059574484825, -0.027846278622746468, -0.021766729652881622, 0.00025084271328523755, 0.029039904475212097, -0.004092871677130461, -0.008026852272450924, -0.08899913728237152, 0.0685538649559021, 0.037310753017663956, 0.013159423135221004, -0.05826536938548088, 0.003216688521206379, 0.04162629321217537, 0.029174068942666054, 0.051032502204179764, -0.010150499641895294, 0.02301386184990406, 0.003114428836852312, 0.0008067342569120228, -0.03393399342894554, 0.002732286462560296, 0.04777904972434044, 0.01289509329944849, 0.0966554805636406, 0.04939492419362068, 0.007707987446337938, -0.04413358122110367, -0.0012046671472489834, -0.0009656765032559633, 0.011024430394172668, -0.025097588077187538, -0.007864831946790218, -0.018116958439350128, -0.08415409922599792, -0.05109423026442528, 0.0019127087434753776, -0.0570160336792469, -0.02964593656361103, 0.01654132828116417, 0.0009702289826236665, -0.0585290901362896, 0.02069295570254326, -0.03929031267762184, -0.023274807259440422, 0.0004592601617332548, -0.008435772731900215, -0.03098413720726967, 0.028974037617444992, -0.00864258874207735, -0.004476428497582674, 0.041820283979177475, -0.02947154827415943, 0.0003461700107436627, 0.02544872835278511, 0.02959342487156391, 0.06632701307535172, 0.007434334605932236, 0.05025358498096466 ]
[ -0.06062055751681328, -0.03483689948916435, -0.003087000921368599, -0.06462528556585312, 0.06550894677639008, -0.06662555783987045, -0.052481118589639664, -0.007994597777724266, -0.001503331703133881, -0.02391156181693077, 0.032875288277864456, -0.05617886036634445, 0.02273137867450714, -0.049504347145557404, 0.11644614487886429, 0.00896292831748724, -0.016657045111060143, -0.05535416677594185, 0.02939034439623356, 0.018430160358548164, -0.029235761612653732, -0.03254613280296326, -0.04997492954134941, -0.026617227122187614, -0.02233114466071129, 0.017379647120833397, 0.06334181129932404, -0.009061764925718307, -0.02157890982925892, -0.19658386707305908, 0.0509493350982666, 0.009430695325136185, 0.009653807617723942, -0.007030663080513477, 0.0342196524143219, 0.03720593824982643, 0.03694222867488861, -0.03585081547498703, -0.020497890189290047, 0.032465070486068726, 0.04269053786993027, 0.009245691820979118, -0.02329138293862343, -0.04654506966471672, 0.026467453688383102, -0.028389139100909233, 0.004360678140074015, -0.02425551228225231, 0.02561618573963642, 0.00149148132186383, -0.025398647412657738, 0.017339635640382767, -0.03312171623110771, -0.02196670137345791, -0.04178936034440994, 0.025631152093410492, 0.053651221096515656, 0.05196504667401314, -0.023839449509978294, 0.02451653778553009, 0.025781167671084404, -0.0050826724618673325, -0.13933324813842773, 0.08645482361316681, 0.03717675060033798, 0.008972934447228909, -0.021844172850251198, -0.009227823466062546, -0.02334587275981903, 0.09349074959754944, -0.026265259832143784, -0.0008211656822822988, -0.0086788609623909, 0.05761086568236351, 0.0062800208106637, -0.011531617492437363, 0.007695711683481932, 0.031593240797519684, 0.02083333395421505, -0.01895284280180931, -0.05520343407988548, 0.0044424948282539845, -0.06226377189159393, -0.009526102803647518, -0.0737486481666565, 0.014274505898356438, 0.010705395601689816, 0.08654090017080307, 0.0033778815995901823, 0.018195757642388344, -0.007753306068480015, -0.02185884863138199, 0.03931770846247673, -0.008750086650252342, -0.09655682742595673, 0.0019243693677708507, 0.01127408817410469, 0.007307749707251787, -0.019322387874126434, 0.42998117208480835, 0.008642948232591152, -0.03040209598839283, 0.04290004447102547, -0.008320092223584652, 0.0262514166533947, 0.03773562237620354, 0.019493035972118378, -0.004142510239034891, 0.03293413296341896, 0.014348452910780907, 0.016863977536559105, -0.0042712995782494545, 0.006498582661151886, -0.06165933981537819, 0.06258263438940048, 0.016637159511446953, -0.004435195587575436, 0.014545805752277374, -0.02183833159506321, 0.004106384702026844, -0.056332532316446304, -0.010902400128543377, 0.03688935562968254, 0.01577170006930828, 0.017992712557315826, -0.03718225657939911, 0.03418269380927086, 0.03763643279671669, 0.012512549757957458, 0.011204245500266552, 0.031059889122843742, -0.03339553624391556, -0.03845822438597679, 0.0022166387643665075, 0.0011151977814733982, 0.03907473012804985, 0.031350549310445786, -0.04961394518613815, -0.030861807987093925, 0.019126031547784805, -0.022463927045464516, -0.014408652670681477, 0.04093826934695244, -0.02754533477127552, -0.013179564848542213, 0.09333674609661102, 0.01447098609060049, -0.028896525502204895, -0.04214732348918915, -0.03976358845829964, 0.00022426342184189707, 0.017734672874212265, 0.012166856788098812, -0.056080956012010574, -0.007432570680975914, 0.011484851129353046, 0.07570651173591614, 0.0008771559223532677, -0.0704035609960556, 0.02008463256061077, 0.005284307524561882, -0.0630706399679184, -0.03327210992574692, 0.07385886460542679, 0.03836151957511902, -0.12479354441165924, 0.0002862128894776106, 0.03286132216453552, 0.03663964942097664, -0.06307587772607803, -0.02425317093729973, 0.01809903234243393, -0.040403418242931366, -0.03179372847080231, 0.0303102545440197, -0.049244266003370285, 0.0011760302586480975, 0.025033872574567795, 0.007822566665709019, -0.016476919874548912, -0.03277890011668205, 0.005106575787067413, -0.03222508728504181, -0.012742474675178528, -0.042837608605623245, -0.07182334363460541, -0.07411561906337738, 0.001489246147684753, -0.056854214519262314, -0.023673661053180695, -0.04252659156918526, 0.014946949668228626, -0.09570363909006119, 0.06232583150267601, -0.00005303158104652539, -0.008365768939256668, -0.009606623090803623, 0.014112217351794243, -0.028784101828932762, -0.0239776112139225, -0.0086005087941885, 0.06059407442808151, -0.05381394550204277, 0.00906558521091938, -0.07216079533100128, 0.011800626292824745, 0.03291204571723938, -0.0017322464846074581, 0.03979261964559555, 0.037444084882736206, -0.010293005965650082, -0.0016998442588374019, 0.030712787061929703, 0.03239426389336586, -0.04667394980788231, -0.031007977202534676, -0.012363454326987267, 0.03425794839859009, 0.04196574166417122, 0.0421268567442894, -0.003768644295632839, 0.029321521520614624, -0.013659919612109661, -0.35084229707717896, -0.02626122161746025, -0.015053545124828815, 0.012756871059536934, 0.03809482231736183, -0.037016626447439194, 0.053344741463661194, -0.00486443005502224, -0.0020678529981523752, -0.00771110225468874, 0.10149914771318436, -0.049270015209913254, 0.027102036401629448, -0.04518868401646614, -0.02554435282945633, 0.04709978401660919, -0.017472535371780396, 0.005912715569138527, -0.018080558627843857, 0.007569874171167612, -0.026061207056045532, -0.0252298004925251, 0.00935546774417162, 0.020032815635204315, -0.0029999129474163055, 0.001532415859401226, 0.10814294219017029, 0.03783557191491127, 0.0923016220331192, -0.03688725456595421, 0.05585044249892235, 0.04007144644856453, 0.01333216018974781, -0.14552266895771027, -0.0504959374666214, 0.03860781341791153, 0.028916342183947563, 0.012266809120774269, 0.03629733622074127, 0.002038464415818453, -0.04965109005570412, 0.024676663801074028, -0.04343607276678085, -0.08086515218019485, -0.036552395671606064, 0.013426528312265873, 0.0028818415012210608, -0.021243007853627205, -0.03097376599907875, 0.03529242426156998, 0.012287861667573452, 0.014886419288814068, -0.017827581614255905, 0.019798777997493744, 0.015782952308654785, -0.03693697974085808, -0.030543288215994835, -0.03128233551979065, 0.040068525820970535, -0.0013549168361350894, 0.0406050868332386, 0.06699280440807343, 0.027050791308283806, -0.10378813743591309, -0.013514489866793156, 0.0022925715893507004, 0.008767969906330109, 0.01622362993657589, 0.08852367103099823, -0.025305479764938354, 0.005065284203737974, 0.07047580927610397, -0.013366513885557652, 0.030495356768369675, 0.007781322114169598, -0.01759016513824463, -0.0177596602588892, 0.007714730687439442, -0.03617294505238533, -0.000826254254207015, 0.04453979432582855, -0.029318084940314293, 0.052745744585990906, -0.036993809044361115, 0.010127618908882141, 0.07407592982053757, 0.010143210180103779, -0.030436059460043907, 0.05812560394406319, 0.012143353000283241, 0.0006509008235298097, -0.03813312202692032, -0.014205033890902996, -0.04542766138911247, 0.05010027065873146, -0.00025630369782447815, -0.2535512447357178, 0.012262988835573196, 0.03482045233249664, 0.06824198365211487, -0.02013310417532921, 0.014884699136018753, 0.04465627670288086, -0.04653146490454674, -0.02257545478641987, 0.031847551465034485, 0.03275888040661812, 0.028240730985999107, -0.03188930079340935, -0.004001921974122524, 0.024641400203108788, 0.00986599363386631, 0.0473046712577343, 0.020742803812026978, 0.013450159691274166, -0.011373366229236126, -0.023262465372681618, -0.021065475419163704, 0.1413666009902954, 0.010170428082346916, 0.0011774140875786543, 0.032202500849962234, -0.0037870798259973526, 0.050046905875205994, 0.0627594068646431, 0.032959312200546265, 0.005293630994856358, 0.005223249550908804, 0.003619797993451357, -0.008725776337087154, 0.023990068584680557, -0.02690318040549755, -0.01215334888547659, 0.023358536884188652, 0.04420051723718643, 0.0036190315149724483, -0.04096188023686409, 0.01635005511343479, -0.020376749336719513, 0.03859808295965195, 0.04859118536114693, -0.045469410717487335, 0.013737264089286327, -0.027632378041744232, -0.012714861892163754, -0.013822502456605434, -0.03128557279706001, -0.05524245649576187, 0.01288923155516386, 0.012615066021680832, 0.04541561380028725, 0.039717014878988266, -0.010174928233027458, -0.026624830439686775, 0.019806096330285072, 0.03457656875252724, 0.011054306291043758, -0.06367453187704086, 0.11965266615152359, -0.002757879439741373, 0.018703456968069077 ]
[ 0.03446207940578461, 0.03437705338001251, -0.006992718204855919, 0.021172581240534782, 0.024080360308289528, 0.017357807606458664, -0.027487250044941902, 0.0040603624656796455, -0.02930624410510063, 0.001334957662038505, 0.02289690636098385, -0.006270122714340687, 0.01378650963306427, -0.03809179738163948, 0.002823557937517762, -0.0070647490210831165, 0.04548095166683197, 0.029411956667900085, 0.06871677935123444, 0.011696502566337585, -0.038134586066007614, 0.056767333298921585, 0.004694764968007803, -0.05292367562651634, 0.023629426956176758, 0.010394055396318436, -0.02625960484147072, 0.008614199236035347, 0.03207290545105934, -0.11298386007547379, -0.030351275578141212, -0.012503914535045624, -0.003579389303922653, 0.03947094827890396, 0.014127031899988651, -0.03248794004321098, -0.018965287134051323, 0.01353718526661396, -0.0741061195731163, -0.03403056412935257, -0.00487156305462122, -0.020752375945448875, -0.017580579966306686, 0.03594091907143593, -0.026263833045959473, 0.011952212080359459, 0.027970928698778152, -0.01480244193226099, 0.020546266809105873, 0.009790330193936825, -0.0457242950797081, 0.005679890047758818, 0.03524168208241463, 0.03639713674783707, -0.004429517313838005, -0.021787121891975403, -0.004395439755171537, -0.0013690699124708772, 0.0007697032415308058, -0.08455082774162292, 0.005037486087530851, 0.013020571321249008, -0.03355725482106209, -0.008352776058018208, 0.0022792615927755833, -0.012194937095046043, 0.026303021237254143, 0.001186537672765553, -0.05670613795518875, -0.01940309815108776, 0.015253671444952488, 0.07072117179632187, -0.05092334374785423, 0.008590462617576122, -0.010943109169602394, 0.012021235190331936, -0.008432122878730297, 0.0016883889911696315, 0.06492462754249573, -0.011245517060160637, -0.03726201131939888, 0.03389644995331764, -0.06853552907705307, 0.00913645513355732, -0.020427845418453217, 0.013287700712680817, -0.017044369131326675, 0.016209939494729042, 0.009560571983456612, -0.006083340849727392, -0.021409757435321808, 0.020473388954997063, -0.022056546062231064, -0.008185145445168018, -0.08175325393676758, -0.024227794259786606, -0.05443549156188965, -0.030425578355789185, 0.0008304563816636801, 0.7424181699752808, -0.028326600790023804, 0.022744808346033096, 0.0008393671014346182, -0.01571439951658249, 0.03252428397536278, 0.045551348477602005, 0.09557870775461197, -0.00860937312245369, -0.0394643135368824, -0.024067070335149765, 0.02598157711327076, 0.034478362649679184, 0.023489566519856453, -0.030618401244282722, 0.03446009382605553, 0.026752879843115807, 0.037568241357803345, 0.04905407875776291, -0.025796964764595032, -0.0054229204542934895, 0.021726811304688454, -0.019680887460708618, 0.023856589570641518, -0.014190897345542908, -0.07518686354160309, -0.19459599256515503, 0.006197547540068626, -7.505894363881122e-33, -0.035838887095451355, -0.004641068633645773, 0.0249067060649395, 0.010857072658836842, 0.04018184915184975, -0.01817011833190918, 0.01056607160717249, 0.0010521418880671263, -0.049912985414266586, -0.025257397443056107, -0.039573147892951965, -0.046329524368047714, 0.059085946530103683, -0.024833671748638153, 0.038030195981264114, -0.025638829916715622, 0.03608936816453934, 0.03367399424314499, 0.005449110642075539, -0.002719883108511567, -0.0033363401889801025, 0.045737508684396744, 0.04386956989765167, -0.017127426341176033, 0.003993951715528965, 0.0016099263448268175, 0.04210417717695236, 0.002070205518975854, 0.011315739713609219, -0.049383629113435745, -0.05350412428379059, 0.052469056099653244, 0.01049780659377575, -0.05152221396565437, -0.045960329473018646, -0.03894840180873871, -0.02896810509264469, -0.034851524978876114, -0.06187598407268524, -0.03334202617406845, -0.032276544719934464, -0.001855018432252109, -0.03503280133008957, -0.01139447744935751, -0.0393218956887722, 0.028498157858848572, 0.002745444420725107, 0.04370465502142906, -0.0009176593157462776, 0.04627621918916702, 0.010237176902592182, -0.01626228727400303, -0.03540012985467911, -0.0016204359708353877, 0.021867237985134125, 0.03216242790222168, 0.01509120687842369, 0.03323151543736458, -0.01787848211824894, 0.012782481499016285, 0.020100582391023636, 0.01840946078300476, 0.019423846155405045, 0.04649084061384201, -0.03900686651468277, 0.004373468458652496, -0.021198417991399765, -0.04037309065461159, -0.004437880124896765, 0.01970130018889904, -0.06530478596687317, 0.02349354699254036, -0.0721970945596695, -0.053610049188137054, 0.0038966683205217123, -0.055165551602840424, 0.0007967334240674973, -0.04235769063234329, 0.01760048232972622, 0.021320931613445282, 0.005920727271586657, -0.029379796236753464, -0.057260122150182724, -0.007322473917156458, -0.0695851668715477, -0.016959594562649727, 0.021455908194184303, 0.03117723949253559, -0.010032987222075462, -0.050155431032180786, 0.03876728191971779, 0.02104143798351288, 0.04849296808242798, -0.005215439014136791, -0.01880262978374958, 7.36645942803849e-33, 0.013923521153628826, -0.0027678038459271193, 0.011100664734840393, 0.023069094866514206, 0.011830249801278114, 0.041013434529304504, 0.027622772380709648, -0.006173049099743366, -0.09318356215953827, 0.02561824396252632, -0.03652380779385567, 0.013400017283856869, -0.04723118618130684, -0.007267426699399948, 0.07580693066120148, 0.05841246619820595, 0.04946845397353172, -0.008259614929556847, 0.035095106810331345, -0.012761365622282028, -0.03771764412522316, 0.05805787071585655, 0.02642742730677128, -0.003271597670391202, -0.0017241339664906263, 0.04994600638747215, 0.01583150587975979, 0.0347544401884079, -0.022280780598521233, 0.012878529727458954, 0.0116202961653471, 0.03247436508536339, -0.012045403942465782, -0.04565294831991196, 0.04270848259329796, 0.020506221801042557, 0.05240406468510628, 0.006390735972672701, 0.0019701430574059486, 0.0071915737353265285, -0.008453786373138428, 0.018176434561610222, -0.058823369443416595, 0.02222798764705658, -0.01980639062821865, 0.027565987780690193, -0.0022248858585953712, 0.000026641846488928422, -0.009127690456807613, -0.0014997278340160847, 0.021321168169379234, -0.029393114149570465, 0.0072756377048790455, 0.015905937179923058, 0.003085640724748373, -0.014590583741664886, -0.053892046213150024, 0.05439520254731178, 0.07412413507699966, -0.017263200134038925, -0.002550344215705991, 0.04458925873041153, 0.0253030713647604, 0.04600568860769272, -0.046842630952596664, -0.018950937315821648, 0.010950522497296333, 0.025231124833226204, -0.008710664696991444, 0.0041261394508183, -0.00850274320691824, -0.019732287153601646, -0.02080642804503441, 0.03149283304810524, 0.02778182178735733, 0.004004284273833036, 0.03025887720286846, 0.004473951179534197, -0.05606648698449135, 0.034444134682416916, -0.003185417503118515, -0.0033806341234594584, -0.0019655742216855288, 0.040004484355449677, -0.03231272101402283, 0.0187078807502985, -0.04544338211417198, 0.016550330445170403, 0.047222014516592026, 0.04494253918528557, -0.04734721779823303, -0.03642934933304787, -0.018351130187511444, 0.02360357530415058, -0.06262468546628952, -1.2371691227031079e-8, -0.016642732545733452, -0.0200478658080101, 0.0014115958474576473, 0.039042383432388306, -0.02755911462008953, 0.03787671774625778, -0.013847215101122856, 0.0006429554778151214, 0.018109606578946114, 0.0426362119615078, -0.03499920666217804, -0.034045182168483734, 0.008086818270385265, 0.032782942056655884, 0.03522086516022682, 0.05006048455834389, 0.012040911242365837, 0.017902886494994164, 0.03322242572903633, 0.0005398259381763637, 0.037477053701877594, 0.060090482234954834, 0.019354388117790222, -0.012263854034245014, 0.022675402462482452, 0.02202884666621685, -0.02296634577214718, -0.09974660724401474, -0.05324053764343262, 0.020591171458363533, 0.04873238876461983, 0.0036812236066907644, -0.05244846269488335, 0.010332015343010426, -0.056219588965177536, -0.005851789377629757, -0.0020651540253311396, 0.02303474023938179, 0.03813619539141655, 0.016160951927304268, -0.04224047064781189, -0.029192429035902023, 0.03209098055958748, -0.047670211642980576, -0.02591964229941368, -0.008604474365711212, -0.008455516770482063, 0.00944584421813488, -0.014968469738960266, -0.032361194491386414, 0.013911478221416473, -0.006787227466702461, -0.017974598333239555, 0.033954501152038574, -0.0022448510862886906, -0.000925289758015424, 0.04892049729824066, -0.009571227245032787, 0.010854622349143028, -0.05168026313185692, 0.024236710742115974, 0.026622191071510315, -0.05214760825037956, -0.004483959637582302 ]
creating-a-samba-share-between-ubuntu-and-mac-os-x
https://markhneedham.com/blog/2012/06/24/creating-a-samba-share-between-ubuntu-and-mac-os-x
false
2012-06-24 23:32:17
neo4j: Handling optional relationships
[ "neo4j", "cypher" ]
[ "neo4j" ]
On my ThoughtWorks neo4j there are now two different types of relationships between people nodes - they can either be colleagues or one can be the http://www.markhneedham.com/blog/2012/06/21/visualising-a-neo4j-graph-using-gephi/[sponsor of the other]. The graph looks like this: image::{{<siteurl>}}/uploads/2012/06/sponsors-colleagues.png[Sponsors colleagues,392] I wanted to get a list of all the sponsor pairs but also have some indicator of whether the two people have worked together. I started off by getting all of the sponsor pairs: [source,text] ---- START n = node(*) MATCH n-[r:sponsor_of]->n2 RETURN n.name, n2.name ---- I managed to narrow that down to the people who sponsored someone that they'd worked with like so: [source,text] ---- START n = node(*) MATCH n-[r:sponsor_of]->n2, n-[r2:colleagues]->c WHERE c = n2 RETURN n.name, n2.name ---- But it wasn't quite what I wanted since I'd now lost all the sponsor pairs who didn't work together. My next attempt was to remove the WHERE clause and try the following which isn't even a valid cypher query: [source,text] ---- START n = node(*) MATCH n-[r:sponsor_of]->n2, n-[r2:colleagues]->c RETURN n.name, n2.name, n2 IN [c] ---- I was struggling so I decided to draw out the above diagram and then work backwards from the type of output which I expected if I had the correct query. The output I wanted was like this: [source,text] ---- PersonA | PersonB | Sponsor Relationship | Colleague Relationship PersonA | PersonC | Sponsor Relationship | - ---- Once I had written it out on paper it became clear that what I needed to do was find all the sponsor pairs and then optionally look for a colleagues relationship between the pair: [source,text] ---- START n = node(*) MATCH n-[r:sponsor_of]->n2-[r2?:colleagues]->n RETURN n.name, n2.name, r, r2 ---- The '?' before the ':' in the colleagues relationship indicates that it's optional and will still return the traversal even if that relationship doesn't exist. If we run that query in the console it does exactly what we want: [source,text] ---- ==> +--------------------------------------------------------------------------------------+ ==> | n.name | n2.name | r | r2 | ==> +--------------------------------------------------------------------------------------+ ==> | "PersonA" | "PersonB" | :sponsor_of[261255] {} | :colleagues[217292]| ==> | "PersonA" | "PersonC" | :sponsor_of[261252] {} | <null> | ==> +--------------------------------------------------------------------------------------+ ----
null
null
[ 0.02050485461950302, 0.0027687344700098038, -0.01222942303866148, 0.0315970815718174, 0.08266189694404602, -0.00513352220878005, 0.02137960121035576, 0.030384141951799393, 0.02877594344317913, -0.01021727453917265, 0.0023885807022452354, 0.0011969449697062373, -0.06450080126523972, 0.015371967107057571, 0.002660732716321945, 0.06096998602151871, 0.06091919168829918, 0.03924281895160675, -0.0031094641890376806, -0.030927665531635284, 0.02474944107234478, 0.05424091964960098, -0.01206901203840971, 0.0362698920071125, 0.04259364679455757, 0.023973574861884117, 0.011389180086553097, -0.0056953695602715015, -0.02670295536518097, 0.012753810733556747, 0.05311988666653633, -0.00016334844985976815, 0.021776504814624786, -0.025370098650455475, 0.027143288403749466, -0.000006522614512505243, -0.046093426644802094, 0.00858919508755207, 0.00593338068574667, -0.013663368299603462, -0.06899348646402359, 0.037062324583530426, -0.026484902948141098, 0.008704890497028828, -0.035743795335292816, 0.010605289600789547, -0.0688822790980339, 0.04471262916922569, 0.014681748114526272, 0.02093440108001232, -0.09200533479452133, 0.006402246654033661, 0.0014578120317310095, 0.023930655792355537, -0.01966099999845028, 0.035364530980587006, 0.014541019685566425, -0.05016566440463066, 0.04201791062951088, -0.02710631862282753, -0.015206418000161648, 0.0023662662133574486, 0.0009712463361211121, 0.041835717856884, -0.0017121474957093596, -0.053517021238803864, 0.02174479141831398, 0.054065149277448654, -0.03453991189599037, 0.0024151995312422514, -0.011363386176526546, 0.011744637042284012, 0.00031762669095769525, -0.0009302208200097084, 0.005281256511807442, -0.01579950749874115, -0.006089926231652498, 0.04223945736885071, 0.04389052838087082, 0.031847674399614334, -0.009633965790271759, 0.03962787985801697, -0.005117831286042929, 0.017871715128421783, -0.006276791449636221, -0.018729085102677345, -0.009753732942044735, -0.05675237625837326, -0.0534733384847641, 0.024782376363873482, -0.01376039907336235, -0.06572253257036209, -0.02049199678003788, 0.009419802576303482, -0.034113261848688126, 0.008009093813598156, 0.012442206963896751, 0.003057352500036359, 0.004267978947609663, -0.020317992195487022, -0.015444161370396614, -0.03913996368646622, -0.01530076190829277, 0.019410619512200356, -0.0641104057431221, -0.005551403854042292, -0.015454305335879326, -0.012339960783720016, 0.016560126096010208, 0.0004525859549175948, -0.05977463349699974, -0.011994931846857071, -0.014060122892260551, 0.0345689095556736, -0.08015593886375427, 0.06530971080064774, 0.025324804708361626, -0.024596165865659714, -0.03477567806839943, 0.022593047469854355, 0.021812114864587784, 0.015861324965953827, 0.01353050023317337, 0.07857059687376022, -0.020236611366271973, 0.055127210915088654, -0.022811779752373695, 0.038022805005311966, -0.061706479638814926, -0.0705646350979805, -0.013386048376560211, 0.060245759785175323, -0.03570248559117317, 0.029573004692792892, -0.002054395154118538, -0.06423784047365189, -0.006080300081521273, 0.01544769573956728, 0.05251077190041542, 0.033726274967193604, 0.004490233026444912, -0.03702778369188309, 0.010471821762621403, 0.0029290933161973953, 0.030554236844182014, 0.013344858773052692, -0.02755068428814411, -0.016812697052955627, -0.029252590611577034, 0.004370388109236956, 0.004310694523155689, 0.004947930574417114, 0.06320510059595108, -0.015533111058175564, 0.030816173180937767, 0.11118128150701523, 0.05624854937195778, 0.017989546060562134, -0.024165483191609383, 0.005862093530595303, 0.040890421718358994, 0.014916645362973213, 0.001922157360240817, 0.08873213827610016, 0.0027842731215059757, -0.01945319212973118, -0.01252555102109909, 0.058341000229120255, -0.013710721395909786, 0.026109905913472176, -0.03192463517189026, -0.07056480646133423, 0.05669252201914787, -0.057353194802999496, -0.009192251600325108, 0.04729796200990677, 0.07914678007364273, 0.015195515006780624, 0.021673228591680527, 0.005156004335731268, -0.0735064372420311, 0.07490463554859161, 0.02203400619328022, 0.0005945865996181965, -0.0003597741306293756, 0.017054935917258263, 0.060906726866960526, 0.05209890007972717, -0.016300534829497337, 0.033434782177209854, -0.09097620099782944, -0.07054224610328674, -0.01410969439893961, -0.031481221318244934, 0.04486916586756706, -0.03559107333421707, 0.01938553713262081, 0.029768921434879303, 0.015523001551628113, 0.022720297798514366, -0.0056715174578130245, -0.0248727984726429, 0.02068011276423931, -0.029707837849855423, -0.07070481777191162, 0.07549670338630676, 0.020514074712991714, -0.042930856347084045, -0.06213006749749184, 0.0234671700745821, -0.018201639875769615, 0.013123666867613792, 0.023387843742966652, -0.027193065732717514, 0.0519234724342823, 0.018600335344672203, 0.03852095082402229, -0.02292647399008274, 0.029540566727519035, -0.04645795002579689, 0.03850637003779411, 0.014883353374898434, -0.008277549408376217, -0.006204479373991489, -0.001706247334368527, 0.12100843340158463, 0.05803052708506584, -0.025207191705703735, -0.07085024565458298, 0.035487912595272064, 0.01282459031790495, -0.002784424228593707, 0.03957493603229523, -0.040292806923389435, -0.00954226404428482, -0.01609741896390915, -0.02901238575577736, -0.030634282156825066, 0.014784310013055801, -0.042636238038539886, -0.001366314711049199, 0.0587492361664772, -0.03899287059903145, 0.0469626858830452, -0.0061447713524103165, 0.0030253592412918806, -0.0115575660020113, -0.03257816284894943, -0.04003170505166054, 0.06454629451036453, 0.019583802670240402, -0.006390824913978577, 0.049861181527376175, -0.029620490968227386, -0.026262087747454643, -0.021768661215901375, -0.0034209203440696, 0.03688190132379532, 0.05317104607820511, 0.02983476221561432, -0.014740577898919582, 0.03997351601719856, -0.04838070645928383, 0.019856449216604233, -0.010571347549557686, -0.03389030322432518, -0.05014650896191597, -0.01797139272093773, 0.006587655283510685, -0.0035404639784246683, 0.022186893969774246, -0.04129323735833168, 0.02020566165447235, -0.00009738371591083705, 0.021589655429124832, -0.0029359180480241776, 0.026415634900331497, 0.0019225662108510733, 0.02803194895386696, -0.03712470084428787, -0.00870656967163086, 0.03880545496940613, -0.05970710515975952, -0.05661791190505028, -0.018976079300045967, -0.06706277281045914, 0.029515037313103676, -0.037266217172145844, -0.02318638004362583, -0.001467506866902113, 0.046236552298069, 0.06386442482471466, 0.012355908751487732, -0.011492590419948101, 0.06330213695764542, 0.03446643799543381, 0.03253817930817604, 0.028698153793811798, -0.003611682215705514, 0.05621161684393883, 0.007393969222903252, 0.047325558960437775, 0.054934557527303696, -0.03364436700940132, 0.008285287767648697, -0.045763444155454636, 0.026972513645887375, -0.03335191309452057, -0.253591924905777, 0.05875528231263161, -0.042349785566329956, -0.06421242654323578, 0.021544700488448143, -0.06274153292179108, 0.013585354201495647, -0.03594471514225006, -0.0229689572006464, -0.01721186563372612, -0.008635212667286396, -0.027921412140130997, -0.008018163032829762, 0.027045132592320442, 0.012521779164671898, 0.011498772539198399, -0.01775616966187954, -0.06646719574928284, -0.004460284952074289, 0.03231588751077652, -0.0005328388069756329, -0.033422429114580154, -0.038095612078905106, 0.00857897475361824, 0.04250427708029747, 0.03865216672420502, -0.090794138610363, 0.009899768978357315, -0.05790664628148079, -0.03742165490984917, -0.004019871819764376, -0.01340427901595831, 0.0045721265487372875, 0.015320404432713985, -0.023073019459843636, -0.0332847498357296, 0.03294473513960838, -0.008269828744232655, 0.0025187188293784857, 0.031020045280456543, -0.060653965920209885, -0.054096706211566925, 0.002807775279507041, -0.021215902641415596, 0.08460339158773422, 0.006379071157425642, -0.08046030253171921, -0.02852729521691799, -0.02103566750884056, 0.06402409076690674, -0.03308967128396034, -0.021283302456140518, 0.006100357975810766, 0.020071737468242645, -0.0012146808439865708, -0.03399810940027237, -0.0033920377027243376, -0.021651679649949074, -0.060506246984004974, -0.029437338933348656, -0.027550308033823967, -0.050726376473903656, 0.024556534364819527, -0.05991993099451065, -0.00038659825804643333, -0.044256310909986496, -0.0729716420173645, -0.03194568678736687, 0.040829550474882126, -0.0018062774324789643, -0.03407443314790726, 0.01755641959607601, -0.035507287830114365, -0.11292538791894913, -0.027534635737538338, -0.03056805208325386, 0.020825335755944252, 0.009826957248151302, -0.01458832062780857, 0.03731760382652283, -0.023556414991617203, -0.04917072132229805, -0.024973267689347267, 0.026623830199241638, 0.04093841463327408, 0.020656155422329903, 0.012786026112735271, 0.00007240810373332351, -0.0440235435962677, 0.0192400049418211, 0.06839678436517715, 0.0025686314329504967, -0.03986965864896774, -0.0037203223910182714, 0.014492425136268139, 0.04700177535414696, 0.001299436902627349, -0.01632378064095974, 0.008110378868877888, 0.039743658155202866, 0.04090661182999611, -0.029688557609915733, -0.005664410535246134, 0.010238041169941425, -0.030022362247109413, -0.0012059217551723123, -0.046237312257289886, 0.0002171607775380835, 0.0170938428491354, 0.015332038514316082, -0.0006536028231494129, -0.00872432254254818, 0.02101934887468815, -0.036329809576272964, -0.031800951808691025, -0.019240910187363625, 0.01740497350692749, 0.027495386078953743, 0.03498883172869682, -0.01698378473520279, -0.057116709649562836, 0.04624198004603386, 0.025450989603996277, -0.0038523580878973007, -0.07656646519899368, -0.01744874194264412, -0.04121360555291176, -0.03459738940000534, 0.006496211513876915, 0.01637917198240757, -0.017491700127720833, 0.021041737869381905, 0.0310447309166193, -0.03875752165913582, 0.04349500313401222, -0.00435298727825284, -0.022182708606123924, -0.021823180839419365, -0.012454546056687832, -0.003986155614256859, -0.012307507917284966, -0.0005399517831392586, -0.009027384221553802, 0.029847532510757446, 0.0199662446975708, -0.006668977905064821, -0.017280755564570427, -0.0208906177431345, 0.014427108690142632, 0.012964083813130856, -0.01740317791700363, -0.018195971846580505, -0.010023104958236217, -0.03512560576200485, -0.0005933554493822157, 0.00011348068073857576, 0.04547305032610893, -0.005411203950643539, -0.022959351539611816, -0.018520839512348175, 0.04061386361718178, -0.06831253319978714, 0.04926660656929016, -0.0016953633166849613, 0.008345958776772022, 0.05295809730887413, -0.006557955406606197, 0.006983539089560509, -0.055493105202913284, 0.005575238261371851, 0.0009963286574929953, 0.027961531654000282, -0.03593863546848297, 0.008975984528660774, 0.010019293054938316, 0.02631211467087269, 0.013753955252468586, 0.04530321806669235, 0.017653629183769226, 0.00881514698266983, -0.022941255941987038, -0.011184346862137318, 0.012331816367805004, 0.0029029464349150658, 0.03644386678934097, 0.05149131268262863, 0.0035806528758257627, -0.0018303940305486321, -0.030032644048333168, -0.002266346476972103, 0.008852614089846611, 0.0049379547126591206, -0.048647116869688034, 0.011202899739146233, -0.03796371817588806, -0.0675748735666275, 0.019747702404856682, -0.0067321606911718845, 0.009133447892963886, 0.03488887473940849, -0.013540307991206646, 0.018225768581032753, -0.022693485021591187, 0.021671418100595474, 0.06325236707925797, -0.06070336326956749, -0.01005540881305933, -0.02725553885102272, -0.0325639471411705, 0.012693843804299831, 0.04400678351521492, -0.047979727387428284, -0.03569518029689789, -0.02346844971179962, 0.019310344010591507, -0.05416696146130562, -0.03740280121564865, -0.026033597066998482, -0.00501632085070014, 0.01782504841685295, 0.052652984857559204, 0.008943411521613598, 0.010018479079008102, -0.007319935131818056, 0.012507987208664417, 0.048553530126810074, -0.029939085245132446, -0.0008013345650397241, 0.00207108655013144, -0.017665795981884003, 0.00258600409142673, -0.016677500680088997, 0.036594457924366, 0.015039191581308842, -0.03066697157919407, -0.008429525420069695, -0.06250426173210144, 0.006684425752609968, 0.0038176490925252438, 0.04147253558039665, 0.0028458815068006516, 0.0015883228043094277, -0.040199991315603256, -0.008202601224184036, -0.01729555055499077, 0.004808149300515652, 0.015892328694462776, -0.019382620230317116, -0.01472072396427393, 0.023588918149471283, 0.005313558969646692, 0.04328449070453644, 0.002120948163792491, -0.020808463916182518, 0.06570971012115479, -0.011833581142127514, -0.06935993582010269, 0.004124184139072895, -0.04437023028731346, -0.016356592997908592, 0.015160786919295788, 0.008651246316730976, -0.04407448694109917, 0.04620000347495079, 0.05517935752868652, 0.02860112488269806, 0.03826580569148064, 0.0035570040345191956, 0.020207766443490982, -0.028285281732678413, -0.025700140744447708, -0.08391085267066956, 0.00024820203543640673, 0.025826210156083107, -0.0023098611272871494, 0.0015221524517983198, -0.01602231152355671, -0.03323250636458397, 0.0022727076429873705, -0.0698937252163887, -0.022885354235768318, 0.03127409145236015, -0.019562575966119766, 0.05458430200815201, 0.012351512908935547, -0.04213454946875572, 0.0111086992546916, 0.03268423303961754, -0.028789464384317398, -0.052952077239751816, -0.03641054779291153, 0.053626492619514465, -0.03712799772620201, 0.027393601834774017, 0.0015430650673806667, -0.020669184625148773, 0.0544285774230957, 0.030137447640299797, 0.02920370362699032, 0.05934007465839386, -0.027223672717809677, 0.02809201367199421, 0.03330348804593086, -0.004443600308150053, -0.013465369120240211, 0.058629460632801056, -0.038380216807127, -0.05931148678064346, 0.042932141572237015, 0.0029217021074146032, -0.009922228753566742, -0.04735779017210007, 0.06843911111354828, 0.0010806603822857141, -0.034240517765283585, -0.04352685809135437, 0.021291682496666908, -0.03395995870232582, -0.014864340424537659, -0.03787388280034065, 0.011620652861893177, -0.03916575759649277, 0.0523831844329834, -0.02143566496670246, 0.027751313522458076, 0.05480760708451271, 0.005069340579211712, 0.016871821135282516, -0.010011311620473862, 0.08608204126358032, 0.09069506824016571, 0.052934370934963226, 0.0285230353474617, 0.07244577258825302, 0.004546477925032377, -0.026912065222859383, -0.006605212111026049, -0.01968122087419033, -0.019125191494822502, 0.03500033915042877, 0.010898929089307785, 0.05814594775438309, -0.028626658022403717, 0.06253896653652191, 0.006921728607267141, -0.0047675808891654015, 0.0001301586744375527, -0.02513851784169674, 0.02208317629992962, 0.08546281605958939, 0.023922787979245186, 0.057880911976099014, -0.04033674672245979, -0.03009682521224022, 0.014828326180577278, -0.014288902282714844, 0.015512922778725624, 0.04128248989582062, -0.03557731583714485, 0.014560670591890812, 0.007909839041531086, 0.03635619580745697, 0.09767811745405197, -0.018351804465055466, -0.032629795372486115, 0.0014045824063941836, 0.0021059424616396427, -0.009329291991889477, 0.013551624491810799, 0.0009099881281144917, -0.03312240168452263, -0.02942374348640442, -0.044008899480104446, -0.029563160613179207, -0.03757767006754875, -0.025524480268359184, 0.00602352898567915, -0.031610067933797836, 0.008420834317803383, 0.004909390117973089, 0.011767961084842682, -0.02570098638534546, -0.03404412791132927, -0.03284496068954468, -0.0703347772359848, -0.07456662505865097, -0.0011288250098004937, -0.0039119659923017025, 0.007063183002173901, -0.027584027498960495, -0.0009260874940082431, -0.02363431081175804, 0.004445010796189308, 0.05801726132631302, -0.04594263806939125, 0.019808389246463776, 0.0009736401261761785, 0.04131760075688362, 0.02469630353152752, 0.03313516825437546, 0.06685475260019302, 0.000785100506618619, 0.021170349791646004, -0.017181208357214928, 0.012048083357512951, 0.03843280300498009, 0.006411431357264519, -0.0005203254404477775, -0.08045753091573715, -0.02412073314189911, 0.02062135376036167, -0.034342918545007706, -0.07842934131622314, 0.003833820577710867, 0.04212407022714615, 0.009144352748990059, 0.015322534367442131, 0.01017402857542038, -0.01185820996761322, -0.0009912148816511035, 0.011559727601706982, -0.006536449771374464, -0.006286915857344866, 0.030866852030158043, -0.025910979136824608, 0.07909203320741653, 0.03566180542111397, -0.037409231066703796, 0.0020198882557451725, -0.04187959432601929, 0.015299934893846512, -0.010269770398736, -0.04786888509988785, -0.03504841402173042, -0.03519599512219429, -0.08523090183734894, -0.028136281296610832, -0.004274871200323105, -0.0320286750793457, -0.0411747470498085, 0.004331991076469421, 0.01662604697048664, -0.02691071666777134, 0.03899111971259117, -0.04365178570151329, 0.04140179604291916, -0.011787615716457367, -0.006899375468492508, -0.018217142671346664, 0.00758076598867774, -0.004755521193146706, 0.017640501260757446, 0.011430767364799976, -0.05496905744075775, 0.003973846789449453, -0.03323129564523697, 0.020814144983887672, 0.016036231070756912, 0.02932334877550602, 0.01972801238298416 ]
[ -0.058174215257167816, 0.022426648065447807, -0.06794514507055283, -0.016626369208097458, 0.061045579612255096, -0.03388846293091774, 0.015289565548300743, 0.013024214655160904, 0.014305608347058296, -0.04228804260492325, 0.03850235044956207, -0.04163753241300583, 0.03212986886501312, -0.02976332977414131, 0.05818488448858261, -0.009087460115551949, -0.029994381591677666, -0.044698189944028854, -0.029747722670435905, 0.0624825656414032, -0.04727161303162575, -0.07052028179168701, -0.03229111433029175, -0.021146278828382492, 0.03534156456589699, 0.055847734212875366, 0.04840827360749245, -0.01836436614394188, 0.007959580048918724, -0.18198838829994202, -0.001250505680218339, 0.051028840243816376, 0.01526657398790121, 0.035167161375284195, 0.022586515173316002, 0.021758852526545525, 0.048493482172489166, -0.01799921691417694, 0.014116809703409672, 0.006061862222850323, 0.008892043493688107, -0.011111483909189701, -0.046327006071805954, -0.022082144394516945, 0.05669007822871208, 0.03818463534116745, -0.018975742161273956, -0.026466157287359238, -0.04909476265311241, -0.004352816846221685, -0.00401014881208539, -0.023216642439365387, -0.00245988043025136, 0.018923044204711914, 0.003304143901914358, 0.04741310700774193, 0.052947115153074265, 0.04150284081697464, 0.0066079748794436455, 0.06484132260084152, 0.0013193892082199454, 0.011337580159306526, -0.15973228216171265, 0.06431390345096588, 0.006340703461319208, 0.01477067731320858, -0.05711948871612549, -0.0027011435013264418, -0.06919487565755844, 0.08839710056781769, 0.0580153651535511, -0.024525128304958344, -0.05685538053512573, -0.0020928585436195135, -0.008238148875534534, 0.04063541069626808, -0.017313146963715553, 0.024332692846655846, 0.031841956079006195, -0.02729828655719757, -0.038601215928792953, 0.031152764335274696, -0.039805058389902115, -0.006747234612703323, -0.014402966946363449, 0.07001399248838425, -0.008362327702343464, 0.004068694077432156, -0.0006156821036711335, 0.04120025783777237, 0.005848748609423637, 0.03706583380699158, 0.028109386563301086, 0.0201236791908741, -0.09475954622030258, -0.04103612154722214, 0.015073512680828571, 0.00886332057416439, -0.008287906646728516, 0.4071875810623169, -0.006206132471561432, 0.015263124369084835, 0.08045866340398788, 0.04761001467704773, -0.015835797414183617, -0.02973892167210579, -0.007122240494936705, -0.06223815679550171, 0.04946339502930641, -0.017887432128190994, -0.0019325163448229432, -0.02072990871965885, 0.021717503666877747, -0.09550710022449493, 0.010905610397458076, 0.021203549578785896, 0.04723163694143295, 0.04317796975374222, -0.003511105664074421, -0.01111862063407898, -0.012207075022161007, 0.014761953614652157, 0.013207927346229553, 0.02361445501446724, -0.01559924054890871, 0.024022333323955536, -0.014547578990459442, 0.046456094831228256, 0.02854379452764988, 0.019000565633177757, 0.0626482293009758, 0.015037819743156433, -0.052378252148628235, 0.0355047807097435, -0.026589782908558846, 0.003471180098131299, 0.012562714517116547, -0.010423542931675911, -0.0236932635307312, 0.04850814864039421, 0.03525224328041077, -0.05300666764378548, 0.020657699555158615, 0.02043142169713974, -0.03696439042687416, 0.14700891077518463, -0.028201675042510033, -0.020605914294719696, -0.027852967381477356, 0.02119370922446251, 0.0073524946346879005, 0.042738448828458786, -0.026396170258522034, -0.0453699566423893, -0.004111538175493479, 0.012736834585666656, 0.09288900345563889, -0.015666184946894646, -0.08465443551540375, 0.023110300302505493, 0.021919095888733864, -0.03302844241261482, -0.047379717230796814, 0.07680695503950119, 0.08013927191495895, -0.15063701570034027, 0.00446684006601572, 0.014441403560340405, 0.004080560989677906, -0.08498968929052353, 0.04437585175037384, 0.024778835475444794, -0.04369384050369263, -0.0011319663608446717, 0.04534825682640076, -0.018639110028743744, -0.03983120620250702, -0.0160752534866333, 0.03644762560725212, 0.002058287151157856, -0.009688771329820156, 0.013238627463579178, -0.06486012786626816, -0.02128632739186287, -0.05722641199827194, -0.03736075758934021, -0.049103014171123505, 0.02245677448809147, -0.06000325456261635, -0.029193870723247528, -0.010288855992257595, -0.016263578087091446, -0.0702560618519783, 0.09741979092359543, -0.04248693212866783, -0.03597796708345413, -0.029588041827082634, -0.011644219979643822, -0.02030659280717373, -0.0026447921991348267, -0.02209465764462948, 0.019000930711627007, -0.027825675904750824, -0.003813971998170018, -0.07608506083488464, 0.005451082717627287, 0.05837339162826538, -0.03311367705464363, 0.08711780607700348, 0.005573062691837549, -0.03349265828728676, 0.008880391716957092, -0.04934130236506462, 0.01967611536383629, 0.01831742748618126, -0.008343962952494621, 0.009516640566289425, 0.0005599398864433169, 0.019831344485282898, 0.051763735711574554, -0.009943642653524876, -0.012003627605736256, -0.011992326937615871, -0.35369038581848145, -0.044211965054273605, -0.035730913281440735, 0.025005634874105453, -0.0001898461632663384, -0.001392945647239685, 0.023012958467006683, -0.007145988754928112, -0.008325873874127865, 0.06250304728746414, 0.07901573181152344, 0.010369513183832169, -0.03810418024659157, -0.05035359412431717, -0.006535933818668127, 0.04163879156112671, 0.008039925247430801, 0.022034645080566406, -0.03155453875660896, 0.004145268350839615, -0.008083808235824108, -0.027996834367513657, -0.003014936577528715, -0.010847698897123337, -0.008749285712838173, 0.009898551739752293, 0.11614177376031876, 0.04425792396068573, -0.016322916373610497, -0.03164583072066307, 0.017865970730781555, 0.01758352667093277, -0.030176136642694473, -0.07459007203578949, 0.03943411633372307, -0.00016066318494267762, 0.010729672387242317, -0.037416402250528336, 0.013596232049167156, -0.030438531190156937, -0.07035735994577408, -0.027880458161234856, -0.04230878874659538, -0.02433091402053833, -0.02549491450190544, 0.013802007772028446, -0.037945035845041275, -0.021818747743964195, -0.00910255592316389, 0.09458163380622864, 0.009864844381809235, 0.025454046204686165, 0.015915893018245697, 0.018403271213173866, 0.001954316394403577, -0.02345578372478485, -0.0890180766582489, -0.008948687463998795, -0.006303985137492418, 0.01955825835466385, 0.012721935287117958, 0.02840195968747139, 0.015215775929391384, -0.0768987238407135, 0.023292992264032364, -0.010579650290310383, -0.011437342502176762, 0.01996430940926075, 0.018538814038038254, -0.02689390629529953, -0.015589604154229164, 0.08025559782981873, -0.0070965965278446674, 0.005474445875734091, 0.039684321731328964, 0.04543622210621834, -0.013426525518298149, -0.019109033048152924, 0.03896590694785118, 0.024249890819191933, 0.024661902338266373, -0.05395117029547691, 0.07622523605823517, -0.01598629541695118, -0.025276245549321175, 0.05383780226111412, 0.011971141211688519, -0.048159703612327576, 0.08531483262777328, -0.0011987799080088735, -0.04152212291955948, 0.015350052155554295, -0.0004889910924248397, -0.020458783954381943, 0.05629748851060867, -0.016512561589479446, -0.2647145986557007, 0.051996778696775436, 0.006552679464221001, 0.04266050085425377, 0.0010188346495851874, -0.005794069264084101, 0.011909007094800472, -0.030256258323788643, -0.0277571901679039, -0.0317397303879261, 0.062179386615753174, 0.03991125896573067, 0.0009659319766797125, -0.004812153987586498, -0.0007831944385543466, 0.029926545917987823, 0.0241643488407135, -0.010937420651316643, 0.012238101102411747, 0.01551120262593031, 0.045691248029470444, -0.04570282623171806, 0.16158141195774078, 0.03150470554828644, 0.03336743265390396, -0.004443444777280092, -0.04546935483813286, 0.007905605249106884, 0.02008289285004139, -0.00823897309601307, -0.019012678414583206, 0.03413690999150276, -0.01276837382465601, 0.01991477608680725, 0.02148408815264702, -0.023689711466431618, -0.014438381418585777, 0.019809888675808907, 0.04473826661705971, -0.02391912415623665, 0.025752920657396317, -0.009977984242141247, -0.05050506070256233, -0.014560969546437263, 0.10087721794843674, -0.0018604763317853212, 0.009284191764891148, 0.0036538843996822834, -0.07633008807897568, 0.007395389024168253, -0.030467936769127846, -0.05352604389190674, -0.026393139734864235, -0.00855210330337286, 0.004911958239972591, 0.036939579993486404, 0.007452335674315691, -0.03045569360256195, 0.03540881723165512, -0.001543403952382505, -0.044914647936820984, 0.002978207543492317, 0.06251155585050583, 0.00624927319586277, 0.031484782695770264 ]
[ 0.017121076583862305, 0.07953649014234543, 0.018909934908151627, 0.016881588846445084, 0.0082066236063838, 0.03450825810432434, -0.022818053141236305, -0.005553534720093012, -0.042337242513895035, -0.02992927096784115, 0.0025599519722163677, 0.009764197282493114, 0.03193754702806473, -0.005487002432346344, 0.0046584042720496655, -0.0013160561211407185, 0.00983380526304245, -0.009510377421975136, 0.028773708269000053, -0.0023334980942308903, -0.029246030375361443, -0.027899131178855896, 0.015867872163653374, -0.030149515718221664, -0.004336988553404808, 0.015862219035625458, -0.011727294884622097, -0.028169244527816772, 0.028666475787758827, -0.07593976706266403, -0.03418532386422157, -0.030078882351517677, -0.004423906095325947, 0.045712586492300034, -0.021576525643467903, -0.00472981994971633, 0.027996789664030075, 0.03950706869363785, 0.012101424857974052, 0.046716053038835526, 0.036690305918455124, -0.010477382689714432, -0.025943733751773834, 0.009399299509823322, 0.04026540368795395, 0.004593717399984598, -0.021898314356803894, -0.001338581438176334, 0.020507140085101128, -0.021010911092162132, -0.05685475096106529, -0.04684271290898323, 0.0006583357462659478, -0.021576445549726486, 0.025161178782582283, 0.0024630986154079437, -0.05280396714806557, -0.04353060573339462, 0.0013120531802996993, 0.009391347877681255, 0.08087877929210663, -0.02908221445977688, -0.06781367212533951, -0.02409042976796627, -0.026744894683361053, 0.007467194460332394, -0.028683189302682877, 0.026876240968704224, -0.03764689713716507, 0.015596299432218075, -0.01787773333489895, 0.02629934251308441, -0.07887836545705795, -0.04113272204995155, -0.014634095132350922, 0.04071987420320511, 0.018213942646980286, -0.022196510806679726, 0.0019514892483130097, -0.01932195946574211, -0.0019539841450750828, 0.00939064472913742, -0.008125266060233116, 0.02176576852798462, -0.03963000699877739, 0.0025600879453122616, -0.010026850737631321, -0.005834063049405813, 0.028105957433581352, 0.024043528363108635, -0.06162368878722191, 0.029004374518990517, 0.006109863054007292, -0.02066444419324398, -0.10476808995008469, 0.03987564146518707, -0.00889857579022646, -0.005317815579473972, 0.008174076676368713, 0.7937822937965393, 0.013302781619131565, -0.021863264963030815, 0.022141795605421066, 0.0026257261633872986, -0.04596114531159401, 0.024521129205822945, 0.017140939831733704, 0.018201172351837158, 0.02056167647242546, 0.013156969100236893, -0.017902681604027748, 0.041108012199401855, -0.017154764384031296, 0.02861511893570423, -0.029070287942886353, 0.023863309994339943, 0.0060192919336259365, 0.03301726654171944, -0.0059409174136817455, 0.002529062330722809, -0.010445346124470234, 0.021732529625296593, 0.018353870138525963, -0.04479396715760231, -0.005151817109435797, -0.18102328479290009, -0.03239765763282776, -7.26946277699642e-33, 0.052179004997015, 0.0038400772027671337, 0.05048902705311775, 0.025694042444229126, -0.006426118314266205, 0.03705647587776184, 0.008697562851011753, -0.03660760074853897, -0.03998458757996559, -0.03346036374568939, 0.0009014719980768859, 0.010281533934175968, 0.010216422379016876, -0.01653320901095867, -0.013610847294330597, -0.008607652969658375, 0.0028853064868599176, 0.007904889062047005, -0.01750357076525688, -0.0013150469167158008, 0.03191511705517769, 0.029533615335822105, -0.03960959240794182, 0.04963941499590874, -0.005982593167573214, 0.02365059405565262, -0.02473132312297821, 0.008798014372587204, -0.0007014911971054971, -0.04425467550754547, -0.05079759284853935, 0.03223230689764023, 0.052532464265823364, -0.020674321800470352, 0.0005531403003260493, -0.049759142100811005, -0.021335802972316742, -0.023153826594352722, -0.02129502221941948, -0.0516233928501606, -0.0644318237900734, 0.03205299377441406, 0.04121323302388191, -0.03892825171351433, -0.03937296196818352, 0.005026509519666433, 0.0058157602325081825, 0.005270424298942089, -0.011010101065039635, 0.026477407664060593, -0.011430727317929268, 0.012018173933029175, -0.01310962438583374, 0.04203914850950241, -0.027100173756480217, -0.020341163501143456, 0.00015683089441154152, 0.024871574714779854, -0.03342372924089432, -0.03657703101634979, 0.015685874968767166, -0.014015518128871918, -0.011726012453436852, 0.02563108503818512, 0.029063904657959938, 0.0654287040233612, -0.05716411769390106, -0.020381364971399307, -0.017080344259738922, 0.043929584324359894, -0.03440830484032631, 0.04768804460763931, -0.0287790484726429, -0.027402397245168686, 0.01861906237900257, -0.03289256989955902, -0.01771959289908409, -0.040680546313524246, 0.0063820104114711285, 0.07403267174959183, -0.026041677221655846, -0.007967911660671234, 0.008026326075196266, -0.03244613856077194, -0.016321517527103424, -0.010667195543646812, 0.05865941941738129, 0.006013496313244104, 0.038736358284950256, 0.01729675754904747, 0.04082171991467476, 0.04840424284338951, -0.03766161948442459, -0.003158858511596918, 0.0000692927569616586, 6.674672921055912e-33, 0.006639387458562851, 0.023729627951979637, 0.02766430750489235, -0.011296014301478863, 0.08671475946903229, 0.009645755402743816, 0.04207618162035942, -0.015170418657362461, -0.0439244881272316, 0.06037680432200432, 0.020525850355625153, -0.049158867448568344, -0.00029719379381276667, 0.03836289048194885, 0.06554856896400452, -0.012336631305515766, 0.011881809681653976, -0.03156901150941849, 0.008927510119974613, 0.012624209746718407, 0.01215297169983387, 0.018403399735689163, 0.013504027388989925, 0.019092770293354988, 0.03079351969063282, 0.02087666653096676, 0.003545266343280673, 0.018116431310772896, -0.007656523492187262, 0.0031032271217554808, 0.0070369793102145195, -0.054292310029268265, -0.009533380158245564, -0.009594284929335117, 0.04918473958969116, 0.039320580661296844, -0.030378106981515884, 0.00039189757080748677, 0.02765554189682007, -0.05106096714735031, 0.02192942053079605, -0.0020493289921432734, -0.019614065065979958, 0.08319203555583954, 0.0045484621077775955, -0.02628544718027115, -0.005158047191798687, -0.00946222897619009, 0.021943436935544014, 0.004858309868723154, 0.01843961514532566, 0.021812520921230316, -0.012114182114601135, 0.0014945942675694823, -0.005621859338134527, -0.05538221448659897, 0.023438863456249237, 0.059794045984745026, -0.016625767573714256, 0.009116511791944504, -0.03419780731201172, -0.029471036046743393, -0.024129673838615417, 0.04046179726719856, -0.019200323149561882, -0.014419707469642162, -0.01491195522248745, 0.03973471000790596, -0.015286415815353394, -0.000155867135617882, -0.03036639466881752, -0.00836619921028614, -0.02613266371190548, 0.028275175020098686, 0.02118479460477829, -0.02564939670264721, -0.04599536210298538, -0.009996011853218079, -0.025364048779010773, 0.020052049309015274, 0.02043040841817856, 0.010844324715435505, 0.030204659327864647, 0.012228274717926979, 0.02026202902197838, 0.00704073766246438, -0.007792310323566198, 0.04740652069449425, 0.015805210918188095, 0.023653605952858925, 0.030162712559103966, -0.022462427616119385, -0.00012204193626530468, 0.06853298842906952, -0.021447082981467247, -1.2615707589702652e-8, -0.09624536335468292, 0.0016917727189138532, -0.021882249042391777, -0.009670889005064964, -0.026273159310221672, 0.018267374485731125, -0.0003384410811122507, -0.03263004496693611, -0.009181296452879906, 0.005813863594084978, 0.0017745558870956302, -0.008632205426692963, -0.004802140407264233, 0.01865297369658947, 0.02497958019375801, -0.05687377229332924, 0.006065781228244305, -0.03458699584007263, 0.029446730390191078, 0.011353002861142159, -0.009864200837910175, -0.0061088623479008675, -0.04873201996088028, 0.039234597235918045, -0.018567446619272232, -0.02067740075290203, 0.031674522906541824, -0.07184840738773346, 0.011283631436526775, -0.002807593671604991, -0.0068229790776968, -0.018478477373719215, -0.0006271813763305545, 0.0168553926050663, -0.01951277069747448, -0.008519492112100124, -0.009887267835438251, 0.016600627452135086, 0.017207933589816093, 0.04187193140387535, 0.007110326550900936, 0.02889665588736534, -0.04270090162754059, -0.024849196895956993, -0.008614776656031609, 0.0007217839593067765, -0.022880973294377327, -0.035189561545848846, 0.025082070380449295, -0.0502779446542263, -0.0028225723654031754, -0.020022548735141754, 0.017400432378053665, 0.0010765879414975643, 0.005207380745559931, -0.027193212881684303, 0.004332384560257196, -0.00430769007652998, 0.0000869124851305969, -0.029914936050772667, 0.028708741068840027, -0.034442413598299026, 0.0007722200825810432, -0.0015494622057303786 ]
neo4j-handling-optional-relationships
https://markhneedham.com/blog/2012/06/24/neo4j-handling-optional-relationships
false
2012-06-24 22:55:39
Why you shouldn't use name as a key a.k.a. I am an idiot
[ "software-development" ]
[ "Software Development" ]
I think one of the first things that I learnt about dealing with users in a data store is that you should never use name as a primary key because their might be two people with the same name. Despite knowing that I foolishly chose to ignore this knowledge when building my neo4j graph and used name as the key for the Lucene index. I thought I'd got away with it but NO! Earlier today I was trying to work out who the most connected person at ThoughtWorks is and the graph was suggesting that 'Rahul Singh' was the most connected, having worked with 540 people. I mentioned this to https://twitter.com/#!/jennifersmithco[Jen] who felt something was probably wrong since he'd only started working at ThoughtWorks a couple of years ago. Amusingly Jen found an email from 18 months ago sent by Rahul #1 explaining that there were in fact two people with exactly the same name and he was getting emails intended for the other one and vice versa. I now have first hand knowledge of what can happen if you ignore one of the most basic rules of software development! My gamble that there probably wouldn't be two people with the same name in such a small dataset has totally failed and from now on I'll be sure to use a unique key!
null
null
[ 0.013000895269215107, -0.006674520671367645, 0.019491376355290413, 0.04223823547363281, 0.10183413326740265, 0.0028213178738951683, 0.023543180897831917, 0.017878474667668343, 0.01897529326379299, -0.016587093472480774, -0.023012489080429077, -0.013116108253598213, -0.061338528990745544, 0.027260320261120796, -0.007815934717655182, 0.07326074689626694, 0.052775293588638306, 0.039123713970184326, 0.014653249643743038, -0.017142299562692642, 0.042954906821250916, 0.046774331480264664, 0.020031219348311424, 0.030199140310287476, 0.032426949590444565, 0.014113002456724644, -0.010998020879924297, -0.008774792775511742, -0.03825727105140686, -0.0029425218235701323, 0.05722624808549881, 0.0021602564956992865, 0.027332980185747147, 0.00665412237867713, 0.01435379683971405, -0.0035223951563239098, -0.028296800330281258, 0.029919717460870743, -0.003335624234750867, 0.02459702081978321, -0.07524062693119049, 0.04371889680624008, -0.008718976750969887, 0.04262544959783554, -0.033854834735393524, 0.0020352371502667665, -0.07277878373861313, 0.023205865174531937, 0.02974032610654831, 0.022280806675553322, -0.0643027126789093, 0.027353456243872643, 0.020322419703006744, 0.015515539795160294, -0.02017478458583355, 0.03324402496218681, 0.024618567898869514, -0.06043582782149315, 0.022187797352671623, -0.02218489721417427, -0.005804734770208597, -0.015889210626482964, -0.004729179199784994, 0.009460360743105412, 0.012910690158605576, -0.041283443570137024, 0.011157135479152203, 0.05420207604765892, -0.05594576522707939, 0.018810678273439407, -0.006165207829326391, -0.0008473178022541106, -0.0026067544240504503, -0.013360129669308662, -0.03407074138522148, -0.041144803166389465, 0.009036771021783352, 0.056162185966968536, 0.06428465992212296, 0.04428693652153015, -0.025983858853578568, 0.004939287900924683, -0.013078640215098858, 0.0420222170650959, -0.014418533071875572, -0.05291901156306267, -0.02426895499229431, -0.042352307587862015, -0.05161144584417343, 0.046537842601537704, 0.004322959575802088, -0.053323157131671906, 0.021011492237448692, 0.02303490974009037, -0.027280082926154137, -0.00572061026468873, 0.04885116592049599, -0.02224895916879177, -0.004100578837096691, -0.022993054240942, -0.02378355711698532, -0.0436733178794384, -0.015241892077028751, 0.005482874810695648, -0.07824371755123138, 0.0031594489701092243, -0.02485128492116928, -0.0028886590152978897, -0.00008094786608126014, 0.0006103113410063088, -0.0415012389421463, 0.03543444350361824, -0.007161323446780443, 0.012385829351842403, -0.07175245881080627, 0.06624820828437805, 0.013560188002884388, -0.031643666326999664, -0.005691228900104761, 0.012166595086455345, 0.0556076243519783, 0.038828540593385696, 0.002156975446268916, 0.07376905530691147, 0.009120984934270382, 0.004347892478108406, 0.004383631981909275, 0.03941694647073746, -0.01720789447426796, -0.05893038958311081, 0.0007410839316435158, 0.05213282257318497, -0.0033559314906597137, -0.013553870841860771, -0.006964194122701883, -0.0367494598031044, -0.006227739155292511, 0.024539494886994362, 0.03594653308391571, 0.026992041617631912, 0.027432939037680626, -0.03464123234152794, 0.009615831077098846, 0.023439019918441772, 0.03723274543881416, -0.0015935285482555628, -0.007931447587907314, -0.017662405967712402, -0.024662448093295097, -0.016335690394043922, -0.003062295028939843, 0.046621404588222504, 0.017857257276773453, -0.042024947702884674, 0.023702271282672882, 0.09976605325937271, 0.015198753215372562, -0.013941238634288311, -0.01449786126613617, 0.03412440046668053, 0.04596289247274399, 0.0003026084159500897, 0.01939501240849495, 0.03579629212617874, 0.008032760582864285, -0.015407633036375046, 0.016894476488232613, 0.04778573289513588, -0.007566832937300205, 0.02440185472369194, -0.06919238716363907, -0.03875176981091499, 0.05126885697245598, -0.03996572643518448, -0.016205623745918274, 0.07804946601390839, 0.07030737400054932, 0.028659410774707794, 0.023533102124929428, -0.0006553246639668941, -0.07431856542825699, 0.0503825843334198, -0.006537339650094509, 0.010318638756871223, 0.006753537338227034, 0.00904811266809702, 0.057841893285512924, 0.03885383903980255, 0.027109794318675995, 0.04731224477291107, -0.07621470838785172, -0.06568434089422226, 0.003116496605798602, 0.00032036672928370535, 0.05332207307219505, -0.030240997672080994, 0.0403868593275547, 0.06854331493377686, 0.006647881120443344, 0.04670656472444534, -0.002821308095008135, 0.02912089042365551, 0.00048110715579241514, -0.05504859983921051, -0.05351581051945686, 0.058078136295080185, 0.036302920430898666, -0.04616914689540863, -0.039860326796770096, 0.030012043192982674, -0.009491823613643646, -0.02345152199268341, 0.03429562598466873, -0.027804726734757423, 0.02785085327923298, 0.030378570780158043, 0.03527359664440155, 0.007793313357979059, 0.027994509786367416, -0.007402161136269569, 0.03998735547065735, 0.004761107731610537, -0.020609257742762566, 0.025843193754553795, -0.007300275843590498, 0.12561054527759552, 0.06367228925228119, -0.033212319016456604, -0.053782377392053604, 0.04088953509926796, 0.04568830132484436, -0.04733540862798691, 0.039960023015737534, -0.026824943721294403, 0.000050030612328555435, -0.014948254451155663, -0.058430515229701996, -0.047013185918331146, 0.04223594069480896, -0.04832278564572334, -0.004623723216354847, 0.06413924694061279, -0.03165978938341141, 0.07830879092216492, -0.017321711406111717, 0.002185099758207798, -0.03797216713428497, -0.04068927839398384, -0.037004947662353516, 0.040867626667022705, 0.003034215187653899, -0.0028061794582754374, 0.030722128227353096, -0.01670120097696781, 0.011967644095420837, -0.057643454521894455, -0.021662695333361626, 0.048587847501039505, 0.046439237892627716, 0.06948039680719376, -0.017575806006789207, 0.06371509283781052, -0.033621422946453094, 0.009341257624328136, -0.013889617286622524, -0.04124414548277855, -0.017858048900961876, -0.027566388249397278, -0.004267943557351828, 0.010682066902518272, 0.01108488254249096, -0.005271130707114935, 0.006578188389539719, 0.006575659848749638, 0.021505627781152725, -0.0004823514027521014, 0.014583040960133076, 0.0046514240093529224, 0.012059111148118973, -0.035596199333667755, -0.024148641154170036, 0.060619574040174484, -0.039924297481775284, -0.03303280845284462, 0.0037493386771529913, -0.0641343742609024, 0.03555424138903618, -0.04828029125928879, -0.037500400096178055, 0.0029199153650552034, 0.03112160414457321, 0.03400934487581253, 0.024071989580988884, -0.0019705232698470354, 0.05824773386120796, 0.020104657858610153, -0.0009598815231584013, 0.016395531594753265, -0.013579307124018669, 0.056468572467565536, -0.003962982911616564, 0.037706971168518066, 0.04517079517245293, -0.008224503137171268, 0.01272201631218195, -0.04030057415366173, 0.020512579008936882, -0.011335659772157669, -0.2857564687728882, 0.04258977994322777, 0.005549742374569178, -0.034165650606155396, 0.02005508914589882, -0.022349677979946136, 0.030908869579434395, -0.02993445098400116, -0.017076153308153152, 0.01302091684192419, -0.013721725903451443, -0.026493921875953674, -0.013952006585896015, 0.014197058044373989, 0.005793042480945587, 0.05553613603115082, 0.00661835540086031, -0.05671000853180885, -0.002723103854805231, 0.045736540108919144, -0.019480440765619278, -0.048169005662202835, -0.023012271150946617, 0.016616547480225563, 0.03285178914666176, 0.050462111830711365, -0.06948579847812653, 0.005564642138779163, -0.05312849581241608, 0.001194072188809514, -0.008453955873847008, -0.02116866037249565, -0.0025023568887263536, -0.021422279998660088, -0.007594573777168989, -0.05226634070277214, 0.025308791548013687, 0.0031166470143944025, -0.028335394337773323, 0.006944958586245775, -0.020639633759856224, -0.038402009755373, -0.023549776524305344, 0.003019188530743122, 0.07239195704460144, 0.00002425189086352475, -0.0868714302778244, 0.00913188699632883, -0.024240249767899513, 0.03961261361837387, -0.04190800338983536, -0.04665377363562584, -0.015340173617005348, 0.017624052241444588, -0.014881784096360207, -0.013040843419730663, -0.033317141234874725, -0.018452709540724754, -0.056253768503665924, -0.030893299728631973, 0.0008513832581229508, -0.036811672151088715, 0.018343068659305573, -0.042541056871414185, -0.013219786807894707, -0.07277046889066696, -0.06837411969900131, -0.038075122982263565, 0.08501172065734863, 0.000325317814713344, -0.031284913420677185, 0.03532537817955017, 0.004100439604371786, -0.10416768491268158, -0.019898436963558197, -0.008705132640898228, 0.006087837275117636, -0.006584818009287119, -0.001384917413815856, 0.03971695899963379, -0.028971748426556587, -0.0305361095815897, 0.008549387566745281, 0.025125494226813316, 0.029863793402910233, -0.02180349826812744, 0.02907446399331093, 0.016433505341410637, -0.048653434962034225, 0.018200213089585304, 0.05655042082071304, -0.0058037289418280125, -0.02044259011745453, -0.00618195254355669, 0.018906062468886375, 0.026768814772367477, 0.002211444778367877, -0.01419383380562067, -0.004934884142130613, 0.049024488776922226, 0.02223929576575756, -0.04182735085487366, 0.032295167446136475, -0.04899327829480171, -0.007320931181311607, 0.000239836736000143, -0.036935366690158844, 0.012265104800462723, 0.017521603032946587, 0.0037682834081351757, 0.0017177307745441794, -0.02421688474714756, 0.014065632596611977, -0.05101337656378746, -0.03584181144833565, -0.022409604862332344, 0.005215749144554138, 0.046864431351423264, 0.022231344133615494, -0.014757201075553894, -0.057091522961854935, 0.036477524787187576, 0.005128470715135336, -0.01628776453435421, -0.0772707462310791, -0.04010723903775215, -0.03375640884041786, -0.031533293426036835, 0.023137960582971573, 0.013673990033566952, -0.01930234394967556, 0.020809601992368698, 0.027774808928370476, -0.025781510397791862, 0.046088751405477524, -0.019534073770046234, -0.04128951579332352, -0.0454745888710022, -0.012182218953967094, -0.0006372503703460097, -0.008469494059681892, 0.022229500114917755, -0.0010770030785351992, 0.036617010831832886, 0.04974111169576645, 0.008375381119549274, 0.0031879818998277187, -0.023441432043910027, 0.04321618378162384, -0.005146385636180639, -0.009214970283210278, -0.07014594972133636, 0.03340913727879524, -0.0641891285777092, 0.00043204869143664837, -0.01903839409351349, 0.05785294994711876, -0.00687097292393446, -0.049836739897727966, -0.007577665615826845, 0.010338137857615948, -0.0740366131067276, -0.008275838568806648, -0.01593439094722271, 0.024826526641845703, 0.07073862105607986, -0.04826967045664787, 0.024458477273583412, -0.010165135376155376, 0.007880928926169872, 0.011498874053359032, 0.011727691628038883, -0.04135848581790924, 0.006636362057179213, 0.01897548884153366, 0.01368931494653225, -0.016192413866519928, 0.020402532070875168, 0.028032254427671432, 0.017752328887581825, -0.011367658153176308, 0.0020064194686710835, -0.020398011431097984, 0.01819576881825924, 0.07819954305887222, 0.03308563679456711, 0.0069215986877679825, -0.0035783734638243914, -0.02060994692146778, -0.0006432859809137881, -0.03435656428337097, 0.00673882570117712, -0.002375880489125848, 0.026670346036553383, -0.021738789975643158, -0.07360420376062393, 0.060708388686180115, -0.006454754620790482, 0.015040723606944084, 0.04994026944041252, -0.009265556000173092, 0.005027759354561567, -0.026127126067876816, 0.04757396876811981, 0.06232788413763046, -0.06246611103415489, 0.003231075592339039, -0.007195169571787119, -0.030794374644756317, 0.0163087397813797, -0.0013229012256488204, -0.028209788724780083, -0.01981041394174099, -0.0413246750831604, 0.04016163572669029, -0.052154429256916046, -0.0283330287784338, -0.01778106577694416, 0.016111617907881737, 0.004104665480554104, 0.0022304770536720753, -0.011884483508765697, 0.0004919752827845514, -0.007544206455349922, -0.0023317020386457443, 0.047290876507759094, -0.023623144254088402, 0.0009814201621338725, -0.011586182750761509, -0.03236199542880058, -0.00563953397795558, -0.033463213592767715, -0.0016774452524259686, 0.014840932562947273, -0.04008828103542328, 0.010115038603544235, -0.026608340442180634, 0.009223729372024536, 0.0020257190335541964, 0.04862324520945549, -0.013929110951721668, -0.021768277511000633, -0.03922044858336449, -0.014505235478281975, -0.0370832160115242, 0.015899814665317535, -0.013905833475291729, 0.005413823761045933, 0.03354277461767197, 0.011824950575828552, 0.020379187539219856, 0.02460506185889244, -0.032908618450164795, -0.02987920306622982, 0.0627157986164093, -0.04001752659678459, -0.03837299346923828, -0.04610148072242737, -0.05570264533162117, -0.0005767258699052036, 0.00697777234017849, 0.01348140649497509, -0.01225346326828003, 0.03763442486524582, 0.036557137966156006, 0.0009915292030200362, 0.026805376634001732, -0.022205552086234093, 0.047349173575639725, -0.036226049065589905, -0.02018044702708721, -0.07649216800928116, 0.011957654729485512, 0.011614570394158363, -0.01105077750980854, 0.016398169100284576, -0.012089460156857967, -0.0374394953250885, 0.008387677371501923, -0.07066071033477783, -0.04505208879709244, 0.007828774861991405, -0.028668716549873352, 0.018765153363347054, 0.010251130908727646, -0.07003812491893768, 0.0018407830502837896, 0.021826976910233498, -0.04227396845817566, -0.04317578673362732, -0.05339318513870239, 0.06776783615350723, -0.011257517151534557, 0.02743561752140522, -0.01545198354870081, -0.027295753359794617, 0.05598575994372368, 0.01709362491965294, 0.008128039538860321, 0.06205645576119423, -0.005899673793464899, 0.035679325461387634, 0.0442872978746891, -0.0002173202228732407, 0.021754572167992592, 0.04508885368704796, -0.02579731121659279, -0.07604222744703293, 0.032244086265563965, -0.003128859680145979, -0.023036902770400047, -0.04776608198881149, 0.06258012354373932, 0.02784775197505951, -0.04097225144505501, -0.05636833235621452, 0.03570869192481041, -0.03319835662841797, -0.013768011704087257, -0.04728962108492851, -0.009776534512639046, -0.04922601208090782, 0.045828357338905334, 0.014374176040291786, 0.011724190786480904, 0.0567115917801857, -0.00012071528180968016, 0.0025334723759442568, -0.011826022528111935, 0.08448036015033722, 0.0876099169254303, 0.04967474937438965, 0.006284490693360567, 0.06285584717988968, -0.0004440832999534905, -0.041902657598257065, -0.0018029229249805212, -0.02550576813519001, -0.03084377385675907, 0.008135467767715454, 0.0009989615064114332, 0.05268000811338425, -0.018091140314936638, 0.07840996980667114, -0.03151759132742882, -0.0005593955866061151, 0.011675229296088219, 0.018468262627720833, 0.024609262123703957, 0.05235162004828453, -0.010217271745204926, 0.03435153886675835, -0.061551518738269806, -0.052843205630779266, 0.00825376808643341, 0.0034438297152519226, -0.027970680966973305, 0.025258196517825127, -0.017666732892394066, -0.009336653165519238, 0.0056259469129145145, 0.009783973917365074, 0.07709672302007675, -0.020340969786047935, -0.0038256116677075624, -0.0025823868345469236, 0.017234457656741142, -0.004694453440606594, 0.03521370515227318, -0.025806736201047897, -0.01632675528526306, -0.019300082698464394, -0.04222579672932625, -0.023936714977025986, -0.016900286078453064, -0.0425121895968914, 0.025130316615104675, -0.04803122952580452, -0.01699025183916092, 0.020096542313694954, 0.020246978849172592, -0.024885885417461395, -0.05518388748168945, -0.03386233001947403, -0.027715474367141724, -0.07380127161741257, -0.0036350982263684273, -0.01178476307541132, 0.006320666987448931, -0.026303738355636597, 0.008781096898019314, -0.03377595916390419, -0.024253543466329575, 0.05432283133268356, -0.05653767287731171, -0.01250064093619585, -0.0008596350089646876, 0.034722767770290375, 0.028059987351298332, 0.021849535405635834, 0.05336292088031769, 0.000978079391643405, 0.010277152061462402, -0.0009223783272318542, 0.011235916055738926, 0.0361681804060936, 0.008171673864126205, -0.017308132722973824, -0.09388958662748337, 0.021220285445451736, -0.007204004563391209, -0.05027630180120468, -0.06203532963991165, 0.01947728917002678, 0.03351779654622078, -0.013784042559564114, 0.053343720734119415, 0.021661076694726944, -0.0036152054090052843, -0.020676778629422188, 0.008039267733693123, -0.0014781265053898096, 0.0012221451615914702, 0.03606113791465759, -0.021478740498423576, 0.07677783071994781, 0.0455063059926033, -0.01795755699276924, -0.036555223166942596, -0.027038486674427986, 0.019627200439572334, 0.004556453786790371, -0.03898457810282707, -0.04814142361283302, -0.021370571106672287, -0.09564154595136642, -0.019332347437739372, 0.018317919224500656, -0.013546789065003395, -0.044365569949150085, 0.010701696388423443, 0.03197430819272995, -0.019046276807785034, 0.021955545991659164, -0.05460340902209282, 0.04633687064051628, -0.005279100965708494, -0.01838335394859314, -0.01827927865087986, 0.02011135034263134, -0.01608394645154476, -0.0006165066733956337, 0.020946791395545006, -0.0613010972738266, 0.005104472860693932, -0.02912227064371109, 0.032491255551576614, 0.0162422526627779, 0.021702319383621216, -0.005164036992937326 ]
[ -0.04631614312529564, -0.025596236810088158, -0.06535010039806366, -0.017639625817537308, 0.021091056987643242, -0.04375312849879265, 0.03100481443107128, 0.01325937733054161, 0.021705254912376404, -0.04157140478491783, 0.03566286712884903, -0.03873911872506142, 0.01557554304599762, -0.009514587000012398, 0.07757889479398727, 0.013398389331996441, -0.010077647864818573, -0.07371559739112854, -0.00800313986837864, 0.046907730400562286, -0.00646962272003293, -0.04759844392538071, -0.02995334379374981, -0.03667433559894562, -0.002599091734737158, 0.02566630020737648, 0.02888702042400837, -0.03713899478316307, -0.043053142726421356, -0.20799387991428375, 0.013742554001510143, 0.016160650178790092, 0.05259979888796806, 0.022743260487914085, 0.006591925397515297, 0.03393448144197464, 0.03977428376674652, 0.02018260397017002, 0.005992028396576643, 0.014457871206104755, -0.006352775264531374, -0.0005269128014333546, -0.03746822476387024, -0.004582616034895182, 0.039621829986572266, 0.02301192842423916, -0.025241168215870857, -0.006218527443706989, -0.037404704838991165, 0.01657639630138874, -0.03926118463277817, -0.003990079741925001, -0.01463812030851841, 0.017013851553201675, 0.00019295314268674701, 0.043894365429878235, 0.0436248704791069, 0.04368108883500099, 0.01417718455195427, 0.03655768558382988, 0.033552564680576324, -0.0034751163329929113, -0.12087727338075638, 0.06879203021526337, 0.011344418860971928, 0.046089302748441696, -0.030252905562520027, -0.052476830780506134, -0.04101908579468727, 0.07677477598190308, 0.030850712209939957, -0.018121954053640366, -0.049468185752630234, 0.04093516245484352, 0.005861189682036638, 0.012496340088546276, -0.025985708460211754, 0.03643231466412544, 0.01637408696115017, -0.03166865184903145, -0.057319920510053635, -0.0005112266517244279, -0.0292862169444561, -0.015117884613573551, -0.06255263090133667, 0.04469442367553711, -0.0053327991627156734, 0.04965916648507118, -0.00457268999889493, 0.026585500687360764, 0.038572750985622406, 0.0177815742790699, 0.06280768662691116, -0.005049100145697594, -0.06365089863538742, -0.02677241899073124, -0.008366202004253864, 0.044005386531353, -0.045955855399370193, 0.44532620906829834, -0.0062928455881774426, -0.009030771441757679, 0.04390917345881462, 0.025148674845695496, -0.020550226792693138, -0.004913431592285633, 0.008402882143855095, -0.07197199761867523, 0.0382109172642231, -0.025827772915363312, 0.030842263251543045, -0.02234385535120964, 0.042601097375154495, -0.07269920408725739, 0.03013298660516739, 0.02153199352324009, 0.042698394507169724, 0.0194637980312109, -0.011433209292590618, 0.0012237862683832645, -0.034203723073005676, 0.026340283453464508, 0.029339520260691643, 0.008151109330356121, 0.0055132159031927586, -0.024983389303088188, 0.024165622889995575, 0.054457154124975204, 0.005850897170603275, 0.01433176826685667, 0.02462654933333397, -0.023367850109934807, -0.0802520364522934, 0.01735858805477619, -0.019663209095597267, 0.020039387047290802, 0.011507021263241768, -0.02284347265958786, 0.015984293073415756, 0.030010731890797615, -0.002971239387989044, -0.015339827165007591, 0.014650411903858185, 0.02675294317305088, -0.02443525940179825, 0.135373055934906, -0.0031113680452108383, -0.031166071072220802, 0.005329127423465252, -0.026845846325159073, 0.007069917395710945, 0.02482498623430729, -0.03265199437737465, -0.0713021382689476, 0.008313123136758804, 0.02406611479818821, 0.10278235375881195, 0.012781600467860699, -0.06471049785614014, -0.0048688678070902824, 0.006958776619285345, -0.02093691937625408, -0.051865920424461365, 0.051181159913539886, 0.05417530983686447, -0.11632603406906128, -0.00441008061170578, 0.010543267242610455, 0.019465921446681023, -0.07611927390098572, 0.015062319114804268, 0.0029144359286874533, -0.03549077361822128, 0.015826785936951637, 0.030709821730852127, -0.03729802742600441, -0.036544319242239, -0.02543618530035019, 0.025676600635051727, 0.012258481234312057, -0.020408308133482933, 0.003422243520617485, -0.03278660774230957, -0.01966855302453041, -0.0745638906955719, -0.07044252753257751, -0.05288408696651459, 0.03205670043826103, -0.051591724157333374, -0.00586608424782753, -0.012591906823217869, 0.02253531664609909, -0.06772866100072861, 0.09505302459001541, -0.03992869332432747, -0.03189164772629738, 0.006170324049890041, 0.004443662706762552, -0.043859731405973434, -0.020568205043673515, -0.006116466596722603, 0.02377261593937874, -0.0406409315764904, 0.031126054003834724, -0.08194679021835327, 0.04328320547938347, 0.05767913535237312, -0.03547284007072449, 0.1021471917629242, 0.01850060746073723, -0.010278317146003246, -0.027294816449284554, -0.021071642637252808, 0.0254075825214386, -0.014739071018993855, -0.01430879533290863, 0.004196744877845049, 0.0020256645511835814, 0.03799546882510185, 0.03250792622566223, -0.018970457836985588, 0.009886624291539192, -0.03518372029066086, -0.34923267364501953, -0.04727208614349365, -0.047854870557785034, 0.00831478089094162, 0.015469871461391449, -0.04909330978989601, 0.035626694560050964, -0.0025685601867735386, -0.011381232179701328, 0.027977248653769493, 0.05027761310338974, 0.0062679871916770935, -0.011284442618489265, -0.05598979443311691, -0.009263250976800919, 0.030103560537099838, -0.032868754118680954, 0.008422178216278553, -0.02971166931092739, -0.009949307888746262, -0.01384721789509058, -0.01831367053091526, -0.017282601445913315, -0.05396798625588417, 0.000525783165358007, 0.010574286803603172, 0.11886202543973923, 0.027790263295173645, 0.04538840800523758, -0.053380709141492844, 0.032076697796583176, -0.023768091574311256, 0.002883975161239505, -0.0941852480173111, 0.015688149258494377, -0.015755590051412582, -0.004874533973634243, -0.0030622263438999653, 0.0029429388232529163, -0.026600470766425133, -0.06187636777758598, -0.023598507046699524, -0.04818631336092949, -0.03322209045290947, -0.0520874448120594, 0.02560986578464508, -0.02981075830757618, 0.009229227900505066, -0.032425519078969955, 0.10251150280237198, 0.006984920706599951, 0.02024957351386547, 0.026052823290228844, 0.03157959505915642, 0.034567128866910934, -0.0521942637860775, -0.07721365243196487, 0.015367167070508003, 0.019656192511320114, 0.03299009054899216, 0.019837984815239906, 0.055172137916088104, 0.01898930035531521, -0.0785100907087326, 0.00771770253777504, 0.01688799262046814, -0.04140989109873772, 0.01903170719742775, 0.03830225393176079, -0.04672142118215561, -0.01938674971461296, 0.11874289810657501, -0.027316568419337273, 0.026765994727611542, 0.0164040420204401, 0.045671865344047546, -0.015084728598594666, -0.011270539835095406, 0.013605904765427113, 0.0006762307602912188, 0.0473196841776371, -0.04512294754385948, 0.06451140344142914, -0.010446175932884216, 0.0015286199050024152, 0.05524146929383278, 0.03879223391413689, -0.007903408259153366, 0.05837883800268173, -0.004493211396038532, -0.023504158481955528, 0.0022320691496133804, -0.03007400594651699, -0.05937149375677109, 0.0573391355574131, -0.031508918851614, -0.24047072231769562, 0.042921263724565506, 0.024492448195815086, 0.057771068066358566, 0.0062894076108932495, 0.019014814868569374, 0.01405316311866045, -0.04752563685178757, 0.00514454860240221, -0.005725072231143713, 0.02854815684258938, 0.060350384563207626, -0.0014385218964889646, -0.016054091975092888, -0.0010130590526387095, 0.015606170520186424, 0.016835227608680725, 0.020412204787135124, -0.005329243838787079, 0.034126877784729004, 0.027614103630185127, 0.004526213277131319, 0.18283843994140625, 0.03494080901145935, 0.002795787760987878, 0.01929190568625927, -0.005435290280729532, 0.0405208021402359, 0.03970753028988838, 0.0009554586140438914, -0.0073389108292758465, 0.0007247580215334892, 0.0008613664540462196, 0.014023923315107822, 0.0351504348218441, -0.07375457882881165, -0.01948256604373455, 0.017372164875268936, 0.043091319501399994, -0.011649460531771183, 0.031337179243564606, 0.0004067839472554624, -0.06500811129808426, 0.02541555091738701, 0.0676148310303688, -0.017581982538104057, 0.028757479041814804, -0.009107544086873531, -0.05859683081507683, -0.009552179835736752, -0.018492363393306732, -0.054626286029815674, -0.03836767375469208, 0.019244136288762093, -0.0015872535295784473, 0.07681801915168762, 0.01908288709819317, -0.02087845280766487, 0.009117220528423786, 0.011917386204004288, -0.031160475686192513, -0.004672445356845856, 0.09403537213802338, -0.01319151371717453, 0.012937549501657486 ]
[ 0.012917441315948963, 0.01859494112432003, -0.019095204770565033, 0.041139598935842514, -0.038484033197164536, -0.03762990981340408, 0.003005692269653082, -0.01356650423258543, -0.007410782855004072, -0.007170075085014105, -0.02159741334617138, 0.027268726378679276, 0.05053824931383133, -0.021810906007885933, -0.019006263464689255, 0.038674432784318924, -0.032193057239055634, -0.008131022565066814, 0.03161363676190376, -0.0062791104428470135, -0.042484696954488754, -0.05740273743867874, -0.007740883156657219, -0.03755703568458557, 0.0038053221069276333, 0.00502138352021575, 0.0047377049922943115, -0.004939169157296419, -0.003176158294081688, -0.10540733486413956, -0.02484494261443615, -0.016019849106669426, -0.010743102990090847, 0.0553283654153347, -0.013139653019607067, 0.020438455045223236, 0.040398284792900085, 0.05527438595890999, -0.004954226780682802, -0.027299659326672554, 0.01516205444931984, -0.005642738658934832, -0.005835631862282753, 0.016375413164496422, -0.015441910363733768, 0.012495381757616997, -0.03583803027868271, -0.019832704216241837, -0.015700459480285645, -0.008957725018262863, -0.07427714020013809, -0.011858878657221794, -0.019617026671767235, 0.02120901644229889, 0.013410569168627262, 0.0028265935834497213, -0.01795661821961403, -0.02668069303035736, 0.027102122083306313, 0.0018405575538054109, 0.06293154507875443, -0.02826508693397045, -0.050530821084976196, -0.03811286762356758, -0.0209185928106308, -0.013959953561425209, 0.010527917183935642, -0.007508186623454094, -0.018946748226881027, 0.008775622583925724, -0.002207172801718116, 0.03899116441607475, -0.045160163193941116, -0.031869448721408844, -0.006123050581663847, -0.003990097437053919, 0.016709456220269203, -0.021562522277235985, 0.00499799894168973, 0.0313163623213768, -0.05058395862579346, 0.013886265456676483, -0.013838140293955803, -0.00018806009029503912, -0.0032985492143779993, 0.040139734745025635, 0.007135485298931599, -0.0383949801325798, -0.01484829280525446, 0.019659431651234627, -0.02256143093109131, 0.011495687998831272, 0.0054745362140238285, -0.01560951303690672, -0.08199560642242432, 0.014871800318360329, -0.0026150839403271675, 0.001800620462745428, -0.009985239244997501, 0.8313004374504089, -0.01551770232617855, -0.0008790078572928905, 0.013528202660381794, -0.004366030916571617, -0.004026682116091251, 0.009769150987267494, 0.0026632039807736874, -0.007600150071084499, -0.02562866546213627, -0.005658265203237534, 0.007445842958986759, 0.04407461732625961, 0.01848483644425869, 0.0033732738811522722, 0.013480164110660553, 0.00910972710698843, -0.008720509707927704, 0.0323445200920105, 0.02787700854241848, 0.02730875089764595, -0.00955929234623909, 0.06425150483846664, 0.014254807494580746, 0.004155494272708893, 0.009288935922086239, -0.16473379731178284, -0.02839578315615654, -7.278571388847354e-33, 0.039776142686605453, 0.03261829912662506, 0.04445255920290947, 0.008497941307723522, -0.008567837998270988, -0.0063575017265975475, -0.01001996360719204, -0.007384082302451134, -0.04619302973151207, -0.027870336547493935, -0.011692920699715614, 0.00995553843677044, 0.042098406702280045, -0.020639849826693535, 0.01572979986667633, 0.0016693949000909925, 0.036818426102399826, 0.014720897190272808, -0.005545526742935181, -0.020724087953567505, 0.028852034360170364, 0.034883297979831696, 0.004126327112317085, 0.041072748601436615, -0.0009283972322009504, 0.003520336700603366, 0.028564736247062683, 0.0026652857195585966, -0.0008834654581733048, -0.035614971071481705, -0.04838593304157257, 0.03033754602074623, 0.0060025728307664394, -0.0008721458143554628, 0.020359821617603302, -0.03454333171248436, -0.021222282201051712, 0.031212063506245613, -0.012496458366513252, -0.04978486895561218, -0.012843551114201546, 0.045806366950273514, -0.012547367252409458, -0.05578680336475372, -0.03224692866206169, 0.019391220062971115, 0.003105373354628682, 0.04168938845396042, 0.012540549039840698, 0.009189176373183727, 0.010907327756285667, 0.0015930215595290065, 0.0011117495596408844, 0.05020490288734436, -0.01781694032251835, 0.008554578758776188, 0.023036841303110123, -0.008931092917919159, 0.02089119330048561, 0.03057936206459999, 0.013194520026445389, -0.017082886770367622, -0.013458582572638988, 0.0699542760848999, 0.042895179241895676, -0.008248614147305489, 0.03395894914865494, -0.001667242730036378, -0.014307308942079544, 0.01945723034441471, -0.028254328295588493, 0.0038653980009257793, -0.008460515178740025, -0.019179465249180794, -0.026980970054864883, -0.07047494500875473, -0.02250261791050434, 0.006560967769473791, 0.005607923027127981, 0.03912098705768585, -0.01741873100399971, -0.010519583709537983, -0.009055406786501408, -0.047918353229761124, -0.012181769125163555, -0.007523771375417709, -0.017159808427095413, 0.016035305336117744, 0.006447234656661749, 0.030639803037047386, 0.02873205952346325, 0.024694271385669708, -0.011426829732954502, 0.006498103030025959, -0.037611331790685654, 6.704639945478218e-33, -0.017548760399222374, -0.011495628394186497, -0.004872484598308802, 0.005613571964204311, 0.02277388796210289, 0.04557560384273529, 0.01844385638833046, -0.009844157844781876, -0.045121558010578156, 0.02678484469652176, 0.003999759908765554, -0.02759559266269207, 0.01927928626537323, 0.032948099076747894, 0.02641860395669937, 0.0015040087746456265, 0.025786668062210083, -0.03485698252916336, 0.006257023196667433, -0.0003090827085543424, -0.03376833349466324, 0.008832483552396297, -0.046277906745672226, 0.006890976335853338, 0.035041335970163345, 0.021845126524567604, -0.015451382845640182, 0.004616701975464821, -0.020526140928268433, 0.0026152869686484337, -0.0027882601134479046, -0.029512988403439522, -0.0007850768161006272, -0.007850337773561478, -0.017002055421471596, -0.01322800014168024, -0.027232307940721512, -0.03232792764902115, 0.016093293204903603, 0.030894828960299492, 0.0019191718893125653, 0.03750549256801605, -0.00933767668902874, 0.06229368597269058, 0.01675904355943203, 0.02564275451004505, -0.012859178707003593, 0.004606095142662525, -0.02869153767824173, -0.026327211409807205, -0.005658708047121763, 0.018542051315307617, 0.019123593345284462, -0.021467119455337524, -0.030063996091485023, -0.03762158006429672, 0.0036334791220724583, 0.045341577380895615, 0.007808022201061249, 0.003980808891355991, -0.01347997598350048, -0.03573358803987503, 0.014930402860045433, 0.042994871735572815, -0.028161663562059402, -0.008805057033896446, -0.005401481408625841, -0.0013562203384935856, -0.024980969727039337, -0.04294270649552345, -0.00622344808652997, 0.0022686056327074766, -0.02044995129108429, -0.004910781513899565, 0.03135249763727188, -0.02265082113444805, -0.042809296399354935, 0.017465511336922646, -0.049561452120542526, 0.03054802119731903, 0.02232576161623001, 0.038255296647548676, -0.0049000573344528675, 0.009418555535376072, -0.005333562381565571, 0.0223869439214468, 0.016643043607473373, 0.04318420588970184, -0.02298777922987938, -0.0009483697940595448, 0.023462330922484398, -0.002133534289896488, -0.025502774864435196, 0.02150437980890274, 0.013864598236978054, -1.2693207374070425e-8, -0.03464759513735771, 0.009767338633537292, -0.016742344945669174, 0.009721837006509304, 0.0065774982795119286, 0.00471067801117897, 0.013908623717725277, 0.047395896166563034, -0.030353045091032982, 0.028336675837635994, 0.018075568601489067, -0.011464293114840984, -0.012841852381825447, 0.008309260942041874, 0.03221272677183151, -0.062281519174575806, 0.006715308874845505, -0.030949421226978302, 0.03691525012254715, 0.025700893253087997, 0.01917066052556038, 0.05519186332821846, 0.015029959380626678, 0.00008846267883200198, -0.002955846255645156, -0.018092159181833267, 0.025564998388290405, -0.07669498771429062, -0.031266823410987854, 0.009104969911277294, -0.028256766498088837, -0.037789326161146164, 0.004943210165947676, 0.007489304523915052, -0.07735089212656021, -0.029003707692027092, 0.011075983755290508, 0.021733857691287994, 0.03377756476402283, 0.0335577167570591, -0.013225510716438293, 0.010592133738100529, -0.028258703649044037, -0.033875416964292526, -0.06829286366701126, 0.0569952018558979, -0.04709981381893158, -0.011902781203389168, 0.036307938396930695, -0.025803538039326668, -0.023220323026180267, -0.005824204534292221, 0.026915138587355614, 0.01951151341199875, 0.005509472452104092, 0.030136575922369957, -0.0023357407189905643, 0.010475844144821167, -0.009535673074424267, -0.03454803675413132, 0.03601037338376045, 0.012374765239655972, -0.061015624552965164, -0.005769744515419006 ]
why-you-shouldnt-use-name-as-a-key-a-k-a-i-am-an-idiot
https://markhneedham.com/blog/2012/06/24/why-you-shouldnt-use-name-as-a-key-a-k-a-i-am-an-idiot
false
2012-06-24 00:58:43
Brightbox Repository: GPG error: The following signatures couldn't be verified because the public key is not available
[ "software-development" ]
[ "Software Development" ]
We're using the https://launchpad.net/~brightbox/+archive/ruby-ng[Brightbox Ruby repository] to get the versions of Ruby which we install on our machines and although we eventually put the configuration for this repository into Puppet we initially tested it out on a local VM. To start with you need to add the repository to +++<cite>+++/etc/apt/sources.list+++</cite>+++: [source,text] ---- deb http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu lucid main ---- To get that picked up we run the following: [source,text] ---- apt-get update ---- Which initially threw this error because it's a gpg signed repository and we hadn't added the key: ____ W: GPG error: http://ppa.launchpad.net lucid Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F5DA5F09C3173AA6 ____ I recently realised that the instructions explaining how to sign the repository are hidden away in an overlay on the page but the http://docs.opsview.com/doku.php?id=opsview-community:repository-key[opsview wiki] also explains what to do. To add the key we need to run the following: [source,text] ---- sudo apt-key add - -----BEGIN PGP PUBLIC KEY BLOCK----- Version: SKS 1.0.10 mI0ETKTCMQEEAMX3ttL4YFO5AQ7Z6L5gaGw57CJBQl6jCv6lka0p8DaGNkeX0Rs9DhINa8qR hxJCPK6ijeoNss69G/ni+sMSRViJBFWXzitEE1ew5YM2sw7wLE3guToDu60kaDwIn5mR3GTx cgqDrQeCuGZJgz3e2lgmGYw2rAhMe78rRgkR5GFvABEBAAG0G0xhdW5jaHBhZCBQUEEgZm9y IEJyaWdodGJveIi4BBMBAgAiBQJMpMIxAhsDBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAK CRD12l8Jwxc6pl2BA/4p5DFEpGVvkgLj7/YLYCtYmZDw8i/drGbkWfIQiOgPWIf8QgpJXVME 1tkH8N1ssjbJlUKl/HubNBKZ6HDyQsQASFug+eI6KhSFMScDBf/oMX3zVCTTvUkgJtOWYc5d 77zJacEUGoSEx63QUJVvp/LAnqkZbt17JJL6HOou/CNicw== =G8vE -----END PGP PUBLIC KEY BLOCK----- ---- Then press Ctrl-D to exit the command. The public key comes from http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0xF5DA5F09C3173AA6[here] and is referenced under the https://launchpad.net/~brightbox/+archive/ruby-ng['Signing key' section].
null
null
[ -0.003212727839127183, -0.00635752035304904, -0.01480650994926691, 0.05673752352595329, 0.10078885406255722, 0.027890188619494438, 0.02399233914911747, 0.007093640044331551, 0.0016635481733828783, -0.009791644290089607, -0.053196366876363754, -0.0006113770068623126, -0.07536417990922928, 0.0037336477544158697, -0.03996941074728966, 0.07178335636854172, 0.06792066991329193, 0.008402894251048565, 0.014160915277898312, 0.025963781401515007, 0.030936123803257942, 0.06929060071706772, -0.017547959461808205, 0.03727958723902702, 0.0064218416810035706, 0.002082502469420433, 0.018414603546261787, -0.006683016661554575, -0.08184848725795746, 0.006080925464630127, 0.032520879060029984, -0.007590953726321459, 0.040823765099048615, -0.014141510240733624, 0.011873158626258373, 0.012272820807993412, -0.03529038652777672, 0.030171936377882957, 0.007624981924891472, 0.019307853654026985, -0.05016298219561577, 0.03544600307941437, 0.01966891996562481, 0.0009344345889985561, -0.030555441975593567, 0.022866735234856606, -0.06256510317325592, 0.024321163073182106, 0.013997798785567284, -0.011496017687022686, -0.053836654871702194, 0.01833314262330532, -0.021985264495015144, -0.03422451764345169, 0.014208580367267132, 0.01623687706887722, 0.009002254344522953, -0.058806151151657104, 0.038390882313251495, -0.033609166741371155, -0.008650637231767178, 0.022439459338784218, 0.019752761349081993, 0.030041459947824478, 0.01365916058421135, -0.03926197066903114, -0.005463408771902323, 0.06628062576055527, -0.05324256792664528, -0.03626616299152374, 0.025838229805231094, 0.0020969249308109283, -0.03639846295118332, -0.03104204498231411, 0.03579459339380264, -0.054802391678094864, -0.003638379042968154, 0.053684052079916, 0.010094750672578812, 0.0689980611205101, -0.019384438171982765, 0.01949653960764408, 0.005189154297113419, 0.020978979766368866, -0.0018916412955150008, -0.03097737766802311, -0.04514556750655174, -0.0005737592582590878, -0.05072810500860214, 0.06282356381416321, 0.04703928530216217, -0.0476851686835289, 0.011711601167917252, 0.002367947017773986, -0.013922101818025112, 0.001620973227545619, -0.015661634504795074, -0.004002841655164957, -0.00836473610252142, 0.006964127067476511, -0.014475023373961449, 0.017118802294135094, 0.00805757101625204, -0.010201800614595413, -0.06788937002420425, 0.011862002313137054, -0.0495135523378849, -0.01769988238811493, -0.03362337499856949, 0.009911787696182728, -0.02172458916902542, 0.03993793576955795, -0.014577334746718407, 0.010504264384508133, -0.054949987679719925, 0.08433227986097336, -0.020441226661205292, -0.068428635597229, -0.0042412360198795795, 0.01530186366289854, 0.06870020925998688, 0.04581393674015999, -0.0218382328748703, 0.0619778111577034, 0.023180458694696426, 0.05474238470196724, -0.005133854690939188, 0.032262783497571945, -0.031125523149967194, -0.04463186115026474, -0.00009069152292795479, 0.08247679471969604, 0.026737958192825317, -0.01296962983906269, -0.020365837961435318, 0.01265069842338562, -0.005087867844849825, -0.013816025108098984, 0.04655866697430611, 0.00947344209998846, -0.032259851694107056, 0.0005645295605063438, -0.011690919287502766, -0.007296498399227858, 0.03929740935564041, 0.00906192883849144, -0.004905755631625652, -0.025617828592658043, -0.07430803030729294, 0.013647654093801975, 0.004297651816159487, 0.01603359915316105, 0.050925515592098236, -0.049450092017650604, 0.004476128611713648, 0.06803500652313232, 0.04489554837346077, -0.00436400156468153, -0.04268834739923477, 0.007421276997774839, 0.01944779045879841, 0.033956270664930344, 0.01544825080782175, 0.062412578612565994, -0.01595151796936989, -0.02263426035642624, -0.015171455219388008, 0.038459412753582, 0.01610444486141205, -0.002645732369273901, -0.07566367089748383, -0.04693854600191116, 0.07106123864650726, -0.047511544078588486, -0.0025454226415604353, 0.031175319105386734, 0.07102513313293457, 0.04708611220121384, 0.03414862975478172, -0.008802521042525768, -0.08808760344982147, 0.030835231766104698, -0.011961463838815689, 0.021989362314343452, -0.010192329995334148, -0.017802776768803596, 0.08698265254497528, 0.02217881940305233, 0.023137709125876427, 0.029479600489139557, -0.09595172852277756, -0.06791126728057861, -0.0028990311548113823, -0.005325227975845337, 0.054596349596977234, 0.006296854466199875, -0.011803364381194115, 0.01258485671132803, 0.02726416476070881, 0.03939681127667427, 0.011532439850270748, 0.007333237677812576, 0.01522749662399292, -0.07164331525564194, -0.059235673397779465, 0.040689703077077866, 0.03529610484838486, -0.013837426900863647, -0.04526888206601143, -0.009673446416854858, -0.032136525958776474, -0.03203672543168068, 0.04031224548816681, -0.006236956920474768, 0.06032782793045044, 0.020652243867516518, 0.03183320537209511, -0.036772470921278, 0.025464888662099838, -0.035681866109371185, -0.007720281835645437, 0.017217205837368965, 0.0035847744438797235, -0.004041848238557577, 0.016842776909470558, 0.11389308422803879, 0.042263951152563095, -0.012956409715116024, -0.02002323977649212, 0.03438307344913483, 0.012245524674654007, -0.04943593963980675, 0.005729787051677704, -0.0134498979896307, 0.0059535913169384, -0.013517271727323532, -0.032952647656202316, -0.041249487549066544, 0.005301946308463812, -0.04060167819261551, 0.016725977882742882, 0.07835367321968079, -0.018526311963796616, 0.05527954548597336, 0.00542115792632103, -0.0371847040951252, 0.0019158396171405911, -0.03490495681762695, -0.09245605021715164, 0.030007321387529373, 0.02779279462993145, -0.00440035667270422, 0.016429370269179344, -0.03182421252131462, -0.025312751531600952, -0.023560304194688797, -0.06005019322037697, 0.01146277692168951, 0.017698505893349648, 0.05651364102959633, -0.03808750957250595, 0.04533885419368744, -0.056400321424007416, 0.011385888792574406, -0.014758194796741009, -0.03536268696188927, -0.030973458662629128, 0.01724378392100334, -0.017888817936182022, 0.013846093788743019, 0.019708385691046715, -0.011223878711462021, -0.02407454140484333, -0.02275785431265831, 0.010589663870632648, 0.01267110276967287, 0.04086042940616608, 0.005602762568742037, -0.01689155027270317, -0.06288596987724304, -0.010766392573714256, 0.021044164896011353, -0.05232027545571327, -0.0241058561950922, -0.014227460138499737, -0.05581888556480408, 0.06160412356257439, -0.06644690781831741, -0.049029137939214706, -0.024410007521510124, -0.005318301264196634, 0.04529591649770737, 0.014322206377983093, 0.040935218334198, 0.0598657988011837, 0.012518320232629776, 0.0302073173224926, 0.016727158799767494, 0.024319833144545555, 0.05202365294098854, 0.026522479951381683, 0.021822409704327583, 0.03264576941728592, -0.0056982943788170815, -0.010244891047477722, -0.06285711377859116, 0.0436113215982914, -0.04073639214038849, -0.25969916582107544, 0.022269582375884056, -0.015603134408593178, -0.04898907244205475, 0.04116128385066986, -0.00042122264858335257, 0.008028329350054264, -0.03370112553238869, -0.024154672399163246, 0.0051955352537333965, -0.005498667247593403, -0.03466789796948433, 0.010949069634079933, 0.023735620081424713, 0.0064437356777489185, -0.0028143986128270626, 0.026135480031371117, -0.04638053476810455, -0.005868124775588512, 0.0014675010461360216, -0.010431390255689621, -0.04796908423304558, 0.038562942296266556, 0.0437578409910202, 0.02506658062338829, 0.05320410802960396, -0.02948063425719738, 0.05912594869732857, -0.045879069715738297, -0.04060589149594307, 0.010844114236533642, -0.014673345722258091, -0.017687171697616577, 0.018294747918844223, -0.006426806561648846, -0.0019648552406579256, 0.037128567695617676, -0.010621863417327404, 0.013097729533910751, -0.00202073878608644, -0.02303457260131836, -0.015135522931814194, 0.005589817650616169, -0.0006545112701132894, 0.08564664423465729, -0.024126505479216576, -0.07619453966617584, -0.02319355122745037, -0.042895711958408356, 0.08952341973781586, -0.02274782955646515, -0.04014291241765022, -0.01779860630631447, 0.019940819591283798, -0.007850492373108864, -0.0018148199887946248, -0.01905256137251854, -0.0018386478768661618, -0.033143144100904465, -0.024654308333992958, -0.015644671395421028, -0.03962954133749008, -0.035502541810274124, -0.041671209037303925, -0.008732149377465248, -0.053468968719244, -0.04986681044101715, -0.01981431618332863, 0.07619694620370865, 0.017523236572742462, -0.04111495241522789, -0.012123067863285542, -0.030024858191609383, -0.10026052594184875, -0.00032598423422314227, -0.02382233552634716, -0.06622498482465744, -0.004099174402654171, -0.00979631207883358, 0.026612848043441772, -0.056095194071531296, -0.03280055150389671, 0.017744828015565872, 0.011542735621333122, 0.004738523159176111, 0.01094458345323801, 0.013752724975347519, -0.00890034157782793, 0.008410749956965446, 0.014018066227436066, 0.05159240961074829, -0.04932992532849312, -0.04937797039747238, -0.02847948856651783, 0.004322117660194635, -0.01974225603044033, 0.022802280262112617, 0.020421212539076805, 0.04105187579989433, 0.08094997704029083, 0.027928760275244713, -0.045768845826387405, 0.01255220826715231, -0.035061705857515335, -0.022813638672232628, 0.01810215599834919, -0.043209247291088104, 0.0225533414632082, 0.047648657113313675, -0.001503341249190271, -0.010007456876337528, -0.050057552754879, 0.008249074220657349, -0.06529640406370163, -0.03141201287508011, -0.005264963489025831, 0.03249602019786835, 0.012839454226195812, 0.014516249299049377, 0.010300523601472378, -0.053707584738731384, 0.008104931563138962, 0.05104424059391022, -0.0005792735028080642, -0.05365601181983948, 0.004962678533047438, -0.0132500184699893, -0.02373284474015236, 0.03930005058646202, 0.0015186733799055219, 0.012641720473766327, -0.011555036529898643, 0.011639881879091263, -0.04717244580388069, 0.008027087897062302, 0.006786308716982603, -0.026943573728203773, -0.0316721573472023, 0.015302424319088459, -0.017531024292111397, -0.03224368393421173, 0.007532535120844841, 0.0010694274678826332, 0.016102643683552742, 0.03398765251040459, 0.006533019710332155, 0.04748855158686638, -0.013940803706645966, 0.0021330327726900578, 0.005297431256622076, 0.008232595399022102, -0.06438901275396347, 0.03203034773468971, -0.03383088856935501, -0.028322067111730576, -0.016027607023715973, 0.03210458531975746, -0.03630485758185387, -0.022189388051629066, -0.024958398193120956, 0.015936866402626038, -0.070027656853199, 0.01763126440346241, 0.002635262906551361, 0.0016404681373387575, 0.045958470553159714, 0.023107612505555153, 0.011676562018692493, -0.02775254100561142, -0.0266286451369524, 0.023102588951587677, 0.0285482294857502, -0.012170973233878613, 0.004155224654823542, 0.010254723951220512, -0.0097449766471982, -0.017641179263591766, 0.0261385440826416, 0.049402229487895966, -0.00005958489782642573, 0.020137054845690727, -0.040649980306625366, 0.02034883201122284, 0.0092418622225523, 0.022302789613604546, 0.01281760260462761, -0.03822297975420952, -0.0065782037563622, -0.023772040382027626, -0.019967759028077126, -0.03429410979151726, 0.023577626794576645, -0.011441509239375591, 0.008274911902844906, -0.02193578891456127, -0.09504516422748566, 0.020945142954587936, 0.03354707360267639, 0.02954171597957611, 0.019324148073792458, -0.0022862418554723263, -0.006267338991165161, -0.05265253037214279, 0.05238961800932884, 0.08909879624843597, -0.04958995059132576, -0.009665019810199738, 0.009839748032391071, 0.02699146792292595, -0.017189642414450645, 0.03910190239548683, -0.0616469569504261, -0.019948188215494156, 0.013718229718506336, 0.020489366725087166, -0.038603171706199646, -0.06292817741632462, -0.01134883426129818, 0.003916948568075895, 0.004293293226510286, 0.009368084371089935, -0.00016709000919945538, 0.03271975368261337, 0.02357165515422821, -0.05080920085310936, -0.008571838960051537, -0.03004661202430725, -0.023691631853580475, 0.0008962434367276728, -0.029414018616080284, 0.01843634620308876, -0.028610097244381905, 0.07944982498884201, -0.00963165145367384, -0.0030052983202040195, 0.01747765764594078, -0.05526339262723923, -0.010320405475795269, -0.05033447593450546, 0.03372865542769432, -0.014962956309318542, 0.014386352151632309, -0.02571915276348591, -0.00162336858920753, -0.04659760370850563, -0.016101032495498657, -0.010051248595118523, 0.015157484449446201, -0.0006791626801714301, 0.029816249385476112, 0.00600632606074214, 0.041249629110097885, -0.031068675220012665, -0.015233144164085388, 0.05599242076277733, -0.06666059046983719, -0.02166801132261753, 0.00029903362155891955, -0.044598933309316635, 0.027223821729421616, 0.042389944195747375, 0.030086113139986992, -0.029683204367756844, 0.03663516789674759, 0.029886798933148384, -0.0005245846114121377, 0.019983088597655296, -0.03532388061285019, 0.01847117766737938, -0.036640383303165436, -0.012582601048052311, -0.07420840859413147, 0.06269167363643646, 0.012005831114947796, -0.02177288942039013, 0.0024708358105272055, 0.03410551697015762, -0.06661823391914368, 0.02128046564757824, -0.05245029553771019, -0.008729890920221806, 0.062358759343624115, -0.024441968649625778, -0.034101102501153946, 0.01205762941390276, -0.0693027526140213, 0.041724275797605515, 0.045246005058288574, -0.05114150047302246, -0.016995014622807503, -0.025407157838344574, 0.03567179664969444, -0.011124420911073685, 0.05684170126914978, -0.03078257292509079, -0.014007322490215302, 0.07084710150957108, -0.01086264569312334, 0.015069318935275078, 0.04694896563887596, -0.002031186828389764, 0.05000808462500572, 0.029483983293175697, 0.004063355270773172, 0.01921079307794571, 0.028933085501194, -0.028843266889452934, -0.05930701643228531, 0.04139062017202377, -0.025418980047106743, -0.0009286095737479627, -0.025214748457074165, 0.04830824211239815, 0.016480375081300735, -0.037842683494091034, -0.052075304090976715, 0.048121824860572815, -0.04063989967107773, -0.018278975039720535, -0.028004294261336327, 0.005545735824853182, -0.0539402961730957, 0.05653852969408035, 0.028826268389821053, 0.01210473570972681, 0.042998671531677246, 0.008722025901079178, -0.021872801706194878, 0.014187880791723728, 0.056873977184295654, 0.08886189758777618, 0.043014585971832275, 0.0386819951236248, 0.0576540008187294, -0.008066428825259209, -0.03664018213748932, 0.020922493189573288, -0.03448866680264473, -0.028246838599443436, -0.006336467806249857, -0.019273554906249046, 0.06417282670736313, -0.022684460505843163, 0.05655418708920479, -0.02843276597559452, 0.032766424119472504, -0.009316159412264824, 0.013105192221701145, 0.010440373793244362, 0.04745291918516159, 0.018876902759075165, 0.026010658591985703, -0.015911031514406204, -0.02308051474392414, 0.018342234194278717, -0.0006908347131684422, 0.015345685184001923, -0.004122877027839422, -0.03360241279006004, 0.017906157299876213, 0.007769814692437649, 0.01974276266992092, 0.0774204358458519, -0.04026109352707863, -0.0294585470110178, 0.016274722293019295, 0.02793974056839943, 0.004150079097598791, 0.03593117743730545, -0.03026207536458969, -0.004882597364485264, -0.0013110939180478454, -0.02339826710522175, -0.016771193593740463, 0.001987704774364829, -0.02493526227772236, 0.05108240246772766, -0.020501701161265373, 0.014118230901658535, 0.03078938089311123, 0.004016712307929993, -0.009622621349990368, -0.027831245213747025, -0.07581857591867447, -0.03884786739945412, -0.03708511218428612, -0.0030181517358869314, -0.02745378017425537, 0.021736150607466698, -0.031777624040842056, -0.04062708839774132, -0.008007836528122425, -0.0024464703164994717, 0.012326285243034363, -0.06293580681085587, -0.02565346658229828, 0.0038314517587423325, -0.0026256474666297436, 0.011785848066210747, 0.028867533430457115, 0.076485775411129, 0.017371302470564842, -0.004773569758981466, -0.028161602094769478, -0.0018902345327660441, 0.04904966428875923, -0.010034137405455112, 0.017735840752720833, -0.0854315534234047, 0.05269289016723633, 0.017788706347346306, 0.019089166074991226, -0.042469654232263565, 0.0005330789717845619, 0.010985305532813072, -0.01796046458184719, 0.059353411197662354, -0.0036993389949202538, 0.03424062952399254, -0.006099171936511993, 0.0016553975874558091, -0.02582414261996746, 0.010926815681159496, 0.033230628818273544, -0.016716767102479935, 0.09726756066083908, 0.0466013178229332, 0.005204712972044945, -0.047412656247615814, -0.028414428234100342, -0.016565807163715363, -0.0006863385206088424, -0.03339977189898491, 0.00018792226910591125, -0.04835974797606468, -0.08604737371206284, -0.02210874669253826, -0.002613950287923217, -0.03425295278429985, -0.050353653728961945, -0.0029674607794731855, 0.00608838303014636, -0.030182596296072006, 0.02605663798749447, -0.012809202075004578, 0.003174304962158203, -0.012617564760148525, -0.021313969045877457, -0.022438475862145424, 0.04447178542613983, 0.0037127432879060507, -0.010386037640273571, 0.03073497861623764, -0.030779222026467323, -0.00186666171066463, -0.007633506320416927, 0.0570562444627285, 0.047171782702207565, 0.020035143941640854, 0.04139768332242966 ]
[ -0.09410463273525238, -0.02212703786790371, -0.01533089391887188, -0.008712208829820156, 0.06421109288930893, -0.05772770196199417, -0.051280029118061066, 0.007794469129294157, -0.03077857196331024, -0.021068764850497246, 0.025065012276172638, -0.030676687136292458, 0.02421538159251213, -0.03915822133421898, 0.09040344506502151, 0.01371254026889801, -0.019385511055588722, -0.03949413448572159, -0.008046659640967846, 0.038863588124513626, 0.009208961389958858, -0.016577590256929398, 0.02310163713991642, -0.04015633091330528, -0.0364161878824234, 0.05798758193850517, 0.0255572572350502, -0.013740899972617626, -0.03711733594536781, -0.19590641558170319, 0.0039489250630140305, 0.009248713031411171, 0.005540693178772926, -0.019946476444602013, 0.023154405876994133, 0.03960419446229935, 0.017758294939994812, -0.009971468709409237, -0.013458884321153164, 0.04168701171875, 0.02292589657008648, 0.004169862251728773, -0.07463173568248749, -0.018128063529729843, 0.02812121994793415, -0.005870921537280083, -0.0013142542447894812, -0.022741524502635002, 0.012243782170116901, -0.038218654692173004, -0.03864371031522751, 0.04105723649263382, 0.010219831950962543, -0.02169261872768402, -0.005705630406737328, 0.03184719383716583, 0.0713181272149086, 0.06895437091588974, -0.005871962755918503, 0.009976561181247234, 0.016919273883104324, -0.002080667996779084, -0.1617751270532608, 0.06627416610717773, 0.04764802008867264, 0.044116467237472534, -0.018003156408667564, -0.0667644739151001, -0.00653500109910965, 0.06353925913572311, -0.01252651121467352, -0.005664187949150801, -0.058873143047094345, 0.04428335651755333, -0.03511243686079979, -0.00020091893384233117, 0.010833008214831352, 0.03402620926499367, 0.056072380393743515, -0.05824783816933632, -0.06485127657651901, -0.005721760913729668, -0.037604235112667084, 0.013501162640750408, -0.022829223424196243, 0.007386682089418173, -0.0019245861331000924, 0.07915545254945755, 0.02239053323864937, 0.046593401581048965, 0.016647858545184135, -0.0029049536678940058, 0.07248202711343765, 0.0262457262724638, -0.11182748526334763, -0.02293344959616661, -0.0024576475843787193, 0.023120015859603882, -0.03813331574201584, 0.4508780837059021, 0.0010825167410075665, -0.01827358454465866, 0.05950765684247017, 0.019115570932626724, 0.02002490498125553, 0.012749004177749157, -0.008098854683339596, -0.03626208007335663, -0.0059642125852406025, -0.017771994695067406, 0.014338216744363308, -5.48723733118095e-7, 0.07590895146131516, -0.06929216533899307, 0.06474706530570984, -0.012459779158234596, -0.01937498152256012, 0.024052603170275688, -0.031838513910770416, -0.013882026076316833, -0.04266545921564102, 0.012471485882997513, 0.05453423410654068, 0.013594329357147217, 0.00939357653260231, -0.00268023950047791, 0.039823371917009354, 0.03642714396119118, 0.028354914858937263, 0.04470141604542732, 0.00364400795660913, 0.008162843994796276, -0.09346471726894379, -0.01463642343878746, -0.016244299709796906, 0.06352324038743973, 0.02872701920568943, -0.01580328680574894, -0.0028215383645147085, 0.043166037648916245, -0.030020589008927345, -0.01692027784883976, 0.04252183437347412, -0.003438125364482403, -0.04889145493507385, 0.06563781201839447, 0.00020430138101801276, -0.0044130622409284115, -0.05010427162051201, -0.0028819157741963863, -0.015890272334218025, 0.008780731819570065, 0.0240577794611454, -0.013394218869507313, 0.014356084167957306, -0.04147803783416748, 0.06449323147535324, 0.009318211115896702, -0.04107115417718887, 0.016640188172459602, -0.00958586111664772, -0.06820128858089447, -0.008338259533047676, 0.018203772604465485, 0.037676744163036346, -0.09976739436388016, -0.023494873195886612, 0.015523734502494335, 0.02993297204375267, -0.05912605673074722, -0.025218240916728973, 0.02835123799741268, -0.019229697063565254, -0.029885677620768547, 0.04759155586361885, -0.07516168057918549, 0.010959049686789513, 0.013104562647640705, 0.03658992797136307, 0.007535896264016628, -0.005449219606816769, -0.020091703161597252, -0.04667055979371071, -0.019047582522034645, -0.04581886902451515, -0.09276832640171051, -0.04135013744235039, 0.017614668235182762, -0.029696550220251083, -0.020633723586797714, -0.06275667995214462, 0.007119104731827974, -0.059180013835430145, 0.04778216779232025, 0.03850556164979935, -0.011181541718542576, -0.004471911117434502, 0.002659452147781849, 0.012990345247089863, -0.03439733758568764, 0.0031243260018527508, 0.0491839163005352, -0.038274701684713364, -0.015606654807925224, -0.0776561051607132, 0.022785093635320663, 0.02980038896203041, -0.03183573856949806, 0.05422395467758179, 0.0028034159913659096, -0.051324229687452316, 0.028024490922689438, 0.017378007993102074, 0.06263147294521332, -0.046975769102573395, -0.0024216040037572384, -0.04785249009728432, 0.0131706977263093, 0.027106374502182007, 0.018450407311320305, 0.002409055596217513, -0.010175221599638462, -0.03267581760883331, -0.3342229425907135, 0.0007568444707430899, -0.025352708995342255, -0.02876076102256775, 0.006180774886161089, -0.04261169210076332, 0.04863588884472847, -0.03479186072945595, 0.0015351757174357772, 0.020546184852719307, 0.08196054399013519, -0.005429702345281839, 0.030270881950855255, -0.04592603072524071, -0.0054034520871937275, 0.026397280395030975, -0.03519836813211441, -0.013975715264678001, 0.006199524737894535, 0.001448818133212626, -0.01999787427484989, -0.08060707896947861, 0.014558779075741768, -0.041912827640771866, -0.006124469917267561, -0.05780799686908722, 0.09750603884458542, 0.053763024508953094, 0.06703396141529083, -0.06524030864238739, 0.027833297848701477, 0.00439851451665163, 0.025252923369407654, -0.12478668987751007, 0.030726108700037003, 0.0036616020370274782, 0.011111704632639885, 0.04468284174799919, 0.03894446790218353, -0.026258228346705437, -0.029745055362582207, 0.04290799796581268, -0.06976573914289474, -0.05958113446831703, -0.0104502122849226, 0.02702830173075199, -0.00279678450897336, -0.01496443897485733, -0.009110582992434502, 0.07707055658102036, 0.034434687346220016, 0.012669174000620842, 0.003323599463328719, 0.017885390669107437, -0.02555491402745247, 0.0028747792821377516, -0.06776866316795349, -0.015428059734404087, 0.04994190111756325, 0.019493678584694862, 0.02289213426411152, 0.04762246087193489, -0.0016865682555362582, -0.08166657388210297, 0.009000091813504696, -0.0022720638662576675, -0.0020095037762075663, 0.03359456732869148, 0.06767266988754272, -0.02408287115395069, 0.0032865875400602818, 0.08080150187015533, 0.021557016298174858, 0.03163794428110123, 0.0001748423819663003, 0.03046540543437004, 0.025226544588804245, 0.005386533681303263, 0.004150737076997757, 0.012421016581356525, 0.014651404693722725, -0.012520551681518555, 0.04506104812026024, -0.03142974153161049, -0.013211322948336601, 0.05283103883266449, 0.0019598472863435745, -0.06294240802526474, 0.057144444435834885, 0.017560314387083054, -0.03223996236920357, 0.004395946394652128, -0.013588784262537956, -0.06020916625857353, 0.05036617070436478, 0.02814473956823349, -0.2497207224369049, 0.03501659259200096, 0.06528231501579285, 0.05258406326174736, -0.01948261633515358, 0.021301494911313057, 0.03172215446829796, -0.05825456604361534, -0.01455685030668974, -0.00046653818571940064, 0.0026397842448204756, 0.05339684337377548, -0.0030784327536821365, -0.044104088097810745, 0.03575163707137108, -0.018165286630392075, 0.08469155430793762, -0.007414540741592646, -0.02465079165995121, -0.02236427366733551, -0.02945530042052269, -0.0032057652715593576, 0.11582998931407928, 0.020083894953131676, -0.026111692190170288, 0.01630636863410473, -0.0026720159221440554, 0.019757622852921486, 0.05896749719977379, 0.007618358824402094, -0.003541836515069008, 0.0011950461193919182, 0.01949649304151535, 0.01088756788522005, 0.022594640031456947, -0.03808087855577469, -0.0022541400976479053, 0.011337431147694588, 0.015877889469265938, 0.023331431671977043, -0.017846716567873955, 0.030134830623865128, -0.04531380534172058, 0.05916257202625275, 0.03293235972523689, -0.0579899437725544, -0.0018015347886830568, 0.021131813526153564, -0.03450535610318184, -0.014106126502156258, -0.003051791340112686, -0.04208121448755264, -0.008445660583674908, 0.0230671688914299, 0.031071070581674576, 0.09436511993408203, 0.025612477213144302, -0.014618666842579842, -0.0001548642903799191, -0.009868651628494263, -0.014842665754258633, -0.046337150037288666, 0.12557274103164673, -0.010262351483106613, 0.020957844331860542 ]
[ -0.008631749078631401, -0.009912305511534214, -0.006174752023071051, 0.04461495578289032, 0.015885086730122566, 0.011128361336886883, -0.018578533083200455, 0.020255757495760918, -0.03491596877574921, 0.0312560498714447, -0.009786020964384079, 0.044842127710580826, -0.004542311187833548, -0.05642872303724289, 0.021111685782670975, 0.027055909857153893, 0.02576643042266369, 0.0032013074960559607, 0.02314574643969536, -0.0010731968795880675, -0.008528046309947968, 0.011689731851220131, 0.039390530437231064, -0.012000945396721363, 0.007806373294442892, -0.0055498164147138596, -0.004918217193335295, 0.031143978238105774, 0.031964097172021866, -0.11298328638076782, 0.04668423905968666, -0.028594592586159706, 0.005272259470075369, 0.0002469231258146465, -0.007257064804434776, 0.04148642346262932, -0.017468634992837906, -0.019510187208652496, 0.002914106473326683, 0.01129344291985035, 0.05700061470270157, 0.019578389823436737, -0.008763476274907589, 0.02302318438887596, 0.01006508618593216, -0.024160707369446754, -0.027922512963414192, -0.026701124384999275, -0.039176855236291885, -0.03425974026322365, -0.022583726793527603, -0.01280261017382145, 0.0009439933928661048, -0.020016096532344818, -0.029271207749843597, -0.016487520188093185, 0.0036509251222014427, -0.019927946850657463, 0.029508814215660095, -0.024039970710873604, 0.016994282603263855, -0.004292220342904329, -0.036523185670375824, -0.06012494117021561, -0.007094927132129669, 0.000547301082406193, -0.02505853772163391, -0.029935462400317192, -0.010408933274447918, -0.026094624772667885, 0.011565486900508404, 0.03462885320186615, -0.03926599398255348, -0.0376703180372715, -0.063047394156456, -0.0553579106926918, 0.01611555553972721, 0.0007754970574751496, 0.02026095800101757, 0.011033959686756134, -0.016528744250535965, -0.010398287326097488, -0.017245439812541008, 0.0002574203535914421, 0.017864447087049484, 0.005771874915808439, -0.006432792637497187, 0.042406417429447174, 0.005460100714117289, -0.0031493843998759985, -0.008477200753986835, 0.0008650813833810389, 0.04460344463586807, 0.04473912715911865, -0.0749300867319107, -0.01958516426384449, -0.0012177580501884222, -0.025297479704022408, -0.04063335061073303, 0.8293327689170837, -0.0004747652856167406, 0.014972633682191372, 0.018529994413256645, -0.01235248800367117, 0.0009482845198363066, 0.020560674369335175, 0.04277763515710831, 0.014787477441132069, -0.01824275217950344, -0.0019294004887342453, 0.040590569376945496, -0.019542424008250237, 0.04692501574754715, -0.0031644345726817846, -0.005390787497162819, 0.01086848508566618, 0.019090332090854645, 0.04346084967255592, 0.019365040585398674, 0.028841696679592133, 0.05511811375617981, 0.009292704984545708, 0.01313232071697712, 0.017058836296200752, -0.032526370137929916, -0.18648995459079742, 0.006864016409963369, -6.157251531892635e-33, 0.06315512955188751, -0.01895466446876526, -0.048689104616642, 0.010654456913471222, 0.019535770639777184, 0.033715520054101944, 0.010836049914360046, -0.03835101053118706, -0.05904402956366539, -0.032537791877985, 0.005678845103830099, 0.02002640999853611, -0.023993423208594322, -0.008917025290429592, -0.013377668336033821, -0.020407114177942276, 0.008003894239664078, 0.08823715150356293, 0.0055470638908445835, 0.0341164655983448, -0.01072958018630743, -0.0073481290601193905, -0.009648478589951992, 0.023983467370271683, 0.01339749339967966, 0.03156090900301933, 0.008623821660876274, -0.030350377783179283, -0.006177725736051798, -0.05399462580680847, -0.004040309228003025, 0.015419743955135345, 0.006176915485411882, -0.01051246840506792, 0.006175755523145199, -0.05014566704630852, -0.01825403794646263, -0.00945440772920847, 0.005076779518276453, -0.04969106987118721, 0.012043452821671963, -0.0023220437578856945, -0.027065375819802284, -0.01092144101858139, 0.009979186579585075, 0.01974618248641491, 0.01663818396627903, 0.04129742458462715, 0.017759647220373154, 0.002592698438093066, 0.0057603963650763035, -0.013668831437826157, -0.029839705675840378, 0.031014831736683846, -0.051229070872068405, -0.020721379667520523, -0.03262076526880264, 0.07371274381875992, 0.053925275802612305, -0.004342265427112579, 0.004534529522061348, 0.003462523687630892, 0.006222971249371767, -0.009301874786615372, 0.011951570399105549, -0.005205443594604731, -0.013132847845554352, 0.016052670776844025, -0.0000619899874436669, 0.03471001237630844, -0.05072914436459541, 0.0033797970972955227, -0.04281182587146759, -0.0048093595542013645, -0.01580996625125408, -0.035791508853435516, 0.035342391580343246, 0.03660290688276291, 0.03035232424736023, 0.04337336868047714, 0.0050870506092906, 0.027609990909695625, -0.027465367689728737, 0.013201246038079262, -0.03437908738851547, 0.02209661155939102, 0.013850361108779907, -0.011539681814610958, -0.044832803308963776, -0.011270719580352306, 0.01926642656326294, 0.030353721231222153, -0.03028254769742489, -0.018249457702040672, -0.021218976005911827, 6.637852029884342e-33, 0.00798927340656519, -0.01761346496641636, 0.004369340371340513, 0.030950620770454407, 0.00011748897668439895, -0.016821062192320824, 0.014535309746861458, -0.037690870463848114, -0.0244120005518198, 0.023739170283079147, -0.029660528525710106, -0.0010906168026849627, -0.042892035096883774, -0.0006355717778205872, 0.05668049305677414, -0.039060793817043304, 0.03061617910861969, 0.0045146578922867775, 0.016513194888830185, -0.0031563022639602423, -0.011949973180890083, 0.02348364144563675, 0.005937016103416681, 0.00607198104262352, 0.04286617413163185, 0.03313653543591499, -0.00206544972024858, 0.009398690424859524, -0.0005395595799200237, -0.010494464077055454, 0.030983764678239822, 0.025505095720291138, -0.003177812322974205, -0.01903965324163437, -0.041761673986911774, 0.07192070037126541, -0.008057821542024612, 0.011826753616333008, -0.018702587112784386, 0.022017700597643852, 0.012038974091410637, -0.02977675199508667, -0.014719836413860321, -0.018017537891864777, 0.0015938038704916835, -0.026773596182465553, 0.01829407550394535, 0.015557589940726757, -0.020536471158266068, 0.016433944925665855, 0.022821754217147827, 0.017027722671628, -0.02049747295677662, 0.017477111890912056, -0.003917213529348373, -0.026386016979813576, -0.03255154937505722, 0.027352502569556236, -0.005190178751945496, -0.044091008603572845, 0.0014329737750813365, 0.01486535370349884, 0.01693008840084076, 0.03618457540869713, -0.05002212151885033, 0.004092853050678968, 0.019533317536115646, 0.010476198047399521, 0.025703754276037216, -0.005622777622193098, 0.02704702690243721, 0.007349007297307253, 0.0011055732611566782, 0.010910901241004467, 0.03418434411287308, 0.013514959253370762, -0.027672184631228447, -0.003659916343167424, -0.013794951140880585, 0.009828046895563602, -0.013518298976123333, 0.019719328731298447, 0.01424255408346653, -0.0027287222910672426, 0.012583134695887566, -0.022499294951558113, -0.004647320136427879, 0.01568785309791565, 0.017999520525336266, -0.010682983323931694, -0.023731620982289314, -0.06282911449670792, -0.0009939282899722457, 0.022811466827988625, -0.018890246748924255, -1.2264929516447864e-8, -0.0057116006501019, 0.04522746428847313, -0.01849854178726673, 0.022995349019765854, -0.0029718372970819473, -0.01541842706501484, 0.010501991957426071, -0.01977505162358284, -0.009296882897615433, 0.004030274692922831, 0.018017632886767387, -0.03735235333442688, -0.0038635891396552324, 0.039365172386169434, 0.037192098796367645, -0.006275319028645754, -0.0013446023222059011, 0.020813992246985435, 0.03224318474531174, 0.0002825648698490113, 0.012166245840489864, 0.016228022053837776, 0.034863557666540146, -0.012325952760875225, -0.021348658949136734, 0.013897337019443512, 0.002048107096925378, -0.07391912490129471, 0.023247074335813522, 0.019347278401255608, 0.0806829109787941, -0.014638882130384445, -0.008397839032113552, -0.001498672878369689, -0.004697978496551514, -0.02399386651813984, -0.01921152137219906, -0.00502789206802845, 0.014025080017745495, 0.01064273715019226, -0.03696895390748978, 0.0019753167871385813, 0.030883001163601875, -0.028195185586810112, -0.07489068806171417, -0.00985596515238285, -0.0118882330134511, 0.00863154698163271, 0.010980893857777119, -0.029627345502376556, 0.019795848056674004, -0.006862748879939318, -0.021300846710801125, 0.016612248495221138, -0.004078967962414026, -0.006819202098995447, 0.026556147262454033, -0.020222246646881104, -0.02754892222583294, -0.056209638714790344, 0.03314266353845596, -0.002948340028524399, -0.039041027426719666, -0.03464612737298012 ]
brightbox-repository-gpg-error-the-following-signatures-couldnt-be-verified-because-the-public-key-is-not-available
https://markhneedham.com/blog/2012/06/24/brightbox-repository-gpg-error-the-following-signatures-couldnt-be-verified-because-the-public-key-is-not-available
false
2012-06-12 23:50:45
Functional Thinking: Separating concerns
[ "functional-programming" ]
[ "Software Development" ]
Over the weekend I was trying to port some of the neo4j import code for the ThoughtWorks graph I've been working on to make use of the http://docs.neo4j.org/chunked/snapshot/rest-api-batch-ops.html[REST Batch API] and I came across an interesting example of imperative vs functional thinking. I'm using the https://github.com/maxdemarzi/neography[neography] gem to populate the graph and to start with I was just creating a person node and then creating an index entry for it: [source,ruby] ---- people_to_load = Set.new people_to_load << { :name => "Mark Needham", :id => 1 } people_to_load << { :name => "Jenn Smith", :id => 2 } people_to_load << { :name => "Chris Ford", :id => 3 } command_index = 0 people_commands = people_to_load.inject([]) do |acc, person| acc << [:create_node, {:id => person[:id], :name => person[:name]}] acc << [:add_node_to_index, "people", "name", person[:name], "{#{command_index}}"] command_index += 2 acc end Neography::Rest.new.batch * people_commands ---- +++<cite>+++people_commands+++</cite>+++ ends up containing the following arrays in the above example: [source,text] ---- [ [:create_node, {:id=>"1", :name=>"Mark Needham"}], [:add_node_to_index, "people", "name", "Mark Needham", "{0}"], [:create_node, {:id=>"2", :name=>"Jenn Smith"}], [:add_node_to_index, "people", "name", "Jenn Smith", "{2}"], [:create_node, {:id=>"3", :name=>"Chris Ford"}, [:add_node_to_index, "people", "name", "Chris Ford", "{4}"] ] ---- We can refer to previously executed batch commands by referencing their 'job id' which in this case is their 0 indexed position in the list of commands. e.g. the second command which indexes me refers to the node created in 'job id' '0' i.e the first command in this batch In the neo4j REST API we'd be able to define an arbitrary id for a command and then reference that later on but it's not implemented that way in neography. I thought having the 'command_index += 2' was a bit rubbish because it's nothing to do with the problem I'm trying to solve so I https://twitter.com/markhneedham/status/211793005668077568[posted to twitter to see if there was a more functional way to do this]. My colleague https://twitter.com/#!/ctford[Chris Ford] came up with a neat approach which involved using 'each_with_index' to work out the index positions rather than having a counter. His final version looked like this: [source,ruby] ---- insert_commands = people_to_load.map do |person| [:create_node, {:id => person[:id], :name => person[:name]}] end index_commands = people_to_load.each_with_index.map do |person, index| [:add_node_to_index, "people", "name", person[:name], "{#{index}}"] end people_commands = insert_commands + index_commands ---- The neat thing about this solution is that Chris has *separated the two concerns* - creating the node and indexing it. When I was thinking about this problem imperatively they seemed to belong together but there's actually no reason for that to be the case and we can write simpler code by separating them. We do iterate through the set twice but since it's not really that big it doesn't make too much difference. to the performance.
null
null
[ 0.010924424044787884, -0.03274606913328171, -0.022167276591062546, 0.027391640469431877, 0.08487004041671753, 0.014704342000186443, 0.020012345165014267, 0.03718522563576698, 0.0037820390425622463, -0.03979277238249779, -0.0224715918302536, -0.017776425927877426, -0.061114292591810226, -0.0009879926219582558, -0.01375165581703186, 0.06293154507875443, 0.059755053371191025, 0.011026241816580296, 0.014085203409194946, -0.01194131001830101, 0.029736436903476715, 0.058528922498226166, 0.009594937786459923, 0.026824789121747017, 0.03623202070593834, 0.015193484723567963, 0.023048702627420425, -0.025080235674977303, -0.051827866584062576, 0.00905816163867712, 0.03308991715312004, -0.012928273528814316, 0.013458440080285072, -0.012966281734406948, 0.01942732185125351, -0.013761845417320728, -0.027332764118909836, 0.01198886800557375, 0.008747213520109653, 0.0069499840028584, -0.08303315937519073, 0.03908291086554527, 0.0015209643170237541, 0.021649423986673355, -0.040633246302604675, 0.01957866922020912, -0.06633681058883667, 0.03467116132378578, -0.0001612003252375871, -0.0035924273543059826, -0.09659702330827713, 0.004200442228466272, -0.0037324216682463884, -0.01155867800116539, 0.004356186371296644, 0.06342506408691406, 0.006935408804565668, -0.06733375042676926, 0.03465142846107483, -0.047108154743909836, 0.0021945966873317957, 0.0032709266524761915, 0.01978633552789688, 0.01629045605659485, 0.00787600688636303, -0.04626842588186264, -0.016780752688646317, 0.06642601639032364, -0.055400021374225616, -0.020822394639253616, -0.00007523547537857667, 0.013446635566651821, -0.0357387438416481, -0.008138948120176792, -0.02390536665916443, -0.05485158786177635, 0.0012174873845651746, 0.05930953472852707, 0.02177588827908039, 0.05567971244454384, -0.004115781746804714, 0.03671417757868767, 0.008957481011748314, 0.02569546177983284, 0.02227707765996456, -0.02655623108148575, -0.02565525285899639, -0.03505699336528778, -0.04970886930823326, 0.0488588847219944, 0.007270230911672115, -0.058254826813936234, -0.014141852967441082, 0.00924571044743061, -0.023875458166003227, 0.04055783897638321, 0.008475775830447674, 0.006767521146684885, -0.008415043354034424, -0.0038056261837482452, -0.029004985466599464, -0.01436586119234562, -0.012249474413692951, 0.0050665647722780704, -0.0699387639760971, -0.024854179471731186, -0.03247242793440819, -0.019984982907772064, -0.013730536215007305, -0.01071880292147398, -0.05098490044474602, 0.01386429276317358, -0.027717523276805878, 0.0100247822701931, -0.058157507330179214, 0.07681293785572052, 0.014614050276577473, -0.008350643329322338, -0.033154793083667755, 0.01625625416636467, 0.062035560607910156, 0.053383778780698776, 0.007051382213830948, 0.08578839153051376, -0.005635595414787531, 0.03597070649266243, -0.007875475101172924, 0.0427117720246315, 0.007887064479291439, -0.0684613585472107, -0.008155494928359985, 0.06350427865982056, -0.005311019252985716, -0.009096031077206135, -0.001646762015298009, -0.035255078226327896, -0.007600931450724602, 0.015125870704650879, 0.04372667521238327, 0.030064040794968605, 0.015654198825359344, -0.047857966274023056, 0.03215951472520828, -0.021537110209465027, 0.022652650251984596, -0.008557719178497791, 0.0014933060156181455, -0.025629132986068726, -0.023811940103769302, 0.013972431421279907, -0.004092091228812933, 0.02003972791135311, 0.04727422446012497, -0.029914267361164093, 0.03213997557759285, 0.11756560206413269, 0.0530419796705246, -0.0028697531670331955, 0.0027283504605293274, 0.00233631138689816, 0.05516848713159561, 0.0411488339304924, -0.00039689012919552624, 0.0367245078086853, 0.0011846902780234814, -0.03903356194496155, -0.012070545926690102, 0.0645659789443016, 0.004603193607181311, -0.002529806224629283, -0.033557336777448654, -0.05286186933517456, 0.056747034192085266, -0.02789386920630932, -0.009165562689304352, 0.033312611281871796, 0.07079292833805084, 0.011761597357690334, 0.03819091245532036, 0.007988139055669308, -0.06621026992797852, 0.0607241727411747, -0.010884539224207401, 0.001054051797837019, 0.015209273435175419, 0.013240939006209373, 0.08240634202957153, 0.026588207110762596, 0.009330879896879196, 0.04241399094462395, -0.0769592821598053, -0.07868549227714539, -0.02158171869814396, -0.015534251928329468, 0.06055223196744919, -0.013134624809026718, 0.011489990167319775, 0.06572604924440384, 0.010535419918596745, 0.033309850841760635, 0.016136402264237404, -0.013722236268222332, 0.002850902732461691, -0.031799934804439545, -0.04196927696466446, 0.05765893682837486, 0.03245273977518082, -0.0387764610350132, -0.051662709563970566, 0.02832687273621559, -0.004659967962652445, -0.017751429229974747, 0.03512062877416611, -0.010864164680242538, 0.032699186354875565, 0.030136696994304657, 0.03347587585449219, -0.006230125669389963, 0.03364178538322449, -0.04329121112823486, 0.04465814679861069, 0.015252821147441864, -0.0009982750052586198, -0.009888410568237305, -0.014442416839301586, 0.10926635563373566, 0.06979314982891083, -0.03173130750656128, -0.053103603422641754, 0.04067525640130043, 0.011573177762329578, -0.028826043009757996, 0.013670927844941616, -0.021974893286824226, -0.012359648011624813, 0.0023644892498850822, -0.027200179174542427, 0.00238947756588459, 0.0040130908600986, -0.049117594957351685, 0.0069874729961156845, 0.05386441946029663, -0.0317867137491703, 0.06026579067111015, 0.012877647764980793, -0.027752084657549858, -0.002289854222908616, -0.03803031146526337, -0.06098218634724617, 0.036483608186244965, 0.006198802962899208, 0.0017239194130524993, 0.046021316200494766, -0.007857201620936394, -0.018238864839076996, -0.025227591395378113, -0.02970849722623825, 0.03166518732905388, 0.050216834992170334, 0.06266066431999207, -0.022128019481897354, 0.05660579353570938, -0.052701983600854874, 0.001295554800890386, 0.0018305790144950151, -0.042547889053821564, -0.027573462575674057, -0.032651472836732864, 0.02264067344367504, -0.00300838821567595, 0.031308773905038834, -0.007973792962729931, 0.023626454174518585, 0.02267260104417801, 0.0074077509343624115, -0.0195781197398901, 0.011499373242259026, 0.005662670824676752, -0.01717173308134079, -0.02847873792052269, -0.0334848053753376, 0.05889532342553139, -0.03676794096827507, -0.019312100484967232, -0.011375823989510536, -0.04875735566020012, 0.06517545878887177, -0.0414554700255394, -0.02131483517587185, -0.0050317393615841866, 0.03509319946169853, 0.037925031036138535, 0.015257416293025017, -0.006115898489952087, 0.06583943963050842, 0.016212014481425285, 0.0020233625546097755, 0.004419676493853331, -0.020026272162795067, 0.04684334993362427, -0.008405485190451145, 0.05520476773381233, 0.03257192298769951, -0.030462445691227913, -0.019259527325630188, -0.004098666366189718, 0.020168712362647057, -0.01350958738476038, -0.29092761874198914, 0.058351289480924606, -0.021034568548202515, -0.045001450926065445, 0.017126955091953278, -0.005055651534348726, 0.005515619646757841, -0.032183051109313965, -0.020950214937329292, -0.0044425479136407375, -0.00792923104017973, -0.03736771270632744, -0.03507532551884651, 0.03737149387598038, 0.006279227789491415, 0.019238164648413658, -0.022018572315573692, -0.06342153996229172, 0.0008142358274199069, 0.058773040771484375, -0.010545432567596436, -0.0461500845849514, -0.013372113928198814, 0.02914992906153202, 0.0388161726295948, 0.02378731220960617, -0.10885179787874222, 0.055201176553964615, -0.044578567147254944, -0.03812246397137642, -0.015692774206399918, -0.023330777883529663, 0.0235834289342165, 0.007469354197382927, -0.009775516577064991, -0.026657002046704292, 0.04018682986497879, -0.0029392456635832787, 0.010204006917774677, -0.0011499347165226936, -0.03759140893816948, -0.03513336554169655, -0.03552572801709175, -0.004099358804523945, 0.08134765923023224, 0.004828043282032013, -0.07521727681159973, -0.018620433285832405, -0.03989461064338684, 0.05873188376426697, -0.038130953907966614, -0.04363981634378433, -0.003529208479449153, 0.02710762619972229, -0.016311168670654297, -0.029252219945192337, -0.015490925870835781, 0.004865871276706457, -0.05114366114139557, -0.03487085551023483, -0.0032824818044900894, -0.029135392978787422, 0.018845107406377792, -0.05312931165099144, -0.03369128704071045, -0.04225093871355057, -0.08131447434425354, -0.011114426888525486, 0.05733500048518181, 0.010759689845144749, -0.033433496952056885, 0.029396595433354378, -0.025961721315979958, -0.11911473423242569, -0.04362298920750618, -0.04106684401631355, -0.04155085235834122, -0.009108111262321472, -0.0044708834029734135, 0.03768448531627655, -0.038949307054281235, -0.0696529895067215, 0.005347450263798237, 0.02444198541343212, 0.024327214807271957, 0.012263947166502476, 0.0399218313395977, -0.013867989182472229, -0.05614757910370827, 0.0033704973757267, 0.04867164418101311, -0.014722004532814026, -0.03012494556605816, -0.008737752214074135, 0.0009348515304736793, 0.023564059287309647, 0.018595149740576744, -0.006089088506996632, 0.011389055289328098, 0.06876394897699356, 0.0307228472083807, -0.021916821599006653, 0.009121855720877647, -0.01840078830718994, -0.03411385789513588, 0.0023452648892998695, -0.06974583119153976, 0.028350424021482468, 0.02457856759428978, 0.015501946210861206, -0.016237957403063774, -0.012824985198676586, 0.025842688977718353, -0.04625335708260536, -0.036656059324741364, 0.0023273297119885683, -0.02037188410758972, 0.029245221987366676, 0.03948940709233284, -0.002941360929980874, -0.06875164806842804, 0.010441489517688751, 0.02734423615038395, 0.003962248098105192, -0.06515125930309296, -0.03326971083879471, -0.04056694358587265, -0.01601318083703518, 0.0009501274325884879, 0.03882681205868721, -0.006287252530455589, 0.022874027490615845, -0.004158206284046173, -0.03313060849905014, 0.0373758003115654, -0.029493479058146477, -0.03635231778025627, -0.02785290963947773, 0.007819516584277153, -0.006596133578568697, -0.015494355000555515, 0.003038403345271945, -0.0009339069365523756, 0.034902505576610565, 0.02557362988591194, 0.005966582335531712, -0.0042736707255244255, 0.012710832990705967, 0.007111679762601852, 0.0060355039313435555, -0.00007486992399208248, -0.01882205344736576, 0.009155793115496635, -0.04901865869760513, -0.008008434437215328, -0.018343960866332054, 0.04757213220000267, -0.042838990688323975, -0.02484491467475891, -0.0336916483938694, 0.03154762089252472, -0.0702064037322998, 0.025539396330714226, -0.030780671164393425, -0.018412303179502487, 0.05823792517185211, -0.013182458467781544, 0.006303653120994568, -0.033312682062387466, -0.017164353281259537, 0.008075486868619919, 0.013183061964809895, -0.03774319961667061, -0.0073304069228470325, 0.010016012005507946, 0.03399721905589104, -0.00313049484975636, 0.04740455001592636, 0.027447957545518875, 0.02887786366045475, -0.015564056113362312, -0.0019995425827801228, 0.025733916088938713, 0.00792788714170456, 0.04637514799833298, 0.027378752827644348, 0.0032075410708785057, 0.011491543613374233, -0.04614432156085968, -0.013917778618633747, -0.04610421881079674, -0.002322455868124962, -0.016494380310177803, 0.004772279877215624, -0.03552735969424248, -0.05674915388226509, 0.05358152464032173, 0.007528327405452728, 0.0073534054681658745, 0.018803713843226433, -0.005348679609596729, 0.007885242812335491, -0.02316685952246189, 0.03730343282222748, 0.07411598414182663, -0.05403299629688263, -0.02314165234565735, -0.005197009537369013, -0.00042378378566354513, -0.016302285715937614, 0.013266786932945251, -0.05973337963223457, -0.028388718143105507, -0.04671800136566162, 0.01791590452194214, -0.0070032523944973946, -0.06521207839250565, -0.0179902371019125, 0.002060934901237488, 0.005990286357700825, 0.001108589582145214, 0.01612076722085476, 0.017114123329520226, -0.02143409289419651, -0.013461980037391186, 0.024980194866657257, -0.04013891518115997, -0.0026076780632138252, 0.0029607887845486403, -0.030772989615797997, 0.011650215834379196, -0.016349192708730698, 0.04262161999940872, 0.008990461938083172, 0.006679178215563297, -0.005135228857398033, -0.0209603663533926, 0.015364584513008595, -0.0005478436942212284, 0.013009174726903439, 0.006855880841612816, 0.00014569486666005105, -0.04412408918142319, -0.0014720183098688722, -0.03232450410723686, 0.003062635660171509, 0.0014174001989886165, 0.011694522574543953, 0.008455660194158554, 0.030368734151124954, -0.013280962593853474, 0.04137071222066879, -0.0051613254472613335, -0.026741880923509598, 0.055494409054517746, -0.037884075194597244, -0.05627932772040367, -0.008554833941161633, -0.04884728416800499, -0.00373299908824265, 0.028754131868481636, 0.032571811228990555, -0.04258384555578232, 0.05964740365743637, 0.0425461009144783, 0.027050865814089775, 0.02851034887135029, -0.015294318087399006, 0.04530778154730797, -0.018144212663173676, -0.013632000423967838, -0.09045270085334778, -0.009148693643510342, 0.03289644792675972, 0.010400708764791489, -0.0169668048620224, -0.01536835078150034, -0.016956264153122902, 0.005036086775362492, -0.06251966208219528, -0.0116102434694767, 0.04041428118944168, -0.02308207005262375, 0.023449024185538292, 0.022451642900705338, -0.06172588840126991, 0.018747499212622643, 0.021335281431674957, -0.04135670140385628, -0.03265142813324928, -0.030955281108617783, 0.05413646250963211, -0.021212629973888397, 0.03737949952483177, -0.012458736076951027, -0.028086692094802856, 0.06161293014883995, 0.027425875887274742, 0.008796451613307, 0.05826370045542717, 0.0028220717795193195, 0.021641885861754417, 0.020947277545928955, 0.023090343922376633, -0.002091076225042343, 0.04564085230231285, -0.027147959917783737, -0.05698520690202713, 0.04514903947710991, 0.01257245521992445, -0.024864252656698227, -0.04411906749010086, 0.0647796094417572, 0.0018645775271579623, -0.03610396012663841, -0.031577564775943756, 0.03934526816010475, -0.050089281052351, -0.013453617691993713, -0.02580643631517887, 0.008694826625287533, -0.022060737013816833, 0.0388629250228405, -0.016515322029590607, 0.004077458754181862, 0.08557868748903275, -0.023661935701966286, -0.015036406926810741, -0.009865907952189445, 0.07935620099306107, 0.09572101384401321, 0.0690900981426239, 0.01336708664894104, 0.06699974834918976, -0.006397568620741367, -0.0362149216234684, -0.017850978299975395, -0.021213358268141747, -0.0011206937488168478, 0.01613491028547287, 0.0049544754438102245, 0.07796494662761688, -0.013060539960861206, 0.06948728859424591, -0.0260930098593235, -0.008370242081582546, -0.02301899529993534, 0.01728702336549759, 0.030158821493387222, 0.07634402811527252, 0.02314932271838188, 0.0585576631128788, -0.04166817292571068, -0.025284796953201294, 0.020746391266584396, -0.012830083258450031, -0.006962254643440247, 0.023305822163820267, -0.016845284029841423, 0.011765998788177967, 0.01843363791704178, 0.026682566851377487, 0.09251062572002411, -0.02213713712990284, -0.003892543725669384, -0.015421616844832897, -0.006805140525102615, -0.007965373806655407, -0.0017724194331094623, -0.007551257032901049, -0.0008016275824047625, -0.002731373766437173, -0.03882128745317459, -0.03696157783269882, -0.01720879226922989, -0.03473639488220215, 0.0409962497651577, -0.01809793896973133, 0.014756511896848679, -0.01152621116489172, 0.014871801249682903, 0.01220975536853075, -0.03534657135605812, -0.025711148977279663, -0.05122457072138786, -0.0664541944861412, 0.005459717940539122, 0.013096281327307224, 0.0020466388668864965, -0.01836204156279564, -0.036421243101358414, -0.01916845142841339, -0.0028623163234442472, 0.052807506173849106, -0.049530889838933945, -0.0047250413335859776, -0.0009386263554915786, 0.03017256408929825, 0.014472872018814087, 0.016718002036213875, 0.050093404948711395, -0.0034778921399265528, 0.020823832601308823, -0.008812054991722107, 0.01004526112228632, 0.04417584836483002, 0.02140701375901699, 0.0007573005277663469, -0.07338296622037888, 0.0036314702592790127, -0.014960799366235733, 0.002024885732680559, -0.08324979245662689, 0.0002663268824107945, 0.04973316192626953, 0.03351873531937599, 0.0431053526699543, -0.008763106539845467, -0.006703259889036417, -0.038653913885354996, 0.010427077300846577, 0.01914970949292183, 0.0007418185705319047, 0.035051941871643066, -0.048194319009780884, 0.09512761980295181, 0.036466240882873535, -0.02673444338142872, -0.02122507616877556, -0.03864524886012077, -0.006339551880955696, 0.002114919712767005, -0.030941225588321686, -0.04062452167272568, -0.03523596003651619, -0.0924718827009201, -0.009452001191675663, 0.016316929832100868, -0.020187193527817726, -0.04177467152476311, -0.0034863038454204798, 0.019345903769135475, -0.057912833988666534, 0.06018238887190819, -0.04705030843615532, 0.03934117779135704, 0.00003738025407074019, -0.024977659806609154, -0.0076094502583146095, 0.006951684597879648, 0.004911111667752266, 0.022484906017780304, 0.006900937296450138, -0.04506203159689903, -0.01058933511376381, -0.028655504807829857, 0.020554834976792336, 0.03396774083375931, 0.010299794375896454, 0.013582851737737656 ]
[ -0.06169396638870239, -0.02126738242805004, -0.04590635001659393, -0.019937561824917793, 0.049227144569158554, -0.047682859003543854, -0.01298629492521286, 0.008976961486041546, -0.004047995433211327, -0.027441423386335373, 0.013015177100896835, -0.03323553875088692, -0.0021591230761259794, 0.010952365584671497, 0.07618175446987152, 0.01103146094828844, -0.045399729162454605, -0.02921508625149727, -0.014596673659980297, 0.02907911315560341, 0.0057803913950920105, -0.038931962102651596, -0.03079414740204811, -0.0370304211974144, -0.006142579950392246, 0.0448065884411335, 0.034045685082674026, -0.011559088714420795, 0.002566235139966011, -0.2040410041809082, 0.025799395516514778, 0.011674229055643082, 0.0247423704713583, -0.001586752012372017, 0.01807376556098461, 0.05942455679178238, 0.02637341618537903, 0.0037258632946759462, -0.004124059341847897, 0.06324141472578049, 0.014537891373038292, 0.0030933849047869444, -0.06754584610462189, -0.006091464310884476, 0.04105620086193085, 0.0052595846354961395, -0.018520092591643333, -0.02692953124642372, -0.0314425565302372, 0.010748738422989845, -0.048283275216817856, -0.01352346409112215, 0.00006200715870363638, -0.018417956307530403, 0.011443177238106728, 0.05021464079618454, 0.046270497143268585, 0.07965299487113953, 0.029308030381798744, 0.049157626926898956, 0.024028504267334938, -0.00015297303616534919, -0.13800007104873657, 0.06833183020353317, 0.018820172175765038, 0.030085265636444092, -0.07360664755105972, -0.02033853717148304, -0.0369342677295208, 0.10283095389604568, 0.033838242292404175, -0.016933530569076538, -0.029780348762869835, 0.06232842430472374, 0.0026863066013902426, 0.0041153691709041595, -0.009165287017822266, 0.022650761529803276, 0.03341270610690117, -0.05005555972456932, -0.04458305239677429, 0.0033870525658130646, -0.04089358076453209, -0.02283315174281597, -0.04134764149785042, 0.04889041557908058, -0.045458003878593445, 0.056869491934776306, -0.001872467459179461, 0.04502653330564499, 0.020511331036686897, -0.006691502407193184, 0.04380381479859352, 0.021921364590525627, -0.08500999212265015, -0.00953976996243, 0.017087304964661598, 0.0282447449862957, -0.03776029869914055, 0.41493457555770874, 0.011540111154317856, -0.01774124801158905, 0.03607027605175972, 0.05411612614989281, -0.015279577113687992, -0.015127468854188919, 0.005037881433963776, -0.06514348834753036, 0.02099122479557991, -0.013390774838626385, -0.02604348212480545, -0.022266166284680367, 0.04643095284700394, -0.08761418610811234, 0.020895060151815414, -0.005279130302369595, 0.029291795566678047, 0.009925628080964088, -0.006556259468197823, 0.01424859743565321, -0.005424834322184324, 0.01786680519580841, 0.04568595066666603, 0.009574029594659805, 0.015232821926474571, 0.010404713451862335, 0.02220349945127964, 0.0432741641998291, 0.020979737862944603, 0.02378852851688862, 0.06411162763834, 0.029024994000792503, -0.0720745399594307, 0.03253018110990524, -0.0027667961549013853, 0.01746026985347271, 0.047095466405153275, -0.039721179753541946, -0.015013319440186024, 0.01922992244362831, 0.004183527547866106, 0.015262627974152565, 0.0039839972741901875, 0.008993715979158878, -0.03194429725408554, 0.1208483949303627, -0.007344438694417477, -0.03550679609179497, -0.02435319684445858, -0.02105034328997135, -0.016301419585943222, 0.04667973145842552, -0.001239986508153379, -0.049757424741983414, -0.009145953692495823, 0.024105941876769066, 0.07713635265827179, -0.026310697197914124, -0.08277277648448944, 0.021115103736519814, -0.014480860903859138, -0.03672461211681366, -0.040334343910217285, 0.07535558193922043, 0.03196530044078827, -0.09925252199172974, -0.02636602707207203, 0.0029753586277365685, -0.004964673426002264, -0.0773095041513443, 0.013494595885276794, -0.0007017997559159994, -0.02069063112139702, -0.0007141162641346455, 0.05018048360943794, -0.01684410870075226, -0.02074640616774559, -0.008389073424041271, 0.040651172399520874, 0.002818586304783821, -0.010852954350411892, -0.009495834819972515, -0.04005739837884903, -0.012848636135458946, -0.07266993075609207, -0.06919223815202713, -0.07303143292665482, 0.005984834395349026, -0.03590543568134308, -0.04182864725589752, -0.0006679045618511736, 0.019582483917474747, -0.048196084797382355, 0.08092905580997467, -0.04291170462965965, -0.029591964557766914, -0.009364202618598938, 0.01038350909948349, -0.029997700825333595, -0.024753479287028313, 0.0053733354434370995, 0.03484230488538742, -0.014858677051961422, 0.008874710649251938, -0.07204633951187134, 0.002585548209026456, 0.04818253964185715, -0.016343185678124428, 0.07166352868080139, 0.022943302989006042, -0.05359753221273422, 0.02046884223818779, 0.002736342139542103, 0.03791175037622452, -0.017490582540631294, -0.011709197424352169, -0.01071960013359785, -0.01847943663597107, 0.045678816735744476, 0.03401193767786026, -0.04858173802495003, -0.030421698465943336, -0.019382722675800323, -0.36241406202316284, -0.030736200511455536, -0.009578314609825611, -0.005316810216754675, 0.016234230250120163, -0.04031600430607796, 0.03603687137365341, -0.014080395922064781, -0.0021191316191107035, 0.006197777111083269, 0.07838233560323715, -0.025581512600183487, 0.009221852757036686, -0.07653386145830154, -0.0029452480375766754, 0.03946235775947571, -0.02213072031736374, -0.024437738582491875, -0.032076217234134674, 0.021061157807707787, 0.011209823191165924, -0.0287557952105999, -0.025739116594195366, -0.06692781299352646, -0.016862517222762108, -0.02396886795759201, 0.12856756150722504, 0.011002184823155403, 0.056285709142684937, -0.0441054068505764, 0.03584243729710579, 0.013557752594351768, -0.014185186475515366, -0.10728234052658081, -0.01016172207891941, -0.01527031883597374, 0.0377565436065197, 0.011289373971521854, 0.024471204727888107, 0.0031437051948159933, -0.04676976054906845, -0.01951994001865387, -0.05908311530947685, -0.05075947567820549, -0.0074015348218381405, 0.02533215656876564, -0.04680240899324417, -0.009658638387918472, 0.02002068981528282, 0.07511039823293686, 0.022807803004980087, 0.018678728491067886, -0.010914790444076061, 0.022011563181877136, -0.0024266026448458433, -0.04172243922948837, -0.07357929646968842, -0.02399609237909317, 0.015707578510046005, 0.016665620729327202, 0.0192329753190279, 0.03656677529215813, 0.034944646060466766, -0.07610572129487991, 0.018121136352419853, 0.007138678338378668, -0.000820065732114017, -0.0013373125111684203, 0.019934331998229027, -0.03864242881536484, -0.013997234404087067, 0.12289237976074219, 0.009679187089204788, 0.0035475764889270067, 0.03537341579794884, 0.05159001797437668, -0.023844968527555466, 0.020800471305847168, 0.030448539182543755, 0.017165862023830414, 0.009248437359929085, -0.0008595534018240869, 0.05528542026877403, -0.028074560686945915, -0.02240600250661373, 0.05022500455379486, 0.009218168444931507, -0.05894637107849121, 0.07227745652198792, -0.006324497051537037, -0.03159293159842491, 0.009528829716145992, -0.021411968395113945, -0.04479879513382912, 0.09026891738176346, -0.021208390593528748, -0.26539933681488037, 0.04058957099914551, 0.03806426003575325, 0.059963785111904144, -0.006462695077061653, 0.020713835954666138, 0.036946266889572144, -0.03550739958882332, -0.008786517195403576, -0.0042420802637934685, 0.024612559005618095, 0.05174931138753891, 0.005148633848875761, 0.009301593527197838, -0.006848076358437538, -0.006669352762401104, 0.03126522898674011, 0.008610161021351814, 0.013913510367274284, -0.018197378143668175, 0.021429071202874184, -0.006449324078857899, 0.17696087062358856, 0.02389255166053772, -0.008765670470893383, 0.02411828562617302, -0.025683017447590828, 0.006881983019411564, 0.06365826725959778, 0.0030949420761317015, -0.005411263555288315, 0.0488317497074604, 0.008394286036491394, 0.032698169350624084, 0.044817741960287094, -0.061458319425582886, -0.01161536481231451, 0.043355949223041534, 0.036011796444654465, -0.019017817452549934, -0.019122926518321037, 0.02738329768180847, -0.03274376690387726, 0.03701333329081535, 0.06332463771104813, -0.015129047445952892, -0.0061792973428964615, -0.004297461826354265, -0.06295621395111084, 0.005855209194123745, -0.0362284854054451, -0.03869215399026871, -0.041849534958601, -0.022435875609517097, 0.0048318165354430676, 0.06096811592578888, 0.019018009305000305, -0.01974877156317234, -0.0016513584414497018, 0.02733832597732544, -0.007786345202475786, -0.039241865277290344, 0.1256369799375534, -0.0017917553195729852, -0.006989642977714539 ]
[ 0.04196924343705177, 0.06793415546417236, -0.017926042899489403, 0.044478889554739, -0.016873905435204506, 0.01096081081777811, -0.031192729249596596, -0.023529265075922012, -0.027555787935853004, -0.022276464849710464, -0.04941059648990631, 0.012654297985136509, 0.03634878247976303, -0.010462039150297642, 0.0008489699102938175, 0.016930904239416122, 0.01853870041668415, 0.015540516003966331, 0.022548450157046318, -0.02678336203098297, -0.025228282436728477, 0.006025876849889755, 0.033489521592855453, -0.02785133384168148, -0.02975853718817234, 0.01723136194050312, -0.03482940047979355, -0.00860647577792406, 0.028015051037073135, -0.10601603239774704, -0.0023523049894720316, -0.03502499684691429, -0.0006164140650071204, 0.01223632600158453, -0.025655144825577736, 0.01807335391640663, 0.05606479570269585, -0.007914789021015167, 0.011218163184821606, 0.03611432760953903, 0.03282126411795616, 0.02025703154504299, -0.046608589589595795, 0.006786732468754053, 0.027290916070342064, -0.0141670610755682, -0.02578081376850605, -0.03384564444422722, 0.011484201066195965, 0.0012571611441671848, -0.06350591778755188, -0.03541334718465805, -0.007429024204611778, -0.01766689121723175, 0.012275037355720997, -0.0462450236082077, -0.024133412167429924, -0.004383926745504141, 0.002194163855165243, 0.011446185410022736, 0.04315010458230972, -0.0026690419763326645, -0.014479304663836956, -0.032677192240953445, 0.009008890017867088, -0.008706856518983841, -0.024547597393393517, 0.0016601886600255966, 0.009070377796888351, 0.007581035606563091, 0.011060627177357674, 0.004567787516862154, -0.08816542476415634, -0.028860997408628464, -0.03222440183162689, 0.0025319235865026712, 0.05421972647309303, -0.03337983414530754, -0.009558480232954025, 0.008558408357203007, -0.016336988657712936, 0.009260125458240509, -0.018206583335995674, -0.006390201393514872, -0.055284902453422546, 0.012744388543069363, -0.022228021174669266, -0.015975380316376686, 0.021700797602534294, 0.008814363740384579, -0.05227145180106163, -0.01827024109661579, -0.029819918796420097, -0.022080762311816216, -0.05840074643492699, 0.011541489511728287, 0.003482176922261715, 0.0014734640717506409, -0.02831171452999115, 0.8025563955307007, 0.005927311256527901, -0.015702540054917336, -0.012526320293545723, -0.004395775962620974, -0.012709112837910652, 0.006695650517940521, 0.030225181952118874, 0.01894836686551571, -0.03171032294631004, 0.001521560363471508, -0.007186656352132559, 0.049076080322265625, 0.031964261084795, 0.024225065484642982, 0.02229497581720352, 0.0199197456240654, 0.045362815260887146, 0.007074326742440462, -0.004816671367734671, 0.03226545825600624, 0.021970480680465698, 0.026790576055645943, 0.015951288864016533, 0.002013323362916708, 0.0022661425173282623, -0.17149627208709717, 0.00582789396867156, -7.318476483321894e-33, 0.06997918337583542, 0.013077843002974987, 0.06829968094825745, 0.021190132945775986, 0.018155064433813095, -0.0007580508827231824, 0.021633528172969818, -0.038524795323610306, -0.007956747896969318, -0.029700592160224915, 0.018823912367224693, -0.011165335774421692, 0.019769571721553802, 0.01165460329502821, -0.005191033706068993, -0.0401415079832077, 0.012109425850212574, 0.015296829864382744, 0.008113572373986244, -0.012745777145028114, 0.0010152616305276752, 0.0331234373152256, -0.015910090878605843, 0.046625204384326935, -0.025014808401465416, 0.01966574229300022, 0.00962929055094719, -0.0037157584447413683, -0.0018535046838223934, -0.04494848474860191, -0.054240576922893524, 0.05793147534132004, -0.015049257315695286, -0.03533008694648743, 0.026558302342891693, -0.06163525581359863, -0.013281546533107758, 0.016707362607121468, -0.03383878618478775, -0.06952735781669617, -0.04149961844086647, 0.038155823945999146, -0.02055414579808712, -0.03733441233634949, -0.049328211694955826, -0.035042598843574524, 0.0008219238370656967, 0.04657794535160065, 0.02985440567135811, 0.0163370743393898, -0.013238899409770966, 0.02189125493168831, 0.01903548464179039, 0.034001220017671585, -0.02228729985654354, -0.015408537350594997, 0.009044719859957695, 0.02102041058242321, -0.019492212682962418, -0.013577617704868317, 0.031836915761232376, -0.03171180188655853, -0.010276797227561474, 0.06316328048706055, 0.04656295105814934, 0.004720872733741999, 0.0037788012996315956, 0.029053406789898872, 0.04411281272768974, 0.057282183319330215, -0.03191839158535004, 0.05327839031815529, -0.021968025714159012, -0.01996546983718872, 0.01538117602467537, -0.07587160170078278, -0.01654307171702385, -0.024391891434788704, 0.006625724490731955, 0.04674295336008072, 0.00541237648576498, -0.005810488481074572, -0.018173256888985634, -0.03505931422114372, 0.012178021483123302, -0.013196416199207306, 0.026775190606713295, 0.03814823552966118, 0.02016422152519226, 0.007357945665717125, 0.0485135093331337, 0.027368834242224693, 0.015834812074899673, -0.037553563714027405, -0.015426130034029484, 7.051205802143369e-33, -0.008276628330349922, 0.00031164559186436236, -0.012844083830714226, 0.025246916338801384, 0.019489292055368423, -0.01054969523102045, 0.014188865199685097, -0.007687863893806934, -0.04667943716049194, 0.0686824768781662, 0.00034380433498881757, -0.026980509981513023, 0.01351953111588955, 0.031032120808959007, 0.06998930871486664, -0.013222074136137962, -0.00920324306935072, -0.05311162397265434, 0.023955604061484337, 0.01431693322956562, -0.02470468170940876, 0.007208237890154123, -0.01963307522237301, 0.03366818651556969, 0.028299624100327492, 0.027675800025463104, -0.03099130652844906, 0.019517116248607635, -0.017560379579663277, -0.027680495753884315, -0.011320016346871853, -0.04423210397362709, -0.008095651865005493, -0.01863713376224041, -0.01339285634458065, 0.0037773570511490107, -0.007318552117794752, 0.04707154259085655, 0.029714519158005714, -0.001108196098357439, 0.01905982941389084, 0.011241044849157333, -0.014933225698769093, 0.07671020179986954, 0.009503195062279701, 0.0002547002222854644, -0.0027292014565318823, 0.01896429993212223, -0.00860707089304924, 0.025451937690377235, -0.01652178168296814, 0.002009358024224639, -0.046316180378198624, -0.0039545753970742226, 0.004438532516360283, -0.07804744690656662, -0.0068103545345366, 0.02346815913915634, -0.03930075094103813, 0.0137251578271389, -0.029511960223317146, 0.00905704963952303, -0.007815798744559288, 0.028841465711593628, -0.013281571678817272, -0.026715246960520744, -0.02881094440817833, -0.03963414579629898, -0.0004537412023637444, -0.011282834224402905, 0.012568240985274315, -0.004052026197314262, 0.022153032943606377, 0.03114863857626915, 0.03966083005070686, -0.01701929420232773, -0.028325673192739487, 0.012085207737982273, -0.05888732522726059, 0.02876780927181244, 0.00016816036077216268, -0.004328035283833742, 0.011582482606172562, 0.021224964410066605, 0.01906842179596424, -0.007337179034948349, -0.04361173138022423, 0.04181855916976929, -0.03809037432074547, 0.006737453863024712, 0.02439483255147934, -0.010829737409949303, -0.03741973638534546, 0.04018528386950493, -0.03668714687228203, -1.2676427019187031e-8, -0.04741942137479782, 0.01345057226717472, -0.0114462124183774, 0.020251378417015076, -0.02265229821205139, 0.021668097004294395, -0.002776404609903693, 0.008979275822639465, 0.004163655452430248, 0.010671334341168404, 0.036396920680999756, -0.017344322055578232, 0.014401408843696117, -0.011885248124599457, 0.0327509306371212, -0.09048488736152649, 0.025538956746459007, -0.027574116364121437, 0.022206876426935196, -0.005602671764791012, -0.017097890377044678, 0.01826596073806286, -0.014213656075298786, 0.01239016279578209, 0.0003069613594561815, -0.0167301744222641, 0.01707039400935173, -0.0606888085603714, -0.019159039482474327, -0.013714330270886421, 0.02843281999230385, -0.015302346087992191, 0.000529681274201721, -0.0012915333500131965, -0.04521717131137848, -0.047624487429857254, 0.024386083707213402, 0.03359345719218254, 0.019986389204859734, 0.026743093505501747, 0.013081874698400497, 0.03981805220246315, -0.026896245777606964, -0.0383654423058033, -0.029090728610754013, -0.006507772486656904, -0.03625337779521942, 0.005895476322621107, 0.04446937143802643, -0.049594711512327194, -0.016436561942100525, -0.01689968816936016, 0.03490252047777176, 0.02540881186723709, 0.05901471897959709, 0.0243143942207098, 0.01938694901764393, -0.02383545972406864, 0.022124608978629112, -0.002204976975917816, 0.047624606639146805, -0.001029228325933218, -0.034918155521154404, -0.014561902731657028 ]
functional-thinking-separating-concerns
https://markhneedham.com/blog/2012/06/12/functional-thinking-separating-concerns
false
2012-12-04 23:38:39
Micro Services: Plugging in 3rd party components
[ "micro-services-2" ]
[ "Micro Services" ]
Over the past few weeks I've been involved in conversations with different clients around micro services and one thing about this architecture that seems quite popular is the ability to easily plug in 3rd party components. In one case we were talking through the design of a system which would calculate and then apply price optimisations on products. The parts of the system we were discussing looked roughly like this: image:{{<siteurl>}}/uploads/2012/12/micro-services.png[Micro services,357] As per the annotations, one of the questions asked was whether it would be possible to start out with the assumption that each component would be custom built and then assess that decision after a few weeks. An advantage of splitting each of the components into their own application is that we could reasonably easily plug in a 3rd party tool behind the boundary while keeping all the HTTP wiring as custom code. This allows us to get going quickly and write simple stubs in place of the main logic of some of the components to begin with. We can defer the integration/learning curve of the 3rd party component while we prove out the architecture as a whole. In addition we are not letting the 3rd party component drive the design of our system but instead allowing it to play a supporting role. One final thing to note is that since each component is a separate application *it's much easier to have different teams working on each one* than it would be if they were all contained in the same application. There would need to be communication between teams around the design of contracts between the services but after an initial period of churn hopefully those would become reasonably stable.
null
null
[ 0.024082785472273827, -0.004445323720574379, 0.008895852603018284, 0.05840035155415535, 0.08232975006103516, 0.0259286817163229, 0.022830408066511154, 0.0371905155479908, 0.022750314325094223, -0.02945108711719513, -0.0158563069999218, -0.000048428508307551965, -0.06422862410545349, 0.028421815484762192, -0.039528366178274155, 0.05578408017754555, 0.07521750777959824, 0.001226085121743381, 0.02459683269262314, 0.0029730082023888826, 0.020294951274991035, 0.07290636748075485, 0.025381965562701225, 0.036475103348493576, 0.024380430579185486, 0.022110503166913986, 0.014406590722501278, -0.003929364029318094, -0.05807515233755112, -0.010979742743074894, 0.05246196314692497, 0.004784893244504929, -0.005986446980386972, -0.005346597637981176, 0.022938543930649757, -0.01629052683711052, -0.023068595677614212, 0.02527066320180893, -0.004495741333812475, -0.00941801443696022, -0.07387849688529968, 0.05119329318404198, 0.006386971566826105, -0.0052895257249474525, -0.044626493006944656, 0.006288742180913687, -0.03861662372946739, 0.01622220128774643, -0.021937360987067223, 0.0011526336893439293, -0.0907195582985878, 0.010360276326537132, -0.030210651457309723, 0.01209898479282856, -0.010655439458787441, 0.03433405980467796, 0.012121452018618584, -0.04841117933392525, 0.000293633813271299, -0.050431717187166214, -0.00422966293990612, -0.01241648942232132, 0.016800539568066597, 0.02312217839062214, 0.0055137574672698975, -0.022961432114243507, 0.009814983233809471, 0.045354213565588, -0.044397421181201935, 0.0158561822026968, -0.004728352185338736, 0.0024410593323409557, -0.026927094906568527, -0.014068651013076305, 0.0026214648969471455, -0.05431686341762543, -0.01848706603050232, 0.0609833225607872, 0.023005759343504906, 0.042031485587358475, -0.019710371270775795, 0.010184374637901783, 0.00035721214953809977, 0.02144503779709339, -0.006277345586568117, -0.04583679512143135, -0.01471624057739973, -0.007237276993691921, -0.06273198127746582, 0.06770887225866318, 0.03321238234639168, -0.0603012852370739, 0.024020235985517502, 0.03481310233473778, 0.0033155488781630993, 0.007587670348584652, 0.021516285836696625, 0.006403076928108931, 0.00782367680221796, -0.0069860052317380905, -0.002586259040981531, 0.005304854828864336, -0.013561257161200047, -0.001476850127801299, -0.07175453007221222, -0.013307882472872734, -0.006365644279867411, -0.009160210378468037, 0.003246199805289507, -0.005097358487546444, -0.022455856204032898, -0.0018086277414113283, -0.005246450658887625, 0.0166664719581604, -0.06739576905965805, 0.08594470471143723, 0.0006984779611229897, -0.03462636098265648, -0.01817925088107586, 0.0066387839615345, 0.05854808911681175, 0.02864156849682331, -0.029055964201688766, 0.07115523517131805, 0.004272169899195433, 0.0016626616707071662, -0.01935376413166523, 0.052832234650850296, -0.018882358446717262, -0.06960639357566833, -0.02120315097272396, 0.05467123165726662, -0.03387576714158058, 0.005906389094889164, -0.005205449182540178, -0.03484613075852394, 0.0141021478921175, 0.0021496217232197523, 0.036924637854099274, 0.0048260996118187904, -0.02061271108686924, -0.0484253466129303, 0.025993304327130318, 0.009318222291767597, 0.02052762359380722, -0.005110782105475664, 0.02341199666261673, -0.045508306473493576, -0.04615631699562073, -0.011746415868401527, -0.011195453815162182, 0.022279350087046623, 0.026554029434919357, -0.04188837856054306, 0.0239164587110281, 0.098036989569664, 0.05637199804186821, 0.006125588435679674, -0.019310900941491127, 0.025141363963484764, 0.028344344347715378, 0.017289893701672554, 0.020144250243902206, 0.016488123685121536, 0.02035326324403286, -0.005509424488991499, -0.004441756755113602, 0.039231255650520325, 0.029775191098451614, 0.01461534108966589, -0.07262337952852249, -0.06702446192502975, 0.053288158029317856, -0.035408951342105865, -0.0061143673956394196, 0.056411322206258774, 0.09644606709480286, 0.03486240282654762, 0.04177045077085495, 0.01540954690426588, -0.08680817484855652, 0.027770718559622765, 0.011872249655425549, 0.010803584940731525, 0.057684872299432755, -0.006186984945088625, 0.05728372931480408, 0.04033256322145462, -0.03798925504088402, 0.0259854719042778, -0.075010284781456, -0.09607663750648499, -0.032440442591905594, -0.009974636137485504, 0.048214759677648544, -0.02420063130557537, -0.0004579444066621363, 0.07838742434978485, 0.02426254004240036, 0.047852642834186554, 0.021609267219901085, 0.010639682412147522, 0.006749860942363739, -0.03282882273197174, -0.051282476633787155, 0.03018193691968918, 0.03919706493616104, -0.002137990901246667, -0.047605205327272415, 0.008874600753188133, -0.02628016099333763, -0.02461772784590721, 0.03267872333526611, -0.043320152908563614, 0.04309092089533806, -0.007557997014373541, 0.04496105760335922, -0.030337905511260033, 0.03699670359492302, -0.059151891618967056, 0.01095703337341547, -0.01434953510761261, -0.025745145976543427, 0.04170970618724823, -0.005789989605545998, 0.11529573798179626, 0.06233229860663414, -0.060464344918727875, -0.0334654226899147, 0.01813378743827343, 0.01832730881869793, -0.06080332025885582, -0.010151123628020287, -0.030786102637648582, 0.013362118974328041, 0.0031447596848011017, -0.06995544582605362, -0.016792062669992447, 0.01984337717294693, -0.049588367342948914, -0.007692788261920214, 0.06813272833824158, -0.02067871019244194, 0.062333326786756516, -0.004542278591543436, -0.009044225327670574, -0.020848451182246208, -0.035821929574012756, -0.04189909249544144, 0.01755519211292267, 0.014068558812141418, -0.008505329489707947, 0.04142678529024124, -0.03181098774075508, -0.018171334639191628, -0.04213632270693779, -0.014547479338943958, 0.025738021358847618, 0.02459380216896534, 0.05655301734805107, -0.012331913225352764, 0.054580580443143845, 0.00007734564860584214, 0.03813900426030159, -0.010396529920399189, -0.05969022959470749, -0.020966680720448494, -0.015884768217802048, 0.001105580129660666, 0.032692618668079376, 0.023256801068782806, -0.0013766754418611526, 0.027928126975893974, 0.004060233011841774, 0.004498105030506849, -0.015158090740442276, 0.0279950350522995, 0.007081599440425634, 0.0030349143780767918, -0.03052779659628868, -0.012469283305108547, 0.06403268128633499, -0.04887225851416588, -0.04459690675139427, -0.00276968814432621, -0.08206746727228165, 0.052421241998672485, -0.07178140431642532, -0.034614790230989456, -0.011396098881959915, 0.03287883475422859, 0.04413612559437752, 0.002590729156509042, 0.026852862909436226, 0.06783255189657211, 0.012598836794495583, -0.010810675099492073, 0.015771599486470222, -0.007393303792923689, 0.013809860683977604, -0.012073651887476444, 0.011690402403473854, 0.04652190953493118, -0.00291458354331553, 0.020733335986733437, -0.060360297560691833, 0.03854435309767723, -0.04117387533187866, -0.28553539514541626, 0.01376013271510601, 0.017195237800478935, -0.05292249470949173, 0.04032725840806961, -0.022047828882932663, 0.006276214495301247, -0.05618743598461151, -0.0032600241247564554, 0.013257956132292747, -0.017542818561196327, -0.04486638680100441, -0.0011530619813129306, 0.024708593264222145, 0.00316486950032413, 0.016775671392679214, 0.012601806782186031, -0.025881176814436913, 0.015863198786973953, 0.022613152861595154, -0.01634792797267437, -0.08420808613300323, 0.0163766760379076, 0.023227054625749588, 0.03562401607632637, 0.04363429173827171, -0.08088324218988419, 0.03195574879646301, -0.04204768314957619, -0.013970671221613884, 0.013653119094669819, -0.010587427765130997, -0.015273194760084152, -0.024256132543087006, -0.02355128899216652, -0.030987054109573364, 0.0404486320912838, 0.008522610180079937, 0.01496188249439001, -0.0008630931843072176, -0.010642746463418007, -0.029841257259249687, 0.01085157785564661, 0.010219955816864967, 0.07104376703500748, -0.01466359756886959, -0.07230706512928009, 0.0017210814403370023, -0.04504358023405075, 0.08707427978515625, -0.018048161640763283, -0.015436270274221897, -0.0046901460736989975, 0.041713472455739975, -0.028673846274614334, -0.02541111409664154, -0.011485605500638485, -0.012559107504785061, -0.05383134260773659, -0.009958678856492043, -0.01358314324170351, -0.031367234885692596, -0.020177045837044716, -0.04157593101263046, 0.0031881891191005707, -0.04704463854432106, -0.05166955664753914, -0.0272629726678133, 0.083604596555233, 0.009048756211996078, -0.02002793736755848, 0.023578736931085587, 0.009761851280927658, -0.11005699634552002, 0.04514588788151741, -0.017760293558239937, -0.004372596740722656, 0.0033400359097868204, 0.01958470605313778, 0.03814771771430969, 0.012585426680743694, -0.06139393895864487, 0.01526900939643383, 0.0012132797855883837, 0.03136393800377846, -0.01656138338148594, 0.03701019287109375, 0.027167322114109993, -0.02888692170381546, 0.012350489385426044, 0.07709751278162003, -0.0032209681812673807, -0.01724964752793312, -0.035533033311367035, 0.01239104475826025, 0.00948173925280571, 0.008094812743365765, -0.01065194420516491, -0.0054290504194796085, 0.03328954800963402, 0.011319169774651527, -0.058099228888750076, 0.011241398751735687, 0.000004073966920259409, -0.00878345686942339, -0.01657489500939846, -0.0503605492413044, 0.0011356576578691602, 0.036793921142816544, 0.033525723963975906, -0.0010768146021291614, -0.03773019090294838, 0.003293538698926568, -0.052537668496370316, -0.0434049554169178, -0.023303750902414322, -0.005031556356698275, 0.053273431956768036, -0.0029683755710721016, -0.008826379664242268, -0.04238607734441757, 0.023728715255856514, 0.027333782985806465, 0.003478193888440728, -0.055313244462013245, -0.010194987989962101, -0.025520645081996918, -0.0025639792438596487, 0.01709403656423092, 0.014720406383275986, 0.003314174013212323, 0.01644359529018402, 0.020775815472006798, -0.04777536168694496, 0.01721096597611904, -0.001756245968863368, -0.05815274268388748, -0.021741824224591255, 0.0028034616261720657, 0.0026910819578915834, 0.003929037135094404, 0.033434126526117325, 0.024318404495716095, 0.0092749809846282, 0.031316500157117844, 0.011667830869555473, 0.029278138652443886, -0.006611935794353485, 0.04110234975814819, 0.002461087889969349, 0.0004895635647699237, -0.08688443899154663, 0.016777150332927704, -0.0398138128221035, -0.02072547748684883, -0.033854082226753235, 0.03251795843243599, -0.0214918851852417, -0.035805609077215195, -0.010196859017014503, -0.006298594642430544, -0.0640205591917038, -0.0633041262626648, -0.01064006332308054, 0.022794071584939957, 0.07027008384466171, -0.039524272084236145, 0.0017741993069648743, -0.010302423499524593, -0.010149070993065834, 0.01960444450378418, 0.02531910128891468, -0.053430888801813126, 0.006878729443997145, 0.022630885243415833, 0.021552424877882004, -0.0005936304805800319, -0.006200042553246021, 0.05500073358416557, 0.01642700657248497, 0.01118274126201868, -0.014367042109370232, 0.006228231824934483, 0.011670196428894997, 0.057764600962400436, 0.029714880511164665, -0.017566677182912827, 0.012100763618946075, -0.01405780017375946, -0.019181247800588608, -0.02560361474752426, -0.0058820596896111965, -0.0071073113940656185, 0.005458566825836897, -0.02364441007375717, -0.09062940627336502, 0.03701891005039215, 0.012279042042791843, 0.01877760887145996, -0.011070881970226765, 0.002657081698998809, 0.018620586022734642, -0.03156960383057594, 0.03432570397853851, 0.05042771250009537, -0.07702586054801941, 0.018412435427308083, 0.0007624209392815828, 0.006967807654291391, 0.02538266032934189, 0.0023132001515477896, -0.03272873908281326, -0.017097556963562965, -0.0069928704760968685, -0.006609857082366943, -0.05975218117237091, -0.021255360916256905, -0.016152717173099518, 0.004359627608209848, 0.0035122758708894253, -0.014043787494301796, -0.019842414185404778, -0.01992040127515793, -0.02751730941236019, -0.03551920875906944, 0.0390322282910347, -0.0243113674223423, 0.012501539662480354, -0.009372195228934288, -0.0364312045276165, 0.00008133921801345423, -0.03144824877381325, -0.0026738480664789677, 0.01702963002026081, -0.019341591745615005, -0.0017947967862710357, -0.03326025605201721, -0.006169923115521669, 0.007081725634634495, 0.04030586779117584, -0.030867690220475197, -0.01766137219965458, -0.04716033115983009, -0.013446266762912273, -0.03920316696166992, 0.023189835250377655, -0.009422232396900654, 0.01292621809989214, -0.004025426227599382, 0.06159726902842522, -0.0022040558978915215, 0.0174859706312418, -0.011400764808058739, -0.010458235628902912, 0.06634996831417084, -0.06276541948318481, -0.03886370733380318, -0.03945419564843178, -0.06066076457500458, -0.016320114955306053, -0.007813768461346626, 0.008875558152794838, -0.0162995383143425, 0.04430962726473808, 0.04878067225217819, 0.014819882810115814, 0.024680331349372864, 0.0015207272954285145, 0.04115578159689903, -0.07043662667274475, 0.0027949432842433453, -0.07373488694429398, 0.02688220702111721, 0.0468347929418087, 0.019320184364914894, -0.003475288627669215, -0.0005975886015221477, -0.04635976627469063, 0.05670923367142677, -0.06586357951164246, -0.024549977853894234, 0.03176319971680641, -0.0035633272491395473, -0.008249476552009583, 0.00969114899635315, -0.07722707092761993, 0.02594051882624626, 0.027606192976236343, -0.040659379214048386, -0.024312177672982216, -0.02116353251039982, 0.05652836337685585, 0.006167989689856768, 0.04506765305995941, -0.04041719436645508, -0.00711821997538209, 0.07232649624347687, 0.0012240596115589142, 0.005040670745074749, 0.04978996515274048, -0.005567649845033884, 0.026967853307724, 0.028552619740366936, 0.001919895177707076, -0.002897062338888645, 0.02758021280169487, -0.011876499280333519, -0.06250173598527908, 0.03522467240691185, 0.0028138242196291685, -0.031128747388720512, -0.050214361399412155, 0.056416187435388565, 0.017873970791697502, -0.02827797271311283, -0.0473313145339489, 0.016169076785445213, -0.05490006506443024, -0.004978017415851355, -0.01874122954905033, -0.009882125072181225, -0.021218005567789078, 0.04941004514694214, -0.011215297505259514, 0.020212629809975624, 0.08228709548711777, 0.028885845094919205, -0.02048943005502224, -0.0257197804749012, 0.09186931699514389, 0.07278990000486374, 0.06221973896026611, 0.013734778389334679, 0.06254719942808151, -0.01621531881392002, -0.045027270913124084, 0.032830554991960526, -0.0140165314078331, -0.025871815159916878, -0.011628647334873676, 0.029830167070031166, 0.05317344516515732, -0.005037300754338503, 0.062134724110364914, -0.013336625881493092, -0.016985585913062096, 0.016492167487740517, 0.041625186800956726, 0.017526617273688316, 0.07409805804491043, 0.013731371611356735, 0.01897057332098484, 0.010143186897039413, -0.041940297931432724, 0.004890107084065676, -0.023696517571806908, -0.020689651370048523, 0.042397160083055496, 0.006309605203568935, 0.0183139406144619, 0.01933220401406288, 0.017217319458723068, 0.08443968743085861, -0.04436434432864189, 0.0012505748309195042, -0.01671532355248928, 0.020997626706957817, 0.005419043358415365, 0.01942087896168232, -0.03293897584080696, -0.02510889060795307, -0.0064554521813988686, -0.025385944172739983, -0.01824057102203369, -0.0021407438907772303, -0.002284694230183959, 0.05146413668990135, 0.0006275041960179806, 0.012767503038048744, 0.024466563016176224, 0.009449778124690056, -0.0455542616546154, -0.052722424268722534, -0.05973627790808678, -0.05131295695900917, -0.03848882019519806, -0.0224349033087492, 0.02759156934916973, -0.014273547567427158, -0.045578718185424805, -0.020600344985723495, -0.02454809471964836, -0.008083951659500599, 0.054583318531513214, -0.07028432190418243, -0.026841536164283752, 0.0019279021071270108, 0.006692751310765743, 0.037554580718278885, 0.008835859596729279, 0.06610456109046936, -0.013784216716885567, -0.005140076857060194, -0.025204328820109367, 0.01558250468224287, 0.015084088779985905, 0.014058604836463928, 0.014904937706887722, -0.08885250985622406, 0.016337430104613304, 0.01571706309914589, -0.008118674159049988, -0.0691777840256691, 0.011957663111388683, 0.009592716582119465, -0.011730252765119076, 0.06434197723865509, -0.018029188737273216, 0.006870586425065994, -0.023274384438991547, -0.0033204597420990467, -0.0049512069672346115, 0.029511531814932823, 0.025359593331813812, -0.0081919701769948, 0.07847293466329575, 0.047492992132902145, -0.004368852358311415, -0.028940724208950996, 0.01202002726495266, -0.007928033359348774, -0.010478837415575981, -0.014671938493847847, -0.021374382078647614, -0.022846216335892677, -0.08492524176836014, -0.03965158760547638, 0.013400021009147167, -0.02586938999593258, -0.049198687076568604, 0.027045832946896553, 0.01758640445768833, -0.02921835333108902, -0.00280915223993361, -0.05553068965673447, 0.04210532456636429, -0.030952848494052887, 0.005186355207115412, -0.00790584459900856, 0.017997119575738907, -0.004054944030940533, -0.0015783837297931314, 0.010002999566495419, -0.050019778311252594, 0.004325662273913622, -0.0003915489069186151, 0.01869124546647072, 0.03797948360443115, 0.024403782561421394, 0.003373925108462572 ]
[ -0.08493860065937042, -0.032452650368213654, -0.050324633717536926, -0.03301025927066803, 0.03788004070520401, -0.046076204627752304, -0.04392341524362564, 0.02151055820286274, -0.005650498904287815, -0.010553560219705105, 0.007726467680186033, -0.01762307994067669, 0.006538244429975748, -0.029726307839155197, 0.12095575779676437, 0.0051298984326422215, 0.016769438982009888, -0.07655370980501175, 0.02738489769399166, 0.041943494230508804, 0.019924834370613098, -0.05088439956307411, -0.06053417548537254, -0.0024251516442745924, 0.00952933356165886, -0.0017320278566330671, 0.03610498458147049, -0.01810760609805584, 0.0019084182567894459, -0.18219126760959625, 0.01790727861225605, 0.009807074442505836, 0.03348440304398537, -0.00008242591138696298, 0.03589733690023422, 0.03752656653523445, 0.028560714796185493, -0.005468029994517565, -0.009190747514367104, 0.025651659816503525, 0.0037789992056787014, 0.013196416199207306, -0.041769228875637054, -0.03180135041475296, 0.013300808146595955, -0.005226335488259792, -0.01600784622132778, -0.007523139473050833, -0.02625773288309574, 0.004415415693074465, -0.024149848148226738, -0.017196642234921455, -0.014270219020545483, -0.0037440659943968058, -0.0004321375454310328, 0.0395391583442688, 0.0321490615606308, 0.04701092466711998, -0.008824723772704601, 0.023205028846859932, 0.013784773647785187, -0.0033425951842218637, -0.1344924122095108, 0.11334794014692307, 0.04080693796277046, 0.06471329182386398, -0.01675851084291935, -0.020840613171458244, -0.025901807472109795, 0.08705326914787292, 0.013181939721107483, -0.02494545467197895, -0.02692997455596924, 0.03701097518205643, 0.006718785036355257, 0.000009642610166338272, 0.03345132991671562, 0.026930751278996468, 0.017090003937482834, -0.022518979385495186, -0.035980578511953354, -0.005825319793075323, -0.03690970689058304, 0.01173569168895483, -0.0641062930226326, 0.02257094532251358, -0.019971242174506187, 0.061183009296655655, 0.03657250851392746, 0.029347017407417297, 0.024002281948924065, -0.005307323299348354, 0.010419581085443497, -0.033058371394872665, -0.0730181336402893, -0.005741100758314133, -0.012608565390110016, -0.0060540735721588135, -0.06534335017204285, 0.4440506398677826, 0.016149692237377167, -0.02397388033568859, 0.09583383798599243, -0.016646064817905426, -0.00619787722826004, 0.017139116302132607, -0.012147713452577591, -0.03506128489971161, 0.010949288494884968, -0.012850933708250523, 0.012768663465976715, 0.034744296222925186, 0.044900353997945786, -0.025688832625746727, 0.004906988702714443, 0.019225597381591797, -0.024828361347317696, 0.0014417737256735563, 0.03464221954345703, -0.018305577337741852, -0.020001664757728577, 0.004909342620521784, 0.02541442960500717, 0.022387301549315453, -0.013904535211622715, -0.04977009817957878, 0.03583630174398422, 0.04633517563343048, 0.003965305630117655, 0.030583124607801437, 0.04100149869918823, -0.05237291008234024, -0.04834344610571861, -0.006029410753399134, 0.02017161063849926, -0.0012295658234506845, 0.02136126719415188, -0.016266845166683197, 0.002024541376158595, 0.06853697448968887, -0.04235443100333214, -0.0050603304989635944, 0.017411798238754272, -0.040611632168293, -0.019434664398431778, 0.11376133561134338, 0.03637664020061493, -0.01441709604114294, -0.009292591363191605, -0.03242068365216255, 0.004906442482024431, 0.04819527640938759, 0.004858844447880983, -0.05315288156270981, 0.020573602989315987, 0.0317559540271759, 0.06319333612918854, -0.0143149858340621, -0.05358690023422241, 0.007412461563944817, 0.02124766632914543, -0.0158682931214571, -0.04101733863353729, 0.06655553728342056, 0.03652941808104515, -0.1563708335161209, -0.00306112808175385, 0.0017011597519740462, 0.03573215380311012, -0.06019054353237152, -0.0395238995552063, 0.0491044744849205, -0.022642379626631737, -0.019218003377318382, 0.058449339121580124, -0.04196546599268913, -0.04911573603749275, 0.027299126610159874, 0.02129138447344303, 0.010337842628359795, -0.0054290080443024635, 0.031310439109802246, -0.02378368191421032, -0.023543333634734154, -0.027917876839637756, -0.09732735902070999, -0.0401291698217392, -0.00518207298591733, -0.053766798228025436, -0.020807556807994843, -0.06585817039012909, 0.009447894059121609, -0.0929860919713974, 0.10473637282848358, -0.006390042137354612, -0.03170004487037659, 0.023644397035241127, -0.015194198116660118, -0.014402109198272228, -0.024106914177536964, -0.003700920380651951, 0.02939373254776001, -0.05988188832998276, 0.03876573592424393, -0.07171498984098434, 0.06311408430337906, 0.04653055593371391, -0.02861046977341175, 0.08773547410964966, 0.044991299510002136, -0.003961384762078524, -0.01934002712368965, 0.0342874750494957, 0.025766225531697273, 0.014436515048146248, -0.023777389898896217, 0.0033059471752494574, 0.023814231157302856, 0.01652763970196247, 0.035933852195739746, -0.01434940006583929, 0.03473611921072006, -0.02586936205625534, -0.33800044655799866, -0.0327426940202713, -0.025399224832654, 0.002185416640713811, 0.010502241551876068, -0.05266134813427925, 0.041506990790367126, -0.009082814678549767, -0.04259251430630684, 0.018689272925257683, 0.11204139143228531, 0.0014859152724966407, 0.015637414529919624, -0.06488259136676788, -0.012512719258666039, 0.011564360000193119, -0.03371686115860939, -0.0068675740621984005, -0.035821765661239624, 0.014197670854628086, -0.002036356832832098, 0.016850415617227554, -0.004111371003091335, -0.05056358873844147, 0.020037978887557983, -0.008272912353277206, 0.11852797865867615, -0.02792336978018284, 0.05990580469369888, -0.05105753242969513, 0.06272780895233154, -0.010707581415772438, 0.012190593406558037, -0.10038721561431885, 0.0008673627744428813, -0.0006996166193857789, 0.02187781035900116, -0.004802909679710865, 0.01496627926826477, -0.021777573972940445, -0.07456578314304352, 0.02333774045109749, -0.056995928287506104, -0.04216230660676956, -0.0364222414791584, -0.009937900118529797, -0.03730772063136101, -0.0019245747243985534, -0.056156616657972336, 0.06878294050693512, -0.020947884768247604, -0.02796187251806259, 0.0018311903113499284, 0.027500838041305542, 0.023158542811870575, -0.03330700099468231, -0.07639394700527191, 0.01199564803391695, -0.0029396808240562677, -0.005215534940361977, 0.037244200706481934, 0.07914312928915024, 0.03710136190056801, -0.06695221364498138, 0.01659676991403103, -0.02036983333528042, -0.0010000105248764157, 0.02961280383169651, 0.02764754556119442, -0.016717011108994484, -0.01577170379459858, 0.10229067504405975, -0.003100250381976366, 0.005737466737627983, 0.030340101569890976, 0.013166376389563084, 0.0020710574463009834, 0.010484912432730198, 0.009434609673917294, -0.007582307793200016, 0.02340903878211975, -0.029285157099366188, 0.015361160039901733, -0.030882112681865692, 0.006849403493106365, 0.04447063431143761, -0.034355804324150085, -0.043831340968608856, 0.03801582753658295, 0.013538600876927376, -0.012630612589418888, 0.0037205324042588472, -0.05081501975655556, -0.02740209549665451, 0.0654648169875145, -0.03251810371875763, -0.25951552391052246, 0.014095711521804333, 0.056455280631780624, 0.03981393575668335, -0.03330638259649277, 0.014953777194023132, 0.00922718457877636, -0.03729191794991493, 0.014918600209057331, 0.021836528554558754, 0.008891244418919086, 0.026970399543642998, -0.0013353520771488547, 0.002938659396022558, 0.06196209415793419, 0.0032553954515606165, 0.04051818698644638, 0.010591107420623302, 0.00017568534531164914, -0.0131596764549613, 0.00858850684016943, -0.014857267029583454, 0.16982412338256836, 0.00783159863203764, 0.02629154361784458, 0.02557973749935627, -0.02059345319867134, 0.038022480905056, 0.05650806799530983, 0.027359457686543465, -0.005981848109513521, -0.020542355254292488, 0.02435738779604435, -0.021101461723446846, 0.02926594391465187, -0.08303643018007278, -0.020106809213757515, -0.0023680629674345255, 0.03234684839844704, 0.03768803924322128, 0.004721872042864561, 0.0015327238943427801, -0.009169221855700016, 0.039255060255527496, 0.06732966005802155, 0.010611643083393574, -0.014157171361148357, -0.04760187491774559, -0.04751487821340561, -0.0006454252288676798, -0.03685084730386734, -0.05750075727701187, 0.010033747181296349, -0.012132136151194572, 0.0019112605368718505, 0.05462999269366264, -0.002049081725999713, -0.025907326489686966, -0.015344778075814247, 0.00813278928399086, -0.002110360423102975, -0.02271960861980915, 0.076331228017807, 0.015362126752734184, 0.05765905603766441 ]
[ 0.006237077061086893, 0.017026973888278008, -0.002067292109131813, -0.020934179425239563, -0.018575213849544525, -0.012078925035893917, 0.01966259814798832, 0.017689622938632965, 0.013539646752178669, 0.026625288650393486, 0.014239306561648846, 0.020864631980657578, -0.002375079086050391, -0.000386947940569371, 0.057079169899225235, -0.060168180614709854, 0.03989851102232933, -0.0015285533154383302, 0.021702684462070465, -0.017623577266931534, 0.019289381802082062, 0.010705405846238136, -0.0378006286919117, -0.0321781188249588, 0.021997960284352303, 0.01796981692314148, 0.007520000450313091, 0.027543725445866585, 0.018058571964502335, -0.13608065247535706, 0.01157472189515829, -0.030541088432073593, 0.011579190380871296, -0.042927976697683334, 0.047157835215330124, 0.0075956229120492935, -0.0203512255102396, -0.039932459592819214, -0.027673237025737762, 0.005102574359625578, 0.04230028763413429, -0.04246655851602554, 0.01111169345676899, -0.0126322777941823, -0.023891780525445938, 0.00217602145858109, -0.008784782141447067, -0.03637741133570671, -0.02766740880906582, -0.012498963624238968, -0.0223784651607275, -0.010147416032850742, -0.01988593116402626, 0.07189372181892395, -0.016664626076817513, -0.01166844367980957, -0.01126086339354515, 0.01694493368268013, 0.0065975128673017025, -0.03834708407521248, -0.03773164376616478, -0.03181048855185509, -0.01061550434678793, -0.005725380033254623, 0.002073882846161723, 0.0052933888509869576, -0.015626056119799614, -0.018487773835659027, -0.029901770874857903, 0.009574378840625286, -0.01922079734504223, 0.015942327678203583, -0.027157053351402283, -0.012807454913854599, 0.01641039364039898, 0.018659764900803566, 0.0382494181394577, 0.04507739469408989, 0.027804143726825714, -0.005242482293397188, -0.007647843565791845, 0.01775849424302578, 0.0011256180005148053, 0.03820627182722092, -0.02522377111017704, 0.005643876735121012, -0.011047614738345146, -0.01083587110042572, 0.002118269447237253, -0.026630781590938568, -0.0037259520031511784, 0.05827254056930542, 0.005573157221078873, 0.016514282673597336, -0.03318888321518898, -0.03426383435726166, -0.0658036395907402, -0.03865807503461838, -0.007389278616756201, 0.8424217700958252, -0.0042039817199110985, 0.01011325977742672, 0.021752983331680298, 0.04077223315834999, 0.009816138073801994, -0.005240857135504484, -0.028676506131887436, 0.046942755579948425, 0.04353588446974754, -0.004890895914286375, 0.0004264457384124398, 0.03506244346499443, 0.01039479486644268, 0.011822219006717205, 0.029794584959745407, 0.011699068360030651, 0.05306374654173851, 0.0013136044144630432, 0.02458573691546917, 0.004882720299065113, 0.013287771493196487, -0.008153283968567848, -0.021420760080218315, -0.035598013550043106, 0.007965232245624065, -0.12133806198835373, 0.006348139606416225, -8.089937262719237e-33, 0.017435044050216675, -0.013531556352972984, -0.002057078992947936, -0.0034294985234737396, 0.006013232283294201, 0.024289121851325035, 0.04904599487781525, -0.004236980807036161, 0.011629452928900719, -0.03555968031287193, -0.026620175689458847, -0.025301532819867134, 0.010237153619527817, 0.018997665494680405, 0.02746349573135376, -0.012626704759895802, 0.002600335516035557, -0.00040535052539780736, 0.029405653476715088, 0.005596391391009092, 0.026398248970508575, -0.006150879897177219, -0.012740964069962502, -0.025222787633538246, 0.017449194565415382, 0.013691077008843422, 0.029243355616927147, -0.006510730367153883, 0.009102742187678814, -0.06283403933048248, 0.03614013269543648, -0.01103269960731268, -0.0074308584444224834, 0.003842703765258193, -3.8792560985712043e-7, -0.04291751608252525, -0.043092261999845505, -0.012256072834134102, -0.06990868598222733, 0.01950949989259243, -0.04669111967086792, -0.008506430312991142, -0.019409867003560066, 0.025892607867717743, -0.017027072608470917, 0.009434910491108894, 0.0019396303687244654, -0.02444515936076641, 0.028645109385252, -0.04739784821867943, 0.02055969461798668, 0.04135851562023163, 0.015829866752028465, 0.011346271261572838, 0.009112433530390263, 0.019011756405234337, -0.015248698182404041, 0.011491685174405575, 0.012390346266329288, -0.01869356445968151, -0.011869357898831367, -0.019977491348981857, -0.010964510962367058, 0.03471335768699646, -0.04743117466568947, 0.01102853287011385, 0.015774870291352272, 0.062382977455854416, -0.0038279814179986715, 0.015532778576016426, -0.021113047376275063, 0.005925497505813837, 0.0007446061936207116, -0.005734551232308149, -0.0010603899136185646, -0.006921452935785055, -0.01665734127163887, 0.020937379449605942, -0.005398206878453493, -0.015798283740878105, 0.016401056200265884, -0.017014939337968826, 0.0036182701587677, 0.03365626931190491, -0.02550160512328148, 0.006708237342536449, 0.00942204613238573, -0.019837575033307076, 0.013740762136876583, 0.0012924864422529936, 0.033131930977106094, -0.0022265641018748283, 0.009892722591757774, 0.009471495635807514, -0.040424894541502, 8.121331778093823e-33, -0.016762463375926018, -0.014072033576667309, -0.03194969519972801, 0.021645963191986084, -0.0023847464472055435, -0.028579454869031906, 0.01806977018713951, 0.019970793277025223, -0.0708775445818901, 0.036406975239515305, 0.0062245577573776245, 0.04700030758976936, -0.028041081503033638, -0.021571002900600433, 0.036688998341560364, -0.019387079402804375, 0.030879691243171692, -0.045536432415246964, 0.10621479898691177, -0.0007898799958638847, 0.04071737825870514, -0.002896115416660905, 0.012684410437941551, -0.002813454018905759, -0.012837940827012062, 0.03824302554130554, 0.0014634949620813131, -0.007738189771771431, -0.013900532387197018, -0.030681025236845016, -0.004617656115442514, -0.04037097468972206, 0.03237872198224068, -0.011002633720636368, -0.00191859295591712, 0.02559978887438774, -0.022267812862992287, -0.009510920383036137, 0.018181923776865005, -0.01537313126027584, 0.012969970703125, -0.039096273481845856, 0.0005034187925048172, 0.018258312717080116, 0.007166235242038965, -0.0070612626150250435, -0.03564223274588585, -0.019242359325289726, 0.001036253641359508, 0.05189666897058487, -0.057099394500255585, 0.009266934357583523, 0.005232545547187328, -0.006906920578330755, -0.029922816902399063, -0.03523824363946915, -0.01837504468858242, 0.017114661633968353, 0.01832444965839386, 0.04199764132499695, 0.01000289712101221, -0.0147524019703269, -0.007072137668728828, 0.014421186409890652, -0.011059636250138283, 0.03649180755019188, -0.01514386385679245, -0.020698808133602142, 0.013274401426315308, 0.031145745888352394, -0.022136827930808067, -0.009078387171030045, -0.020599190145730972, 0.013967428356409073, 0.019178321585059166, -0.03484095633029938, -0.011903728358447552, 0.03555217757821083, -0.016544630751013756, 0.02524685487151146, 0.01428935769945383, -0.015828819945454597, 0.011465728282928467, 0.01968487538397312, -0.003336704568937421, -0.019038131460547447, -0.008335907012224197, 0.04418134689331055, -0.029264941811561584, -0.01698095165193081, -0.0597262941300869, 0.001866635400801897, 0.008925884030759335, 0.006310675758868456, 0.0003314314235467464, -1.351006684302547e-8, 0.029094649478793144, 0.0021883409935981035, -0.02738925628364086, 0.010145174339413643, 0.023948844522237778, 0.0032172936480492353, -0.01130675058811903, 0.006456827744841576, -0.001359008951112628, 0.034234628081321716, 0.03869401663541794, -0.0596793107688427, -0.047016341239213943, 0.020853852853178978, 0.02473292499780655, -0.019218705594539642, -0.008240913040935993, -0.04557330533862114, 0.03152205049991608, -0.025801679119467735, 0.007666443940252066, 0.07591651380062103, 0.0008002828690223396, 0.018487539142370224, 0.034440767019987106, 0.001261028810404241, 0.006461860612034798, -0.0520370714366436, -0.021277137100696564, 0.029412975534796715, -0.04684583470225334, -0.01148189976811409, -0.030384650453925133, 0.04465043917298317, -0.06066099926829338, 0.0016625705175101757, 0.00011092271597590297, 0.002951129572466016, 0.03152761980891228, 0.0025370358489453793, -0.046130649745464325, 0.027225932106375694, 0.016426410526037216, -0.03616347163915634, 0.0014478744706138968, -0.014088904485106468, -0.01965956762433052, 0.01740485057234764, -0.006233772728592157, -0.02090158499777317, 0.004037574864923954, -0.006065769586712122, -0.0038606985472142696, 0.038795460015535355, 0.01852934993803501, -0.03660199046134949, 0.014946559444069862, -0.021948184818029404, 0.0013313496019691229, 0.0310628991574049, 0.02104453183710575, -0.006067679729312658, -0.03399469703435898, -0.028248930349946022 ]
micro-services-plugging-in-3rd-party-components
https://markhneedham.com/blog/2012/12/04/micro-services-plugging-in-3rd-party-components
false
2012-12-27 00:45:59
Restricting your own learning
[ "learning" ]
[ "Learning" ]
For the first few years that I worked professionally^*^ every project that I worked on was different enough to the previous ones that I was always learning something new without having to put much effort in. After a while this became less the case because I'd seen more things and if I saw something even remotely similar I would abstract it away as something that I'd done before. A couple of months ago Martin Fowler wrote a blog post about http://martinfowler.com/bliki/PrimingPrimeDirective.html[priming] and how research has showed that exposure to a stimulus influences a response to a later stimulus. In this case he was referring to the benefits of starting a retrospective with the prime directive because it will help put us in a more open and understanding frame of mind which will be beneficial in this context. I feel there might be some link between this and my learning conundrum in as well as I've primed myself to believe that there's nothing interesting to learn in a situation because it's similar to something I've previously worked on. http://en.wikipedia.org/wiki/Confirmation_bias[Confirmation bias] also comes into play because I'm now only looking for things that I already know to prove my point. I started working on the http://www.uswitch.com/[uSwitch] energy team a few weeks ago and initially I was only looking for the things that I already knew how to do. After a week of doing this I decided to instead look for things to learn and realised there was more than I expected. These are just some of the things I'm currently learning more about: * http://www.startuplessonslearned.com/2009/12/continuous-deployment-for-mission.html[*Continuous Deployment*] - we deploy every commit if not immediately then usually within a couple of hours. In order for this to work you have to be alert to what things might break. This involves watching https://airbrake.io/pages/home[Airbrake] for any errors and being ready to fix things if necessary. * *Maintaining an application in production* - somehow I didn't end up doing this at ThoughtWorks; almost every single project that I worked on was the first release of an application and then we rolled off after that was done. I haven't done it for long but so far it's been fascinating seeing the different paths users can take through the application that I'd never have thought of. * *A/B Testing* - we follow quite a data driven approach to improved the website. If someone has an idea for how to improve it, rather than spend hours discussing it we'll implement the idea and then put it side by side the current version. Then using an A/B test we'll send half the traffic to one version and the other half to the new version and see which one works better. I've been http://www.exp-platform.com/documents/guidecontrolledexperiments.pdf[reading this paper] to try and learn more about this. I'm sure that there are more (or certainly will be) that I can't think of at the moment but it's much easier to find new and interesting things to learn now that I'm looking for them rather than expecting to magically appear. ------ * as in I got paid. I'd never claim to be professional in any other way :-D
null
null
[ 0.048314861953258514, 0.01908121258020401, 0.005980214104056358, 0.03480673208832741, 0.09261911362409592, 0.02239835448563099, 0.021395087242126465, 0.040881432592868805, -0.001984023954719305, -0.02414335124194622, -0.03348017856478691, 0.006035971455276012, -0.05130346491932869, 0.007589241955429316, -0.03426402434706688, 0.0626024454832077, 0.0644453912973404, -0.000042440871766302735, 0.012354446575045586, 0.022278839722275734, 0.04337633401155472, 0.07596419751644135, 0.048108186572790146, 0.04097189009189606, 0.041655246168375015, 0.00021494227985385805, 0.013219823129475117, -0.014323011972010136, -0.05978882312774658, -0.000688329164404422, 0.028011227026581764, -0.00751577178016305, -0.009269701316952705, 0.00876003596931696, 0.026832446455955505, 0.016645632684230804, -0.01922694779932499, 0.013089660555124283, -0.007597058545798063, -0.010953947901725769, -0.0745893344283104, 0.05407748371362686, -0.02588413842022419, -0.015974538400769234, -0.033682968467473984, 0.01935458369553089, -0.026852216571569443, -0.010157489217817783, 0.01684073731303215, -0.010659531690180302, -0.06906147301197052, 0.018980152904987335, 0.015842711552977562, -0.008961337618529797, -0.01832602173089981, 0.0456269346177578, 0.0038129182066768408, -0.06624921411275864, 0.022812815383076668, -0.030669523403048515, -0.01623891480267048, -0.0027534905821084976, -0.002969569293782115, 0.03970471769571304, 0.03260359913110733, -0.04823371395468712, 0.011902720667421818, 0.04766533151268959, -0.010209128260612488, 0.022621946409344673, -0.01344672404229641, -0.010723098181188107, 0.0023719267919659615, -0.0042328485287725925, 0.030782530084252357, -0.04474964365363121, 0.01652500405907631, 0.056001920253038406, 0.015796903520822525, 0.04412706941366196, -0.017238913103938103, 0.006685718894004822, 0.005180408246815205, 0.01570173352956772, -0.01557205244898796, -0.03791581466794014, 0.008083333261311054, -0.022606685757637024, -0.0752696618437767, 0.05619753152132034, 0.03331782668828964, -0.043304815888404846, 0.03345337137579918, 0.05406837537884712, 0.001438467181287706, 0.008300031535327435, 0.030698686838150024, -0.009555239230394363, -0.011039151810109615, -0.017340268939733505, -0.02015610784292221, -0.0016197501681745052, -0.01962287537753582, 0.022078391164541245, -0.07507157325744629, -0.0087322061881423, -0.03218293935060501, -0.013924526050686836, -0.019586462527513504, 0.00737994909286499, -0.0037080682814121246, 0.030279746279120445, -0.03393435478210449, 0.006426253821700811, -0.0840478464961052, 0.07222909480333328, 0.012215368449687958, -0.036979999393224716, -0.00948011688888073, -0.006939128041267395, 0.04353439435362816, 0.04403918981552124, -0.008529314771294594, 0.05781717598438263, -0.012935379520058632, 0.010771481320261955, -0.03132191672921181, 0.04966849088668823, -0.026685843244194984, -0.06488734483718872, -0.00309846643358469, 0.041147418320178986, -0.024711672216653824, -0.002822415204718709, -0.005387580022215843, -0.022082621231675148, 0.012621378526091576, 0.002547670155763626, 0.03122333437204361, 0.054370637983083725, -0.0011621349258348346, -0.043127041310071945, 0.016557376831769943, 0.018202008679509163, 0.0206657312810421, -0.007126961834728718, -0.0037853666581213474, -0.021375278010964394, -0.06637796759605408, 0.004239069763571024, 0.00879415962845087, 0.004742427263408899, 0.02429746463894844, -0.0428955964744091, 0.015904968604445457, 0.08068128675222397, 0.036817315965890884, 0.0042975544929504395, -0.00880440790206194, 0.009657429531216621, 0.0370795913040638, 0.030669517815113068, 0.021672461181879044, 0.020666969940066338, 0.0035109431482851505, -0.014024742878973484, 0.012484285049140453, 0.023786993697285652, -0.011678244918584824, 0.013392913155257702, -0.06651164591312408, -0.04217043146491051, 0.06432592868804932, -0.05357397347688675, -0.033317193388938904, 0.06161046028137207, 0.08125423640012741, 0.0358312763273716, 0.028514480218291283, 0.01023073773831129, -0.07672947645187378, 0.03757910430431366, 0.01648448407649994, 0.023570381104946136, 0.04455794021487236, -0.04097309336066246, 0.032697971910238266, 0.009361720643937588, 0.015874553471803665, 0.035878103226423264, -0.061946604400873184, -0.09686760604381561, -0.01083221472799778, -0.03087356686592102, 0.0403636209666729, -0.036470409482717514, 0.011254407465457916, 0.06679293513298035, 0.011986276134848595, 0.06748779863119125, 0.034088656306266785, -0.0012965527130290866, -0.008959081955254078, -0.05646732822060585, -0.04724177345633507, 0.061683982610702515, 0.027992041781544685, 0.002639386337250471, -0.036508139222860336, 0.01565207727253437, -0.003012429689988494, -0.005854347255080938, 0.039203740656375885, -0.014086175709962845, 0.05395922437310219, 0.01421158667653799, 0.03544149175286293, -0.036285754293203354, 0.03317492827773094, -0.0395565964281559, 0.003252487862482667, 0.011119161732494831, -0.025985518470406532, 0.014477591961622238, -0.005636217538267374, 0.09853839874267578, 0.04916081950068474, -0.07462693005800247, -0.0449652336537838, 0.03794391080737114, 0.03771773353219032, -0.04856117069721222, -0.02004646137356758, -0.02993805892765522, 0.01724621281027794, 0.01291476096957922, -0.06516730785369873, -0.04127851873636246, 0.02150813862681389, -0.046300314366817474, 0.0027683323714882135, 0.06685087084770203, -0.03268040716648102, 0.07303041219711304, -0.017383437603712082, -0.010129017755389214, 0.004510839004069567, -0.01578463613986969, -0.0679095983505249, 0.009726442396640778, -0.01158925797790289, -0.011607566848397255, 0.04396308213472366, -0.023529142141342163, -0.027783196419477463, -0.04784494638442993, -0.05072873830795288, 0.020916685461997986, 0.03797435760498047, 0.07576710730791092, -0.010481883771717548, 0.07009260356426239, -0.009577308781445026, 0.05822596698999405, 0.01831798255443573, -0.03529857099056244, -0.03013480268418789, -0.03857064247131348, -0.009244678542017937, 0.025351183488965034, -0.0001965655537787825, -0.007310623303055763, 0.03144605830311775, 0.01654841937124729, 0.012743016704916954, -0.019212838262319565, 0.022182945162057877, 0.012784043326973915, 0.006360678933560848, -0.0140188317745924, -0.015027377754449844, 0.045516397804021835, -0.033413782715797424, -0.000004978573542757658, 0.025654172524809837, -0.07863561064004898, 0.015868734568357468, -0.06830356270074844, -0.056395504623651505, -0.0008932678611017764, 0.011611899361014366, 0.02169194258749485, 0.019102497026324272, 0.024068176746368408, 0.05507615953683853, 0.02592996507883072, 0.02113077975809574, 0.0007170118042267859, -0.0009094380657188594, 0.028471477329730988, 0.013831805437803268, -0.004871268756687641, 0.018012594431638718, 0.006888112984597683, 0.0035662755835801363, -0.060470081865787506, 0.04332740977406502, -0.04810311645269394, -0.2923070788383484, 0.027924075722694397, 0.028143638744950294, -0.044901490211486816, 0.014921178109943867, -0.02271079272031784, 0.02098243124783039, -0.04425705224275589, -0.02723384089767933, 0.004226016346365213, -0.013105113059282303, -0.055094003677368164, -0.0035924308467656374, 0.045281410217285156, -0.018242742866277695, 0.03159400075674057, 0.05700972303748131, -0.034597963094711304, 0.016583269461989403, 0.03542560711503029, -0.01249080803245306, -0.07170532643795013, 0.007468193303793669, 0.043287768959999084, 0.055408284068107605, 0.055336128920316696, -0.08291119337081909, 0.05280008912086487, -0.06579914689064026, -0.0022142508532851934, 0.0011508510215207934, -0.003792477073147893, 0.011237098835408688, -0.016193963587284088, -0.009763150475919247, -0.008003609254956245, 0.034176070243120193, 0.01570640690624714, 0.009585896506905556, -0.01078399270772934, -0.012529819272458553, -0.03625010326504707, -0.0008761552744545043, 0.03056127205491066, 0.05992376431822777, -0.0029799300245940685, -0.09549056738615036, -0.022636612877249718, -0.00996442325413227, 0.06362007558345795, -0.028087589889764786, -0.00529963243752718, -0.023834967985749245, 0.031768083572387695, -0.00013933794980403036, -0.023109430447220802, 0.0046963379718363285, -0.028880707919597626, -0.040035173296928406, -0.03196351230144501, -0.009037886746227741, -0.017833702266216278, -0.018403273075819016, -0.04029487818479538, 0.01981353759765625, -0.0553215928375721, -0.06579446792602539, -0.03444311395287514, 0.079457126557827, 0.004830768331885338, -0.032274581491947174, 0.01615615002810955, 0.0018969944212585688, -0.10809171199798584, 0.006519458722323179, -0.02786460891366005, -0.024840492755174637, 0.004753457382321358, 0.022244485095143318, 0.04588550329208374, -0.020315485075116158, -0.04743240401148796, 0.03678182139992714, 0.002435217145830393, 0.03098364546895027, 0.002280642045661807, 0.031906645745038986, 0.03091943822801113, -0.021850451827049255, 0.018369678407907486, 0.06128116697072983, -0.0019028030801564455, -0.033203497529029846, -0.02567785419523716, 0.023369794711470604, 0.002869759686291218, 0.0012547960504889488, -0.006258710753172636, 0.019582945853471756, 0.003134976141154766, -0.014238317497074604, -0.05674082785844803, 0.02400040812790394, -0.014569506049156189, -0.001303710974752903, -0.017868390306830406, -0.041695937514305115, 0.010241091251373291, 0.044455599039793015, 0.035586029291152954, -0.003399128094315529, -0.025826117023825645, 0.014415576122701168, -0.05269690230488777, -0.030798964202404022, 0.003084668656811118, 0.011651337146759033, 0.04814814403653145, 0.0013545325491577387, -0.013226098380982876, -0.05156271904706955, -0.0009306218125857413, -0.021235626190900803, 0.002227565972134471, -0.05360177531838417, -0.012189184315502644, -0.004275284707546234, -0.0016081671928986907, -0.0068413387052714825, 0.029338758438825607, -0.0032200971618294716, 0.02761263959109783, 0.022647501900792122, -0.031306128948926926, 0.016389895230531693, -0.029849153012037277, -0.05344926565885544, -0.03584950417280197, 0.023314308375120163, 0.0010116189951077104, -0.030761130154132843, 0.03560708835721016, -0.00008870785677572712, 0.014986944384872913, 0.05336351320147514, 0.0273731779307127, 0.01948513835668564, -0.035551294684410095, 0.037466682493686676, -0.00800285767763853, 0.04048028215765953, -0.06305165588855743, 0.0009936224669218063, -0.04642331600189209, -0.020657233893871307, -0.02533414401113987, 0.023373978212475777, -0.03885951638221741, -0.037724368274211884, -0.01936003752052784, 0.016948504373431206, -0.06592734903097153, -0.03722309321165085, -0.03986368700861931, 0.03933163359761238, 0.05848259851336479, -0.008425634354352951, 0.010880891233682632, -0.001576543552801013, 0.0004108962311875075, 0.008914679288864136, -0.010463763028383255, -0.0681629553437233, -0.0032532410696148872, 0.007389985024929047, 0.010962441563606262, 0.00017382956866640598, -0.020211242139339447, 0.057451605796813965, 0.007324664853513241, -0.00034728366881608963, -0.011555041186511517, -0.0011407940182834864, 0.00900599267333746, 0.04428591951727867, 0.004563325084745884, 0.0029036900959908962, 0.004063406493514776, -0.015856215730309486, -0.03315649926662445, -0.031005391851067543, -0.00818709097802639, 0.0055216471664607525, 0.0021056844852864742, -0.026184363290667534, -0.0763966292142868, 0.04259035736322403, 0.030549094080924988, 0.00345377204939723, 0.021859874948859215, -0.028529897332191467, -0.00236395257525146, -0.03359181433916092, 0.04872789606451988, 0.06934890896081924, -0.06497024744749069, -0.004665210377424955, 0.00824336614459753, 0.003754878416657448, 0.013240302912890911, -0.008343316614627838, -0.03535233438014984, -0.03157563507556915, -0.023468106985092163, 0.014728337526321411, -0.07835064828395844, -0.02604902721941471, -0.01624152995646, 0.02073688618838787, 0.0037519342731684446, -0.022057194262742996, -0.012601056136190891, -0.03948710858821869, -0.008035237900912762, -0.012231215834617615, 0.0081603629514575, -0.03961675614118576, -0.00041215939563699067, 0.01567724719643593, -0.044785384088754654, -0.008376043289899826, -0.021339135244488716, 0.007029588799923658, 0.019403064623475075, -0.0359078086912632, -0.004838415887206793, -0.02563030831515789, -0.004998417571187019, -0.002801442053169012, 0.0376320406794548, -0.004687440115958452, -0.021173173561692238, -0.03928526118397713, -0.010804625228047371, -0.03197381645441055, 0.009220177307724953, -0.02167840301990509, 0.0059737334959208965, 0.03770951181650162, 0.06452511996030807, 0.011323930695652962, 0.03152775019407272, -0.030576394870877266, -0.006437605246901512, 0.04849708080291748, -0.07127583771944046, -0.03004654496908188, -0.034580767154693604, -0.0546603761613369, 0.014866931363940239, 0.022885099053382874, 0.014368205331265926, -0.048852574080228806, 0.0383954681456089, 0.015080017037689686, 0.02033218927681446, 0.010541112162172794, 0.009860432706773281, 0.028200816363096237, -0.05741504952311516, -0.0005944903823547065, -0.07636608183383942, -0.014757445082068443, 0.05503597483038902, 0.006706338841468096, -0.0010317049454897642, 0.018794186413288116, -0.039800677448511124, 0.055293481796979904, -0.08207453042268753, -0.037218138575553894, 0.039689142256975174, -0.0072913155891001225, -0.01987200789153576, 0.008356654085218906, -0.08429234474897385, 0.01719505339860916, -0.003934931010007858, -0.03995019569993019, -0.022574082016944885, -0.007793864700943232, 0.06435646116733551, -0.005467365030199289, 0.006103033199906349, -0.04642512649297714, 0.004592680372297764, 0.06927528977394104, 0.0070038107223808765, -0.009690036997199059, 0.056193262338638306, -0.023063847795128822, 0.04279671236872673, 0.020624827593564987, 0.01474385429173708, -0.025927912443876266, 0.00905874278396368, 0.00138187559787184, -0.04703103005886078, 0.02620559372007847, -0.003008962841704488, -0.024121714755892754, -0.055394914001226425, 0.050028182566165924, 0.026112373918294907, -0.017358189448714256, -0.06088194623589516, 0.02691233716905117, -0.06928492337465286, -0.021276704967021942, -0.001359623740427196, 0.009493587538599968, -0.05413384363055229, 0.04050218313932419, -0.01600252464413643, 0.009934459812939167, 0.08150189369916916, 0.027304887771606445, -0.01183372549712658, -0.00771182868629694, 0.07742860168218613, 0.06409505009651184, 0.06232396885752678, 0.02029135823249817, 0.07164102792739868, -0.011224324814975262, -0.03818479925394058, 0.03266727551817894, -0.0022124522365629673, -0.01997111737728119, -0.026817256584763527, 0.033867355436086655, 0.0721486508846283, 0.012089197523891926, 0.06889176368713379, -0.01593855768442154, -0.024345820769667625, 0.016255706548690796, 0.05502578616142273, 0.033616457134485245, 0.07021137326955795, 0.004909629933536053, 0.018720826134085655, 0.003014002926647663, -0.06031665951013565, 0.004819329362362623, -0.05490958318114281, -0.010576111264526844, 0.036935362964868546, -0.014773541130125523, 0.02357373759150505, 0.02249843254685402, -0.002844050992280245, 0.07985362410545349, -0.03162520006299019, 0.03258352726697922, -0.008894342929124832, 0.031801242381334305, -0.013547020964324474, 0.02328229695558548, -0.02582658641040325, -0.014074563048779964, -0.010061463341116905, -0.04105720296502113, -0.01793675869703293, -0.0039040250703692436, -0.0011826740810647607, 0.03550983592867851, -0.03142261505126953, -0.0012279230868443847, 0.051505476236343384, -0.0010090406285598874, -0.025149047374725342, -0.06237621605396271, -0.026232482865452766, -0.027309874072670937, -0.04297567903995514, -0.017712850123643875, 0.0005400885711424053, -0.0007603988633491099, -0.02550811693072319, -0.010839160531759262, -0.027495265007019043, -0.05423320084810257, 0.04283178597688675, -0.04821264371275902, -0.027068084105849266, 0.011375317350029945, 0.003762847511097789, 0.019036442041397095, 0.010192876681685448, 0.049931850284338, 0.014318433590233326, -0.006571654696017504, -0.021202538162469864, 0.025086263194680214, 0.009358351118862629, -0.006265150383114815, 0.015644880011677742, -0.06825310736894608, 0.028175080195069313, 0.020228639245033264, -0.018649986013770103, -0.06790759414434433, 0.014737886376678944, 0.03437812626361847, -0.004354159347712994, 0.04792255163192749, -0.021365486085414886, 0.01837770640850067, -0.05442352965474129, -0.008986189030110836, -0.014363273046910763, 0.005979498382657766, 0.050563134253025055, -0.022215479984879494, 0.08561426401138306, 0.03865722194314003, 0.002890616189688444, -0.02883678302168846, -0.006030716933310032, 0.010962874628603458, -0.002743117045611143, -0.020703617483377457, -0.04468134418129921, -0.022097349166870117, -0.09744149446487427, -0.024495376273989677, 0.03063378669321537, -0.026240183040499687, -0.04605257883667946, 0.026517746970057487, 0.00008349147537956014, -0.008812671527266502, 0.005041802767664194, -0.037295661866664886, 0.029135096818208694, -0.011418617330491543, -0.0020265690982341766, 0.010920153930783272, 0.01692035049200058, -0.004413568414747715, -0.016230668872594833, 0.014671394601464272, -0.044250912964344025, -0.0015715982299298048, -0.008930259384214878, 0.034094229340553284, 0.05998697504401207, 0.0012844798620790243, -0.019873876124620438 ]
[ -0.08245006948709488, 0.014653649181127548, -0.015745127573609352, -0.021085068583488464, 0.04691250994801521, -0.018907595425844193, 0.002245365409180522, 0.012993592768907547, -0.014009996317327023, -0.03126493841409683, 0.019161324948072433, -0.02307859994471073, -0.01814962550997734, -0.0033528765197843313, 0.06054604426026344, 0.02027980610728264, -0.014640485867857933, -0.07286860048770905, 0.009693305008113384, 0.011798284016549587, 0.015188165940344334, -0.033206284046173096, -0.029416311532258987, -0.009921840392053127, 0.016451813280582428, 0.036090701818466187, 0.042923130095005035, -0.021232053637504578, 0.022024784237146378, -0.16593486070632935, 0.013084539212286472, 0.008028008975088596, 0.032560087740421295, -0.01109691709280014, 0.019061272963881493, 0.077634297311306, 0.0006424999446608126, 0.03938482329249382, -0.0174403116106987, 0.04756477102637291, 0.02474275976419449, 0.0062417141161859035, -0.05096939578652382, -0.02183086797595024, 0.021770156919956207, 0.01779010519385338, 0.012631770223379135, -0.04233032837510109, -0.00104700424708426, 0.01058155857026577, -0.030404197052121162, -0.03612803667783737, -0.009158938191831112, -0.007071476895362139, -0.028980107977986336, 0.011580121703445911, 0.029885340481996536, 0.0702320784330368, -0.0008769189589656889, 0.023242926225066185, 0.005584452301263809, -0.011564948596060276, -0.16053473949432373, 0.08433792740106583, 0.05594826862215996, 0.048428475856781006, -0.05257989466190338, -0.03560734540224075, -0.007657113950699568, 0.09049446135759354, 0.009518730454146862, 0.003854290582239628, -0.020527107641100883, 0.03200804814696312, 0.038089651614427567, 0.0027804970741271973, 0.015342255122959614, 0.03748423978686333, 0.009901897050440311, -0.06489797681570053, 0.004323692061007023, 0.02125617489218712, -0.03354281559586525, -0.009388944134116173, -0.03297610208392143, 0.01929531805217266, 0.0004550919693429023, 0.060868456959724426, 0.040471307933330536, 0.031227879226207733, 0.040597669780254364, -0.009811853989958763, 0.023222090676426888, -0.020428014919161797, -0.07005183398723602, -0.018950913101434708, 0.01433772873133421, 0.024749236181378365, -0.04997999966144562, 0.4491896331310272, -0.014035498723387718, -0.008155821822583675, 0.07440433651208878, 0.039507295936346054, 0.00018183779320679605, 0.0007347967475652695, 0.009851169772446156, -0.03267739713191986, 0.019492553547024727, -0.022034170106053352, 0.033466048538684845, 0.03468533232808113, 0.07118251174688339, -0.05588940531015396, 0.018494363874197006, 0.018740415573120117, 0.022739415988326073, 0.009891190566122532, 0.009681911207735538, -0.02777087688446045, -0.011559912003576756, 0.010348784737288952, 0.023797620087862015, -0.01627454347908497, -0.04656718298792839, -0.06412257999181747, 0.03263425827026367, 0.059220682829618454, 0.01374106202274561, -0.016885925084352493, 0.06042368337512016, -0.07470092922449112, -0.04975193366408348, 0.008102108724415302, 0.012614891864359379, 0.00955648347735405, 0.03671790286898613, -0.023434393107891083, 0.007083444856107235, 0.06531259417533875, 0.0012878179550170898, 0.016939226537942886, 0.012216444127261639, -0.0443250797688961, -0.05351572483778, 0.1359444409608841, 0.04148169606924057, -0.026989197358489037, -0.014425886794924736, -0.040389396250247955, -0.011660807766020298, 0.023989833891391754, 0.008699098601937294, -0.048200175166130066, 0.05324733257293701, -0.012678773142397404, 0.07983335107564926, -0.007331555709242821, -0.04576814919710159, 0.015208671800792217, -0.020741891115903854, -0.04527199640870094, -0.05191376060247421, 0.03687569871544838, 0.07994630932807922, -0.07592427730560303, -0.018134355545043945, -0.012895925901830196, 0.04573574289679527, -0.04781237617135048, -0.00008137130498653278, 0.012562775984406471, 0.005878845229744911, -0.023756640031933784, 0.04790631681680679, -0.049101974815130234, -0.032498981803655624, 0.02219364047050476, 0.03319617733359337, 0.018194859847426414, 0.03727027401328087, -0.033630359917879105, -0.03192158788442612, 0.004714936949312687, -0.04460090398788452, -0.08436740189790726, -0.04658328741788864, -0.003629164071753621, -0.036677286028862, 0.0001696400868240744, -0.01774415373802185, -0.015782654285430908, -0.09262585639953613, 0.10307498276233673, -0.0320705808699131, -0.0240187905728817, 0.01595098152756691, -0.013414835557341576, -0.04442811384797096, -0.03134412690997124, -0.06223287805914879, -0.00158586329780519, -0.03607611358165741, 0.040554266422986984, -0.07362115383148193, 0.06894419342279434, 0.039683517068624496, -0.03441895544528961, 0.11567358672618866, 0.05296360328793526, -0.019257672131061554, -0.022571532055735588, 0.036166176199913025, 0.02445295639336109, 0.0046673971228301525, -0.0161493718624115, -0.010187202133238316, 0.007599409203976393, 0.011514228768646717, 0.019850654527544975, -0.00636338023468852, -0.0009862335864454508, -0.01572032831609249, -0.35529473423957825, -0.06360473483800888, -0.027053192257881165, 0.006188378669321537, 0.035160597413778305, -0.05760987102985382, 0.022148653864860535, -0.02116125263273716, -0.024938609451055527, -0.01879989355802536, 0.04383367672562599, -0.017035018652677536, 0.02348433807492256, -0.06399905681610107, 0.00393711868673563, -0.001454063574783504, -0.020877525210380554, -0.013005716726183891, -0.022153528407216072, 0.01622677594423294, -0.0036626618821173906, 0.0027909516356885433, -0.0162671972066164, -0.05234159901738167, 0.004724668804556131, -0.04012347012758255, 0.08183030039072037, 0.009784795343875885, 0.05498538538813591, -0.044895198196172714, 0.025089722126722336, -0.01341935619711876, 0.04138140380382538, -0.1282680183649063, -0.001585499499924481, -0.03275754302740097, 0.010566079057753086, -0.019987331703305244, 0.008424432016909122, -0.042903222143650055, -0.05260084941983223, 0.0015865227906033397, -0.07262912392616272, -0.012236295267939568, -0.09207397699356079, 0.005167758092284203, -0.04797296226024628, -0.006093393079936504, -0.04104337841272354, 0.05395198613405228, 0.03134589642286301, -0.0216780174523592, 0.0024411107879132032, -0.016819382086396217, 0.005992908030748367, -0.03500306233763695, -0.0914488211274147, 0.025676652789115906, -0.009749679826200008, -0.001025057048536837, 0.02942671626806259, 0.06425005942583084, 0.030690209940075874, -0.04787305369973183, -0.0029603359289467335, 0.01651443913578987, 0.01116560772061348, 0.010145682841539383, 0.027868641540408134, -0.015058541670441628, -0.01021602563560009, 0.11403369903564453, -0.013364945538341999, -0.035228535532951355, 0.02171165496110916, 0.017804034054279327, -0.0304787028580904, 0.028933294117450714, 0.008731743320822716, -0.008981585502624512, 0.02680165134370327, -0.037302758544683456, 0.019169243052601814, -0.018524475395679474, -0.033287227153778076, 0.0367979034781456, -0.002574540674686432, -0.07441101968288422, 0.06761428713798523, 0.03200946003198624, -0.025421282276511192, 0.023562932386994362, -0.030520427972078323, -0.061462126672267914, 0.10493388772010803, -0.01097105909138918, -0.23411980271339417, 0.029734894633293152, 0.08011668920516968, 0.033011339604854584, -0.006325756199657917, 0.038339726626873016, 0.033582281321287155, -0.046597663313150406, 0.03142702952027321, 0.028596721589565277, 0.008093509823083878, 0.004270026460289955, 0.019627146422863007, 0.009609520435333252, 0.024062231183052063, 0.005045190453529358, 0.03913503140211105, 0.004875508602708578, -0.01074342429637909, -0.0028381492011249065, 0.011362520977854729, -0.0035143231507390738, 0.12574729323387146, 0.023455683141946793, -0.010565506294369698, -0.012652596458792686, -0.019917864352464676, 0.021818269044160843, 0.06591621786355972, 0.003146776231005788, 0.0050499471835792065, 0.005178527440875769, 0.013485634699463844, -0.005134794861078262, 0.018827984109520912, -0.07657396793365479, -0.024215461686253548, 0.029992634430527687, 0.01783677749335766, 0.01112601812928915, 0.01076322142034769, -0.013061855919659138, 0.0015316319186240435, 0.03623923659324646, 0.07737229019403458, -0.006858514621853828, 0.012334093451499939, -0.05558667331933975, -0.0708950087428093, -0.02972571738064289, -0.03503028675913811, -0.028821799904108047, 0.01617683842778206, 0.006848608609288931, 0.008261327631771564, 0.06722757965326309, 0.01703905314207077, -0.02947498857975006, 0.017217157408595085, -0.0055138710886240005, -0.009836466051638126, -0.001480552484281361, 0.10882516950368881, 0.019478408619761467, 0.050390616059303284 ]
[ -0.008823974058032036, 0.02151443250477314, 0.017491308972239494, 0.039465367794036865, 0.026674365624785423, 0.002855206374078989, 0.005669368430972099, 0.01775861531496048, 0.0019466328667476773, 0.015378638170659542, 0.007701216731220484, 0.0358850359916687, -0.0028735788073390722, -0.010981213301420212, 0.020420193672180176, 0.010281281545758247, 0.019730545580387115, -0.02855951525270939, 0.016362302005290985, 0.011795413680374622, 0.007445184979587793, 0.01926373690366745, 0.003811255795881152, -0.017727317288517952, 0.009198585525155067, 0.04047564044594765, -0.006485218647867441, 0.00780487060546875, 0.03577146679162979, -0.13251012563705444, 0.009080091491341591, -0.017757661640644073, -0.013486705720424652, -0.02080198936164379, 0.022437548264861107, -0.0008002412505447865, -0.025816746056079865, 0.01621551811695099, 0.002777594141662121, -0.0013033082941547036, 0.03453706204891205, -0.03175497055053711, -0.01837051287293434, -0.008658039383590221, -0.025992169976234436, -0.00565491896122694, 0.019669177010655403, -0.033920690417289734, -0.024167867377400398, -0.03168938308954239, -0.009715680964291096, -0.04089263081550598, -0.01508260890841484, 0.010830585844814777, 0.012335993349552155, -0.014755889773368835, 0.0023958554957062006, -0.014941043220460415, -0.012997167184948921, -0.03431650623679161, -0.04591771587729454, -0.021541692316532135, -0.06585250049829483, -0.031213263049721718, 0.0026336731389164925, -0.00813760980963707, -0.00844669807702303, 0.017863349989056587, -0.004141808953136206, -0.02366616204380989, -0.005169718526303768, 0.0023294566199183464, -0.013513979502022266, -0.03798828274011612, 0.007681548595428467, 0.007825704291462898, 0.007180327083915472, 0.003089769044891, -0.001483976491726935, -0.021332811564207077, -0.011024234816432, 0.02860589325428009, 0.004717084113508463, -0.007135745137929916, 0.02026745118200779, -0.011072640307247639, -0.00036395786446519196, 0.024404339492321014, 0.016605017706751823, 0.014022058807313442, -0.012034159153699875, 0.016381828114390373, -0.0009390882332809269, 0.024128520861268044, -0.07542502135038376, -0.00963333435356617, -0.015334303490817547, -0.029582517221570015, -0.006719255819916725, 0.8756508827209473, 0.0011586496839299798, 0.0213931854814291, -0.003526833141222596, 0.004702766425907612, -0.018543213605880737, -0.002094204304739833, -0.011815454810857773, 0.03817006200551987, 0.013403665274381638, -0.02821602113544941, 0.03389039635658264, -0.0018322031246498227, 0.022210778668522835, 0.009811155498027802, 0.01773543655872345, -0.0014560839626938105, -0.0072754002176225185, 0.005247239023447037, -0.016997866332530975, -0.01995852217078209, 0.0332777202129364, 0.00798096228390932, 0.020860765129327774, 0.03723115473985672, -0.0053952597081661224, -0.1873875856399536, -0.008133848197758198, -8.010425355461679e-33, 0.040923964232206345, -0.0007501114741899073, -0.008358555845916271, -0.003291093045845628, -0.020388320088386536, 0.0066084908321499825, 0.03138979896903038, 0.03162882849574089, 0.01498254295438528, -0.026729898527264595, 0.018072647973895073, -0.0005224826163612306, 0.00399288535118103, -0.0321282222867012, 0.0051516578532755375, -0.045988213270902634, 0.001391486614011228, 0.05487990751862526, 0.018184321001172066, 0.027915751561522484, 0.010507368482649326, 0.01602289266884327, -0.03935537859797478, 0.0031843939796090126, 0.01903350092470646, 0.028062427416443825, 0.013195667415857315, 0.012963959015905857, -0.004435175564140081, -0.0408499613404274, -0.019426925107836723, 0.049425821751356125, -0.01053665578365326, -0.026861337944865227, -0.0029475197661668062, -0.03617481887340546, -0.017575189471244812, -0.01085742935538292, 0.000605147099122405, -0.043033041059970856, -0.03037961758673191, 0.02531140111386776, -0.03689689561724663, -0.01523058395832777, -0.014429062604904175, -0.023842625319957733, 0.02242966927587986, 0.015451458282768726, 0.004744355101138353, 0.002053320175036788, 0.0072290124371647835, -0.019603610038757324, -0.0007202592096291482, -0.012217775918543339, -0.013797793537378311, 0.032340552657842636, -0.00861294660717249, 0.011987372301518917, 0.014347143471240997, 0.00023163847799878567, -0.005423311144113541, 0.005698435008525848, -0.04489598795771599, 0.023174604400992393, -0.006238467525690794, 0.008260058239102364, -0.020179394632577896, 0.027967365458607674, 0.008939980529248714, 0.018859736621379852, -0.061180856078863144, 0.007265010382980108, 0.006268430035561323, -0.008173438720405102, 0.013766088522970676, -0.00938985776156187, -0.009540490806102753, 0.046882111579179764, -0.03202845901250839, 0.040144357830286026, -0.005859716329723597, -0.004367069806903601, -0.023971248418092728, -0.010580847971141338, 0.0027142635080963373, 0.0018055217806249857, 0.01291664969176054, 0.006977304350584745, -0.02283775992691517, 0.005832381546497345, 0.04456109181046486, 0.006330546457320452, 0.028990430757403374, -0.0015624082880094647, -0.04124375805258751, 8.573191806549911e-33, -0.0003288594598416239, 0.005422476213425398, -0.014716008678078651, 0.0014515058137476444, 0.026103436946868896, 0.010094566270709038, -0.007035131100565195, -0.0036253321450203657, -0.06155809015035629, 0.028880106285214424, -0.007283765356987715, 0.007792276795953512, -0.03623605892062187, 0.009685643017292023, 0.012455546297132969, -0.00582551583647728, 0.015758441761136055, -0.021111801266670227, 0.010549810715019703, -0.007393848616629839, 0.03510993346571922, 0.0016013208078220487, -0.005332224536687136, -0.009806995280086994, -0.0010431682458147407, 0.051283493638038635, -0.005555145908147097, 0.03507370874285698, 0.017000949010252953, -0.00450996495783329, -0.013480234891176224, 0.0023977048695087433, 0.011683415621519089, -0.014651738107204437, -0.036005664616823196, 0.04031619802117348, 0.00010949091665679589, -0.01712668128311634, -0.04211563616991043, 0.0038412571884691715, 0.013994096778333187, -0.01839778572320938, 0.006359603721648455, 0.01323547400534153, -0.02032841369509697, -0.008993567898869514, 0.012247266247868538, -0.012778546661138535, -0.021405747160315514, 0.016109531745314598, -0.006380821578204632, 0.004188854712992907, -0.0005173483514226973, 0.012662120163440704, -0.013541056774556637, -0.033660661429166794, 0.014134869910776615, -0.00018963139154948294, -0.009866745211184025, -0.0045304009690880775, 0.011483254842460155, 0.007122022099792957, 0.015055282041430473, 0.01752089522778988, -0.035127509385347366, -0.015599669888615608, 0.01147826574742794, -0.0008814919274300337, 0.007560456171631813, 0.017989758402109146, -0.007419878616929054, 0.01081895362585783, -0.01558205671608448, 0.026877935975790024, 0.021909531205892563, -0.013665546663105488, -0.013633227907121181, -0.006129902321845293, -0.03625749796628952, 0.01674601249396801, 0.0025447995867580175, 0.0041372147388756275, -0.011805529706180096, 0.009255299344658852, -0.0005557890399359167, 0.03515202924609184, -0.0033558488357812166, 0.020002761855721474, 0.022072846069931984, -0.00403281394392252, -0.040730491280555725, -0.009392652660608292, 0.013188750483095646, 0.0528901182115078, 0.016393005847930908, -1.3820753430593413e-8, -0.005761636421084404, 0.02298741601407528, -0.009229924529790878, 0.009783671237528324, 0.01305900514125824, -0.005534305237233639, -0.023802222684025764, -0.005524288397282362, -0.03962918370962143, -0.00432475283741951, 0.045338839292526245, -0.025759920477867126, 0.012255743145942688, 0.00388866919092834, 0.041755929589271545, -0.041454050689935684, 0.024404937401413918, -0.011776845902204514, 0.03171616792678833, -0.0021293479949235916, 0.015670429915189743, 0.05895809829235077, -0.020145973190665245, -0.004712567664682865, 0.00381729775108397, 0.0036687511019408703, 0.003689864184707403, -0.06227048486471176, 0.0039834072813391685, 0.025346145033836365, -0.0019687768071889877, -0.016297640278935432, -0.016499165445566177, 0.0150382025167346, -0.010616874322295189, -0.021563012152910233, 0.03408202901482582, -0.020624667406082153, 0.0086745610460639, -0.008603927679359913, 0.0029919848311692476, -0.003695910098031163, 0.0022886970546096563, -0.016815466806292534, -0.029982948675751686, 0.01951979473233223, -0.004236748907715082, -0.01333029568195343, 0.011148311197757721, 0.001836612937040627, 0.013223273679614067, -0.005221490282565355, 0.0008411279995925725, 0.020469853654503822, 0.02856587804853916, 0.02095222659409046, -0.01187800895422697, -0.039742760360240936, -0.0443292036652565, -0.010568349622189999, 0.056696485728025436, 0.036565639078617096, -0.032204896211624146, -0.015917209908366203 ]
restricting-your-own-learning
https://markhneedham.com/blog/2012/12/27/restricting-your-own-learning
false
2012-12-27 00:08:01
Mahout: Parallelising the creation of DecisionTrees
[ "machine-learning-2", "mahout" ]
[ "Machine Learning" ]
A couple of months ago I wrote a http://www.markhneedham.com/blog/2012/10/27/kaggle-digit-recognizer-mahout-random-forest-attempt/[blog post] describing our use of http://mahout.apache.org/[Mahout] random forests for the http://www.kaggle.com/c/digit-recognizer[Kaggle Digit Recogniser Problem] and after seeing how long it took to create forests with 500+ trees I wanted to see if this could be sped up by parallelising the process. From looking at the +++<cite>+++https://github.com/apache/mahout/blob/trunk/core/src/main/java/org/apache/mahout/classifier/df/DecisionForest.java[DecisionTree]+++</cite>+++ it seemed like it should be possible to create lots of small forests and then combine them together. After unsuccessfully trying to achieve this by directly using +++<cite>+++DecisionForest+++</cite>+++ I decided to just copy all the code from that class into https://github.com/jennifersmith/machinenursery/blob/master/src/main/java/MultiDecisionForest.java[my own version] which allowed me to achieve this. The code to build up the forest ends up looking like this: [source,java] ---- List<Node> trees = new ArrayList<Node>(); MultiDecisionForest forest = MultiDecisionForest.load(new Configuration(), new Path("/path/to/mahout-tree")); trees.addAll(forest.getTrees()); MultiDecisionForest forest = new MultiDecisionForest(trees); ---- We can then use +++<cite>+++forest+++</cite>+++ to classify values in a test data set and it seems to work reasonably well. I wanted to try and avoid putting any threading code in so I made use of http://www.gnu.org/software/parallel/[GNU parallel] which is available on Mac OS X with a +++<cite>+++brew install parallel+++</cite>+++ and on Ubuntu by http://askubuntu.com/questions/12764/where-do-i-get-a-package-for-gnu-parallel[adding the following repository] to +++<cite>+++/etc/apt/sources.list+++</cite>+++... [source,text] ---- deb http://ppa.launchpad.net/ieltonf/ppa/ubuntu oneiric main deb-src http://ppa.launchpad.net/ieltonf/ppa/ubuntu oneiric main ---- ...followed by a +++<cite>+++apt-get update+++</cite>+++ and +++<cite>+++apt-get install parallel+++</cite>+++. I then wrote a script to parallelise the creation of the forests: _https://github.com/jennifersmith/machinenursery/blob/master/parallel-forests.sh[parallelise-forests.sh]_ [source,text] ---- #!/bin/bash start=`date` startTime=`date '+%s'` numberOfRuns=$1 seq 1 ${numberOfRuns} | parallel -P 8 "./build-forest.sh" end=`date` endTime=`date '+%s'` echo "Started: ${start}" echo "Finished: ${end}" echo "Took: " $(expr $endTime - $startTime) ---- _https://github.com/jennifersmith/machinenursery/blob/master/build-forest.sh[build-forest.sh]_ [source,sh] ---- #!/bin/bash java -Xmx1024m -cp target/machinenursery-1.0.0-SNAPSHOT-standalone.jar main.java.MahoutPlaybox ---- It should be possible to achieve this by using the parallel option in +++<cite>+++xargs+++</cite>+++ but unfortunately I wasn't able to achieve the same success with that command. I http://stackoverflow.com/questions/2791069/how-to-use-parallel-execution-in-a-shell-script[hadn't come across] the +++<cite>+++seq+++</cite>+++ command until today but it works quite well here for allowing us to specify how many times we want to call the script. I was probably able to achieve about a 30% speed increase when running this on my Air. There was a greater increase running on a high CPU AWS instance although for some reason some of the jobs seemed to get killed and I couldn't figure out why. Sadly even with a new classifier with a massive number of trees I didn't see an improvement over the http://www.markhneedham.com/blog/2012/11/29/kaggle-digit-recognizer-weka-adaboost-attempt/[Weka random forest using AdaBoost] which I wrote about a month ago. We had an accuracy of 96.282% here compared to 96.529% with the Weka version.
null
null
[ 0.016842080280184746, -0.011308259330689907, -0.024899758398532867, 0.04278692975640297, 0.06212128698825836, 0.05206751078367233, 0.0392342135310173, 0.016841240227222443, -0.014464297331869602, -0.01754891127347946, -0.0028072940185666084, -0.016404472291469574, -0.06907935440540314, 0.010468448512256145, -0.032954029738903046, 0.07026244699954987, 0.06049942970275879, -0.007275125943124294, 0.0073422621935606, 0.00047864127554930747, 0.021988222375512123, 0.04023130238056183, 0.02536066062748432, 0.03503230959177017, 0.046386122703552246, 0.028424078598618507, 0.015098423697054386, 0.017763003706932068, -0.043790388852357864, -0.017775142565369606, 0.04369773343205452, 0.016060572117567062, 0.009915542788803577, -0.006357735022902489, 0.020435024052858353, -0.006976366508752108, -0.046243827790021896, 0.018281951546669006, 0.035276662558317184, 0.01908709481358528, -0.049461863934993744, 0.05453549325466156, -0.024890268221497536, 0.02701835334300995, -0.044304247945547104, 0.023423662409186363, -0.035302311182022095, 0.019122231751680374, 0.02083549089729786, 0.014804118312895298, -0.08690524846315384, 0.02472851052880287, -0.0027951241936534643, -0.0026621187571436167, -0.004482333082705736, 0.06518279016017914, 0.04616881534457207, -0.07422934472560883, 0.04488319903612137, -0.02631271444261074, -0.015482107177376747, -0.02842031605541706, -0.001299111871048808, 0.02707614004611969, -0.01869095489382744, -0.03654133528470993, -0.014791242778301239, 0.0464930385351181, -0.03473999723792076, -0.004117660224437714, -0.00237842695787549, 0.006917045451700687, -0.009478352963924408, -0.002257687272503972, 0.006024638190865517, -0.0515114963054657, 0.010552087798714638, 0.06427431106567383, 0.018486758694052696, 0.03943728655576706, -0.01577111892402172, -0.010221651755273342, 0.028362547978758812, 0.026399044319987297, -0.00574201624840498, -0.031107382848858833, -0.013031293638050556, -0.036161940544843674, -0.06773749738931656, 0.055642928928136826, 0.0018279384821653366, -0.06429395079612732, -0.0098408879712224, 0.011445371434092522, -0.00813786406069994, 0.02405393309891224, 0.02420535683631897, -0.012927624396979809, -0.0008253338164649904, 0.005100549664348364, -0.02263251133263111, -0.023363344371318817, 0.01870439387857914, 0.021796751767396927, -0.08892267197370529, -0.00517197186127305, -0.030291320756077766, -0.01883115991950035, -0.00370577210560441, -0.002026205649599433, -0.017184797674417496, 0.018286755308508873, -0.009302426129579544, -0.012400981970131397, -0.07785011827945709, 0.08582164347171783, 0.0028735820669680834, -0.05071086809039116, -0.00414440268650651, 0.017014410346746445, 0.049124788492918015, 0.052447542548179626, -0.006206677295267582, 0.09275292605161667, -0.009101559408009052, 0.022018766030669212, 0.028114328160881996, 0.04131316766142845, -0.037475887686014175, -0.07143482565879822, 0.009467986412346363, 0.045984793454408646, -0.009836194105446339, 0.008489225059747696, 0.003956485074013472, -0.02825160324573517, -0.006808561738580465, 0.019805142655968666, 0.07185138016939163, 0.015100215561687946, -0.012638308107852936, -0.04371056705713272, 0.0031274037901312113, -0.01000512856990099, 0.03292284533381462, 0.014644334092736244, -0.008253717795014381, -0.02475571259856224, -0.03384437784552574, 0.0017839976353570819, -0.011094915680587292, 0.04275376722216606, 0.04052847623825073, -0.05168704316020012, 0.020912041887640953, 0.10750094801187515, 0.02395622432231903, 0.0027170381508767605, -0.007929871790111065, 0.039711758494377136, 0.035959284752607346, 0.02399476058781147, 0.004593756515532732, 0.032493215054273605, -0.024716133251786232, -0.006959086284041405, 0.012879818677902222, 0.05116282403469086, -0.011769397184252739, 0.013623720034956932, -0.05416432395577431, -0.05015508458018303, 0.031395651400089264, -0.059671107679605484, -0.011859243735671043, 0.04244483634829521, 0.06418829411268234, 0.013491690158843994, 0.04187857359647751, 0.015517700463533401, -0.07021686434745789, 0.03604906424880028, 0.02250906266272068, 0.016637295484542847, 0.00836436077952385, -0.0005651194951497018, 0.09906523674726486, 0.042462702840566635, 0.027484320104122162, 0.025491561740636826, -0.06507551670074463, -0.06592723727226257, 0.005006346385926008, -0.008791815489530563, 0.07762894779443741, -0.008702464401721954, -0.00010538023343542591, 0.054104965180158615, 0.01786838099360466, 0.029458099976181984, 0.02211754396557808, -0.017208600416779518, 0.015965405851602554, -0.05951828137040138, -0.0626140907406807, 0.02672893926501274, 0.026702657341957092, -0.05064641311764717, -0.04268805310130119, 0.0029922628309577703, -0.007666296325623989, -0.004939626436680555, 0.013801896944642067, 0.0030014999210834503, 0.034386880695819855, 0.06045090779662132, 0.04927292466163635, -0.02520742453634739, 0.048319391906261444, -0.04310451075434685, 0.006081463303416967, 0.009613812901079655, -0.03763633221387863, 0.004901943262666464, 0.024409260600805283, 0.12378231436014175, 0.056278686970472336, -0.030729085206985474, -0.03628700599074364, 0.015409826301038265, -0.03402945399284363, -0.04025285691022873, -0.008737913332879543, -0.005213157273828983, 0.009455359540879726, -0.011636346578598022, -0.050372812896966934, -0.0458802692592144, 0.026722393929958344, -0.029821310192346573, -0.011228193528950214, 0.05341097339987755, -0.03603564575314522, 0.03780531883239746, 0.02489040605723858, -0.03458819165825844, -0.01880943775177002, -0.007095372769981623, -0.055795423686504364, -0.0034450499806553125, -0.005709939636290073, -0.0013936501927673817, 0.025946855545043945, -0.032036926597356796, -0.040639083832502365, -0.050445277243852615, -0.022705186158418655, 0.017327958717942238, 0.046979039907455444, 0.06361297518014908, 0.016620012000203133, 0.037921808660030365, -0.01384676992893219, -0.00563623895868659, -0.0036277933977544308, -0.0515710785984993, -0.01883818581700325, -0.03019699640572071, 0.02515782229602337, 0.045318908989429474, 0.0021919268183410168, 0.0020151096396148205, 0.04525766521692276, 0.005835050716996193, 0.009797901846468449, -0.031863708049058914, 0.033596061170101166, 0.026626797392964363, -0.0349084734916687, -0.027669165283441544, -0.026445655152201653, 0.02972302958369255, -0.03191140294075012, -0.02277880162000656, 0.0017899321392178535, -0.048719942569732666, 0.07018616050481796, -0.0531521737575531, -0.04219045490026474, 0.018512345850467682, 0.012633135542273521, 0.064873605966568, 0.0010593881597742438, 0.005496174097061157, 0.07172423601150513, 0.001971124904230237, -0.00026773984427563846, 0.02494555152952671, 0.0036228541284799576, 0.034687452018260956, 0.008118359372019768, 0.020501844584941864, 0.04045620560646057, -0.004136071540415287, -0.02797095850110054, -0.013579227030277252, 0.00354699045419693, -0.022628799080848694, -0.28626304864883423, 0.018747935071587563, 0.013851651921868324, -0.04397038742899895, -0.007406334392726421, -0.00023726567451376468, 0.009891126304864883, -0.0390864796936512, -0.007341718766838312, 0.0005357599584385753, -0.027730636298656464, -0.03105263039469719, -0.03991476073861122, 0.06910023838281631, 0.0008220232557505369, 0.022871868684887886, -0.006495755631476641, -0.033227838575839996, 0.016637587919831276, 0.058677151799201965, 0.009843694977462292, -0.04151921346783638, -0.006296736653894186, 0.016686173155903816, 0.0205954909324646, 0.054039083421230316, -0.09246741980314255, 0.03695227578282356, -0.04246237128973007, -0.0020414667669683695, 0.022541917860507965, -0.024858832359313965, 0.011438848450779915, -0.0007453909493051469, -0.010154248215258121, -0.02071141079068184, 0.02420802228152752, 0.046674370765686035, -0.021434396505355835, 0.03529653698205948, -0.020915670320391655, -0.0497405044734478, -0.01209287904202938, -0.0009099515154957771, 0.07665133476257324, 0.0275115929543972, -0.0644921287894249, -0.014118531718850136, -0.023113571107387543, 0.06482832133769989, -0.019342249259352684, -0.04194987565279007, -0.003021904034540057, 0.01342886220663786, -0.02617480233311653, -0.02912278100848198, 0.00636275066062808, -0.01234059501439333, -0.06029559671878815, -0.03621227666735649, 0.0003965091600548476, -0.03737068921327591, 0.006810047663748264, -0.057706546038389206, -0.0033073436934500933, -0.07327800244092941, -0.06589756160974503, -0.002062225714325905, 0.08299971371889114, 0.010294855572283268, -0.026194170117378235, -0.0027775270864367485, -0.007126655895262957, -0.11025157570838928, -0.021615322679281235, -0.05528319254517555, -0.04800979420542717, -0.016293704509735107, -0.011926862411201, 0.06032659485936165, -0.03841056674718857, -0.04722297936677933, 0.017819181084632874, 0.0007405669894069433, 0.024719974026083946, -0.02990359254181385, 0.013380780816078186, 0.00954432226717472, 0.003541859332472086, 0.008034656755626202, 0.05366935208439827, -0.0018556902650743723, -0.025809431448578835, -0.021067315712571144, 0.03473316505551338, 0.02986268512904644, 0.037432920187711716, -0.008340299129486084, 0.020922595635056496, 0.05866555497050285, 0.013887714594602585, -0.045579247176647186, 0.008690757676959038, -0.03255476430058479, -0.037650831043720245, 0.009734907187521458, -0.05704217031598091, 0.012624742463231087, 0.04511747881770134, 0.0368155874311924, -0.011648790910840034, -0.03596479073166847, 0.02836722508072853, -0.04206119477748871, -0.02374895289540291, -0.019474439322948456, 0.007906011305749416, 0.012367659248411655, 0.01810009591281414, -0.03548460826277733, -0.04402519389986992, 0.007979227229952812, 0.004669475369155407, -0.05276702716946602, -0.01827939599752426, -0.028658874332904816, -0.03387002646923065, -0.016875946894288063, -0.013152766972780228, 0.0014101107371971011, -0.0081158597022295, 0.03941681608557701, 0.035449039191007614, -0.016573315486311913, 0.009609350934624672, -0.018778828904032707, -0.04231483116745949, -0.03143414855003357, 0.04759214445948601, 0.0030592873226851225, -0.013571556657552719, -0.008995397947728634, 0.0072790635749697685, 0.034247223287820816, 0.06320338696241379, -0.011154632084071636, 0.02647644467651844, -0.01772289350628853, 0.018076010048389435, -0.019673429429531097, 0.0025572332087904215, -0.05075353756546974, 0.012575127184391022, -0.03520869463682175, -0.037931181490421295, -0.02684749849140644, 0.04293663799762726, -0.006264056079089642, -0.03600706905126572, -0.04171464219689369, 0.04117565229535103, -0.04582042619585991, -0.0003938586451113224, -0.04233057424426079, 0.006874802056699991, 0.06027045473456383, 0.0011200603330507874, 0.06067851185798645, -0.012163895182311535, -0.0029408447444438934, 0.021217186003923416, 0.005498080980032682, -0.04367701709270477, 0.02985953353345394, -0.0071883550845086575, 0.0010777447605505586, 0.022309748455882072, 0.016583973541855812, 0.013811671175062656, 0.014567136764526367, -0.025728359818458557, 0.00014690675016026944, -0.0007532336167059839, 0.009335332550108433, 0.06905346363782883, 0.01864519715309143, -0.01603895239531994, -0.005371069069951773, -0.02012653648853302, 0.000810008030384779, -0.024980826303362846, 0.008369692601263523, 0.007724250666797161, 0.031710147857666016, -0.017069201916456223, -0.07923541218042374, 0.011297821998596191, -0.010937296785414219, 0.003150526899844408, 0.016074921935796738, -0.02106284722685814, -0.004319231957197189, -0.024110104888677597, 0.03934718295931816, 0.07664557546377182, -0.06592828035354614, -0.0028202307876199484, 0.00370269687846303, -0.03260260820388794, -0.004368371330201626, -0.0006746744038537145, -0.05758481100201607, -0.012790018692612648, -0.02752421796321869, 0.011456853710114956, -0.02808135375380516, -0.05038673058152199, -0.014329494908452034, 0.006149632390588522, 0.003829852445051074, 0.007622960023581982, -0.010037609376013279, -0.00833132490515709, -0.018583590164780617, -0.028459498658776283, 0.03005046956241131, 0.011650816537439823, 0.006330492906272411, 0.010866433382034302, -0.024505408480763435, 0.015828130766749382, -0.03679761663079262, 0.015554982237517834, 0.0371599905192852, -0.013080236501991749, 0.0032334299758076668, -0.03705718740820885, 0.00485787121579051, 0.034617383033037186, 0.06914208829402924, 0.005793699994683266, 0.01198800653219223, -0.04565645009279251, -0.004721804987639189, -0.04851797595620155, 0.002120283665135503, -0.029990503564476967, -0.027515191584825516, 0.016042187809944153, 0.0572752021253109, -0.016838356852531433, 0.04238153249025345, -0.022817224264144897, 0.0026291017420589924, 0.06859060376882553, -0.017727702856063843, -0.06412404030561447, -0.029788939282298088, -0.049651000648736954, 0.01293810736387968, 0.00531694246456027, 0.027061158791184425, -0.014398179948329926, 0.0457509383559227, 0.03872351348400116, 0.000004948599325871328, 0.009481502696871758, -0.01808001473546028, 0.02710941806435585, -0.04525056481361389, -0.023334264755249023, -0.09495595842599869, -0.013641291297972202, 0.05395820736885071, 0.0003856068942695856, -0.016496824100613594, -0.02358442172408104, -0.046590887010097504, 0.013231882825493813, -0.06919955462217331, -0.02755173295736313, 0.04706090688705444, -0.010713993571698666, -0.0012388983741402626, 0.00009548559319227934, -0.03460187837481499, 0.03407882899045944, 0.028263192623853683, -0.036154232919216156, -0.030727935954928398, -0.04535790905356407, 0.05718563497066498, 0.02326533943414688, 0.04135667160153389, 0.0007388254161924124, -0.004514892119914293, 0.05822835490107536, 0.0036631827242672443, 0.02440682053565979, 0.031845562160015106, -0.010747312568128109, 0.04994245991110802, 0.060725048184394836, 0.002202274976298213, -0.02147175930440426, 0.011541622690856457, -0.009348579682409763, -0.06367531418800354, 0.028129272162914276, -0.005963456351310015, -0.019061123952269554, -0.02855757623910904, 0.06259627640247345, 0.02891671657562256, -0.03920885547995567, -0.045038264244794846, 0.02923974022269249, -0.06398581713438034, 0.01112335454672575, -0.0322837196290493, 0.02315305732190609, -0.04718285799026489, 0.061076462268829346, -0.01507047563791275, -0.0021730598527938128, 0.0757000744342804, -0.012629232369363308, -0.018816620111465454, 0.017648518085479736, 0.08356741815805435, 0.08646196871995926, 0.01222956832498312, 0.005917235743254423, 0.06653356552124023, -0.012156770564615726, -0.0386623740196228, 0.00016749833594076335, -0.0023059670347720385, -0.031440578401088715, -0.042800694704055786, 0.0443449430167675, 0.07132670283317566, -0.020766636356711388, 0.07010867446660995, -0.03898533433675766, 0.0022667550947517157, 0.021045317873358727, 0.026627738028764725, 0.025105122476816177, 0.06690626591444016, 0.004305214621126652, 0.019774334505200386, -0.03644465282559395, -0.01486065424978733, 0.006763082928955555, 0.010386297479271889, -0.015084832906723022, 0.04022989422082901, -0.00958737637847662, 0.020053837448358536, 0.02072918601334095, 0.050381824374198914, 0.0706045851111412, -0.013128052465617657, -0.020697325468063354, -0.0088711678981781, 0.05718662962317467, 0.027729203924536705, 0.016055021435022354, -0.02199808694422245, -0.016500800848007202, -0.004308751784265041, -0.03427571803331375, -0.00045165701885707676, -0.02373499982059002, -0.026079922914505005, 0.006598465144634247, -0.040396798402071, 0.01316907349973917, 0.02834799326956272, -0.0004306542396079749, -0.05865677073597908, -0.028908494859933853, -0.032824914902448654, -0.025687072426080704, -0.058079034090042114, -0.0006707017309963703, -0.0017878819489851594, 0.0059836325235664845, -0.03489052876830101, -0.008583508431911469, -0.029980819672346115, -0.007168729789555073, 0.03294004127383232, -0.07184595614671707, -0.022676274180412292, 0.005973228719085455, 0.03531334921717644, 0.010238398797810078, 0.01803439110517502, 0.05513375997543335, -0.01287376880645752, -0.005858352407813072, -0.022196991369128227, 0.0011114234803244472, 0.04982324317097664, 0.02680748514831066, -0.01488600391894579, -0.07335790991783142, 0.027130035683512688, 0.008025018498301506, -0.007858315482735634, -0.06513716280460358, 0.0032691992819309235, 0.02247380092740059, -0.015661481767892838, 0.041811536997556686, -0.007197504863142967, -0.0046640001237392426, -0.045281000435352325, -0.03837575390934944, -0.020336849614977837, -0.0025240075774490833, 0.053564514964818954, -0.007035533897578716, 0.08793249726295471, 0.019405927509069443, -0.03479165583848953, -0.047223180532455444, -0.0042124479077756405, 0.001974067185074091, 0.00008262805931735784, -0.04895051196217537, -0.04043024405837059, -0.03164535388350487, -0.0935337245464325, 0.002777709160000086, 0.017517203465104103, -0.024720923975110054, -0.03630102798342705, -0.00732702249661088, 0.0054865446873009205, -0.03937123343348503, 0.008703658357262611, -0.04254034906625748, 0.021098002791404724, -0.02212686277925968, -0.029465898871421814, -0.02239335887134075, 0.008890053257346153, -0.01423880085349083, 0.010008500888943672, 0.019396651536226273, -0.07530299574136734, 0.0006635419558733702, 0.014505433849990368, 0.02079448290169239, 0.05159522965550423, 0.009943806566298008, -0.040595199912786484 ]
[ -0.09173865616321564, -0.02843642048537731, -0.046284452080726624, -0.023020265623927116, 0.030444065108895302, -0.019308218732476234, -0.039581261575222015, 0.0065789781510829926, 0.0008370082359761, -0.0017868677387014031, 0.03353499993681908, -0.08462733775377274, -0.012857154943048954, -0.018987024202942848, 0.11179564148187637, 0.03868389129638672, 0.0013570154551416636, -0.034264251589775085, -0.005039806477725506, 0.024529701098799706, 0.038935549557209015, -0.003742366097867489, -0.03777529299259186, -0.03158991038799286, 0.018285706639289856, 0.020511621609330177, 0.03427141532301903, -0.06609882414340973, 0.008848457597196102, -0.2237718552350998, 0.03299481049180031, -0.01313478872179985, 0.06890396028757095, -0.0254726130515337, -0.012791108340024948, 0.029098832979798317, 0.033914171159267426, 0.03521086648106575, -0.010752729140222073, 0.03969075158238411, 0.007520170882344246, 0.013354367576539516, -0.043246135115623474, -0.039174649864435196, 0.0458684042096138, -0.018061760812997818, -0.013177880086004734, -0.023836486041545868, -0.035190265625715256, 0.01852608285844326, -0.05515119805932045, -0.036098260432481766, 0.003772730240598321, -0.012670230120420456, 0.0028768833726644516, 0.017348628491163254, 0.02904522605240345, 0.05142595246434212, 0.01746525429189205, 0.027627456933259964, 0.029336752369999886, 0.003920598421245813, -0.14819179475307465, 0.06742522120475769, 0.021330751478672028, 0.047274913638830185, -0.023300232365727425, -0.07018674910068512, 0.0029014938045293093, 0.08535166084766388, 0.022750284522771835, 0.012109944596886635, -0.017083588987588882, 0.036225516349077225, 0.007643361575901508, -0.03358116373419762, -0.0008999861893244088, 0.030084792524576187, 0.02958240546286106, -0.013826954178512096, -0.07367131859064102, -0.009939729236066341, -0.03165705129504204, -0.01906275935471058, -0.04367179423570633, 0.01727937161922455, -0.03808847814798355, 0.02165249176323414, -0.00322720967233181, 0.05858343467116356, 0.06564436107873917, 0.0075327008962631226, 0.03613242134451866, -0.012046268209815025, -0.09723064303398132, 0.016725758090615273, 0.009442703798413277, 0.010844193398952484, -0.02750355377793312, 0.39628756046295166, -0.023118142038583755, -0.02495637908577919, 0.057553261518478394, 0.00919780321419239, -0.02286396361887455, -0.004461417905986309, -0.022916849702596664, -0.052076395601034164, 0.0013702826108783484, -0.019929856061935425, 0.051606133580207825, -0.04638706147670746, 0.0623442567884922, -0.01380455307662487, -0.012026539072394371, -0.022397037595510483, 0.045327045023441315, 0.03718118369579315, 0.0021229246631264687, 0.05371733382344246, -0.020427510142326355, 0.010206907987594604, 0.023413382470607758, -0.015059336088597775, 0.06717173010110855, 0.02339579164981842, -0.00017308063979726285, 0.0600651353597641, 0.06199566647410393, 0.021686922758817673, 0.03318507969379425, -0.04302261397242546, -0.04475146159529686, -0.02236125059425831, -0.0031376630067825317, -0.035422757267951965, 0.05450233817100525, -0.015674272552132607, 0.009656848385930061, 0.00931425392627716, -0.018247829750180244, 0.016698675230145454, 0.05165940150618553, -0.002600458450615406, -0.033312685787677765, 0.11053456366062164, -0.002261941786855459, -0.030878469347953796, -0.034582559019327164, -0.05160098522901535, 0.013853516429662704, 0.016990812495350838, -0.015765532851219177, -0.07279430329799652, 0.024577729403972626, 0.027272619307041168, 0.09246299415826797, -0.023639004677534103, -0.02841913513839245, -0.001166678499430418, -0.012987692840397358, -0.01721607707440853, 0.0008086685556918383, 0.034364134073257446, 0.06057770922780037, -0.09232272207736969, -0.022886652499437332, 0.010611350648105145, -0.0030746101401746273, -0.0579020231962204, 0.014018051326274872, 0.030495543032884598, 0.02749056927859783, 0.026731222867965698, 0.02929612621665001, -0.056506164371967316, -0.04119070991873741, 0.021936045959591866, 0.019568895921111107, 0.001010890700854361, 0.012004593387246132, 0.011107406578958035, -0.03233923017978668, -0.006221839692443609, -0.027067024260759354, -0.08377337455749512, -0.08213551342487335, 0.009217964485287666, -0.036319799721241, 0.001193682081066072, -0.021875806152820587, -0.031857725232839584, -0.03258213400840759, 0.06353989243507385, 0.01487000472843647, -0.04862160608172417, 0.04354346543550491, -0.033805981278419495, -0.0065101501531898975, -0.03435409814119339, -0.014813216403126717, 0.03812536597251892, -0.032199591398239136, -0.013069706037640572, -0.06998133659362793, 0.016809502616524696, 0.055027689784765244, -0.03170250728726387, 0.07273051887750626, 0.005585508421063423, -0.009118447080254555, -0.02391374111175537, -0.024008288979530334, 0.02828715369105339, -0.032869305461645126, 0.005393592640757561, -0.022912222892045975, 0.012142530642449856, 0.026068799197673798, 0.04931699484586716, -0.02546515315771103, -0.0651329755783081, -0.02346872165799141, -0.35273316502571106, -0.051268063485622406, 0.013339080847799778, -0.0041915178298950195, 0.01220566313713789, -0.055081214755773544, -0.011394430883228779, -0.009398700669407845, -0.007723389193415642, 0.0048291441053152084, 0.1116192638874054, -0.026312844827771187, 0.026456253603100777, -0.018320154398679733, -0.004300462082028389, 0.05886691063642502, -0.0327758714556694, -0.03750089183449745, -0.03325348347425461, 0.008558232337236404, 0.016961848363280296, 0.0324527770280838, 0.018331795930862427, -0.06735476851463318, -0.01209542527794838, -0.03797830268740654, 0.09916439652442932, 0.013417733833193779, 0.050529349595308304, -0.03419871628284454, 0.05865463241934776, 0.025102904066443443, -0.01925763115286827, -0.09648942947387695, 0.01589069701731205, -0.04218451678752899, -0.03143797442317009, 0.010300181806087494, 0.014877347275614738, -0.0057341959327459335, -0.02621927671134472, 0.051599085330963135, -0.053857434540987015, -0.06204359605908394, -0.060014721006155014, 0.02170952782034874, -0.04893624410033226, -0.029521945863962173, -0.011384926736354828, 0.010473676957190037, -0.010491099208593369, 0.016300451010465622, 0.028019241988658905, 0.0318879708647728, -0.004236969165503979, -0.03242938593029976, -0.09376984089612961, -0.009037457406520844, 0.010750225745141506, -0.005719258449971676, 0.05188196524977684, 0.01375277154147625, 0.012836754322052002, -0.08485032618045807, 0.006022835616022348, 0.018912458792328835, -0.05267786979675293, 0.007467951159924269, 0.04056357592344284, -0.05123012140393257, 0.003287227125838399, 0.09318145364522934, 0.011791883036494255, -0.006640931591391563, 0.05600627511739731, 0.056641366332769394, 0.02363342046737671, 0.017000209540128708, 0.02352142333984375, 0.019338782876729965, 0.04011660814285278, -0.03396405279636383, 0.020973369479179382, -0.0005362792289815843, 0.017920134589076042, 0.05122526362538338, 0.02152642421424389, -0.011097671464085579, 0.059399429708719254, 0.0014784150989726186, 0.005963602568954229, -0.004590031690895557, 0.021555712446570396, -0.02770586684346199, 0.09014584869146347, 0.004531249403953552, -0.25029921531677246, 0.03122781030833721, 0.03999578207731247, 0.0770566314458847, 0.0007238344987854362, 0.023675857111811638, 0.03565427288413048, -0.048231445252895355, 0.02030678652226925, -0.004152168519794941, 0.00516907824203372, 0.065684475004673, 0.015857968479394913, -0.010305674746632576, 0.041780177503824234, -0.005163968075066805, 0.020403552800416946, 0.018263690173625946, 0.02027352899312973, -0.031579628586769104, 0.008251103572547436, -0.04363728314638138, 0.16956442594528198, 0.0003532215778250247, -0.00879774708300829, 0.04495929181575775, -0.0256508756428957, -0.02418096922338009, 0.08070645481348038, -0.00279627600684762, 0.04346388950943947, 0.005066186189651489, 0.07005385309457779, -0.021610351279377937, 0.03983989357948303, -0.0010240364354103804, 0.003993550315499306, 0.022993559017777443, 0.02753746695816517, -0.004901389591395855, 0.002513302955776453, 0.0060967011377215385, -0.0347619503736496, 0.0009647968108765781, 0.08891454339027405, -0.03672926500439644, 0.0005410776357166469, -0.048045814037323, -0.08028338849544525, 0.031582821160554886, -0.024145478382706642, -0.046022530645132065, -0.027257032692432404, -0.022266406565904617, -0.004060863982886076, 0.09242866933345795, 0.035354431718587875, -0.02641030214726925, -0.07849188894033432, -0.014927254058420658, 0.006973095703870058, -0.047764480113983154, 0.06967531889677048, -0.016230348497629166, 0.017386047169566154 ]
[ 0.005632411222904921, 0.024702221155166626, -0.023742392659187317, 0.02720249630510807, 0.011610081419348717, -0.021302368491888046, -0.017998740077018738, 0.005597738549113274, -0.026352370157837868, 0.045316945761442184, -0.006099932827055454, -0.008748706430196762, 0.023193608969449997, -0.0305341649800539, -0.01821781136095524, -0.00889161042869091, -0.040552884340286255, 0.06191599369049072, 0.02671646699309349, -0.020662764087319374, -0.004161419812589884, 0.04689977690577507, 0.013078822754323483, 0.008993195369839668, -0.004811298567801714, -0.013047494925558567, -0.07127751410007477, -0.004613292403519154, 0.010829336009919643, -0.10534761101007462, -0.029369626194238663, -0.03307410702109337, 0.0011522897984832525, 0.01823047362267971, -0.07170505821704865, -0.004830019548535347, -0.004981050733476877, 0.007313764188438654, -0.008120022714138031, 0.033671725541353226, 0.010573714040219784, 0.0062033142894506454, -0.0006250650621950626, -0.013011321425437927, -0.02986936829984188, -0.009976666420698166, -0.057696614414453506, -0.015291847288608551, 0.011401966214179993, -0.01964578591287136, -0.04014848917722702, -0.048645589500665665, -0.01827436499297619, -0.009512604214251041, 0.024257900193333626, -0.04610985517501831, -0.004748942330479622, -0.006795151624828577, 0.012980440631508827, 0.00818939134478569, 0.04448666423559189, 0.03264550119638443, -0.028129154816269875, -0.008147206157445908, 0.017190057784318924, -0.00918958242982626, -0.017905699089169502, 0.005079923663288355, 0.05161024257540703, -0.01905165985226631, 0.005040362011641264, 0.03411881625652313, -0.01414628978818655, -0.04045431315898895, 0.0073928870260715485, 0.011359485797584057, -0.007985194213688374, 0.054043229669332504, 0.0104562072083354, -0.024185262620449066, -0.03276293724775314, 0.02537267468869686, -0.019158311188220978, -0.020852822810411453, -0.0031342008151113987, -0.019823426380753517, -0.03151485323905945, 0.055018339306116104, -0.006651596166193485, -0.015593635849654675, -0.0013493880396708846, -0.002114394912496209, -0.019519712775945663, 0.030821558088064194, -0.11217933148145676, 0.033353060483932495, -0.0032362588681280613, 0.004816268105059862, -0.03583157807588577, 0.8002362847328186, -0.010893072932958603, 0.01933606155216694, 0.05064796656370163, -0.0008818667265586555, 0.010014171712100506, 0.00014745355292689055, -0.05848293751478195, -0.023462191224098206, 0.022712545469403267, -0.035557810217142105, 0.007348259910941124, 0.026566212996840477, 0.01740851253271103, 0.05941884592175484, 0.023545661941170692, 0.007836735807359219, 0.022256912663578987, -0.03180529177188873, 0.013454433530569077, 0.012807375751435757, -0.01568220742046833, -0.03863269463181496, 0.0031931744888424873, -0.021528447046875954, 0.06062735617160797, -0.13285653293132782, -0.008984684944152832, -7.350201606482649e-33, 0.059285230934619904, -0.02003048174083233, 0.03174813091754913, 0.005967563949525356, 0.03280933201313019, -0.009613217785954475, -0.01826079934835434, -0.013050149194896221, -0.01732984557747841, -0.016778629273176193, -0.028887873515486717, -0.007958672940731049, 0.019605178385972977, -0.017665596678853035, 0.02811315841972828, -0.02822193317115307, -0.016573091968894005, 0.015186857432126999, 0.014922801405191422, 0.016592318192124367, 0.005622701719403267, 0.011895747855305672, -0.037101514637470245, 0.050047580152750015, 0.052185334265232086, 0.02520693838596344, 0.028255963698029518, -0.033748432993888855, 0.003295151749625802, -0.024107372388243675, 0.0049468111246824265, 0.0015450339997187257, 0.009458774700760841, -0.030683886259794235, 0.010326213203370571, -0.05863678827881813, -0.008604409173130989, 0.020067116245627403, -0.043667856603860855, -0.06757429242134094, -0.05119231715798378, -0.026848770678043365, 0.002025927184149623, -0.007318415679037571, -0.02318877913057804, 0.013079107739031315, -0.005682739429175854, 0.06564311683177948, -0.006838332396000624, 0.03578193485736847, -0.00941371824592352, 0.024011891335248947, 0.0085343848913908, -0.001067737233825028, -0.020486194640398026, 0.0631323978304863, 0.006568921264261007, 0.030089721083641052, 0.0026235943660140038, 0.07152628898620605, -0.019580572843551636, 0.003200892126187682, -0.0028157627675682306, 0.026757128536701202, -0.025781406089663506, -0.008698251098394394, 0.022670311853289604, -0.025843659415841103, 0.05629352107644081, 0.037676651030778885, -0.026410024613142014, -0.012319467030465603, -0.008103777654469013, -0.014766685664653778, 0.000508349621668458, -0.036204155534505844, 0.04908259958028793, -0.012693880125880241, -0.030666569247841835, 0.02854030579328537, 0.002975695999339223, 0.0006716016214340925, 0.0053628552705049515, -0.03330155089497566, 0.026939375326037407, -0.003220820566639304, 0.001093970495276153, -0.0020936366636306047, 0.009154189378023148, 0.008177497424185276, 0.03903503715991974, 0.06898581981658936, -0.005907708313316107, -0.03226245939731598, 0.0123308589681983, 7.997377368167552e-33, -0.013084996491670609, -0.04466966912150383, 0.025936199352145195, 0.013857852667570114, 0.011079026386141777, -0.005914346780627966, -0.0298275426030159, -0.010747682303190231, -0.05642298236489296, -0.00005504664659383707, -0.02209015004336834, 0.04419504851102829, -0.024644672870635986, 0.0004036785976495594, 0.04646255075931549, -0.043962448835372925, 0.03535440191626549, 0.02269642986357212, 0.05182911455631256, 0.048531387001276016, 0.055240314453840256, 0.024176381528377533, -0.0005217326106503606, -0.006008108612149954, -0.005152542144060135, 0.026325669139623642, -0.04333190247416496, 0.018331490457057953, -0.017491647973656654, -0.014530797488987446, 0.025106992572546005, -0.036873709410429, -0.01783488132059574, -0.02722121775150299, -0.028803560882806778, -0.02392553724348545, 0.001478945603594184, -0.04671934247016907, 0.01327105425298214, 0.06454447656869888, 0.017444422468543053, 0.019470661878585815, -0.04887690022587776, 0.02231026254594326, 0.019552120938897133, 0.02088594064116478, 0.007073761895298958, 0.03618723899126053, 0.008749729953706264, 0.025325287133455276, 0.009259364567697048, 0.008103391155600548, -0.008626922965049744, 0.05528194084763527, 0.02313382923603058, -0.016513794660568237, -0.03298179432749748, 0.048550959676504135, 0.0026625394821166992, 0.018131794407963753, -0.03996581211686134, -0.018987854942679405, -0.02948720008134842, -0.008221207186579704, -0.026031209155917168, -0.019140658900141716, 0.023981455713510513, -0.025291407480835915, -0.003301162039861083, -0.0197545625269413, -0.019026359543204308, 0.005698625463992357, -0.013467755168676376, 0.048189472407102585, 0.028303872793912888, -0.040208615362644196, -0.04975144937634468, 0.0206472035497427, -0.018609710037708282, 0.030709154903888702, 0.01896255649626255, 0.03688625991344452, 0.009077736176550388, -0.0041346242651343346, 0.03044097125530243, 0.003655920969322324, -0.01373391505330801, 0.03359256312251091, 0.023549769073724747, -0.04576955363154411, -0.012620136141777039, 0.06377650797367096, 0.0025424889754503965, 0.03734568879008293, 0.00021697962074540555, -1.2643580404869681e-8, -0.00038075519842095673, 0.03907923772931099, -0.01576187275350094, -0.013784943148493767, 0.05674807354807854, 0.02037634700536728, -0.03842935711145401, 0.035130228847265244, -0.07849163562059402, 0.003473661607131362, 0.0683244913816452, -0.00915424432605505, -0.023785699158906937, 0.03505179286003113, 0.02488544024527073, -0.07392317801713943, 0.009061813354492188, -0.019242437556385994, 0.01569686271250248, 0.053819023072719574, 0.022129807621240616, 0.018644263967871666, -0.0056645008735358715, 0.030188560485839844, 0.0036858494859188795, -0.04228251799941063, 0.04623933136463165, -0.06294019520282745, -0.00868696253746748, 0.010911069810390472, -0.023319942876696587, -0.009204896166920662, -0.03333329036831856, 0.04320912808179855, -0.029284771531820297, -0.0009911878732964396, -0.0025211565662175417, 0.06450202316045761, 0.015847692266106606, 0.0004280363500583917, -0.017175111919641495, -0.04155919328331947, -0.003835997311398387, -0.03275218978524208, -0.018353331834077835, 0.017410876229405403, -0.0036606297362595797, 0.007277372758835554, 0.025876296684145927, -0.02403860166668892, -0.011432094499468803, -0.02354929968714714, 0.03991767764091492, 0.0007443172507919371, 0.014534978196024895, -0.04530254751443863, 0.012291938066482544, -0.04291646182537079, -0.005657013971358538, 0.02296551689505577, 0.04647282138466835, -0.05369637534022331, -0.027486080303788185, -0.026304734870791435 ]
mahout-parallelising-the-creation-of-decisiontrees
https://markhneedham.com/blog/2012/12/27/mahout-parallelising-the-creation-of-decisiontrees
false
2012-12-11 23:44:05
rsyncing to an AWS instance
[ "software-development" ]
[ "Software Development" ]
I wanted to try running some of the http://www.markhneedham.com/blog/category/machine-learning/[machine learning algorithms] that https://twitter.com/jennifersmithco[Jen] and I have been playing around with on a beefier machine so I thought spinning up an AWS instance would be the best way to do that. I built the JAR with the appropriate algorithms on my machine and then wanted to copy it up onto an AWS instance. I could have used +++<cite>+++scp+++</cite>+++ but I quite like the progress bar that you can get with +++<cite>+++rsync+++</cite>+++ and since the JAR had somehow drifted to a size of 47MB the progress bar was useful. When I provisioned the machine I created a public/private key pair and I was able to ssh into the machine like this: [source,text] ---- ssh -l ubuntu -i ~/Downloads/machinenursery.pem ec2-54-242-108-142.compute-1.amazonaws.com ---- I needed to tell rsync to use the pen file which I initially tried to do with the following command: [source,text] ---- rsync --progress 'ssh -i /Users/markhneedham/Downloads/machinenursery.pem' -avz target/ [email protected]:machinenursery ---- It seemed to ignore the pem file and I got a permission denied error when I ran this: [source,text] ---- Permission denied (publickey). rsync: connection unexpectedly closed (0 bytes received so far) [sender] rsync error: unexplained error (code 255) at /SourceCache/rsync/rsync-42/rsync/io.c(452) [sender=2.6.9] ---- Eventually http://alestic.com/2009/04/ubuntu-ec2-sudo-ssh-rsync[came across an article which explained a way around the problem] using RSH instead of SSH: [source,text] ---- rsync --progress --rsh 'ssh -i /Users/markhneedham/Downloads/machinenursery.pem' -avz target/ [email protected]:machine nursery ---- As I understand it RSH isn't secure but all I'm transferring is a JAR file so it didn't seem like too much of an issue. I'm sure there must be a way to transfer this file using SSH but I've tried all the different flags and I can't figure it out so if you know how to please let me know!.
null
null
[ 0.010142352432012558, -0.03703346475958824, -0.043779876083135605, 0.05405848100781441, 0.08483889698982239, 0.02431611903011799, 0.036318957805633545, 0.024158554151654243, -0.010083788074553013, -0.004473558627068996, 0.0007540369988419116, -0.008474523201584816, -0.055851541459560394, 0.027049213647842407, -0.01844765990972519, 0.056814033538103104, 0.08368675410747528, -0.007882467471063137, 0.012010430917143822, 0.025210000574588776, 0.018941672518849373, 0.048043470829725266, 0.013648626394569874, -0.002220290480181575, 0.006976471282541752, 0.01154264435172081, 0.0004987263237126172, -0.01915121078491211, -0.054081402719020844, -0.013070959597826004, 0.07411014288663864, -0.029114797711372375, 0.01278191339224577, -0.010439018718898296, 0.03904750198125839, -0.0008145186002366245, -0.04922163113951683, 0.0166457649320364, 0.006169799715280533, 0.016708536073565483, -0.04852308705449104, 0.03869856148958206, -0.03873537853360176, 0.015016419813036919, -0.024899063631892204, 0.021600183099508286, -0.029706032946705818, 0.018443699926137924, 0.018328417092561722, 0.016188738867640495, -0.07735747843980789, 0.053023140877485275, -0.0017362856306135654, -0.04273930564522743, 0.032093342393636703, 0.021345535293221474, 0.018708830699324608, -0.07954175025224686, 0.044645801186561584, -0.04018168896436691, -0.024078821763396263, -0.026319358497858047, -0.028344474732875824, 0.021925780922174454, -0.01704603061079979, -0.057195033878088, 0.02325568161904812, 0.04676825553178787, -0.03358027711510658, -0.016716497018933296, -0.00483514741063118, -0.01859617605805397, -0.03335639089345932, 0.00515943206846714, 0.019018439576029778, -0.05912785977125168, 0.0026345308870077133, 0.056749049574136734, 0.01470490824431181, 0.06459159404039383, -0.008018437772989273, 0.015835920348763466, -0.0026403518859297037, 0.02386237122118473, -0.004911306779831648, -0.04271343722939491, -0.02337707206606865, -0.0015950837405398488, -0.04720392823219299, 0.06944833695888519, 0.03203156962990761, -0.032287340611219406, -0.0021507663186639547, 0.01348135992884636, -0.005874615628272295, 0.001014447771012783, -0.011799171566963196, -0.005701856687664986, 0.0022946784738451242, -0.007809686008840799, -0.03708294406533241, -0.015258938074111938, -0.00767666706815362, 0.019389795139431953, -0.057329583913087845, 0.030492538586258888, -0.0240380447357893, -0.02201644703745842, 0.0053987945429980755, -0.026763390749692917, -0.002951781963929534, 0.03843886777758598, -0.02174977771937847, 0.0005209868540987372, -0.0768577978014946, 0.0487016960978508, 0.023089516907930374, -0.08067616075277328, -0.012658754363656044, 0.003767126239836216, 0.0330766960978508, 0.03138738498091698, -0.00039498586556874216, 0.07456343621015549, -0.0015289313159883022, 0.015111815184354782, 0.012338444590568542, 0.030479665845632553, -0.017676766961812973, -0.04800688847899437, -0.021101372316479683, 0.09227791428565979, 0.030530834570527077, 0.025879228487610817, -0.014928776770830154, -0.002232157625257969, -0.009177225641906261, 0.009027632884681225, 0.07968266308307648, 0.041460152715444565, 0.00307430699467659, -0.00004945119144394994, 0.02759876847267151, 0.0007740085129626095, 0.024334046989679337, 0.0027921327855437994, 0.017811313271522522, -0.026972072198987007, -0.048122305423021317, 0.0064052981324493885, 0.020635345950722694, 0.02276057004928589, 0.04974246770143509, -0.044198401272296906, 0.03197092190384865, 0.07464832067489624, 0.02991868183016777, 0.013051127083599567, -0.00869018118828535, -0.007127995137125254, 0.02877511829137802, 0.05090928077697754, -0.00741450022906065, 0.016017818823456764, -0.006884576752781868, -0.027408048510551453, 0.021789180114865303, 0.04009599611163139, -0.009365598671138287, -0.0028768053743988276, -0.05666225403547287, -0.03390183672308922, 0.06542971730232239, -0.024927563965320587, -0.018178563565015793, 0.043790146708488464, 0.094306580722332, 0.04290173575282097, 0.044278811663389206, -0.009348015300929546, -0.07130177319049835, 0.061700768768787384, 0.014318156987428665, 0.028662104159593582, 0.0409885011613369, -0.016054503619670868, 0.06974717974662781, 0.033102717250585556, 0.015120459720492363, 0.04900144413113594, -0.07894937694072723, -0.07143803685903549, -0.001930266385897994, -0.008631574921309948, 0.06652023643255234, -0.0025756778195500374, 0.023969577625393867, 0.0498470775783062, 0.005655115470290184, 0.01219185721129179, 0.011429334059357643, -0.010884081944823265, 0.011142885312438011, -0.09640949964523315, -0.0956590324640274, 0.045675572007894516, 0.04249149560928345, -0.028803830966353416, -0.048002712428569794, 0.0079135000705719, -0.061922360211610794, 0.012124697677791119, 0.01296484936028719, -0.03126632794737816, 0.032453667372465134, 0.007749344687908888, 0.020719846710562706, -0.0507223904132843, 0.04121804237365723, -0.03498082607984543, 0.034805141389369965, 0.004477677866816521, 0.014638791792094707, 0.02828253246843815, 0.011456230655312538, 0.10568723827600479, 0.055415984243154526, 0.01125327218323946, -0.05911837890744209, 0.05840357393026352, -0.007439720910042524, -0.05677938088774681, 0.008106590248644352, -0.006110968068242073, -0.00980708934366703, 0.011731097474694252, -0.043142057955265045, -0.0315600261092186, 0.010305195115506649, -0.02860613539814949, -0.002013393444940448, 0.06867921352386475, -0.0007256960379891098, 0.04635893926024437, 0.015242327004671097, -0.02693161927163601, -0.014365958981215954, -0.04250764846801758, -0.061756670475006104, 0.014366984367370605, -0.008978184312582016, -0.007194031961262226, 0.03366472199559212, -0.03366902470588684, -0.013402196578681469, -0.0299143735319376, -0.05973806232213974, 0.017748462036252022, 0.026030540466308594, 0.0836002379655838, -0.019074374809861183, 0.04268181696534157, -0.04497305303812027, 0.0062206462025642395, -0.006624814122915268, -0.04102315753698349, -0.0596768818795681, -0.046171680092811584, 0.05132562667131424, 0.01408019196242094, 0.010734224691987038, 0.0066474080085754395, 0.0038886582478880882, -0.010593831539154053, 0.04444718360900879, -0.0161917544901371, 0.058798812329769135, -0.02677258476614952, -0.0003156402090098709, -0.016698257997632027, 0.008373517543077469, 0.031206991523504257, -0.03340622037649155, 0.007800121325999498, 0.02755163237452507, -0.048152778297662735, 0.039961833506822586, -0.07352226227521896, -0.02131032384932041, -0.007716844789683819, -0.018150491639971733, 0.05119146406650543, 0.04242323338985443, 0.013015327043831348, 0.05743679031729698, 0.015077482908964157, 0.019841473549604416, 0.003432969329878688, 0.032079145312309265, 0.03518521785736084, 0.011586855165660381, 0.006886720657348633, 0.029897043481469154, -0.01390898134559393, -0.011739498935639858, -0.058307990431785583, 0.023385999724268913, -0.04971008002758026, -0.27157795429229736, 0.05065033957362175, 0.005175988655537367, -0.022234681993722916, 0.01872965320944786, -0.012455636635422707, 0.017477747052907944, -0.03001791425049305, -0.01548135094344616, 0.009865942411124706, -0.006541376002132893, -0.018117204308509827, 0.01263255812227726, 0.03205350041389465, 0.003906251396983862, 0.027860548347234726, 0.009779561311006546, -0.05804437771439552, -0.016258100047707558, 0.008796451613307, -0.014805398881435394, -0.054029982537031174, 0.027511240914463997, 0.03210454061627388, 0.06369438022375107, 0.06359841674566269, -0.06914025545120239, 0.0381753034889698, -0.044008880853652954, -0.02260832116007805, 0.006049165036529303, -0.008168487809598446, 0.008193634450435638, -0.0032364323269575834, -0.015405694022774696, -0.011206544935703278, 0.013154163956642151, 0.01845395565032959, 0.0188769418746233, 0.029440976679325104, -0.024682719260454178, -0.038150858134031296, 0.006491177249699831, 0.008721757680177689, 0.07304857671260834, -0.01787097007036209, -0.04290466755628586, -0.04914015904068947, -0.041755788028240204, 0.0982709676027298, -0.06444928050041199, -0.04874726012349129, -0.0035665100440382957, 0.03336052596569061, 0.00823812186717987, 0.0012103221379220486, -0.04927298426628113, 0.009351515211164951, -0.02988136000931263, -0.035636693239212036, -0.006733437068760395, -0.038426682353019714, -0.011737457476556301, -0.054524533450603485, 0.005528900772333145, -0.04820369556546211, -0.042096711695194244, -0.021254265680909157, 0.08519522845745087, 0.02418297901749611, -0.020307190716266632, -0.0008478718809783459, -0.026128031313419342, -0.10675700753927231, 0.007995662279427052, -0.03225911036133766, -0.021626099944114685, 0.02194596640765667, 0.005431407131254673, 0.04319847747683525, -0.05267038568854332, -0.033003076910972595, 0.011054998263716698, 0.004638723097741604, 0.01461375504732132, -0.015058389864861965, 0.04110170155763626, -0.03669091686606407, -0.006550048477947712, -0.013702535070478916, 0.0568276047706604, -0.038015227764844894, -0.046740930527448654, -0.046246763318777084, 0.015218274667859077, 0.015339016914367676, -0.013105325400829315, 0.020429514348506927, 0.004813360515981913, 0.04040352255105972, 0.0230896957218647, -0.05125550925731659, 0.022021111100912094, -0.05857027694582939, -0.00441703712567687, 0.007739284075796604, -0.06013807654380798, -0.013355212286114693, 0.024304429069161415, 0.032206423580646515, 0.0008337919716723263, -0.05856214463710785, 0.025574656203389168, -0.06460926681756973, -0.04932839423418045, 0.0019344252068549395, -0.0017634883988648653, 0.015497968532145023, 0.025655072182416916, -0.0198962464928627, -0.04865272343158722, 0.015317135490477085, 0.012596696615219116, -0.03970067948102951, -0.0328487753868103, -0.0008371058502234519, 0.015018293634057045, -0.0007988779107108712, 0.020736780017614365, -0.009959225542843342, -0.03520854935050011, 0.013946601189672947, 0.043554939329624176, -0.010293395258486271, 0.022445330396294594, -0.005350351333618164, -0.042422931641340256, -0.03665054589509964, 0.0207379050552845, 0.02248513512313366, -0.02886386215686798, -0.008004417642951012, 0.007198263891041279, 0.037073519080877304, 0.05474180355668068, 0.023804811760783195, 0.05218150094151497, -0.004465954843908548, 0.024821586906909943, -0.025966202840209007, 0.014320640824735165, -0.05287432670593262, 0.046709414571523666, -0.039660558104515076, -0.018939336761832237, -0.0053168656304478645, 0.031726352870464325, -0.011840049177408218, -0.03314219415187836, -0.010639269836246967, 0.013403601013123989, -0.038935452699661255, 0.016322487965226173, -0.01688610017299652, 0.007001359947025776, 0.0460251048207283, -0.0007388131343759596, 0.013466070406138897, -0.03357500582933426, -0.02649434097111225, 0.01708221435546875, 0.009332136251032352, -0.027853291481733322, 0.008675636723637581, 0.013346858322620392, 0.029193371534347534, 0.020737042650580406, 0.02388278767466545, 0.02059725485742092, -0.0009686301345936954, -0.02740348130464554, -0.020685086026787758, -0.0003111260011792183, 0.010529513470828533, 0.03465786576271057, 0.028639698401093483, -0.0034244696144014597, 0.018271369859576225, -0.01879815198481083, 0.003558554919436574, -0.023468803614377975, 0.0009818790713325143, -0.010157960467040539, 0.003049002494663, -0.007212666794657707, -0.06998786330223083, 0.03522547334432602, 0.030278243124485016, 0.022242840379476547, 0.008210440166294575, -0.020761806517839432, 0.00992735568434, -0.009899783879518509, 0.051250167191028595, 0.07551666349172592, -0.06999803334474564, 0.00446383748203516, -0.0033578264992684126, 0.03541266545653343, 0.005406515207141638, 0.006642421241849661, -0.03807651251554489, -0.0275653675198555, 0.01081223413348198, 0.03140448406338692, -0.04865773394703865, -0.0495569109916687, -0.008068941533565521, 0.0014842053642496467, -0.020084198564291, 0.015265481546521187, 0.002470348495990038, 0.005948547273874283, -0.003249899484217167, -0.049382682889699936, -0.0016378435539081693, -0.021972183138132095, -0.01908748224377632, -0.0024304918479174376, -0.002895854413509369, -0.015584618784487247, -0.030922068282961845, 0.029543880373239517, 0.01910426653921604, -0.012424729764461517, -0.02603655681014061, -0.025413986295461655, 0.003289707936346531, -0.025616155937314034, 0.04866989329457283, 0.005207240581512451, 0.013365097343921661, -0.030912963673472404, 0.00711902417242527, -0.04185333102941513, 0.021297039464116096, -0.0034753605723381042, -0.009769633412361145, 0.03611385077238083, 0.027625523507595062, 0.011303801089525223, 0.021945936605334282, -0.02929982729256153, -0.0452854223549366, 0.05024801194667816, -0.04229477792978287, -0.017217500135302544, -0.022419454529881477, -0.0501319095492363, 0.036250241100788116, 0.019420085474848747, 0.026875361800193787, -0.09590309113264084, 0.032792676240205765, 0.01922709122300148, -0.008149667643010616, 0.047474343329668045, -0.02023877389729023, 0.009708849713206291, -0.029472362250089645, -0.021013712510466576, -0.08750768005847931, 0.0028152107261121273, 0.022753482684493065, -0.01429519522935152, 0.009496374055743217, 0.025979414582252502, -0.04517371952533722, 0.011649711057543755, -0.05959645286202431, -0.02957702986896038, 0.05911896377801895, -0.02475915104150772, -0.015721580013632774, 0.01648939959704876, -0.04942214861512184, 0.019483478739857674, 0.018071429803967476, -0.03849241882562637, 0.011895019561052322, -0.039445653557777405, 0.04399912804365158, -0.0012956337304785848, 0.010873178951442242, -0.01279035396873951, -0.08341986685991287, 0.08685332536697388, -0.012774630449712276, -0.025157159194350243, 0.04270144924521446, -0.030772101134061813, 0.021865779533982277, 0.030906599014997482, 0.00862614344805479, 0.0205631572753191, 0.016768041998147964, -0.03062228113412857, -0.05009571462869644, 0.0339178591966629, 0.013284998945891857, -0.02301323413848877, -0.024084653705358505, 0.06642576307058334, 0.00818552915006876, -0.054086774587631226, -0.09872953593730927, 0.04998590424656868, -0.0517766997218132, -0.03981536999344826, -0.009184915572404861, -0.0030591003596782684, -0.05247547850012779, 0.033708907663822174, -0.003510509617626667, 0.03486107662320137, 0.0708993449807167, -0.011378462426364422, -0.01307461317628622, 0.03709716349840164, 0.09312085807323456, 0.09256848692893982, 0.011194625869393349, -0.008055281825363636, 0.06723666936159134, -0.01488310657441616, -0.03882148861885071, 0.000931855000089854, -0.02997702546417713, -0.025918571278452873, -0.030072785913944244, 0.009777866303920746, 0.051761239767074585, -0.021338380873203278, 0.0785306990146637, -0.04157709702849388, -0.006315178703516722, -0.004463812801986933, 0.03805643320083618, 0.01727532409131527, 0.029896972700953484, 0.0037828478962183, 0.015601404942572117, -0.008654105477035046, -0.03573722392320633, 0.005968182813376188, -0.011329788714647293, -0.01012713834643364, 0.01775621995329857, -0.03490360826253891, 0.017765995115041733, 0.02541242726147175, 0.030683714896440506, 0.06022265926003456, -0.0009455426479689777, 0.021249743178486824, 0.004058137536048889, 0.03440762311220169, -0.006681986153125763, 0.030024979263544083, 0.0030200493056327105, -0.027637144550681114, 0.006461288779973984, -0.03882056847214699, -0.014709383249282837, 0.009675141423940659, -0.008367114700376987, 0.028504638001322746, -0.028933348134160042, 0.01239860150963068, 0.01867305487394333, -0.004976217169314623, -0.038174670189619064, -0.02580357901751995, -0.05260969325900078, -0.05445476993918419, -0.03963491693139076, -0.013522596098482609, -0.009044630452990532, 0.0034934580326080322, -0.03989046812057495, -0.03890243545174599, -0.008647674694657326, -0.0032124118879437447, 0.014414235949516296, -0.06334953010082245, -0.013477029278874397, 0.017416751012206078, 0.018993457779288292, 0.001432817312888801, 0.02046707272529602, 0.05989569425582886, -0.017287252470850945, -0.01657322607934475, -0.011741907335817814, -0.005247362423688173, 0.024620812386274338, -0.008957953192293644, 0.0025571216829121113, -0.07226573675870895, 0.03862321004271507, 0.007364052813500166, -0.006751599255949259, -0.056932058185338974, 0.02416081726551056, 0.04599094018340111, 0.011834110133349895, 0.05331239104270935, -0.021713823080062866, 0.019816318526864052, -0.04470501095056534, -0.036386482417583466, -0.02893991582095623, -0.008588827215135098, 0.04964662343263626, 0.03338772431015968, 0.08696918934583664, 0.051920220255851746, -0.03163418918848038, -0.058502405881881714, -0.009311946108937263, -0.0385061539709568, -0.005715882871299982, -0.032038167119026184, -0.02286190539598465, -0.030957622453570366, -0.09629975259304047, -0.050503622740507126, 0.010782644152641296, -0.03734739124774933, -0.028453955426812172, 0.0019561154767870903, 0.013163999654352665, -0.03422209620475769, 0.02433323673903942, -0.01573888584971428, 0.00842533353716135, -0.03402123972773552, -0.02492935210466385, -0.011796235106885433, 0.01315335277467966, 0.005183912348002195, -0.002040794352069497, 0.01979011669754982, -0.019369294866919518, -0.008587849326431751, 0.006324355024844408, 0.04856841638684273, 0.06941602379083633, -0.001627642079256475, -0.027028877288103104 ]
[ -0.07326877117156982, -0.04469292238354683, -0.06280535459518433, -0.010624540038406849, 0.05316032096743584, -0.06260395795106888, -0.055325038731098175, 0.009610799141228199, -0.014499209821224213, -0.004885752219706774, 0.0361461341381073, -0.052393361926078796, 0.022506723180413246, -0.06279154121875763, 0.08700869977474213, 0.028569240123033524, -0.022904250770807266, -0.05935974046587944, -0.01644214056432247, 0.05461322143673897, -0.018632538616657257, -0.02424185536801815, -0.039571162313222885, -0.052370913326740265, -0.031095732003450394, 0.02175997942686081, 0.023970860987901688, -0.04653136804699898, -0.04183487594127655, -0.19725334644317627, 0.015181032940745354, -0.04111280292272568, 0.02505401335656643, -0.006852730177342892, 0.03200360760092735, 0.04388115927577019, 0.052617330104112625, -0.01855548471212387, -0.013701883144676685, 0.03894839808344841, 0.026552289724349976, -0.02381988614797592, -0.04978261888027191, 0.002270621247589588, 0.057696856558322906, -0.021513057872653008, 0.0038164572324603796, 0.008980781771242619, 0.023346368223428726, 0.01074081938713789, -0.044455621391534805, 0.006060604937374592, 0.0247903224080801, -0.03432733938097954, 0.008920927532017231, 0.01869060844182968, 0.047686535865068436, 0.10672780871391296, 0.022281572222709656, -0.008859721943736076, -0.021575989201664925, 0.0063379984349012375, -0.15313003957271576, 0.08112488687038422, 0.03702555596828461, 0.065956249833107, -0.021418411284685135, -0.060016535222530365, 0.003555859439074993, 0.07440914213657379, -0.005924657918512821, 0.0008065527072176337, -0.04303712770342827, 0.07275807112455368, -0.01030396856367588, 0.02807391993701458, 0.02184942364692688, 0.04702920466661453, 0.03097384423017502, -0.013139945454895496, -0.06341636925935745, -0.010202678851783276, -0.04099523648619652, 0.003364462638273835, -0.04397542029619217, 0.0065415529534220695, 0.003056502202525735, 0.08195927739143372, 0.02324043959379196, 0.024072103202342987, -0.0029998195823282003, 0.005741643253713846, 0.03618094325065613, 0.020156942307949066, -0.07732940465211868, -0.030829694122076035, -0.0036233938299119473, 0.041162364184856415, -0.05746676027774811, 0.396035760641098, -0.0011325860396027565, -0.0013562148669734597, 0.025456782430410385, 0.004221740644425154, 0.029740553349256516, -0.009318375028669834, 0.010016854852437973, -0.023787418380379677, 0.027186280116438866, -0.03787461668252945, 0.008207074366509914, 0.007415796164423227, 0.05355027690529823, -0.025579027831554413, 0.020180361345410347, 0.02539096772670746, 0.002755548106506467, 0.04327336326241493, -0.02275015600025654, 0.01897362247109413, -0.044202789664268494, 0.015767378732562065, 0.04451902210712433, 0.004963724408298731, 0.00033003417775034904, -0.013791423290967941, 0.027308302000164986, 0.061205025762319565, 0.03012853115797043, -0.010608687996864319, 0.018542075529694557, -0.03374164178967476, -0.04957747459411621, -0.017214639112353325, 0.017993662506341934, 0.03946126624941826, 0.01015136856585741, -0.05335802957415581, 0.007332565728574991, 0.006840850692242384, -0.021282916888594627, 0.011183923110365868, 0.04134272411465645, -0.004484039731323719, -0.03210549056529999, 0.09721095114946365, 0.028576448559761047, -0.011145660653710365, -0.0386388897895813, -0.05918377637863159, -0.000039350845327135175, 0.01951182633638382, 0.006309752352535725, -0.05948849394917488, 0.034480027854442596, 0.029080277308821678, 0.08258838951587677, 0.007216243539005518, -0.05087266117334366, -0.016807392239570618, -0.02059970237314701, -0.048664819449186325, -0.03687766194343567, 0.06007445231080055, 0.05656001716852188, -0.12108150869607925, -0.017959091812372208, 0.007211664691567421, 0.022215640172362328, -0.05329960212111473, 0.03664849326014519, 0.020173296332359314, -0.012395086698234081, -0.011965114623308182, 0.02343110181391239, -0.051781684160232544, -0.001877117552794516, 0.0071400804445147514, 0.021249208599328995, 0.015401420183479786, -0.016576260328292847, -0.03733568266034126, -0.01488387119024992, -0.014886952936649323, -0.052380647510290146, -0.07583166658878326, -0.04658833146095276, 0.008855821564793587, -0.022108981385827065, -0.020357299596071243, -0.012805566191673279, 0.026164839044213295, -0.08541755378246307, 0.04534371197223663, 0.009668298065662384, -0.0359499529004097, 0.003202923573553562, 0.02648300863802433, -0.025069987401366234, -0.030116692185401917, 0.008647388778626919, 0.0542454831302166, -0.03381512686610222, 0.027858564630150795, -0.07405146211385727, 0.009380929172039032, 0.030757078900933266, -0.018600713461637497, 0.07167769223451614, 0.05580373480916023, -0.016609057784080505, -0.01629215106368065, -0.03997821733355522, 0.004691912326961756, -0.062101781368255615, 0.009349878877401352, 0.01734977588057518, 0.00947312917560339, 0.02564508654177189, 0.03329967334866524, -0.028437631204724312, 0.014024954289197922, -0.030543316155672073, -0.3608066737651825, -0.03377043828368187, -0.0269642174243927, 0.014279784634709358, 0.02220344729721546, -0.035527992993593216, 0.03468808904290199, -0.019507206976413727, 0.006952343508601189, 0.013577107340097427, 0.12755346298217773, -0.01206539012491703, 0.009176808409392834, -0.06937526166439056, -0.020890148356556892, 0.00874184537678957, -0.055794764310121536, -0.01460091769695282, -0.02467554248869419, 0.03633497655391693, -0.024447215721011162, -0.02809322625398636, -0.015899622812867165, -0.03738986328244209, -0.004590981174260378, -0.01555898878723383, 0.11070407927036285, 0.004789208527654409, 0.07549639791250229, -0.05905821919441223, 0.016188334673643112, 0.047069698572158813, 0.011973828077316284, -0.1293506622314453, -0.01673448272049427, -0.008910033851861954, 0.01943926140666008, 0.03182993829250336, 0.041715752333402634, -0.00861643347889185, -0.07299996167421341, 0.03788517042994499, -0.04802408069372177, -0.06124472990632057, -0.026453912258148193, -0.0018441141583025455, -0.011851305142045021, -0.043951235711574554, 0.0016722454456612468, 0.05839363485574722, 0.009182959794998169, 0.04315900057554245, 0.007753488142043352, 0.005558053031563759, 0.008629216812551022, -0.015097510069608688, -0.05791234225034714, -0.010866722092032433, 0.012576710432767868, 0.014666429720818996, 0.027175312861800194, 0.047098949551582336, 0.03091510944068432, -0.055999867618083954, 0.02540602907538414, -0.0504254586994648, -0.03141792118549347, 0.049031421542167664, 0.032225947827100754, -0.01798969693481922, -0.01380820944905281, 0.10756689310073853, 0.004652997478842735, 0.047499366104602814, 0.03560733422636986, 0.019520645961165428, -0.01716846227645874, 0.023528864607214928, 0.0006019090651534498, 0.006504055578261614, 0.03481186926364899, -0.037828799337148666, 0.05825947970151901, -0.0044288355857133865, -0.013165844604372978, 0.05608171597123146, -0.02295045740902424, -0.005183911882340908, 0.04326814413070679, 0.014851395040750504, -0.0019372319802641869, -0.028279542922973633, -0.03781167417764664, -0.025423215702176094, 0.09352360665798187, 0.014808782376348972, -0.2607046663761139, 0.03974953666329384, 0.028158539906144142, 0.05015182122588158, -0.004439390264451504, -0.01683719828724861, 0.06577286124229431, -0.07457614690065384, -0.002186003839597106, 0.021351398900151253, -0.0019028757233172655, 0.06220037490129471, -0.014563342556357384, -0.010088708251714706, 0.027371056377887726, -0.0070795342326164246, 0.025900056585669518, 0.021217847242951393, 0.010229049250483513, -0.028002949431538582, -0.01286287046968937, -0.01040402241051197, 0.1419619470834732, 0.01557300053536892, -0.00574920978397131, 0.08008602261543274, -0.013090217486023903, 0.04852546006441116, 0.07116653770208359, -0.000556318904273212, -0.007820520550012589, 0.0030840726103633642, -0.012968206778168678, -0.019380414858460426, 0.036511681973934174, -0.045781441032886505, -0.0005824951804243028, 0.007647241000086069, 0.039524395018815994, -0.03296099230647087, -0.018709683790802956, 0.03391197696328163, -0.006515634246170521, 0.015161327086389065, 0.0660155713558197, -0.0085965096950531, 0.011255335062742233, -0.05308151617646217, -0.03371351957321167, -0.0014806536491960287, -0.029901010915637016, -0.04492992162704468, 0.004671021830290556, 0.003857981413602829, 0.03649507090449333, 0.09084700793027878, 0.014662172645330429, -0.018459869548678398, -0.03296860679984093, -0.012495639733970165, 0.004389032255858183, -0.05508371815085411, 0.11332324147224426, -0.02477634698152542, 0.010104377754032612 ]
[ 0.0027123065665364265, 0.03607284277677536, -0.035973209887742996, 0.004267154727131128, 0.03546854853630066, 0.011977092362940311, -0.047514189034700394, 0.006394123658537865, -0.0016564542893320322, 0.003178991377353668, -0.00386601104401052, -0.0016061729984357953, 0.038910891860723495, -0.03295547515153885, 0.03262093663215637, -0.04441574215888977, 0.004069889895617962, 0.011887840926647186, 0.034141574054956436, -0.012649385258555412, -0.019559567794203758, 0.019311560317873955, 0.025594251230359077, -0.003691377118229866, -0.007720476947724819, 0.033325232565402985, -0.03502887487411499, 0.0029368489049375057, 0.02282644622027874, -0.14312371611595154, -0.010283333249390125, -0.018064042553305626, -0.00048150445218198, -0.008668418973684311, -0.01423738058656454, 0.009562528692185879, 0.004313179291784763, -0.005372086074203253, -0.022828083485364914, -0.0040075588040053844, 0.04330058395862579, -0.023866621777415276, -0.00505856005474925, -0.02056281827390194, 0.028037885203957558, -0.017450131475925446, -0.010126513428986073, -0.03317636996507645, -0.010157778859138489, -0.014630235731601715, -0.04220886528491974, -0.0017934448551386595, 0.01883496157824993, 0.027162205427885056, -0.003043432254344225, -0.036200206726789474, 0.017217358574271202, 0.018682310357689857, 0.0012535894056782126, -0.05011585354804993, 0.032764118164777756, -0.006807615980505943, -0.05526509881019592, -0.015169044956564903, -0.007227551657706499, -0.01970984786748886, 0.010512023232877254, 0.0008799383649602532, 0.014915348961949348, 0.03788084164261818, -0.003313143737614155, 0.005011680535972118, -0.019115613773465157, 0.02162105031311512, -0.008001631125807762, -0.006228622980415821, 0.030144505202770233, -0.005262838676571846, -0.027480345219373703, 0.015333623625338078, -0.052328921854496, -0.019280213862657547, -0.03881966322660446, 0.001261942321434617, -0.02456454560160637, -0.014087634161114693, 0.02171260118484497, 0.007812761701643467, 0.0029274090193212032, -0.011755148880183697, 0.031166845932602882, 0.0006751350010745227, -0.013500177301466465, -0.0075917053036391735, -0.08736948668956757, 0.0019301726715639234, -0.04034699499607086, 0.005249624606221914, -0.02757110260426998, 0.8281500339508057, -0.008275315165519714, 0.025024695321917534, 0.021780919283628464, 0.00007932576409075409, 0.04642361402511597, 0.01160354819148779, 0.004842955153435469, 0.004777359310537577, 0.006007910240441561, -0.03749566152691841, 0.04632600024342537, -0.024128301069140434, 0.02746402658522129, 0.036520522087812424, 0.03166217356920242, 0.01790088787674904, 0.002099792007356882, -0.014418449252843857, 0.0030880847480148077, 0.029103511944413185, 0.028143975883722305, -0.0033359727822244167, 0.007899319753050804, 0.008519233204424381, -0.024296389892697334, -0.16186489164829254, -0.01901232823729515, -7.208701474002416e-33, 0.048867031931877136, -0.04375941678881645, 0.016906389966607094, 0.004347981419414282, 0.02937922812998295, 0.009944960474967957, -0.015394124202430248, 0.032032184302806854, -0.01470202673226595, -0.05306873470544815, -0.0025131753645837307, -0.01975124329328537, 0.03225410729646683, -0.03072882629930973, 0.0051339552737772465, -0.04651115834712982, 0.0024006885942071676, 0.032015442848205566, 0.01691477745771408, 0.031055308878421783, 0.03795984014868736, 0.028565023094415665, -0.008729465305805206, 0.012748582288622856, 0.02385585568845272, 0.010244814679026604, 0.022424772381782532, -0.030636679381132126, 0.007535381242632866, -0.02698381058871746, -0.013716871850192547, 0.025171048939228058, -0.03750557079911232, -0.043688829988241196, -0.003975497558712959, -0.06660740822553635, -0.022358965128660202, 0.01846114732325077, 0.009686882607638836, -0.04175461828708649, 0.0025531768333166838, -0.013295701704919338, -0.01834411546587944, 0.011376004666090012, -0.06481295078992844, 0.0028366087935864925, 0.018901420757174492, 0.03252745047211647, 0.018034614622592926, 0.04749942943453789, -0.002726048231124878, -0.02803170122206211, 0.0030796092469245195, -0.013141127303242683, 0.008101537823677063, 0.018214711919426918, 0.0005381876253522933, 0.02731012925505638, -0.01660161465406418, 0.046105727553367615, 0.0056778378784656525, 0.00990747008472681, -0.009229053743183613, 0.022963354364037514, 0.01177580002695322, -0.0019269067561253905, -0.011424616910517216, 0.021520456299185753, 0.0046324776485562325, 0.015514066442847252, -0.04083869606256485, -0.003997103311121464, 0.01058941800147295, 0.017257889732718468, 0.05224641412496567, -0.02668263576924801, -0.013013985939323902, 0.0030918437987565994, 0.002799449721351266, 0.031994160264730453, -0.002176625421270728, 0.0025989054702222347, -0.050118476152420044, -0.04490287974476814, -0.048500798642635345, 0.020299745723605156, -0.005220570135861635, -0.01144617423415184, -0.006679284851998091, 0.0008821426890790462, 0.02326398901641369, 0.03809482604265213, -0.02439720556139946, -0.00312421889975667, -0.06011241674423218, 7.483067732956092e-33, -0.004908703733235598, -0.025813577696681023, -0.019752025604248047, 0.022771842777729034, 0.037158671766519547, 0.014913832768797874, 0.023735014721751213, 0.0026322822086513042, -0.05706537142395973, 0.03731124848127365, -0.004831966012716293, 0.001490879338234663, -0.010358707047998905, -0.012533632107079029, 0.07202579081058502, -0.06221266835927963, 0.014342254027724266, -0.006766724865883589, 0.03482643887400627, 0.011918182484805584, 0.014824953861534595, -0.02533833496272564, 0.014896231703460217, 0.02317999117076397, 0.05045222118496895, 0.0556030236184597, -0.032627735286951065, 0.032281968742609024, -0.005017809569835663, -0.020426377654075623, 0.03168056905269623, -0.019005602225661278, -0.03333010524511337, -0.00774515001103282, -0.060617607086896896, 0.03231256455183029, 0.010014151223003864, -0.008700062520802021, 0.004062109161168337, -0.00617003021761775, 0.06115952879190445, 0.007663096766918898, -0.038131602108478546, 0.01868678256869316, 0.03913671523332596, 0.0017142787110060453, 0.0008334877784363925, 0.018466128036379814, -0.020027313381433487, 0.004307439550757408, -0.001832365058362484, 0.02766188606619835, 0.01979021355509758, 0.005858795717358589, 0.009812017902731895, -0.018728863447904587, -0.031529366970062256, 0.04489981383085251, 0.007242095656692982, 0.022530362010002136, -0.009528296999633312, -0.001809785608202219, -0.009869786910712719, 0.008814013563096523, -0.045026473701000214, -0.06392625719308853, 0.025561412796378136, 0.017238132655620575, -0.005926842801272869, 0.012498910538852215, 0.011284459382295609, 0.018796591088175774, -0.0034567834809422493, 0.04235702008008957, -0.005322447512298822, -0.0031873341649770737, -0.02611170895397663, -0.018510445952415466, -0.0172522384673357, 0.033112458884716034, 0.004165859427303076, 0.04649540036916733, 0.002309151692315936, 0.018861398100852966, 0.0186983160674572, 0.03774962201714516, -0.025416648015379906, 0.008490360341966152, 0.026951972395181656, -0.021589316427707672, -0.010513057932257652, -0.03538747876882553, -0.017945421859622, 0.032713744789361954, 0.007418629713356495, -1.2683784689215827e-8, -0.00331580126658082, -0.010530252009630203, -0.013357991352677345, 0.0397682711482048, 0.04135721176862717, 0.01471487432718277, -0.03328646346926689, -0.0033927843905985355, 0.0005129353376105428, -0.0009142381022684276, 0.04376544803380966, -0.04791448265314102, -0.004088632296770811, 0.03612859919667244, 0.013645743019878864, -0.017091665416955948, 0.031140131875872612, -0.016978435218334198, 0.04009854793548584, 0.00934212002903223, 0.0380997397005558, -0.008133555762469769, -0.03061874955892563, -0.0003059677255805582, 0.012717558071017265, -0.0028328760527074337, 0.004301618319004774, -0.07149410992860794, -0.05300622433423996, -0.0017526118317618966, 0.009712769649922848, -0.044737283140420914, -0.03639310225844383, 0.043333057314157486, 0.0029798850882798433, -0.03891574218869209, -0.012226958759129047, 0.010809087194502354, 0.007383586838841438, 0.025069529190659523, -0.012625692412257195, 0.017132828012108803, -0.02426024340093136, -0.03099399246275425, 0.00033122621243819594, -0.004048884380608797, -0.016153309494256973, 0.004977654665708542, -0.017545275390148163, -0.0406368263065815, 0.05644429102540016, -0.04309377819299698, 0.029223227873444557, 0.028337512165308, 0.025749685242772102, -0.012118390761315823, -0.010377462022006512, -0.06373342871665955, -0.0005072385538369417, 0.047372154891490936, 0.05669808015227318, -0.0036455541849136353, -0.021348675712943077, -0.018588639795780182 ]
rsyncing-to-an-aws-instance
https://markhneedham.com/blog/2012/12/11/rsyncing-to-an-aws-instance
false
2012-12-29 19:27:46
Haskell: Initialising a map
[ "haskell" ]
[ "Haskell" ]
I've been converting a variation of Kruskal's algorithm from https://github.com/mneedham/algorithms2/blob/master/clustering_big_graph_bitwise.rb[Ruby] into https://github.com/mneedham/algorithms2/blob/master/clustering.hs[Haskell] and one thing I needed to do was create a map of binary based values to node ids. In Ruby I wrote the following code to do this: [source,ruby] ---- nodes = [1,2,5,7,2,4] @magical_hash = {} nodes.each_with_index do |node, index| @magical_hash[node] ||= [] @magical_hash[node] << index end => {1=>[0], 2=>[1, 4], 5=>[2], 7=>[3], 4=>[5]} ---- From looking at the documentation it seemed like the easiest way to do this in Haskell would be to convert the nodes into an appropriate list and then call the +++<cite>+++http://www.haskell.org/ghc/docs/6.12.2/html/libraries/containers-0.3.0.0/Data-Map.html#v%3AfromList[fromList]+++</cite>+++ function to build the map. I needed to get the data to look like this: [source,haskell] ---- > let nodesMap = Data.Map.fromList [(1, [0]), (2, [1,4]), (5, [2]), (7, [3]), (4, [5])] > Data.Map.assocs nodesMap [(1,[0]),(2,[1,4]),(4,[5]),(5,[2]),(7,[3])] ---- The first step was to create a list of tuples with the nodes ids and values: [source,haskell] ---- > zip [0..] [1,2,5,7,2,4] [(0,1),(1,2),(2,5),(3,7),(4,2),(5,4)] ---- I wanted group the collection by value so that in this instance I could have the 2 nodes with a value of '2' mapping from the same key in the map. The following code helped do that: [source,haskell] ---- groupIgnoringIndex = groupBy (\(_,x) (_,y) -> x == y) sortIgnoringIndex = sortBy (\(_,x) (_,y) -> x `compare` y) ---- [source,haskell] ---- > (groupIgnoringIndex . sortIgnoringIndex) (zip [0..] [1,2,5,7,2,4]) [[(0,1)],[(1,2),(4,2)],[(5,4)],[(2,5)],[(3,7)]] ---- I wrote the following function to convert that collection into one that could be passed to +++<cite>+++fromList+++</cite>+++: [source,haskell] ---- asMapEntry :: [(Int, Int)] -> (Int, [Int]) asMapEntry nodesWithIndexes = ((snd . head) nodesWithIndexes, foldl (\acc (x,_) -> acc ++ [x]) [] nodesWithIndexes) ---- [source,haskell] ---- > asMapEntry [(1,2),(4,2)] (2,[1,4]) ---- We can then put all those functions together into the following top level function: [source,haskell] ---- toMap :: [Int] -> Map Int [Int] toMap nodes = Data.Map.fromList $ map asMapEntry $ (groupIgnoringIndex . sortIgnoringIndex) nodesWithIndexes where nodesWithIndexes = (zip [0..] nodes) ---- [source,haskell] ---- > Data.Map.assocs $ toMap [1,2,5,7,2,4] [(1,[0]),(2,[4,1]),(4,[5]),(5,[2]),(7,[3])] ---- I haven't properly investigated all the functions available in the +++<cite>+++Data.Map+++</cite>+++ package but my gut feeling is there must be a better way to do this - the sort/group combination is ugly in the extreme!
null
null
[ 0.0021715133916586637, 0.012213427573442459, -0.042520470917224884, 0.04589727520942688, 0.05817524716258049, 0.01335182599723339, 0.02162192575633526, 0.022762933745980263, 0.02102971263229847, -0.022493677213788033, -0.024501211941242218, -0.04202485829591751, -0.06936365365982056, 0.02528671734035015, -0.0036070041824132204, 0.046101298183202744, 0.06269087642431259, -0.014315100386738777, -0.011686235666275024, 0.01657366007566452, 0.019462477415800095, 0.04570426791906357, -0.0057562789879739285, 0.02177816815674305, 0.016723396256566048, 0.019160959869623184, 0.0228365957736969, 0.010818622075021267, -0.06705323606729507, 0.023202095180749893, 0.04711401090025902, 0.0009036498377099633, 0.0027440341655164957, -0.0029790017288178205, 0.042811114341020584, -0.004428080748766661, -0.035451993346214294, 0.000023265909476322122, -0.002027590526267886, 0.011927934363484383, -0.048301003873348236, 0.05555672198534012, 0.008115958422422409, 0.017920302227139473, -0.0210922472178936, -0.004941544495522976, -0.07187434285879135, 0.041058652102947235, -0.0015999585157260299, 0.008436411619186401, -0.06767795234918594, 0.004061826970428228, -0.0019677176605910063, -0.01194818876683712, -0.029461534693837166, 0.047581639140844345, 0.028649630025029182, -0.05159216374158859, 0.062314100563526154, -0.028854837641119957, -0.010765771381556988, -0.017530785873532295, 0.026223547756671906, 0.04340660572052002, 0.005974593572318554, -0.03982504829764366, -0.033163316547870636, 0.06021341681480408, -0.037795450538396835, -0.031628694385290146, 0.007067726459354162, 0.007131366524845362, -0.030800573527812958, -0.015923893079161644, 0.002511790953576565, -0.0310412235558033, 0.006290587596595287, 0.06993518024682999, 0.0002100433048326522, 0.03431296348571777, -0.02763707935810089, 0.034638576209545135, 0.01282645482569933, 0.02313370630145073, 0.0095508499071002, -0.037156522274017334, -0.045954927802085876, -0.01185260247439146, -0.08218619972467422, 0.06802461296319962, -0.0008584479801356792, -0.04927928000688553, 0.003010521177202463, 0.016674106940627098, 0.005688332952558994, -0.00931472610682249, -0.012364495545625687, 0.0033076168037950993, -0.00987519882619381, -0.028159260749816895, -0.020278751850128174, -0.024578796699643135, 0.018174804747104645, -0.02706550620496273, -0.07116454094648361, -0.014615576714277267, -0.023220596835017204, -0.014545604586601257, 0.017125483602285385, -0.001035221153870225, -0.026180773973464966, -0.018664397299289703, -0.012962600216269493, 0.018023790791630745, -0.037840232253074646, 0.06917143613100052, 0.0019425114151090384, -0.026583954691886902, -0.022304603829979897, 0.031375911086797714, 0.05516038089990616, 0.05949610471725464, 0.00013020425103604794, 0.10462398082017899, 0.008688779547810555, 0.03204289451241493, 0.006821971386671066, 0.07279323041439056, -0.026032468304038048, -0.054339535534381866, -0.031761933118104935, 0.08410324901342392, -0.015559768304228783, -0.009482692927122116, -0.009117859415709972, -0.0063048494048416615, -0.04513196274638176, 0.012566563673317432, 0.050923947244882584, 0.04252913221716881, 0.009949271567165852, -0.036964189261198044, 0.026529688388109207, -0.026463259011507034, 0.026635847985744476, -0.0001363672927254811, -0.015526911243796349, -0.012063054367899895, -0.016888117417693138, 0.02676353044807911, -0.0038945884443819523, 0.0362740084528923, 0.03266991302371025, -0.028265614062547684, 0.022758863866329193, 0.09365210682153702, -0.00012042756861774251, 0.02049912139773369, -0.0034374070819467306, -0.006631128024309874, 0.0223175510764122, 0.029045620933175087, 0.04056316614151001, 0.03196623548865318, -0.00800775084644556, -0.002019652631133795, 0.012113278731703758, 0.05201857164502144, -0.006835976615548134, -0.011072296649217606, -0.034882284700870514, -0.02571539767086506, 0.04933639615774155, -0.024024037644267082, -0.007466963957995176, 0.0063924724236130714, 0.07188384979963303, 0.02496311627328396, 0.03456755355000496, -0.037523530423641205, -0.0794290080666542, 0.03898609057068825, 0.011345426551997662, 0.027240285649895668, -0.008650096133351326, -0.0059560490772128105, 0.0705655887722969, 0.02357206866145134, 0.02526189386844635, 0.03225740045309067, -0.06982168555259705, -0.06714968383312225, -0.006631864234805107, -0.02543085627257824, 0.10299159586429596, -0.005192423239350319, 0.0017923945561051369, 0.017520584166049957, 0.01458601001650095, 0.028229139745235443, 0.027938948944211006, -0.0178032498806715, 0.021932478994131088, -0.03878197446465492, -0.022018952295184135, 0.03267630934715271, 0.05759899318218231, -0.04280433431267738, -0.046124931424856186, -0.009099352173507214, 0.000016428390154032968, -0.018076643347740173, 0.03542643040418625, -0.027522414922714233, 0.0460161492228508, 0.038595132529735565, 0.027442526072263718, 0.0009851856157183647, 0.06031739339232445, -0.04185420274734497, 0.0609058253467083, 0.016752690076828003, -0.017239613458514214, -0.0140296695753932, 0.0005979748675599694, 0.12423758953809738, 0.07841837406158447, -0.030590442940592766, -0.037585798650979996, 0.015259798616170883, -0.007994563318789005, -0.03821001946926117, 0.018774911761283875, 0.0074970838613808155, -0.01532609574496746, -0.01587575674057007, -0.03784475103020668, -0.008307122625410557, 0.03508448973298073, -0.053633954375982285, -0.0340263731777668, 0.0674789771437645, -0.029576033353805542, 0.04990590736269951, 0.01659023016691208, -0.038324009627103806, -0.009840205311775208, -0.04572240263223648, -0.04969238117337227, 0.01891753263771534, 0.014473781920969486, -0.012235516682267189, 0.040001317858695984, -0.026788223534822464, -0.009217672981321812, -0.01976720429956913, -0.016606317833065987, 0.008871748112142086, 0.05310399457812309, 0.06325511634349823, -0.012958081439137459, 0.03912901505827904, -0.04908726364374161, -0.019273346289992332, -0.004498446825891733, -0.054201725870370865, -0.05433713272213936, -0.03515684977173805, 0.011722986586391926, 0.009508865885436535, 0.015929050743579865, -0.003750299336388707, 0.04044446349143982, 0.00938462931662798, 0.009598123840987682, -0.013591673225164413, 0.037447020411491394, -0.015757624059915543, -0.039574284106492996, -0.028005681931972504, -0.04325854405760765, 0.056935928761959076, -0.05366361141204834, -0.014866244979202747, -0.017029961571097374, -0.04073110595345497, 0.07417561113834381, -0.06284146755933762, -0.024015171453356743, -0.016121946275234222, 0.029414571821689606, 0.05882953107357025, -0.014909066259860992, -0.0006211728323251009, 0.06534206867218018, 0.022824672982096672, 0.023837486281991005, 0.019393539056181908, -0.00566786527633667, 0.039238814264535904, -0.025919759646058083, 0.04255610704421997, 0.01864919625222683, -0.024947185069322586, -0.032981663942337036, -0.0193678829818964, 0.001038169488310814, -0.008341082371771336, -0.28080692887306213, 0.036660145968198776, -0.04931814968585968, -0.038303226232528687, 0.010704330168664455, -0.018758302554488182, -0.03566781058907509, -0.04414431005716324, 0.011735969223082066, 0.001056626089848578, -0.024890605360269547, -0.004514941945672035, -0.05949115753173828, 0.043807633221149445, 0.039163462817668915, 0.008288316428661346, -0.013478416018188, -0.04008578509092331, -0.0033948838245123625, 0.04253007099032402, -0.015439977869391441, -0.05848950147628784, -0.007416353560984135, 0.029801171272993088, -0.0008093449287116528, 0.037963882088661194, -0.08555403351783752, 0.045802041888237, -0.04650212079286575, -0.04399791732430458, -0.01576642133295536, -0.04698093608021736, 0.005112224258482456, -0.006122310180217028, -0.012148491106927395, -0.03007322922348976, 0.039937522262334824, 0.024165257811546326, 0.030132291838526726, 0.021152956411242485, -0.03213122487068176, -0.021705469116568565, -0.01375834085047245, -0.011389109306037426, 0.11629938334226608, -0.030942127108573914, -0.062214434146881104, -0.016829438507556915, -0.025594210252165794, 0.07233995199203491, -0.01729104481637478, -0.029701845720410347, 0.002295144833624363, 0.048904675990343094, -0.015892038121819496, -0.017588604241609573, -0.011108011938631535, 0.01289962138980627, -0.06587231904268265, -0.02574128843843937, -0.009319517761468887, -0.04011912643909454, -0.011242670938372612, -0.058663371950387955, -0.0047792368568480015, -0.05572725087404251, -0.07759401947259903, -0.001991495257243514, 0.048522695899009705, 0.02159953862428665, -0.022486047819256783, 0.004164562560617924, -0.047628242522478104, -0.09984591603279114, -0.021378042176365852, -0.024978363886475563, -0.015995297580957413, -0.005038693081587553, 0.013234153389930725, 0.05139046162366867, -0.044958531856536865, -0.0575004406273365, 0.025346815586090088, -0.0032813167199492455, 0.04187817871570587, -0.00755797466263175, -0.003671888029202819, -0.02767140604555607, -0.016313543543219566, -0.0160999558866024, 0.054884131997823715, -0.01557906623929739, -0.01762259565293789, -0.007869552820920944, 0.02357257716357708, 0.04706333577632904, 0.030982140451669693, -0.010881469585001469, 0.03155761957168579, 0.03963426128029823, 0.03201420232653618, -0.0372268445789814, 0.0240402203053236, -0.028855636715888977, -0.04393192008137703, 0.04174576699733734, -0.05579225718975067, 0.022730311378836632, 0.03537563979625702, 0.004287983290851116, -0.018504826352000237, -0.03166743740439415, 0.015007711946964264, -0.060124002397060394, -0.03066195920109749, -0.014527971856296062, 0.011782467365264893, 0.015990562736988068, 0.04407905414700508, 0.01614876464009285, -0.06685268133878708, -0.015384591184556484, 0.021235177293419838, -0.031053366139531136, -0.054222363978624344, -0.035276684910058975, -0.043036557734012604, -0.008531718514859676, 0.03739998862147331, 0.03314512223005295, 0.005838982295244932, 0.02855507843196392, 0.02635880559682846, -0.022938398644328117, 0.04348083958029747, 0.0047764768823981285, -0.030915789306163788, -0.03571166470646858, -0.01621771790087223, 0.0006273502949625254, 0.01659306325018406, -0.02060525491833687, 0.02684014104306698, 0.04338594898581505, 0.03571073338389397, 0.0061650704592466354, 0.015709808096289635, 0.011573712341487408, 0.01242863666266203, 0.00807910319417715, -0.0236301738768816, -0.02322661504149437, 0.016781827434897423, -0.02763291634619236, -0.019998785108327866, -0.011178647167980671, 0.054829519242048264, -0.01812056452035904, -0.026297690346837044, -0.0464174710214138, 0.03738701716065407, -0.040498897433280945, -0.004329735413193703, -0.018147660419344902, 0.012948022224009037, 0.06801911443471909, -0.014717970974743366, 0.046002790331840515, -0.041820935904979706, 0.0060574691742658615, 0.009287785738706589, 0.0034238595981150866, -0.03119894117116928, 0.018133237957954407, -0.0011121477000415325, -0.016182219609618187, -0.01473280880600214, 0.043599195778369904, 0.025139519944787025, -0.0026800697669386864, -0.02491295337677002, -0.011836778372526169, 0.014758025296032429, -0.0081257876008749, 0.04845573380589485, 0.03298782929778099, -0.023658091202378273, 0.012136224657297134, -0.026715518906712532, -0.01038882602006197, -0.007730128709226847, -0.00041376546141691506, -0.024767348542809486, 0.030109424144029617, -0.02179817669093609, -0.07151225209236145, 0.021540207788348198, 0.02692541480064392, 0.0026956135407090187, 0.0028455995488911867, 0.022546183317899704, -0.009105479344725609, -0.013908138498663902, 0.018216386437416077, 0.08625329285860062, -0.050670478492975235, -0.0018708874704316258, -0.0018423889996483922, 0.018499091267585754, -0.014482328668236732, 0.044738903641700745, -0.0672745630145073, -0.010700726881623268, 0.005145580507814884, 0.001950270845554769, -0.0031950848642736673, -0.03845787048339844, -0.02373003028333187, -0.01647098734974861, -0.01956661231815815, -0.011067130602896214, 0.006447793450206518, 0.00747227668762207, -0.01887807808816433, -0.029464323073625565, -0.004138060845434666, -0.047971293330192566, -0.014141068793833256, -0.004373044241219759, -0.03155665472149849, 0.04122837632894516, -0.015065179206430912, 0.04058629646897316, 0.023065539076924324, 0.0148792564868927, 0.005853584501892328, -0.04947661980986595, 0.01651594042778015, -0.01009414717555046, 0.0751122310757637, -0.012592975050210953, 0.00021615343575831503, -0.014810025691986084, 0.013381460681557655, -0.022637026384472847, -0.01162375882267952, 0.004884940106421709, -0.010005993768572807, 0.010573243722319603, 0.0023090008180588484, -0.013972182758152485, 0.039221491664648056, 0.012057246640324593, -0.03849758580327034, 0.06986652314662933, -0.02596612647175789, -0.03517084941267967, -0.036298543214797974, -0.04518618807196617, 0.015335598029196262, -0.005512100178748369, 0.028535939753055573, -0.02615593560039997, 0.04305632784962654, 0.043947089463472366, 0.03130678832530975, 0.016195395961403847, -0.05971584841609001, 0.017073024064302444, -0.040024854242801666, 0.016197379678487778, -0.07488222420215607, 0.0015808296157047153, 0.017283134162425995, -0.009413624182343483, -0.02044590376317501, -0.0054401252418756485, -0.02216409146785736, -0.0027811937034130096, -0.05322971194982529, -0.027297431603074074, 0.05550016835331917, -0.006730490364134312, 0.009457388892769814, 0.0010940401116386056, -0.05166535824537277, 0.022512290626764297, 0.031244978308677673, -0.023510664701461792, -0.00602946849539876, -0.03616119921207428, 0.054647792130708694, -0.03854667767882347, 0.05166866257786751, -0.00645347498357296, -0.024811161682009697, 0.05232821777462959, 0.029929934069514275, 0.015184326097369194, 0.06371721625328064, -0.015335801988840103, 0.03541092574596405, 0.009334339760243893, 0.013793990947306156, 0.003975456580519676, 0.03658484295010567, -0.014791840687394142, -0.04838094115257263, 0.04472345486283302, -0.008480523712933064, -0.014854619279503822, -0.026330560445785522, 0.07487218081951141, 0.023904522880911827, -0.045166805386543274, -0.06071852520108223, 0.06737875938415527, -0.05334153398871422, 0.008884227834641933, -0.017344322055578232, 0.008184099569916725, -0.037406936287879944, 0.052538417279720306, -0.01720202900469303, 0.008020582608878613, 0.06749774515628815, -0.0031299928668886423, -0.023356474936008453, 0.0010070600546896458, 0.09372420608997345, 0.09964709728956223, 0.05094949156045914, 0.008672770112752914, 0.05838965252041817, -0.03426600247621536, -0.034343600273132324, -0.01367240585386753, -0.01002431008964777, 0.002485166536644101, 0.011891729198396206, 0.022214632481336594, 0.07546249032020569, -0.039494313299655914, 0.06595580279827118, -0.04002019390463829, 0.012842651456594467, 0.015240002423524857, 0.01672830432653427, 0.010771751403808594, 0.06919007003307343, 0.016950611025094986, 0.04194648936390877, -0.023736895993351936, -0.0495886392891407, 0.03538956120610237, 0.0012271018931642175, -0.014952365309000015, -0.004549280274659395, -0.008674229495227337, 0.010672046802937984, 0.021460620686411858, 0.018037661910057068, 0.0689467266201973, -0.010191132314503193, -0.010544653050601482, -0.0038402986247092485, 0.0006484235636889935, -0.03408769145607948, 0.011564178392291069, -0.03404124081134796, -0.02940388396382332, -0.016441848129034042, -0.06042250245809555, -0.021739177405834198, -0.006674895528703928, -0.02072496898472309, 0.035207439213991165, -0.007946348749101162, 0.00502141984179616, 0.008775969967246056, -0.0008931470802053809, -0.05281201750040054, -0.04603267088532448, -0.06228005141019821, -0.04358074441552162, -0.08833429217338562, 0.024399174377322197, -0.0020758993923664093, -0.0112692192196846, -0.034357182681560516, -0.026604333892464638, -0.00406453525647521, -0.01776304468512535, 0.04003341495990753, -0.043443359434604645, -0.0036255635786801577, 0.0005193132674321532, 0.03661122918128967, 0.0322762057185173, 0.06077507138252258, 0.030241584405303, -0.03492065891623497, 0.004448047839105129, 0.004859426990151405, -0.03399369493126869, 0.04344424605369568, 0.029076866805553436, 0.0160685982555151, -0.07196174561977386, 0.0042600128799676895, 0.019699787721037865, 0.034610580652952194, -0.08187868446111679, -0.01957210898399353, 0.014742192812263966, 0.00812640693038702, 0.03954816609621048, -0.021138612180948257, 0.004571550525724888, -0.020945211872458458, -0.01502516120672226, -0.01945250667631626, 0.0017513142665848136, 0.04396635293960571, -0.04103262722492218, 0.10274434089660645, 0.01530932355672121, -0.014401597902178764, -0.03142542392015457, -0.026698632165789604, -0.030828800052404404, 0.006807739846408367, -0.017337938770651817, -0.02219920977950096, -0.036816637963056564, -0.07076968252658844, -0.00590294785797596, -0.00590423634275794, -0.02052152529358864, -0.03481792286038399, -0.005066814366728067, 0.04810046777129173, -0.04471256583929062, 0.05429835990071297, -0.040978722274303436, 0.04323824122548103, -0.031780511140823364, -0.0390024334192276, -0.005498675629496574, 0.02528250776231289, -0.02116028219461441, 0.0033909277990460396, 0.010534992441534996, -0.03767222911119461, 0.007584805600345135, 0.00021726726845372468, 0.03045181930065155, 0.0043078637681901455, -0.006868372205644846, 0.028270414099097252 ]
[ -0.07375182211399078, -0.04445621743798256, -0.05474482476711273, 0.005193945020437241, 0.010073625482618809, -0.0373375229537487, -0.01847967505455017, 0.006664593704044819, -0.013700814917683601, -0.014979732222855091, 0.007042804267257452, -0.10868583619594574, 0.021853214129805565, -0.03758466988801956, 0.054308224469423294, 0.014487075619399548, -0.016343342140316963, -0.01637115143239498, -0.041967179626226425, 0.03491707518696785, 0.005575133021920919, -0.03530966863036156, -0.030207283794879913, -0.020859502255916595, 0.027959467843174934, 0.05384361371397972, 0.04562057554721832, -0.03233615681529045, 0.0020965866278856993, -0.2320971041917801, 0.0064597041346132755, 0.008741394616663456, 0.07556421309709549, -0.05812698230147362, 0.013935292139649391, 0.027511699125170708, 0.0507807619869709, 0.00379041931591928, -0.017154179513454437, 0.06798320263624191, 0.03357003629207611, 0.005763609427958727, -0.03896649554371834, -0.003819321980699897, 0.0396476648747921, 0.01965579017996788, -0.05008570849895477, 0.005998555570840836, -0.002031713956966996, -0.03471416234970093, -0.07992768287658691, -0.004906588699668646, 0.011854663491249084, 0.00021700230718124658, 0.028341535478830338, 0.024334652349352837, 0.03700310364365578, 0.08848437666893005, 0.021295208483934402, 0.01841619797050953, 0.011329497210681438, 0.03122689574956894, -0.10507623106241226, 0.06406436860561371, 0.02920009195804596, 0.058828700333833694, -0.045322518795728683, -0.03885490819811821, -0.01396641880273819, 0.06539594382047653, 0.037807393819093704, 0.01848316751420498, -0.012819425202906132, 0.036778178066015244, 0.014590570703148842, -0.01887839287519455, -0.016674967482686043, 0.02919761836528778, 0.04950360208749771, -0.04687470570206642, -0.07266027480363846, -0.012069320306181908, -0.007747224532067776, 0.0057725366204977036, -0.012772473506629467, -0.0176722202450037, -0.05021515116095543, 0.04924912005662918, 0.008064362220466137, 0.024743374437093735, 0.02141069434583187, 0.01281256414949894, 0.001754601951688528, 0.014079275541007519, -0.07019553333520889, -0.013925868086516857, -0.022567756474018097, 0.014114468358457088, -0.0028691203333437443, 0.39191076159477234, -0.026701539754867554, 0.0011494571808725595, 0.04399921000003815, 0.02606353908777237, -0.028271593153476715, -0.030507998540997505, -0.02362496219575405, -0.08817072957754135, -0.014112615026533604, -0.006807088851928711, -0.0073266588151454926, -0.053766634315252304, 0.054695937782526016, -0.09132188558578491, -0.004733809735625982, -0.02466040477156639, 0.054447609931230545, 0.044970158487558365, -0.004013234283775091, 0.03024846315383911, -0.015095113776624203, 0.03689129650592804, 0.031632035970687866, 0.02197171188890934, 0.04291868209838867, 0.03633486106991768, -0.0035052280873060226, 0.05506860092282295, 0.03108067438006401, 0.0701078325510025, 0.03128253296017647, 0.01997593231499195, -0.06689459830522537, -0.004916207864880562, -0.003796238685026765, -0.009553639218211174, 0.03828944265842438, -0.04096085578203201, -0.010800404474139214, 0.01063534989953041, -0.006924365647137165, -0.023961199447512627, 0.03454776853322983, 0.00836680456995964, -0.013241153210401535, 0.10806714743375778, 0.0006273043109104037, -0.03852130472660065, -0.016873523592948914, -0.027478327974677086, -0.005267351865768433, 0.013772351667284966, -0.026001637801527977, -0.03345198929309845, -0.010526777245104313, 0.019860921427607536, 0.047245774418115616, -0.0225971732288599, -0.06257351487874985, 0.035460423678159714, -0.03331630304455757, -0.023910075426101685, -0.02626667730510235, 0.08720831573009491, 0.04732246324419975, -0.06403899937868118, -0.023203909397125244, 0.012651866301894188, -0.004435195587575436, -0.0983789712190628, -0.01148476917296648, 0.04358341172337532, -0.015960006043314934, 0.04339958354830742, 0.04653111845254898, -0.035477928817272186, -0.03937983140349388, -0.0513385534286499, 0.04564933106303215, -0.0015836985548958182, -0.03165585175156593, 0.012157713063061237, -0.0444813035428524, -0.0052558728493750095, -0.03570565581321716, -0.05962807312607765, -0.09989206492900848, 0.019539840519428253, -0.038591235876083374, -0.03324330970644951, -0.014133194461464882, 0.015773281455039978, -0.06468996405601501, 0.03369290381669998, -0.006433325819671154, -0.04425704479217529, 0.014190588146448135, 0.011403526179492474, -0.015367851592600346, -0.0030108136124908924, -0.004311144817620516, 0.05755375698208809, -0.02388346940279007, 0.03989681228995323, -0.10834021121263504, -0.02523595094680786, 0.05700467526912689, -0.04299795255064964, 0.07913503050804138, 0.024273375049233437, 0.017819151282310486, 0.0006600987981073558, -0.023242715746164322, 0.015888767316937447, -0.018323741853237152, -0.017751893028616905, 0.008229440078139305, -0.024806030094623566, 0.03437795862555504, 0.05033683776855469, -0.013786233961582184, -0.05761163681745529, -0.07090338319540024, -0.3465215563774109, -0.05008024722337723, -0.017786335200071335, -0.004032535012811422, 0.001876602997072041, -0.06252655386924744, 0.0010403324849903584, -0.023926669731736183, 0.0054434980265796185, 0.031694721430540085, 0.0886693149805069, -0.0042822095565497875, -0.017422286793589592, -0.06511710584163666, -0.032620009034872055, 0.03527125343680382, -0.011955291964113712, -0.028826778754591942, -0.01994631253182888, 0.052413251250982285, -0.013229955919086933, -0.03153401240706444, -0.010446835309267044, -0.049834124743938446, -0.027466392144560814, -0.034058235585689545, 0.12642544507980347, -0.0017690043896436691, 0.05200220271945, -0.028210652992129326, 0.027545753866434097, -0.007951397448778152, -0.027374573051929474, -0.04947332665324211, -0.0056144436821341515, -0.02658640220761299, -0.004301788751035929, 0.039255473762750626, 0.05025259405374527, -0.022913455963134766, -0.05615387111902237, 0.0009943717159330845, -0.053878046572208405, -0.06573843955993652, -0.005478991661220789, 0.048367373645305634, -0.0005975928506813943, -0.025655517354607582, 0.04182392358779907, 0.0471842922270298, 0.012324546463787556, 0.041233040392398834, 0.0314648300409317, 0.004836029838770628, -0.00271244952455163, -0.027136096730828285, -0.06512530893087387, -0.047931745648384094, -0.010582270100712776, -0.0015035509131848812, 0.028824089094996452, 0.018925650045275688, 0.007254426833242178, -0.0376829169690609, 0.022623710334300995, -0.004866056144237518, -0.012204916216433048, 0.002893302822485566, 0.02375170961022377, -0.03484111651778221, -0.006465994752943516, 0.08869509398937225, 0.02831689640879631, -0.012649858370423317, 0.0496564544737339, 0.0620109960436821, -0.017369337379932404, 0.05266591161489487, 0.048824895173311234, 0.040050189942121506, 0.025074971839785576, -0.0166743453592062, 0.06190601736307144, -0.010812400840222836, -0.004214800428599119, 0.05408729240298271, -0.010214866138994694, 0.012708917260169983, 0.03492530435323715, 0.029429364949464798, 0.0006735979113727808, 0.00003629587445175275, -0.006992681883275509, -0.013119486160576344, 0.0456356480717659, 0.005254614166915417, -0.25263911485671997, 0.04266897961497307, 0.0438060536980629, 0.04591630399227142, -0.003493959316983819, 0.005343342665582895, 0.049548570066690445, -0.05689531937241554, -0.0045695737935602665, -0.01972656138241291, 0.025655418634414673, 0.0822862908244133, 0.046850498765707016, -0.010218674317002296, 0.03270898386836052, -0.008650328032672405, 0.051545266062021255, 0.0035814575385302305, -0.03088180162012577, 0.013674798421561718, 0.039774712175130844, -0.005572618450969458, 0.2095460146665573, 0.02193695493042469, -0.002196872141212225, 0.04478699713945389, -0.029398415237665176, 0.012342953123152256, 0.07314883917570114, 0.03865034133195877, 0.007227161433547735, 0.010487901046872139, 0.06801258772611618, 0.015261432155966759, 0.02989237941801548, -0.0027851599734276533, 0.0055247764103114605, 0.016220033168792725, 0.008383630774915218, -0.007868358865380287, -0.01015612855553627, 0.021935638040304184, -0.04066623002290726, 0.058018725365400314, 0.08093377202749252, -0.01893116533756256, -0.03343941643834114, -0.04474978148937225, -0.03562489524483681, 0.004235393367707729, -0.04798871651291847, -0.03839501366019249, -0.04433096572756767, -0.01881195791065693, -0.0018184473738074303, 0.08788841962814331, 0.00010551889863563702, -0.018882906064391136, -0.05592065677046776, -0.0049799103289842606, -0.0028725217562168837, -0.06286729872226715, 0.09531760960817337, 0.0012987586669623852, 0.0026291075628250837 ]
[ 0.020502515137195587, 0.02293785661458969, -0.02202131412923336, 0.03205825760960579, 0.004648800007998943, 0.004208908881992102, -0.001949321711435914, -0.002001580549404025, -0.05881676822900772, -0.01869492419064045, -0.05333215370774269, 0.013251815922558308, 0.0641389861702919, -0.050080519169569016, -0.04639160633087158, 0.019601954147219658, 0.00914227869361639, 0.024029487743973732, 0.028713680803775787, -0.03551345318555832, -0.037453051656484604, 0.022590091452002525, 0.03736616298556328, 0.02914251759648323, -0.012280436232686043, 0.039538152515888214, -0.026706354692578316, 0.010095055215060711, 0.013534840196371078, -0.13037340342998505, -0.024531345814466476, -0.012178991921246052, 0.017741471529006958, -0.010913769714534283, -0.021092094480991364, 0.0802052840590477, -0.022679978981614113, 0.03487449139356613, -0.008705807849764824, 0.007195884827524424, 0.017829136922955513, 0.01113868411630392, -0.05289755016565323, 0.0032821940258145332, -0.018693922087550163, -0.007916695438325405, -0.028279516845941544, -0.006495827343314886, -0.02397819422185421, -0.002367587061598897, -0.0325210765004158, 0.030631689354777336, -0.002212759805843234, 0.031082164496183395, -0.008036608807742596, -0.04773947596549988, -0.04102281481027603, -0.060250259935855865, 0.010234955698251724, -0.016343403607606888, 0.010278582572937012, 0.02300858497619629, -0.022444263100624084, -0.005843681283295155, -0.006768278777599335, -0.015833280980587006, -0.015811273828148842, 0.0047167525626719, 0.033043596893548965, -0.03355153277516365, 0.05296142399311066, 0.02787547931075096, -0.05425962805747986, 0.005195661447942257, 0.0021229428239166737, 0.0018558087758719921, 0.04765284061431885, -0.03942817077040672, -0.017283208668231964, 0.020286735147237778, -0.041683513671159744, -0.0064254640601575375, 0.03192811459302902, 0.00734352832660079, -0.03187788277864456, -0.04592815786600113, -0.027953295037150383, 0.006054265890270472, 0.024054164066910744, -0.02721819095313549, -0.014283440075814724, 0.04540787264704704, -0.012180114164948463, -0.0023673782125115395, -0.02865050919353962, 0.008599766530096531, -0.004948423709720373, 0.0017134915105998516, 0.023545842617750168, 0.8068060278892517, 0.004014251288026571, 0.009154433384537697, -0.009645876474678516, -0.01080804131925106, 0.022252675145864487, -0.01927843876183033, -0.00236239330843091, -0.02849782072007656, -0.0189698226749897, -0.03424221649765968, 0.07730754464864731, -0.0019757982809096575, 0.043694689869880676, 0.028235115110874176, 0.013773327693343163, 0.017500445246696472, 0.030198443681001663, -0.002671019406989217, 0.014203496277332306, 0.005997691303491592, 0.04245132580399513, -0.012488014064729214, 0.02839532122015953, 0.03316260874271393, -0.01048518531024456, -0.20700779557228088, -0.031214511021971703, -7.400960187235124e-33, 0.024119189009070396, -0.05596709996461868, 0.038904689252376556, -0.009843667037785053, 0.021534960716962814, 0.0018940659938380122, 0.00872467178851366, -0.0468703992664814, -0.02908342517912388, -0.011469956487417221, -0.004605776630342007, 0.003569552907720208, 0.002657113829627633, -0.016339559108018875, 0.02186254970729351, -0.005569055210798979, 0.0008063993300311267, 0.029612362384796143, -0.006374045740813017, -0.01612074300646782, 0.019933348521590233, 0.028241194784641266, -0.016015348955988884, 0.030526725575327873, -0.01582302339375019, 0.03873591497540474, 0.018083980306982994, -0.03680243715643883, 0.020230773836374283, -0.04588449001312256, -0.02363487333059311, 0.039955221116542816, 0.014559641480445862, -0.011201010085642338, -0.00762875284999609, -0.0213338453322649, -0.021510150283575058, 0.02568282000720501, -0.025470610707998276, -0.05203918740153313, 0.011244319379329681, 0.007882203906774521, 0.0009322469704784453, -0.06063086539506912, 0.0059792776592075825, -0.0033508173655718565, 0.01844102516770363, 0.021361244842410088, 0.02499510906636715, 0.05422360450029373, 0.017464272677898407, -0.010597391985356808, 0.021161066368222237, 0.02751360647380352, -0.019027909263968468, 0.009058226831257343, 0.024958737194538116, 0.002867350820451975, 0.027213605120778084, 0.06324988603591919, -0.02274773269891739, -0.0033042198047041893, 0.005477117840200663, 0.015343448147177696, -0.0031256242655217648, -0.03535609319806099, 0.03222982585430145, 0.043321069329977036, 0.022276511415839195, 0.07115846127271652, -0.049827415496110916, 0.04665524885058403, -0.02233731746673584, -0.003373418701812625, -0.0130442650988698, -0.04889762029051781, -0.015611398965120316, -0.03505738824605942, -0.043588168919086456, 0.035524021834135056, 0.014304845593869686, -0.027219420298933983, -0.025129595771431923, 0.019061530008912086, -0.010599215514957905, -0.01018999982625246, 0.016373177990317345, 0.008930197916924953, -0.028019294142723083, -0.01621120423078537, 0.028716647997498512, 0.06306812167167664, -0.009426177479326725, -0.02583523653447628, -0.027462061494588852, 7.420435189892373e-33, 0.010496324859559536, -0.047202855348587036, 0.01200781762599945, 0.02296009659767151, 0.008854873478412628, -0.019451895728707314, 0.04104526340961456, 0.019793761894106865, -0.01359438057988882, 0.06419792771339417, -0.0014614957617595792, -0.008423183113336563, 0.0061283111572265625, 0.01727702096104622, 0.047019101679325104, -0.03136575594544411, 0.01493767462670803, 0.04080386087298393, 0.030354676768183708, 0.03574836626648903, -0.02600155770778656, 0.019162455573678017, 0.0008001100504770875, 0.01760420762002468, 0.015589265152812004, 0.034007906913757324, -0.019521819427609444, 0.007523195818066597, 0.004817612003535032, -0.012427299283444881, 0.025127572938799858, -0.022229649126529694, 0.014609919860959053, -0.014448021538555622, 0.00042114758980460465, 0.0382135845720768, 0.008597641251981258, -0.010074406862258911, 0.008833312429487705, -0.012251216918230057, 0.01787266694009304, 0.014139452017843723, -0.01317003183066845, 0.007695080246776342, 0.02173234149813652, -0.004115635994821787, 0.0199724268168211, 0.006669541820883751, 0.026112936437129974, -0.002393318573012948, 0.012354791164398193, 0.0026672333478927612, -0.00995074026286602, 0.008579680696129799, 0.012538347393274307, -0.02228645235300064, -0.04220689460635185, 0.03381817787885666, -0.04433424770832062, -0.00659093726426363, -0.018089737743139267, -0.04433291405439377, 0.0019866342190653086, -0.0076700118370354176, -0.05201779305934906, -0.009634708985686302, -0.019588515162467957, -0.04808725416660309, -0.030224861577153206, 0.036854177713394165, -0.062213264405727386, 0.019793719053268433, 0.008722564205527306, 0.019515810534358025, 0.0031505085062235594, -0.0269636083394289, -0.022599995136260986, 0.012926814146339893, 0.025412561371922493, 0.028915289789438248, 0.02312374860048294, 0.01661883108317852, 0.012210304848849773, -0.007928929291665554, 0.03349953889846802, -0.007160186301916838, -0.012000571005046368, 0.04188702255487442, 0.02298070676624775, -0.004099126439541578, 0.0009485823102295399, -0.01435907743871212, -0.028681639581918716, -0.018648169934749603, -0.014265659265220165, -1.2680158256728191e-8, -0.011654549278318882, -0.01046505942940712, -0.011774435639381409, 0.026272252202033997, 0.03575911000370979, 0.04908242076635361, 0.006353563163429499, -0.020849423483014107, -0.0354575589299202, -0.013858993537724018, 0.03766162320971489, -0.0006847578333690763, -0.003769482020288706, -0.0019510603742673993, 0.026148071512579918, -0.03337471932172775, 0.008302999660372734, 0.0005605851183645427, 0.0423324890434742, 0.006689084228128195, -0.013229445554316044, 0.01975027099251747, -0.0026593361981213093, -0.01576477847993374, -0.03232917934656143, -0.021164968609809875, 0.02439834736287594, -0.09247411042451859, -0.000046577162720495835, -0.027085142210125923, 0.035095445811748505, -0.04414881020784378, 0.0022337068803608418, 0.028805555775761604, -0.020307429134845734, -0.03705253079533577, -0.03161144629120827, 0.043774671852588654, 0.023910025134682655, 0.002735624322667718, -0.01842307671904564, 0.024922283366322517, -0.011236818507313728, -0.044492535293102264, -0.041452474892139435, -0.01580183580517769, -0.03066755086183548, 0.03356296569108963, 0.03633459657430649, -0.010437032207846642, -0.0013989392900839448, -0.028461221605539322, 0.025945458561182022, -0.023565439507365227, 0.06985493749380112, -0.006783447228372097, 0.007744719740003347, -0.06609925627708435, 0.003487618640065193, -0.01681850478053093, 0.04222596436738968, -0.014209101907908916, -0.02237056754529476, -0.0360761396586895 ]
haskell-initialising-a-map
https://markhneedham.com/blog/2012/12/29/haskell-initialising-a-map
false
2012-12-29 20:14:12
Haskell: A cleaner way of initialising a map
[ "haskell" ]
[ "Haskell" ]
I recently wrote a blog post http://www.markhneedham.com/blog/2012/12/29/haskell-initialising-a-map/[showing a way of initialising a Haskell map] and towards the end of the post I realised how convoluted my approach was and wondered if there was an easier way and indeed there is! To recap, this is the code I ended up with to populate a map with binary based values as the keys and node ids as the values: [source,haskell] ---- import Data.Map toMap :: [Int] -> Map Int [Int] toMap nodes = fromList $ map asMapEntry $ (groupIgnoringIndex . sortIgnoringIndex) nodesWithIndexes where nodesWithIndexes = (zip [0..] nodes) groupIgnoringIndex = groupBy (\(_,x) (_,y) -> x == y) sortIgnoringIndex = sortBy (\(_,x) (_,y) -> x `compare` y) asMapEntry :: [(Int, Int)] -> (Int, [Int]) asMapEntry nodesWithIndexes = ((snd . head) nodesWithIndexes, Prelude.foldl (\acc (x,_) -> acc ++ [x]) [] nodesWithIndexes) ---- [source,haskell] ---- > assocs $ toMap [1,2,5,7,2,4] [(1,[0]),(2,[4,1]),(4,[5]),(5,[2]),(7,[3])] ---- To sum up what we're trying to do: when a key doesn't have an entry we want to create one with a list containing the appropriate value and if the key already has a value then we want to append that value to the existing list. As it turns out the +++<cite>+++http://www.haskell.org/ghc/docs/6.12.2/html/libraries/containers-0.3.0.0/Data-Map.html#v%3AinsertWith[insertWith]+++</cite>+++ function does exactly what we want: [source,haskell] ---- > let emptyMap = empty :: Map Int [Int] > assocs $ foldl (\acc (id,val) -> insertWith (++) val [id] acc) emptyMap nodesWithIndexes [(1,[0]),(2,[4,1]),(4,[5]),(5,[2]),(7,[3])] ---- Based on this experience it would appear that the same type of thing applies when coding in Haskell as when coding in Clojure. To http://blog.jayfields.com/2012/09/replacing-common-code-with-clojureset.html[paraphrase Jay Fields]: ____ If you've written a fair amount of Clojure code [\...] then chances are you've probably reinvented a few functions that are already available in the standard library. ____
null
null
[ -0.006222796626389027, -0.020230496302247047, -0.0069423760287463665, 0.019300149753689766, 0.04213869944214821, 0.031060537323355675, 0.021558502689003944, 0.02008899301290512, 0.010143519379198551, -0.030467437580227852, -0.015561512671411037, -0.0375952310860157, -0.0777946338057518, 0.02708117663860321, -0.007386669982224703, 0.06206835061311722, 0.08369410783052444, -0.03991466388106346, -0.03310331702232361, 0.026782898232340813, 0.014516569674015045, 0.04055780917406082, -0.02338937297463417, 0.023793449625372887, 0.02204432711005211, 0.00045749483979307115, 0.003879631171002984, -0.0025777288246899843, -0.049203574657440186, -0.002561550820246339, 0.01968630775809288, 0.0012728363508358598, -0.0030596223659813404, -0.024003449827432632, 0.0026833885349333286, -0.030613470822572708, -0.0008870328310877085, -0.004766453988850117, 0.004424517974257469, 0.004791619256138802, -0.05011395364999771, 0.032090283930301666, 0.005548194050788879, 0.022106146439909935, -0.0304600577801466, -0.0033700414933264256, -0.04671666771173477, 0.020340193063020706, -0.03139335289597511, -0.0011966185411438346, -0.05668047443032265, 0.0076048183254897594, -0.008639080449938774, 0.01122915931046009, -0.03715921938419342, 0.04099280387163162, 0.025962864980101585, -0.07428936660289764, 0.05534258112311363, -0.020610060542821884, -0.0011635578703135252, -0.007652439177036285, 0.022868666797876358, 0.0600547231733799, 0.00947693269699812, -0.03616546839475632, -0.03488664701581001, 0.04809436947107315, -0.05367713421583176, -0.01808273047208786, -0.01731954887509346, 0.002672746544703841, -0.03384670987725258, -0.020388217642903328, -0.008032170124351978, -0.05519265681505203, -0.011055225506424904, 0.07500449568033218, -0.008163051679730415, 0.026080315932631493, -0.030277440324425697, -0.0025978635530918837, 0.02431607060134411, 0.015973398461937904, 0.023882420733571053, -0.03171922266483307, -0.04083811864256859, -0.024152696132659912, -0.06107451394200325, 0.048554789274930954, -0.01608569175004959, -0.04359923303127289, -0.0005395938060246408, -0.004410719033330679, 0.026304390281438828, -0.01998854987323284, -0.002816080814227462, -0.009162098169326782, 0.005046094302088022, -0.008019774220883846, -0.014103919267654419, 0.010798507370054722, 0.04470227658748627, -0.01858355477452278, -0.07833622395992279, -0.024490902200341225, -0.04183931276202202, -0.008876589126884937, 0.010325930081307888, 0.006674937903881073, -0.027904383838176727, -0.01713074930012226, 0.0037591997534036636, 0.01459262240678072, -0.08227918297052383, 0.038378771394491196, 0.0007395601714961231, 0.00539916567504406, -0.0010511416476219893, 0.03410886973142624, 0.04483252018690109, 0.03610697761178017, 0.0021676982287317514, 0.09065452218055725, 0.006922174245119095, 0.05043376237154007, 0.00840579904615879, 0.05763072147965431, -0.018857309594750404, -0.05218219757080078, -0.03873632848262787, 0.06430163234472275, -0.030601399019360542, -0.006621500011533499, 0.0022571322042495012, -0.029349930584430695, -0.0726286843419075, 0.025035763159394264, 0.03957522660493851, 0.06244698539376259, 0.00997502263635397, -0.04346827417612076, 0.02731510065495968, -0.019338149577379227, 0.022290535271167755, 0.02237611822783947, -0.029244234785437584, -0.006626464426517487, -0.02734220027923584, 0.0320122055709362, 0.022626591846346855, 0.06665757298469543, 0.047380201518535614, -0.008695650845766068, 0.009477511048316956, 0.09633831679821014, 0.004037078935652971, 0.02001045271754265, 0.004675924312323332, 0.024773981422185898, 0.032306887209415436, 0.02253727614879608, 0.05683823302388191, 0.031231971457600594, -0.010557100176811218, -0.007333611603826284, -0.003197167068719864, 0.040827736258506775, 0.012800456024706364, -0.02418707124888897, -0.027550535276532173, -0.05431835353374481, 0.04475245997309685, -0.024456672370433807, 0.012168494053184986, 0.014379870146512985, 0.07018545269966125, 0.021398670971393585, 0.03756626322865486, -0.00931746605783701, -0.0791563168168068, 0.037353578954935074, -0.003952902276068926, 0.03503002971410751, -0.0014925217255949974, 0.018033437430858612, 0.056748636066913605, 0.026728224009275436, 0.0034222202375531197, 0.027066783979535103, -0.03591115400195122, -0.06334089487791061, -0.017930379137396812, -0.02362906187772751, 0.08517472445964813, -0.013326149433851242, 0.00421938905492425, 0.07740861177444458, 0.005859808064997196, 0.022603610530495644, 0.027616538107395172, -0.008557873778045177, 0.01884216070175171, -0.03302551060914993, -0.028103748336434364, 0.04015802592039108, 0.056242529302835464, -0.019587751477956772, -0.04961692914366722, -0.007787859067320824, -0.013544348999857903, 0.013779318891465664, 0.027682054787874222, -0.010974063538014889, 0.04929322004318237, 0.04751824215054512, 0.023169830441474915, 0.0022912020795047283, 0.05668963864445686, -0.025630226358771324, 0.045257922261953354, 0.017971660941839218, -0.008380689658224583, -0.014104095287621021, -0.0005527838948182762, 0.12809288501739502, 0.07193360477685928, -0.027946656569838524, -0.03136581555008888, 0.015026615932583809, 0.008826028555631638, -0.01990799605846405, -0.008879829198122025, 0.007279918063431978, -0.040497273206710815, -0.005383501295000315, -0.007097550667822361, -0.004729357082396746, 0.0031118271872401237, -0.028823111206293106, -0.01839127205312252, 0.08175155520439148, -0.02621546946465969, 0.050538673996925354, 0.02323722653090954, -0.024328265339136124, -0.017304563894867897, -0.03809237480163574, -0.056276824325323105, 0.013820345513522625, -0.008341928012669086, -0.005195883568376303, 0.05655026063323021, -0.039459384977817535, -0.020300161093473434, -0.02510857582092285, -0.03959780931472778, 0.012948165647685528, 0.05233592540025711, 0.0720813050866127, -0.01101568154990673, 0.041530076414346695, -0.04181995987892151, -0.004907121881842613, -0.027430346235632896, -0.05440756306052208, -0.05530312657356262, 0.012259387411177158, 0.03274209424853325, 0.02145244926214218, 0.03295626491308212, -0.0017878578510135412, 0.0387878455221653, -0.03153443709015846, -0.007975509390234947, -0.016849862411618233, 0.012213917449116707, 0.0012754332274198532, -0.03630540147423744, -0.030495835468173027, -0.04736674576997757, 0.0497141033411026, -0.03593231365084648, -0.027471652254462242, 0.01125008799135685, -0.03942951560020447, 0.05370134487748146, -0.06665156036615372, -0.033221498131752014, 0.016671903431415558, 0.04972175508737564, 0.03283289074897766, -0.013506228104233742, 0.0022258562967181206, 0.07483500987291336, 0.007780174724757671, 0.009489544667303562, 0.012804128229618073, -0.00900570210069418, 0.025697724893689156, -0.022613365203142166, 0.040534958243370056, 0.025451403111219406, 0.002366492059081793, -0.006158634088933468, -0.04287055507302284, -0.002131751971319318, -0.008394625037908554, -0.28102779388427734, 0.024256333708763123, -0.0007612365297973156, -0.03473006188869476, 0.008327390998601913, -0.01239397469907999, -0.021855086088180542, -0.028036069124937057, -0.03347396105527878, 0.04257412999868393, -0.02153509296476841, -0.03517407178878784, -0.04104173555970192, 0.05482744798064232, 0.031588904559612274, 0.0021509630605578423, -0.001989469164982438, -0.03285468742251396, -0.006863286718726158, 0.06433353573083878, -0.033763132989406586, -0.07734736800193787, 0.014746960252523422, 0.039539650082588196, -0.008270658552646637, 0.04318441450595856, -0.07509539276361465, 0.05096485838294029, -0.056043513119220734, -0.018533846363425255, -0.04238099232316017, -0.03293163329362869, 0.0231672003865242, -0.013004082255065441, -0.030579684302210808, -0.041999224573373795, 0.025238385424017906, 0.0178667139261961, 0.007400428876280785, 0.014134000986814499, -0.04138834401965141, -0.027183540165424347, -0.011996416375041008, -0.020393144339323044, 0.0723547637462616, -0.039016302675008774, -0.05836726725101471, -0.013602383434772491, -0.027790693566203117, 0.06786253303289413, -0.022756177932024002, -0.036518245935440063, -0.01508183591067791, 0.04864136874675751, -0.019252467900514603, -0.0224379301071167, -0.015303625725209713, 0.0021551568061113358, -0.052150096744298935, -0.013156337663531303, -0.01754346676170826, -0.027059514075517654, -0.019438868388533592, -0.04252210259437561, -0.007845181971788406, -0.05027176812291145, -0.0736425518989563, -0.020846500992774963, 0.05684207007288933, 0.011403883807361126, -0.0008660760940983891, -0.021554498001933098, -0.02279515191912651, -0.11485788226127625, -0.018598470836877823, -0.030667487531900406, -0.034805454313755035, -0.002459422219544649, -0.015587885864078999, 0.05491439998149872, -0.052501481026411057, -0.05770810693502426, 0.03687179833650589, 0.0017854598117992282, 0.032496996223926544, -0.017485983669757843, -0.015206288546323776, -0.03132646903395653, -0.023847561329603195, -0.027610046789050102, 0.054680801928043365, -0.01226160116493702, 0.017372775822877884, -0.0005643817712552845, 0.0001961056696018204, 0.03513159230351448, 0.00960061140358448, -0.008629671297967434, 0.040369387716054916, 0.01875469833612442, 0.0559157095849514, -0.03383292257785797, 0.047793060541152954, -0.019101928919553757, -0.02168169990181923, 0.000494020467158407, -0.038793448358774185, 0.030261021107435226, 0.041863828897476196, -0.001703100511804223, -0.025077050551772118, -0.03167194500565529, -0.007664344739168882, -0.08029359579086304, -0.028052719309926033, 0.0022620568051934242, 0.011805431917309761, 0.0234745591878891, 0.049959078431129456, -0.005737777799367905, -0.049638837575912476, -0.006251479499042034, 0.013764430768787861, -0.02781422808766365, -0.045920390635728836, -0.03892706707119942, -0.05837814509868622, -0.02447236329317093, 0.03140765056014061, 0.038247957825660706, -0.002149064326658845, 0.03014862909913063, 0.05643228441476822, -0.016134748235344887, 0.04222031682729721, -0.027583109214901924, -0.031069036573171616, -0.02842867001891136, -0.020584436133503914, -0.012291384860873222, 0.025669919326901436, -0.010049711912870407, 0.018941214308142662, 0.04412433132529259, 0.023147208616137505, -0.013718006201088428, 0.015322072431445122, 0.010004991665482521, -0.0030608244705945253, 0.004970835521817207, -0.00272264308296144, -0.029311947524547577, 0.010178658179938793, -0.03322605788707733, -0.010910882614552975, 0.023548852652311325, 0.04252098873257637, -0.026855802163481712, -0.04236864671111107, -0.05479029566049576, 0.029954830184578896, -0.05487053096294403, -0.013767801225185394, -0.024763695895671844, 0.03411676734685898, 0.07611070573329926, -0.021745549514889717, 0.039619896560907364, -0.025307530537247658, 0.016432590782642365, 0.010418844409286976, 0.02641194872558117, -0.04894696921110153, 0.03294343501329422, -0.01644805818796158, -0.02470296248793602, 0.01826605014503002, 0.04337776452302933, 0.03777888044714928, 0.011316565796732903, -0.023508546873927116, -0.009292119182646275, 0.013746984302997589, -0.0009441475267522037, 0.046272993087768555, 0.002089955611154437, 0.0031051733531057835, -0.009091648273169994, -0.032240044325590134, -0.04518740251660347, -0.01855326071381569, -0.020500801503658295, -0.02840394899249077, 0.05113379284739494, -0.02305331826210022, -0.05752749368548393, -0.0031508454121649265, 0.0029710365924984217, -0.0006313184858299792, 0.015700096264481544, 0.014996225014328957, -0.02372572012245655, -0.007206459064036608, 0.016133317723870277, 0.08674925565719604, -0.04791881516575813, -0.007962816394865513, -0.011821006424725056, 0.017346249893307686, 0.010280447080731392, 0.06569898873567581, -0.04611105099320412, -0.0228556077927351, 0.004467711318284273, 0.01789621077477932, -0.013855009339749813, -0.02530534565448761, -0.02466280199587345, -0.008265662007033825, 0.0012805373407900333, -0.011215711943805218, 0.020079869776964188, 0.0022263303399086, -0.030855534598231316, -0.02326960861682892, 0.007696318905800581, -0.03593483567237854, -0.029151378199458122, 0.015474227257072926, -0.042847126722335815, 0.04886484891176224, -0.032426126301288605, 0.0417606495320797, 0.04098028317093849, 0.003668535267934203, -0.004077184945344925, -0.054803915321826935, 0.025320325046777725, -0.03769220784306526, 0.08084507286548615, -0.0033962491434067488, -0.02654792182147503, 0.0018991424003615975, 0.01622876338660717, -0.029109260067343712, -0.019046498462557793, 0.014246289618313313, -0.011633899062871933, 0.015072575770318508, 0.03268184885382652, -0.0073757534846663475, 0.023890051990747452, -0.003090361598879099, -0.05089278146624565, 0.06159760057926178, -0.012080545537173748, -0.04830576479434967, -0.030533336102962494, -0.05098402127623558, 0.003563979174941778, -0.0010439290199428797, 0.019852271303534508, -0.03188907727599144, 0.0649542585015297, 0.04891051724553108, 0.03360152617096901, 0.008760259486734867, -0.015353113412857056, 0.013374049216508865, -0.0480290912091732, -0.014419767074286938, -0.08233219385147095, -0.006125647574663162, -0.012692077085375786, 0.01452258788049221, -0.025892382487654686, -0.004306490998715162, -0.038448821753263474, 0.02270415425300598, -0.06901402771472931, -0.007639813236892223, 0.04195743054151535, 0.012967439368367195, 0.04175279289484024, 0.0193314328789711, -0.051746055483818054, 0.009172732010483742, 0.030745545402169228, -0.00524009857326746, 0.006105791311711073, -0.038457900285720825, 0.049049537628889084, 0.0013916498282924294, 0.050467632710933685, -0.0017875124467536807, -0.018823444843292236, 0.033308833837509155, 0.044546518474817276, 0.029866335913538933, 0.06538058072328568, -0.023701181635260582, 0.037271104753017426, 0.009518422186374664, 0.01880793832242489, -0.00982337910681963, 0.030956309288740158, -0.02233453467488289, -0.06693098694086075, 0.014957577921450138, 0.00943877175450325, -0.04209833964705467, -0.04640824347734451, 0.060338154435157776, 0.015485414303839207, -0.026840463280677795, -0.06841708719730377, 0.05146772041916847, -0.058542441576719284, 0.011268025264143944, -0.011743899434804916, 0.019433004781603813, -0.03303351625800133, 0.0489131323993206, -0.010404009371995926, 0.006323805078864098, 0.05301736667752266, -0.013089439831674099, -0.01497037336230278, 0.014746488071978092, 0.11394500732421875, 0.10404064506292343, 0.028377041220664978, 0.0024747084826231003, 0.03814605623483658, -0.034884676337242126, -0.023509403690695763, -0.00996464118361473, -0.0378248393535614, 0.005723397247493267, -0.004654290620237589, 0.022752905264496803, 0.08572021126747131, -0.03288515657186508, 0.058697838336229324, -0.04130198806524277, 0.008841981180012226, 0.035389482975006104, 0.03603517636656761, 0.02517499029636383, 0.06597214937210083, 0.014932380057871342, 0.040346674621105194, -0.030414002016186714, -0.06940392404794693, 0.006087978836148977, 0.010344131849706173, 0.001744925742968917, 0.008770107291638851, -0.009944475255906582, -0.0012822755379602313, 0.02770441398024559, 0.019701872020959854, 0.06702112406492233, 0.0006981094484217465, -0.00007834562711650506, -0.00960184819996357, 0.020959677174687386, -0.002859037835150957, 0.01206563413143158, -0.024597251787781715, -0.029068879783153534, 0.008741225115954876, -0.022763362154364586, -0.041944850236177444, 0.010979505255818367, -0.04091992601752281, 0.029151305556297302, -0.020143669098615646, -0.0009154211729764938, 0.008655407465994358, -0.005015028640627861, -0.06343487650156021, -0.04919051378965378, -0.04358958080410957, -0.01686824858188629, -0.08562925457954407, 0.031311169266700745, -0.0045613921247422695, -0.029696857556700706, 0.017402781173586845, -0.037264835089445114, -0.001929067075252533, -0.0434081107378006, 0.03506540134549141, -0.007282833568751812, -0.011028705164790154, 0.0007623803103342652, 0.02427241951227188, 0.03695577383041382, 0.06289534270763397, 0.0331016406416893, 0.0065063838846981525, 0.015384054742753506, -0.015275276266038418, -0.02615548111498356, 0.0637350007891655, 0.03433181717991829, -0.0023375535383820534, -0.08451485633850098, -0.029996059834957123, 0.030137958005070686, 0.03144950792193413, -0.08162636309862137, -0.016656367108225822, 0.004753538407385349, -0.014384766109287739, 0.0336628258228302, -0.019446961581707, -0.0007626294973306358, -0.00497144041582942, -0.009165878407657146, -0.00402648514136672, 0.02028801292181015, 0.061361163854599, -0.0303452517837286, 0.08756498247385025, 0.016558459028601646, -0.02258928120136261, -0.020579161122441292, -0.028965629637241364, -0.028736485168337822, 0.026533160358667374, -0.014842841774225235, -0.03377256169915199, -0.05044829100370407, -0.0402754545211792, -0.007214718032628298, -0.011895159259438515, -0.025105223059654236, -0.0021542739123106003, 0.008377127349376678, 0.05249834433197975, -0.044219549745321274, 0.048521287739276886, -0.027258189395070076, 0.03593270853161812, -0.03178441524505615, -0.03095223195850849, -0.031796395778656006, 0.03725321963429451, -0.008838236331939697, 0.006372352130711079, 0.02809595875442028, -0.04433401674032211, 0.021638009697198868, 0.006444267462939024, 0.031386733055114746, 0.019714349880814552, -0.02348261885344982, 0.03786487132310867 ]
[ -0.09715068340301514, -0.049542877823114395, -0.03822660446166992, -0.034881576895713806, -0.01950451359152794, -0.03880789130926132, 0.00873956922441721, 0.022640082985162735, 0.0055554574355483055, -0.026764249429106712, 0.0056573739275336266, -0.09087516367435455, 0.030407363548874855, -0.013498819433152676, 0.0631689578294754, 0.005099720321595669, -0.05415600910782814, -0.03655438497662544, -0.04209858551621437, 0.0283945482224226, 0.0028078556060791016, -0.016181817278265953, -0.04340819641947746, -0.03437862545251846, 0.03340492025017738, 0.061009544879198074, 0.036525335162878036, -0.04103571176528931, 0.015017305500805378, -0.2533297836780548, -0.016559138894081116, -0.012075667269527912, 0.07699636369943619, -0.07422495633363724, -0.02204337902367115, 0.027480553835630417, 0.03321971744298935, 0.023707302287220955, -0.01143554039299488, 0.045690376311540604, 0.044032640755176544, 0.012377959676086903, -0.058954909443855286, -0.0200518649071455, 0.029699992388486862, -0.013694033958017826, -0.04513268172740936, -0.03138241916894913, 0.002959925914183259, 0.01891818456351757, -0.07810264825820923, -0.01812376268208027, -0.01652613654732704, 0.009131909348070621, 0.018217269331216812, 0.030672429129481316, 0.031105469912290573, 0.09342427551746368, 0.021651778370141983, 0.01555384136736393, 0.02218404971063137, 0.012449623085558414, -0.09137739986181259, 0.11544231325387955, 0.012296061962842941, 0.06749822199344635, -0.03324289992451668, -0.039622992277145386, -0.032705508172512054, 0.039346713572740555, 0.01031486876308918, -0.008543683215975761, -0.0000977928502834402, 0.06364081799983978, 0.02194565162062645, -0.05689772963523865, -0.012710167095065117, 0.039532750844955444, 0.07506798207759857, -0.019189491868019104, -0.06630945205688477, -0.035136789083480835, 0.027056865394115448, 0.01629328541457653, 0.01390284113585949, -0.025940489023923874, -0.025973474606871605, 0.06883873790502548, -0.006238281726837158, 0.005757944658398628, 0.005413944832980633, -0.04222465679049492, -0.024087054654955864, 0.02676462195813656, -0.049128737300634384, 0.000278500810964033, -0.022356312721967697, 0.02219003438949585, -0.032628610730171204, 0.362236350774765, -0.046325284987688065, 0.0007743476307950914, 0.029021384194493294, 0.04053669050335884, -0.030095160007476807, -0.01084284856915474, -0.020730262622237206, -0.06613875925540924, -0.03892533853650093, -0.02678583189845085, -0.03848351165652275, -0.04735999554395676, 0.07521160691976547, -0.05218884348869324, -0.0020671114325523376, -0.004569067619740963, 0.05964639410376549, 0.025523409247398376, -0.0016426837537437677, 0.037664227187633514, 0.020482812076807022, 0.008036104030907154, 0.01273577380925417, 0.027744509279727936, 0.005425664130598307, 0.036128874868154526, 0.025976624339818954, 0.047972116619348526, 0.017867129296064377, 0.04824624955654144, 0.023570764809846878, -0.014740945771336555, -0.07184643298387527, -0.0031434365082532167, 0.008439362980425358, 0.004114535171538591, 0.014184923842549324, -0.04548729583621025, 0.012131999246776104, 0.00349969370290637, 0.0027185087092220783, -0.046694256365299225, 0.014379792846739292, -0.006844096817076206, 0.004239756613969803, 0.1219111904501915, -0.0037313555367290974, -0.036552924662828445, -0.030920829623937607, -0.031248189508914948, -0.009837171994149685, 0.0007869789842516184, -0.009783136658370495, -0.021842369809746742, -0.00429905392229557, 0.0672636330127716, 0.07196863740682602, -0.00235166703350842, -0.0812951996922493, 0.025247329846024513, -0.04582321271300316, -0.02037895657122135, -0.02101854979991913, 0.07039481401443481, 0.014812426641583443, -0.05584074184298515, -0.0591343492269516, -0.007723222486674786, 0.02529565431177616, -0.09816194325685501, -0.026673464104533195, 0.03828636556863785, -0.0022554683964699507, 0.03932179883122444, 0.05504416301846504, -0.011217606253921986, -0.025252414867281914, -0.060076143592596054, 0.05676836147904396, 0.015936139971017838, -0.020512185990810394, -0.009008469991385937, -0.031319715082645416, -0.00620970269665122, -0.032940469682216644, -0.046760864555835724, -0.0649055764079094, 0.02424987219274044, -0.03418167307972908, -0.006900332868099213, 0.023025866597890854, -0.004376665689051151, -0.06159541755914688, 0.04062748700380325, -0.012469680979847908, -0.019004011526703835, 0.024317419156432152, -0.014393706806004047, 0.010449609719216824, -0.021412380039691925, 0.022343289107084274, 0.0495792031288147, -0.010594452731311321, 0.0354122556746006, -0.06570322066545486, -0.013400220312178135, 0.069233737885952, -0.05330825597047806, 0.051008764654397964, 0.024366965517401695, 0.006776222959160805, 0.02345118299126625, -0.04853243753314018, -0.004826689139008522, 0.005067293997853994, -0.03877262771129608, 0.0062215388752520084, -0.028328094631433487, 0.01660899445414543, 0.03640580177307129, -0.013688286766409874, -0.06635923683643341, -0.03635486215353012, -0.3467511832714081, -0.04896385967731476, -0.010862897150218487, -0.01206475030630827, -0.02237207069993019, -0.08926582336425781, -0.017215067520737648, -0.006036569830030203, -0.03212529420852661, 0.04059764742851257, 0.08312264829874039, -0.01997755654156208, 0.006626314017921686, -0.036588724702596664, -0.014820246957242489, 0.022384947165846825, 0.0012110210955142975, -0.03133176267147064, -0.008378934115171432, 0.029583558440208435, -0.014157370664179325, 0.002061533974483609, -0.018548695370554924, -0.05384824052453041, 0.0002307547692907974, -0.04984728991985321, 0.11498808860778809, -0.011055408976972103, 0.05073796585202217, -0.05366205424070358, 0.03410745784640312, -0.002730626380071044, -0.01917376182973385, -0.04150785878300667, -0.031925223767757416, -0.02310500480234623, 0.00041092862375080585, 0.028236286714673042, 0.06060372665524483, -0.02539372257888317, -0.041104696691036224, 0.014748845249414444, -0.05788777396082878, -0.05048481374979019, 0.007712643127888441, 0.017281973734498024, -0.02816683053970337, -0.018811967223882675, 0.015731245279312134, 0.05744749307632446, -0.00908734928816557, 0.026003878563642502, 0.02073448710143566, 0.005012298934161663, 0.0017239495646208525, -0.03431561961770058, -0.04811106249690056, -0.07793495059013367, -0.01817401871085167, 0.010733144357800484, 0.03801541402935982, 0.05458071827888489, 0.04043017327785492, 0.0031864605844020844, -0.0021429001353681087, 0.014264128170907497, -0.022870080545544624, -0.004816919099539518, 0.019565904513001442, -0.03290227800607681, -0.046278588473796844, 0.08517169207334518, 0.00009412537474418059, -0.001259714481420815, 0.04224963113665581, 0.08286367356777191, -0.025355331599712372, 0.06940855085849762, 0.07386024296283722, 0.03611133620142937, 0.012982570566236973, 0.0070519414730370045, 0.03993532806634903, -0.024551544338464737, -0.01224036980420351, 0.05090164393186569, -0.013145934790372849, 0.040489546954631805, -0.001976747764274478, 0.02553974837064743, 0.012330913916230202, 0.03553061932325363, 0.027262257412075996, -0.03656578063964844, 0.03966716304421425, -0.020138004794716835, -0.25493448972702026, 0.04683195799589157, 0.04336518794298172, 0.03899380564689636, -0.004308587871491909, -0.000037204012187430635, 0.05338391289114952, -0.048862796276807785, -0.007636728696525097, -0.01723656617105007, 0.017522597685456276, 0.07906464487314224, 0.046677663922309875, 0.015611364506185055, 0.017515754327178, -0.02400851435959339, 0.054032135754823685, -0.01139117032289505, 0.006492982152849436, -0.014693181961774826, 0.03511849790811539, 0.002274820813909173, 0.2167918086051941, 0.03549050912261009, 0.023503528907895088, 0.0294181015342474, -0.01445350144058466, -0.004299638792872429, 0.08254898339509964, 0.05524400249123573, 0.01974216103553772, -0.002705426188185811, 0.06251475214958191, 0.026426887139678, 0.06769691407680511, -0.039014782756567, -0.009939832612872124, 0.06352338939905167, -0.007336060516536236, 0.0022019140888005495, -0.04530711472034454, 0.05827973783016205, -0.03267917409539223, 0.047282058745622635, 0.05875428393483162, 0.013633440248668194, -0.0046433499082922935, -0.059215664863586426, -0.04682552441954613, 0.03641175478696823, -0.014625557698309422, -0.03553871437907219, -0.003674933221191168, -0.03428288921713829, -0.007622051518410444, 0.050107672810554504, 0.0009111703839153051, -0.01929847151041031, -0.03433527052402496, 0.018615903332829475, 0.037130262702703476, -0.0561017170548439, 0.10397068411111832, -0.019731856882572174, 0.013398600742220879 ]
[ -0.012028425931930542, 0.031952161341905594, 0.014756664633750916, 0.01863703317940235, 0.001436316524632275, -0.0036854702048003674, 0.004868484567850828, -0.020573904737830162, -0.0399181991815567, -0.015655824914574623, -0.025113429874181747, -0.016962416470050812, 0.060733623802661896, -0.044547781348228455, -0.0233483724296093, 0.013509807176887989, -0.005832988768815994, 0.027565903961658478, 0.02510731667280197, -0.05165659636259079, -0.04743044078350067, 0.04441916570067406, 0.005113503430038691, 0.0017732165288180113, 0.011281179264187813, 0.04016644135117531, -0.03148573637008667, -0.012688509188592434, 0.021056465804576874, -0.11166589707136154, -0.03876543417572975, -0.021033721044659615, 0.028771894052624702, -0.006836104206740856, -0.03814856335520744, 0.06421318650245667, 0.012991930358111858, 0.016482392325997353, 0.0005090275080874562, -0.00011414472828619182, 0.0037350086495280266, 0.016613813117146492, -0.0029518597293645144, 0.005713312420994043, -0.005092615261673927, 0.014377177692949772, 0.025667589157819748, -0.03308058902621269, 0.0006943762418814003, 0.02558748982846737, -0.03169206157326698, 0.024050245061516762, -0.007913379929959774, 0.024881504476070404, -0.0036960605066269636, -0.001262845005840063, -0.047890327870845795, -0.05202246829867363, -0.03416656330227852, -0.02906336821615696, -0.02688438445329666, 0.004477443639189005, -0.03679191693663597, -0.015941204503178596, -0.011954406276345253, 0.004615478217601776, -0.018375199288129807, 0.0027196158189326525, 0.025855300948023796, -0.007493725977838039, 0.03794754669070244, 0.03229343518614769, -0.03512056544423103, -0.030214738100767136, -0.01720808446407318, 0.006145111750811338, 0.029364479705691338, -0.051984477788209915, 0.009687603451311588, -0.007019095588475466, -0.013385580852627754, -0.010470929555594921, 0.03287601098418236, 0.007236439269036055, -0.01283382810652256, -0.013576870784163475, -0.034456517547369, 0.013231181539595127, -0.00363459181971848, -0.0021929822396486998, -0.03223143517971039, 0.033132560551166534, 0.006059200968593359, 0.0004301992885302752, -0.017906900495290756, 0.031518541276454926, -0.007826407440006733, 0.003490894101560116, 0.0030799899250268936, 0.8341701030731201, 0.010676011443138123, 0.03074325993657112, -0.010615912266075611, -0.01644267328083515, 0.028384314849972725, -0.03453928977251053, -0.0048192813992500305, -0.02521723136305809, -0.04692928493022919, -0.028755370527505875, 0.047017134726047516, -0.013750838115811348, 0.05792611837387085, 0.026594482362270355, -0.020877370610833168, 0.013194553554058075, 0.03100689873099327, 0.003550224471837282, 0.012033919803798199, -0.003747203154489398, 0.023068023845553398, -0.015907209366559982, 0.024463413283228874, 0.04149104654788971, 0.019677402451634407, -0.1880096048116684, -0.03136046603322029, -7.730247746311125e-33, 0.02541259117424488, -0.0354233980178833, 0.028957858681678772, 0.0030298070050776005, 0.04357718303799629, -0.004047064110636711, 0.034065231680870056, -0.025981198996305466, -0.043092381209135056, -0.002320557367056608, -0.01072600670158863, 0.003058828180655837, -0.025399846956133842, -0.00736620556563139, 0.04291783273220062, -0.011681381613016129, 0.005708491429686546, 0.024998247623443604, -0.021291622892022133, -0.037051212042570114, 0.009821617975831032, 0.04131024703383446, -0.004600441083312035, 0.015155505388975143, 0.010773314163088799, 0.02949729561805725, -0.02721809782087803, -0.0042590792290866375, 0.02512725442647934, -0.052106063812971115, -0.023456228896975517, 0.03305595740675926, -0.015198412351310253, 0.023663947358727455, 0.014487824402749538, -0.035171087831258774, 0.009711947292089462, 0.03366304188966751, -0.02769393101334572, -0.015174520201981068, -0.019581152126193047, 0.02318495698273182, -0.03054475039243698, -0.060466744005680084, -0.003666563890874386, -0.04865655675530434, 0.01387086883187294, 0.03628302365541458, 0.02043416164815426, 0.05927567929029465, 0.03375237062573433, 0.00747549906373024, -0.007268290501087904, 0.012999370694160461, -0.039214324206113815, -0.015074181370437145, 0.010614870116114616, 0.038533829152584076, -0.006751563865691423, 0.08144070953130722, -0.043344851583242416, 0.022678688168525696, 0.0096255112439394, 0.03315507993102074, -0.008242781274020672, 0.0036893265787512064, 0.009603806771337986, 0.01713785156607628, 0.0017329273978248239, 0.028837434947490692, -0.021473193541169167, 0.004647946450859308, -0.02229928970336914, -0.011899917386472225, 0.02365734428167343, -0.029058735817670822, -0.02149336040019989, -0.04124413803219795, -0.03057631105184555, 0.008270138874650002, 0.02342654950916767, -0.032130613923072815, 0.011714523658156395, 0.008965621702373028, -0.02413095533847809, 0.010502560995519161, 0.02429790608584881, 0.04070774093270302, -0.015840666368603706, -0.022999143227934837, 0.017721885815262794, 0.060857709497213364, -0.008717498742043972, -0.00806502252817154, -0.0008860352681949735, 7.933052113238648e-33, -0.032032161951065063, -0.02440253272652626, 0.007058215793222189, 0.01950143091380596, -0.009987600147724152, -0.013164825737476349, 0.05801000818610191, -0.011632871814072132, 0.007909356616437435, 0.05055861547589302, -0.021455736830830574, 0.018692338839173317, 0.018520455807447433, 0.039039578288793564, 0.04257424920797348, -0.04160561040043831, 0.0005950831691734493, 0.016656916588544846, 0.017393646761775017, 0.01699782721698284, 0.016307352110743523, -0.009065475314855576, -0.007902289740741253, 0.01871725730597973, 0.035334303975105286, 0.029030805453658104, -0.0038176407106220722, 0.022447440773248672, -0.0065322392620146275, -0.007458533626049757, 0.02887706272304058, -0.03143778070807457, 0.02727333828806877, -0.033907368779182434, 0.009017874486744404, 0.016212455928325653, -0.012859197333455086, 0.03010089509189129, -0.003553591901436448, 0.023047588765621185, 0.006521164905279875, -0.03465937823057175, -0.009850993752479553, 0.01189697626978159, -0.0057121943682432175, -0.01961132325232029, 0.02261519432067871, -0.0066389841958880424, 0.023006953299045563, 0.02391052432358265, 0.010984156280755997, -0.008796745911240578, 0.020595358684659004, 0.011308718472719193, -0.007069136016070843, -0.014101263135671616, -0.02331099659204483, 0.018609413877129555, -0.021415377035737038, -0.03885359317064285, -0.0034141354262828827, -0.019603127613663673, -0.007501727435737848, 0.017580192536115646, -0.013356172479689121, -0.022693635895848274, -0.04854932799935341, -0.06831464916467667, -0.03727211058139801, 0.027555881068110466, -0.024069886654615402, -0.020754357799887657, -0.010495372116565704, 0.008176790550351143, -0.011014396324753761, -0.02427278645336628, -0.023185286670923233, -0.0008188355714082718, 0.02861849032342434, 0.025332452729344368, 0.005675697233527899, -0.006353696808218956, 0.03810042142868042, 0.008833480067551136, 0.015829920768737793, 0.0037497770972549915, 0.03386276215314865, 0.053900349885225296, 0.01858321763575077, 0.0015501941088587046, 0.0010736128315329552, -0.019380923360586166, -0.05048448592424393, 0.012867205776274204, -0.014244399033486843, -1.3009345600778488e-8, -0.014410491101443768, -0.030619585886597633, -0.030290545895695686, 0.034082259982824326, 0.013670124113559723, 0.02019691839814186, 0.0005020296666771173, -0.011379485949873924, -0.0028610583394765854, -0.01063979510217905, -0.0043966812081635, -0.0007298527634702623, -0.002579198218882084, -0.021298449486494064, 0.021990828216075897, -0.03158682957291603, 0.03624505549669266, -0.018860887736082077, 0.031987641006708145, -0.020558174699544907, -0.0171610489487648, 0.017079735174775124, -0.0005725888186134398, -0.017068536952137947, -0.021113768219947815, -0.019489621743559837, 0.052339475601911545, -0.08986671268939972, 0.004356385208666325, -0.011182171292603016, 0.013118821196258068, -0.04578237608075142, 0.0015801823465153575, 0.013182246126234531, -0.025464948266744614, -0.03220745548605919, -0.001743472646921873, 0.03908324986696243, 0.0439961701631546, -0.005022768396884203, -0.022878387942910194, 0.01808685064315796, -0.00609932467341423, -0.028459304943680763, -0.03132166713476181, 0.004743798635900021, -0.01032839436084032, 0.007552810478955507, 0.04556583613157272, -0.013449626043438911, 0.031202416867017746, -0.0135316988453269, 0.039628151804208755, -0.00427196454256773, 0.06301198154687881, 0.027470577508211136, 0.02148480713367462, -0.02780884876847267, 0.004527544602751732, 0.011708797886967659, 0.004989117383956909, 0.01595204696059227, -0.022279582917690277, -0.03329787030816078 ]
haskell-a-cleaner-way-of-initialising-a-map
https://markhneedham.com/blog/2012/12/29/haskell-a-cleaner-way-of-initialising-a-map
false
2012-12-29 17:49:46
Sed: Replacing characters with a new line
[ "sed" ]
[ "Shell Scripting" ]
I've been playing around with writing some algorithms in both Ruby and Haskell and the latter wasn't giving the correct result so I wanted to output an intermediate state of the two programs and compare them. I didn't do any fancy formatting of the output from either program so I had the raw data structures in text files which I needed to transform so that they were comparable. The main thing I wanted to do was get each of the elements of the collection onto their own line. The output of one of the programs looked like this: [source,text] ---- [(1,2), (3,4)…] ---- To get each of the elements onto a new line my first step was to replace every occurrence of ', (' with '\n('. I initially tried using +++<cite>+++sed+++</cite>+++ to do that: [source,text] ---- sed -E -e 's/, \(/\\n(/g' ruby_union.txt ---- All that did was insert the string value '\n' rather than the new line character. I've come across similar problems before and I usually just use +++<cite>+++tr+++</cite>+++ but in this case it doesn't work very well because we're replacing more than just a single character. I came across http://www.linuxquestions.org/questions/linux-software-2/sed-insert-a-newline-why-does-not-it-work-158806/[this thread] on Linux Questions which gives a couple of ways that we can get see to do what we want. The first suggestion is that we should use a back slash followed by the enter key while writing our sed expression where we want the new line to be and then continue writing the rest of the expression. We therefore end up with the following: [source,text] ---- sed -E -e "s/,\(/\ /g" ruby_union.txt ---- This approach works but it's a bit annoying as you need to delete the rest of the expression so that the enter works correctly. An alternative is to make use of +++<cite>+++echo+++</cite>+++ with the '-e' flag which allows us to output a new line. Usually http://linux.about.com/library/cmd/blcmdl1_echo.htm[backslashed characters aren't interpreted] and so you end up with a literal representation. e.g. [source,text] ---- $ echo "mark\r\nneedham" mark\r\nneedham $ echo -e "mark\r\nneedham" mark needham ---- We therefore end up with this:~~~ ~~~text sed -E -e "s/, \(/\\`echo -e '\n\r'`/g" ruby_union.txt ~~~ ** Update ** It was pointed out in the comments that this final version of the sed statement doesn't actually lead to a very nice output which is because I left out the other commands I passed to it which get rid of extra brackets. The following gives a cleaner output: ~~~text $ echo "[(1,2), (3,4), (5,6)]" | sed -E -e "s/, \(/\\`echo -e '\n\r'`/g" -e 's/\[|]|\)|\(//g' 1,2 3,4 5,6 ~~~
null
null
[ 0.0017082779668271542, 0.020325280725955963, -0.04429803788661957, 0.035376761108636856, 0.08021634817123413, 0.03932031989097595, 0.03180726617574692, 0.03945808485150337, 0.035261183977127075, -0.02154388278722763, -0.02533869817852974, 0.0012144678039476275, -0.07026243209838867, -0.0013339114375412464, -0.0031626715790480375, 0.06592965126037598, 0.0464688241481781, -0.01876281574368477, 0.0027011707425117493, 0.004716747906059027, 0.016762642189860344, 0.05166778713464737, 0.02739107795059681, 0.005247742403298616, 0.033658042550086975, -0.02481982111930847, -0.024234376847743988, -0.007542907726019621, -0.0564420148730278, 0.03450831025838852, 0.04224793612957001, -0.0012954348931089044, -0.011937315575778484, -0.01643022522330284, 0.0382399708032608, 0.004445922560989857, -0.019743863493204117, 0.002696653828024864, 0.01722640171647072, 0.020352648571133614, -0.054366353899240494, 0.021517757326364517, -0.03909085690975189, -0.0012021999573335052, -0.04551731050014496, -0.00944445189088583, -0.04773235321044922, 0.0029265237972140312, -0.023898687213659286, 0.023868568241596222, -0.06689786165952682, 0.008059302344918251, 0.007454154547303915, -0.03807101771235466, 0.007911830209195614, 0.048830702900886536, 0.022739306092262268, -0.05683426558971405, 0.020273558795452118, -0.010740919969975948, 0.002301568631082773, 0.0017703535268083215, -0.0011114934459328651, 0.051104962825775146, 0.002438921481370926, -0.03198430314660072, -0.01644769497215748, 0.028243770822882652, -0.06570906192064285, -0.013425451703369617, 0.00010403826308902353, 0.013217555359005928, -0.04468144103884697, -0.02231653220951557, 0.05198280140757561, -0.02785400301218033, 0.0040068794041872025, 0.07131648063659668, 0.020553594455122948, 0.058189280331134796, -0.02929992601275444, 0.0491003692150116, 0.019689422100782394, 0.007590380497276783, 0.03557287156581879, -0.02550632506608963, -0.030846625566482544, -0.014678382314741611, -0.05205044522881508, 0.05184173211455345, 0.01118200272321701, -0.05583830922842026, -0.007039498072117567, 0.01599710062146187, -0.01869257353246212, 0.016852136701345444, -0.02120649255812168, 0.01733841933310032, -0.012207355350255966, 0.01001550443470478, -0.03740245848894119, -0.03314613923430443, 0.033982474356889725, 0.0038573062047362328, -0.07294875383377075, -0.010196181945502758, -0.025424661114811897, -0.0016891241539269686, 0.02989928051829338, -0.017747782170772552, -0.016080746427178383, -0.018891019746661186, -0.03063727542757988, -0.006665260065346956, -0.08116943389177322, 0.06329077482223511, 0.009989188984036446, -0.030177030712366104, -0.010131053626537323, 0.017900375649333, 0.02566412277519703, 0.026600753888487816, 0.012398168444633484, 0.08172298222780228, 0.026724811643362045, 0.04010699316859245, -0.00783673208206892, 0.048186011612415314, -0.05373179540038109, -0.08624441921710968, -0.03268684074282646, 0.07773095369338989, -0.008171409368515015, 0.007636694703251123, -0.003569287247955799, -0.00316451583057642, -0.022615721449255943, -0.01684628613293171, 0.058654218912124634, 0.047671135514974594, -0.0029264776967465878, -0.03178685903549194, -0.01418559905141592, -0.03824275732040405, 0.02702450007200241, -0.00621979683637619, -0.024697057902812958, -0.01048501767218113, -0.009703022427856922, 0.028445852920413017, 0.0169488787651062, 0.015822703018784523, 0.053309984505176544, -0.0017992196371778846, 0.015439923852682114, 0.07644470781087875, 0.009445497766137123, 0.035637229681015015, -0.03025466948747635, -0.0004447882529348135, 0.0350140742957592, 0.047492701560258865, 0.018587680533528328, 0.034088678658008575, 0.015840690582990646, -0.013008615002036095, -0.020183078944683075, 0.00999511405825615, -0.03425057232379913, -0.012172897346317768, -0.03236761689186096, -0.019859980791807175, 0.057332344353199005, -0.04877369850873947, 0.028015881776809692, 0.0055159940384328365, 0.08005253970623016, 0.04668278619647026, 0.05890941619873047, -0.005577228032052517, -0.08956224471330643, 0.03469076007604599, -0.022405056282877922, 0.04360603913664818, 0.01674111746251583, -0.005183363799005747, 0.06755942106246948, 0.029433149844408035, 0.024158436805009842, 0.0016427182126790285, -0.10207080096006393, -0.08019120991230011, 0.006972965318709612, -0.018079625442624092, 0.07794705778360367, -0.03301335871219635, -0.027339255437254906, 0.024663619697093964, -0.023179130628705025, 0.03366785869002342, -0.006417624652385712, -0.013864781707525253, 0.024214327335357666, -0.06525503844022751, -0.04390847310423851, 0.03319823741912842, 0.04152387008070946, -0.03184979408979416, -0.055398110300302505, 0.0010257973335683346, -0.012376535683870316, 0.013566293753683567, 0.033098578453063965, -0.012410684488713741, 0.05442149564623833, 0.039044566452503204, 0.017313092947006226, -0.03163760527968407, 0.035793237388134, -0.0506289079785347, 0.022064417600631714, 0.022678809240460396, -0.006705393083393574, -0.026794930920004845, -0.0022011934779584408, 0.12653742730617523, 0.0529358796775341, -0.010600825771689415, -0.042079269886016846, 0.00933081191033125, 0.003350772662088275, -0.06197819858789444, 0.011725852265954018, 0.008493546396493912, -0.02219582349061966, 0.009082647040486336, -0.0330217108130455, -0.01542149018496275, 0.026832735165953636, -0.030866945162415504, -0.02666718140244484, 0.08157827705144882, -0.030166273936629295, 0.04906679689884186, 0.005960437934845686, -0.01673620007932186, 0.027889877557754517, -0.05061817914247513, -0.07229264825582504, 0.011849604547023773, 0.013935049995779991, 0.0003467041824478656, 0.051241107285022736, -0.054181285202503204, -0.030453654006123543, -0.01377559918910265, -0.0480918362736702, 0.016459284350275993, 0.04326559230685234, 0.04346660524606705, -0.035186365246772766, 0.03907753899693489, -0.029822316020727158, -0.01193108782172203, -0.023930389434099197, -0.04409893602132797, -0.03893711790442467, -0.0021268159616738558, -0.020050648599863052, 0.009919475764036179, -0.004705183673650026, 0.02545967698097229, 0.014717614278197289, -0.010922648012638092, 0.010194098576903343, 0.002558282343670726, 0.0371236652135849, -0.03600899502635002, -0.027792660519480705, -0.02668602019548416, -0.006868965923786163, 0.05880676209926605, -0.054359011352062225, -0.031527698040008545, -0.013459816575050354, -0.03576938062906265, 0.06720849871635437, -0.04802091792225838, -0.04743044078350067, -0.019573569297790527, 0.003265951992943883, 0.032481543719768524, -0.048762246966362, 0.0029399003833532333, 0.06916409730911255, 0.04194485768675804, 0.04562881216406822, 0.02345229871571064, 0.030880393460392952, 0.02643759362399578, 0.008085898123681545, 0.023127883672714233, 0.050994522869586945, 0.0026879797223955393, -0.025865919888019562, -0.048688314855098724, -0.012874916195869446, -0.011583524756133556, -0.2764299809932709, 0.02563096396625042, -0.06283442676067352, -0.039532002061605453, 0.03436118736863136, -0.03858468309044838, 0.011883953586220741, -0.03848422318696976, -0.004237509332597256, 0.025180550292134285, -0.04639264568686485, -0.020483482629060745, -0.03288010135293007, 0.042867355048656464, 0.012978953309357166, 0.019756296649575233, 0.027521703392267227, -0.041957512497901917, -0.015173071064054966, 0.04963867738842964, 0.02870662324130535, -0.05122726783156395, 0.013715114444494247, 0.06701938807964325, 0.038883741945028305, 0.049794092774391174, -0.07548072189092636, 0.05084793269634247, -0.03605478256940842, -0.046130433678627014, 0.010642509907484055, -0.03716770559549332, 0.012394540943205357, -0.025093087926506996, -0.01886860653758049, -0.02997790463268757, 0.03516457602381706, 0.01819775067269802, 0.04188191890716553, 0.04667079076170921, -0.03518666699528694, -0.04114578291773796, 0.000053381940233521163, -0.03577231988310814, 0.06555912643671036, -0.024118173867464066, -0.03245053067803383, -0.01581621915102005, -0.029529118910431862, 0.09268999099731445, -0.027497101575136185, -0.025135235860943794, 0.0018588989041745663, 0.03271544352173805, 0.0026928021106868982, -0.004635846242308617, -0.020308302715420723, -0.004512529820203781, -0.0320441871881485, -0.019932137802243233, -0.008685675449669361, -0.07306255400180817, -0.0026537184603512287, -0.05221093073487282, -0.02243742346763611, -0.04556337371468544, -0.06663873791694641, 0.011645114049315453, 0.07355086505413055, 0.046661775559186935, -0.007481455337256193, 0.01886649802327156, -0.026980223134160042, -0.09551635384559631, -0.02211828902363777, -0.005295129027217627, -0.022351648658514023, -0.0302776787430048, -0.0004600807442329824, 0.03299626708030701, -0.05366601422429085, -0.047653231769800186, 0.023311469703912735, 0.013446261174976826, 0.027055660262703896, -0.025223180651664734, -0.006741521880030632, -0.03397762030363083, -0.018764371052384377, -0.016057860106229782, 0.06092049181461334, -0.04904724285006523, -0.032178085297346115, -0.01565069705247879, 0.018871359527111053, 0.029321547597646713, 0.051839567720890045, -0.00020131640485487878, 0.028764111921191216, 0.013512792997062206, 0.038764093071222305, -0.04036001116037369, 0.03775562345981598, -0.044176820665597916, -0.009199969470500946, 0.012764482758939266, -0.06857319176197052, 0.04078470170497894, 0.02649332769215107, 0.0036802999675273895, -0.045061785727739334, -0.0591869130730629, 0.014409535564482212, -0.05090447887778282, -0.03676430881023407, 0.0022686205338686705, 0.027490083128213882, 0.010029936209321022, 0.020068146288394928, 0.0011341845383867621, -0.03765126317739487, -0.012231839820742607, 0.015330362133681774, -0.03473164513707161, -0.04844675958156586, -0.025554543361067772, -0.002631911775097251, -0.0004598853411152959, 0.0013290930073708296, 0.03218156844377518, -0.023358138278126717, 0.0003044427721761167, 0.02520117349922657, -0.024624314159154892, 0.036704231053590775, 0.015314876101911068, -0.03226640075445175, -0.013340912759304047, -0.03794379532337189, -0.0008179393480531871, 0.010980624705553055, -0.004188230726867914, -0.0008713530260138214, 0.038834501057863235, 0.04661605879664421, 0.0019779023714363575, 0.042843639850616455, -0.007502147927880287, 0.017390647903084755, 0.019526243209838867, -0.018405551090836525, -0.043353453278541565, -0.0010417965240776539, -0.015402201563119888, -0.010217267088592052, -0.019569626078009605, 0.034179117530584335, -0.025928804650902748, -0.03051057644188404, -0.027129871770739555, 0.022754892706871033, -0.03291283920407295, 0.009071112610399723, -0.008282310329377651, -0.013955734670162201, 0.05503222346305847, -0.01692940667271614, 0.032202184200286865, -0.009830106049776077, 0.015187920071184635, -0.003414504462853074, 0.0465092733502388, -0.03332178294658661, 0.010235360823571682, 0.005730720236897469, -0.026691943407058716, 0.02357601374387741, 0.024391241371631622, 0.04577714577317238, 0.012846901081502438, 0.007976572960615158, -0.015915215015411377, 0.017011430114507675, 0.018050646409392357, 0.05623128265142441, 0.019648542627692223, 0.0006948007503524423, 0.02782932110130787, -0.03286225348711014, -0.042307768017053604, -0.011000528931617737, -0.020568380132317543, -0.03958248719573021, 0.0084791649132967, -0.05453827977180481, -0.07300709187984467, 0.007113328669220209, 0.03043205477297306, 0.012861342169344425, 0.019098596647381783, 0.02087412029504776, -0.016614094376564026, -0.026402346789836884, 0.0024737019557505846, 0.06544928252696991, -0.05779782310128212, -0.023031936958432198, -0.017054593190550804, -0.00884727481752634, 0.00012698986392933875, 0.03394987806677818, -0.0553692951798439, -0.006381305865943432, -0.00042531179497018456, 0.010463877581059933, -0.005886480212211609, -0.022496448829770088, -0.046411577612161636, -0.01708954945206642, -0.019929422065615654, -0.004666426684707403, -0.0016366620548069477, 0.02754400670528412, 0.005443958565592766, -0.03172341361641884, -0.015171411447227001, -0.028703926131129265, -0.032278046011924744, 0.03185126930475235, -0.004538041073828936, 0.05497579649090767, -0.028573142364621162, 0.0686882883310318, 0.03782197833061218, 0.011946780607104301, -0.009755214676260948, -0.037595950067043304, -0.004295217804610729, -0.028621740639209747, 0.061239130795001984, 0.012306111864745617, -0.01796410046517849, -0.026630010455846786, -0.0008333115256391466, -0.053898248821496964, -0.006276084575802088, 0.003358161775395274, -0.026053009554743767, -0.015939977020025253, 0.05314354971051216, 0.00520640704780817, 0.05345472693443298, 0.0010944852838292718, -0.033660490065813065, 0.038055419921875, -0.04592646658420563, -0.027989594265818596, -0.005820630583912134, -0.07175922393798828, 0.04416242614388466, 0.027362341061234474, 0.04449252411723137, -0.0522284097969532, 0.025811588391661644, 0.0622917078435421, 0.02993742749094963, 0.025582358241081238, -0.02073572762310505, 0.04796751216053963, -0.024532277137041092, -0.0034254242200404406, -0.09653528779745102, 0.01001630537211895, 0.04821544513106346, -0.006794882472604513, -0.030061647295951843, -0.029397541657090187, -0.03167138248682022, 0.019590407609939575, -0.028124909847974777, -0.02447718009352684, 0.04356244206428528, -0.0012179410550743341, 0.02330903522670269, 0.02584550715982914, -0.052690111100673676, 0.034535571932792664, 0.027017587795853615, -0.01650453917682171, -0.022595953196287155, -0.031097406521439552, 0.04453543201088905, -0.016331728547811508, 0.048199497163295746, -0.011554243043065071, -0.024838654324412346, 0.05316122993826866, 0.037874992936849594, 0.0002655535645317286, 0.04599757492542267, -0.032595399767160416, 0.009276808239519596, 0.0090252123773098, 0.007549205794930458, 0.01667831838130951, 0.031258344650268555, -0.03285777196288109, -0.020118417218327522, 0.016792377457022667, 0.006788110360503197, 0.01957244612276554, -0.02181060239672661, 0.06753858923912048, 0.030273372307419777, -0.03212350979447365, -0.07677055150270462, 0.03291519731283188, -0.03514854982495308, 0.01612127386033535, -0.03298621624708176, 0.0018311418825760484, -0.06708619743585587, 0.0501808263361454, 0.019286639988422394, -0.016615958884358406, 0.06776783615350723, 0.01307077519595623, -0.019333066418766975, 0.0028321181889623404, 0.09525762498378754, 0.08596191555261612, 0.05766946077346802, 0.00801257137209177, 0.05412999168038368, -0.03308004140853882, -0.05070996284484863, 0.0201251320540905, -0.008666899055242538, 0.016187885776162148, 0.004530442412942648, 0.012608380056917667, 0.07329019904136658, -0.035052113234996796, 0.06298977881669998, -0.007927088998258114, 0.015342919155955315, -0.007364149205386639, 0.00776876974850893, 0.031444527208805084, 0.048976339399814606, 0.030301319435238838, 0.04028075560927391, -0.0030667432583868504, -0.028009554371237755, 0.034256480634212494, -0.012982487678527832, -0.007104645017534494, -0.001402737107127905, -0.0033095036633312702, 0.013906523585319519, 0.015888242051005363, 0.04225573688745499, 0.08405660092830658, -0.040005650371313095, -0.019098469987511635, -0.011596783995628357, 0.02904411219060421, -0.02644507959485054, 0.010283640585839748, -0.04098500683903694, -0.042122334241867065, -0.03786667436361313, -0.030093515291810036, -0.02892085164785385, 0.008446509949862957, -0.030631594359874725, 0.026743054389953613, -0.01534295454621315, 0.0038026231341063976, 0.03663744404911995, -0.004867731127887964, -0.020397068932652473, -0.039033934473991394, -0.04808918014168739, -0.05873090401291847, -0.04724596440792084, 0.015139500610530376, -0.020761895924806595, 0.016306467354297638, -0.04274973273277283, -0.02165130153298378, -0.03916576877236366, -0.02394750714302063, 0.007538735866546631, -0.040482308715581894, -0.01451103575527668, -0.014412463642656803, 0.0333549864590168, 0.008794090710580349, 0.03804900869727135, 0.044378552585840225, -0.007046278566122055, 0.010052131488919258, 0.0054643056355416775, -0.011966312304139137, 0.05061248317360878, 0.03642650693655014, -0.004879300016909838, -0.09030904620885849, 0.033382829278707504, 0.017129646614193916, 0.025598397478461266, -0.06703638285398483, 0.009278208948671818, 0.0029941899701952934, -0.029134368523955345, 0.026031682267785072, -0.021732453256845474, 0.005743875168263912, -0.00460837222635746, -0.004062864929437637, 0.00469006085768342, 0.02338312938809395, 0.03293256834149361, -0.013624327257275581, 0.0897083729505539, 0.011689083650708199, 0.0006341993575915694, -0.026850789785385132, -0.02305823378264904, 0.001673633698374033, 0.00623831432312727, -0.01797613687813282, -0.021734677255153656, -0.047911882400512695, -0.05398363620042801, -0.03187870606780052, -0.014045307412743568, -0.03819733113050461, -0.04224497452378273, 0.011019980534911156, 0.042246706783771515, -0.05716366320848465, 0.07829263806343079, -0.035417355597019196, 0.013406970538198948, -0.026295319199562073, -0.02947307750582695, 0.002588858362287283, 0.018855810165405273, 0.0017255556304007769, 0.01466204971075058, 0.01956450194120407, -0.005396009422838688, -0.014553144574165344, -0.02037489414215088, 0.03530639782547951, 0.013326548039913177, 0.0031630643643438816, 0.018659725785255432 ]
[ -0.10851684212684631, -0.008917641825973988, -0.026366541162133217, 0.0017413983587175608, 0.015613636001944542, -0.09737155586481094, -0.02898639626801014, 0.017636263743042946, 0.011242583394050598, -0.03329649567604065, -0.008003133349120617, -0.03166908025741577, 0.016437888145446777, -0.0577009879052639, 0.05534067377448082, -0.025942763313651085, -0.022849638015031815, -0.017292410135269165, -0.045171622186899185, 0.07179234176874161, 0.004593054763972759, -0.020002756267786026, -0.007691424340009689, -0.04443048685789108, 0.02280249260365963, 0.058753445744514465, 0.015221375040709972, -0.015601870603859425, -0.002718929201364517, -0.2298581749200821, 0.014374995604157448, 0.02647281624376774, 0.037167321890592575, -0.019518626853823662, -0.01716281846165657, 0.05107446387410164, 0.029053155332803726, -0.01813930831849575, 0.01567535102367401, 0.07379548251628876, 0.033837396651506424, 0.013105420395731926, -0.0641324371099472, -0.0005941605195403099, -0.0046946220099925995, 0.02489859238266945, -0.02498185820877552, -0.032403670251369476, 0.016661418601870537, 0.029304686933755875, -0.07074113935232162, 0.019543804228305817, 0.0183248333632946, -0.024921840056777, 0.005881805904209614, 0.02157673053443432, 0.05173491686582565, 0.08076781034469604, -0.00010724314779508859, -0.005592965055257082, 0.006931998301297426, 0.010123414918780327, -0.15095189213752747, 0.08682093769311905, 0.04307971149682999, 0.03982679918408394, -0.03341684490442276, -0.03240024670958519, -0.04833263158798218, 0.10199438035488129, -0.030049150809645653, -0.025032583624124527, -0.059815142303705215, 0.07244983315467834, -0.014092865400016308, -0.019512968137860298, -0.0005941415438428521, -0.011245564557611942, 0.04529869556427002, -0.033816754817962646, -0.07209647446870804, -0.044122517108917236, -0.027065075933933258, -0.007608231157064438, -0.024745799601078033, 0.02335882931947708, -0.03196917474269867, 0.07368198037147522, 0.041921697556972504, 0.010516561567783356, 0.02865733578801155, -0.02841792069375515, 0.00252326438203454, 0.04495298117399216, -0.06597567349672318, -0.013919773511588573, 0.006954249460250139, 0.019998053088784218, -0.006737155374139547, 0.428117960691452, -0.022189516574144363, -0.01960819587111473, 0.0282406285405159, 0.0030619821045547724, -0.0033254451118409634, 0.00013395427959039807, -0.012293592095375061, -0.03742750361561775, -0.019136695191264153, -0.05692312866449356, 0.0049178567714989185, -0.023559534922242165, 0.07084228843450546, -0.07395943254232407, 0.02504616789519787, 0.02141355164349079, 0.06842038035392761, 0.023454615846276283, -0.001573118381202221, 0.0031848105136305094, -0.034769732505083084, 0.025998272001743317, -0.009074087254703045, 0.011740651912987232, 0.000559155480004847, 0.0008223957265727222, 0.039587851613759995, 0.062059056013822556, 0.024226374924182892, 0.055894479155540466, 0.0553152970969677, -0.027414916083216667, -0.06995839625597, -0.011759113520383835, -0.047120727598667145, 0.04999170079827309, 0.04202099144458771, -0.035990841686725616, -0.009028520435094833, 0.015890875831246376, 0.00018936151172965765, -0.05061550810933113, -0.006459340453147888, 0.014682534150779247, 0.002841966925188899, 0.09069577604532242, -0.04850117862224579, -0.03234894946217537, -0.03325687348842621, -0.051302533596754074, -0.038956090807914734, 0.02085600420832634, -0.01922680251300335, -0.042208749800920486, -0.018102208152413368, 0.014328619465231895, 0.04663112014532089, -0.038231611251831055, -0.040752943605184555, 0.014170204289257526, -0.031307194381952286, -0.04696041718125343, -0.04156075790524483, 0.05613221600651741, 0.03699171170592308, -0.06102026253938675, -0.032525621354579926, 0.005182172171771526, 0.027735387906432152, -0.07831600308418274, 0.020200125873088837, -0.01117403618991375, -0.019613120704889297, 0.004541782196611166, 0.03711821511387825, -0.026737747713923454, -0.005029612686485052, -0.006657878402620554, 0.04450811445713043, 0.02349407970905304, 0.03209338337182999, 0.03269074857234955, -0.04288220405578613, 0.010175973176956177, -0.04407008737325668, -0.07093429565429688, -0.1114555150270462, 0.01092991977930069, -0.02504226751625538, 0.017911599949002266, -0.023004205897450447, 0.012813935987651348, -0.0683450922369957, 0.03170870989561081, -0.010320599190890789, -0.000167575926752761, 0.04203617200255394, -0.0039571127854287624, -0.030471421778202057, 0.007642805110663176, 0.008093864656984806, 0.05939191207289696, 0.015545256435871124, -0.0020273118279874325, -0.075991190969944, -0.021305562928318977, 0.04955152049660683, -0.04073961079120636, 0.051349155604839325, -0.005335694178938866, -0.024211948737502098, 0.0155026875436306, -0.02256797067821026, 0.05066606402397156, -0.023838037624955177, -0.041141290217638016, -0.005512215197086334, -0.022249441593885422, 0.041641127318143845, 0.03798070549964905, -0.02178427204489708, -0.08308550715446472, -0.009809828363358974, -0.3451976180076599, -0.02089838497340679, 0.019097724929451942, -0.010811233893036842, 0.03290386497974396, -0.07856355607509613, 0.009048549458384514, -0.01964438334107399, -0.030429430305957794, 0.05652058869600296, 0.04978252947330475, -0.0011605467880144715, -0.002918264828622341, -0.08109476417303085, -0.01731121726334095, 0.046112265437841415, -0.023183919489383698, -0.01808069460093975, -0.0024925153702497482, 0.0637303963303566, -0.021755779162049294, -0.04494759812951088, 0.0027346962597221136, -0.048061639070510864, 0.010841134004294872, -0.04023353382945061, 0.10165435075759888, 0.027585167437791824, 0.06005168706178665, -0.05416189879179001, 0.02472102828323841, 0.004775968845933676, -0.007367169484496117, -0.058476392179727554, -0.027938123792409897, -0.015507250092923641, -0.004148848820477724, 0.028926463797688484, 0.046051833778619766, -0.019610712304711342, -0.0026923378463834524, -0.00540234474465251, -0.04646710306406021, -0.00611265329644084, 0.01795247569680214, 0.012352409772574902, -0.002534526400268078, -0.0873299241065979, 0.004213571548461914, 0.08120505511760712, 0.03692250698804855, 0.026853561401367188, 0.030228234827518463, -0.0048211002722382545, -0.006236190441995859, -0.009745719842612743, -0.06805211305618286, -0.02975710667669773, 0.016567740589380264, -0.055945780128240585, 0.03351711854338646, 0.050179462879896164, 0.06130628660321236, -0.021023482084274292, -0.00370272109284997, -0.002479660790413618, 0.0042756060138344765, 0.01548057608306408, 0.00770688196644187, -0.0015955205308273435, -0.005268984008580446, 0.0600949227809906, 0.01925360970199108, 0.001890465966425836, 0.006655877456068993, 0.08337567746639252, -0.01580498181283474, 0.057353682816028595, 0.028814759105443954, 0.01509168278425932, 0.045935340225696564, -0.017379939556121826, 0.05740555003285408, 0.0075915055349469185, -0.0064757508225739, 0.06680230796337128, 0.015133890323340893, -0.00953782256692648, 0.06538841128349304, 0.019120661541819572, -0.02095695212483406, -0.01791936717927456, 0.0046910373494029045, -0.004934167489409447, 0.034552231431007385, 0.014824774116277695, -0.2505934238433838, 0.04214560240507126, 0.05276865139603615, 0.025039389729499817, 0.010722381994128227, 0.027735276147723198, 0.0357632040977478, -0.06136368587613106, -0.03832089900970459, -0.018869707360863686, 0.012421260587871075, 0.06784549355506897, -0.0021105920895934105, -0.033449091017246246, 0.02619985304772854, 0.0026461570523679256, 0.08517199009656906, 0.001632943982258439, -0.027822118252515793, 0.021799888461828232, -0.00854641292244196, 0.0048787775449454784, 0.17550280690193176, -0.005345992278307676, 0.014342562295496464, -0.009298672899603844, 0.007305481005460024, 0.020864412188529968, 0.06723256409168243, 0.04106556996703148, 0.011934791691601276, 0.0009290814632549882, 0.048927392810583115, 0.01277458667755127, 0.03207598626613617, -0.005597629118710756, -0.007504263427108526, 0.028387228026986122, 0.017980623990297318, -0.04077508673071861, -0.035214804112911224, 0.03486194834113121, -0.03621213510632515, 0.03780754655599594, 0.04733245074748993, -0.008268695324659348, -0.010883658193051815, -0.025534428656101227, -0.047249116003513336, 0.028427310287952423, -0.02214638516306877, -0.009842043742537498, -0.014171330258250237, 0.0033775288611650467, 0.01895623281598091, 0.0470501072704792, -0.0349019430577755, -0.027572011575102806, -0.013661257922649384, 0.02167120762169361, -0.02177576534450054, -0.018996380269527435, 0.08909321576356888, 0.024204453453421593, 0.02269170992076397 ]
[ -0.03917863592505455, 0.008774478919804096, -0.03649453818798065, 0.03828250616788864, -0.027645941823720932, -0.013407431542873383, -0.03990759328007698, 0.026581209152936935, -0.04790084809064865, -0.01721162348985672, -0.04653820022940636, -0.007157956250011921, 0.025095133110880852, -0.05433831736445427, -0.009001623839139938, 0.014323835261166096, 0.007489968556910753, -0.000399317272240296, 0.03038380667567253, -0.04479734227061272, -0.022097524255514145, 0.04143575578927994, 0.021138643845915794, 0.03082946687936783, 0.012898019514977932, 0.029604973271489143, -0.028124716132879257, -0.013318467885255814, 0.00881471112370491, -0.1225636899471283, -0.036754060536623, -0.00783560797572136, 0.019868366420269012, 0.014458336867392063, -0.00803134124726057, 0.02831057459115982, 0.021862145513296127, 0.027835605666041374, -0.011486568488180637, -0.008256611414253712, -0.018405402079224586, -0.006746297236531973, -0.012157222256064415, 0.008195516653358936, 0.010865236632525921, -0.003756751073524356, -0.01829838752746582, 0.0044897389598190784, 0.01534962560981512, -0.02422315441071987, -0.037584248930215836, 0.01720436103641987, 0.026057066395878792, 0.0008769563282839954, 0.0041193775832653046, -0.021204154938459396, 0.030612511560320854, -0.06586956977844238, -0.023028764873743057, -0.012307732366025448, -0.015295112505555153, 0.019481966271996498, -0.05626125633716583, -0.012937183491885662, -0.020860757678747177, -0.006111168768256903, -0.025418097153306007, 0.024341445416212082, -0.0058380840346217155, -0.017561400309205055, -0.023321645334362984, 0.003627950791269541, -0.07837513834238052, -0.01692894659936428, -0.010097717866301537, 0.012204006314277649, 0.01784813217818737, -0.013613445684313774, 0.006706331390887499, -0.005144736263900995, -0.025772206485271454, -0.010096319019794464, 0.01652136631309986, 0.012890832498669624, -0.011246819980442524, 0.016429614275693893, -0.02190682664513588, 0.01046131644397974, -0.005250661168247461, -0.011049244552850723, 0.004344620741903782, 0.01709921658039093, 0.033781155943870544, 0.0038250957150012255, -0.04783082753419876, 0.007999439723789692, -0.0014902299735695124, 0.004016765858978033, 0.018162712454795837, 0.8226085901260376, 0.014537017792463303, 0.06629674881696701, 0.029934026300907135, -0.0035860943607985973, -0.032777756452560425, -0.01810675859451294, 0.022343195974826813, 0.02478810027241707, 0.017699548974633217, -0.06457051634788513, 0.08164939284324646, -0.05682157725095749, 0.04883040487766266, 0.011145481839776039, 0.016237739473581314, 0.04790258780121803, 0.0020251090172678232, 0.01595904491841793, -0.00024337420472875237, 0.03632551431655884, 0.03084404207766056, 0.0005465892027132213, -0.008089824579656124, 0.025651894509792328, 0.023362472653388977, -0.1736641526222229, 0.029891321435570717, -7.52564928113066e-33, 0.06224660575389862, -0.02772245928645134, -0.030228659510612488, 0.005697315558791161, -0.00432470440864563, 0.061053525656461716, -0.011385896243155003, -0.0043440889567136765, -0.02380344085395336, 0.00701088085770607, 0.03541873022913933, -0.011780323460698128, 0.002721626777201891, -0.010715351440012455, 0.034041617065668106, -0.0241969283670187, -0.010439706034958363, 0.025152625516057014, 0.007326514460146427, 0.026941007003188133, -0.0065209269523620605, 0.03255916386842728, -0.0031159950885921717, 0.01121013518422842, 0.020089056342840195, 0.033714596182107925, -0.006153183989226818, -0.029087286442518234, -0.0012351456098258495, -0.04546842351555824, -0.02062346041202545, 0.016443291679024696, 0.015726469457149506, -0.01960582844913006, 0.009745771996676922, -0.034947577863931656, -0.0040575782768428326, 0.00025897365412674844, 0.002788012847304344, -0.03076423518359661, -0.012248925864696503, 0.019894564524292946, -0.0033807451836764812, -0.02540576457977295, 0.04859483987092972, -0.01539861224591732, 0.009802793152630329, 0.04813901707530022, -0.011849632486701012, 0.03200557455420494, 0.04075278714299202, 0.04357759654521942, 0.011297491379082203, 0.010182837955653667, 0.005187884904444218, -0.004159904550760984, -0.0145716592669487, 0.031929630786180496, 0.01666140742599964, 0.05773646757006645, -0.007161905523389578, 0.05228288099169731, 0.003703019581735134, 0.04074840247631073, 0.01748075522482395, -0.02092782035470009, 0.00822292361408472, 0.020654330030083656, 0.00927456934005022, 0.05193179100751877, -0.031419865787029266, 0.0008284160285256803, -0.023009303957223892, 0.006527728866785765, 0.007136455737054348, -0.04244673252105713, -0.008950670249760151, -0.029679080471396446, 0.002398416632786393, 0.014854817651212215, 0.01622791588306427, -0.00741601875051856, -0.02693287283182144, -0.009512932039797306, -0.010151960887014866, 0.024679606780409813, 0.01855991967022419, -0.0188007615506649, -0.031026650220155716, -0.008061827160418034, 0.016264619305729866, 0.011909876950085163, 0.009072478860616684, -0.005571958143264055, 0.012193841859698296, 7.829342654769413e-33, 0.019295569509267807, -0.046115510165691376, 0.02410515770316124, 0.0229723509401083, 0.007959703914821148, -0.017671208828687668, 0.058678023517131805, -0.01563389226794243, -0.014147155918180943, 0.0527695007622242, 0.006884132511913776, 0.013524521142244339, -0.01850617118179798, -0.008642853237688541, 0.08165683597326279, -0.007351631764322519, 0.01261189579963684, -0.009205888956785202, 0.0056602079421281815, 0.005033879540860653, -0.004972973372787237, -0.0026614260859787464, 0.027516692876815796, 0.010021037422120571, 0.07505317777395248, 0.023779256269335747, -0.03447765111923218, 0.003927314653992653, 0.0009115667780861259, -0.021672045812010765, 0.025692829862236977, -0.012249861843883991, -0.0007480427739210427, -0.01331174187362194, -0.026071134954690933, 0.03976120427250862, 0.03585612028837204, -0.004586652386933565, 0.04226277768611908, -0.009133954532444477, 0.023887544870376587, 0.003309341147542, 0.011676688678562641, 0.009673413820564747, 0.017168449237942696, -0.0053537157364189625, -0.029669789597392082, 0.005702468566596508, 0.004799764137715101, -0.006913370452821255, -0.0031630112789571285, 0.003496216144412756, 0.0011976120295003057, -0.003410119330510497, 0.016689075157046318, -0.018574748188257217, -0.020494909957051277, 0.02163466438651085, -0.037679050117731094, -0.028636520728468895, -0.021848348900675774, 0.025105943903326988, -0.0032337571028620005, 0.026596909388899803, -0.0297605711966753, -0.04127408564090729, -0.021705254912376404, -0.02789236418902874, 0.01871969923377037, -0.014013915322721004, 0.006577353924512863, -0.030757680535316467, -0.02795116975903511, 0.038000911474227905, -0.01184119377285242, 0.020888036116957664, -0.022133031859993935, 0.012022703886032104, -0.03260887414216995, 0.030820846557617188, -0.0029269002843648195, 0.006780731957405806, 0.01792745664715767, 0.03970544785261154, 0.015514740720391273, 0.002478033071383834, -0.003991567064076662, 0.023442603647708893, 0.03392894193530083, 0.004190625157207251, -0.0063630761578679085, -0.027189990505576134, -0.008423750288784504, -0.03494506701827049, -0.021019650623202324, -1.2941732130400396e-8, 0.009339959360659122, -0.05479118227958679, -0.0552106536924839, 0.022852590307593346, 0.0265670083463192, 0.03731776028871536, -0.04394020512700081, -0.0423627533018589, -0.04095839709043503, 0.005110972560942173, 0.026033855974674225, 0.004885053262114525, -0.019784417003393173, 0.005567819811403751, 0.046463493257761, -0.016356559470295906, 0.02828964777290821, -0.056365858763456345, 0.008283832110464573, -0.021128837019205093, 0.015477702021598816, 0.022496312856674194, -0.028622165322303772, 0.01806098036468029, -0.0401945523917675, -0.021707890555262566, 0.02108304761350155, -0.07498554140329361, 0.011686819605529308, -0.004352137912064791, 0.05789228901267052, -0.03814001381397247, -0.012220051139593124, -0.012171986512839794, 0.02781560830771923, -0.06083320453763008, 0.02871796302497387, 0.027658263221383095, 0.02172655053436756, -0.010823607444763184, -0.018878625705838203, 0.012021882459521294, -0.016015341505408287, -0.040122032165527344, -0.04310648515820503, -0.08713540434837341, -0.031668633222579956, -0.018766548484563828, 0.014300446957349777, -0.01384598109871149, 0.019627097994089127, -0.03564184904098511, 0.03089154325425625, 0.02609369158744812, 0.03949601948261261, 0.01479162834584713, 0.019113272428512573, -0.06206328421831131, -0.030631519854068756, -0.017321301624178886, 0.009925365447998047, -0.018292570486664772, -0.013094882480800152, -0.023989953100681305 ]
sed-replacing-characters-with-a-new-line
https://markhneedham.com/blog/2012/12/29/sed-replacing-characters-with-a-new-line
false
2012-12-10 00:39:34
apt-get update: 416 Requested Range Not Satisfiable
[ "software-development" ]
[ "Software Development" ]
We were trying to run a puppet update on some machines last week and one of the first things it does is run 'apt-get update' which was working on all but one node for which it was returning the following exception: [source,text] ---- Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ i386 Packages 416 Requested Range Not Satisfiable Fetched 5,079B in 2s (2,296B/s) W: Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/dists/maverick-updates/main/binary-i386/Packages.gz 416 Requested Range Not Satisfiable ---- It turns out one way that exception can manifest is if you've got a partial copy of the index files from the repository and in this case the solution was https://bugs.launchpad.net/ubuntu/+source/apt/+bug/798023[as simple as deleting those and trying again]: [source,text] ---- sudo rm -rf /var/lib/apt/lists/partial/* ---- Running 'apt-get update' again after that worked perfectly and the world was a happy place again.
null
null
[ -0.009598011150956154, -0.031139688566327095, -0.01871885173022747, 0.0451604463160038, 0.1061168760061264, 0.0249067060649395, 0.010450261645019054, 0.030987808480858803, 0.0007049106643535197, -0.006237077992409468, -0.03291919082403183, 0.023502439260482788, -0.06664576381444931, 0.02724289707839489, -0.037713970988988876, 0.06249076873064041, 0.07348538190126419, 0.009931717999279499, -0.009299071505665779, 0.011414741165935993, 0.02963193692266941, 0.049767713993787766, -0.02260356955230236, 0.03142682835459709, 0.004268005024641752, -0.009141353890299797, 0.005901324097067118, -0.017147265374660492, -0.07923132181167603, -0.01929735578596592, 0.014456250704824924, 0.023542141541838646, 0.019056538119912148, -0.023243458941578865, 0.008643890731036663, 0.017648322507739067, -0.039511434733867645, 0.02443567104637623, -0.0003563711070455611, 0.0115983746945858, -0.03499090299010277, 0.026155145838856697, -0.0029102095868438482, 0.016137298196554184, -0.02863890305161476, 0.046788185834884644, -0.021896187216043472, 0.01781797595322132, -0.0026683276519179344, -0.026007257401943207, -0.04879458621144295, 0.049831822514534, -0.02122844196856022, -0.04055904597043991, 0.02288172021508217, 0.009688381105661392, -0.005625774618238211, -0.08113003522157669, 0.031845685094594955, -0.01782197132706642, -0.01499746460467577, -0.012832285836338997, 0.004254049155861139, 0.021955151110887527, -0.018718145787715912, -0.02445472963154316, 0.02464875392615795, 0.050216518342494965, -0.03806170076131821, -0.043019864708185196, -0.022883396595716476, -0.000572303484659642, -0.03847416490316391, -0.023051461204886436, 0.03407331183552742, -0.04923500493168831, -0.015138405375182629, 0.06343993544578552, 0.022094151005148888, 0.05346406251192093, -0.03788073733448982, -0.0018835692899301648, 0.03367418050765991, -0.03003896400332451, 0.03524169325828552, -0.02904408797621727, -0.04126576706767082, -0.01061379536986351, -0.04290805757045746, 0.046158287674188614, 0.06959506124258041, -0.06129340082406998, 0.023702029138803482, 0.018815457820892334, -0.030757561326026917, 0.0016454390715807676, -0.021851863712072372, -0.0107201486825943, 0.01700732111930847, 0.003028043545782566, -0.010782497003674507, 0.032274600118398666, 0.0038995174691081047, -0.011382358148694038, -0.054150208830833435, 0.0031335947569459677, -0.012383759021759033, -0.024343864992260933, -0.009026708081364632, -0.025051172822713852, -0.02772960625588894, 0.0547337643802166, 0.0074815587140619755, 0.019359856843948364, -0.08176811039447784, 0.06983508169651031, -0.0166914202272892, -0.059006642550230026, 0.006040435284376144, 0.016212869435548782, 0.06463979929685593, 0.05882668122649193, 0.00016719568520784378, 0.07517731189727783, 0.007280918303877115, 0.03950033709406853, 0.012843222357332706, 0.008338811807334423, -0.007337287999689579, -0.04830307140946388, -0.016149794682860374, 0.07934018224477768, 0.030289415270090103, -0.014116616919636726, -0.0249733068048954, -0.005834612064063549, -0.0036902385763823986, -0.026418687775731087, 0.0623360313475132, 0.006235982291400433, -0.024738730862736702, 0.006258782930672169, -0.008694611489772797, 0.03404449298977852, 0.05631943792104721, 0.019769994542002678, 0.006186692509800196, -0.045158565044403076, -0.057857267558574677, 0.0057030473835766315, 0.018105514347553253, 0.007664227392524481, 0.023718733340501785, -0.029162775725126266, -0.0004325993941165507, 0.09017228335142136, 0.01595200225710869, 0.0025429707020521164, -0.03766888380050659, 0.0061404709704220295, 0.023637954145669937, 0.06546497344970703, 0.005932088941335678, 0.045876745134592056, -0.007581810932606459, -0.03560303524136543, -0.03209524229168892, 0.04329172149300575, 0.010450324043631554, 0.024013414978981018, -0.07750413566827774, -0.05889498069882393, 0.05878154933452606, -0.05230623483657837, -0.03852517902851105, 0.03600427508354187, 0.0902419313788414, 0.043959517031908035, -0.0018478957936167717, 0.02817367948591709, -0.07202291488647461, 0.042735639959573746, 0.019391655921936035, 0.019214022904634476, -0.011413097381591797, 0.02371828444302082, 0.0782400444149971, 0.02533036097884178, 0.01945858635008335, 0.024786319583654404, -0.07764904201030731, -0.09065652638673782, -0.010015938431024551, 0.005123675335198641, 0.04479646310210228, -0.023445546627044678, -0.010976019315421581, 0.04799697920680046, 0.02113311178982258, 0.03233916312456131, -0.010528835467994213, 0.02785482630133629, 0.025263912975788116, -0.06346866488456726, -0.07035662978887558, 0.03678029775619507, 0.030331658199429512, -0.015683280304074287, -0.026183851063251495, 0.03050055541098118, -0.03780251368880272, -0.002447869861498475, 0.018385279923677444, -0.03298039361834526, 0.05028090253472328, -0.0036656397860497236, 0.03761083260178566, -0.056414876133203506, 0.053800005465745926, -0.039709966629743576, -0.016043690964579582, 0.010932249017059803, -0.02781851775944233, -0.006566659547388554, 0.007019511889666319, 0.11459343880414963, 0.05368500202894211, -0.01481043454259634, -0.005334925837814808, 0.05227161943912506, 0.02713351510465145, -0.042235080152750015, 0.009109142236411572, -0.007864588871598244, 0.009887663647532463, 0.01502218283712864, -0.03001292422413826, -0.05755387246608734, 0.024553487077355385, -0.05958394333720207, -0.001419050619006157, 0.0772790014743805, -0.005109719932079315, 0.05992896109819412, 0.007383687887340784, -0.04091237112879753, -0.004537982866168022, -0.0459439642727375, -0.087578684091568, 0.0019296631217002869, 0.02369880862534046, -0.0017501013353466988, 0.00903403665870428, -0.03089037537574768, -0.02041604556143284, -0.008366754278540611, -0.04692240059375763, 0.014826592057943344, 0.043433777987957, 0.06544392555952072, -0.04794738441705704, 0.018725812435150146, -0.012186979874968529, 0.025283675640821457, -0.007529751397669315, -0.027936212718486786, -0.03729601204395294, 0.005769885610789061, -0.0047452449798583984, 0.013526135124266148, 0.016153613105416298, -0.0019278769614174962, -0.026625152677297592, -0.035718563944101334, 0.013774092309176922, -0.021773336455225945, 0.053858619183301926, -0.006144607439637184, 0.013841615989804268, -0.052640244364738464, 0.011911731213331223, 0.03512228652834892, -0.04613310843706131, -0.037000641226768494, 0.01104525476694107, -0.05890755355358124, 0.04748104512691498, -0.06018972024321556, -0.06747762113809586, -0.00570531515404582, 0.006427458021789789, 0.02020801603794098, 0.008161459118127823, 0.0158851258456707, 0.03969622030854225, -0.011160899884998798, 0.04610816389322281, 0.02250921167433262, 0.03941616415977478, 0.003275684081017971, 0.032922495156526566, -0.001103432266972959, -0.0027504030149430037, -0.0030164821073412895, 0.012593620456755161, -0.06680795550346375, 0.03006075881421566, -0.05420322343707085, -0.2717665135860443, 0.0431453175842762, 0.03465989604592323, -0.04372045397758484, 0.014877800829708576, -0.002180909039452672, -0.010778455063700676, -0.011062437668442726, -0.018598830327391624, 0.011361655779182911, 0.008129818364977837, -0.03549908846616745, 0.02988465130329132, 0.04732499644160271, 0.0014803962549194694, 0.003033833345398307, 0.015316098928451538, -0.03287369757890701, -0.0024550685193389654, 0.021907730028033257, -0.005103936418890953, -0.05189521983265877, 0.05895785987377167, 0.02215210534632206, 0.05635258927941322, 0.04615817964076996, -0.034798651933670044, 0.05421745032072067, -0.05422592535614967, -0.06446130573749542, 0.013879472389817238, -0.007594358641654253, -0.014593497850000858, 0.018856942653656006, -0.019119370728731155, 0.026588862761855125, 0.025534113869071007, -0.01653016358613968, -0.004278868902474642, 0.017298566177487373, -0.01572008803486824, -0.02133464626967907, 0.035062942653894424, 0.021083997562527657, 0.0629349797964096, 0.00781482458114624, -0.07774922996759415, -0.01933181844651699, -0.025008950382471085, 0.07213087379932404, -0.04607974365353584, -0.023176414892077446, -0.021478116512298584, 0.010408155620098114, 0.021034354344010353, 0.007842864841222763, -0.053409378975629807, 0.00938919372856617, -0.023687077686190605, -0.014691893011331558, -0.007587676867842674, -0.027999447658658028, -0.02448955923318863, -0.02277611941099167, -0.01209801435470581, -0.020771311596035957, -0.028065549209713936, -0.042184341698884964, 0.08420196920633316, -0.011582932434976101, -0.03260476514697075, -0.02485363744199276, -0.014450140297412872, -0.11025281250476837, -0.010031030513346195, -0.01698119565844536, -0.05458966642618179, 0.014303055591881275, -0.02899567037820816, 0.040544845163822174, -0.050717901438474655, -0.046320199966430664, -0.001242165919393301, 0.02947930619120598, 0.020450087264180183, -0.023574789986014366, 0.011583712883293629, -0.006464702542871237, -0.012237954884767532, 0.01015814021229744, 0.06033109128475189, -0.04546178877353668, -0.016481567174196243, -0.033392343670129776, 0.010374557226896286, 0.0009037592681124806, -0.018571941182017326, 0.034883227199316025, 0.00038924464024603367, 0.07661842554807663, 0.03252558782696724, -0.06016385555267334, 0.027272053062915802, -0.03770378232002258, -0.021211279556155205, 0.04354172572493553, -0.04369594529271126, -0.007608985062688589, 0.05560736730694771, 0.036651331931352615, 0.01678003929555416, -0.03273329883813858, 0.016219932585954666, -0.06579282134771347, -0.06330639868974686, 0.005835689604282379, 0.029281258583068848, 0.04611000791192055, -0.001906038261950016, -0.019406573846936226, -0.04754972457885742, -0.0014450688613578677, 0.011841142550110817, 0.015453984960913658, -0.0633845403790474, -0.027845878154039383, 0.015011202543973923, 0.00023747757950332016, 0.017559124156832695, -0.008183417841792107, -0.015726231038570404, 0.035648707300424576, 0.060834601521492004, -0.02523779682815075, 0.024036845192313194, -0.010335231199860573, -0.0255600418895483, -0.03646562993526459, 0.02239421382546425, -0.02181769534945488, -0.05691857263445854, 0.009978573769330978, 0.004096991382539272, 0.02035175822675228, 0.02706282027065754, -0.017881019040942192, 0.07532890886068344, -0.04378310218453407, 0.0017521323170512915, 0.0072174593806266785, -0.0009297981159761548, -0.033784691244363785, 0.057497140020132065, -0.022345969453454018, -0.063957080245018, -0.020740320906043053, 0.0142043586820364, -0.02459668181836605, -0.001785221160389483, -0.004487934522330761, -0.0009178988402709365, -0.04966749623417854, 0.02087341994047165, 0.01115856971591711, -0.027163539081811905, 0.049842216074466705, 0.006702952552586794, 0.005193185061216354, -0.034558068960905075, -0.023450277745723724, 0.013114982284605503, 0.013638714328408241, -0.0074636624194681644, 0.008649756200611591, 0.003654386382550001, 0.01730848290026188, 0.03143252804875374, 0.02478891983628273, 0.038144707679748535, -0.008869743905961514, -0.03573029115796089, -0.020875610411167145, 0.0050684791058301926, 0.0013403432676568627, 0.028318269178271294, -0.005480737891048193, -0.025269290432333946, 0.0011998220579698682, 0.0013683234574273229, -0.06606632471084595, -0.027302583679556847, 0.029190348461270332, 0.0026878712233155966, 0.016452018171548843, -0.015441630966961384, -0.07999014109373093, 0.025402942672371864, -0.0027909211348742247, 0.04066403582692146, 0.0015221628127619624, -0.01714901812374592, 0.0088461609557271, -0.046049103140830994, 0.028034348040819168, 0.06358376890420914, -0.050080299377441406, -0.00405147997662425, 0.001410644268617034, 0.035187654197216034, -0.010505941696465015, 0.011741828173398972, -0.04784387722611427, -0.005276535637676716, 0.030854271724820137, 0.019302010536193848, -0.03783963620662689, -0.03225429728627205, -0.02567591518163681, 0.002312377095222473, -0.025431955233216286, 0.008249719627201557, 0.0006676483899354935, 0.0030805503483861685, 0.021733833476901054, -0.044281862676143646, -0.0037099800538271666, -0.02680705301463604, -0.04987122863531113, 0.02761373110115528, -0.0164401363581419, 0.039809700101614, -0.03452666103839874, 0.025130880996584892, 0.015489576384425163, -0.012703992426395416, -0.00875809509307146, -0.05364353954792023, -0.009526396170258522, -0.02363504096865654, 0.016970733180642128, -0.025938382372260094, 0.004996155854314566, -0.024565791711211205, -0.005872635170817375, -0.024895362555980682, 0.02099853754043579, 0.005076948087662458, -0.030231358483433723, 0.0029859377536922693, 0.05511679872870445, 0.0027919479180127382, 0.041244033724069595, -0.036097992211580276, 0.0034107635729014874, 0.0601993091404438, -0.050307974219322205, -0.020134923979640007, -0.027721446007490158, -0.052399732172489166, 0.045834098011255264, 0.04047683998942375, 0.02682158723473549, -0.06768589466810226, 0.017033526673913002, 0.024062901735305786, 0.0011720393085852265, 0.044345565140247345, -0.028538938611745834, 0.011310216039419174, -0.03480338305234909, -0.03040219098329544, -0.06697918474674225, 0.017831014469265938, -0.0033294949680566788, -0.018940266221761703, 0.0009731597965583205, 0.0215154979377985, -0.05755600705742836, 0.019750377163290977, -0.07740561664104462, -0.010487331077456474, 0.0685170590877533, -0.00621585501357913, -0.011084219440817833, 0.02021888829767704, -0.05776580050587654, 0.026763122528791428, 0.020451540127396584, -0.05173244699835777, -0.00557103892788291, -0.015128951519727707, 0.05942833423614502, 0.01503831148147583, 0.03474406152963638, -0.01313120685517788, 0.0049038538709282875, 0.08076003193855286, 0.00501216808333993, 0.008173990994691849, 0.05620840564370155, -0.005217424128204584, 0.0370231457054615, 0.040209393948316574, 0.03229057788848877, 0.005406372714787722, 0.026566285640001297, -0.007430539466440678, -0.03732283040881157, 0.020568441599607468, -0.01821266859769821, 0.0008237748988904059, -0.03308936581015587, 0.053671080619096756, 0.015614117495715618, -0.03393518552184105, -0.032873574644327164, 0.013031105510890484, -0.030389884486794472, -0.019998619332909584, -0.025895731523633003, 0.00351524050347507, -0.05149783939123154, 0.06806465983390808, 0.010952210053801537, 0.04316041246056557, 0.06435906887054443, 0.015252659097313881, 0.004411589354276657, 0.008875703439116478, 0.0564187690615654, 0.07883971929550171, 0.0018071321537718177, 0.028807856142520905, 0.05917186290025711, -0.016861960291862488, -0.03961073234677315, 0.013457018882036209, -0.026684686541557312, -0.03582637012004852, -0.03788352385163307, 0.002047826535999775, 0.060165420174598694, -0.02823207899928093, 0.06892445683479309, -0.019029168412089348, 0.042582377791404724, 0.022141052410006523, 0.01908900961279869, 0.03457530960440636, 0.03218108043074608, -0.01603548973798752, 0.03632212430238724, -0.0007670304621569812, -0.021599940955638885, 0.029622182250022888, -0.016928354278206825, -0.02198455110192299, 0.00926278531551361, -0.03698364272713661, 0.019092805683612823, 0.0238411296159029, 0.047041915357112885, 0.06617594510316849, -0.00946009811013937, 0.013228099793195724, -0.024426674470305443, 0.029848365113139153, 0.009184729307889938, 0.028968200087547302, -0.0258549265563488, -0.007962035946547985, -0.008281178772449493, -0.03991808369755745, 0.009772718884050846, 0.0003695364575833082, -0.02753286063671112, 0.04912613704800606, -0.046728480607271194, 0.013916116207838058, 0.029757384210824966, -0.02956889569759369, -0.04407012090086937, -0.01727227494120598, -0.06553315371274948, 0.001477996353060007, -0.03758554905653, 0.015625959262251854, -0.011572401039302349, -0.006428432650864124, -0.018758168444037437, -0.024432726204395294, -0.009487824514508247, -0.01829182542860508, 0.012641987763345242, -0.06117161363363266, -0.01727769337594509, 0.013336739502847195, 0.005710627883672714, -0.0042625064961612225, -0.0031338350381702185, 0.06217454746365547, 0.013597597368061543, -0.01691846176981926, -0.009180452674627304, 0.009503968060016632, 0.03166799619793892, -0.006475553382188082, 0.024500062689185143, -0.09546945989131927, 0.04401945322751999, 0.01840020716190338, 0.01416062843054533, -0.03735020384192467, 0.018206460401415825, 0.03130432218313217, -0.03362037241458893, 0.05903215333819389, -0.01801176369190216, 0.005270309280604124, -0.029034048318862915, -0.007959792390465736, -0.014855108223855495, -0.02054501697421074, 0.020789047703146935, -0.013983217068016529, 0.1010771170258522, 0.03520764783024788, 0.00552572263404727, -0.07913407683372498, 0.005566067062318325, 0.0121460547670722, -0.004508941434323788, -0.03354354202747345, -0.011737926863133907, -0.0393173024058342, -0.09154678881168365, -0.044610645622015, 0.010188889689743519, -0.03058614395558834, -0.044873401522636414, -0.01093931496143341, -0.0015524739865213633, -0.057545680552721024, 0.006338997278362513, -0.038924556225538254, 0.01153300330042839, -0.00698113301768899, -0.013993940316140652, -0.00959473941475153, 0.023639701306819916, -0.019893448799848557, -0.018602490425109863, 0.04379758983850479, -0.023625332862138748, 0.0002812566817738116, -0.02850872091948986, 0.0450628325343132, 0.06455524265766144, -0.004843240603804588, 0.003873157547786832 ]
[ -0.10126673430204391, -0.047829706221818924, -0.002395103918388486, -0.04483771324157715, 0.0456138513982296, -0.06150296330451965, -0.04311471804976463, 0.029975060373544693, -0.010910808108747005, -0.03481123223900795, 0.04358416423201561, -0.031303420662879944, 0.04432021453976631, -0.026424231007695198, 0.07145411521196365, 0.038593895733356476, 0.00006675165786873549, -0.059994883835315704, 0.008572002872824669, 0.016404137015342712, 0.0075775450095534325, -0.019315792247653008, -0.007274283096194267, -0.021862097084522247, -0.035871196538209915, 0.06480910629034042, 0.030073564499616623, -0.027762964367866516, -0.013694053515791893, -0.1850803941488266, 0.02420293539762497, -0.0037536821328103542, 0.002693474991247058, -0.02799028530716896, 0.046469781547784805, 0.05364103615283966, 0.011916041374206543, -0.003495009383186698, -0.005695849657058716, 0.037671517580747604, 0.0030384440906345844, 0.0358860157430172, -0.08829347789287567, -0.04988130182027817, 0.040072862058877945, -0.007180303800851107, -0.015515797771513462, -0.026065759360790253, 0.024022234603762627, -0.007529665715992451, -0.06600584089756012, 0.02892928570508957, 0.006539623253047466, -0.03165320307016373, -0.014143786393105984, 0.033412687480449677, 0.049556631594896317, 0.07173218578100204, 0.011795060709118843, 0.022197145968675613, 0.027037257328629494, -0.012342403642833233, -0.11853104084730148, 0.06559883803129196, 0.0632924735546112, 0.03200160339474678, -0.015371176414191723, -0.05108562484383583, -0.028985729441046715, 0.07865270972251892, 0.0022178359795361757, -0.021185632795095444, -0.004240003414452076, 0.07013243436813354, -0.011632252484560013, -0.007946358062326908, 0.003996588755398989, 0.025663113221526146, 0.046079955995082855, -0.05026552453637123, -0.05239162594079971, -0.03205614164471626, -0.044432178139686584, 0.003978433553129435, -0.027302656322717667, 0.011143471114337444, 0.00828466098755598, 0.10134218633174896, 0.03509383648633957, 0.059558380395174026, 0.03776523470878601, 0.013929705135524273, 0.05391238257288933, 0.014159238897264004, -0.08521035313606262, 0.006426549982279539, -0.013563252985477448, 0.010126123204827309, -0.01975931227207184, 0.46312111616134644, 0.02162967622280121, -0.014768009074032307, 0.05211324989795685, 0.04744131490588188, 0.028841685503721237, 0.009661992080509663, -0.01228642463684082, -0.030878597870469093, 0.0042597153224051, -0.02128908596932888, 0.035462308675050735, -0.013595681637525558, 0.09798381477594376, -0.06171112880110741, 0.024915063753724098, 0.007395859342068434, 0.00907604955136776, 0.011529258452355862, -0.033591851592063904, -0.006111719645559788, -0.024660160765051842, 0.012152714654803276, 0.04008600860834122, 0.0029456266202032566, 0.004387924913316965, -0.017887771129608154, 0.03644964098930359, 0.05936402827501297, 0.010508015751838684, 0.02875434048473835, 0.014689458534121513, -0.04437807947397232, -0.04360326752066612, -0.02715953066945076, 0.016140785068273544, 0.03737470507621765, 0.013740471564233303, -0.032181136310100555, -0.022306282073259354, 0.025528375059366226, -0.02327144332230091, -0.058235399425029755, 0.02247273549437523, -0.01389890443533659, -0.019277945160865784, 0.08508789539337158, 0.023231182247400284, 0.021505804732441902, -0.023898344486951828, -0.03090597875416279, -0.049038730561733246, 0.0027348895091563463, 0.017351940274238586, -0.05943918973207474, 0.007855716161429882, -0.009648961015045643, 0.07184955477714539, -0.019020287320017815, -0.07582873106002808, 0.004426809027791023, -0.0008782247314229608, -0.043106935918331146, -0.03883558139204979, 0.014351525343954563, 0.046346865594387054, -0.08011295646429062, -0.03158440813422203, 0.033620525151491165, 0.026731330901384354, -0.013337751850485802, -0.004023284651339054, 0.02146291173994541, -0.008354218676686287, -0.05928512290120125, 0.01793736219406128, -0.055590055882930756, -0.005594372749328613, 0.01690887287259102, 0.02652456797659397, 0.01924847811460495, -0.0021039971616119146, 0.003943414893001318, -0.036477230489254, 0.007873102091252804, -0.04726194590330124, -0.10276638716459274, -0.04420260712504387, 0.03681526705622673, 0.0016060261987149715, -0.033839963376522064, -0.044626593589782715, -0.04541222006082535, -0.04803062602877617, 0.05590388923883438, -0.007783598732203245, -0.010748032480478287, -0.032039426267147064, 0.02076309733092785, 0.0020770556293427944, -0.05864320322871208, 0.0386844128370285, 0.009167089127004147, -0.027818463742733, 0.016155291348695755, -0.06394050270318985, 0.044684719294309616, 0.04018029198050499, -0.0420016273856163, 0.07320620864629745, 0.03084651008248329, -0.02144184708595276, 0.004714931361377239, 0.03297258913516998, 0.05679692327976227, -0.01729290373623371, -0.017824474722146988, -0.05083085969090462, 0.005246676038950682, 0.05033076927065849, 0.03155598044395447, -0.009189357049763203, 0.0068589672446250916, -0.030582692474126816, -0.3364647626876831, -0.050370436161756516, -0.04925115033984184, -0.01050269789993763, -0.010084278881549835, -0.034754980355501175, 0.028883202001452446, -0.03567416965961456, -0.010942111723124981, 0.019762780517339706, 0.07378368824720383, -0.016713818535208702, 0.04354686662554741, -0.06409542262554169, 0.002203695708885789, -0.017199240624904633, -0.0334196500480175, 0.025650573894381523, -0.006755440030246973, -0.006046037655323744, -0.03192916885018349, -0.06825032830238342, -0.024875575676560402, -0.04676886647939682, -0.020959142595529556, -0.015580451115965843, 0.10734786093235016, 0.06247033551335335, 0.04836844652891159, -0.06970053911209106, 0.030474932864308357, 0.020393403246998787, 0.04312377795577049, -0.09562335908412933, 0.025195017457008362, 0.023315923288464546, -0.008813418447971344, -0.026529259979724884, 0.03312213718891144, -0.037145938724279404, -0.07932378351688385, 0.017388079315423965, -0.05827708542346954, -0.041504472494125366, -0.006707083433866501, 0.0005369845894165337, -0.0011798018822446465, 0.016602857038378716, -0.013484248891472816, 0.0834251195192337, 0.002571003045886755, 0.022597210481762886, 0.01307514775544405, -0.000662097882013768, 0.009554068557918072, 0.005838778801262379, -0.0489538200199604, -0.020841306075453758, 0.07166072726249695, -0.010500370524823666, 0.03264182060956955, 0.058658089488744736, 0.03427886217832565, -0.07880830019712448, 0.0037194371689110994, 0.004838989581912756, 0.02874993532896042, 0.00548134371638298, 0.037570688873529434, -0.014698649756610394, -0.023741325363516808, 0.11989112943410873, -0.004289303906261921, 0.011346738785505295, -0.005148218013346195, 0.019779449328780174, 0.025741541758179665, 0.006355362478643656, 0.012896060943603516, -0.0341646708548069, 0.015997091308236122, -0.02170356921851635, 0.025523275136947632, -0.05055474862456322, -0.028264543041586876, 0.034984223544597626, -0.029660699889063835, -0.049987632781267166, 0.0726824551820755, 0.013361047022044659, -0.006114489398896694, 0.0052924007177352905, -0.027270415797829628, -0.05008925125002861, 0.06861258298158646, -0.001321903895586729, -0.24028314650058746, 0.024879397824406624, 0.06597047299146652, 0.02983802556991577, -0.01458963192999363, 0.009439031593501568, 0.024324310943484306, -0.03725574538111687, -0.019267229363322258, 0.006395432632416487, 0.00517662800848484, 0.029528455808758736, -0.032524727284908295, -0.02902168408036232, 0.007349275518208742, -0.011195585131645203, 0.04150984063744545, 0.021910782903432846, 0.02009223774075508, -0.02368854358792305, 0.0154177937656641, -0.010234538465738297, 0.14406795799732208, 0.03571293503046036, -0.025936201214790344, 0.02534651756286621, 0.0022315070964396, 0.057268235832452774, 0.035282671451568604, -0.009241881780326366, -0.03077750839293003, 0.0035228480119258165, -0.03266820311546326, -0.019809402525424957, 0.025357546284794807, -0.018774669617414474, -0.0025870257522910833, 0.03972721844911575, 0.025427360087633133, -0.0024739422369748354, -0.03003956750035286, 0.0407559908926487, -0.0006202840595506132, 0.05620098486542702, 0.053693737834692, -0.021787239238619804, 0.0034901376347988844, 0.006681576371192932, -0.05117076635360718, 0.023041317239403725, -0.035620979964733124, -0.04215921461582184, -0.0035678381100296974, -0.04231017455458641, 0.0080603351816535, 0.08561787009239197, 0.00966720562428236, -0.02180255576968193, -0.008211101405322552, -0.01589641347527504, 0.024372171610593796, -0.04430612921714783, 0.13279783725738525, -0.015179582871496677, 0.036745693534612656 ]
[ 0.015439359471201897, 0.05340665951371193, 0.01727723516523838, 0.012068117037415504, 0.004480926785618067, 0.009255057200789452, -0.057944051921367645, -0.005301411263644695, -0.060378484427928925, 0.016863081604242325, -0.021991224959492683, 0.026065804064273834, 0.0657511055469513, -0.04753296449780464, 0.0006199086201377213, 0.014892714098095894, 0.0035501683596521616, 0.031364381313323975, 0.036281462758779526, -0.02927868254482746, -0.034557659178972244, 0.02123956009745598, 0.014191903173923492, 0.010588398203253746, -0.04869496077299118, 0.022961212322115898, -0.04511868953704834, 0.0411539264023304, 0.04414188861846924, -0.16087226569652557, 0.009560697712004185, -0.01682015135884285, 0.039240773767232895, -0.01473010703921318, 0.039074040949344635, 0.04296618327498436, -0.0019997910130769014, -0.007215708028525114, -0.03135093301534653, -0.004269861616194248, 0.08986367285251617, 0.0027908040210604668, 0.014878345653414726, 0.023769425228238106, -0.025150345638394356, -0.042969830334186554, -0.015244034118950367, -0.0014350999845191836, -0.007165842689573765, -0.007822778075933456, -0.02922174334526062, -0.003375055966898799, 0.02693944424390793, -0.012493424117565155, -0.01630195416510105, -0.02379424311220646, 0.03340557590126991, 0.012589868158102036, 0.004602149594575167, -0.056465648114681244, 0.038985252380371094, -0.015667332336306572, -0.0061471727676689625, -0.06172269955277443, -0.019267048686742783, -0.009791389107704163, 0.0008709513349458575, -0.03510414436459541, -0.035357773303985596, 0.01659475453197956, -0.018804281949996948, -0.006382765248417854, 0.019291186705231667, 0.0017574900994077325, 0.006123748142272234, -0.015316170640289783, 0.04610184580087662, -0.04055856540799141, 0.020051581785082817, 0.030107945203781128, -0.04930999130010605, -0.02339036948978901, 0.014988614246249199, -0.04706548526883125, -0.04063822329044342, -0.030212251469492912, -0.01423710212111473, 0.001984237926080823, 0.014040185138583183, 0.014224731363356113, 0.017074543982744217, -0.0317794606089592, 0.003548060078173876, 0.01790989562869072, -0.05489443615078926, -0.002727700397372246, 0.022883852943778038, 0.023796038702130318, -0.021581880748271942, 0.8011734485626221, 0.005849418696016073, 0.010353907011449337, -0.0018734780605882406, -0.011160328984260559, -0.0015526725910604, -0.009324632585048676, -0.010777134448289871, 0.016172030940651894, -0.039528440684080124, -0.02888563647866249, -0.01740051619708538, -0.028650809079408646, 0.01287072990089655, 0.007421399932354689, -0.0000997254901449196, -0.034543100744485855, 0.03851350396871567, 0.012839271686971188, 0.0077118282206356525, -0.005025397054851055, 0.08535098284482956, 0.015430369414389133, 0.056151133030653, 0.01563495770096779, -0.005794443190097809, -0.22566352784633636, 0.0004773679538629949, -7.578117471479613e-33, 0.047594666481018066, -0.020845822989940643, 0.0055198692716658115, 0.031000513583421707, 0.012891397811472416, 0.005156644154340029, -0.027108900249004364, 0.05423952639102936, -0.050568822771310806, -0.024226905778050423, -0.029240328818559647, 0.0033552260138094425, 0.020096872001886368, -0.005026043858379126, 0.014879574999213219, -0.004186968319118023, -0.00807514600455761, 0.06450964510440826, 0.01397654414176941, 0.015682125464081764, 0.0399203784763813, -0.014416603371500969, -0.015111674554646015, 0.021036656573414803, 0.0517919696867466, 0.021511880680918694, 0.016363248229026794, -0.016500184312462807, 0.0025625405833125114, -0.06832929700613022, -0.003525448264554143, 0.04664451256394386, -0.021549569442868233, -0.005482303909957409, -0.027824627235531807, -0.056051913648843765, -0.026891186833381653, 0.015058433637022972, -0.05085672810673714, -0.07203803956508636, 0.02309028059244156, 0.011395944282412529, 0.002153245499357581, -0.012877153232693672, 0.05167512595653534, -0.0018384290160611272, 0.018930118530988693, -0.013449534773826599, 0.025639958679676056, 0.0015498829307034612, 0.011945921927690506, -0.004215799272060394, -0.004467753693461418, -0.016002468764781952, 0.0029698952566832304, -0.00826228503137827, 0.017355535179376602, 0.05092301219701767, 0.0023578270338475704, 0.010107710026204586, -0.0001480455102864653, 0.0031255425419658422, 0.0159047469496727, -0.013270881026983261, 0.024139732122421265, -0.006911250296980143, -0.0407835990190506, 0.03930474445223808, 0.009407400153577328, 0.05676055699586868, -0.008218207396566868, -0.030614253133535385, 0.006424896884709597, -0.002677295822650194, 0.013755680993199348, -0.03034820780158043, 0.010108782909810543, -0.00369931454770267, 0.010300490073859692, -0.001229188172146678, 0.008244450204074383, -0.04951558634638786, -0.03821440413594246, -0.0013298119883984327, -0.020747875794768333, 0.03933298960328102, -0.048735663294792175, 0.004387549124658108, 0.00650266045704484, 0.014615394175052643, 0.00600053695961833, 0.021946841850876808, -0.032272279262542725, -0.055141597986221313, -0.022294621914625168, 7.479015950865601e-33, 0.0034372410736978054, -0.000020074598069186322, -0.004169440362602472, 0.029328322038054466, 0.017910528928041458, -0.04131561890244484, 0.01699056848883629, 0.015067892149090767, -0.037650175392627716, 0.03286423534154892, -0.02729111909866333, -0.02411879599094391, 0.0010792175307869911, -0.015968982130289078, 0.005917240399867296, -0.030691111460328102, 0.02289237268269062, -0.06656508147716522, 0.039234764873981476, 0.015623025596141815, 0.005717288237065077, 0.002652967581525445, 0.011279772967100143, 0.02027367800474167, 0.04343250393867493, 0.05319489538669586, 0.01147224847227335, 0.021257588639855385, 0.0207651536911726, 0.01582947187125683, -0.001374159357510507, -0.010524837300181389, 0.021733244881033897, 0.03456811606884003, -0.003849772270768881, 0.026137161999940872, -0.026354406028985977, 0.0016635097563266754, -0.02673679031431675, 0.025576172396540642, -0.006857188884168863, -0.009751356206834316, -0.03376517817378044, -0.001590273343026638, 0.06160387396812439, 0.005939059890806675, 0.00014144278247840703, 0.051426466554403305, -0.027016406878829002, -0.020653316751122475, -0.007141039241105318, 0.012592239305377007, -0.01765424571931362, 0.027736593037843704, 0.013162313960492611, -0.004701524507254362, -0.06374572962522507, 0.03347674384713173, 0.04329695925116539, 0.0027329260483384132, 0.008637013845145702, 0.029275471344590187, -0.03396366909146309, 0.009797612205147743, -0.05331965163350105, -0.040890831500291824, -0.03224041685461998, -0.01168069988489151, -0.009766314178705215, 0.05574170500040054, 0.01747792214155197, 0.014730601571500301, 0.0006275609484873712, 0.017575304955244064, 0.01101582869887352, 0.01245434582233429, -0.018300853669643402, -0.0030265741515904665, -0.009230539202690125, 0.003630059538409114, -0.03937899321317673, 0.03617523983120918, 0.003985922317951918, 0.010408800095319748, 0.027102436870336533, 0.026896510273218155, -0.014703498221933842, 0.030578190460801125, 0.027637870982289314, -0.010399548336863518, -0.015049032866954803, -0.017021911218762398, -0.030689815059304237, 0.021623682230710983, -0.04075000807642937, -1.2625675616106946e-8, 0.008521434850990772, 0.011046179570257664, -0.005909166764467955, 0.01567857712507248, 0.02251557819545269, 0.002433713525533676, -0.023334862664341927, -0.007089020684361458, -0.000467022618977353, 0.03385574370622635, 0.022992655634880066, -0.014732513576745987, -0.012989958748221397, 0.045606568455696106, 0.049011699855327606, -0.02910492569208145, 0.0029886974953114986, -0.005690560210496187, 0.03311026841402054, -0.00028200953966006637, -0.039782360196113586, 0.014223231002688408, -0.013059851713478565, 0.013649887405335903, 0.0001519614306744188, 0.01979837752878666, 0.021215207874774933, -0.05409332364797592, 0.029283026233315468, 0.005130934063345194, 0.002529308432713151, -0.00711497338488698, -0.022582072764635086, 0.006780744530260563, -0.010972228832542896, -0.0038894193712621927, -0.0009743028786033392, 0.013482491485774517, -0.0077644167467951775, -0.008436424657702446, 0.010518874041736126, -0.001570632215589285, 0.009450305253267288, -0.014320837333798409, -0.04093201830983162, 0.011788819916546345, 0.0035032122395932674, 0.048074908554553986, 0.022820934653282166, -0.05008219555020332, 0.030239280313253403, -0.019948868080973625, -0.020763758569955826, 0.00803120993077755, 0.012002154253423214, 0.0020568869076669216, -0.006556370761245489, -0.04644852876663208, 0.011680671013891697, -0.0035917244385927916, 0.025863783434033394, -0.021240966394543648, -0.034259065985679626, -0.040806129574775696 ]
apt-get-update-416-requested-range-not-satisfiable
https://markhneedham.com/blog/2012/12/10/apt-get-update-416-requested-range-not-satisfiable
false
2012-12-09 10:36:39
Data Science: Discovery work
[ "data-science-2" ]
[ "Data Science" ]
Aaron Erickson http://nomadic-developer.com/2012/11/30/pragmaticanalytics/[recently wrote a blog post] where he talks through some of the problems he's seen with big data initiatives where organisations end up buying a product and expecting it to magically produce results. ____ [...] corporate IT departments are suddenly are looking at their long running "`Business Intelligence`" initiatives and wondering why they are not seeing the same kinds of return on investment. They are thinking... if only we tweaked that "`BI`" initiative and somehow mix in some "`Big Data`", maybe *we* could become the next Amazon. ____ He goes on to suggest that a more 'agile' approach might be more beneficial whereby we *drive our work from a business problem with a small team in a short discovery exercise*. We can then build on top of that if we're seeing good results. A few months ago https://twitter.com/a5hok[Ashok] and I were doing this type of work for one of our clients and afterwards we tried to summarise how it differed to a normal project. == Hacker Mentality Since the code we're writing is almost certainly going to be throwaway it doesn't make sense to spend a lot of time making it beautiful. It just needs to work. We didn't spend any time setting up a continuous integration server or a centralised source control repository since there were only two of us. These things make sense when you have a bigger team and more time but for this type of work it feels overkill. Most of the code we wrote was in Ruby because that was the language in which we could hack together something useful in the least amount of time but I'm sure others could go just as fast in other languages. We did, however, end up http://www.markhneedham.com/blog/2012/09/23/neo4j-the-batch-inserter-and-the-sunk-cost-fallacy/[moving some of the code to Java later on] after realising the performance gains we'd get from doing so. == 2 or 3 hour 'iterations' As I mentioned in a previous post we took the approach of http://www.markhneedham.com/blog/2012/05/05/neo4j-what-question-do-you-want-to-answer/[finding questions that we wanted the answers to] and then spending a few hours working on those before talking to our client again. Since we don't really know what the outcome of our discovery work is going to be we want to be able to quickly change direction and not go down too many rabbit holes. == 1 or 2 weeks in total We don't have any data to prove this but it seems like you'd need a week or two to iterate through enough ideas that you'd have a reasonable chance of coming up with something useful. It took us 4 days before we zoomed in on something that was useful to the client and allowed them to learn something that they didn't previously know. If we do find something worth pursuing then we'd want to bake that work into the normal project back log and then treat it the same as any other piece of work, driven by priority and so on. == Small team You could argue that small teams are beneficial all the time but it's especially the case here if we want to keep the feedback cycle tight and the communication overhead low. Our thinking was that 2 or 3 people would probably be sufficient where 2 of the people would be developers and 1 might be someone with a UX background to help do any visualisation work. If the domain was particularly complex then that 3rd person could be someone with experience in that area who could help derive useful questions to answer.
null
null
[ 0.024826861917972565, -0.011626722291111946, 0.002349661197513342, 0.050937432795763016, 0.08530370891094208, 0.034835562109947205, 0.03907325118780136, 0.057594455778598785, 0.020332355052232742, -0.020749464631080627, -0.030219795182347298, -0.021955348551273346, -0.05329110845923424, 0.01120947115123272, -0.043951958417892456, 0.060683928430080414, 0.07224730402231216, 0.00029780864133499563, 0.03869848698377609, 0.002910938346758485, 0.022800050675868988, 0.07506612688302994, 0.002113632159307599, 0.019492533057928085, 0.026777036488056183, 0.021560145542025566, -0.0029115614015609026, -0.01011635735630989, -0.06742843985557556, -0.02295779064297676, 0.04895791411399841, 0.006240583956241608, 0.014696568250656128, 0.0038189783226698637, 0.028932297602295876, 0.010420960374176502, -0.012739364057779312, 0.03707970306277275, -0.013225092552602291, 0.006488823797553778, -0.0692395269870758, 0.06016724184155464, -0.00786201748996973, 0.03283684700727463, -0.05496915429830551, -0.01740884967148304, -0.04890996217727661, 0.024756481871008873, 0.013733985833823681, 0.008005901239812374, -0.079716257750988, 0.023458216339349747, -0.017695629969239235, -0.004826148971915245, -0.02233174629509449, 0.043015409260988235, 0.02285580150783062, -0.07382325083017349, -0.00030807513394393027, -0.03559999540448189, 0.003549510147422552, -0.029928287491202354, -0.009509003721177578, 0.026431629434227943, 0.026322973892092705, -0.04661506041884422, 0.009282378479838371, 0.042623091489076614, -0.04297780618071556, 0.01089676097035408, -0.019204724580049515, 0.014652924612164497, -0.023077795282006264, -0.010255127213895321, 0.0033136571291834116, -0.06092801317572594, 0.006642333697527647, 0.061588920652866364, 0.03044329583644867, 0.04218844324350357, -0.033279597759246826, 0.019217198714613914, 0.020477695390582085, 0.02540806494653225, -0.011279788799583912, -0.0436323881149292, -0.003962865564972162, -0.03262104466557503, -0.0669897049665451, 0.05460785701870918, 0.012269346974790096, -0.05552337318658829, 0.027583036571741104, 0.03689388185739517, -0.018211858347058296, 0.020959265530109406, 0.011062651872634888, 0.009436766617000103, -0.012522119097411633, -0.030901245772838593, -0.04777560755610466, -0.018151652067899704, -0.0030965786427259445, 0.002799791982397437, -0.07091726362705231, -0.0041912393644452095, -0.02909749001264572, -0.011901390738785267, -0.0007846884545870125, -0.011476696468889713, -0.023094279691576958, 0.011644277721643448, -0.030013754963874817, 0.007759367115795612, -0.0609501414000988, 0.06614892929792404, 0.0046657994389534, -0.0514935627579689, -0.015994630753993988, 0.006803140509873629, 0.0578383170068264, 0.039553288370370865, -0.006084314547479153, 0.07317923754453659, 0.0060993339866399765, 0.010046313516795635, -0.017365138977766037, 0.04865657538175583, -0.004688055254518986, -0.04463809356093407, -0.017706215381622314, 0.0625184029340744, -0.04197799414396286, -0.008959244005382061, 0.0017055049538612366, -0.026245785877108574, 0.005027106497436762, 0.013171256519854069, 0.04219479486346245, 0.0403318852186203, 0.0032373126596212387, -0.04569030553102493, 0.027217375114560127, 0.028206348419189453, 0.03329388052225113, -0.00785838533192873, 0.00837694387882948, -0.026912325993180275, -0.05174468457698822, -0.02577652968466282, -0.011573095805943012, 0.0339786671102047, 0.0023374995216727257, -0.03594042360782623, 0.04432688280940056, 0.09981539100408554, 0.028990142047405243, -0.008250569924712181, -0.009942678734660149, 0.03785225376486778, 0.03060036338865757, 0.027068283408880234, 0.011999418959021568, 0.009505323134362698, 0.0067117344588041306, -0.013818626292049885, 0.014991440810263157, 0.025964071974158287, -0.0059449016116559505, 0.018386226147413254, -0.038621921092271805, -0.048375871032476425, 0.05692826583981514, -0.0372028648853302, -0.01797802932560444, 0.056251149624586105, 0.07529833912849426, 0.03783610835671425, 0.04288871958851814, 0.004033616278320551, -0.07596884667873383, 0.0354141891002655, 0.023008042946457863, 0.01359704788774252, 0.028137195855379105, -0.006839004345238209, 0.06848262995481491, 0.019740235060453415, 0.01074269600212574, 0.04081721231341362, -0.06885898113250732, -0.09743296355009079, -0.01976635307073593, -0.01511604804545641, 0.03500494360923767, -0.03109125606715679, 0.01642661727964878, 0.055054791271686554, -0.0027509271167218685, 0.051836416125297546, 0.008647111244499683, 0.00180699466727674, 0.01728644222021103, -0.04595455154776573, -0.03065885230898857, 0.05528796464204788, 0.04394393414258957, -0.022258706390857697, -0.07173167169094086, 0.02437649480998516, -0.015532879158854485, -0.03046698123216629, 0.03359567001461983, -0.03885309398174286, 0.04948532581329346, 0.01252779271453619, 0.04572053626179695, -0.02088000439107418, 0.0389171838760376, -0.04061346873641014, 0.016149023547768593, 0.0013958541676402092, -0.01475358847528696, 0.029253637418150902, 0.02621959149837494, 0.11212168633937836, 0.07394542545080185, -0.050340473651885986, -0.0442269966006279, 0.018989844247698784, 0.03139280900359154, -0.046249955892562866, -0.007569862995296717, -0.02218586951494217, -0.0026629033964127302, 0.004393911454826593, -0.05042349174618721, -0.04708614945411682, 0.015463520772755146, -0.04270004853606224, 0.003412349848076701, 0.0548812635242939, -0.021359272301197052, 0.060981180518865585, 0.0028127836994826794, -0.003758613718673587, -0.015791088342666626, -0.0362815298140049, -0.055531926453113556, 0.01061097253113985, -0.0039501432329416275, -0.007615045644342899, 0.05130228400230408, -0.02743385173380375, -0.012478894554078579, -0.03757941722869873, -0.032278358936309814, 0.0069534494541585445, 0.042083483189344406, 0.06861864030361176, -0.009973409585654736, 0.05404311791062355, -0.0045653111301362514, 0.03312854841351509, 0.021057410165667534, -0.04467185214161873, -0.05657391995191574, -0.0334927998483181, 0.01617809571325779, 0.020146794617176056, 0.0016127187991514802, 0.016994036734104156, 0.0090766791254282, 0.011437435634434223, 0.0060078175738453865, -0.021983299404382706, 0.0313694030046463, 0.015519039705395699, -0.012337030842900276, -0.02975686639547348, -0.024554604664444923, 0.052151720970869064, -0.032104671001434326, 0.0025460815522819757, -0.000899777514860034, -0.06980384886264801, 0.04343567043542862, -0.07189854979515076, -0.03380358964204788, 0.00607534684240818, 0.016329092904925346, 0.04474653676152229, 0.002047824440523982, 0.016867151483893394, 0.06773056834936142, 0.02012159675359726, 0.009251120500266552, -0.017512528225779533, -0.024536214768886566, 0.056592490524053574, 0.004207821562886238, -0.0020108241587877274, 0.04862377420067787, 0.012921084649860859, -0.0006203233497217298, -0.051083218306303024, 0.04445592686533928, -0.032274723052978516, -0.28230708837509155, 0.04020668938755989, -0.006766928359866142, -0.050800640136003494, 0.006886798422783613, -0.012593491934239864, -0.011164403520524502, -0.04594386741518974, -0.011718918569386005, 0.013561720959842205, -0.04352877289056778, -0.0443185418844223, -0.023823687806725502, 0.0375995971262455, 0.010086960159242153, 0.04000721871852875, 0.03568337485194206, -0.021090002730488777, 0.012772631831467152, 0.035670869052410126, -0.018896467983722687, -0.059266675263643265, 0.010039640590548515, 0.04262914881110191, 0.05149000883102417, 0.06738541275262833, -0.07738837599754333, 0.04946811869740486, -0.05576494708657265, 0.0011295357253402472, 0.010458284057676792, 0.00454489653930068, 0.004220070317387581, -0.015625333413481712, -0.018908865749835968, -0.011750813573598862, 0.04128299281001091, 0.00926881656050682, 0.000398399424739182, -0.000430168496677652, -0.013919987715780735, -0.02648642100393772, -0.01249354425817728, 0.008374432101845741, 0.08262474089860916, -0.0038999817334115505, -0.09580199420452118, -0.006172210443764925, -0.022157907485961914, 0.057617709040641785, -0.03739456087350845, -0.037109408527612686, -0.022891558706760406, 0.0401776060461998, -0.021947626024484634, -0.036638617515563965, -0.008923429064452648, -0.011375939473509789, -0.03444903343915939, -0.014108858071267605, 0.0033566555939614773, -0.026638057082891464, -0.0019898340106010437, -0.03893280774354935, 0.004150088876485825, -0.06292856484651566, -0.06061062589287758, -0.02236771769821644, 0.08370885998010635, 0.01587529666721821, -0.03717062994837761, 0.02541176788508892, 0.017584575340151787, -0.09843475371599197, 0.004491965286433697, 0.000008941647138271946, -0.01449290569871664, 0.006496699992567301, 0.021264128386974335, 0.05759900063276291, -0.020942447707057, -0.07017600536346436, 0.008051354438066483, -0.0010010654805228114, 0.03416748717427254, -0.015420316718518734, 0.047253306955099106, 0.015355532057583332, -0.012984821572899818, 0.025131115689873695, 0.06498255580663681, -0.014354825951159, -0.027789456769824028, -0.007745405659079552, 0.029882654547691345, 0.011596811935305595, 0.035048045217990875, -0.009878622367978096, -0.012699796818196774, 0.04462451487779617, -0.007942881435155869, -0.06292658299207687, 0.02156931534409523, -0.04115039110183716, 0.0007251300849020481, -0.011250931769609451, -0.031677763909101486, 0.009259735234081745, 0.04230396822094917, 0.02317284420132637, 0.005413796752691269, -0.033812277019023895, 0.005926881451159716, -0.04866583272814751, -0.03723174333572388, -0.008817026391625404, -0.004663584753870964, 0.03898819908499718, -0.003024263773113489, -0.018909724429249763, -0.05026771500706673, 0.0017838714411482215, 0.011801174841821194, 0.014628380537033081, -0.058090537786483765, -0.02798306755721569, -0.013581681065261364, -0.025833478197455406, 0.025624752044677734, 0.006314388941973448, -0.018315421417355537, 0.024271173402667046, 0.014114697463810444, -0.02773272804915905, 0.014711245894432068, -0.02996867150068283, -0.056302815675735474, -0.028521014377474785, 0.010757137089967728, -0.007548382505774498, 0.01032993197441101, 0.019613787531852722, 0.01103630568832159, 0.042380571365356445, 0.018927566707134247, 0.02848389744758606, 0.021932920441031456, -0.02097468636929989, 0.039598193019628525, -0.0036461264826357365, 0.011303485371172428, -0.0730777457356453, 0.014670446515083313, -0.04240885376930237, -0.023239271715283394, -0.026766614988446236, 0.05463075265288353, -0.01821563020348549, -0.030177999287843704, -0.009241930209100246, 0.006465534679591656, -0.05642874538898468, -0.03720053657889366, -0.010782898403704166, 0.0271450225263834, 0.048507820814847946, -0.012515815906226635, 0.015714632347226143, -0.014296180568635464, -0.007195006124675274, 0.012702899985015392, 0.023677194491028786, -0.03738456591963768, -0.004168574698269367, 0.015432563610374928, 0.00037666596472263336, -0.003396927844733, 0.005330969113856554, 0.04294722527265549, 0.02409135363996029, -0.005754402838647366, -0.02643440105021, -0.0072951894253492355, 0.028707230463624, 0.04261740297079086, 0.04016304761171341, 0.010594230145215988, 0.00010918790940195322, -0.013745211996138096, -0.01534750871360302, -0.056569550186395645, 0.0023234563414007425, 0.01582222990691662, 0.02484874241054058, -0.020699162036180496, -0.08146729320287704, 0.07291217148303986, 0.019667355343699455, -0.0002977839903905988, 0.015642613172531128, 0.0013213979545980692, -0.007049566134810448, -0.023529812693595886, 0.02830016054213047, 0.05786546692252159, -0.07444004714488983, -0.010847408324480057, -0.007613363675773144, 0.007852651178836823, -0.003716352628543973, 0.013243009336292744, -0.0441732294857502, -0.031037969514727592, -0.033036086708307266, 0.007075900677591562, -0.05402519553899765, -0.01706356182694435, -0.013568609952926636, 0.003519936930388212, -0.013617963530123234, -0.016100969165563583, -0.014160126447677612, -0.014945459552109241, -0.019631262868642807, -0.027189994230866432, 0.02151961624622345, -0.022674420848488808, -0.005734977312386036, -0.0023566847667098045, -0.04199940711259842, 0.007450917270034552, -0.026838963851332664, -0.008528638631105423, 0.024167409166693687, -0.016327306628227234, 0.01391379814594984, -0.019261736422777176, 0.020169643685221672, 0.00762476772069931, 0.043280329555273056, -0.03177298605442047, -0.039770256727933884, -0.039441414177417755, -0.007822097279131413, -0.04644244536757469, 0.004961952101439238, -0.049440864473581314, 0.008576899766921997, 0.01518175657838583, 0.04812849685549736, 0.01686582714319229, 0.03016410581767559, -0.007252718787640333, -0.027434688061475754, 0.04346424341201782, -0.06042629852890968, -0.027192415669560432, -0.03934422507882118, -0.06264986842870712, -0.008587739430367947, 0.004860986024141312, 0.014755449257791042, -0.022790852934122086, 0.04794164001941681, 0.014916918240487576, 0.037485748529434204, 0.021487604826688766, -0.010023258626461029, 0.04819256067276001, -0.05660616606473923, -0.0010652400087565184, -0.07669785618782043, -0.01142096146941185, 0.025087082758545876, 0.00421165581792593, -0.0014977287501096725, 0.005707630421966314, -0.036199409514665604, 0.027029123157262802, -0.060312189161777496, -0.04004337638616562, 0.04517928138375282, -0.0018560701282694936, -0.015945659950375557, 0.004545597359538078, -0.0784769132733345, 0.04181550815701485, 0.02514749765396118, -0.04046211019158363, -0.036571089178323746, -0.013335390016436577, 0.0454898439347744, -0.0027968399226665497, 0.04407951235771179, -0.06523869931697845, -0.042184263467788696, 0.07401225715875626, -0.0037563093937933445, -0.001028996310196817, 0.04692238196730614, -0.0019485499942675233, 0.0345471054315567, 0.027538133785128593, 0.016038643196225166, -0.01973124034702778, 0.005211690906435251, -0.007199239917099476, -0.058185186237096786, 0.016738226637244225, 0.010507666505873203, -0.033369582146406174, -0.023990122601389885, 0.08089931309223175, 0.03300587460398674, -0.02718503028154373, -0.044959306716918945, 0.0030237650498747826, -0.05190145596861839, 0.012220077216625214, -0.01783592440187931, -0.016764800995588303, -0.052071258425712585, 0.03711467981338501, -0.0013657900271937251, 0.004784527700394392, 0.06670600175857544, 0.003934103064239025, -0.012328505516052246, -0.012429872527718544, 0.08907639980316162, 0.08682013303041458, 0.0584176629781723, 0.012320979498326778, 0.05809224024415016, -0.021401800215244293, -0.039905235171318054, 0.020213227719068527, 0.0015133920824155211, -0.024006502702832222, -0.022492552176117897, 0.029639173299074173, 0.06316069513559341, -0.026508349925279617, 0.07382911443710327, -0.039498861879110336, -0.018901009112596512, 0.012559108436107635, 0.02855513244867325, -0.0006830916390754282, 0.07165976613759995, -0.008569439873099327, 0.021798614412546158, -0.036176662892103195, -0.045260440558195114, 0.01933566853404045, -0.04682387411594391, -0.014982865191996098, 0.05441509932279587, 0.004127527587115765, 0.019617121666669846, 0.010423767380416393, 0.03759549930691719, 0.09026893973350525, -0.05823082849383354, 0.020370205864310265, -0.01434553973376751, 0.029704738408327103, -0.010171180590987206, 0.011547665111720562, -0.0280283372849226, -0.024248600006103516, -0.009266228415071964, -0.015520877204835415, -0.023797685280442238, -0.011227793991565704, -0.019939495250582695, 0.04702800139784813, -0.023689495399594307, -0.02342746965587139, 0.03215616196393967, -0.006557628512382507, -0.0331922322511673, -0.06661796569824219, -0.030369361862540245, -0.03642437979578972, -0.06131225824356079, -0.02390882559120655, 0.020560238510370255, 0.005843471270054579, -0.022924814373254776, -0.0019303845474496484, -0.02133873477578163, -0.040234245359897614, 0.051399633288383484, -0.05097384378314018, -0.020052898675203323, 0.00973091833293438, 0.022331442683935165, 0.01209117192775011, 0.03227078914642334, 0.04876062273979187, -0.008953206241130829, 0.00039513452793471515, -0.019155042245984077, 0.03497925400733948, 0.020946893841028214, 0.0219391118735075, -0.003909520339220762, -0.07490340620279312, 0.005848926957696676, 0.02043873630464077, -0.019020741805434227, -0.06343675404787064, 0.025233540683984756, 0.011096338741481304, 0.0014522324781864882, 0.04663390293717384, -0.012537705712020397, 0.012233078479766846, -0.027498895302414894, -0.012265760451555252, -0.016691232100129128, 0.007389629725366831, 0.02987196296453476, -0.0037918812595307827, 0.09036145359277725, 0.04549117386341095, -0.02439096011221409, -0.04952379688620567, -0.013040347956120968, -0.0001231183996424079, 0.002477184636518359, -0.01567082479596138, -0.04714646935462952, -0.015003620646893978, -0.08287695795297623, -0.021615799516439438, 0.01034584641456604, -0.018605409190058708, -0.032693050801754, 0.04330730065703392, 0.0406537763774395, -0.0248766727745533, 0.018043922260403633, -0.05140408128499985, 0.04245759919285774, -0.01855676993727684, -0.018760425969958305, -0.0018658681074157357, 0.02099219337105751, -0.025941818952560425, 0.00850550178438425, 0.014737979508936405, -0.06347603350877762, 0.019544631242752075, 0.0140923373401165, 0.03650985658168793, 0.01865251176059246, 0.03339443355798721, -0.012298072688281536 ]
[ -0.0752674788236618, -0.041934411972761154, -0.04986727610230446, -0.039103589951992035, 0.04878389835357666, -0.04384623467922211, -0.02936951257288456, 0.02934994176030159, 0.0027341905515640974, -0.026083361357450485, 0.037348031997680664, -0.013689002022147179, 0.0007840401376597583, -0.03200603276491165, 0.09290818125009537, 0.02778717316687107, 0.011299622245132923, -0.10124806314706802, 0.006615552119910717, 0.04714363068342209, 0.001429852331057191, -0.0495295412838459, -0.02329583466053009, -0.020738184452056885, -0.004092316143214703, 0.007612188346683979, 0.02555052749812603, -0.04037217050790787, -0.01467876322567463, -0.1740889847278595, 0.012550939805805683, 0.01687927544116974, 0.08269505947828293, -0.016858160495758057, 0.030846230685710907, 0.06705349683761597, 0.036877114325761795, 0.0026864036917686462, -0.015362042002379894, 0.044102221727371216, 0.009384897537529469, 0.007533013354986906, -0.04249356687068939, 0.002561223693192005, 0.011988142505288124, 0.005888760089874268, -0.014053433202207088, -0.028174731880426407, -0.06133223697543144, 0.008604713715612888, -0.07784900814294815, -0.026698462665081024, -0.022219693288207054, -0.030401820316910744, 0.004634876269847155, 0.028916778042912483, 0.03896241635084152, 0.08908182382583618, 0.0029009939171373844, 0.016225207597017288, 0.039514463394880295, -0.010772600769996643, -0.13116930425167084, 0.07278117537498474, 0.05708436295390129, 0.055599961429834366, -0.041034139692783356, -0.04015418142080307, -0.02041388489305973, 0.0772382840514183, 0.029890498146414757, -0.025543179363012314, -0.02633466199040413, 0.029788600280880928, 0.006905830930918455, 0.029482945799827576, 0.003126885276287794, 0.030254196375608444, 0.029825404286384583, -0.03547314926981926, -0.029197050258517265, 0.00884684082120657, -0.036643240600824356, 0.008570726960897446, -0.07025454193353653, 0.01688455604016781, -0.024749191477894783, 0.07268593460321426, 0.042752705514431, 0.026378212496638298, 0.03618304058909416, 0.025954626500606537, 0.045246172696352005, -0.023968268185853958, -0.06826416403055191, -0.022791869938373566, 0.008286462165415287, 0.02582903578877449, -0.05540553480386734, 0.44357287883758545, -0.010680610314011574, -0.02404910698533058, 0.06983736902475357, 0.012794781476259232, -0.008156420662999153, -0.014524377882480621, 0.0016867474187165499, -0.05792444571852684, 0.05390847101807594, -0.015403208322823048, 0.021127965301275253, 0.015154235996305943, 0.07637222111225128, -0.04691939055919647, 0.0008850991725921631, 0.01778479665517807, 0.007538514211773872, 0.031397297978401184, -0.013636184856295586, 0.006420272868126631, -0.03062843717634678, 0.026919428259134293, 0.036390796303749084, -0.00027605946525000036, -0.01991456374526024, -0.02297009900212288, 0.017724713310599327, 0.06175319850444794, 0.03795326128602028, 0.010896718129515648, 0.04019268602132797, -0.023853180930018425, -0.07944053411483765, 0.010529248975217342, -0.011090992018580437, 0.00794451218098402, 0.01011717040091753, -0.019820410758256912, 0.008538826368749142, 0.04517831653356552, 0.0026826970279216766, 0.015518207103013992, 0.015205101110041142, -0.04126201942563057, -0.034086767584085464, 0.10090098530054092, 0.05888960883021355, -0.034445833414793015, -0.017297232523560524, -0.0449887290596962, -0.0018902916926890612, 0.040515217930078506, 0.008773254230618477, -0.0639873668551445, 0.01975512132048607, 0.015839654952287674, 0.10077773779630661, -0.020156264305114746, -0.07192231714725494, 0.0005228117224760354, -0.033589426428079605, -0.019314294680953026, -0.052475620061159134, 0.05501542612910271, 0.06192393600940704, -0.11403994262218475, -0.015268992632627487, 0.0022048542741686106, 0.024772154167294502, -0.04373591020703316, -0.02162991277873516, 0.015876637771725655, -0.01288500428199768, 0.006336594931781292, 0.053703125566244125, -0.04158115014433861, -0.045899197459220886, 0.000537568936124444, 0.03189295902848244, 0.02534651756286621, 0.019794613122940063, 0.0002598637656774372, -0.015024775639176369, -0.012439184822142124, -0.061724234372377396, -0.07973455637693405, -0.04397519677877426, 0.0024244904052466154, -0.027761122211813927, -0.00006507695798063651, -0.04432135447859764, 0.013929052278399467, -0.09059306234121323, 0.08979429304599762, -0.019659334793686867, -0.04928596317768097, 0.004553086590021849, -0.0020560456905514, -0.035234104841947556, -0.01292418222874403, -0.06110256537795067, 0.03132648020982742, -0.0502890981733799, 0.021762967109680176, -0.07615295052528381, 0.020174922421574593, 0.0710083395242691, -0.032215118408203125, 0.0928826779127121, 0.03639081493020058, -0.014476786367595196, -0.02948303334414959, 0.003218113910406828, 0.04600093141198158, -0.005393469240516424, -0.008609049953520298, 0.006295211147516966, 0.01415751501917839, 0.002147221937775612, 0.02835342474281788, -0.029602907598018646, 0.03575371205806732, -0.017003189772367477, -0.33731746673583984, -0.04281343147158623, -0.01960836909711361, -0.0026070887688547373, -0.007629784289747477, -0.04252228885889053, 0.025270044803619385, -0.007518531754612923, -0.010345817543566227, 0.027708640322089195, 0.07877809554338455, -0.013783158734440804, 0.0140930050984025, -0.08310249447822571, -0.014671888202428818, 0.013425481505692005, -0.042934760451316833, -0.003104422939941287, -0.03362351283431053, 0.002537534339353442, -0.005331982858479023, -0.0021994200069457293, -0.01728862151503563, -0.05949722230434418, -0.00849663745611906, -0.03172617405653, 0.10213403403759003, 0.0078100827522575855, 0.08406811207532883, -0.028474489226937294, 0.045199256390333176, 0.010921929031610489, 0.0048806327395141125, -0.11799473315477371, 0.02057987079024315, -0.023488672450184822, 0.03774271905422211, -0.0028280685655772686, -0.0073334407061338425, -0.021133720874786377, -0.044200409203767776, 0.005613116081804037, -0.06396984308958054, -0.055694397538900375, -0.03476480022072792, 0.03375449776649475, -0.03186791390180588, -0.040411219000816345, -0.03557463735342026, 0.06288925558328629, 0.009329446591436863, 0.009899615310132504, 0.03416154533624649, 0.00033012981293722987, 0.0058213756419718266, -0.04413948580622673, -0.07634370774030685, 0.0277476254850626, 0.019849922508001328, 0.0071189082227647305, 0.02571582980453968, 0.0582784004509449, 0.012980630621314049, -0.04685143381357193, 0.03852856531739235, -0.01326684933155775, -0.0013556904159486294, 0.023540807887911797, 0.028385359793901443, -0.022517651319503784, -0.00568866403773427, 0.12216709554195404, -0.011123592033982277, -0.01027543656527996, 0.016412831842899323, 0.02539750561118126, -0.0012132796691730618, 0.015174356289207935, 0.02007635496556759, 0.020573779940605164, 0.031222263351082802, -0.02547614835202694, 0.03905964270234108, -0.019864743575453758, 0.003076162189245224, 0.027937736362218857, -0.0071252151392400265, -0.06992828845977783, 0.05459575355052948, 0.024345820769667625, -0.020800210535526276, -0.010657369159162045, -0.056185755878686905, -0.04829581454396248, 0.08709857612848282, 0.013923524878919125, -0.23544356226921082, 0.01694822497665882, 0.04344787448644638, 0.03458629548549652, -0.011930997483432293, 0.03564770892262459, 0.030951326712965965, -0.05538441240787506, 0.002072226256132126, 0.028208764269948006, 0.02689933218061924, 0.02695794403553009, 0.02379244938492775, -0.009959946386516094, 0.06080857291817665, -0.03440144658088684, 0.047138411551713943, -0.011313126422464848, 0.021369313821196556, -0.00046729855239391327, 0.021070539951324463, -0.009976504370570183, 0.15521201491355896, 0.02269667014479637, 0.006449464242905378, 0.03996817022562027, -0.005539193283766508, 0.016413334757089615, 0.06695478409528732, -0.0017979907570406795, -0.010360034182667732, 0.014121324755251408, 0.009143424220383167, -0.0029216003604233265, 0.01708776131272316, -0.07310239970684052, -0.030051346868276596, 0.021770905703306198, 0.021659057587385178, -0.0032809521071612835, 0.02194303274154663, -0.0033163786865770817, -0.00665472773835063, 0.043979186564683914, 0.06254985928535461, 0.002749939216300845, -0.007347812410444021, -0.05004510283470154, -0.058859605342149734, -0.006345571018755436, -0.03208223357796669, -0.06033509597182274, -0.009977556765079498, -0.008603251539170742, 0.005559439305216074, 0.08308085799217224, 0.01177624799311161, -0.013584880158305168, 0.0026775263249874115, -0.01876102201640606, -0.02442667819559574, -0.02753513492643833, 0.0758698582649231, 0.021886980161070824, 0.010675323195755482 ]
[ 0.005873783957213163, 0.007329063955694437, -0.03823724389076233, 0.022458450868725777, -0.007430166006088257, -0.02140510454773903, -0.0031672653276473284, 0.0027520691510289907, -0.0023914885241538286, 0.028104372322559357, -0.011400396004319191, 0.034816447645425797, 0.03667030483484268, -0.034675344824790955, 0.004958894569426775, 0.00526028499007225, -0.009316646493971348, -0.027778789401054382, 0.021810267120599747, -0.0247038584202528, -0.025318799540400505, 0.014843118377029896, -0.006559733767062426, 0.0036784540861845016, -0.026944467797875404, 0.030727017670869827, -0.0069770789705216885, 0.0033798147924244404, 0.015411421656608582, -0.14006482064723969, -0.030000897124409676, -0.0028985401149839163, 0.02143891528248787, 0.007630524691194296, -0.01154056191444397, 0.00013289749040268362, 0.0012645574752241373, -0.006050290074199438, 0.018236437812447548, -0.009655567817389965, 0.014557681046426296, -0.015185295604169369, -0.0217437744140625, -0.004396998323500156, -0.029729070141911507, -0.020323481410741806, -0.0013100733049213886, -0.021857677027583122, -0.0007879367913119495, -0.01591971330344677, -0.06219210848212242, -0.022033458575606346, -0.020196987316012383, -0.007630276959389448, -0.0028715406078845263, -0.030840160325169563, 0.011277568526566029, -0.013593838550150394, 0.011856724508106709, -0.010951529256999493, 0.03806346654891968, -0.023395903408527374, -0.020018696784973145, -0.019881438463926315, -0.007413711864501238, -0.010261878371238708, -0.01945180632174015, 0.019090672954916954, -0.02479640394449234, 0.0039977338165044785, 0.005784005858004093, -0.009178277105093002, -0.05188717320561409, -0.028359662741422653, 0.0149421077221632, 0.02097253128886223, 0.02436050772666931, -0.016552085056900978, -0.004252930637449026, -0.0063385809771716595, -0.07283060252666473, 0.027079647406935692, -0.023598263040184975, -0.0023685861378908157, -0.037450771778821945, -0.017058536410331726, 0.030591491609811783, 0.0002952617360278964, 0.028593743219971657, -0.002754826797172427, 0.0023229834623634815, 0.00520215043798089, -0.008057604543864727, 0.0063033862970769405, -0.09019716084003448, -0.008104910142719746, -0.021185390651226044, -0.011730322614312172, -0.0021820601541548967, 0.8537620306015015, -0.003216669661924243, 0.019596118479967117, 0.027991460636258125, -0.012112726457417011, -0.022992290556430817, -0.007590891793370247, 0.007169618736952543, 0.019511844962835312, 0.0197901651263237, -0.03863436356186867, 0.007629387080669403, 0.024772142991423607, 0.03741922974586487, 0.020662585273385048, 0.021357791498303413, 0.027782604098320007, -0.011455207131803036, 0.004302754066884518, 0.003177613951265812, 0.026957660913467407, 0.04852510616183281, 0.02872747927904129, 0.02222040854394436, -0.007936283946037292, 0.0228646881878376, -0.15335027873516083, -0.01317351683974266, -7.866933494740772e-33, 0.016853252425789833, 0.00678836228325963, -0.013162258081138134, 0.0047391182743012905, 0.012796263210475445, 0.013984499499201775, 0.0005040780524723232, 0.015999533236026764, -0.028759798035025597, -0.013564841821789742, -0.0064327297732234, 0.004644171334803104, 0.014809072948992252, -0.016642123460769653, 0.012904387898743153, -0.029586713761091232, 0.008357692509889603, 0.04110470041632652, 0.003976634703576565, 0.011796643026173115, 0.03224065154790878, 0.006837262772023678, -0.014089154079556465, 0.032809317111968994, 0.037945862859487534, 0.004961602855473757, 0.020635435357689857, -0.012957819737493992, 0.007463883142918348, -0.03303991258144379, -0.004970946349203587, 0.03646658733487129, -0.020566465333104134, -0.012809446081519127, -0.006065370049327612, -0.050939735025167465, -0.034942377358675, 0.013258552178740501, -0.007660710718482733, -0.026393238455057144, -0.03290999308228493, 0.016095831990242004, -0.03176431357860565, -0.005677388980984688, -0.013664436526596546, 0.018102245405316353, -0.0024479650892317295, 0.061222825199365616, 0.02040034905076027, 0.0031753636430948973, -0.006224353797733784, -0.013043238781392574, 0.0413285493850708, 0.0241925660520792, 0.0020863304380327463, 0.013409752398729324, -0.0036672342102974653, -0.0017912667244672775, 0.014790852554142475, 0.020562201738357544, 0.006454754620790482, 0.007480087224394083, -0.009902539663016796, 0.02877029962837696, -0.021226851269602776, -0.006000586319714785, 0.04498429596424103, 0.05126766487956047, 0.02164720557630062, 0.0025148228742182255, -0.04092874377965927, 0.011515052057802677, -0.003966503776609898, 0.009339851327240467, 0.002163407625630498, -0.04488150030374527, 0.003684411058202386, 0.028334012255072594, -0.0034655628260225058, 0.04161421209573746, -0.013649268075823784, -0.003661039052531123, -0.011496400460600853, -0.03334556892514229, -0.028263388201594353, 0.028590824455022812, 0.012096887454390526, 0.000882148917298764, -0.006373696494847536, 0.007592793088406324, -0.0011671638349071145, 0.023198910057544708, -0.007837112993001938, -0.0333578996360302, -0.004910909570753574, 8.014713705790273e-33, -0.01097919512540102, -0.04922226443886757, 0.0018777396762743592, 0.012557651847600937, 0.03965263441205025, -0.012242485769093037, 0.02303515560925007, 0.003201353596523404, -0.05791933834552765, 0.03303249552845955, -0.014190361835062504, -0.023107508197426796, -0.02600179985165596, -0.002454395405948162, 0.061412811279296875, -0.04894006624817848, 0.04281624034047127, -0.04198016971349716, 0.03554847463965416, 0.021156812086701393, -0.00818420946598053, -0.003204594599083066, 0.012303334660828114, -0.004911302588880062, 0.036230701953172684, 0.05470990017056465, -0.024008503183722496, 0.02265298366546631, 0.011781999841332436, -0.0005735878949053586, 0.013403218239545822, 0.01270162034779787, 0.011798379011452198, -0.00020256618154235184, -0.04953984171152115, 0.009877556003630161, 0.001714229816570878, -0.023484744131565094, -0.006212812848389149, -0.01106424443423748, 0.04973308742046356, 0.011997892521321774, -0.011036211624741554, 0.03854742273688316, 0.008266930468380451, 0.02304902859032154, 0.00012688813148997724, 0.006582763511687517, -0.015006229281425476, 0.0014937532832846045, -0.009569646790623665, 0.03309496492147446, 0.00436369376257062, -0.010056329891085625, -0.005755212157964706, -0.025778265669941902, -0.0189170204102993, 0.002961631864309311, -0.028089074417948723, 0.016208507120609283, -0.01988336816430092, -0.009300455451011658, 0.00022201897809281945, 0.018500713631510735, -0.05881552770733833, -0.01094901841133833, 0.03496493771672249, 0.015060524456202984, 0.0025315869133919477, -0.02069740928709507, -0.00410209596157074, -0.0017755491426214576, 0.010492142289876938, 0.0344511978328228, -0.0065851882100105286, 0.01407986506819725, -0.04081584885716438, 0.006068958900868893, -0.014032667502760887, 0.01839989610016346, 0.004816514439880848, 0.02765527553856373, 0.0046715824864804745, 0.004220058675855398, 0.0075613087974488735, 0.03383810818195343, -0.03374439477920532, 0.02255188673734665, -0.009478393942117691, -0.00836996454745531, -0.03383487090468407, -0.03687264025211334, -0.00016226689331233501, 0.0008364482782781124, -0.0008371041622012854, -1.3575633062146153e-8, -0.012011597864329815, 0.012738844379782677, 0.011215701699256897, 0.03056081011891365, 0.0563114732503891, 0.010135658085346222, -0.02747175097465515, 0.031147055327892303, -0.0006246695993468165, 0.03526297211647034, 0.05583944171667099, -0.050686854869127274, -0.021717576310038567, 0.03288985416293144, -0.00437386566773057, -0.0468989759683609, 0.010281994007527828, -0.028329381719231606, 0.03492610156536102, 0.02431686408817768, 0.01772625558078289, 0.049415770918130875, -0.016731683164834976, -0.01411920040845871, 0.011569175869226456, -0.01151986327022314, -0.017672378569841385, -0.08258122205734253, -0.004155430477112532, -0.020506195724010468, 0.007270938716828823, -0.04058896750211716, -0.01037226989865303, 0.03916541114449501, -0.01990431174635887, -0.06116354465484619, 0.015661342069506645, 0.014604051597416401, -0.0005718496977351606, 0.009977632202208042, -0.011671125888824463, 0.019514381885528564, -0.02052544802427292, -0.04198235273361206, -0.03491391986608505, -0.00972496997565031, -0.046678099781274796, 0.00328382127918303, 0.017394011840224266, -0.05139642581343651, 0.009653642773628235, -0.030477512627840042, 0.048592232167720795, 0.03819979727268219, 0.036063648760318756, 0.026076745241880417, -0.0018500551814213395, -0.03142382577061653, -0.02986212819814682, 0.015138932503759861, 0.010121398605406284, -0.0040197186172008514, -0.03887106478214264, -0.027000633999705315 ]
data-science-discovery-work
https://markhneedham.com/blog/2012/12/09/data-science-discovery-work
false
2012-12-31 22:39:15
Haskell: Downloading the core library source code
[ "haskell" ]
[ "Haskell" ]
I've started playing around with Haskell again and since I'm doing so on a new machine I don't have a copy of the language source code. I wanted to rectify that situation but my Google fu was weak and it took me way too long to figure out how to get it so I thought I'd better document it for future me. The easiest way is to clone the copy of the GHC repository on github: ~~~text git clone https://github.com/ghc/ghc.git ~~~ Initially that doesn't have any of the code for the core libraries but running the following command (which takes ages!) sorts it out: ~~~text cd ghc ./sync-all get ~~~ Noticing that the core libraries weren't there initially I thought I must have done something wrong so I went to the documentation for the function that I wanted to see the source for - +++<cite>+++http://hackage.haskell.org/packages/archive/array/0.2.0.0/doc/html/Data-Array-MArray.html#v%3AgetAssocs[getAssocs]+++</cite>+++. From that page there is http://hackage.haskell.org/packages/archive/array/0.2.0.0/doc/html/src/Data-Array-Base.html#getAssocs[a link to the source for that function] and http://hackage.haskell.org/packages/archive/array/0.2.0.0/doc/html/[a bit tweaking of the URL] lets us know that this function is defined in the +++<cite>+++array+++</cite>+++ package. Most of the base packages are available from the http://darcs.haskell.org/packages/[Haskell darcs repository] so I ended up cloning the ones I wanted in the time that it took for the +++<cite>+++sync-all+++</cite>+++ script to run. ~~~text darcs get http://darcs.haskell.org/packages/base/ # gets most of the packages we'd be interested in darcs get http://darcs.haskell.org/packages/array/ # gets the array package ~~~ Of course I could have just been patient and waited for the script to finish\...
null
null
[ -0.002314786659553647, 0.028408847749233246, -0.03842625021934509, 0.0482395775616169, 0.06367910653352737, 0.02352723851799965, 0.026218464598059654, 0.03834380954504013, 0.033683858811855316, -0.011640848591923714, -0.024058816954493523, -0.004173416178673506, -0.06046700105071068, 0.018652064725756645, -0.026593400165438652, 0.04810464382171631, 0.05862009525299072, -0.014026487246155739, -0.02663152851164341, 0.02910502441227436, 0.01258586160838604, 0.05426016077399254, -0.029027510434389114, 0.023865843191742897, 0.016299596056342125, 0.02546522580087185, 0.03613461181521416, 0.01864377222955227, -0.05086686089634895, -0.009906558319926262, 0.03117300197482109, -0.029695795848965645, 0.01069511566311121, -0.027477074414491653, 0.027398353442549706, -0.0028766689356416464, -0.0195618849247694, 0.010975241661071777, 0.022066785022616386, 0.020256850868463516, -0.058819931000471115, 0.026716142892837524, -0.0021799027454108, 0.007260038983076811, -0.08665547519922256, 0.013028670102357864, -0.04793458804488182, 0.032985590398311615, -0.043877579271793365, -0.005891317967325449, -0.05114467814564705, 0.0018755882047116756, -0.026039710268378258, -0.02690146677196026, -0.00898247305303812, 0.05707021802663803, 0.01650489866733551, -0.07488398998975754, 0.02107502892613411, -0.0408891923725605, -0.004460511263459921, -0.010974974371492863, 0.03257545828819275, 0.05825738608837128, -0.0052617075853049755, -0.027062710374593735, -0.01884480193257332, 0.028302665799856186, -0.027300026267766953, -0.027145354077219963, 0.004729498643428087, -0.00016542896628379822, -0.029919691383838654, -0.021137893199920654, 0.011035220697522163, -0.02602214366197586, -0.011499738320708275, 0.07415300607681274, 0.023796048015356064, 0.036691129207611084, -0.016009658575057983, 0.013237479142844677, -0.008101357147097588, 0.01554968673735857, 0.017092278227210045, -0.028150392696261406, -0.0479930117726326, -0.0038158921524882317, -0.06665701419115067, 0.06782964617013931, -0.010495365597307682, -0.051122475415468216, 0.011488452553749084, 0.011164909228682518, 0.03522847965359688, 0.030716419219970703, 0.026648864150047302, -0.0124099375680089, 0.008645166642963886, -0.00623856158927083, -0.04291720315814018, -0.006362284533679485, 0.00797367561608553, -0.010834861546754837, -0.07339131087064743, 0.010541891679167747, -0.01499713584780693, -0.01705147698521614, -0.011667896993458271, -0.020965727046132088, 0.00410789018496871, 0.005477792117744684, -0.03054441511631012, 0.014082997106015682, -0.0654245913028717, 0.0728636085987091, -0.00687578646466136, -0.030620012432336807, -0.009456578642129898, 0.020134368911385536, 0.037423133850097656, 0.03520951420068741, -0.005621232092380524, 0.07794538140296936, 0.037828922271728516, 0.06134410575032234, 0.0006849556230008602, 0.043288324028253555, -0.0443352572619915, -0.06741097569465637, -0.022534480318427086, 0.0695197582244873, -0.04440053552389145, 0.01493728905916214, 0.005476684309542179, -0.016662176698446274, -0.039629336446523666, 0.025716938078403473, 0.056232377886772156, 0.04206801578402519, 0.003875356400385499, -0.007601640652865171, 0.0030287564732134342, -0.028522033244371414, 0.006320056039839983, 0.018344536423683167, -0.03353030979633331, -0.020793935284018517, -0.021696612238883972, 0.05194065347313881, 0.003610838670283556, 0.026731396093964577, 0.05633920431137085, -0.03474166989326477, 0.03973083943128586, 0.08819608390331268, 0.03511187061667442, 0.024250302463769913, -0.009697867557406425, 0.017116937786340714, 0.02122226171195507, 0.054901428520679474, -0.00004542637907434255, 0.033880606293678284, -0.013026971369981766, -0.018237516283988953, -0.020245565101504326, 0.03485538065433502, -0.02096995711326599, -0.02950764261186123, -0.0507640577852726, -0.043191395699977875, 0.07259295135736465, -0.024708280339837074, 0.007868149317800999, 0.012803079560399055, 0.09698038548231125, 0.020945461466908455, 0.04865100234746933, -0.0019184747943654656, -0.08434057235717773, 0.034052252769470215, 0.005711717065423727, 0.016145162284374237, 0.009122444316744804, -0.007571790833026171, 0.08379150927066803, 0.011356962844729424, 0.020719967782497406, 0.023630701005458832, -0.0847306028008461, -0.08670829236507416, -0.009630617685616016, -0.02635233849287033, 0.07260026037693024, -0.02747739851474762, -0.01091332733631134, 0.0901026502251625, 0.011962680146098137, 0.03547430783510208, 0.011796310544013977, -0.008486959151923656, 0.01765354536473751, -0.0441671647131443, -0.03714631497859955, 0.04410012438893318, 0.02819819189608097, -0.004497969523072243, -0.0411817692220211, -0.02705059014260769, 0.004123888444155455, 0.002507390221580863, 0.03007402829825878, -0.009951647371053696, 0.04615992680191994, 0.0318528413772583, -0.0016376192215830088, -0.0165043156594038, 0.052283450961112976, -0.0663381889462471, 0.040336910635232925, 0.04945990815758705, -0.006021737586706877, 0.005074881482869387, -0.005419024266302586, 0.11341717094182968, 0.0930214375257492, -0.032555822283029556, -0.01722382940351963, 0.03233106806874275, 0.006300299894064665, -0.02414938248693943, -0.01707649789750576, 0.005409572273492813, -0.004107454791665077, -0.018558286130428314, -0.00897064246237278, -0.000019588263967307284, -0.002807476557791233, -0.01595131680369377, -0.013392831198871136, 0.08032329380512238, -0.014724994078278542, 0.039852820336818695, 0.005603619385510683, -0.05648822337388992, -0.019545402377843857, -0.02870321087539196, -0.0725669339299202, -0.01802908070385456, 0.020372649654746056, 0.0014866853598505259, 0.056013207882642746, -0.031781140714883804, -0.031706105917692184, -0.022374114021658897, -0.04209589958190918, 0.022977005690336227, 0.027990182861685753, 0.0891307145357132, -0.02188500389456749, 0.03181817755103111, -0.024017449468374252, 0.01599804311990738, -0.007418003864586353, -0.03201631084084511, -0.04016195982694626, -0.032242875546216965, -0.011501496657729149, 0.025328626856207848, 0.024852488189935684, 0.018485458567738533, 0.012691265903413296, -0.017793193459510803, -0.004109428729861975, -0.025760890915989876, 0.005401370115578175, -0.018888121470808983, -0.05500375106930733, -0.03613072261214256, -0.030379660427570343, 0.06825683265924454, -0.05249805003404617, -0.018493635579943657, -0.004768401384353638, -0.05188551917672157, 0.0786416083574295, -0.07206696271896362, -0.022868169471621513, 0.0036350854206830263, 0.00941792968660593, 0.030944380909204483, -0.041764721274375916, 0.026262281462550163, 0.06083468720316887, 0.012586481869220734, 0.04378055781126022, 0.012118552811443806, 0.019384237006306648, 0.02864386886358261, -0.01019936241209507, 0.014858038164675236, 0.02072814665734768, 0.010510788299143314, -0.022624660283327103, -0.038387201726436615, 0.004072668496519327, -0.04061100259423256, -0.271048367023468, 0.02209080569446087, -0.04375986382365227, -0.04140723496675491, 0.03125713765621185, -0.022807130590081215, -0.019393036141991615, -0.06270375847816467, -0.011962982825934887, 0.023821871727705002, -0.015996607020497322, -0.03656619414687157, -0.026659803465008736, 0.05048150196671486, 0.019866416230797768, 0.032571084797382355, -0.00920678861439228, -0.039837222546339035, -0.020988335832953453, 0.03900182992219925, -0.01793205924332142, -0.046211790293455124, 0.008742143400013447, 0.052842479199171066, 0.009319262579083443, 0.035715434700250626, -0.10525774955749512, 0.042643751949071884, -0.04311172291636467, -0.01884833350777626, -0.013952495530247688, -0.011881977319717407, -0.0035354052670300007, -0.006739312317222357, -0.0341322161257267, 0.0019428166560828686, 0.02491493709385395, 0.019250009208917618, 0.0056676920503377914, 0.02614239789545536, -0.010887062177062035, -0.02399268001317978, -0.0023442236706614494, -0.02604999579489231, 0.07638032734394073, -0.020615987479686737, -0.07713545858860016, -0.04029567539691925, -0.039699021726846695, 0.09895921498537064, -0.04481841251254082, -0.03207354620099068, -0.008108154870569706, 0.06596191227436066, -0.015919281169772148, -0.0029848883859813213, 0.007916031405329704, 0.002585316775366664, -0.04420088231563568, -0.01845959946513176, -0.025885073468089104, -0.02893962897360325, -0.010140408761799335, -0.05665244534611702, -0.018173299729824066, -0.058117274194955826, -0.059002164751291275, -0.025533996522426605, 0.05613745003938675, 0.026311133056879044, -0.048201121389865875, -0.01625986397266388, -0.028974536806344986, -0.10794880986213684, -0.028264004737138748, -0.04430409148335457, -0.05144321545958519, -0.0005825443658977747, 0.015514455735683441, 0.07429470121860504, -0.02772260084748268, -0.07676523923873901, 0.029366973787546158, 0.005041652359068394, 0.016735179349780083, -0.025276217609643936, 0.01766204833984375, -0.0022977693006396294, 0.005681031849235296, -0.01662595383822918, 0.06085321679711342, -0.025286106392741203, 0.004826277494430542, -0.031966354697942734, 0.00436911266297102, 0.010033071972429752, 0.007677792571485043, 0.005534451920539141, 0.023693477734923363, 0.04840950295329094, 0.03066602721810341, -0.06324019283056259, 0.012278364971280098, -0.05152888968586922, -0.02458767779171467, -0.014287962578237057, -0.06386075168848038, 0.03057112544775009, 0.047622259706258774, 0.01298874244093895, -0.03725128620862961, -0.036335401237010956, 0.030165236443281174, -0.0757281705737114, -0.046314116567373276, -0.001031288760714233, 0.026283858343958855, 0.02832142263650894, 0.023242773488163948, 0.013690287247300148, -0.054144807159900665, -0.015458050183951855, 0.013141818344593048, -0.027413470670580864, -0.0371851846575737, -0.013099949806928635, -0.005604674573987722, -0.01127742137759924, 0.016209427267313004, 0.017521372064948082, 0.001339058973826468, 0.02033502236008644, 0.028874624520540237, -0.025502106174826622, 0.030736155807971954, -0.003283613594248891, -0.020996466279029846, -0.020892873406410217, -0.016654688864946365, -0.015990037471055984, -0.0000703718833392486, -0.0016726531321182847, 0.005242970772087574, 0.034163571894168854, 0.052994951605796814, -0.027789946645498276, 0.030081333592534065, 0.02357899583876133, 0.0008494543144479394, 0.0026488720905035734, -0.010644021444022655, -0.04198024421930313, 0.006544589065015316, -0.02250831387937069, -0.019234485924243927, -0.012000707909464836, 0.04513875022530556, -0.00736879650503397, -0.047990113496780396, -0.02849535085260868, 0.007707595359534025, -0.0446464940905571, -0.017133010551333427, -0.009460542351007462, -0.010629887692630291, 0.06592513620853424, -0.001982663758099079, 0.028140146285295486, -0.0276737529784441, 0.008946564048528671, 0.011710925959050655, 0.027186639606952667, -0.023887239396572113, -0.006052609998732805, 0.024919474497437477, 0.0035027137491852045, 0.00831582210958004, 0.03261491283774376, 0.061242762953042984, -0.003179380903020501, -0.021945476531982422, -0.01599438115954399, 0.0050771161913871765, 0.007252965588122606, 0.04327337443828583, 0.018269816413521767, -0.001218097866512835, -0.0098032858222723, -0.025206686928868294, -0.032378777861595154, -0.02533935382962227, -0.00037419446744024754, -0.031589798629283905, 0.01671687699854374, -0.021848062053322792, -0.07326124608516693, 0.018702391535043716, 0.0207317303866148, 0.018636271357536316, 0.0027738595381379128, 0.01145500410348177, -0.012451939284801483, -0.023300202563405037, 0.019329320639371872, 0.06383027136325836, -0.04406915232539177, -0.010969046503305435, 0.009759343229234219, 0.05509145185351372, -0.0046269516460597515, 0.02219364047050476, -0.06787125766277313, -0.013392158783972263, -0.006326053757220507, -0.014701953157782555, 0.011179727502167225, -0.04682692140340805, -0.0135917067527771, -0.01034709345549345, -0.006101365201175213, -0.02515416219830513, 0.017046449705958366, 0.011188029311597347, 0.011352615430951118, -0.04031815007328987, -0.016099415719509125, -0.022269921377301216, -0.002184355864301324, 0.022629909217357635, -0.026681961491703987, 0.04171105846762657, -0.03421546518802643, 0.049647796899080276, 0.014491334557533264, 0.01787877455353737, -0.00942731648683548, -0.04544861614704132, 0.01182794664055109, -0.06815888732671738, 0.0457083061337471, -0.0006854355451650918, 0.0009234691970050335, -0.003881247015669942, 0.00912094209343195, -0.06589020043611526, -0.020532064139842987, 0.0040178121998906136, -0.018577074632048607, 0.009363903664052486, 0.038497183471918106, -0.01941567100584507, 0.04194717854261398, 0.0003835125535260886, -0.027785707265138626, 0.04889105260372162, -0.041416581720113754, -0.041602086275815964, 0.004216900561004877, -0.041488081216812134, 0.027830004692077637, 0.033580269664525986, 0.02299918793141842, -0.04630909860134125, 0.02063317783176899, 0.040277447551488876, 0.02089507319033146, 0.024579040706157684, -0.02176482044160366, 0.03457722067832947, -0.03495403006672859, -0.02356504648923874, -0.0697697103023529, 0.019003886729478836, 0.02802400104701519, -0.005015850532799959, -0.025037478655576706, 0.001721563981845975, -0.017999596893787384, 0.04573557898402214, -0.046632684767246246, -0.019542109221220016, 0.03317466005682945, 0.01182763371616602, 0.0074807945638895035, 0.015092135407030582, -0.05377709120512009, 0.02118760161101818, 0.056132085621356964, -0.012847062200307846, -0.00043459664448164403, -0.04549355432391167, 0.0614587627351284, -0.0025531717110425234, 0.042509470134973526, -0.009576834738254547, -0.02632259577512741, 0.06245097890496254, 0.03796324506402016, 0.029476560652256012, 0.05908307433128357, 0.01720297709107399, 0.015917539596557617, 0.014066562056541443, -0.006521453615278006, -0.013652490451931953, 0.036603767424821854, -0.023418957367539406, -0.04156297445297241, 0.030504362657666206, 0.011752806603908539, -0.018461722880601883, -0.03475037217140198, 0.06107361987233162, 0.031286437064409256, -0.006727076135575771, -0.058864787220954895, 0.05671251565217972, -0.05770215764641762, 0.016634654253721237, -0.0006322315894067287, -0.021187644451856613, -0.05154353752732277, 0.029797544702887535, 0.006283507216721773, 0.008439354598522186, 0.06354493647813797, 0.007515919394791126, -0.03637157380580902, -0.004477584268897772, 0.07622568309307098, 0.07921978831291199, 0.042710162699222565, 0.011982516385614872, 0.05238890275359154, -0.013134459964931011, -0.03063352033495903, 0.02771724760532379, -0.009486931376159191, 0.00047217606334015727, -0.025476006790995598, -0.0009512482793070376, 0.06226480379700661, -0.03719470649957657, 0.04639924317598343, -0.018756773322820663, 0.011280081234872341, -0.010068143717944622, 0.022766832262277603, 0.02977750264108181, 0.07299772650003433, 0.019378408789634705, 0.05881694331765175, -0.013271826319396496, -0.05139543488621712, 0.018071582540869713, -0.014445008710026741, 0.0015102962497621775, 0.009745892137289047, -0.009227571077644825, 0.013755591586232185, 0.03546355664730072, 0.02233012206852436, 0.05508052930235863, 0.008666127920150757, 0.017207812517881393, -0.008684921078383923, 0.03963840752840042, 0.0017389983404427767, 0.008573790080845356, -0.03659943491220474, -0.039060693234205246, 0.003669331781566143, -0.045187149196863174, 0.0010782971512526274, 0.005803955718874931, -0.03197798132896423, 0.08029129356145859, -0.01637059822678566, 0.017933277413249016, 0.013924501836299896, -0.00863069761544466, -0.02734389901161194, -0.05469159781932831, -0.050443824380636215, -0.04812193661928177, -0.05102621763944626, -0.005712990649044514, 0.011446529068052769, -0.021207474172115326, -0.029979730024933815, -0.0364467054605484, -0.009865335188806057, -0.01470885705202818, 0.04396801069378853, -0.045423634350299835, -0.036603156477212906, -0.011651460081338882, 0.0049988748505711555, 0.013128375634551048, 0.037093453109264374, 0.03919001668691635, -0.0015363075071945786, -0.01335914433002472, -0.022295769304037094, 0.004818114452064037, 0.046614211052656174, 0.025623826310038567, 0.0117073068395257, -0.0798383578658104, 0.032530754804611206, 0.007719170302152634, 0.04430711641907692, -0.07965904474258423, -0.004159819334745407, 0.015217368490993977, -0.02708985097706318, 0.024558469653129578, -0.026877859607338905, -0.0021724801044911146, -0.012383386492729187, -0.012850463390350342, -0.023605141788721085, 0.013766520656645298, 0.0520520843565464, -0.0035883288364857435, 0.11838217824697495, 0.03276541456580162, -0.010957611724734306, -0.05057181045413017, -0.01478759665042162, -0.014023703522980213, 0.01960287243127823, -0.025364981964230537, -0.02035742811858654, -0.03869905322790146, -0.06746836751699448, -0.03386128321290016, -0.008357442915439606, -0.03866475075483322, -0.015793444588780403, 0.019159365445375443, 0.03563017025589943, -0.05826297029852867, 0.046944763511419296, -0.02334372140467167, 0.012698601931333542, -0.02451997809112072, -0.03360946476459503, -0.004058327060192823, 0.03170134499669075, -0.0042762793600559235, 0.014741329476237297, 0.03342783451080322, -0.05316024273633957, -0.007906251586973667, 0.008737063966691494, 0.015020220540463924, 0.01439701672643423, -0.013248784467577934, 0.03516161069273949 ]
[ -0.09324421733617783, -0.008118929341435432, -0.034942660480737686, 0.00004290148717700504, 0.014761545695364475, -0.05490440875291824, -0.03771090880036354, 0.043584637343883514, -0.02946392633020878, -0.056094828993082047, -0.006410663481801748, -0.05165534466505051, 0.007678988855332136, -0.0327015295624733, 0.10633066296577454, 0.004496570210903883, -0.019043918699026108, -0.030564576387405396, -0.017110291868448257, 0.00025687701418064535, -0.0029082465916872025, -0.06399320811033249, -0.033143360167741776, -0.03743661940097809, 0.007445717230439186, 0.05962890759110451, 0.041469454765319824, -0.0342099666595459, 0.02011905051767826, -0.21071505546569824, 0.0033094207756221294, 0.01375709380954504, 0.02651994489133358, -0.025674741715192795, 0.01966628059744835, 0.04739848151803017, 0.011036155745387077, -0.01111967395991087, -0.01439942978322506, 0.09249228239059448, 0.04268670454621315, 0.00648779422044754, -0.050305865705013275, -0.015542352572083473, 0.05350012704730034, -0.0006646843976341188, -0.0471641905605793, -0.018463341519236565, 0.006456897594034672, 0.020580345764756203, -0.07394256442785263, 0.005918370559811592, 0.011737814173102379, 0.0065200612880289555, -0.026902200654149055, 0.03192036598920822, 0.06830662488937378, 0.10349563509225845, 0.008041994646191597, 0.009261814877390862, -0.029987433925271034, 0.003238576464354992, -0.1229451596736908, 0.11725277453660965, 0.013109304942190647, 0.06521037220954895, -0.03099670261144638, -0.040890131145715714, -0.03431074321269989, 0.07566841691732407, -0.015989501029253006, -0.010697051882743835, -0.030143490061163902, 0.05350134149193764, 0.003302890108898282, -0.04521188139915466, -0.005492223892360926, 0.019885273650288582, 0.06010600924491882, -0.04145607352256775, -0.029521746560931206, -0.019585436210036278, -0.024939261376857758, -0.009807748720049858, -0.02720370516180992, -0.005289257504045963, -0.030567295849323273, 0.08902531862258911, 0.006440286990255117, -0.004561966750770807, 0.02951931022107601, -0.04252056032419205, 0.032267265021800995, 0.021190263330936432, -0.10567636042833328, -0.0015722471289336681, -0.014645258896052837, 0.05147857964038849, -0.016252731904387474, 0.42517077922821045, -0.030758073553442955, -0.015695087611675262, 0.0636652335524559, 0.04123140871524811, 0.01571136899292469, 0.012225543148815632, -0.032331716269254684, -0.022634189575910568, -0.006224918179214001, -0.048105597496032715, -0.0293299350887537, -0.010670622810721397, 0.07430269569158554, -0.06448721140623093, 0.05460047349333763, -0.01557212881743908, 0.0503457672894001, 0.000323324027704075, -0.002476367400959134, -0.00969668384641409, 0.01024373434484005, 0.013772677630186081, 0.029870258644223213, 0.0033951490186154842, -0.004089296795427799, -0.0118782389909029, 0.007146249059587717, 0.02039008028805256, 0.05325234681367874, 0.032698869705200195, 0.04707276448607445, -0.026903243735432625, -0.0381157286465168, -0.010430816560983658, -0.000747231300920248, 0.01874014362692833, 0.014774867333471775, -0.042509064078330994, 0.0034619870129972696, -0.01207948848605156, -0.010211117565631866, -0.031626757234334946, -0.007104760501533747, 0.001820355304516852, -0.04161400720477104, 0.07408124953508377, 0.011715048924088478, -0.017811650410294533, -0.012280839495360851, -0.04372605308890343, 0.011242122389376163, 0.0322483591735363, 0.023451700806617737, -0.037107329815626144, 0.030137239024043083, 0.02289951778948307, 0.04551238939166069, -0.005881366785615683, -0.05462242662906647, 0.0035323146730661392, -0.0333634614944458, -0.0370742604136467, -0.04799014702439308, 0.07483918219804764, 0.016341881826519966, -0.057439565658569336, -0.032264720648527145, 0.0012242329539731145, 0.04418429732322693, -0.0652334913611412, 0.034083765000104904, 0.03129513934254646, -0.014140026643872261, 0.03123939037322998, 0.028566516935825348, -0.046737879514694214, -0.037411049008369446, 0.01033048052340746, 0.05672973394393921, 0.024828722700476646, -0.004169582389295101, -0.005661024712026119, -0.06526163220405579, 0.0068848636001348495, -0.022250957787036896, -0.09468799829483032, -0.07244683057069778, 0.0003538225719239563, -0.010938618332147598, -0.003246012609452009, 0.012200388126075268, 0.030463991686701775, -0.036349400877952576, 0.03268878534436226, -0.005547524895519018, 0.0009874147363007069, 0.010581553913652897, -0.004174833185970783, 0.007907371036708355, -0.009541007690131664, -0.01808566227555275, 0.04553626477718353, -0.005225711967796087, 0.020187141373753548, -0.10277755558490753, 0.0037442671600729227, 0.05519982427358627, -0.05767716094851494, 0.09054316580295563, 0.031774844974279404, 0.022672638297080994, 0.02920635975897312, -0.022495673969388008, 0.02295120619237423, -0.010862763039767742, -0.04275026544928551, 0.006774747744202614, -0.02304701879620552, 0.032909221947193146, 0.01870879717171192, -0.046790946274995804, -0.02718006819486618, -0.04196230694651604, -0.33567872643470764, -0.03457186371088028, -0.03064586967229843, -0.013614888302981853, 0.002392082940787077, -0.09859034419059753, 0.014218052849173546, -0.029824204742908478, -0.008515031076967716, 0.04727645963430405, 0.1014339029788971, 0.01746498979628086, -0.00363800092600286, -0.08227764070034027, 0.0020609062630683184, 0.04625610262155533, -0.009436613880097866, -0.0009932779939845204, -0.003067409386858344, 0.013499625958502293, -0.01840093731880188, -0.005965023767203093, -0.021310653537511826, -0.054290831089019775, -0.019432054832577705, -0.04523276910185814, 0.10665418952703476, 0.043453384190797806, 0.08833771198987961, -0.036971766501665115, 0.052716780453920364, -0.015295218676328659, 0.012374332174658775, -0.07959212362766266, -0.02585770934820175, -0.02034050039947033, -0.00879942998290062, 0.0074400450102984905, 0.07236265391111374, -0.02608148567378521, -0.03480019047856331, -0.015517647378146648, -0.05181017518043518, -0.03217960149049759, -0.002229624195024371, 0.027460969984531403, -0.022266868501901627, -0.048423439264297485, -0.02554832026362419, 0.06761153042316437, 0.015203126706182957, -0.0004383221676107496, 0.010197073221206665, 0.043264240026474, -0.038681887090206146, 0.01078711450099945, -0.051462769508361816, -0.02680611051619053, 0.025946268811821938, -0.005253647919744253, 0.031920455396175385, 0.10926724970340729, 0.04512011259794235, -0.037866540253162384, -0.0128288259729743, -0.000014078053027333226, -0.0022359739523380995, 0.006568728014826775, 0.04787132516503334, -0.001031255815178156, -0.0038764344062656164, 0.099315345287323, -0.016871506348252296, 0.02210112474858761, -0.009232773445546627, 0.05426201596856117, -0.0211231280118227, 0.032753169536590576, 0.04240524023771286, -0.0038629774935543537, 0.0009703594259917736, 0.026118898764252663, -0.008455567993223667, -0.03778543695807457, -0.021098362281918526, 0.05180700495839119, -0.030148232355713844, -0.0029416666366159916, 0.03378145024180412, 0.030172161757946014, 0.0018479492282494903, 0.038116443902254105, 0.035228267312049866, -0.058468520641326904, 0.06642824411392212, 0.024573085829615593, -0.24675947427749634, 0.05619294196367264, 0.06398676335811615, 0.03084421157836914, -0.017850415781140327, 0.01118239015340805, 0.022844359278678894, -0.08299669623374939, -0.0252944715321064, -0.0047892010770738125, 0.06589630246162415, 0.042524442076683044, 0.018470851704478264, 0.0006282535614445806, 0.032074782997369766, -0.015574540011584759, 0.07841101288795471, -0.0067148213274776936, -0.0401313453912735, 0.018986238166689873, 0.009795344434678555, -0.011443769559264183, 0.16976740956306458, 0.019958512857556343, -0.02558213844895363, 0.002916056662797928, -0.01202821172773838, 0.03566557914018631, 0.04527118429541588, 0.025580069050192833, -0.01646766997873783, 0.009080392308533192, 0.011860840953886509, -0.019610542804002762, 0.01695014350116253, -0.012743187136948109, -0.003784911008551717, 0.036623481661081314, -0.0006578702013939619, 0.015323624946177006, -0.0478823259472847, 0.03667826950550079, -0.03728530928492546, 0.029411520808935165, 0.04929222911596298, -0.014501070603728294, -0.01287760678678751, -0.05167399346828461, -0.06977538764476776, 0.021601073443889618, -0.02556793950498104, -0.03472322225570679, 0.0031546964310109615, -0.034500107169151306, -0.019480522722005844, 0.044280268251895905, 0.013093189336359501, -0.01896710880100727, -0.006429646164178848, 0.016769083216786385, 0.013061901554465294, -0.042478978633880615, 0.0916740745306015, -0.003052761312574148, 0.010289904661476612 ]
[ -0.033768121153116226, -0.017147425562143326, -0.023560399189591408, 0.022210991010069847, -0.017538251355290413, -0.0017718190792948008, -0.008534676395356655, 0.029830865561962128, -0.02656538411974907, -0.025532832369208336, -0.01716664992272854, 0.009609022177755833, 0.05267517268657684, -0.016176166012883186, -0.01675291359424591, -0.005350968334823847, 0.01162236649543047, 0.036633800715208054, 0.007078695576637983, -0.05904053524136543, -0.038049399852752686, 0.018742434680461884, 0.02174464240670204, 0.04079432040452957, -0.0074464441277086735, 0.038947440683841705, -0.04669930785894394, -0.032641783356666565, 0.011519222520291805, -0.11639632284641266, -0.030090035870671272, -0.019123487174510956, 0.021925734356045723, -0.0008229143568314612, 0.0038717780262231827, 0.0776873528957367, -0.025191666558384895, 0.012125205248594284, -0.0005194913828745484, -0.02773328125476837, 0.008494840934872627, -0.00935816578567028, 0.04736555740237236, -0.014606401324272156, 0.0014458310324698687, 0.0027296305634081364, -0.020957455039024353, -0.02019938826560974, 0.0038954217452555895, 0.019239772111177444, -0.022967778146266937, -0.0003813766234088689, 0.0013395791174843907, 0.017162887379527092, 0.01654200628399849, 0.006636875215917826, -0.03563419729471207, -0.044184017926454544, -0.008037282153964043, -0.005061346106231213, -0.025464532896876335, 0.03220510110259056, -0.07598409801721573, -0.014059508219361305, -0.028437742963433266, 0.014130258932709694, 0.021927453577518463, 0.0008044022251851857, 0.003255226882174611, 0.016940494999289513, 0.012753619812428951, 0.013546482659876347, -0.05333082377910614, -0.0373065322637558, 0.023757845163345337, -0.010867693461477757, 0.043933648616075516, -0.026950985193252563, 0.020467843860387802, -0.006915170233696699, -0.009555316530168056, 0.014811125583946705, 0.039670784026384354, 0.01610598713159561, -0.01922932080924511, 0.0208230372518301, -0.014502489939332008, 0.025236865505576134, 0.03519825264811516, -0.05550340190529823, 0.027411647140979767, 0.01792265474796295, 0.002963579958304763, -0.0072444467805325985, -0.034080855548381805, 0.03090359829366207, -0.010847881436347961, 0.004454276990145445, -0.028536316007375717, 0.813528299331665, -0.00893145427107811, 0.022205347195267677, 0.04413699731230736, 0.007014898583292961, 0.009275115095078945, -0.008289738558232784, 0.001775200362317264, 0.02309662476181984, -0.02770097739994526, -0.04163438081741333, 0.05350290238857269, -0.0015351895708590746, 0.030979279428720474, 0.01356546301394701, 0.013087880797684193, 0.015180109068751335, 0.026177046820521355, -0.023657483980059624, -0.014858328737318516, 0.0028807930648326874, 0.034273359924554825, -0.03551255166530609, 0.027286440134048462, 0.037292562425136566, 0.00025738764088600874, -0.1824651062488556, -0.0027969100046902895, -7.1947138259116e-33, 0.06911531090736389, -0.05054027959704399, 0.019911978393793106, -0.0328853502869606, 0.006314896047115326, 0.02106660045683384, 0.04679401218891144, -0.006532358005642891, -0.05077589675784111, 0.008668554946780205, 0.03848416730761528, 0.002994037698954344, -0.013284715823829174, -0.01748453825712204, 0.02024735137820244, 0.0008826780249364674, 0.009348460473120213, 0.036967914551496506, -0.03302675858139992, 0.02444860339164734, -0.02091081067919731, 0.05089203268289566, -0.002774682594463229, 0.004129929933696985, 0.013366122730076313, 0.041976649314165115, -0.007898685522377491, -0.002614815952256322, 0.016306642442941666, -0.04863772913813591, -0.00518733961507678, 0.0404847115278244, -0.014606091193854809, 0.012757317163050175, 0.018156064674258232, -0.03985198959708214, -0.041724737733602524, 0.00392229575663805, -0.028170635923743248, 0.00232381047680974, -0.010458228178322315, 0.04839951545000076, -0.02280294895172119, -0.0572618767619133, 0.010260431095957756, -0.031383246183395386, 0.04377276077866554, 0.01634923182427883, 0.013925318606197834, 0.04253086447715759, 0.05316941440105438, 0.037474073469638824, -0.016224348917603493, 0.0055005657486617565, -0.0445123128592968, 0.026216154918074608, 0.009315289556980133, 0.020957618951797485, -0.0008716603624634445, 0.06016778573393822, -0.021356238052248955, 0.008393085561692715, 0.0007203805143944919, 0.020220167934894562, 0.02006363868713379, -0.03222750499844551, -0.040482040494680405, 0.015391134656965733, 0.02313246764242649, 0.07093752175569534, -0.005864969454705715, -0.006413592025637627, -0.04926639422774315, -0.008439510129392147, 0.03788237273693085, -0.02795969694852829, -0.026326529681682587, -0.03599940240383148, -0.017022693529725075, 0.006102966610342264, 0.030824322253465652, -0.051029231399297714, -0.020914390683174133, -0.009651442989706993, -0.01700301095843315, 0.03635558858513832, 0.009146870113909245, -0.01564081385731697, -0.04750534147024155, -0.016607647761702538, 0.004273227881640196, 0.04583323374390602, 0.0039024974685162306, -0.014936141669750214, -0.02492070011794567, 7.556929185806041e-33, 0.000881084764841944, -0.04306575283408165, 0.020141907036304474, 0.029311763122677803, -0.026101188734173775, -0.016902247443795204, 0.02017577923834324, 0.0035629330668598413, -0.021395022049546242, 0.061204902827739716, 0.013936965726315975, 0.035508185625076294, -0.023559045046567917, 0.012410896830260754, 0.06379615515470505, -0.026782482862472534, 0.010313593782484531, 0.002953523537144065, 0.007514857221394777, 0.023298747837543488, 0.03991435840725899, -0.0033861608244478703, -0.006209118757396936, -0.0004082959785591811, 0.044905394315719604, 0.026448726654052734, -0.022699570283293724, 0.05655543506145477, 0.019892733544111252, -0.030600273981690407, -0.003282619873061776, -0.0018789306050166488, 0.0028660371899604797, -0.01736552268266678, 0.014115100726485252, 0.02447032555937767, 0.00022197562793735415, 0.010515116155147552, 0.01492429431527853, -0.011448994278907776, 0.016383254900574684, 0.0019004647620022297, -0.002959797391667962, 0.030153663828969002, 0.020021803677082062, 0.005014142021536827, -0.012632433325052261, 0.031351830810308456, 0.023097069934010506, -0.003905449528247118, 0.008616502396762371, -0.046216536313295364, 0.034015554934740067, -0.0013637172523885965, 0.006110199261456728, -0.01871490851044655, 0.004166084807366133, 0.0011943973368033767, -0.018612487241625786, -0.06927900016307831, -0.029031557962298393, -0.012403209693729877, -0.027499530464410782, -0.02023838832974434, -0.03998331353068352, -0.02657419815659523, -0.04480208829045296, -0.03345790132880211, -0.012135036289691925, 0.02491295151412487, -0.014721029438078403, -0.016736039891839027, -0.019980313256382942, 0.009553227573633194, -0.032101623713970184, -0.029857661575078964, -0.025336679071187973, -0.017887303605675697, 0.039610546082258224, 0.016506781801581383, 0.019308505579829216, 0.01514023169875145, 0.04684600979089737, 0.0019635455682873726, 0.015222138725221157, -0.010736762546002865, 0.003411868354305625, 0.027557900175452232, 0.04880700632929802, 0.028404146432876587, -0.019527418538928032, -0.021459246054291725, 0.011852222494781017, 0.015612266026437283, -0.019390607252717018, -1.2689764794515668e-8, 0.03270380198955536, -0.027448592707514763, -0.07529586553573608, 0.01638597995042801, -0.019825153052806854, 0.028380095958709717, -0.024891767650842667, -0.02935599721968174, -0.041132111102342606, 0.018090615049004555, 0.024097740650177002, 0.013188492506742477, -0.00977384578436613, 0.02822645753622055, 0.013398793525993824, -0.006442722864449024, 0.039741694927215576, -0.06340743601322174, 0.011155999265611172, -0.023099349811673164, -0.01868407055735588, -0.0017179498681798577, 0.020599689334630966, -0.008702809922397137, -0.04514839127659798, -0.0012699645012617111, 0.06376857310533524, -0.07732795178890228, -0.007756903301924467, 0.006071488838642836, 0.027881309390068054, -0.04772798717021942, -0.02483179233968258, 0.0006396054523065686, 0.0028286289889365435, -0.049873847514390945, -0.007267124950885773, 0.00511074997484684, 0.06022312864661217, 0.00043747841846197844, 0.003449372947216034, 0.01027691550552845, 0.009291118942201138, -0.018944235518574715, -0.03598231077194214, -0.042581092566251755, 0.0018073072424158454, -0.003986521624028683, 0.007819416001439095, -0.007888922467827797, 0.04989740997552872, -0.034244515001773834, 0.006692961789667606, 0.014997478574514389, 0.03148680180311203, 0.0009422428556717932, 0.037670958787202835, -0.03799327462911606, -0.004805732052773237, -0.0023985649459064007, -0.00800397340208292, 0.030984535813331604, -0.00411730632185936, -0.027476243674755096 ]
haskell-downloading-the-core-library-source-code
https://markhneedham.com/blog/2012/12/31/haskell-downloading-the-core-library-source-code
false
2012-12-31 23:59:42
TextMate Bundles location on Mountain Lion
[ "software-development" ]
[ "Software Development" ]
Something that I've noticed when trying to install https://github.com/swannodette/textmate-clojure[various different] https://github.com/textmate/haskell.tmbundle[bundles] is that the installation instructions which worked flawlessly on Snow Leopard don't seem to do the job on Mountain Lion. For example, the Clojure bundle assumes that the installation directory is '~/Library/Application\ Support/TextMate/Bundles' but for some reason the 'Bundles' folder doesn't exist. We therefore have two choices: * mkdir -p ~/Library/Application\ Support/TextMate/Bundles and then continue as normal * Install our bundle into '/Applications/TextMate.app/Contents/SharedSupport/Bundles' http://stackoverflow.com/questions/4547076/textmate-haskell-bundle[as suggested on this thread].</p> So for the Clojure bundle we'd do this instead: [source,text] ---- $ cd /Applications/TextMate.app/Contents/SharedSupport/Bundles $ git clone git://github.com/swannodette/textmate-clojure.git Clojure.tmbundle $ osascript -e 'tell app "TextMate" to reload bundles' ---- And similarly for the Haskell one: [source,text] ---- $ cd /Applications/TextMate.app/Contents/SharedSupport/Bundles $ git clone https://github.com/textmate/haskell.tmbundle.git haskell.tmbundle $ osascript -e 'tell app "TextMate" to reload bundles' ---- Thinking about it now I'm wondering whether I did actually create the 'Bundles' folder in '~/Library/Application\ Support/TextMate/' on my old machine and I just can't remember doing so!
null
null
[ 0.002427689963951707, -0.010406918823719025, -0.019190765917301178, 0.03369194641709328, 0.07595723122358322, 0.0053798421286046505, 0.044208940118551254, 0.026640789583325386, 0.0035477641504257917, -0.02727336622774601, -0.04076104238629341, -0.009027370251715183, -0.05397597327828407, -0.0037320193368941545, -0.02842126227915287, 0.04952305182814598, 0.0786404088139534, 0.008269302546977997, 0.001883103046566248, 0.030123842880129814, 0.013909146189689636, 0.06311856955289841, -0.01672646775841713, -0.003488228190690279, -0.009142240509390831, -0.009755400009453297, 0.051921598613262177, -0.005105909891426563, -0.05461803078651428, -0.021611571311950684, 0.04456641525030136, -0.005184332840144634, 0.00035036905319429934, -0.013884766027331352, 0.002673008944839239, 0.018945081159472466, -0.024459268897771835, 0.03519648686051369, -0.0026380792260169983, -0.002499497029930353, -0.05686033144593239, 0.04784361273050308, -0.0037931883707642555, -0.012674287892878056, -0.03893948718905449, 0.021480398252606392, -0.065884530544281, 0.04243835061788559, -0.010630376636981964, -0.020538972690701485, -0.06784293800592422, 0.011550914496183395, -0.026902468875050545, -0.002813611412420869, 0.0036945666652172804, 0.031187865883111954, -0.01882007345557213, -0.09599252045154572, 0.060298655182123184, -0.02479332499206066, -0.023672617971897125, -0.009822436608374119, -0.002646187087520957, 0.01935957558453083, -0.00003081807881244458, -0.04892396181821823, -0.01636294089257717, 0.031708721071481705, -0.04535015672445297, -0.03701135143637657, 0.035902369767427444, 0.007421026472002268, -0.02935084141790867, -0.002309364965185523, 0.05484522879123688, -0.029393892735242844, -0.008519411087036133, 0.06651496887207031, 0.02473429962992668, 0.03370773792266846, -0.05941057205200195, 0.033950887620449066, 0.0337742380797863, 0.05560274049639702, -0.011272117495536804, -0.02530563250184059, -0.06233294680714607, 0.020425962284207344, -0.06625310331583023, 0.055390648543834686, 0.017058948054909706, -0.06800587475299835, 0.02290787547826767, 0.011985568329691887, 0.025697797536849976, 0.027920780703425407, 0.010527266189455986, 0.021119076758623123, 0.04097667336463928, -0.008114910684525967, -0.050083424896001816, -0.0046800002455711365, -0.012532162480056286, -0.0042205266654491425, -0.0910705104470253, 0.004854944534599781, -0.0031957735773175955, -0.012913385406136513, 0.007744580041617155, -0.035798996686935425, -0.0065742130391299725, -0.007031637709587812, -0.017075367271900177, 0.0024953011889010668, -0.05001697689294815, 0.07948949187994003, 0.0044740973971784115, -0.04513441398739815, -0.03679988905787468, 0.03141386806964874, 0.05789705738425255, 0.013568687252700329, -0.03467430919408798, 0.06907547265291214, 0.024105064570903778, 0.05484146997332573, 0.0029544627759605646, 0.03649461641907692, -0.02169732376933098, -0.09110938757658005, -0.03201158717274666, 0.07786371558904648, -0.02567243203520775, 0.01419773418456316, 0.00017821462824940681, 0.0019607560243457556, -0.0041335527785122395, -0.004937323275953531, 0.05661877989768982, 0.019611114636063576, -0.017639266327023506, 0.022628700360655785, 0.0071024722419679165, -0.004019360523670912, 0.03137146309018135, 0.0088197011500597, -0.028762327507138252, 0.0002969928318634629, -0.04925985634326935, 0.028547633439302444, 0.027633702382445335, 0.010755670256912708, 0.05847393348813057, -0.01940797083079815, 0.04235810413956642, 0.11297871172428131, 0.034545306116342545, 0.034785009920597076, -0.03666973486542702, -0.011785498820245266, 0.027569808065891266, 0.049494337290525436, -0.008121752180159092, 0.047851432114839554, 0.013561462983489037, -0.04069327563047409, -0.005226443987339735, 0.026523424312472343, -0.0028416262939572334, -0.025591036304831505, -0.06558141112327576, -0.07276122272014618, 0.06218573451042175, -0.020152870565652847, 0.003986414987593889, 0.03974048048257828, 0.09045952558517456, 0.03124314546585083, 0.031728651374578476, -0.006993312854319811, -0.08495093137025833, 0.07618007808923721, 0.014739632606506348, 0.04338648170232773, 0.03507490083575249, -0.004016871564090252, 0.06782694160938263, -0.01206741202622652, -0.014382367953658104, 0.016000820323824883, -0.07295538485050201, -0.08360349386930466, 0.009036817587912083, -0.004481588024646044, 0.06395380944013596, -0.009495520032942295, -0.025098629295825958, 0.03548349812626839, 0.01890879124403, 0.019316263496875763, 0.023877274245023727, 0.00014483582344837487, 0.003163096960633993, -0.06760886311531067, -0.042288705706596375, 0.04340830072760582, 0.026622138917446136, -0.039194583892822266, -0.04235217720270157, -0.019022643566131592, 0.011644840240478516, -0.020567158237099648, 0.048249781131744385, -0.026635009795427322, 0.058755598962306976, 0.04182315245270729, 0.019934872165322304, -0.048568397760391235, 0.060953520238399506, -0.04389622062444687, 0.018093783408403397, 0.005613234825432301, -0.00844502355903387, 0.0023252537939697504, -0.007907458581030369, 0.09316325932741165, 0.06486423313617706, -0.04678766801953316, -0.03101174347102642, 0.022601939737796783, 0.011257381178438663, -0.03440156579017639, -0.02156207151710987, -0.0026415628381073475, 0.01421990618109703, -0.016750961542129517, -0.006852722726762295, -0.023675763979554176, 0.005483867134898901, -0.02894495613873005, -0.01027696393430233, 0.10246588289737701, 0.005199088249355555, 0.060396548360586166, -0.0049738832749426365, -0.02682105265557766, -0.030316879972815514, -0.03037458099424839, -0.07473521679639816, 0.01202127244323492, 0.015721799805760384, -0.011178852058947086, 0.02291206270456314, -0.03006560355424881, -0.035826459527015686, -0.019772769883275032, -0.05452662706375122, 0.047913651913404465, 0.04256192222237587, 0.0561632439494133, -0.01579195074737072, 0.031769655644893646, -0.04001762345433235, 0.033337950706481934, -0.03447816148400307, -0.0398140512406826, -0.03573155775666237, -0.011347181163728237, -0.019635939970612526, 0.006133546587079763, 0.03075866959989071, -0.02961496263742447, 0.004439189098775387, -0.020802730694413185, 0.01451135240495205, -0.015875697135925293, 0.01848720572888851, 0.005358467344194651, -0.016107145696878433, -0.053187139332294464, -0.026903484016656876, 0.05737123638391495, -0.032007668167352676, -0.006552273873239756, 0.009472275152802467, -0.016140466555953026, 0.05212235450744629, -0.06325546652078629, -0.03854571655392647, 0.008399863727390766, 0.0502946712076664, 0.02870260365307331, 0.008106997236609459, 0.03832857683300972, 0.0230491291731596, 0.031358733773231506, 0.034433767199516296, 0.05259598791599274, 0.028650378808379173, 0.06327219307422638, 0.002661514561623335, 0.006694006267935038, 0.019286714494228363, -0.013997663743793964, 0.01452111080288887, -0.030109954997897148, 0.016195962205529213, -0.01885337568819523, -0.2804754674434662, 0.026337483897805214, -0.025732621550559998, -0.05054211616516113, 0.02030346542596817, -0.03308539092540741, -0.001551410066895187, -0.046488065272569656, -0.020517921075224876, 0.020805757492780685, -0.007967743091285229, -0.023308979347348213, 0.015351546928286552, 0.0104929618537426, -0.0004213593201711774, -0.006712385453283787, 0.026531565934419632, -0.05229980871081352, 0.013132831081748009, 0.016302214935421944, -0.03175162151455879, -0.05258651450276375, 0.049492496997117996, 0.06664221733808517, 0.012552632950246334, 0.05330914258956909, -0.05424334108829498, 0.05199575424194336, -0.024275848641991615, -0.031437553465366364, 0.008817390538752079, -0.006153210066258907, 0.000018012948203249834, 0.007599550765007734, -0.031690940260887146, -0.01002955436706543, 0.016742698848247528, 0.014918718487024307, 0.033802103251218796, 0.01863846555352211, 0.024773158133029938, -0.02362883649766445, 0.030266333371400833, -0.0291973315179348, 0.044820040464401245, -0.04795292392373085, -0.08197914808988571, -0.009626799263060093, -0.06175244227051735, 0.11170460283756256, -0.031642038375139236, -0.024750586599111557, 0.011768320575356483, 0.05641840770840645, 0.020105985924601555, -0.00521051324903965, -0.028965620324015617, 0.005873548798263073, -0.05211607366800308, -0.018317807465791702, -0.043226458132267, -0.0224636010825634, -0.056202299892902374, -0.044027455151081085, -0.011057484894990921, -0.05364033952355385, -0.04600725695490837, -0.007589208427816629, 0.0348278246819973, 0.001389200333505869, -0.05073067173361778, -0.0060905213467776775, -0.04093888774514198, -0.09868878126144409, -0.03589661791920662, -0.028575506061315536, -0.04975195229053497, 0.014330513775348663, 0.0017374109011143446, 0.04269920289516449, -0.06574264168739319, -0.04355885833501816, 0.022169552743434906, -0.000708996260073036, 0.000039424361602868885, -0.01858711428940296, -0.010042564012110233, -0.003723130328580737, -0.013828803785145283, -0.0052110375836491585, 0.0453205406665802, -0.040353938937187195, -0.03509005159139633, 0.006906117312610149, 0.008209503255784512, 0.009452108293771744, 0.013172505423426628, -0.016439838334918022, 0.0100022591650486, 0.049256838858127594, 0.05642610788345337, -0.054526615887880325, -0.02025369554758072, -0.006341138388961554, -0.01636587269604206, -0.01302256342023611, -0.05032424256205559, 0.0013933483278378844, 0.04462660849094391, 0.015573819167912006, -0.04451795294880867, -0.05248305946588516, 0.03543873503804207, -0.08811458945274353, -0.06642841547727585, -0.0129893459379673, 0.00872353371232748, -0.006802045274525881, 0.02874734066426754, -0.010390553623437881, -0.055898115038871765, 0.020675020292401314, 0.02477813884615898, -0.015474313870072365, -0.055526088923215866, 0.00638146186247468, 0.0006764719728380442, 0.008469723165035248, 0.020774589851498604, -0.003933983854949474, -0.03499588742852211, 0.017435776069760323, 0.03453075513243675, -0.021219758316874504, 0.011984283104538918, -0.011298565194010735, -0.016315896064043045, -0.0363658145070076, -0.015002744272351265, -0.02981942519545555, 0.0016364268958568573, 0.010733287781476974, 0.003224343527108431, 0.01845427230000496, 0.04488940164446831, -0.01504188496619463, 0.020848944783210754, 0.014405491761863232, -0.03614204376935959, -0.038259878754615784, -0.0035541635006666183, -0.06559939682483673, 0.05285710096359253, -0.011111881583929062, -0.01773727312684059, -0.04501604661345482, 0.024965709075331688, -0.00590199138969183, -0.0049872552044689655, -0.037775058299303055, 0.01604313775897026, -0.023840265348553658, 0.006609967444092035, 0.012299333699047565, -0.03039887361228466, 0.06422281265258789, 0.01169943530112505, 0.00839004386216402, -0.02935965359210968, -0.015178215689957142, 0.017480110749602318, 0.00003520869722706266, -0.034184616059064865, -0.006317533552646637, -0.02829461358487606, 0.020252959802746773, -0.01959812082350254, 0.01314444001764059, 0.02865644358098507, 0.02085212804377079, -0.021563025191426277, -0.021149149164557457, 0.02403353340923786, 0.02416662871837616, 0.04221652075648308, -0.0053321863524615765, 0.010960221290588379, 0.018533216789364815, -0.007962063886225224, -0.027398159727454185, -0.016569871455430984, 0.025450164452195168, -0.024284396320581436, 0.0038449931889772415, -0.03266725316643715, -0.07903791218996048, -0.0037105067167431116, 0.020319512113928795, 0.03415066748857498, -0.007006319705396891, -0.007321798242628574, -0.006528681609779596, -0.048557646572589874, 0.03417524695396423, 0.0779983252286911, -0.06650881469249725, 0.008458906784653664, 0.005716652609407902, 0.02865910530090332, -0.030657919123768806, -0.0020569765474647284, -0.058883506804704666, 0.005920908413827419, 0.0024725892581045628, 0.0018382007256150246, -0.02565230056643486, -0.02488287165760994, -0.015030299313366413, -0.000709749641828239, -0.02652285434305668, -0.040231600403785706, 0.0019981651566922665, 0.016612285748124123, -0.0029582390561699867, -0.03613792359828949, -0.0104756448417902, 0.019486743956804276, 0.012131379917263985, 0.0562492273747921, -0.010435889475047588, 0.04780399054288864, -0.04542464762926102, 0.051442407071590424, 0.026798736304044724, 0.027998607605695724, -0.010943751782178879, -0.04240528866648674, 0.0009080091258510947, -0.030481409281492233, 0.008100660517811775, -0.006615958176553249, 0.026950931176543236, -0.028499627485871315, 0.008004729636013508, -0.05041731894016266, -0.02668943628668785, 0.009933646768331528, -0.043848831206560135, -0.007313480135053396, 0.025618882849812508, -0.012752410024404526, 0.042438946664333344, -0.009993087500333786, 0.013145525008440018, 0.04821694269776344, -0.035278551280498505, -0.05933796241879463, 0.024471739307045937, -0.04559162259101868, 0.04521791264414787, 0.03270958364009857, 0.03161424398422241, -0.0743509829044342, 0.03633818402886391, 0.015881553292274475, 0.009663833305239677, 0.029308591037988663, -0.01160033605992794, 0.021274220198392868, -0.06104099005460739, -0.008040384389460087, -0.09524772316217422, -0.0039458549581468105, -0.005777664482593536, -0.011570027098059654, -0.01217158418148756, 0.03396866098046303, -0.025693651288747787, 0.018654150888323784, -0.05216673016548157, -0.004967073909938335, 0.03881843015551567, -0.02417227253317833, 0.03248877078294754, 0.028496507555246353, -0.04514452815055847, 0.05901265889406204, 0.031513482332229614, -0.04823610559105873, -0.008191264234483242, -0.018094053491950035, 0.054990604519844055, -0.008677040226757526, 0.028362741693854332, -0.01436689030379057, -0.01673145219683647, 0.04915955290198326, 0.0413854718208313, 0.02580946870148182, 0.022654347121715546, -0.0012915346305817366, 0.012054718099534512, 0.04803379997611046, 0.01931132562458515, -0.011838727630674839, 0.015130341984331608, -0.03344043716788292, -0.050887081772089005, 0.028408460319042206, 0.0277366042137146, 0.0357782356441021, -0.033209145069122314, 0.04799342155456543, 0.027004797011613846, -0.003911636304110289, -0.02970578707754612, 0.051365215331315994, -0.07079185545444489, 0.02052103355526924, -0.007603284902870655, 0.015098950825631618, -0.007570198737084866, 0.02314644679427147, 0.011540673673152924, 0.03134043887257576, 0.06184929981827736, -0.027782246470451355, -0.013536220416426659, 0.0064630513079464436, 0.07043790072202682, 0.04962758347392082, 0.03515954688191414, 0.010147547349333763, 0.06564515829086304, -0.011835459619760513, -0.06722729653120041, 0.02084008976817131, -0.016387764364480972, -0.0007516269688494503, -0.027115797623991966, -0.01024885755032301, 0.05148979276418686, -0.027297871187329292, 0.054324060678482056, -0.012805750593543053, -0.0004088020941708237, 0.001058276742696762, -0.008257251232862473, 0.018729710951447487, 0.03826524317264557, 0.02491682581603527, 0.04552918300032616, -0.014986036345362663, -0.031708747148513794, 0.026211541146039963, -0.026961524039506912, -0.023793194442987442, 0.013387295417487621, -0.02122480794787407, 0.00031913831480778754, 0.014409810304641724, 0.040352027863264084, 0.07523533701896667, -0.00916980393230915, 0.004577995743602514, 0.01259247213602066, 0.0525929294526577, 0.027754133567214012, 0.020672880113124847, -0.016766157001256943, -0.03460535407066345, -0.012975197285413742, -0.0064227767288684845, -0.021701276302337646, 0.017523368820548058, -0.020389052107930183, 0.06655476242303848, -0.021476952359080315, 0.02243075519800186, 0.010590235702693462, -0.0016623279079794884, -0.0012731152819469571, -0.021923160180449486, -0.032358065247535706, -0.0336819551885128, -0.05409577861428261, 0.011388629674911499, 0.025778261944651604, -0.0091926921159029, -0.03828693926334381, -0.028343839570879936, 0.013629753142595291, -0.016709143295884132, 0.02616104669868946, -0.03965350240468979, -0.03519203141331673, 0.006989615503698587, 0.02156813256442547, -0.023551959544420242, 0.027684899047017097, 0.046242788434028625, -0.011783105321228504, -0.04324699565768242, -0.01144183985888958, 0.01991707645356655, 0.04084375128149986, 0.023682527244091034, 0.01931750774383545, -0.06276334077119827, 0.020795788615942, 0.019186144694685936, 0.03499550744891167, -0.057326123118400574, 0.004594017285853624, 0.0482969805598259, -0.009260266087949276, 0.043203677982091904, -0.00003026721788046416, -0.005060324911028147, -0.01906881295144558, 0.009377178736031055, -0.020908968523144722, 0.04108941927552223, 0.02103552408516407, 0.007849149405956268, 0.10102991759777069, 0.03131411224603653, -0.0017428400460630655, -0.04784133657813072, -0.018018260598182678, -0.0023854034952819347, 0.017861757427453995, -0.01403325330466032, -0.016145402565598488, -0.0631198137998581, -0.06644000113010406, -0.03532690927386284, 0.0025799893774092197, -0.03947680816054344, -0.0231535155326128, 0.020359568297863007, -0.0024043878074735403, -0.04436898231506348, 0.059081222862005234, -0.0525989755988121, -0.014476551674306393, 0.002722380217164755, -0.007691178936511278, -0.03241061419248581, -0.008336990140378475, 0.008777418173849583, -0.013036268763244152, 0.023030441254377365, -0.043734360486269, -0.004223628900945187, 0.01080873142927885, 0.03054705262184143, 0.011358694173395634, -0.0002279718464706093, 0.03472764045000076 ]
[ -0.07870902121067047, -0.025371631607413292, -0.023231906816363335, 0.023969365283846855, 0.015144000761210918, -0.03980951011180878, -0.05246221274137497, 0.024425946176052094, -0.0538579560816288, -0.051824718713760376, 0.015503103844821453, -0.07186190783977509, 0.05473652482032776, -0.00015442309086211026, 0.1556262969970703, -0.004403579980134964, -0.0006757784867659211, -0.06120062619447708, -0.05693509429693222, -0.004585524555295706, -0.008671863004565239, -0.043027907609939575, -0.02451166883111, -0.033565592020750046, 0.02713194489479065, 0.046874694526195526, 0.02451343461871147, -0.043062400072813034, 0.009338174015283585, -0.211526021361351, -0.0026307767257094383, 0.0015827221795916557, 0.019545042887330055, -0.006988298147916794, -0.004724088590592146, 0.07584574073553085, 0.008516254834830761, 0.005216257646679878, -0.04059170186519623, 0.039868440479040146, 0.05408740043640137, 0.00043912630644626915, -0.04552781581878662, -0.006720288656651974, 0.057717978954315186, -0.030862199142575264, -0.004379149526357651, -0.040496766567230225, -0.027330853044986725, -0.016353238373994827, -0.005921652540564537, 0.004821166396141052, 0.022653313353657722, -0.01659633405506611, -0.01625661365687847, 0.07453964650630951, 0.02631857804954052, 0.10332799702882767, 0.03191709145903587, 0.04273844137787819, -0.024570420384407043, -0.019901759922504425, -0.13117559254169464, 0.09174176305532455, 0.05133986473083496, 0.048670895397663116, -0.02011740207672119, -0.02317056432366371, -0.01887333020567894, 0.06422355771064758, 0.016764670610427856, -0.003948351368308067, -0.028047502040863037, 0.045275233685970306, 0.006967576686292887, -0.03180256485939026, 0.004764724522829056, 0.03773479163646698, 0.009284427389502525, -0.056487806141376495, -0.07303579151630402, 0.009608780965209007, -0.013293031603097916, 0.03930911049246788, -0.03144900128245354, -0.015695957466959953, -0.018459705635905266, 0.04513988643884659, -0.025011107325553894, -0.030667386949062347, 0.03586823120713234, -0.05894457921385765, 0.07122474163770676, 0.013791680335998535, -0.11817186325788498, 0.005729850381612778, -0.015449900180101395, 0.024927275255322456, -0.024129593744874, 0.41273701190948486, -0.040336333215236664, -0.010447116568684578, 0.014522457495331764, 0.022354118525981903, 0.013287076726555824, -0.010365783236920834, -0.025321029126644135, 0.0038769205566495657, 0.030723370611667633, -0.024739626795053482, 0.010781640186905861, -0.018604382872581482, 0.043001800775527954, -0.05882570892572403, -0.0045663402415812016, 0.0026004521641880274, 0.02194521762430668, 0.04472256079316139, -0.0004793308035004884, 0.04349883273243904, -0.026287052780389786, 0.018693402409553528, 0.00782808382064104, -0.005833427421748638, -0.03493422642350197, 0.007794399745762348, 0.0420009009540081, -0.001251536188647151, 0.041529130190610886, 0.04562880098819733, 0.033232465386390686, -0.006562128663063049, -0.05880524590611458, 0.0034900500904768705, 0.026726998388767242, 0.020916156470775604, 0.028251685202121735, -0.0552382692694664, 0.009824169799685478, -0.04183472692966461, -0.007649734616279602, -0.008683876134455204, 0.05477223917841911, -0.008882947266101837, -0.029382919892668724, 0.05948586016893387, -0.0026367204263806343, -0.013542563654482365, -0.04548279196023941, -0.005865762941539288, -0.015596182085573673, -0.003461760701611638, 0.013529589399695396, -0.03557629510760307, 0.05962285026907921, 0.01009909063577652, 0.08473294228315353, 0.005233504343777895, -0.0644977018237114, 0.024034928530454636, 0.0047920322977006435, -0.030502820387482643, -0.04221819341182709, 0.052140090614557266, 0.014771007001399994, -0.074803926050663, -0.01414831355214119, 0.045954279601573944, -0.005222472827881575, -0.04404962435364723, 0.018281344324350357, 0.03438936546444893, -0.01724853739142418, 0.045570023357868195, 0.025028778240084648, -0.07958131283521652, -0.04383534938097, -0.026854434981942177, 0.040287893265485764, 0.02603660337626934, -0.026683486998081207, 0.0466453917324543, -0.0030303422827273607, -0.022501613944768906, -0.0347481369972229, -0.05698823183774948, -0.05098322406411171, -0.06591405719518661, -0.002702421508729458, -0.02760157361626625, 0.007721272762864828, 0.0018814826617017388, 0.00035969412419945, 0.03863506019115448, -0.029096191748976707, 0.036918651312589645, 0.010408560745418072, -0.020104149356484413, 0.0028351061046123505, -0.01998460851609707, -0.0028686593286693096, 0.05645865201950073, -0.046635475009679794, -0.01705726981163025, -0.06600316613912582, 0.025318380445241928, 0.04162679240107536, -0.05969195067882538, 0.053745318204164505, 0.01017193403095007, -0.010514450259506702, 0.028066648170351982, 0.0037832120433449745, 0.020495453849434853, -0.030065055936574936, -0.004799325484782457, -0.02437458746135235, -0.037634968757629395, 0.059939026832580566, 0.020848775282502174, -0.019429365172982216, -0.0023597737308591604, -0.031212620437145233, -0.3603658080101013, -0.016286807134747505, 0.0016465261578559875, 0.0028036735020577908, 0.025989968329668045, -0.08879441767930984, 0.022500155493617058, -0.017404992133378983, -0.015927143394947052, 0.016352340579032898, 0.11718969792127609, -0.03637243062257767, 0.016119832172989845, -0.028341738507151604, 0.03449249267578125, 0.04292682185769081, -0.012353156693279743, -0.034962065517902374, -0.011212673038244247, 0.018476424738764763, 0.00290772900916636, -0.014066453091800213, -0.04246179014444351, -0.0012533660046756268, -0.027659812942147255, -0.021986929699778557, 0.08977343887090683, 0.04169928655028343, 0.08050394058227539, -0.049709782004356384, 0.01936500519514084, 0.010816841386258602, -0.017443034797906876, -0.11810838431119919, -0.03232648968696594, -0.013518014922738075, -0.005467068869620562, -0.03626308962702751, 0.031867094337940216, 0.0029648244380950928, -0.0738363265991211, 0.06238502636551857, -0.03521984815597534, -0.061502330005168915, -0.02097291313111782, 0.008009688928723335, -0.021158291026949883, -0.01744346134364605, -0.03325439244508743, 0.054199352860450745, 0.02344338409602642, 0.018831534311175346, 0.012659535743296146, 0.009256193414330482, 0.00790664367377758, -0.0008258388843387365, -0.057765133678913116, -0.0167121309787035, 0.026622334495186806, -0.03395853564143181, 0.034514449536800385, 0.05630337819457054, 0.04291154444217682, -0.061675868928432465, -0.002321636537089944, 0.007107424549758434, 0.03353635221719742, -0.006182742305099964, 0.03603508695960045, -0.013113360852003098, -0.007642025128006935, 0.051167722791433334, -0.023151641711592674, 0.048225339502096176, 0.005233492236584425, 0.03705392777919769, 0.007587303873151541, 0.036259185522794724, 0.034253716468811035, -0.03181726485490799, 0.03158384934067726, 0.041063517332077026, 0.054984841495752335, -0.047655507922172546, -0.005495490971952677, 0.027889613062143326, -0.022041218355298042, 0.00043440546141937375, 0.039081256836652756, 0.03227865323424339, -0.013202402740716934, 0.021298710256814957, -0.006973955314606428, -0.035827457904815674, 0.10424736142158508, 0.04638409614562988, -0.2308625429868698, 0.04134442284703255, 0.058236103504896164, 0.017463915050029755, -0.021437253803014755, -0.03334081545472145, 0.012546238489449024, -0.06507530808448792, -0.011987277306616306, 0.0038189685437828302, 0.021018628031015396, 0.07464728504419327, 0.006902987137436867, -0.007801075931638479, 0.056745581328868866, -0.05697009339928627, 0.059029363095760345, 0.007350462954491377, -0.01779254525899887, -0.02789953537285328, 0.02537149377167225, -0.03344745934009552, 0.1885155439376831, 0.015259609557688236, -0.04532446712255478, 0.03998076170682907, 0.00781747791916132, 0.015258047729730606, 0.049147166311740875, 0.0011415551416575909, 0.02153824456036091, 0.010113885626196861, 0.022770259529352188, 0.03291238099336624, 0.028836216777563095, -0.00917257834225893, -0.013136031106114388, 0.019082501530647278, -0.0012384764850139618, -0.011541826650500298, -0.03682587668299675, 0.05186040699481964, -0.04746319353580475, 0.00035859172930940986, 0.037025123834609985, -0.03951508551836014, 0.01997416466474533, -0.005761334672570229, -0.024655530229210854, 0.027181142941117287, -0.05167711526155472, -0.03504309803247452, -0.01739475503563881, -0.005378532223403454, 0.0018368870951235294, 0.04228057339787483, 0.0012601829366758466, -0.014284389093518257, -0.0260553527623415, -0.009823242202401161, 0.0056015378795564175, -0.060650911182165146, 0.1392517238855362, -0.021977361291646957, 0.014255363494157791 ]
[ -0.02775222435593605, -0.0028607065323740244, -0.002984249498695135, 0.009408161975443363, 0.03465890511870384, 0.007108256686478853, 0.008081250824034214, 0.06435070931911469, -0.05667245760560036, 0.006481718271970749, 0.012232326902449131, -0.0162865798920393, 0.040787629783153534, 0.04674188047647476, 0.003739600535482168, 0.015272724442183971, 0.012610751204192638, 0.00847476627677679, 0.0012988282833248377, -0.010072862729430199, -0.005515576805919409, 0.02985469438135624, 0.0755273699760437, 0.038265690207481384, 0.010370065458118916, 0.034904077649116516, -0.06860914826393127, -0.011172331869602203, 0.027606623247265816, -0.09230928122997284, -0.02167816087603569, -0.012931104749441147, 0.03470810502767563, 0.0037517331074923277, 0.0066311778500676155, 0.06424820423126221, 0.003294972702860832, 0.002814265200868249, -0.06116970628499985, 0.039906181395053864, 0.0097144590690732, 0.013871075585484505, -0.008770630694925785, 0.01649422012269497, -0.0028080595657229424, -0.04313270002603531, -0.00383369205519557, -0.024345530197024345, -0.028261400759220123, 0.052972711622714996, -0.02604215405881405, 0.003734829369932413, -0.020107636228203773, -0.0011971694184467196, -0.015135038644075394, 0.0552230104804039, -0.02688496559858322, -0.003574184374883771, 0.005124688148498535, -0.014688285067677498, 0.02930985949933529, -0.0018035804387181997, -0.051775090396404266, -0.030100194737315178, -0.012891056947410107, -0.00452060904353857, -0.017498411238193512, 0.008969134651124477, -0.013819005340337753, 0.005264865700155497, 0.04298516735434532, 0.031190823763608932, -0.03538912162184715, -0.01883040741086006, -0.029785284772515297, -0.001374852261506021, 0.07201020419597626, -0.01969865895807743, 0.0013850260293111205, 0.02208651602268219, -0.05675926432013512, -0.0004679999256040901, 0.0279044471681118, 0.04584256559610367, -0.021416878327727318, 0.005136573687195778, 0.017636239528656006, 0.000564594054594636, 0.03374895825982094, 0.004993364680558443, 0.012721664272248745, -0.0003873336536344141, -0.010460875928401947, 0.0434747152030468, -0.09056998789310455, 0.009307276457548141, -0.031483713537454605, 0.030514532700181007, -0.007296215742826462, 0.8139726519584656, -0.02914096973836422, -0.032056622207164764, 0.023062769323587418, 0.028825078159570694, 0.002575396094471216, -0.02314583584666252, -0.007677420508116484, -0.043291836977005005, 0.0027676767203956842, 0.009302878752350807, 0.017701376229524612, -0.03410454839468002, 0.04024882987141609, 0.031275324523448944, 0.05565251410007477, 0.0260078813880682, 0.0069437772035598755, 0.03619127720594406, 0.012510283850133419, 0.03437389060854912, 0.04838201031088829, 0.00019840516324620694, 0.03901393339037895, 0.008541245013475418, 0.010348829440772533, -0.17042359709739685, 0.01337436493486166, -6.890962412239274e-33, 0.03488187864422798, -0.02088657021522522, 0.07100149244070053, 0.005806530360132456, -0.0047865817323327065, -0.04371960461139679, 0.005806024186313152, 0.016219453886151314, -0.04170342534780502, 0.015824327245354652, -0.020888524129986763, 0.02479332685470581, -0.05131952464580536, 0.0007143422844819725, 0.020876232534646988, -0.03404328599572182, 0.026202205568552017, 0.01750519685447216, -0.03990384191274643, 0.044871482998132706, 0.012805432081222534, 0.05586230382323265, -0.019047480076551437, -0.011636706069111824, -0.015449616126716137, 0.015132496133446693, 0.05903135612607002, -0.006424613296985626, 0.02152347005903721, -0.03688906878232956, -0.018602851778268814, 0.0009604704682715237, 0.0038741675671190023, -0.002788035199046135, -0.012427720241248608, -0.041254229843616486, -0.03885752335190773, 0.021720312535762787, -0.02382051572203636, 0.0030448848847299814, -0.018407702445983887, -0.018206115812063217, -0.04368320107460022, -0.05172783508896828, 0.014624224975705147, -0.03553196042776108, 0.06105465814471245, 0.003875856986269355, -0.014652975834906101, 0.00479116290807724, 0.06548058241605759, 0.01814756728708744, 0.017300507053732872, 0.01905173808336258, -0.014150328934192657, 0.016456633806228638, -0.026748351752758026, -0.0016700748819857836, 0.016801312565803528, 0.00199869298376143, 0.03115452453494072, -0.014516002498567104, 0.005174822639673948, 0.01791560649871826, -0.009112371131777763, -0.019417453557252884, 0.019709324464201927, -0.019672252237796783, -0.007681692019104958, 0.04015326872467995, -0.06207273527979851, 0.012759185396134853, -0.030616380274295807, -0.029520271345973015, 0.02225930616259575, -0.02757326140999794, -0.023224199190735817, 0.00584863405674696, -0.00926657672971487, -0.0019172952743247151, -0.008454957976937294, -0.047134727239608765, 0.020269213244318962, -0.011178309097886086, -0.027787119150161743, 0.03895392268896103, 0.03719005361199379, 0.020470421761274338, -0.001556728151626885, 0.03850315511226654, 0.016118211671710014, 0.032323773950338364, 0.019259586930274963, -0.04035702720284462, -0.020899493247270584, 7.253459156093944e-33, 0.01463173795491457, -0.026547977700829506, -0.028814615681767464, 0.013154947198927402, -0.03317528963088989, 0.01507444679737091, 0.016977593302726746, -0.020549368113279343, -0.01982189156115055, 0.012503408826887608, -0.014286858960986137, -0.0027365186251699924, -0.004289040807634592, 0.014385095797479153, 0.05100702866911888, -0.0034771538339555264, 0.0037098259199410677, 0.016085807234048843, 0.016201939433813095, -0.04836951568722725, -0.004539324436336756, 0.003642983501777053, -0.004225731827318668, -0.009332613088190556, 0.0014740758342668414, 0.02674100175499916, -0.01312658004462719, 0.03462078422307968, 0.018188277259469032, -0.0277826227247715, 0.005061992909759283, -0.023750964552164078, -0.004803390242159367, -0.008017074316740036, -0.005682887975126505, 0.050286777317523956, -0.021228238940238953, 0.012850211001932621, 0.02138771302998066, -0.029919514432549477, 0.005784250795841217, -0.0365929901599884, 0.005882218945771456, -0.0007089187856763601, -0.014305072836577892, 0.016602318733930588, -0.010801920667290688, -0.01826775074005127, 0.006950496695935726, -0.028928713873028755, 0.006820689886808395, 0.060892943292856216, 0.0036677175667136908, -0.023151371628046036, 0.038163620978593826, 0.008017078973352909, -0.05532271787524223, -0.003509624395519495, -0.037340592592954636, -0.012420020997524261, 0.002508432837203145, -0.02947915531694889, 0.0015910011716187, -0.021866435185074806, -0.030555853620171547, -0.040585197508335114, -0.05123297497630119, -0.024375982582569122, -0.004289787728339434, 0.002081356942653656, 0.022390564903616905, 0.016704978421330452, -0.009412393905222416, 0.009716954082250595, 0.017232680693268776, 0.001711924560368061, -0.02888070046901703, -0.003337628673762083, 0.0018671059515327215, 0.012992516160011292, 0.003821346675977111, 0.05764487758278847, -0.005006364546716213, -0.016167497262358665, -0.01823239214718342, 0.014381958171725273, 0.000499408517498523, 0.028441939502954483, 0.04346606135368347, -0.019608156755566597, -0.007841808721423149, -0.05027887597680092, -0.009730002842843533, 0.019311189651489258, -0.03264876455068588, -1.2635476664968337e-8, 0.02437460795044899, -0.00928313098847866, -0.06578420102596283, 0.013234208337962627, -0.012104482389986515, 0.028846412897109985, -0.022179270163178444, 0.0017415117472410202, -0.02269567735493183, 0.014972102828323841, 0.0245725866407156, 0.01738361455500126, -0.020270338281989098, 0.04893232509493828, -0.007475252263247967, -0.02190558612346649, 0.03698994591832161, 0.004060576669871807, 0.023456647992134094, -0.03044874593615532, -0.02060537040233612, 0.055143412202596664, -0.020384130999445915, 0.011804581619799137, -0.06439855694770813, -0.00036967609776183963, 0.0038931737653911114, -0.05336819216609001, 0.022515878081321716, 0.03469628468155861, 0.00227923272177577, -0.036536961793899536, -0.04402614012360573, 0.0004471825377549976, 0.00009925602353177965, -0.026609139516949654, -0.02575131691992283, 0.032554011791944504, 0.06087714806199074, -0.005414935294538736, 0.030901944264769554, -0.014232880435883999, 0.030407270416617393, -0.030716687440872192, -0.02631371095776558, 0.0005847248248755932, -0.0031006864737719297, -0.016230814158916473, -0.00898401252925396, -0.02214936912059784, 0.00919401552528143, -0.004557229112833738, -0.0555628165602684, 0.022940414026379585, 0.01994498446583748, 0.014889241196215153, 0.02111312933266163, -0.07345089316368103, -0.06245051324367523, -0.01270308718085289, -0.027495799586176872, -0.033689625561237335, -0.0281562227755785, -0.02553684264421463 ]
textmate-bundles-location-on-mountain-lion
https://markhneedham.com/blog/2012/12/31/textmate-bundles-location-on-mountain-lion
false
2012-12-31 10:57:19
Gamification and Software: Some thoughts
[ "gamification" ]
[ "Software Development" ]
On the recommendation of https://twitter.com/jbrains[J.B. Rainsberger] I've been reading 'http://www.amazon.co.uk/Reality-Broken-Games-Better-Change/dp/0224089250/ref=sr_1_1?ie=UTF8&qid=1356692858&sr=8-1[Reality is Broken]' - a book which talks about *how we can apply some of the things games designers have learned about getting people engaged to real life*. The author, Jane McGonigal, also has http://www.ted.com/talks/jane_mcgonigal_gaming_can_make_a_better_world.html[a TED talk on the topic] which will help you get a flavour for the topic. I was particularly interested in trying to see how her ideas could be applied in a software context and indeed how they are already being applied. In the chapter 'The Engagement Economy' some of this ground is covered when describing the need for engaging multiplayer game worlds using Wikipedia as a good example of this. The author points out that *Wikipedia has good game mechanics* for the following reasons: * It has a personal feedback system that allows contributors to see that they're improving and making progress. * There are work opportunities of increasing difficulty which keeps people engaged. * There is a clearly defined enemy to defeat - people who vandalise the site with fake edits. McGonigal goes on to the point out that as well as having good mechanics *the best games tend to have a community around them* as well. In Wikipedia's case there are 'talk pages' where contributors can interact with each other. I was trying to think of the examples of software related products which either do or could have a game like experience and I came up with the following: * http://www.4clojure.com/[4clojure] - this is a website dedicated to helping people get better at Clojure by giving problems of a varying difficulty for them to solve. There is http://www.4clojure.com/users[a leader board] ordered based on how many of the problems you've solved and judging by how many people have done all of them it clearly works! I don't think the community aspect is as strong but it is possible to see other peoples solutions once you've solved a problem yourself. * http://24pullrequests.com/[24 Pull Requests] - the idea here was to encourage developers to make one pull request each day from 1st December to 24th December on an open source project of their choice. They display the people who participated and show the latest pull requests made on their home page so it certainly has some aspects of a game! http://www.codetriage.com/[codetriage] and http://contribhub.co/[ContribHub] look to be taking a similar approach on a more permanent basis. * http://code.google.com/codejam/[Google Code Jam] - this is perhaps the best known game related idea in the coding world. Each year Google host a competition where they design algorithmic puzzles that people attempt to solve within a time limit. There is a prize for the winner. There's a https://groups.google.com/forum/?fromgroups#!forum/google-code[Google Group] available for contestants so the community aspect is covered as well. * http://www.spoj.com/[SPOJ] (Sphere Online Judge) - this is similar to the Google Code Jam in that the problems tend to be algorithmic in nature. There are leader boards showing how well people have done on each problem. 'Winning' is related to how fast you can make your algorithm run so the top scores tend to come from people using lower level languages like C. * The Koans - these are puzzles designed to help people learn a programming language. There are versions for http://rubykoans.com/[Ruby], https://github.com/functional-koans/clojure-koans[Clojure], https://github.com/gregmalcolm/python_koans/wiki[Python], http://www.scalakoans.org/[Scala] and I'm sure many other languages as well. The problems get more difficult as you go on but as far as I can tell there isn't a competition aspect although people do post about http://skim.la/2010/03/29/ruby-koans-is-awesome/[their experiences with the problems] so there is some sort of community around it. Products like http://rubymonk.com/[rubymonk] which allow you to learn a language online seem to be the next logical step in this area. * http://www.kaggle.com/[Kaggle] - this is a website which hosts data related competitions - organisations provide data sets and problems they want solved and people compete to win prizes for coming up with the best solution. Jen and I have been taking part in one of their competitions and I've http://www.markhneedham.com/blog/tag/kaggle/[written up our experiences so far]. There is a community aspect around it, particularly for the problem we've been working on since it's intended purely for people to learn machine learning, and people have been sharing the approaches they've taken and ideas of how you could improve your solution. As I understand it, in the http://blog.kaggle.com/2011/01/19/how-i-did-it-finishing-second-from-bo-yangs-perspective/[Netflix competition] http://blog.kaggle.com/2012/11/01/deep-learning-how-i-did-it-merck-1st-place-interview/[one group published their algorithm before the competition was finished] and the winners were able to make use of it to come up with an even better solution. * https://www.coursera.org/[Coursera] - I've been doing online courses using Coursera since last year and have so far covered https://www.coursera.org/course/ml[machine learning], https://www.coursera.org/course/stats1[statistics] and https://www.coursera.org/course/algo[algorithms]. The incremental difficulty in problems is definitely covered and I've been kept engaged from start to finish on all of the courses. The collaboration aspect is there as well and I've learnt a lot from reading people's posts on the forums. There still seems to be a bit of weirdness about sharing solutions which I find strange as it isn't actually an official course and people are participating purely to learn more about a topic. I think you learn much more from seeing how others have solved problems and I've ended up having to do this privately with friends because it's looked down on by the community. I think a leaf out of 4clojure's book would probably be beneficial here! The final part of the book talks about another level of collaboration which is to +++<strong>+++allow people to add to the game +++</strong>+++by creating their own 'levels' for example. McGonigal calls these *collaborative creation systems*. 4clojure already does this by http://www.4clojure.com/problems/submit[allowing people to submit new problems] and people frequently provide different data sets to test algorithms on the coursera forums. I'm sure there are way more examples of people making use of http://www.livingforimprovement.com/how-i-gamified-the-google-interview-and-how-you-can-too/[gamification] in the software world so please let me know and I'll add them or alternatively just use the comments! ** Update ** Some other ones that I've just thought of or were suggested by others: * http://aichallenge.org/[AI Challenge] - this is an artificial intelligence challenge where you have to create a program that controls a colony of ants which then fight against other colonies. I've not played it but I'm told it's very popular! * http://projecteuler.net/[Project Euler] - the original place for finding mathematical problems to solve! You get access to a forum to discuss problems with others once you've solved them and you are given awards for solving 100 problems, solving the 25 most recent problems and so on. * https://www.interviewstreet.com/challenges/[Interview Street] - another website with algorithmic type problems to solve. Has a leader board based on the time the solution took to run and the amount of memory it used which is quite neat. There's some sort of link to tech companies but I'm not sure how that aspect of it works.
null
null
[ 0.011426666751503944, 0.009821556508541107, 0.00181238679215312, 0.03707261383533478, 0.06655797362327576, 0.01378302089869976, 0.01785760372877121, 0.037475768476724625, 0.016511131078004837, -0.022132448852062225, -0.028582189232110977, 0.006605776026844978, -0.054016657173633575, 0.01471052784472704, -0.026948070153594017, 0.07780516892671585, 0.052650731056928635, 0.012494000606238842, -0.005032192450016737, 0.0008433183538727462, 0.02361258491873741, 0.09101278334856033, 0.0457969531416893, 0.04703399911522865, 0.024455904960632324, -0.0045801447704434395, 0.040846098214387894, 0.020589202642440796, -0.044626783579587936, 0.002135212067514658, 0.03675527125597, 0.006342377979308367, 0.006821834947913885, -0.020630141720175743, 0.020139504224061966, -0.017852289602160454, -0.02782392129302025, 0.03549492359161377, -0.004956936929374933, 0.011961610987782478, -0.07721502333879471, 0.05014460161328316, -0.03151345252990723, 0.01307662669569254, -0.02213912643492222, -0.0005891244509257376, -0.030665339902043343, 0.025723932310938835, 0.009573978371918201, 0.015394666232168674, -0.05482235550880432, 0.03501386195421219, 0.008483118377625942, 0.01884601265192032, -0.027846012264490128, 0.04202774167060852, 0.01760273613035679, -0.054799795150756836, 0.012783263809978962, -0.05735289677977562, -0.011012102477252483, -0.011134701780974865, 0.008441667072474957, 0.0065970285795629025, 0.01155851036310196, -0.024637926369905472, 0.012262677773833275, 0.048638857901096344, -0.017952607944607735, -0.005736481864005327, -0.026099909096956253, 0.005359118338674307, -0.00351103232242167, -0.02495446428656578, 0.012005082331597805, -0.06527382135391235, 0.01754050888121128, 0.07764805853366852, 0.02126907929778099, 0.0353444367647171, -0.022272489964962006, 0.007602508179843426, 0.025533339008688927, 0.03014994226396084, -0.037203896790742874, -0.05888771638274193, 0.019741760566830635, -0.01820186898112297, -0.08184986561536789, 0.05631101131439209, 0.006721168756484985, -0.046968575567007065, 0.017945732921361923, 0.024071358144283295, -0.01739642024040222, 0.02063794434070587, 0.050987593829631805, -0.017187532037496567, -0.021163450554013252, -0.014243578538298607, -0.001609773375093937, -0.03239414840936661, -0.001224973937496543, 0.010184530168771744, -0.08384861052036285, -0.006109531503170729, 0.011576363816857338, -0.02715994231402874, -0.013377518393099308, -0.002902407431975007, -0.02953200414776802, 0.006957794073969126, -0.01005533616989851, 0.0015082915779203176, -0.05507257208228111, 0.08247451484203339, 0.011199087835848331, -0.008184034377336502, -0.01142594963312149, 0.03579818829894066, 0.05989214777946472, -0.0012499369913712144, -0.017807617783546448, 0.09171561151742935, 0.026272226125001907, -0.0018428345210850239, -0.02371722273528576, 0.054621703922748566, -0.006124610546976328, -0.05095284432172775, 0.006077428348362446, 0.0474708154797554, -0.053263042122125626, -0.002341211074963212, 0.01603907160460949, -0.050942808389663696, 0.004563539754599333, -0.015467382967472076, 0.011996795423328876, 0.045576274394989014, -0.017820289358496666, -0.029612654820084572, 0.017142023891210556, 0.004689222201704979, 0.036889027804136276, -0.004772352986037731, -0.01867646723985672, -0.010716640390455723, -0.03575465455651283, -0.00032235286198556423, 0.01329032238572836, 0.004849109798669815, 0.02227630652487278, -0.03504655510187149, 0.032945647835731506, 0.07412799447774887, 0.027590667828917503, 0.026191454380750656, -0.02062755450606346, 0.052972085773944855, 0.04616522789001465, 0.029745111241936684, 0.009116695262491703, 0.011155771091580391, 0.024924099445343018, -0.014316348358988762, 0.0006770548643544316, 0.06585415452718735, 0.003983261529356241, -0.014306237921118736, -0.05905073881149292, -0.03457580506801605, 0.04207135736942291, -0.03880099952220917, -0.01663070358335972, 0.04016739875078201, 0.07913748919963837, 0.05128905549645424, 0.048585135489702225, -0.0061967018991708755, -0.0838392972946167, 0.014991938136518002, 0.014055480249226093, 0.029349129647016525, 0.010439195670187473, -0.038187175989151, 0.052422307431697845, -0.0009913552785292268, 0.01252662017941475, 0.06789753586053848, -0.06991953402757645, -0.07431420683860779, -0.017977019771933556, -0.0023778488393872976, 0.0714816078543663, -0.02991379424929619, -0.0007431418052874506, 0.05827416479587555, 0.014848878607153893, 0.035514213144779205, 0.00101681228261441, -0.00716906413435936, 0.017231810837984085, -0.0383133701980114, -0.06867637485265732, 0.04589393362402916, 0.02546953596174717, 0.002522969152778387, -0.044602446258068085, 0.0018483499297872186, -0.020465588197112083, -0.025206666439771652, 0.04130879044532776, -0.026889914646744728, 0.03567718341946602, 0.0005997761618345976, 0.05523119494318962, -0.018734440207481384, 0.03465675935149193, -0.04559960216283798, -0.0009304682025685906, -0.001071249134838581, 0.001580718788318336, 0.016681483015418053, 0.012583821080625057, 0.11755014955997467, 0.04218607023358345, -0.0340576209127903, -0.05744211748242378, 0.018207401037216187, -0.00910610519349575, -0.014869170263409615, 0.0035704360343515873, -0.012878943234682083, 0.007796603254973888, -0.013324562460184097, -0.05226004496216774, -0.04313604533672333, 0.01945115253329277, -0.03916037827730179, -0.01776682585477829, 0.0668514147400856, 0.0066446769051253796, 0.06594590842723846, -0.0062669855542480946, 0.035157788544893265, -0.009510792791843414, -0.016226990148425102, -0.053987182676792145, 0.011134939268231392, 0.011727402918040752, -0.016886889934539795, 0.06086712330579758, 0.0021769870072603226, -0.02831730619072914, -0.034518949687480927, -0.03846598416566849, 0.023888910189270973, 0.06635656207799911, 0.053999707102775574, -0.007178712170571089, 0.052471939474344254, -0.049386851489543915, 0.02781081199645996, -0.01262163370847702, -0.06657096743583679, -0.03909150883555412, -0.05667125806212425, -0.02933892235159874, 0.012635917402803898, 0.03349008038640022, 0.008042589761316776, 0.016120975837111473, -0.012572805397212505, -0.012382769025862217, 0.008794332854449749, 0.02042238973081112, 0.003999396227300167, 0.00040100631304085255, -0.026727359741926193, -0.017809608951210976, 0.0708395466208458, -0.025454774498939514, 0.005684623494744301, -6.205859222063737e-7, -0.07953715324401855, 0.06363805383443832, -0.0516350120306015, -0.036344945430755615, -0.014284483157098293, 0.001024500816129148, 0.042203862220048904, 0.020756840705871582, 0.014866766519844532, 0.07119576632976532, 0.009672819636762142, 0.0024574638810008764, 0.007067873142659664, -0.0045435731299221516, 0.0434272438287735, -0.02218024991452694, 0.008143234066665173, 0.027632474899291992, 0.00011176600673934445, 0.006044353358447552, -0.06179574877023697, 0.04358628764748573, -0.02438388392329216, -0.2769445478916168, 0.0184092465788126, 0.01565581187605858, -0.02803788334131241, 0.016189953312277794, -0.014581414870917797, 0.00579844182357192, -0.042051542550325394, -0.028756825253367424, 0.029939034953713417, -0.04069840908050537, -0.029153963550925255, -0.03319474309682846, 0.03808308392763138, 0.030012425035238266, -0.0031831092201173306, 0.03583824262022972, -0.047518178820610046, -0.019153866916894913, 0.05670010671019554, -0.017465831711888313, -0.06578362733125687, -0.022805333137512207, 0.04244567081332207, 0.044192779809236526, 0.06995658576488495, -0.056527383625507355, 0.004867653362452984, -0.047931745648384094, -0.008841301314532757, 0.009095399640500546, -0.007979998365044594, 0.0018653833540156484, -0.0163646899163723, -0.005505891516804695, -0.014710238203406334, 0.046270933002233505, 0.014652946963906288, -0.004014408681541681, 0.007540581747889519, -0.022311396896839142, -0.007862596772611141, 0.0051338328048586845, 0.002124188235029578, 0.08867673575878143, -0.0014494532952085137, -0.0895717516541481, 0.01043244730681181, -0.04624108597636223, 0.07308556139469147, -0.01583665981888771, -0.04864459112286568, 0.001317832968197763, 0.045459453016519547, -0.01071694865822792, 0.00377865438349545, -0.009751801379024982, -0.03188244253396988, -0.05070919916033745, -0.05878585949540138, -0.019839957356452942, -0.024052225053310394, -0.042779020965099335, -0.013372989371418953, -0.006752630230039358, -0.07179906219244003, -0.0813911184668541, -0.00008449370216112584, 0.06260271370410919, 0.022275758907198906, -0.028845947235822678, -0.008081503212451935, -0.013040661811828613, -0.10491175949573517, -0.020536525174975395, 0.003111611818894744, -0.028978414833545685, 0.02687103860080242, 0.023552624508738518, 0.04284150153398514, -0.04272378981113434, -0.061792876571416855, 0.007315132766962051, 0.0018087943317368627, 0.031056489795446396, -0.012761755846440792, 0.05637644976377487, 0.021735098212957382, -0.017599904909729958, 0.002720861230045557, 0.06019795686006546, -0.004987508524209261, -0.03102530725300312, -0.025752702727913857, 0.017268750816583633, 0.008363676257431507, 0.03631561994552612, -0.02558426931500435, 0.0004512514569796622, 0.05486087128520012, -0.0044221654534339905, -0.07684178650379181, 0.03138960152864456, -0.0229624155908823, -0.013620629906654358, 0.003635856555774808, -0.039939504116773605, -0.00181848113425076, 0.02828446961939335, 0.011779813095927238, -0.006749507039785385, -0.038903653621673584, 0.032892465591430664, -0.041560739278793335, -0.024374211207032204, -0.04024713486433029, 0.030839750543236732, 0.05645560100674629, -0.005553195718675852, -0.01558605395257473, -0.053509462624788284, 0.01726236753165722, -0.014566938392817974, -0.03424021601676941, -0.05042821913957596, -0.00472838431596756, -0.021924497559666634, -0.018856815993785858, 0.0312252938747406, 0.012384476140141487, -0.013850374147295952, 0.022686656564474106, 0.014374847523868084, -0.022307783365249634, 0.01705273427069187, -0.043406955897808075, -0.07345426827669144, -0.0282613392919302, 0.0011403941316530108, 0.0064223939552903175, 0.015119392424821854, 0.003198533318936825, -0.010358788073062897, 0.0014585967874154449, 0.028615359216928482, -0.008157783187925816, 0.027998102828860283, 0.0027573141269385815, 0.026123441755771637, 0.030295684933662415, -0.007554680109024048, -0.05960548296570778, 0.0514058955013752, -0.032252248376607895, -0.020945226773619652, -0.014967715367674828, 0.04044032096862793, -0.017406290397047997, -0.02603951282799244, -0.027114413678646088, 0.007525334600359201, -0.05503999441862106, -0.048078130930662155, -0.02547750063240528, 0.019133852794766426, 0.07027514278888702, -0.0005708856624551117, 0.017570199444890022, -0.0006997972959652543, -0.021795818582177162, 0.03518606349825859, -0.004314544145017862, -0.04636828228831291, 0.004910544957965612, -0.013572708703577518, -0.006882102694362402, -0.005061986856162548, -0.019978972151875496, 0.04365692660212517, -0.0038179948460310698, -0.010439994744956493, -0.02650393731892109, 0.023478293791413307, 0.009034011512994766, 0.04698265343904495, 0.025045450776815414, -0.00039592862594872713, 0.01841096393764019, -0.016861772164702415, -0.027942465618252754, -0.026661958545446396, -0.00783340074121952, -0.016751186922192574, 0.006913420744240284, -0.0464530810713768, -0.0535433329641819, 0.04144546762108803, -0.005726850591599941, -0.003736940212547779, 0.02819288708269596, 0.013471507467329502, -0.002885703928768635, -0.02666258066892624, 0.013036740012466908, 0.07180499285459518, -0.07496938854455948, 0.002349583897739649, -0.015965094789862633, 0.011127335019409657, 0.020741447806358337, -0.007107814308255911, -0.01879892870783806, 0.0008316535386256874, -0.03621317818760872, 0.011602283455431461, -0.08274492621421814, -0.010029436089098454, -0.03625445067882538, -0.0025659059174358845, 0.008372384123504162, 0.00007650205952813849, -0.04505342245101929, -0.027162082493305206, -0.018306264653801918, -0.03138525411486626, 0.015840936452150345, -0.03594108670949936, -0.01659783162176609, 0.031404852867126465, -0.03833554685115814, -0.009083044715225697, -0.021503953263163567, 0.024259038269519806, 0.017101924866437912, -0.029924631118774414, 0.016381049528717995, -0.0275726355612278, 0.009901504032313824, 0.0046012625098228455, 0.03724539279937744, -0.014958211220800877, -0.036043375730514526, -0.05068766698241234, -0.004464033991098404, -0.03081553615629673, 0.011993568390607834, -0.00558980880305171, 0.0016608613077551126, 0.03941471874713898, 0.048936545848846436, 0.0045674042776227, -0.0004339519655331969, -0.037928253412246704, -0.002762715332210064, 0.036083947867155075, -0.09187008440494537, -0.007261899299919605, 0.0070254006423056126, -0.05580180138349533, -0.0033864902798086405, -0.011221728287637234, 0.02710460126399994, -0.03833997994661331, 0.031223556026816368, 0.03293249383568764, 0.007091859821230173, 0.037812307476997375, 0.007372010499238968, 0.007540374528616667, -0.040924955159425735, -0.003279923927038908, -0.09239457547664642, 0.020993681624531746, 0.01967141032218933, -0.01753164269030094, -0.004205790348351002, 0.028464460745453835, -0.031850025057792664, 0.05381694436073303, -0.07728955149650574, -0.007963872514665127, 0.051475152373313904, -0.028823964297771454, -0.023482060059905052, 0.0381758026778698, -0.0714237168431282, 0.01939821057021618, 0.022780632600188255, -0.033577125519514084, -0.0399671271443367, -0.020230095833539963, 0.048167210072278976, 0.00610768236219883, 0.02479030005633831, -0.012814194895327091, -0.003017452312633395, 0.06872115284204483, -0.005143634509295225, 0.02063865028321743, 0.060704752802848816, -0.007947445847094059, 0.04674737527966499, 0.04764166846871376, 0.03092011995613575, 0.0031519157346338034, 0.005937079433351755, -0.024523891508579254, -0.06351872533559799, 0.0286555178463459, -0.0035267677158117294, -0.04216326028108597, -0.040675245225429535, 0.06039189174771309, 0.006109911482781172, -0.009760767221450806, -0.041353337466716766, 0.008029181510210037, -0.06210054084658623, 0.009828642010688782, -0.03341846540570259, -0.023057328537106514, -0.03485151380300522, 0.051260050386190414, 0.021763866767287254, 0.034268688410520554, 0.06234772503376007, 0.00001848890315159224, -0.02344519831240177, -0.015421613119542599, 0.08554787933826447, 0.08457847684621811, 0.06585772335529327, 0.014108063653111458, 0.07270216196775436, -0.005033724941313267, -0.050258781760931015, 0.022558078169822693, 0.019595753401517868, -0.011703316122293472, -0.0184237752109766, 0.0047020073980093, 0.048506829887628555, -0.024351269006729126, 0.0756157636642456, -0.025512197986245155, -0.04264841228723526, 0.006502276286482811, 0.011835948564112186, -0.0015273826429620385, 0.0700036957859993, 0.02384842373430729, 0.03640406206250191, -0.006880636792629957, -0.04862455278635025, 0.03578387573361397, -0.03181847557425499, -0.01794801838696003, 0.006550735328346491, -0.015809502452611923, 0.04990731552243233, 0.0185589250177145, 0.01957605965435505, 0.08582418411970139, -0.03464111313223839, 0.045624203979969025, 0.0045326706022024155, 0.017777610570192337, 0.007638237439095974, 0.02646293118596077, -0.02140955999493599, 0.01611415483057499, -0.0012897233245894313, -0.019223276525735855, -0.024400170892477036, -0.03415600582957268, -0.015967728570103645, 0.030050307512283325, -0.02489825151860714, 0.0014328038087114692, 0.03246864676475525, -0.004491266328841448, -0.02634386532008648, -0.06424075365066528, -0.040644869208335876, -0.040398381650447845, -0.07450644671916962, -0.00036713058943860233, 0.013784930109977722, -0.013989511877298355, -0.04915432259440422, -0.004193299915641546, -0.008325002156198025, -0.04329366236925125, 0.042936138808727264, -0.05037180334329605, -0.022997116670012474, 0.023325592279434204, 0.022054875269532204, 0.015593325719237328, 0.025364506989717484, 0.057917267084121704, -0.002870843978598714, -0.02308305911719799, -0.009128904901444912, 0.026994848623871803, 0.04590552672743797, -0.001546342740766704, -0.0026035441551357508, -0.09296879172325134, 0.011828803457319736, 0.030385902151465416, -0.013291633687913418, -0.0653885155916214, 0.030361851677298546, 0.011147483251988888, 0.006240245886147022, 0.04663034528493881, -0.011023646220564842, 0.0024244911037385464, -0.05763138085603714, 0.01667320728302002, -0.01648622751235962, 0.02040938474237919, 0.039638083428144455, -0.02937360480427742, 0.08197736740112305, 0.014668372459709644, -0.035983048379421234, -0.04746909812092781, -0.021362941712141037, -0.009693646803498268, -0.0074869683012366295, -0.009323705919086933, -0.005362298339605331, -0.008096812292933464, -0.08807232230901718, -0.022846948355436325, 0.03790438175201416, -0.028223814442753792, -0.04274629428982735, 0.007249894086271524, 0.017487552016973495, -0.009070774540305138, 0.022269807755947113, -0.03457798436284065, 0.025741156190633774, -0.01968153566122055, 0.010568692348897457, -0.0032975610811263323, 0.015268652699887753, -0.0024848650209605694, 0.015682389959692955, 0.03341833874583244, -0.05351712927222252, 0.023653069511055946, -0.011216896586120129, 0.012483417056500912, 0.028924742713570595, 0.01983695849776268, -0.01674554869532585 ]
[ -0.11356242746114731, -0.016980472952127457, -0.006524297408759594, -0.014439994469285011, 0.03729335963726044, -0.014967622235417366, -0.02501947060227394, 0.03370315954089165, 0.001008456340059638, -0.009289328008890152, 0.004186443518847227, -0.012104131281375885, -0.007193222176283598, -0.00604794267565012, 0.09800376743078232, 0.030231688171625137, 0.0007238867692649364, -0.06072596088051796, -0.01174881961196661, 0.03589339181780815, -0.006586562842130661, -0.037487827241420746, -0.003620712086558342, -0.02632274106144905, 0.0031012981198728085, 0.02091350592672825, 0.02305162511765957, -0.04449106752872467, -0.0035857066977769136, -0.18013641238212585, -0.00993385910987854, 0.026349887251853943, 0.03411787003278732, 0.005845469422638416, -0.04252949729561806, 0.05264274775981903, 0.04225054010748863, 0.00043573533184826374, -0.03320237621665001, 0.025133341550827026, 0.024113234132528305, 0.029898323118686676, -0.004556420259177685, -0.01090170070528984, 0.04151535779237747, 0.01130265649408102, 0.00447861198335886, -0.014832568354904652, -0.020106041803956032, -0.026615751907229424, -0.05368354916572571, -0.0027347675058990717, -0.035278525203466415, -0.018928753212094307, 0.02868349850177765, 0.007253558840602636, 0.0223817378282547, 0.09017471224069595, 0.032768961042165756, 0.02659185603260994, 0.02644757181406021, -0.0049471864476799965, -0.12165554612874985, 0.09493105113506317, 0.050073180347681046, 0.06756346672773361, -0.033627841621637344, -0.010589394718408585, -0.01949973590672016, 0.06227915361523628, -0.0004687996697612107, -0.003811285365372896, 0.016615891829133034, 0.02938704378902912, 0.030054496601223946, 0.005536493845283985, 0.005259756930172443, -0.002130966866388917, 0.037593305110931396, -0.03167613595724106, -0.02700580470263958, -0.0006572001148015261, -0.02181568555533886, -0.011736288666725159, -0.036494720727205276, 0.03627672791481018, -0.015165915712714195, 0.0516216903924942, 0.003071758197620511, 0.03988083451986313, 0.02892642840743065, 0.02070765383541584, 0.06910381466150284, -0.007898356765508652, -0.07144644856452942, -0.00256391242146492, -0.01668151468038559, 0.00641742255538702, -0.0540730245411396, 0.4408744275569916, 0.0053055002354085445, -0.04200643673539162, 0.05936595797538757, 0.03875833377242088, 0.023547997698187828, -0.00408140616491437, 0.017892025411128998, -0.06576674431562424, 0.03903767094016075, 0.007235117722302675, -0.020186370238661766, 0.00808419194072485, 0.06963402777910233, -0.011178476735949516, 0.004465831909328699, 0.031757939606904984, 0.04903712123632431, 0.018980568274855614, -0.00023680031881667674, -0.01727309636771679, -0.004487288184463978, 0.045800939202308655, 0.022484615445137024, -0.009879897348582745, 0.014789598062634468, -0.03084813803434372, 0.007860777899622917, 0.04381457716226578, 0.0428430438041687, -0.015754131600260735, 0.02226169966161251, -0.03395802155137062, -0.0553031861782074, 0.0038755813147872686, -0.00834813341498375, 0.013065348379313946, 0.03129138424992561, -0.027496621012687683, 0.014172670431435108, 0.06473599374294281, 0.021325286477804184, -0.01517384871840477, 0.01554152462631464, -0.03279157727956772, -0.057561229914426804, 0.07843759655952454, 0.05961231142282486, -0.03447496518492699, -0.006118419114500284, 0.018295425921678543, 0.002537253312766552, 0.015873456373810768, -0.022490451112389565, -0.036234598606824875, 0.015123349614441395, 0.001207714551128447, 0.11070581525564194, -0.02043711207807064, -0.08719322085380554, -0.029454970732331276, -0.005533905699849129, -0.029294418171048164, -0.02475619502365589, 0.06186635419726372, 0.0379338264465332, -0.09163784980773926, -0.02313646487891674, 0.02181721292436123, 0.00869996752589941, -0.08383017033338547, -0.03861413896083832, 0.00195591920055449, -0.048736799508333206, -0.0070464699529111385, 0.07838013768196106, -0.030211463570594788, -0.0565134733915329, 0.0009738327353261411, 0.051974911242723465, 0.027552172541618347, -0.0055101243779063225, 0.048364877700805664, -0.026408424600958824, -0.004266330972313881, -0.05772816762328148, -0.07353544235229492, -0.037520356476306915, -0.013913456350564957, -0.001671401085332036, -0.023712893947958946, 0.0011525539448484778, -0.026167940348386765, -0.09713587909936905, 0.10186471790075302, -0.023478370159864426, -0.016483165323734283, 0.016835074871778488, -0.0399782657623291, -0.02082492969930172, -0.003364992793649435, -0.07670574635267258, 0.02194814383983612, -0.05378369987010956, -0.007988560013473034, -0.050190601497888565, 0.043592412024736404, 0.04817389324307442, -0.062379345297813416, 0.10222172737121582, 0.005618521943688393, -0.05673417076468468, -0.03608279675245285, -0.03144353628158569, 0.033875081688165665, 0.004973930772393942, -0.007709986995905638, 0.02339429408311844, -0.02824980393052101, -0.02153891697525978, 0.03249548375606537, -0.020307550206780434, -0.0021744815167039633, -0.043777886778116226, -0.32352903485298157, -0.027982324361801147, -0.0657593384385109, -0.0012776831863448024, 0.017676450312137604, -0.04576701298356056, 0.025642594322562218, -0.03099944069981575, -0.010866962373256683, 0.028370331972837448, 0.10813073813915253, -0.03180651366710663, -0.00485262693837285, -0.06838186830282211, 0.028155598789453506, 0.0061387005262076855, -0.044303569942712784, -0.019824301823973656, -0.03687161207199097, 0.007060888223350048, 0.004908771254122257, -0.021136177703738213, -0.026618486270308495, -0.04298414662480354, -0.03239595890045166, -0.035338375717401505, 0.10445146262645721, 0.027775244787335396, 0.04475897178053856, -0.018790228292346, 0.038674499839544296, 0.03307284414768219, 0.0012451914371922612, -0.0923597514629364, 0.01929476112127304, -0.007859833538532257, 0.024367814883589745, -0.04171941056847572, -0.009729298762977123, -0.02915351092815399, -0.0732632502913475, 0.03328970447182655, -0.06274007260799408, -0.04193184897303581, -0.08088193088769913, 0.0266810841858387, -0.025468822568655014, 0.006304983049631119, -0.02093982882797718, 0.07263205200433731, -0.0038249180652201176, 0.01339107844978571, -0.0015049520879983902, 0.004988611675798893, -0.030140843242406845, -0.007643469143658876, -0.08581192046403885, 0.007518378086388111, 0.008208056911826134, 0.02697417326271534, 0.0035908238496631384, 0.0766914039850235, 0.010266857221722603, -0.0663304328918457, 0.04091272130608559, 0.00973429623991251, -0.003610841929912567, 0.01421764399856329, 0.06769941747188568, -0.008072394877672195, -0.033335186541080475, 0.06065402179956436, -0.013104078359901905, -0.011359835043549538, 0.02561368979513645, 0.03965954855084419, -0.011377616785466671, 0.029452616348862648, 0.009877310134470463, 0.005945276468992233, 0.013598503544926643, -0.007037355564534664, 0.024849163368344307, -0.01923155039548874, -0.023316344246268272, -0.007259343285113573, -0.01852850802242756, -0.06250801682472229, 0.05551876127719879, 0.03294294700026512, -0.03528085723519325, 0.04205796867609024, -0.04457924887537956, -0.05252212658524513, 0.04222307726740837, -0.008304860442876816, -0.26571598649024963, 0.015746375545859337, 0.08941172063350677, 0.04479639604687691, -0.0002961994905490428, 0.01307173166424036, 0.042390599846839905, -0.025641921907663345, 0.008268166333436966, -0.002410486340522766, 0.09534657001495361, 0.05097828805446625, -0.03262379765510559, 0.003239728044718504, 0.010599224828183651, -0.031449612230062485, 0.027842910960316658, -0.01731100119650364, 0.046019066125154495, -0.02526923082768917, 0.025245722383260727, 0.002481460105627775, 0.15720991790294647, 0.015498137101531029, 0.007642949000000954, 0.02649475261569023, 0.015742067247629166, 0.011119558475911617, -0.0040380386635661125, 0.005735305603593588, -0.03889644518494606, 0.019702250137925148, 0.00014788078260608017, 0.039852701127529144, 0.01885523460805416, -0.08073951303958893, -0.015116342343389988, 0.01590593531727791, 0.01885034143924713, -0.005798365455120802, -0.0022080903872847557, 0.02647610381245613, -0.005361214280128479, 0.05380231887102127, 0.05997566878795624, 0.013251520693302155, 0.004017925355583429, -0.03884609043598175, -0.05356362834572792, -0.007355222478508949, -0.06376268714666367, -0.06072115898132324, 0.021572617813944817, -0.02885398641228676, 0.018526984378695488, 0.07993075251579285, 0.038748469203710556, -0.017969315871596336, 0.03241583704948425, -0.00005886393046239391, -0.035817667841911316, -0.008969173766672611, 0.11298083513975143, 0.004948110319674015, 0.03774673864245415 ]
[ -0.002813778817653656, 0.00035409731208346784, 0.021140677854418755, -0.03159748390316963, 0.004133494105190039, 0.012293050065636635, 0.01933254301548004, 0.02026158943772316, -0.013199427165091038, 0.014914115890860558, -0.029191400855779648, 0.029273761436343193, 0.020919403061270714, -0.015338968485593796, 0.040093790739774704, 0.00028714380459859967, -0.0029098023660480976, 0.003112934296950698, 0.009844912216067314, 0.004976780619472265, 0.00015266485570464283, -0.014363141730427742, -0.01713358610868454, -0.005858642049133778, -0.01658627763390541, 0.020097557455301285, 0.003381592920050025, 0.012935430742800236, 0.018238168209791183, -0.11845886707305908, -0.030389195308089256, -0.014409315772354603, 0.007290245033800602, 0.01649181731045246, 0.013545875437557697, 0.006243410054594278, -0.021514074876904488, -0.017171328887343407, -0.010743123479187489, -0.026302359998226166, -0.028647812083363533, -0.007319641299545765, -0.004469846375286579, 0.023508958518505096, -0.028001785278320312, -0.001479585887864232, -0.005486053414642811, -0.01984236016869545, -0.0205983929336071, 0.000945302308537066, -0.03755977749824524, -0.020418625324964523, 0.006309747230261564, 0.005719651468098164, 0.02981693111360073, 0.016170188784599304, -0.010120241902768612, 0.009504254907369614, 0.03468877077102661, -0.01884717494249344, 0.0326780304312706, -0.018713949248194695, -0.050084590911865234, -0.01448711659759283, -0.013609780929982662, -0.013476913794875145, 0.017132923007011414, 0.01454292144626379, -0.05897042527794838, -0.0011379093630239367, 0.00792234018445015, 0.012000123970210552, -0.04342372715473175, -0.04871801286935806, 0.00909169390797615, -0.028562529012560844, -0.015601275488734245, -0.035711418837308884, 0.02641419880092144, 0.018616484478116035, -0.01832948625087738, 0.016384532675147057, 0.01242088433355093, -0.0007835034630261362, 0.01295482087880373, 0.0032713429536670446, -0.022438466548919678, -0.015200470574200153, 0.019076744094491005, 0.036776330322027206, -0.05899087339639664, 0.04677325487136841, 0.03265511989593506, 0.016366682946681976, -0.09098312258720398, -0.003308655694127083, -0.00544689130038023, -0.037168197333812714, -0.008168673142790794, 0.8728064298629761, -0.01570139452815056, 0.03937568888068199, 0.03257127106189728, 0.025903886184096336, 0.024657689034938812, 0.011117251589894295, -0.007970718666911125, 0.014001118019223213, 0.019348787143826485, -0.004151748027652502, -0.021995587274432182, 0.009365853853523731, 0.011193457990884781, -0.00480407802388072, 0.031292881816625595, 0.027005724608898163, 0.03507421538233757, 0.044320106506347656, -0.0016450830735266209, 0.021681981161236763, 0.03967833146452904, 0.021120719611644745, 0.007777228951454163, 0.04182051494717598, 0.013271873816847801, -0.15559250116348267, 0.00004006949166068807, -8.541558518885314e-33, 0.018149739131331444, -0.007309116423130035, 0.01566023752093315, 0.019141964614391327, -0.019431518390774727, 0.005855587311089039, 0.038814377039670944, 0.008354848250746727, 0.0031137566547840834, -0.027167949825525284, -0.030149616301059723, 0.01063598319888115, -0.018892187625169754, -0.011778052896261215, 0.062477536499500275, -0.010837741196155548, -0.013514864258468151, 0.026828844100236893, -0.00011791219003498554, 0.026103297248482704, 0.03435279428958893, 0.01794898509979248, 0.01019702572375536, -0.004856330342590809, -0.02077176608145237, 0.03139565512537956, -0.014540729112923145, 0.01857232116162777, 0.02623816393315792, -0.048583246767520905, -0.006421946454793215, -0.002058950951322913, -0.041205085813999176, -0.028243763372302055, 0.010405974462628365, -0.037398602813482285, -0.02750149369239807, -0.004288638010621071, -0.025873607024550438, -0.009273362345993519, -0.052328918129205704, 0.004480327945202589, -0.029365455731749535, -0.016944196075201035, -0.01815081387758255, 0.004453922621905804, 0.007590086665004492, -0.014636285603046417, 0.019367044791579247, -0.0012476093834266067, -0.014081747271120548, 0.013250322081148624, 0.02569492533802986, 0.0118291936814785, -0.01764129474759102, -0.01352781243622303, 0.02338903769850731, 0.017985938116908073, -0.009657765738666058, 0.006442905403673649, 0.02652888558804989, -0.014764956198632717, -0.01757333241403103, 0.030815282836556435, -0.014018827117979527, 0.01941387914121151, 0.010234749875962734, 0.008339349180459976, 0.01821671798825264, -0.014356324449181557, -0.05000760406255722, 0.034689415246248245, 0.007233552169054747, -0.0027640617918223143, -0.010817454196512699, -0.02205010876059532, -0.02404056303203106, 0.020854732021689415, -0.023789003491401672, 0.05111340805888176, 0.02074592560529709, -0.01608332432806492, -0.002493113512173295, -0.04189058393239975, -0.0018213789444416761, 0.016749968752264977, 0.0207693912088871, -0.023666024208068848, 0.02839428000152111, 0.025289585813879967, 0.01071928534656763, -0.023684419691562653, -0.016534319147467613, 0.006629689130932093, -0.030672959983348846, 8.335165220767936e-33, -0.03543400019407272, -0.03643348067998886, -0.012013183906674385, 0.020303260535001755, 0.03790399059653282, -0.00205802358686924, -0.00650450773537159, -0.00529449013993144, -0.05370861291885376, 0.005753532517701387, -0.036973509937524796, -0.0006314743077382445, -0.020517323166131973, 0.045517873018980026, 0.02319173887372017, -0.03857829421758652, 0.03453715145587921, -0.02768711745738983, 0.02172148786485195, 0.010903839953243732, 0.021275533363223076, 0.0067919897846877575, -0.00996580719947815, -0.005363760981708765, 0.023423025384545326, 0.05145819112658501, 0.009588457643985748, 0.0014748591929674149, 0.012746090069413185, 0.02414783276617527, 0.03133426234126091, -0.00011022528633475304, 0.01352313905954361, 0.0019246460869908333, 0.004155309870839119, 0.01699162647128105, -0.029306624084711075, -0.013867278583347797, 0.009131412953138351, -0.025495069101452827, 0.010522428900003433, -0.02364468201994896, -0.015247082337737083, 0.038331255316734314, 0.009243255481123924, 0.028416147455573082, -0.002121256198734045, -0.037038709968328476, -0.0005053608911111951, -0.0017755244625732303, 0.010218030773103237, 0.0066034430637955666, 0.0204511359333992, -0.0031619907822459936, 0.01187538169324398, -0.03757837414741516, -0.03144745156168938, 0.00784030370414257, 0.02322910726070404, -0.016860146075487137, -0.020257489755749702, 0.0054881637915968895, -0.04015176743268967, 0.01019778661429882, -0.009107576683163643, 0.010601220652461052, -0.02532185986638069, 0.01403468195348978, -0.0030023374129086733, -0.0033060824498534203, -0.044549163430929184, 0.01512342132627964, 0.019452646374702454, 0.027173224836587906, -0.005856152158230543, -0.008752012625336647, -0.009856528602540493, 0.014272579923272133, -0.03516758605837822, 0.01908326894044876, -0.004477151203900576, 0.014484971761703491, 0.023753320798277855, -0.013670369051396847, -0.00812864676117897, 0.010102055966854095, -0.01670038141310215, 0.03229564428329468, -0.007572540547698736, -0.0248610507696867, 0.01597665809094906, 0.00024341724929399788, 0.016600867733359337, 0.013151186518371105, -0.013380846008658409, -1.3805857790316622e-8, -0.011241532862186432, -0.012936761602759361, -0.02471434883773327, -0.008849343284964561, 0.009229605086147785, 0.01991020329296589, -0.000002125528453689185, -0.027172299101948738, -0.028361210599541664, 0.013307517394423485, 0.04143857583403587, -0.005682175979018211, 0.004139742348343134, 0.025734970346093178, 0.025658898055553436, -0.028071831911802292, 0.0006746757426299155, -0.004662830848246813, 0.029696723446249962, 0.02633483149111271, 0.009416374377906322, 0.06196703389286995, 0.013120012357831001, -0.0073455022647976875, -0.000919919169973582, -0.0026669094804674387, -0.011705550365149975, -0.07611403614282608, -0.019766774028539658, 0.0016875043511390686, -0.00515415333211422, -0.03273855894804001, -0.008054185658693314, 0.03515798971056938, -0.01567239873111248, -0.02491583861410618, 0.012101154774427414, 0.015141208656132221, 0.0028455923311412334, -0.0022745223250240088, -0.027314987033605576, 0.02197132259607315, -0.03253009915351868, -0.024532709270715714, -0.006373072974383831, 0.006607423070818186, -0.04775431379675865, -0.008060927502810955, 0.02044454962015152, -0.051545560359954834, -0.010660319589078426, 0.0030821128748357296, 0.004971382208168507, 0.009185834787786007, 0.015325474552810192, 0.0028121524956077337, 0.007724827621132135, 0.003118303604424, -0.013235882855951786, -0.02173805981874466, -0.013366319239139557, 0.005687334109097719, -0.031079547479748726, -0.00932975485920906 ]
gamification-and-software-some-thoughts
https://markhneedham.com/blog/2012/12/31/gamification-and-software-some-thoughts
false
2012-12-31 20:44:56
Haskell: An impressively non performant union find
[ "haskell" ]
[ "Haskell" ]
I've spent the best part of the last day debugging a https://github.com/mneedham/algorithms2/blob/master/clustering.hs[clustering algorithm] I wrote as part of the https://www.coursera.org/course/algo2[Algorithms 2] course, eventually coming to the conclusion that the http://en.wikipedia.org/wiki/Disjoint-set_data_structure[union find data structure] I was using wasn't working as expected. In our algorithm we're trying to group together points which are 'close' to each other and the data structure is particular useful for doing that. To paraphrase from http://www.markhneedham.com/blog/2012/12/23/kruskals-algorithm-using-union-find-in-ruby/[my previous post about how we use the union find data structure]:</p> We start out with n connected components i.e. every point is in its own connected component. We then merge these components together as calculate the neighbours of each point until we've iterated through all the points and have grouped all the points into the appropriate components. I came across 3 libraries which implement this data structure - http://hackage.haskell.org/packages/archive/union-find/0.2/doc/html/Data-UnionFind-ST.html[union-find], http://hackage.haskell.org/packages/archive/equivalence/0.2.3/doc/html/Data-Equivalence-Monad.html[equivalence] and http://hackage.haskell.org/packages/archive/persistent-equivalence/0.3/doc/html/Data-Equivalence-Persistent.html#v:emptyEquivalence[persistent-equivalence]. union-find seemed like it had the easiest API to understand so I plugged it into my program only to eventually realise that it wasn't putting the points into components as I expected. I eventually narrowed the problem down to the following example: [source,haskell] ---- > let uf = emptyEquivalence (0,9) [(0,0),(1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9)] > components $ equate 0 1 uf [(0,0),(1,0),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9)] > components $ equate 8 9 $ equate 0 1 $ uf [(0,0),(1,0),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,8)] > components $ equate 0 8 $ equate 8 9 $ equate 0 1 $ uf [(0,0),(1,0),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,0),(9,8)] ---- We start out with a union-find where every point is in its own component. The next line puts points '0' and '1' into the same component which it does by making indexes '0' and '1' of the array both have the same value, in this case 0, which is known as the component's leader. We continue doing that for points '8' and '9' which works fine and our union find now consists of 8 components - the ones with leaders 8 & 0 which have two elements and then ones with leaders 2,3,4,5,6 & 7 which only contain themselves. Things go wrong on our next step where we try to join nodes '0' and '8'. As I understand it what should happen here is that all the points connected to either '0' or '8' should end up in the same component so we should have a component containing points '0', '1', '8' and '9' but '9' has been missed off in this case. The implementation is deliberately written to work like this so I thought I'd try writing my own version based on the following Ruby version: [source,ruby] ---- class UnionFind def initialize(n) @leaders = 1.upto(n).inject([]) { |leaders, i| leaders[i] = i; leaders } end def connected?(id1,id2) @leaders[id1] == @leaders[id2] end def union(id1,id2) leader_1, leader_2 = @leaders[id1], @leaders[id2] @leaders.map! {|i| (i == leader_1) ? leader_2 : i } end end ---- This is https://github.com/mneedham/algorithms2/blob/master/Leaders.hs[my Haskell equivalent] which I adapted from the union-find one that I mentioned above: [source,haskell] ---- module Leaders (UnionSet, create, components, numberOfComponents, indexes, inSameComponent, union) where import Control.Concurrent.MVar import Control.Monad import Data.Array.Diff as ArrayDiff import Data.IORef import qualified Data.List import Data.Maybe import System.IO.Unsafe import qualified Data.Set as Set arrayFrom :: (IArray a e, Ix i) => (i,i) -> (i -> e) -> a i e arrayFrom rng f = array rng [ (x, f x) | x <- range rng ] ref :: a -> IORef a ref x = unsafePerformIO (newIORef x) data UnionSet i = UnionSet { leaders :: IORef (DiffArray i i) } create :: Ix i => (i, i) -> UnionSet i create is = UnionSet (ref (arrayFrom is id)) extractComponents :: Ix i => DiffArray i i -> [(i, i)] extractComponents = Set.toList . Set.fromList . ArrayDiff.assocs components :: Ix i => UnionSet i -> [(i,i)] components (UnionSet leaders) = unsafePerformIO $ do l <- readIORef leaders return (extractComponents l) numberOfComponents :: Ix i => UnionSet i -> Int numberOfComponents (UnionSet leaders) = unsafePerformIO $ do l <- readIORef leaders return (length $ extractComponents l) indexes :: Ix i => UnionSet i -> [(i,i)] indexes (UnionSet leaders) = unsafePerformIO $ do l <- readIORef leaders return (ArrayDiff.assocs l) inSameComponent :: Ix i => UnionSet i -> i -> i -> Bool inSameComponent (UnionSet leaders) x y = unsafePerformIO $ do l <- readIORef leaders return (l ! x == l ! y) union x y (UnionSet leaders) = unsafePerformIO $ do ls <- readIORef leaders let leader1 = ls ! x leader2 = ls ! y newLeaders = map (\(index, value) -> (index, leader2)) . filter (\(index, value) -> value == leader1) $ assocs ls modifyIORef leaders (\l -> l // newLeaders) return $ UnionSet leaders ---- We can recreate the above example like so: [source,haskell] ---- > indexes $ Leaders.union 0 8 $ Leaders.union 8 9 $ Leaders.union 0 1 $ create (0,9) [(0,9),(1,9),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,9),(9,9)] ---- Unfortunately it takes 44 seconds to execute which is mainly down to the call to +++<cite>+++http://zvon.org/other/haskell/Outputarray/index.html[assocs]+++</cite>+++ on line 46. +++<cite>+++assocs+++</cite>+++ gives us a list of all the indexes and their corresponding values which we use to work out which indexes need to be updated with a new leader. The rest of the code is mostly boiler plate around getting the array out of the http://www.haskell.org/ghc/docs/latest/html/libraries/base/Data-IORef.html[IORef]. The IORef allows us to have a mutable array in this instance. There is a http://c2.com/cgi/wiki?HaskellExampleForMutabilityOnObjects[page on the c2 wiki which explains how to use IORef in more detail]. Although using the DiffArray allows us to provide a pure external interface around its use, it is http://www.haskell.org/haskellwiki/Modern_array_libraries#DiffArray_.28module_Data.Array.Diff.29[known to be 10-100x slower than an MArray]. I've been playing around with a version of the union-find data structure which https://github.com/mneedham/algorithms2/blob/master/MutableLeaders.hs[makes use of an MArray instead] and has decreased the execution time to 34 seconds. Unless anyone has any ideas for how I can get this to perform more quickly I'm thinking that perhaps an array isn't a good choice of underlying data structure at least when using Haskell.
null
null
[ 0.0028219628147780895, 0.010369724594056606, -0.025392016395926476, 0.04538340121507645, 0.05082619562745094, 0.025565769523382187, 0.03409033641219139, 0.03131813928484917, 0.021446073427796364, -0.017873480916023254, 0.00012883117597084492, -0.04319239780306816, -0.08586455881595612, 0.04290633648633957, -0.016662292182445526, 0.05189216136932373, 0.06657518446445465, -0.015438203699886799, -0.017302256077528, 0.03120436891913414, 0.022946728393435478, 0.07119311392307281, -0.004657587967813015, 0.0272703617811203, 0.028944723308086395, 0.02244642935693264, 0.06002698466181755, -0.00038544347626157105, -0.0434221588075161, 0.01046469435095787, 0.042387861758470535, 0.013464880175888538, 0.010877171531319618, -0.03377555310726166, 0.043305404484272, -0.014083651825785637, -0.0029245682526379824, 0.022550171241164207, 0.020576806738972664, 0.01400989480316639, -0.06769809871912003, 0.034689199179410934, -0.005567698739469051, 0.008375600911676884, -0.032937902957201004, 0.0002021538675762713, -0.047701120376586914, 0.01468423381447792, -0.03102075681090355, 0.021164728328585625, -0.062308162450790405, 0.0013172731269150972, 0.0033432436175644398, -0.008513009175658226, -0.03221059963107109, 0.06338820606470108, 0.005613371729850769, -0.06861281394958496, 0.04784871265292168, -0.03872431069612503, -0.016361482441425323, -0.0021561160683631897, 0.005743028130382299, 0.02680916152894497, 0.011492663994431496, -0.04268074408173561, -0.016350088641047478, 0.049311526119709015, -0.03978956863284111, -0.032906338572502136, 0.018706757575273514, 0.00515983160585165, -0.03147628530859947, -0.029360948130488396, 0.004782932344824076, -0.03910726681351662, -0.02354111522436142, 0.04125526547431946, 0.016415294259786606, 0.03839544579386711, -0.028519071638584137, 0.03818102926015854, 0.020125126466155052, 0.01789800450205803, 0.027707740664482117, -0.057137541472911835, -0.06186327338218689, -0.003030148334801197, -0.07482252269983292, 0.07074642181396484, 0.0017885296838358045, -0.04363631829619408, -0.002991019282490015, 0.023942263796925545, 0.011689411476254463, -0.005768238566815853, 0.02045769803225994, 0.022602064535021782, 0.008389189839363098, -0.024486228823661804, -0.03981468081474304, -0.028981097042560577, 0.021785413846373558, 0.004178163595497608, -0.06076238304376602, -0.02091492898762226, -0.030254455283284187, -0.01737639494240284, 0.016957668587565422, -0.013780692592263222, -0.05064127594232559, -0.007564900442957878, -0.003114965045824647, 0.022808555513620377, -0.06996622681617737, 0.07294459640979767, -0.005018657073378563, -0.011826708912849426, -0.015524795278906822, 0.0342792347073555, 0.03426447510719299, 0.03254474699497223, 0.010591383092105389, 0.060516100376844406, 0.030859360471367836, 0.045723941177129745, 0.004602243658155203, 0.0518561527132988, -0.045328252017498016, -0.08986454457044601, -0.010760921984910965, 0.05790824815630913, -0.030498404055833817, -0.005594119895249605, 0.003824912942945957, -0.02109067142009735, -0.042945731431245804, 0.01584669016301632, 0.06031966209411621, 0.05268686264753342, -0.00009527440852252766, -0.03158891201019287, 0.0356697142124176, 0.011906682513654232, 0.015093035995960236, 0.0064661744982004166, -0.02164740487933159, -0.01806112751364708, -0.023571422323584557, 0.01968766190111637, 0.019368112087249756, 0.02946610189974308, 0.050554435700178146, -0.029987268149852753, 0.024360671639442444, 0.1093798503279686, 0.01200637686997652, 0.018812602385878563, -0.014100182801485062, 0.01831718161702156, 0.032359279692173004, 0.03397231176495552, -0.0003085513017140329, 0.03589942678809166, 0.009778031148016453, -0.00730396993458271, 0.0025228261947631836, 0.06532634049654007, -0.007433692459017038, -0.008271239697933197, -0.061578329652547836, -0.07697198539972305, 0.07096367329359055, -0.03439011424779892, -0.005680841393768787, 0.021576659753918648, 0.08534248173236847, 0.01615096814930439, 0.04291178658604622, 0.015432878397405148, -0.07721486687660217, 0.014369895681738853, -0.010903197340667248, 0.03665979579091072, 0.028765259310603142, 0.013532307930290699, 0.07343297451734543, 0.009694227017462254, 0.021890001371502876, 0.04713159054517746, -0.060426339507102966, -0.07042253762483597, -0.004160990472882986, -0.01166691817343235, 0.07232294976711273, -0.0318855457007885, -0.026794856414198875, 0.04976050928235054, -0.02222420461475849, 0.048966627568006516, 0.021790919825434685, 0.004755313042551279, 0.007181114517152309, -0.024918032810091972, -0.02047327533364296, 0.06553267687559128, 0.04294893145561218, -0.03403415530920029, -0.06744378060102463, -0.0066788773983716965, -0.010820567607879639, -0.0419183075428009, 0.03261644393205643, -0.029693953692913055, 0.047143399715423584, 0.03114844672381878, 0.021028470247983932, -0.016425691545009613, 0.06635642051696777, -0.05134032294154167, 0.033507075160741806, 0.011559178121387959, -0.003856867551803589, -0.017036814242601395, 0.018944155424833298, 0.12443681806325912, 0.07038924843072891, -0.024010445922613144, -0.018306175246834755, 0.022186482325196266, 0.01256371010094881, -0.030456969514489174, -0.016417844220995903, -0.0002487246529199183, -0.007976500317454338, -0.015670616179704666, -0.0161092858761549, -0.015195321291685104, 0.03625508025288582, -0.023478291928768158, -0.03415041044354439, 0.06870075315237045, -0.015644146129488945, 0.03955909237265587, 0.006081626284867525, -0.03316061198711395, 0.008695199154317379, -0.041059449315071106, -0.05274035036563873, -0.000230896141147241, 0.025027059018611908, -0.009632750414311886, 0.0208625216037035, -0.04017074033617973, -0.021881893277168274, -0.029836243018507957, 0.0035835967864841223, 0.02023977041244507, 0.06224789842963219, 0.06222203001379967, -0.012007997371256351, 0.02353428676724434, -0.04609129577875137, -0.02008872479200363, 0.012255852110683918, -0.06982538104057312, -0.06214900687336922, -0.004061453975737095, 0.007076812442392111, 0.016630586236715317, 0.0017540538683533669, -0.02060251496732235, 0.03563478961586952, -0.004955044481903315, -0.01634497009217739, 0.001955919899046421, 0.01982187293469906, -0.03862923011183739, -0.04549286887049675, -0.026692941784858704, -0.04389018937945366, 0.05397024378180504, -0.05417003855109215, 0.011188637465238571, 0.004316255915910006, -0.05245146527886391, 0.06690684705972672, -0.07810653001070023, -0.022014055401086807, 0.0005745186354033649, 0.03382473811507225, 0.023426171392202377, -0.043125979602336884, -0.02665563113987446, 0.0762866884469986, 0.022025082260370255, 0.04075179994106293, 0.007397336419671774, -0.0024925635661929846, 0.028235675767064095, -0.016392787918448448, 0.029551122337579727, 0.06555835902690887, -0.007778490893542767, 0.0008586266776546836, -0.022800100967288017, 0.022190572693943977, -0.00690621929243207, -0.28081947565078735, 0.007991481572389603, -0.037095535546541214, -0.0402304083108902, 0.026056945323944092, -0.005962523631751537, 0.001754740602336824, -0.037801459431648254, -0.006536158267408609, 0.026057559996843338, -0.022429460659623146, -0.03052365593612194, -0.018161844462156296, 0.057766515761613846, 0.027049027383327484, 0.008329944685101509, -0.013226442039012909, -0.02300179935991764, 0.004909378942102194, 0.060645706951618195, -0.020557323470711708, -0.05967612937092781, -0.006361743435263634, 0.06350316852331161, 0.005397008266299963, 0.041502807289361954, -0.09083376079797745, 0.03630628064274788, -0.057118870317935944, -0.021771814674139023, 0.006429651286453009, -0.014596906490623951, -0.013076298870146275, -0.011481579393148422, -0.00136152736376971, -0.03503268584609032, 0.028617488220334053, 0.018741248175501823, 0.0227094404399395, 0.03453606739640236, -0.020068930462002754, -0.01749212108552456, 0.014062087051570415, -0.0090564526617527, 0.08393242955207825, -0.0210996363312006, -0.05241512879729271, -0.01477795746177435, -0.040459975600242615, 0.06272292882204056, -0.02004813402891159, -0.02990829385817051, -0.008032947778701782, 0.049725305289030075, -0.013367409817874432, -0.025244267657399178, 0.007146825548261404, 0.0023365053348243237, -0.04637201502919197, -0.01575969159603119, -0.04510527476668358, -0.05276952683925629, -0.01232952531427145, -0.0665845200419426, -0.04414733871817589, -0.06685178726911545, -0.0976482480764389, 0.022544853389263153, 0.052212461829185486, 0.028435664251446724, -0.0016521736979484558, -0.010769467800855637, -0.033886704593896866, -0.10092353820800781, -0.028079580515623093, -0.004814407788217068, -0.00707384804263711, -0.014613634906709194, -0.003161380998790264, 0.05700615793466568, -0.021946853026747704, -0.059817347675561905, 0.03869718313217163, 0.010019388049840927, 0.027185339480638504, -0.006168030202388763, 0.012048404663801193, -0.012000010348856449, -0.02126309834420681, 0.0039062644354999065, 0.06004154309630394, -0.013348345644772053, -0.005456073209643364, -0.01841925084590912, 0.02866324596107006, 0.021151501685380936, 0.020542087033391, -0.012303394265472889, 0.020714594051241875, 0.03973187878727913, 0.015422875992953777, -0.05393146350979805, 0.015398330986499786, -0.024841776117682457, -0.044378288090229034, 0.01099016610532999, -0.04660030081868172, 0.034450214356184006, 0.04043220356106758, 0.029259774833917618, -0.025948818773031235, -0.06000007316470146, 0.0282865222543478, -0.05887932330369949, -0.01609271764755249, -0.026679765433073044, 0.009287231601774693, 0.03333871439099312, 0.031825579702854156, 0.013039646670222282, -0.0634269267320633, -0.0027804565615952015, 0.013975515030324459, -0.0035456824116408825, -0.06262774765491486, -0.018534215167164803, -0.035236865282058716, -0.014405420981347561, 0.02376963570713997, 0.027606606483459473, 0.00006993344140937552, 0.025079483166337013, 0.01857328601181507, -0.028754128143191338, 0.04874616116285324, -0.02030949853360653, -0.034066349267959595, -0.022609546780586243, -0.0021923391614109278, -0.014244982041418552, 0.023256083950400352, -0.003563392674550414, 0.0471215546131134, 0.02342362515628338, 0.05947648361325264, 0.019462641328573227, 0.010548915714025497, -0.0003516160068102181, 0.01090178918093443, -0.009777827188372612, 0.007913952693343163, -0.04463088884949684, 0.018306655809283257, -0.01434445008635521, 0.003538399003446102, -0.01229774858802557, 0.032367926090955734, -0.011323107406497002, -0.06021377444267273, -0.036429427564144135, 0.007346493657678366, -0.04617200419306755, -0.016762439161539078, -0.04032975807785988, 0.010727845132350922, 0.06498004496097565, -0.02123326063156128, 0.030496565625071526, -0.03747854381799698, -0.006478486582636833, 0.014878807589411736, 0.01066944096237421, -0.03391697630286217, 0.018299687653779984, 0.001574912341311574, -0.0006599567132070661, 0.005960175301879644, 0.018219055607914925, 0.028965622186660767, -0.012044209986925125, -0.041791703552007675, -0.017140910029411316, -0.0022458676248788834, 0.002325858920812607, 0.05209330469369888, 0.008869136683642864, -0.0036599363666027784, 0.017296018078923225, -0.011633486486971378, -0.018309393897652626, -0.016014505177736282, -0.010431609116494656, -0.02722541056573391, 0.021484410390257835, -0.016268383711576462, -0.07868101447820663, 0.014529007486999035, 0.010801887139678001, -0.004777360241860151, 0.0035643037408590317, 0.00411449559032917, -0.009811695665121078, -0.022189505398273468, 0.0013782903552055359, 0.09607667475938797, -0.05672471225261688, 0.002128768479451537, 0.007554612122476101, 0.015691332519054413, -0.003220676677301526, 0.03396312892436981, -0.07273451238870621, -0.036643993109464645, -0.008379491046071053, 0.010618294589221478, -0.025653187185525894, -0.012173833325505257, -0.02154439128935337, 0.009729764424264431, -0.00828107725828886, 0.000061003876908216625, 0.015912853181362152, 0.001474072807468474, 0.019614413380622864, -0.04369645193219185, -0.003029072191566229, -0.030486077070236206, -0.02532663755118847, 0.015061129815876484, -0.0055728391744196415, 0.016110964119434357, -0.03514650836586952, 0.02182750590145588, 0.0287113469094038, -0.019482441246509552, -0.02172166295349598, -0.03460784628987312, 0.0035213888622820377, -0.02540837600827217, 0.02786443568766117, 0.017007112503051758, -0.025089070200920105, 0.0066249738447368145, 0.00513515854254365, -0.03902052715420723, 0.0017083316342905164, 0.02340550720691681, -0.028110018000006676, 0.025400638580322266, 0.013662382028996944, -0.022116126492619514, 0.0142422029748559, -0.043087586760520935, -0.03192596510052681, 0.04192537069320679, -0.028682667762041092, -0.019628062844276428, -0.03791048377752304, -0.03480391204357147, 0.005397021304816008, 0.004366557579487562, 0.0037686338182538748, -0.026467153802514076, 0.032309312373399734, 0.03160658851265907, 0.0323169119656086, 0.03177347406744957, -0.02800958976149559, 0.02927544340491295, -0.036569997668266296, -0.0004798565641976893, -0.09077630937099457, -0.015502570196986198, 0.027751462534070015, -0.013850309886038303, -0.02021186426281929, -0.02397513948380947, -0.0112216267734766, 0.007776844780892134, -0.04626069590449333, -0.014566722325980663, 0.03935827687382698, 0.006972046568989754, -0.0002758978516794741, 0.02752228081226349, -0.020032938569784164, 0.029981885105371475, 0.03537868335843086, -0.025839025154709816, 0.006689167581498623, -0.03059433400630951, 0.04839377850294113, 0.009038729593157768, 0.019188445061445236, 0.0040691024623811245, -0.015381859615445137, 0.040386781096458435, 0.0225435271859169, 0.050429824739694595, 0.06123783066868782, -0.021854091435670853, 0.012620199471712112, 0.020375961437821388, -0.009521451778709888, 0.013019759207963943, 0.027999553829431534, -0.021743355318903923, -0.04014326259493828, 0.05063895136117935, 0.0265705194324255, 0.009775908663868904, -0.04142139106988907, 0.056899018585681915, 0.006384169217199087, -0.04660718888044357, -0.05602998286485672, 0.027034346014261246, -0.03162369504570961, 0.004162023309618235, -0.009707427583634853, 0.019527487456798553, -0.05204387009143829, 0.05301263555884361, -0.016839709132909775, 0.027360491454601288, 0.07545965909957886, 0.026541493833065033, -0.0351601243019104, -0.0005517880781553686, 0.09964676201343536, 0.10400689393281937, 0.03780613839626312, 0.019173070788383484, 0.07296960055828094, -0.04889345169067383, -0.04669691622257233, 0.01263902336359024, -0.03382381051778793, 0.004219138529151678, 0.000014810277207288891, 0.015020295046269894, 0.07110271602869034, -0.03397457301616669, 0.06133600324392319, -0.04155248403549194, -0.007961424998939037, 0.008521392941474915, 0.017030803486704826, 0.0346105620265007, 0.05380740389227867, 0.004666171967983246, 0.06140514835715294, -0.007929699495434761, -0.05374494567513466, 0.0027984296903014183, -0.009136965498328209, 0.004372983239591122, -0.00665099173784256, -0.0030968114733695984, 0.030053695663809776, 0.019915664568543434, 0.02197129838168621, 0.06259141117334366, -0.021927762776613235, -0.0019016099395230412, -0.012051037512719631, 0.024814028292894363, -0.0016662942944094539, -0.001362012350000441, -0.020028917118906975, -0.041871558874845505, 0.01058950275182724, -0.04841205105185509, -0.003919476643204689, -0.00527803273871541, -0.03544779494404793, 0.0368807278573513, -0.025750817731022835, 0.025284595787525177, 0.019161920994520187, 0.01845497265458107, -0.04030666500329971, -0.0396839864552021, -0.05102372169494629, -0.05318032205104828, -0.06933450698852539, 0.024377120658755302, 0.0002405344566795975, -0.01892516016960144, -0.04030885174870491, -0.037407584488391876, -0.006360142957419157, -0.032817862927913666, 0.03611065074801445, -0.04237733036279678, -0.028843002393841743, 0.0005391708691604435, 0.03152156621217728, 0.06023023650050163, 0.03219147399067879, 0.04248358681797981, -0.017544744536280632, 0.007658306043595076, -0.030120227485895157, -0.02016664482653141, 0.024524090811610222, 0.016963128000497818, -0.012362654320895672, -0.0713520422577858, 0.013992606662213802, 0.011860301718115807, 0.011461152695119381, -0.08447209000587463, -0.0036778454668819904, 0.0445282943546772, 0.0002563137386459857, 0.0228409506380558, -0.025771209970116615, -0.011474650353193283, -0.019592827185988426, -0.008117154240608215, -0.030042599886655807, 0.011184894479811192, 0.03679831326007843, -0.016886524856090546, 0.0908060073852539, 0.0009785693837329745, -0.00042917081736959517, -0.02859693393111229, -0.00821631494909525, -0.007259394973516464, 0.018121829256415367, -0.04054800793528557, -0.04958171024918556, -0.03532404080033302, -0.07239937037229538, -0.04682740569114685, 0.0043683042749762535, -0.04784353822469711, -0.032093584537506104, 0.004548677708953619, 0.045480091124773026, -0.06738241016864777, 0.047271501272916794, -0.04798462986946106, 0.0495242103934288, -0.04188626632094383, -0.022877756506204605, -0.004871036391705275, 0.030217787250876427, -0.015606972388923168, 0.013316592201590538, 0.022860169410705566, -0.026721462607383728, -0.002104619750753045, -0.006131852976977825, 0.01853533647954464, 0.014904655516147614, 0.0018717338098213077, 0.031110547482967377 ]
[ -0.08218695968389511, -0.032520417124032974, -0.048359885811805725, 0.017270447686314583, 0.0335891991853714, -0.0428251214325428, -0.012384293600916862, -0.025895165279507637, 0.043976522982120514, -0.023442458361387253, 0.04384121298789978, -0.0980612114071846, 0.02826611138880253, -0.00601021246984601, 0.05010547488927841, 0.006591713987290859, -0.06003772094845772, -0.006974189542233944, -0.030348338186740875, 0.03920188546180725, -0.02686678245663643, -0.03392216935753822, -0.047023847699165344, -0.03906586766242981, 0.0640338808298111, 0.09074395149946213, 0.023887336254119873, -0.05811804160475731, 0.00339898350648582, -0.2501823902130127, -0.015909157693386078, 0.04078153148293495, 0.04384005814790726, -0.0014929395401850343, -0.018290720880031586, 0.039199795573949814, 0.08069490641355515, 0.0006765775615349412, -0.02371768094599247, 0.0586223229765892, 0.02984260953962803, 0.01205136813223362, -0.01315238419920206, -0.023102032020688057, 0.002212894381955266, 0.036003243178129196, -0.051211193203926086, 0.023543830960989, -0.008512693457305431, 0.0009336563525721431, 0.012854048050940037, -0.014744198881089687, -0.012493018060922623, 0.06315728276968002, 0.04012998193502426, 0.06972210854291916, 0.03996841609477997, 0.06150045245885849, -0.0003986291994806379, 0.007617824710905552, 0.02396281808614731, 0.0007753270911052823, -0.10985566675662994, 0.06263655424118042, 0.021512962877750397, 0.04962959513068199, 0.0031223627738654613, -0.05067092552781105, -0.03126239776611328, 0.08901982754468918, 0.018472135066986084, 0.009858516976237297, -0.0004845522635150701, 0.031695250421762466, 0.027882447466254234, 0.00985065009444952, -0.0037342379800975323, -0.00748284999281168, 0.0616670586168766, -0.03890947997570038, -0.07444595545530319, -0.014209588058292866, -0.017185939475893974, 0.024728737771511078, -0.01165200024843216, -0.008426930755376816, -0.05435935780405998, 0.010801869444549084, -0.022302836179733276, -0.0022584230173379183, 0.029252761974930763, -0.016013313084840775, -0.007983510382473469, 0.0007486685062758625, -0.05413620173931122, -0.012604128569364548, -0.028560753911733627, 0.025757530704140663, 0.02176756039261818, 0.37118539214134216, -0.03697764128446579, 0.020914610475301743, 0.029317552223801613, 0.01723407208919525, -0.05038372054696083, -0.0015129108214750886, -0.027862267568707466, -0.054375894367694855, -0.01872408576309681, -0.03569786995649338, 0.020140856504440308, -0.0498376227915287, 0.017710184678435326, -0.06336250901222229, 0.01208373811095953, -0.060246776789426804, 0.04134073480963707, 0.0643334612250328, 0.01557517983019352, 0.017289843410253525, -0.002552370773628354, 0.023475000634789467, 0.012941103428602219, 0.03226754441857338, 0.02648165076971054, 0.024866202846169472, 0.012899966910481453, 0.036741577088832855, 0.05199100822210312, 0.026355670765042305, 0.042263638228178024, 0.0045355805195868015, -0.07000749558210373, -0.01813267357647419, -0.015274403616786003, 0.03320202976465225, 0.04806211590766907, -0.023420507088303566, 0.014117402955889702, 0.013364860787987709, -0.006570660509169102, -0.05345474183559418, 0.07837050408124924, -0.004342915024608374, -0.0160420723259449, 0.15219281613826752, -0.03300895914435387, -0.023778513073921204, 0.019591428339481354, -0.01883971132338047, 0.007613214198499918, 0.003377908142283559, -0.05408986657857895, -0.04446455463767052, -0.03467457741498947, 0.01897650584578514, 0.008290134370326996, -0.01679989881813526, -0.02798348292708397, 0.008471377193927765, -0.053124286234378815, -0.02362944185733795, -0.04393143206834793, 0.06450061500072479, 0.041964851319789886, -0.10740133374929428, 0.002074028132483363, 0.03731749206781387, 0.01028479728847742, -0.09743976593017578, 0.0029737891163676977, 0.060104772448539734, -0.01672843098640442, 0.035369809716939926, 0.0505109578371048, -0.015034970827400684, -0.011938799172639847, -0.011623628437519073, 0.043900176882743835, 0.036056261509656906, -0.010166552849113941, 0.04133739322423935, -0.060910914093256, 0.005958440247923136, -0.015389044769108295, -0.04482933133840561, -0.0914449617266655, 0.004560540430247784, -0.027198217809200287, -0.030335161834955215, -0.03357911482453346, -0.012218479998409748, -0.07929353415966034, 0.05906715244054794, -0.046102531254291534, -0.03301536291837692, 0.05963146686553955, -0.01896878518164158, -0.04673555865883827, 0.032687410712242126, -0.015484722331166267, 0.05313057824969292, -0.007074338383972645, 0.016855105757713318, -0.09865491092205048, 0.020552175119519234, 0.04359147697687149, -0.06809724122285843, 0.05654020234942436, 0.02371836081147194, 0.017344631254673004, -0.022904040291905403, -0.08068898320198059, 0.0031779876444488764, 0.031208347529172897, -0.008174959570169449, 0.037938669323921204, -0.01428145170211792, -0.026587270200252533, 0.050064194947481155, 0.013503375463187695, -0.028043502941727638, -0.056630223989486694, -0.33077123761177063, -0.0608404166996479, -0.024078315123915672, -0.00400545634329319, 0.0002454950590617955, -0.08151023834943771, -0.0033262139186263084, -0.010158991441130638, -0.023584339767694473, 0.0579732246696949, 0.09414605051279068, 0.058542486280202866, -0.017277797684073448, -0.07537201792001724, -0.033019207417964935, 0.025416307151317596, -0.00451984629034996, -0.006761215161532164, -0.057084277272224426, 0.02972492203116417, -0.009092722088098526, -0.024277353659272194, 0.003991667181253433, -0.04640747606754303, -0.01953960210084915, -0.0030012710485607386, 0.11560989916324615, -0.03135871887207031, 0.04858076572418213, -0.010869167745113373, 0.0006798985996283591, 0.01979944296181202, -0.04057755321264267, -0.013656225055456161, -0.027164127677679062, -0.02297249063849449, -0.01981917954981327, 0.0023745205253362656, 0.04841673746705055, -0.015454582870006561, -0.07385750114917755, 0.003201730316504836, -0.02924756333231926, -0.038259610533714294, -0.011523079127073288, 0.03511705622076988, 0.013694211840629578, -0.04035801440477371, -0.003709309734404087, 0.021028991788625717, 0.03947143629193306, 0.022875338792800903, 0.033783625811338425, 0.016681144014000893, -0.03788778558373451, -0.003651968901976943, -0.04629841446876526, -0.05323384702205658, -0.02809964306652546, -0.010081767104566097, 0.023063091561198235, 0.056060630828142166, 0.04164052754640579, -0.027802128344774246, 0.0643884465098381, -0.018788620829582214, -0.03026534803211689, 0.0055136652663350105, 0.015625348314642906, 0.004343261942267418, 0.011027384549379349, 0.08180221915245056, -0.008337206207215786, 0.00962754711508751, 0.02921191230416298, 0.03777463361620903, -0.005613557528704405, 0.04760166257619858, 0.04573558270931244, 0.01531896274536848, 0.03989753872156143, -0.0739993155002594, 0.03712044283747673, 0.014860144816339016, 0.008085987530648708, 0.06783856451511383, 0.03247406333684921, 0.019715121015906334, 0.050541263073682785, 0.04444274678826332, -0.009632963687181473, -0.0076095787808299065, -0.01089515071362257, 0.017242398113012314, 0.004824001342058182, 0.011907694861292839, -0.2597402036190033, 0.027452871203422546, 0.01695658266544342, 0.019961785525083542, -0.003509289352223277, 0.010723080486059189, 0.038215041160583496, -0.07494713366031647, -0.004091465380042791, -0.030879678204655647, 0.020327739417552948, 0.07426807284355164, 0.022124990820884705, -0.040126197040081024, -0.006838759873062372, 0.03802165016531944, 0.05962579697370529, 0.027262426912784576, -0.01735117845237255, -0.00688791461288929, 0.009213995188474655, 0.004934148397296667, 0.207275852560997, 0.003138809697702527, 0.013260493054986, 0.007761760149151087, -0.005149150732904673, -0.0036204769276082516, 0.04273910075426102, 0.03573111072182655, -0.05220670998096466, -0.007868177257478237, 0.05484957993030548, -0.012547261081635952, 0.013939989730715752, -0.024083593860268593, 0.04754213988780975, 0.03494754806160927, 0.058280833065509796, -0.04570290818810463, -0.03590663522481918, -0.009862763807177544, -0.001586210448294878, 0.033010561019182205, 0.07074664533138275, -0.010893546044826508, -0.04217792674899101, -0.0730745941400528, -0.01913704164326191, 0.021864615380764008, -0.04979855194687843, -0.03711323440074921, -0.03385413438081741, -0.008504219353199005, -0.0015854870434850454, 0.04134645313024521, -0.05043237283825874, -0.017336739227175713, -0.026139767840504646, -0.008264906704425812, -0.016827136278152466, 0.018476208671927452, 0.059648942202329636, -0.0034505785442888737, 0.0523819662630558 ]
[ -0.008779176510870457, -0.019333671778440475, -0.023245781660079956, 0.04186323285102844, -0.009493962861597538, 0.0039606946520507336, -0.015497583895921707, -0.008284871466457844, -0.02221253328025341, -0.032470498234033585, -0.022521361708641052, -0.007008318789303303, 0.02837814763188362, -0.01661580428481102, -0.015075140632689, -0.0015727465506643057, 0.00904306024312973, -0.013382292352616787, 0.043126244097948074, -0.04984049126505852, -0.03136255592107773, 0.02614455856382847, 0.03821101412177086, 0.01802457682788372, 0.009820408187806606, 0.04875539615750313, -0.016004487872123718, -0.004074046388268471, 0.0159487035125494, -0.12884624302387238, -0.032675448805093765, -0.04281122237443924, -0.006674815434962511, -0.011418507434427738, -0.017000984400510788, 0.018747514113783836, 0.0028095527086406946, 0.03444601222872734, -0.03815683722496033, 0.014597798697650433, 0.00686424458399415, 0.004164109472185373, 0.0002020409592660144, -0.006441050209105015, -0.012203342281281948, 0.06207624450325966, -0.03284716606140137, 0.011809919029474258, -0.013118290342390537, -0.030581045895814896, -0.012161409482359886, 0.02981015294790268, 0.009711753576993942, 0.025701381266117096, 0.013833628036081791, -0.011728488840162754, -0.013017932884395123, -0.02313373051583767, 0.003175516612827778, -0.02973944880068302, 0.005009813699871302, 0.006230669561773539, -0.01966680772602558, -0.025944454595446587, -0.009756323881447315, -0.015471972525119781, -0.013104871846735477, 0.019655531272292137, 0.02709909901022911, -0.017599012702703476, 0.030768198892474174, 0.039607368409633636, -0.03977525606751442, -0.024338126182556152, 0.024660831317305565, 0.030303189530968666, 0.052160099148750305, -0.03556915745139122, 0.0006628053379245102, 0.006740786135196686, -0.0455552414059639, 0.01678050309419632, -0.0036554362159222364, 0.01573934592306614, -0.010824207216501236, -0.04694468155503273, -0.01582394540309906, -0.01620897650718689, 0.0005738840554840863, -0.03817102685570717, -0.039957091212272644, 0.05930782109498978, -0.026438213884830475, -0.0005204398767091334, -0.05598335713148117, -0.002256817650049925, -0.009882120415568352, 0.02631441317498684, 0.02223622240126133, 0.8417730927467346, 0.007836004719138145, 0.0327913761138916, -0.0009130502003245056, 0.013783326372504234, 0.014979781582951546, 0.028982993215322495, -0.017081065103411674, 0.010675854049623013, -0.006938113830983639, -0.03658238425850868, 0.03292480483651161, -0.02877591736614704, 0.02938147820532322, 0.02656935155391693, 0.014313830062747002, 0.013897274620831013, 0.023046646267175674, 0.003527779132127762, 0.012575926259160042, 0.010571573860943317, 0.009557225741446018, -0.0213521346449852, -0.000570321804843843, -0.002750079147517681, 0.01247862633317709, -0.20394936203956604, -0.018806038424372673, -7.939176438806432e-33, 0.01848861761391163, -0.04918097332119942, 0.03891925513744354, -0.019340887665748596, 0.027419371530413628, -0.004194549284875393, -0.02139265090227127, -0.000989489839412272, -0.012735391966998577, 0.002417149255052209, -0.002550930716097355, -0.009610172361135483, 0.017398053780198097, -0.018918313086032867, 0.04364917054772377, -0.02777755819261074, 0.011477269232273102, 0.026197126135230064, -0.018258322030305862, 0.01757827401161194, 0.03709808737039566, 0.0324101559817791, -0.009820429608225822, 0.018663933500647545, -0.028078550472855568, 0.03889111429452896, 0.025346653535962105, -0.046477898955345154, 0.005489299539476633, -0.04367104545235634, -0.05019831657409668, 0.034903302788734436, 0.013819069601595402, 0.001345828757621348, -0.0014614735264331102, -0.029990170150995255, -0.007347896229475737, -0.008664044551551342, -0.0018912660889327526, -0.05880038067698479, 0.009571519680321217, -0.008241837844252586, -0.011775725521147251, -0.041959166526794434, 0.008981031365692616, -0.000011047184671042487, 0.03197317197918892, 0.04022279381752014, 0.010970279574394226, -0.0007936399197205901, 0.0498393252491951, -0.0004229909391142428, 0.011072770692408085, 0.029339881613850594, -0.033486269414424896, 0.00960883405059576, -0.00693749962374568, 0.01831773668527603, 0.043703529983758926, 0.03812795504927635, 0.002516336739063263, -0.0007307166233658791, -0.009120123460888863, 0.027366017922759056, -0.030634194612503052, -0.009062816388905048, 0.038709476590156555, 0.01261568907648325, 0.030868032947182655, 0.02332676760852337, -0.04233333840966225, 0.02474382147192955, -0.028115948662161827, 0.011407136917114258, 0.01034611463546753, -0.03267534449696541, -0.003956108819693327, -0.015466760843992233, -0.00933148805052042, 0.02610672637820244, 0.030789073556661606, -0.021336238831281662, -0.029812080785632133, 0.0008647596696391702, -0.006010054145008326, -0.00021773891057819128, 0.040827371180057526, 0.0033752862364053726, -0.03624581918120384, 0.0059779854491353035, 0.007798546925187111, 0.05428115278482437, 0.025375109165906906, -0.014867288991808891, 0.00390712171792984, 8.37328944130098e-33, 0.008064992725849152, -0.04799629747867584, -0.0069607519544661045, -0.0046838861890137196, 0.010748818516731262, -0.01802881993353367, 0.026518777012825012, 0.028716975823044777, -0.003641024697571993, 0.052380237728357315, 0.005249701905995607, -0.02101021446287632, 0.010442143306136131, -0.018512316048145294, 0.044745396822690964, -0.008413923904299736, 0.033083777874708176, 0.008443505503237247, 0.02878616191446781, 0.009936838410794735, -0.004865821450948715, -0.0102378586307168, 0.02554093301296234, -0.00002744254015851766, 0.02591666206717491, 0.032877836376428604, -0.016480810940265656, 0.004021582659333944, -0.005391867831349373, 0.001566310995258391, 0.004876001738011837, -0.0175182968378067, 0.002199785551056266, -0.014542289078235626, 0.0002598036371637136, 0.022355958819389343, 0.01898176036775112, -0.01938086375594139, 0.0003574238216970116, -0.047542307525873184, 0.02061239629983902, 0.023579349741339684, -0.03866913169622421, 0.021793736144900322, 0.03398268669843674, 0.03302544355392456, -0.0022719278931617737, -0.0089412285014987, -0.0244885366410017, 0.014950954355299473, -0.015928667038679123, 0.013499843887984753, 0.008825965225696564, 0.018975405022501945, 0.014397700317203999, 0.002271027071401477, -0.023419031873345375, 0.009323772974312305, -0.017888246104121208, 0.0025126568507403135, 0.0018809949979186058, -0.030949922278523445, -0.019440781325101852, 0.03869054839015007, -0.03784500062465668, -0.02734973467886448, -0.012683270499110222, -0.034463413059711456, -0.005967151839286089, 0.032277557998895645, -0.03366011753678322, 0.02862587571144104, 0.022270405665040016, 0.03802851215004921, 0.0037708606105297804, -0.003992035053670406, -0.02652943879365921, 0.003883184865117073, 0.006330832839012146, 0.03480060026049614, 0.004860124085098505, -0.013254281133413315, 0.015760505571961403, 0.009810937568545341, 0.04849160462617874, -0.011714264750480652, 0.015473815612494946, 0.04730168730020523, 0.004726813640445471, 0.0073596881702542305, -0.013534112833440304, -0.044495247304439545, -0.004552196711301804, -0.024539439007639885, -0.047423265874385834, -1.326017873282126e-8, -0.0028252704069018364, -0.030831417068839073, -0.01656067557632923, -0.005837203934788704, 0.0056547606363892555, 0.027295894920825958, -0.01985865645110607, 0.018522372469305992, -0.04460461437702179, 0.004812604747712612, 0.043033815920352936, -0.004310963209718466, -0.015377216972410679, -0.0053609274327754974, 0.020363932475447655, -0.010976814664900303, 0.031908828765153885, -0.02234792150557041, 0.04147256910800934, -0.012797205708920956, -0.008326960727572441, 0.028488505631685257, -0.017101390287280083, 0.012321949936449528, -0.015766536816954613, -0.003038430819287896, 0.029847988858819008, -0.07227728515863419, -0.00770920654758811, -0.05315009877085686, 0.00197599153034389, -0.04433455318212509, -0.0004924802924506366, 0.039221182465553284, -0.014277591370046139, -0.030125264078378677, -0.009830956347286701, 0.06514808535575867, 0.00054772017756477, -0.0012425356544554234, -0.014891657046973705, 0.016224006190896034, -0.007777363993227482, -0.04065203294157982, -0.008905699476599693, 0.02119104191660881, 0.001004413585178554, 0.029848681762814522, 0.023759152740240097, -0.023093340918421745, 0.023460891097784042, -0.0036046390887349844, 0.004946872126311064, 0.009797465056180954, 0.027798272669315338, -0.012997346930205822, -0.007699436508119106, -0.06049551069736481, -0.00004836599691770971, -0.019442394375801086, 0.014326024800539017, 0.014737885445356369, -0.046052590012550354, -0.03770643472671509 ]
haskell-an-impressively-non-performant-union-find
https://markhneedham.com/blog/2012/12/31/haskell-an-impressively-non-performant-union-find
false
2012-12-31 13:14:42
Bitwise operations in Ruby and Haskell
[ "ruby", "haskell", "bitwise" ]
[ "Ruby", "Haskell" ]
Part of one of the most recent problems in the https://www.coursera.org/course/algo2[Algorithms 2] course required us to find the 'neighbours' of binary values. In this case a neighbour is described as being any other binary value which has an equivalent value or differs in 1 or 2 bits. e.g. the neighbours of '10000' would be '00000', '00001', '00010', '00100', ''01000', '10001', '10010', '10011', '10100', '10101', '10110', '11000', '11001', '11010' and '11100'~~~ I initially treated '10000' as an array of 1s and 0s and wrote a function to recursively come up with the above combinations before it was pointed out to me that it'd be much easier to use bit wise logic instead. I don't remember every having to write any code using bit wise operations since university so I thought I'd document what I learnt. The first thing to do is convert those binary values into a decimal equivalent which is pretty easy in Ruby: [source,ruby] ---- > "10000".to_i(2) \=> 16 ---- In Haskell I http://pleac.sourceforge.net/pleac_haskell/numbers.html[stole a function from PLEAC] to do the job: [source,haskell] ---- > import Data.Char > (foldr (\c s \-> s * 2 + c) 0 . reverse . map digitToInt) "10000" 16 ---- I initially worked out the neighbours by hand but I need to work out how to convert that into code so I ran through an example. We want to get from '10000' (16) to '00000' (0) which we can do by http://www.tutorialspoint.com/ruby/ruby_operators.htm[using an XOR operation]: ____ Binary XOR Operator copies the bit if it is set in one operand but not both. ____ [source,text] ---- '10000' XOR '10000' ---- In Ruby it would read like this: [source,ruby] ---- > 16 {caret} 16 \=> 0 ---- If we do the same XOR operation but changing the other bits instead we end up with all the neighbours of distance 1: [source,ruby] ---- > [0,1,2,4,16].map { |x| 16 {caret} x } \=> [16, 17, 18, 20, 0] ---- We can generalise the function that creates that array of values like so: [source,ruby] ---- > bits = 5 > offsets = (0..(bits - 1)).map { |x| 2 ** x } \=> [1, 2, 4, 8, 16] ---- or if we want to use bit shifting: [source,ruby] ---- > offsets = (0..(bits - 1)).map { |x| 1 << x } \=> [1, 2, 4, 8, 16] ---- With that approach we're moving the "left operands value is moved left by the number of bits specified by the right operand." i.e. we move '1' left by 0 bits (from '1'to '1'), then by 1 bit (from '1' to '10'), then by 2 bits (from '1' to '100') and so on. We still need to get all the neighbours which differ by 2 bits which we can do by getting all the ways that we can combine those +++<cite>+++offsets+++</cite>+++ together. The +++<cite>+++combination+++</cite>+++ function and Bitwise or do the trick here: [source,ruby] ---- > offsets.combination(2).to_a \=> [[1, 2], [1, 4], [1, 8], [1, 16], [2, 4], [2, 8], [2, 16], [4, 8], [4, 16], [8, 16]] > offsets.combination(2).to_a.map { |a,b| a|b } \=> [3, 5, 9, 17, 6, 10, 18, 12, 20, 24] ---- Now if we put it all together: [source,ruby] ---- > initial_value = "10000" \=> "10000" > bits = initial_value.length \=> 5 > value = "10000".to_i(2) \=> 16 > single_bit_offsets = (0..(bits - 1)).map { |x| 1 << x } \=> [1, 2, 4, 8, 16] > all_the_offsets = offsets + offsets.combination(2).to_a.map { |a,b| a|b } \=> [1, 2, 4, 8, 16, 3, 5, 9, 17, 6, 10, 18, 12, 20, 24] > all_the_offsets.map { |offset| value {caret} offset }.sort \=> [0, 1, 2, 4, 8, 17, 18, 19, 20, 21, 22, 24, 25, 26, 28] ---- The final Haskell version looks like this: [source,haskell] ---- > import Data.Char > import Data.Bits > import Data.List > let initialValue = "10000" > let bits = length initialValue > let value = (foldr (\c s \-> s * 2 + c) 0 . reverse . map digitToInt) initialValue > let singleBitOffsets = map (shiftL 1) [0..(bits - 1)] :: [Int] > let allTheOffsets = singleBitOffsets ++ map (\(x:y:_) \-> (x .|. y)) (combinationsOf 2 singleBitOffsets) :: [Int] > Data.List.sort $ map (xor value) allTheOffsets [0,1,2,4,8,17,18,19,20,21,22,24,25,26,28] ---- I took the +++<cite>+++combinationsOf+++</cite>+++ function from http://www.polyomino.f2s.com/david/haskell/hs/CombinatoricsGeneration.hs.txt[David Amos' Combinatorics Generation library] and it reads like so: ~~~haskell -- subsets of size k combinationsOf 0 _ = [[]] combinationsOf _ [] = [] combinationsOf k (x:xs) = map (x:) (combinationsOf (k-1) xs) ++ combinationsOf k xs ~~~ A real life version of this problem occurs in the world of genome analysis where http://www.ncbi.nlm.nih.gov/pmc/articles/PMC16324/[scientists need to work out whether phylogenetic profiles are functionally linked].
null
null
[ -0.009777585044503212, 0.016033615916967392, -0.02583494409918785, 0.029366139322519302, 0.053213782608509064, 0.057556599378585815, 0.018678288906812668, 0.011250973679125309, 0.0266053918749094, -0.007495766971260309, -0.037358906120061874, -0.0267457477748394, -0.06940285116434097, 0.029590537771582603, -0.016206080093979836, 0.06556157022714615, 0.07753732055425644, -0.025450430810451508, -0.008295146748423576, -0.00800852756947279, 0.019403114914894104, 0.05078962817788124, -0.028901176527142525, 0.024676863104104996, 0.018021993339061737, 0.01891208253800869, 0.031432222574949265, 0.01615148037672043, -0.04412393271923065, 0.001696747145615518, 0.05558153614401817, 0.025573238730430603, 0.022473474964499474, -0.010329867713153362, 0.022159360349178314, 0.0033886022865772247, -0.0043127769604325294, 0.0015268869465216994, -0.009843805804848671, 0.005802817642688751, -0.03866078332066536, 0.03784625977277756, 0.02954925410449505, 0.041730597615242004, -0.05540744587779045, -0.005745606496930122, -0.06965797394514084, -0.0001975798513740301, -0.010177910327911377, 0.023374909535050392, -0.05030306428670883, 0.04563805088400841, -0.0026907098945230246, -0.02526954747736454, -0.013922560028731823, 0.04933374747633934, 0.025148887187242508, -0.07281721383333206, 0.03665686771273613, -0.033802684396505356, 0.007473047357052565, 0.007903420366346836, 0.007727017626166344, 0.03676370531320572, 0.009992328472435474, -0.00818006880581379, -0.015040580183267593, 0.04552575573325157, -0.018053682520985603, -0.015355080366134644, -0.015398696064949036, 0.0069680484011769295, -0.029894588515162468, -0.023867253214120865, -0.009548826143145561, -0.03729553520679474, 0.006173706613481045, 0.05904966965317726, 0.0034204176627099514, 0.036050643771886826, -0.00925728864967823, 0.03570229932665825, 0.025905873626470566, 0.009803417138755322, 0.040493130683898926, -0.027220413088798523, -0.04339573159813881, 0.002364127431064844, -0.09424888342618942, 0.046926919370889664, -0.004579687956720591, -0.03561890125274658, -0.007350888103246689, 0.015077503398060799, -0.020045479759573936, 0.007834467105567455, -0.0013343601021915674, 0.007601402699947357, 0.009281323291361332, -0.033724594861269, -0.041542910039424896, -0.015157287940382957, 0.039904702454805374, -0.021006669849157333, -0.06948409229516983, 0.003948188852518797, -0.014863838441669941, -0.01668735407292843, 0.029629701748490334, 0.008973497897386551, -0.01831877790391445, 0.004783423151820898, 0.011461777612566948, 0.004474288318306208, -0.0726836621761322, 0.053077373653650284, -0.01762346923351288, -0.017774848267436028, -0.00045796515769325197, 0.0322883315384388, 0.04779806733131409, 0.017159946262836456, -0.022598231211304665, 0.08714476227760315, 0.03760523721575737, -0.00492375111207366, -0.004456999246031046, 0.07998864352703094, -0.022544167935848236, -0.054361432790756226, -0.04134469851851463, 0.06744145601987839, -0.004056716337800026, -0.009369387291371822, -0.008147232234477997, 0.01859136112034321, -0.051624882966279984, -0.007218879647552967, 0.04438256472349167, 0.03981679677963257, 0.03079315647482872, -0.044943131506443024, 0.038238536566495895, -0.01765698567032814, 0.01871165633201599, -0.00789558980613947, 0.010684344917535782, -0.011784963309764862, -0.0013198379892855883, 0.007082626689225435, -0.010298785753548145, 0.02716856077313423, 0.060499973595142365, -0.04449570178985596, 0.007725327741354704, 0.04896380752325058, 0.0029566697776317596, 0.026547586545348167, -0.034938517957925797, 0.010859939269721508, 0.02254253439605236, 0.013271096162497997, 0.03018730692565441, 0.023471470922231674, 0.031873587518930435, 0.01435780804604292, 0.0017104230355471373, 0.062270693480968475, -0.032313667237758636, -0.010819854214787483, -0.035349272191524506, -0.030179627239704132, 0.07489046454429626, -0.0410957895219326, -0.025109974667429924, -0.0016916650347411633, 0.05266200751066208, 0.039307601749897, 0.04103446379303932, -0.029255198314785957, -0.07997578382492065, 0.02258465439081192, -0.012839486822485924, 0.04449892416596413, 0.025059575214982033, 0.00022384726617019624, 0.06450115889310837, 0.025559764355421066, 0.020001113414764404, 0.038891326636075974, -0.06208118423819542, -0.06086910143494606, -0.01501674484461546, -0.02920193038880825, 0.06441005319356918, -0.03190797194838524, -0.013987000100314617, 0.0007575750350952148, 0.008513879030942917, 0.01646495796740055, -0.00485006021335721, -0.010176759213209152, 0.027609700337052345, -0.0015279005747288465, -0.02777199074625969, 0.05053726211190224, 0.05181797221302986, -0.014308379963040352, -0.029936473816633224, 0.00874422863125801, 0.0042605288326740265, -0.028430799022316933, 0.024483054876327515, -0.024819472804665565, 0.029464008286595345, 0.054553281515836716, 0.03472970798611641, -0.018840789794921875, 0.02894573099911213, -0.05224451422691345, 0.012993399053812027, 0.020618902519345284, 0.0004365515196695924, -0.0007030732813291252, 0.015118549577891827, 0.13407686352729797, 0.09596963226795197, -0.03976430743932724, -0.03166801482439041, 0.0178835429251194, -0.00024070090148597956, -0.042781587690114975, 0.014224260114133358, 0.004948023706674576, 0.016834566369652748, 0.014889969490468502, -0.029301386326551437, -0.018374770879745483, 0.02896888740360737, -0.0291510671377182, -0.050026558339595795, 0.07203906774520874, -0.018227320164442062, 0.04468109831213951, -0.004349949769675732, -0.026357844471931458, 0.010511619970202446, -0.0340242013335228, -0.04655109718441963, 0.013709407299757004, 0.032474976032972336, -0.007267688866704702, 0.03323075920343399, -0.02878984808921814, -0.019712133333086967, -0.0236028041690588, 0.002240231726318598, 0.02680988982319832, 0.05755886808037758, 0.04115345701575279, -0.03250078484416008, 0.016884107142686844, -0.015277383849024773, -0.024062803015112877, -0.02653408795595169, -0.03670443594455719, -0.05051666125655174, 0.0033095520921051502, 0.008590210229158401, 0.009636581875383854, 0.0386832095682621, 0.02638346515595913, 0.013388934545218945, -0.0055373539216816425, 0.0013756472617387772, -0.01983117125928402, 0.04985141009092331, -0.015954293310642242, -0.03666196018457413, -0.03963250666856766, -0.013626663014292717, 0.06593763828277588, -0.0436403825879097, -0.030628906562924385, 0.015474813058972359, -0.04908517748117447, 0.0726471021771431, -0.08439613878726959, -0.04239753261208534, -0.00787749420851469, 0.013585813343524933, 0.0550689697265625, -0.014845838770270348, -0.0008305620867758989, 0.07929201424121857, 0.012900939211249352, 0.03960096463561058, 0.03845534101128578, 0.024302856996655464, 0.028410430997610092, -0.0056267003528773785, 0.031164713203907013, 0.025516239926218987, 0.012203284539282322, -0.021339764818549156, -0.03571796044707298, 0.005840379744768143, -0.015364185906946659, -0.2568345367908478, 0.03120959736406803, -0.06655896455049515, -0.04576150327920914, 0.04130028933286667, -0.05554143711924553, 0.007656732574105263, -0.040286097675561905, -0.013065149076282978, 0.02648630365729332, -0.03822118043899536, -0.06888650357723236, -0.027252506464719772, 0.02259484864771366, 0.021841462701559067, -0.008508419618010521, -0.032140281051397324, -0.033461473882198334, -0.005388964433223009, 0.047026537358760834, -0.004279807209968567, -0.04986213892698288, 0.012599358335137367, 0.044990457594394684, 0.013408305123448372, 0.05844957381486893, -0.0645671933889389, 0.007392003200948238, -0.04434795305132866, -0.04086478427052498, -0.01908038929104805, -0.017659632489085197, 0.022905251011252403, -0.014012695290148258, -0.005115997511893511, -0.017611188814044, 0.012505188584327698, -0.0004111385496798903, 0.019027266651391983, 0.046050239354372025, -0.04872891679406166, -0.019245309755206108, 0.035425037145614624, -0.0016061802161857486, 0.09183184802532196, -0.007413432002067566, -0.03314416855573654, -0.005786500405520201, -0.049184687435626984, 0.06916539371013641, -0.044401880353689194, -0.003882714081555605, -0.007545603439211845, 0.04144948348402977, -0.031198518350720406, -0.007563269231468439, -0.012054967693984509, -0.017180608585476875, -0.052256423979997635, -0.01795881986618042, -0.009455151855945587, -0.02875097654759884, -0.011689637787640095, -0.05605432391166687, 0.007855536416172981, -0.06839492172002792, -0.07263435423374176, 0.014722775667905807, 0.053584158420562744, 0.014332044869661331, -0.0236265379935503, -0.004852327983826399, -0.018779240548610687, -0.11257000267505646, -0.03440035134553909, 0.0004225189913995564, -0.024190576747059822, -0.01572309248149395, 0.017364835366606712, 0.04824609309434891, -0.03237951919436455, -0.08507968485355377, 0.03453613817691803, -0.00007532150630140677, 0.04554491862654686, -0.010586419142782688, 0.00005139823042554781, -0.021542580798268318, -0.01401341799646616, -0.01613098755478859, 0.055965084582567215, -0.02256185933947563, -0.022786857560276985, -0.024554792791604996, 0.024797610938549042, 0.009759098291397095, 0.020079784095287323, -0.01409350149333477, 0.021476591005921364, 0.02271241508424282, 0.025287363678216934, -0.05681898444890976, 0.031634796410799026, -0.05797113850712776, -0.01508859358727932, 0.023727240040898323, -0.04465091601014137, 0.02448684349656105, 0.023746874183416367, -0.008441995829343796, -0.018517710268497467, -0.06524572521448135, 0.02194521389901638, -0.04647461324930191, -0.043815869837999344, -0.03527823090553284, -0.015732580795884132, 0.012769975699484348, 0.02442525140941143, 0.01591026782989502, -0.048135705292224884, -0.01368620153516531, 0.02274087630212307, -0.010426920838654041, -0.05873407796025276, -0.009061992168426514, -0.044383566826581955, -0.007690649013966322, 0.016296934336423874, 0.010845129378139973, 0.02428353577852249, 0.041309211403131485, 0.005291751120239496, -0.01811792701482773, 0.018112577497959137, 0.026924852281808853, -0.03467680141329765, -0.022768719121813774, -0.021416733041405678, -0.010914446786046028, 0.039380259811878204, -0.019615044817328453, 0.029474103823304176, 0.033580124378204346, 0.026819219812750816, 0.012095015496015549, 0.03065665252506733, -0.014437956735491753, 0.018502866849303246, 0.01982809603214264, -0.007628615014255047, -0.07066421210765839, 0.035316579043865204, -0.029395999386906624, -0.019067030400037766, -0.005635535344481468, 0.0413089357316494, 0.005090813152492046, -0.04710059612989426, -0.05036769434809685, 0.04800242558121681, -0.029362406581640244, -0.010619114153087139, -0.039061810821294785, 0.04213057458400726, 0.06420454382896423, -0.03595791012048721, 0.021418360993266106, -0.030944108963012695, 0.03535884991288185, 0.0036611987743526697, 0.032736506313085556, -0.033947814255952835, 0.040207091718912125, 0.003343463409692049, -0.0040907468646764755, -0.005502146668732166, 0.0062146601267158985, 0.04454462230205536, -0.0042795115150511265, -0.001212143455632031, 0.007846281863749027, 0.0050660683773458, 0.02064133621752262, 0.0469178706407547, 0.035491570830345154, -0.016532976180315018, 0.010582753457129002, -0.01982487365603447, -0.024960005655884743, -0.02611757628619671, -0.00043872513924725354, -0.038338541984558105, 0.05638400465250015, -0.04615996405482292, -0.062005870044231415, -0.008172433823347092, 0.02121693827211857, -0.024835318326950073, 0.025387149304151535, 0.01386856846511364, -0.01042785495519638, -0.009630369953811169, -0.0069412910379469395, 0.09581982344388962, -0.050945740193128586, 0.018510129302740097, 0.002238768618553877, -0.002033257158473134, -0.005284824874252081, 0.04910257086157799, -0.05157148465514183, -0.012638681568205357, -0.01059651654213667, -0.003575874725356698, -0.02800014801323414, -0.02605513110756874, -0.017367446795105934, -0.0009519640007056296, -0.04810177907347679, -0.01361782569438219, -0.020540786907076836, 0.00022100508795119822, -0.008593528531491756, -0.03906049579381943, 0.007764518726617098, -0.0339224711060524, -0.006586810573935509, 0.05154438689351082, -0.030730804428458214, 0.016629844903945923, -0.014068289659917355, 0.04727483540773392, 0.02625633403658867, 0.002912165829911828, -0.014300987124443054, -0.05354546010494232, 0.0021333694458007812, -0.05419904738664627, 0.04570727422833443, -0.005541942082345486, 0.008358461782336235, -0.024178940802812576, 0.03138532489538193, -0.05051698908209801, -0.00795604195445776, 0.023855717852711678, -0.05220641940832138, 0.00767851946875453, 0.00635596364736557, -0.039426714181900024, 0.017125967890024185, 0.012616277672350407, -0.02201920561492443, 0.04592958092689514, -0.04224048927426338, -0.027669494971632957, -0.00397828035056591, -0.03711950406432152, 0.014032508246600628, -0.013555432669818401, 0.009094624780118465, -0.030570613220334053, 0.058103740215301514, 0.05525309965014458, 0.032099418342113495, 0.024562520906329155, -0.011995394714176655, 0.022085990756750107, -0.015097829513251781, 0.0013431638944894075, -0.08671913295984268, 0.011799836531281471, 0.023443765938282013, 0.023161837831139565, -0.017005357891321182, 0.0008907556184567511, -0.03323030099272728, -0.016406603157520294, -0.0715499222278595, 0.0014558270340785384, 0.037025801837444305, 0.027891922742128372, -0.011624637059867382, 0.01057709101587534, -0.05772785469889641, 0.017851298674941063, 0.0372733399271965, -0.030893350020051003, 0.011002044193446636, -0.039098773151636124, 0.04406985267996788, 0.004112633876502514, 0.05653253570199013, -0.0025324621237814426, -0.011971349827945232, 0.04220089316368103, 0.025701025500893593, 0.04075160250067711, 0.052762407809495926, -0.02391039952635765, 0.02939310297369957, -0.010206122882664204, 0.005936960224062204, 0.0007468890980817378, 0.03580982983112335, -0.0034193824976682663, -0.054205600172281265, 0.024357175454497337, -0.005345699843019247, -0.005802949890494347, -0.036093197762966156, 0.06404759734869003, 0.027420835569500923, -0.029244689270853996, -0.05772989243268967, 0.03997831419110298, -0.05636665225028992, -0.027273228392004967, -0.015950800850987434, -0.02697701007127762, -0.05143235996365547, 0.05719730630517006, -0.0016250824555754662, -0.01445182878524065, 0.0734264925122261, 0.0015424536541104317, -0.012275428511202335, -0.0006962443585507572, 0.12467475980520248, 0.08078237622976303, 0.042314931750297546, -0.009580623358488083, 0.05564176291227341, -0.042427852749824524, -0.03999068960547447, 0.004825168289244175, -0.028769193217158318, -0.003478440921753645, -0.013108321465551853, 0.00312814605422318, 0.0770263820886612, -0.06006985530257225, 0.05957141891121864, -0.048476509749889374, 0.021495549008250237, 0.02418050542473793, 0.008991248905658722, 0.010605490766465664, 0.0867738351225853, 0.036879364401102066, 0.02873609960079193, -0.003727004863321781, -0.058235663920640945, 0.019033020362257957, -0.007756348699331284, -0.03146814554929733, -0.0011969454353675246, 0.01810850389301777, 0.00944001879543066, 0.007190235424786806, 0.010644781403243542, 0.07975979149341583, -0.029285848140716553, -0.0255267471075058, -0.0014921596739441156, 0.021907543763518333, -0.021129760891199112, -0.0008027133299037814, -0.026088688522577286, -0.038717932999134064, -0.018114103004336357, -0.048678163439035416, -0.02168114110827446, 0.0008998159319162369, -0.017850002273917198, 0.01659098081290722, -0.028393717482686043, 0.010457992553710938, 0.015514659695327282, -0.0015068674692884088, -0.0441315583884716, -0.05042363703250885, -0.06410437822341919, -0.021971004083752632, -0.08454969525337219, 0.013663782738149166, 0.0007008183747529984, -0.028002355247735977, -0.03150445222854614, -0.03949638083577156, -0.010754432529211044, -0.05387120321393013, 0.053954463452100754, -0.04621199890971184, -0.03395045921206474, 0.010398096404969692, 0.007913753390312195, 0.03527103736996651, 0.04740758240222931, 0.040842391550540924, -0.024237632751464844, -0.01058670412749052, -0.0388556607067585, -0.027052227407693863, 0.05585136637091637, 0.04767581447958946, -0.013468272984027863, -0.07157191634178162, 0.0056403749622404575, 0.04086410999298096, -0.004997049458324909, -0.07142450660467148, -0.0076052905060350895, 0.007200852036476135, 0.007975625805556774, 0.038960982114076614, -0.027083003893494606, -0.009922875091433525, -0.01104344055056572, 0.002479142276570201, -0.0034016298595815897, 0.0008696070872247219, 0.02605242095887661, -0.04807501658797264, 0.09547466039657593, 0.006848240736871958, -0.009397310204803944, -0.01896045170724392, 0.0034633069299161434, -0.02697260119020939, 0.006650949362665415, -0.037851884961128235, -0.01693977601826191, -0.03286213427782059, -0.08425816893577576, -0.019303999841213226, -0.02029702067375183, -0.03764839842915535, -0.04363948851823807, 0.017119724303483963, 0.07889506965875626, -0.03318861126899719, 0.06491787731647491, -0.042357053607702255, 0.05184074491262436, -0.03761058673262596, -0.03568752482533455, 0.03502553328871727, 0.05060805380344391, -0.00401473231613636, 0.011283409781754017, 0.0026246909983456135, -0.025823494419455528, 0.012163366191089153, -0.003168749623000622, 0.044001251459121704, 0.0212204959243536, 0.00520161772146821, 0.042043983936309814 ]
[ -0.07314654439687729, -0.018891729414463043, -0.04474051296710968, -0.0222979374229908, 0.009332993999123573, -0.06654092669487, -0.018537478521466255, 0.018209701403975487, 0.0024267565459012985, -0.006787256803363562, 0.010692254640161991, -0.07749363034963608, 0.002191270235925913, -0.03164725378155708, 0.07857051491737366, -0.013096132315695286, -0.049594808369874954, -0.040096983313560486, -0.014106633141636848, 0.04837372899055481, 0.010323647409677505, -0.047910626977682114, -0.024557095021009445, -0.06229173019528389, 0.02602989226579666, 0.047149624675512314, 0.03643146529793739, -0.04919023439288139, 0.00946385320276022, -0.2177356481552124, 0.019396314397454262, 0.019849715754389763, 0.07322301715612411, -0.02752656117081642, 0.021173890680074692, 0.010653720237314701, 0.03156092390418053, 0.011966273188591003, -0.028646986931562424, 0.08940599858760834, 0.034605175256729126, 0.04452747106552124, -0.0016439893515780568, -0.018070336431264877, 0.00833272747695446, 0.047268252819776535, -0.03875621035695076, 0.0025344311725348234, 0.01878415048122406, -0.001555927563458681, -0.04039926454424858, 0.01702573150396347, -0.002699762349948287, -0.0036911172792315483, 0.02293596975505352, 0.00971788726747036, 0.04864579066634178, 0.05646795406937599, 0.029531721025705338, 0.002568501280620694, 0.004638175945729017, -0.011778905056416988, -0.11888179928064346, 0.07574483007192612, 0.07118836790323257, 0.041746336966753006, 0.007299470715224743, -0.04426060616970062, -0.04184126853942871, 0.07781659066677094, 0.010512151755392551, -0.023419572040438652, -0.003033662913367152, 0.03512930870056152, -0.0006571526173502207, -0.036349691450595856, -0.02316148765385151, 0.0045372676104307175, 0.05383382737636566, -0.03915099427103996, -0.0389682799577713, -0.020985905081033707, -0.052012864500284195, -0.025408033281564713, -0.02241974137723446, -0.023751575499773026, -0.025580553337931633, 0.06576479226350784, 0.018846742808818817, 0.008670531213283539, -0.00481089111417532, 0.004715670365840197, -0.004009746015071869, 0.022481856867671013, -0.06175757199525833, 0.006138162687420845, 0.003435014048591256, 0.016610223799943924, 0.0007264433661475778, 0.43152517080307007, -0.014818429946899414, -0.0010683564469218254, 0.041785791516304016, 0.0024343272671103477, -0.006354344077408314, 0.011273795738816261, -0.03449143469333649, -0.04918883368372917, -0.010080017149448395, -0.05105901509523392, 0.010909839533269405, -0.03163903206586838, 0.0911455750465393, -0.03965860232710838, 0.007401162758469582, -0.010244039818644524, 0.042448390275239944, 0.010949477553367615, 0.0192387867718935, 0.00705927237868309, -0.021930430084466934, 0.0006122225895524025, 0.03010212630033493, 0.017901740968227386, 0.01161158736795187, 0.01654496230185032, 0.015031074173748493, 0.04880553483963013, -0.0016302699223160744, 0.07433265447616577, 0.02013469487428665, -0.04221976548433304, -0.07515860348939896, 0.006401156075298786, -0.00950155220925808, 0.028329048305749893, 0.04832856357097626, -0.013876225799322128, 0.004288630560040474, -0.0057414197362959385, -0.028561873361468315, -0.04471614956855774, 0.03295426815748215, 0.018173759803175926, -0.03443148732185364, 0.08117753267288208, -0.02948112227022648, -0.03945707157254219, -0.0023858207277953625, -0.027762845158576965, -0.005749729461967945, 0.024967044591903687, -0.010633997619152069, -0.08161485940217972, 0.005198056343942881, 0.043362200260162354, 0.06299368292093277, -0.030125387012958527, -0.05914771929383278, -0.007378373760730028, -0.020264500752091408, -0.008040417917072773, -0.04139074310660362, 0.06906487792730331, 0.04330703616142273, -0.09200285375118256, -0.015890898182988167, 0.0009957478614524007, 0.0020910941530019045, -0.08664450794458389, 0.026156609877943993, 0.0019133059540763497, -0.05146557837724686, -0.008340262807905674, 0.08844702690839767, -0.028609858825802803, -0.02140575461089611, 0.005500697065144777, 0.04066150262951851, 0.022076036781072617, -0.008198256604373455, 0.013765182346105576, -0.028155973181128502, -0.0009566509979777038, -0.02774609811604023, -0.04981156811118126, -0.08833913505077362, 0.0019559876527637243, -0.01466824859380722, -0.01943456195294857, -0.008054696023464203, -0.026332221925258636, -0.10971388965845108, 0.046978726983070374, -0.006937796249985695, -0.013283402658998966, 0.010005645453929901, 0.010793068446218967, -0.017001867294311523, -0.007460333872586489, 0.043188512325286865, 0.03513136878609657, -0.01104728039354086, 0.03887726739048958, -0.08114626258611679, -0.0026829198468476534, 0.0808388888835907, -0.05289380997419357, 0.07894276082515717, 0.06820152699947357, 0.023256108164787292, -0.027470674365758896, -0.005833510775119066, 0.025676200166344643, 0.006170615088194609, -0.04224412143230438, -0.00719140749424696, 0.002181694144383073, 0.017015470191836357, 0.034871991723775864, -0.05031463876366615, -0.07959084957838058, -0.0460575632750988, -0.351560115814209, -0.05225137621164322, -0.00514982920140028, -0.02150566317141056, 0.03921914100646973, -0.06699752062559128, 0.011977282352745533, -0.011315638199448586, -0.028292560949921608, 0.04439719393849373, 0.07341781258583069, -0.013928697444498539, -0.016116749495267868, -0.0690951719880104, -0.040260858833789825, 0.03057911805808544, -0.024974072352051735, -0.0195083636790514, -0.0031116027384996414, 0.02927270159125328, -0.018922865390777588, -0.003104390809312463, -0.02720612660050392, -0.03965659439563751, -0.012311898171901703, -0.0768875926733017, 0.12256350368261337, -0.020976368337869644, 0.09251891821622849, -0.029848145321011543, 0.021739700809121132, -0.010611512698233128, 0.016861645504832268, -0.015841852873563766, -0.030190493911504745, -0.04755748435854912, -0.012025849893689156, 0.03660869970917702, 0.042825859040021896, -0.02872924879193306, -0.05654683709144592, 0.02225903421640396, -0.04311804100871086, -0.02481050416827202, 0.0013814180856570601, 0.03817938268184662, -0.01134403795003891, -0.004584815353155136, 0.022151164710521698, 0.05506571754813194, 0.023580269888043404, 0.02323383465409279, 0.02541905641555786, 0.0136167723685503, 0.004294611047953367, -0.04688267782330513, -0.04566698521375656, -0.01667003333568573, 0.006178476382046938, 0.01182982511818409, 0.010938878171145916, 0.01591898873448372, 0.036532606929540634, -0.03894064947962761, 0.005984082818031311, 0.014311926439404488, 0.003718524007126689, -0.03695513680577278, 0.021232282742857933, 0.009865222498774529, 0.02180786244571209, 0.09435278922319412, -0.001033260254189372, 0.0006721424288116395, 0.0007101143128238618, 0.056557171046733856, 0.01762734167277813, 0.04891488701105118, 0.03343958780169487, 0.025731826201081276, 0.036611683666706085, -0.000920566322747618, 0.03807041421532631, -0.028844939544796944, 0.009904561564326286, 0.024246128275990486, -0.0036897738464176655, 0.05283666029572487, 0.027217188850045204, 0.02193443849682808, -0.04190784692764282, -0.015382856130599976, 0.0009606549283489585, -0.030988603830337524, 0.020331954583525658, -0.015615389682352543, -0.25559332966804504, 0.003893765155225992, 0.02664710022509098, 0.038583189249038696, 0.0016545577673241496, 0.010201225988566875, 0.05344764515757561, -0.03906744718551636, -0.03321157023310661, -0.02509155683219433, -0.001227663946337998, 0.04263461381196976, 0.054164085537195206, -0.00541981216520071, 0.040883615612983704, -0.06475174427032471, 0.03211851045489311, 0.010027446784079075, -0.02389591932296753, 0.038065940141677856, 0.041264597326517105, 0.006818858440965414, 0.19008079171180725, 0.0165215115994215, 0.03295473754405975, 0.029676897451281548, -0.01980244554579258, 0.043151676654815674, 0.0763048604130745, 0.031231699511408806, -0.017063934355974197, 0.017401382327079773, 0.05611078441143036, -0.04280799627304077, -0.0005880680400878191, -0.008811872452497482, -0.014708371832966805, 0.022947417572140694, 0.040261510759592056, -0.009700986556708813, -0.014215792529284954, 0.023110706359148026, -0.06841970980167389, 0.04246076941490173, 0.08201929926872253, 0.013381032273173332, -0.01796264573931694, -0.016179794445633888, -0.02082958072423935, -0.00030294543830677867, -0.040531352162361145, -0.038898780941963196, -0.0011783810332417488, -0.018021773546934128, 0.0320889838039875, 0.06781348586082458, -0.04307422414422035, -0.023235665634274483, -0.04886792600154877, -0.007156084757298231, -0.004058219958096743, -0.038056764751672745, 0.10089237987995148, 0.00034663130645640194, -0.01120528019964695 ]
[ 0.03349822387099266, 0.04232364147901535, -0.03760157898068428, -0.016791826114058495, -0.026398498564958572, -0.05233281850814819, 0.003923050127923489, -0.014980532228946686, -0.07519575953483582, -0.010121840983629227, -0.021832134574651718, 0.002446637721732259, 0.061126336455345154, 0.00359855848364532, -0.024535514414310455, 0.01753511093556881, 0.01987580396234989, 0.004879056941717863, 0.026576511561870575, -0.01429224107414484, -0.02951415814459324, 0.014226401224732399, 0.009138161316514015, 0.004087066277861595, -0.003830652218312025, 0.02869534306228161, -0.011234138160943985, 0.006336533464491367, 0.029715800657868385, -0.11299291998147964, 0.005133770406246185, -0.00784706138074398, 0.015348195098340511, -0.0036295708268880844, -0.003215143922716379, 0.00642726756632328, 0.008607057854533195, 0.008104403503239155, -0.03558366000652313, 0.013901959173381329, -0.007302200421690941, 0.003399851731956005, 0.029486484825611115, 0.013061831705272198, 0.03528180345892906, 0.03409659117460251, 0.01637124828994274, 0.029882177710533142, 0.0056179785169661045, 0.006004392169415951, -0.003539544763043523, 0.04994099214673042, -0.0011365875834599137, 0.03504269942641258, 0.0019842626061290503, -0.023933321237564087, -0.0018541564932093024, -0.019556406885385513, -0.026195386424660683, -0.005235495511442423, -0.005241909064352512, 0.04588497057557106, -0.058876510709524155, -0.016934331506490707, -0.015877434983849525, 0.0008625143673270941, 0.00015874979726504534, -0.011975277215242386, -0.0024173359852284193, -0.01597568392753601, 0.039253003895282745, -0.017774051055312157, -0.02750338986515999, -0.016576815396547318, 0.007151500787585974, -0.013603339903056622, 0.062060948461294174, -0.021358784288167953, -0.008608740754425526, -0.00006634251622017473, -0.023956840857863426, -0.029704980552196503, 0.021175164729356766, -0.028097232803702354, -0.012259203009307384, -0.03520726040005684, 0.0010000626789405942, 0.02294096350669861, -0.01224534586071968, 0.008650830946862698, -0.0036254904698580503, 0.0006279321387410164, 0.008498437702655792, 0.020976843312382698, -0.0430564358830452, 0.018746981397271156, 0.01837845891714096, 0.0008717041346244514, -0.016277341172099113, 0.8215163946151733, -0.0379483737051487, 0.015354283154010773, -0.0014838214265182614, -0.011102134361863136, 0.018049955368041992, 0.016285670921206474, 0.014116569422185421, 0.02527165599167347, 0.005820104852318764, -0.05279652029275894, 0.05518561229109764, -0.015607446432113647, 0.03616200387477875, 0.0006556851440109313, 0.04019908234477043, -0.010268667712807655, 0.03788488730788231, 0.015728415921330452, -0.008736355230212212, -0.021237807348370552, 0.019746817648410797, -0.00016566835984122008, -0.023556601256132126, 0.04121214523911476, 0.03463438153266907, -0.19624286890029907, -0.006731308996677399, -7.016713859154366e-33, 0.012305021286010742, -0.011127625592052937, -0.03538104519248009, -0.022867755964398384, 0.027770284563302994, 0.02262289449572563, 0.008035395294427872, 0.04145199432969093, 0.0003615260648075491, -0.024990733712911606, 0.018903683871030807, -0.0181620791554451, 0.0020550366025418043, -0.009940932504832745, 0.0296573955565691, -0.03618254140019417, 0.019793584942817688, 0.009267270565032959, -0.011117203161120415, 0.0076919239945709705, 0.005423862487077713, 0.023538734763860703, 0.023611020296812057, 0.030895618721842766, 0.03038286417722702, 0.04998771846294403, 0.004455620422959328, -0.05183108523488045, 0.030738482251763344, -0.04063961282372475, -0.023287944495677948, 0.05676812678575516, -0.012148543260991573, -0.05254757031798363, 0.03484440967440605, -0.0085774390026927, 0.0070435237139463425, 0.004033353179693222, 0.0052080657333135605, -0.03110251948237419, -0.050250690430402756, 0.002179790521040559, -0.005159919150173664, -0.033566731959581375, 0.03159633278846741, -0.032966747879981995, 0.024230746552348137, 0.046614401042461395, 0.027574388310313225, -0.03820087015628815, -0.003690066747367382, 0.024546857923269272, -0.029915090650320053, 0.0225894283503294, -0.018888942897319794, -0.02223072201013565, 0.02063417062163353, 0.03228764235973358, 0.0015406407183036208, 0.035937801003456116, 0.004478009883314371, 0.019657235592603683, 0.0010214532958343625, 0.03456903621554375, -0.027415702119469643, -0.043605923652648926, 0.008616405539214611, -0.004902317654341459, 0.0213688462972641, 0.043850719928741455, -0.06808621436357498, 0.015023665502667427, -0.011771093122661114, -0.0001353757834294811, 0.0056741246953606606, -0.014937723986804485, -0.010008194483816624, -0.031613778322935104, 0.011589801870286465, 0.020059585571289062, 0.03797955438494682, -0.013721528463065624, -0.004584559705108404, -0.02902316302061081, -0.02480674535036087, -0.0033306663390249014, 0.015454903244972229, -0.003517464967444539, -0.025848159566521645, -0.017165951430797577, 0.025906050577759743, 0.021237501874566078, -0.002906989771872759, -0.03689161315560341, 0.028653662651777267, 6.807162889337092e-33, -0.02029617875814438, -0.03345516696572304, -0.009020768105983734, 0.03347999230027199, -0.016958901658654213, -0.02093859203159809, 0.029976939782500267, -0.006710275541990995, -0.011120952665805817, 0.042424701154232025, 0.008791838772594929, -0.007886386476457119, 0.0134267034009099, -0.004156016279011965, 0.05401705577969551, -0.0493132546544075, 0.011038769967854023, 0.05613793432712555, 0.010599443688988686, 0.004587403032928705, -0.022220732644200325, 0.03772750869393349, 0.009913920424878597, -0.023488976061344147, 0.026518458500504494, 0.023213312029838562, -0.03562832251191139, 0.027718983590602875, 0.01764325611293316, 0.008206749334931374, -0.013636864721775055, -0.018918264657258987, 0.007133333943784237, -0.041802410036325455, -0.0041096406057477, 0.054000623524188995, 0.029792217537760735, -0.008140982128679752, 0.00010120234946953133, 0.0019365897169336677, 0.056114312261343, 0.0037573950830847025, -0.028003718703985214, 0.015003501437604427, 0.013803857378661633, 0.031859930604696274, -0.01739458180963993, 0.030606377869844437, 0.006298405583947897, -0.016137825325131416, 0.05825693905353546, 0.03385541960597038, -0.006308832671493292, 0.020337272435426712, 0.04625943303108215, -0.016242658719420433, -0.05849739909172058, 0.018449241295456886, -0.020243454724550247, 0.0038553897757083178, -0.04109121486544609, -0.008849249221384525, 0.005710278172045946, 0.0013863894855603576, -0.03965817391872406, -0.0030432483181357384, -0.07717560976743698, -0.04181388393044472, -0.03590381145477295, 0.0437629371881485, -0.029292801395058632, -0.00775569211691618, -0.004112198017537594, 0.010170656256377697, -0.057004597038030624, 0.01140946801751852, -0.04934967681765556, 0.00010927369294222444, -0.0008316196035593748, 0.01620600000023842, 0.027552641928195953, 0.009789841249585152, 0.036318518221378326, 0.04536600410938263, 0.002847732277587056, 0.010607585310935974, 0.008596435189247131, 0.020359627902507782, 0.003726831404492259, -0.03227796033024788, -0.005651724524796009, -0.011587249115109444, -0.014540767297148705, -0.02188725955784321, 0.02243041805922985, -1.2573529772907932e-8, -0.028170950710773468, -0.004539412911981344, -0.01776730641722679, 0.024223415181040764, 0.02308660000562668, 0.028596190735697746, -0.02534545212984085, -0.0026307296939194202, -0.034271735697984695, -0.005468400195240974, 0.05061262473464012, 0.0216609425842762, -0.04144949093461037, -0.019583728164434433, 0.02886665053665638, -0.016834681853652, 0.028386466205120087, -0.05223756283521652, 0.021402977406978607, 0.011479602195322514, 0.017070744186639786, 0.007322592195123434, -0.010685830377042294, -0.0004057090845890343, -0.037798307836055756, -0.03294280543923378, 0.026276392862200737, -0.061566974967718124, 0.01862749643623829, -0.012344006448984146, 0.02095216140151024, -0.0524129718542099, -0.029363367706537247, 0.011743083596229553, -0.021722160279750824, -0.06077887862920761, -0.024589112028479576, 0.03413757309317589, 0.043371669948101044, -0.020316394045948982, 0.002221812028437853, 0.004386101383715868, -0.024074701592326164, -0.009111560881137848, -0.02403036132454872, -0.03522983565926552, 0.01180730015039444, -0.030175024643540382, -0.00932413898408413, -0.058765724301338196, 0.01813698373734951, 0.013031593523919582, 0.004455226939171553, 0.009629229083657265, 0.0370284728705883, -0.007231987081468105, -0.018643999472260475, -0.056512415409088135, -0.043699074536561966, 0.0484544076025486, -0.0032691473606973886, -0.000763584510423243, -0.042058978229761124, -0.033665526658296585 ]
bitwise-operations-in-ruby-and-haskell
https://markhneedham.com/blog/2012/12/31/bitwise-operations-in-ruby-and-haskell
false
2012-12-31 22:27:15
Haskell: Strictness and the monadic bind
[ "haskell" ]
[ "Haskell" ]
As I mentioned towards the end of my post about http://www.markhneedham.com/blog/2012/12/31/haskell-an-impressively-non-performant-union-find/[implementing the union find data structure in Haskell] I https://github.com/mneedham/algorithms2/blob/master/MutableLeaders.hs[wrote another version] using a mutable array and having not seen much of a performance improvement started commenting out code to try and find the problem. I eventually narrowed it down to the +++<cite>+++union+++</cite>+++ function which was defined like so: [source,haskell] ---- union :: IO (IOArray Int Int) -> Int -> Int -> IO (IOArray Int Int) union arrayContainer x y = do actualArray <- arrayContainer ls <- getAssocs actualArray leader1 <- readArray actualArray x leader2 <- readArray actualArray y let newValues = (map (\(index, value) -> (index, leader1)) . filter (\(index, value) -> value == leader2)) ls sequence $ map (\(idx, val) -> writeArray actualArray idx val) newValues return actualArray ---- I was using Unix's +++<cite>+++http://en.wikipedia.org/wiki/Time_(Unix)[time]+++</cite>+++ function to get the execution time since this meant I didn't need to make any changes to the program and this level of granularity was ok. The first time I ran the program it executed in 36.379 seconds and my first hunch was that a lot of time was being taken up writing to the array so I commented out that line: [source,haskell] ---- union :: IO (IOArray Int Int) -> Int -> Int -> IO (IOArray Int Int) union arrayContainer x y = do actualArray <- arrayContainer ls <- getAssocs actualArray leader1 <- readArray actualArray x leader2 <- readArray actualArray y let newValues = (map (\(index, value) -> (index, leader1)) . filter (\(index, value) -> value == leader2)) ls -- sequence $ map (\(idx, val) -> writeArray actualArray idx val) newValues return actualArray ---- The execution time decreased to 33.381 seconds so the writing of the array was actually only a small part of the total execution time. I thought it was quite strange that it was taking so long to execute since things are generally lazily evaluated in Haskell and my assumption was that +++<cite>+++newValues+++</cite>+++ wasn't being evaluated since I hadn't used it anywhere. I decided to comment that out to see what difference it would make: [source,haskell] ---- union :: IO (IOArray Int Int) -> Int -> Int -> IO (IOArray Int Int) union arrayContainer x y = do actualArray <- arrayContainer ls <- getAssocs actualArray leader1 <- readArray actualArray x leader2 <- readArray actualArray y -- let newValues = (map (\(index, value) -> (index, leader1)) . filter (\(index, value) -> value == leader2)) ls -- sequence $ map (\(idx, val) -> writeArray actualArray idx val) newValues return actualArray ---- The execution time was now 33.579 seconds so commenting out that line hadn't actually made any difference. I assumed +++<cite>+++ls+++</cite>+++ wasn't being evaluated since it isn't being used but I thought I'd better check: [source,haskell] ---- union :: IO (IOArray Int Int) -> Int -> Int -> IO (IOArray Int Int) union arrayContainer x y = do actualArray <- arrayContainer -- ls <- getAssocs actualArray leader1 <- readArray actualArray x leader2 <- readArray actualArray y -- let newValues = (map (\(index, value) -> (index, leader1)) . filter (\(index, value) -> value == leader2)) ls -- sequence $ map (\(idx, val) -> writeArray actualArray idx val) newValues return actualArray ---- The execution time now reduced to 3.882 seconds thereby suggesting that +++<cite>+++http://hackage.haskell.org/packages/archive/array/0.2.0.0/doc/html/Data-Array-MArray.html#v%3AgetAssocs[getAssocs]+++</cite>+++ was being strictly evaluated. We are doing what's called a monadic bind which (at least) http://www.haskell.org/ghc/docs/7.2.2/html/users_guide/interactive-evaluation.html[within GHCI is strictly evaluated] but http://www.haskell.org/haskellwiki/What_a_Monad_is_not[isn't necessarily evaluated like this everywhere else]: ____ Monad operations (bind and return) have to be non-strict in fact, always! However other operations can be specific to each monad. For instance some are strict (like IO), and some are non-strict (like []). ____ From my observations it would seem that the +++<cite>+++IOArray+++</cite>+++ is one of those monads which evaluates bind strictly. I tried looking at the Haskell source code to see if I could find any code to prove what I'd observed but I'm not entirely sure what I should be looking for!
null
null
[ -0.0016779534053057432, -0.005640810821205378, -0.02911335602402687, 0.021637987345457077, 0.061825837939977646, 0.022130919620394707, 0.029776928946375847, 0.039567142724990845, 0.02413354627788067, -0.0317009761929512, 0.03196777030825615, -0.011581695638597012, -0.06004811450839043, 0.036124300211668015, 0.02127080224454403, 0.0573524609208107, 0.05548451840877533, -0.04236485809087753, -0.03292859345674515, 0.023240141570568085, 0.011738439090549946, 0.05835320055484772, 0.00005886465805815533, 0.022027229890227318, 0.00735255004838109, 0.013072466477751732, -0.0013887140667065978, 0.02117227576673031, -0.047100942581892014, 0.015927594155073166, 0.039618298411369324, -0.010299616493284702, 0.0032583808060735464, -0.014251685701310635, 0.013827752321958542, -0.03552231192588806, -0.0035710162483155727, 0.014934764243662357, 0.018559256568551064, 0.030606592074036598, -0.058385178446769714, 0.011614201590418816, 0.0006421386497095227, 0.01252629142254591, -0.06360644102096558, -0.007915489375591278, -0.04129265621304512, 0.015978418290615082, -0.03559175133705139, 0.030754046514630318, -0.04353991895914078, 0.007332318462431431, -0.02178933657705784, -0.012537685222923756, -0.004115147516131401, 0.05180390924215317, 0.023968245834112167, -0.059150565415620804, 0.030666658654808998, -0.028850113973021507, 0.005285607650876045, -0.006512856110930443, 0.02268718183040619, 0.010123168118298054, 0.0018708998104557395, -0.03049517422914505, -0.010830415412783623, 0.017703374847769737, -0.03892166540026665, -0.010322656482458115, -0.027171852067112923, 0.03454948216676712, -0.023744072765111923, -0.026970386505126953, 0.009774098172783852, -0.04309763014316559, -0.007304603233933449, 0.06792744994163513, 0.02625373750925064, 0.028860103338956833, -0.004038711078464985, 0.024410434067249298, 0.027929123491048813, 0.009622246026992798, 0.02989589236676693, -0.029662426561117172, -0.03875274583697319, -0.011045669205486774, -0.06509122252464294, 0.07509031146764755, 0.018402099609375, -0.048636581748723984, -0.0038883392699062824, 0.00419127382338047, -0.006413476075977087, 0.005749695934355259, 0.012174325063824654, -0.0033142175525426865, -0.0007023242069408298, -0.0020118553657084703, -0.05688322335481644, -0.024650488048791885, 0.014978240244090557, 0.02408287301659584, -0.06836438179016113, -0.01403637882322073, -0.03928795084357262, -0.01832655631005764, 0.0033747688867151737, -0.002037803875282407, -0.02113165333867073, 0.0044429711997509, -0.007102517411112785, 0.001628727070055902, -0.07984817773103714, 0.0539773628115654, 0.018472939729690552, -0.020054873079061508, 0.006731689907610416, 0.01596364937722683, 0.055707912892103195, 0.043759286403656006, 0.00859388429671526, 0.07478705048561096, 0.032000090926885605, 0.036978304386138916, 0.015382659621536732, 0.0371377095580101, -0.022886421531438828, -0.07938844710588455, -0.03587402030825615, 0.041601985692977905, -0.04082765802741051, 0.0033433863427489996, 0.010685225017368793, -0.017612308263778687, -0.05520574003458023, 0.04261918365955353, 0.04242570325732231, 0.03033357299864292, 0.011626331135630608, -0.055870506912469864, 0.04747011512517929, -0.037827249616384506, 0.008276190608739853, 0.017884163185954094, -0.00408966513350606, -0.018269872292876244, -0.012208394706249237, 0.021493712440133095, 0.02060517854988575, 0.05317872762680054, 0.03924055024981499, -0.0198675487190485, 0.0302917268127203, 0.107635997235775, 0.003143545240163803, -0.002275253413245082, -0.009176810272037983, 0.04729153588414192, 0.02485002763569355, 0.05125120282173157, 0.01521085761487484, -0.00028470816323533654, 0.012980790808796883, 0.0013329910580068827, -0.018487758934497833, 0.045372363179922104, -0.018763327971100807, -0.022357158362865448, -0.04123703017830849, -0.02075798436999321, 0.04828595742583275, -0.029248543083667755, -0.0060861543752253056, 0.004587301518768072, 0.08840511739253998, 0.02391691505908966, 0.04551758989691734, -0.018793493509292603, -0.07395888864994049, 0.019510645419359207, 0.005960098002105951, 0.05519083887338638, 0.01682984083890915, 0.018559347838163376, 0.07513729482889175, 0.006654225289821625, 0.005506419111043215, -0.01920880191028118, -0.046906981617212296, -0.06867384910583496, -0.01611141301691532, -0.020325222983956337, 0.07099809497594833, -0.0415792353451252, -0.022980570793151855, 0.043077826499938965, -0.006432920228689909, 0.04689028486609459, 0.01876957342028618, -0.0042273737490177155, 0.007162262685596943, -0.053595203906297684, -0.047215402126312256, 0.04472397267818451, 0.05432692915201187, -0.039580848067998886, -0.07071565091609955, 0.01679231971502304, -0.027866989374160767, -0.015945294871926308, 0.036112330853939056, -0.015073112212121487, 0.04262619838118553, 0.04777679592370987, 0.02966243028640747, -0.010838702321052551, 0.05456947907805443, -0.03947233781218529, 0.049857985228300095, 0.0199265256524086, -0.0051536099053919315, -0.003633046755567193, -0.0072558787651360035, 0.12442585825920105, 0.05992366001009941, -0.05281100422143936, -0.039967939257621765, 0.016241442412137985, 0.01638317108154297, -0.05281791090965271, -0.016997333616018295, 0.016215849667787552, -0.012226724065840244, -0.014127076603472233, -0.02528318762779236, -0.014507574960589409, 0.02321632392704487, -0.007986298762261868, -0.04284657537937164, 0.06889887154102325, 0.004538241308182478, 0.07982538640499115, 0.0007555073243565857, -0.03775598853826523, -0.00672452338039875, -0.048368360847234726, -0.04868477210402489, -0.015642546117305756, 0.014588485471904278, -0.013560290448367596, 0.07426957041025162, -0.04306397587060928, -0.024072548374533653, -0.03609012812376022, -0.030374642461538315, 0.030115939676761627, 0.033254869282245636, 0.06400741636753082, -0.004467939492315054, 0.04426570609211922, -0.020543165504932404, -0.03307129442691803, -0.008205018937587738, -0.06095223128795624, -0.03238933905959129, -0.0026356757152825594, 0.0034017821308225393, 0.015516696497797966, 0.029729587957262993, -0.004858577158302069, 0.01786600798368454, -0.029793918132781982, -0.025913076475262642, -0.029263319447636604, 0.023168666288256645, -0.01567266508936882, -0.049331679940223694, -0.03127449005842209, -0.02880622074007988, 0.06985779106616974, -0.050714440643787384, -0.0038145314902067184, 0.010088407434523106, -0.02713359147310257, 0.06244475767016411, -0.08226369321346283, -0.021159719675779343, -0.005279910285025835, 0.009594029746949673, 0.03348032012581825, -0.06074778735637665, -0.010241172276437283, 0.06642793118953705, 0.02256304956972599, 0.025095608085393906, 0.01488056592643261, -0.02000792697072029, 0.00821791309863329, -0.003853335976600647, 0.009325966238975525, 0.05566171929240227, -0.003460601205006242, -0.024514496326446533, -0.03541821241378784, -0.005832351744174957, -0.00974739994853735, -0.2668665647506714, 0.013363237492740154, -0.03756581246852875, -0.027033265680074692, 0.02693738229572773, -0.008446693420410156, -0.00535569665953517, -0.03259910270571709, -0.00843033753335476, 0.04710114374756813, -0.03189855441451073, -0.025021441280841827, -0.047677211463451385, 0.05124448612332344, 0.021970491856336594, 0.008491786196827888, -0.014264454133808613, -0.04949519410729408, -0.020374571904540062, 0.05641768127679825, 0.015691008418798447, -0.07471270114183426, 0.007968680001795292, 0.05424686521291733, 0.035894908010959625, 0.04511996731162071, -0.0844336524605751, 0.019868331030011177, -0.05395391583442688, -0.020828532055020332, 0.002743561752140522, -0.005474698729813099, 0.0233546681702137, -0.028183558955788612, -0.005178407765924931, -0.020782476291060448, 0.013137346133589745, 0.02717539295554161, 0.01917772740125656, 0.04136444255709648, -0.008751103654503822, -0.03947814553976059, 0.0010140853701159358, -0.025819318369030952, 0.07237037271261215, 0.0021145709324628115, -0.06414762139320374, -0.025487376376986504, -0.016740605235099792, 0.07017318904399872, -0.01556476391851902, -0.034169360995292664, -0.02844759076833725, 0.02115226536989212, -0.027451811358332634, -0.02019074186682701, -0.009137755259871483, -0.0012582450872287154, -0.04411483183503151, -0.01657668873667717, -0.041936200112104416, -0.03372295945882797, 0.005714611615985632, -0.025015562772750854, -0.05279996991157532, -0.04631924629211426, -0.05730815976858139, 0.02697732299566269, 0.06817034631967545, -0.0006380395498126745, 0.00938976090401411, -0.006587600335478783, -0.010653730481863022, -0.11485077440738678, -0.05228694900870323, -0.009792814962565899, -0.049589019268751144, 0.014945507049560547, 0.01124504767358303, 0.069192074239254, -0.050178442150354385, -0.07324711233377457, 0.032267015427351, -0.009394237771630287, 0.040041640400886536, -0.046646732836961746, 0.0012971475953236222, -0.019532695412635803, -0.01295891311019659, -0.002166212070733309, 0.04305315390229225, -0.015398003160953522, 0.0034099570475518703, -0.02241167426109314, 0.00467926450073719, 0.018019065260887146, 0.00760120851919055, 0.0038700145669281483, 0.020154032856225967, 0.03564117103815079, 0.028756489977240562, -0.0446237176656723, 0.014950769022107124, -0.046942971646785736, -0.025013098493218422, 0.0009036381379701197, -0.045983463525772095, 0.03407685086131096, 0.03737659752368927, 0.036713697016239166, -0.002713985275477171, -0.05299634486436844, 0.043027330189943314, -0.05745641887187958, 0.010264284908771515, -0.007971765473484993, 0.013351385481655598, 0.03728034347295761, 0.024297531694173813, 0.039546530693769455, -0.06423085927963257, 0.014796487987041473, -0.0013144584372639656, -0.021207932382822037, -0.04537779092788696, -0.005265147890895605, -0.039073821157217026, -0.03430989384651184, 0.024085208773612976, 0.01931980811059475, 0.0014374320162460208, 0.019467554986476898, 0.02288307435810566, -0.03381936624646187, 0.027139894664287567, -0.037564534693956375, -0.028572453185915947, -0.03571847826242447, -0.021352773532271385, -0.007401938550174236, 0.01439570914953947, 0.003944661468267441, 0.03899106755852699, 0.013807903975248337, 0.05194224417209625, 0.017380528151988983, 0.03669854253530502, -0.0017355631571263075, 0.014588553458452225, 0.02027559094130993, 0.012708144262433052, -0.06801580637693405, 0.014929433353245258, -0.042086392641067505, -0.02230093814432621, 0.0020778970792889595, 0.04271204397082329, -0.037197817116975784, -0.05852147191762924, -0.0561942532658577, 0.01936744898557663, -0.04538743942975998, -0.02374749630689621, -0.0526629276573658, 0.005714947823435068, 0.0661865770816803, -0.013877764344215393, 0.04536469653248787, -0.02092682383954525, -0.0029597447719424963, -0.02864847518503666, 0.027066607028245926, -0.03846856951713562, 0.01535155437886715, 0.018431272357702255, -0.036981001496315, 0.026649154722690582, 0.007358279079198837, 0.07202019542455673, 0.0016559883952140808, -0.004876759368926287, -0.005662372801452875, -0.007256075274199247, 0.012521250173449516, 0.07046696543693542, 0.011166882701218128, 0.03293566778302193, 0.00411117821931839, -0.01604420691728592, -0.02236936055123806, -0.017504584044218063, -0.0100741907954216, 0.0015616820892319083, 0.01558452658355236, -0.02852499671280384, -0.06803008913993835, 0.028904251754283905, 0.017838191241025925, 0.00031849005608819425, 0.01048602070659399, 0.041300054639577866, -0.021235067397356033, -0.024435091763734818, -0.008731641806662083, 0.0732414573431015, -0.04799650236964226, -0.022925250232219696, 0.022615816444158554, 0.008564280346035957, 0.01812780275940895, 0.026208626106381416, -0.04304567351937294, -0.007224909961223602, 0.010956784710288048, 0.002835349878296256, -0.009364713914692402, -0.021366287022829056, -0.024275509640574455, 0.004521986935287714, -0.026857735589146614, -0.046493299305438995, 0.0009102295734919608, 0.0029762100894004107, -0.009745181538164616, -0.049068648368120193, 0.014640945009887218, -0.027363192290067673, -0.02703494392335415, 0.028046565130352974, -0.022471224889159203, 0.055144090205430984, -0.031146099790930748, 0.02675700932741165, 0.04853173717856407, -0.0020941682159900665, -0.006742506287992001, -0.041811201721429825, -0.006872766651213169, -0.03215397521853447, 0.04764857515692711, 0.0000683911785017699, -0.005650095175951719, -0.0036716233007609844, -0.0012155097210779786, -0.06090220808982849, -0.0020691778045147657, 0.02382027544081211, -0.00680469861254096, 0.003140263259410858, 0.04046563059091568, -0.025933418422937393, 0.02579938806593418, -0.01455094013363123, -0.044926490634679794, 0.0342615582048893, -0.060611601918935776, -0.01557818055152893, -0.006223433185368776, -0.04362134635448456, 0.023189404979348183, 0.0021714221220463514, 0.0032733420375734568, -0.062443770468235016, 0.023520775139331818, 0.03425000235438347, 0.051193397492170334, 0.05227627605199814, -0.008749471977353096, 0.04461478069424629, -0.02131539396941662, -0.018378175795078278, -0.091575488448143, -0.02515057474374771, 0.01689642108976841, 0.004418136551976204, -0.006797874812036753, -0.02582915872335434, -0.010252146981656551, 0.037776459008455276, -0.048363085836172104, -0.025151247158646584, 0.045046910643577576, 0.0056920829229056835, -0.006889198906719685, 0.02544839307665825, -0.047798167914152145, 0.015659283846616745, 0.017662163823843002, -0.022254766896367073, 0.011717294342815876, -0.027808329090476036, 0.05403783172369003, 0.004934558644890785, 0.04166744649410248, -0.017933405935764313, 0.008707284927368164, 0.04975680261850357, 0.019353589043021202, -0.004835106898099184, 0.06292691081762314, -0.01647189073264599, 0.02024012990295887, 0.028893446549773216, 0.0027596778236329556, -0.01669030636548996, 0.0034630964510142803, -0.030698487535119057, -0.035934533923864365, 0.00952119193971157, 0.0033155481796711683, -0.007146639283746481, -0.03827888146042824, 0.05982120335102081, 0.02530013769865036, -0.029103051871061325, -0.06246037036180496, 0.035223521292209625, -0.042865026742219925, 0.014339419081807137, -0.009557323530316353, 0.012858959846198559, -0.050781864672899246, 0.036483824253082275, -0.005606336984783411, 0.0015829894691705704, 0.0826861560344696, 0.014932756312191486, -0.045515887439250946, 0.008192102424800396, 0.10555104166269302, 0.09081477671861649, 0.04217427596449852, -0.022469419986009598, 0.0671451985836029, -0.038969751447439194, -0.055622052401304245, 0.01564888469874859, -0.0217764712870121, -0.01848425716161728, 0.004820710979402065, 0.045958030968904495, 0.09327807277441025, -0.029762491583824158, 0.058644022792577744, -0.0204769354313612, 0.013457552529871464, 0.000002459173174429452, -0.004727242048829794, 0.031105823814868927, 0.07182905077934265, 0.02266516163945198, 0.03544865548610687, -0.0019452337874099612, -0.03731517493724823, -0.0023876263294368982, 0.00017516866500955075, -0.012083449400961399, 0.01019904762506485, 0.011224215850234032, 0.004473634529858828, 0.023997502401471138, 0.01693713106215, 0.058445267379283905, -0.03437509015202522, 0.011855014599859715, -0.014206781052052975, 0.04247559234499931, -0.000880547275301069, 0.006238408386707306, -0.049064744263887405, -0.04162684828042984, 0.008565260097384453, -0.017341116443276405, -0.0046499427407979965, 0.01019933633506298, -0.040394119918346405, 0.06209446117281914, -0.024713773280382156, 0.014749561436474323, 0.019019022583961487, -0.004283505957573652, -0.009779256768524647, -0.05300764739513397, -0.053471487015485764, -0.03873824328184128, -0.057173922657966614, 0.01950376108288765, 0.002590397372841835, -0.023753207176923752, -0.030191559344530106, -0.01243360061198473, 0.003407637123018503, -0.038223959505558014, 0.04123751074075699, -0.04499766230583191, -0.03187459707260132, -0.011259439401328564, -0.0029049129225313663, 0.05210255831480026, 0.03576218709349632, 0.06025901436805725, -0.02449142560362816, 0.02562737464904785, -0.024081474170088768, -0.0380813367664814, 0.04343068599700928, 0.010464193299412727, -0.043757107108831406, -0.09334901720285416, 0.017965713515877724, 0.03746826574206352, 0.020528869703412056, -0.08454298228025436, 0.002163103548809886, -0.00143601861782372, -0.022546684369444847, 0.04448360949754715, -0.01719757728278637, -0.018483290448784828, -0.01460753008723259, -0.014187474735081196, -0.005059544462710619, 0.014361978508532047, 0.060007043182849884, -0.018055591732263565, 0.06747623533010483, 0.02226455695927143, -0.03658510372042656, -0.00955475028604269, -0.014454117976129055, -0.002768680453300476, 0.024264641106128693, -0.023868707939982414, -0.03708962723612785, -0.02935655601322651, -0.07092166692018509, -0.019306179136037827, -0.002640044316649437, -0.020642418414354324, -0.019090337678790092, 0.026728734374046326, 0.05450749024748802, -0.0686550885438919, 0.037783145904541016, -0.028034428134560585, 0.03023368865251541, -0.01989070139825344, -0.044547490775585175, 0.02178763411939144, 0.03555549308657646, -0.024846386164426804, 0.001181304920464754, 0.03690138831734657, -0.04615025967359543, 0.01137558650225401, 0.01627287268638611, 0.03729834780097008, 0.033345725387334824, -0.006171835586428642, 0.02585233934223652 ]
[ -0.11756976693868637, -0.033609796315431595, 0.003719000844284892, 0.013822505250573158, 0.0070707229897379875, -0.0744331032037735, -0.015274704433977604, 0.032943591475486755, 0.03723153844475746, -0.01635199785232544, 0.04051584377884865, -0.016292130574584007, 0.019604511559009552, -0.03707212209701538, 0.059784069657325745, 0.007475704420357943, -0.06316560506820679, -0.004557373933494091, -0.025107838213443756, 0.024233588948845863, 0.02480201981961727, -0.039862245321273804, -0.07156729698181152, -0.055991291999816895, 0.04311071336269379, 0.05250082165002823, -0.006617355160415173, -0.0437764972448349, 0.010833936743438244, -0.2642350196838379, -0.005533399060368538, 0.010648155584931374, 0.06252709776163101, 0.003324678633362055, -0.012924917973577976, -0.005376029293984175, 0.05235857889056206, 0.0052304742857813835, 0.011717762798070908, 0.05537815019488335, 0.04550619795918465, 0.012281210161745548, -0.05483857914805412, 0.002189420163631439, 0.0029107907321304083, 0.02627931721508503, -0.026329051703214645, -0.0299281757324934, 0.0024943260941654444, 0.037278592586517334, -0.06492052972316742, 0.020177528262138367, 0.03084748052060604, 0.040805067867040634, 0.05785469338297844, 0.02658192627131939, 0.09052298218011856, 0.07239320874214172, 0.01806001178920269, -0.0037069593090564013, -0.0023267793003469706, -0.0028702274430543184, -0.10715074092149734, 0.0643228068947792, 0.022195177152752876, 0.030467506498098373, -0.019150830805301666, -0.01905134692788124, -0.040416572242975235, 0.09001623839139938, -0.002036486752331257, -0.0009566006483510137, -0.0015921795275062323, 0.039424557238817215, 0.02065855823457241, -0.023763582110404968, -0.01104795467108488, -0.009014002978801727, 0.05991708114743233, -0.01261816918849945, -0.06344816088676453, -0.0608469620347023, -0.021731771528720856, -0.011300132609903812, 0.0022826706990599632, 0.01354441698640585, -0.08689981698989868, 0.05226869508624077, 0.023410499095916748, -0.011512883007526398, 0.03553234785795212, -0.009962454438209534, 0.017504042014479637, 0.022444959729909897, -0.04472602531313896, 0.03809591755270958, -0.014165861532092094, 0.018761903047561646, -0.004575224127620459, 0.3829767107963562, -0.03786859288811684, 0.013436230830848217, 0.015197956934571266, 0.008675465360283852, -0.009135223925113678, 0.016412576660513878, 0.002840667264536023, -0.06518299132585526, -0.046238698065280914, -0.052432797849178314, 0.009784579277038574, -0.0409431979060173, 0.08298680931329727, -0.0338602215051651, 0.03836319223046303, 0.009773953817784786, 0.04651765152812004, 0.028315600007772446, -0.032001350075006485, 0.020860595628619194, 0.03746042773127556, 0.026429470628499985, 0.021006448194384575, 0.02789705991744995, 0.01126500591635704, 0.0019211325561627746, 0.0018215265590697527, 0.048864372074604034, 0.03155004233121872, 0.0509583055973053, 0.07264800369739532, 0.007473962381482124, -0.017243532463908195, 0.0007391603430733085, -0.011209704913198948, 0.022762326523661613, 0.03291070833802223, -0.057894736528396606, -0.006613634992390871, 0.04101182520389557, -0.0001469785493100062, -0.042664553970098495, 0.023678123950958252, -0.004209708422422409, -0.028943631798028946, 0.1252450942993164, -0.0004865650844294578, -0.0279837753623724, 0.003492677351459861, -0.03395325690507889, -0.011951885186135769, 0.049072641879320145, -0.014444442465901375, -0.07580138742923737, -0.024172592908143997, 0.011217349208891392, 0.005540638230741024, -0.011131463572382927, -0.03997860476374626, 0.020003532990813255, -0.07096920162439346, -0.008752172812819481, -0.041903555393218994, 0.054393086582422256, 0.02150280401110649, -0.07489746063947678, 0.009152104146778584, 0.008851367980241776, -0.00385193875990808, -0.0747845321893692, -0.007311695721000433, 0.008224033750593662, -0.030252840369939804, 0.023096609860658646, 0.03891388326883316, -0.020004425197839737, -0.012218219228088856, -0.016157422214746475, 0.03906899690628052, 0.01049220934510231, 0.030913831666111946, 0.0449739433825016, -0.06093199551105499, -0.008033222518861294, -0.0228045005351305, -0.025876905769109726, -0.06425390392541885, 0.005708102602511644, -0.010896376334130764, 0.004442268051207066, -0.03279143571853638, -0.020284436643123627, -0.10378728061914444, 0.07535312324762344, -0.055102404206991196, -0.0609353743493557, 0.0652596578001976, -0.02800391986966133, 0.00031487454543821514, 0.013017740100622177, 0.004114649724215269, 0.06194799020886421, 0.01426170114427805, 0.04555543139576912, -0.06718891113996506, 0.008274571970105171, 0.01061231829226017, -0.06526047736406326, 0.028817011043429375, 0.01189294084906578, -0.023508120328187943, -0.04139767959713936, -0.06514494866132736, 0.025196295231580734, -0.020063644275069237, -0.048100195825099945, 0.042021434754133224, 0.012655768543481827, 0.0036086125764995813, 0.0049781715497374535, -0.012613523751497269, -0.03323185816407204, -0.05652889236807823, -0.33287543058395386, -0.027323411777615547, -0.03968743607401848, 0.01560252346098423, -0.007796029560267925, -0.09475187212228775, -0.014272836036980152, -0.03162948042154312, -0.03953675553202629, 0.05204259231686592, 0.0837421640753746, 0.007895408198237419, -0.022255003452301025, -0.09694365411996841, -0.031997695565223694, 0.0377768948674202, -0.006375947967171669, 0.0032674772664904594, -0.012719443067908287, 0.03516057878732681, -0.028080971911549568, 0.021199334412813187, -0.026809226721525192, -0.032549213618040085, -0.02707626484334469, -0.0438014455139637, 0.11469939351081848, -0.029888417571783066, 0.06975654512643814, -0.02598666213452816, 0.01754120923578739, -0.011670857667922974, -0.036616817116737366, -0.009817525744438171, -0.03450441733002663, -0.0006123266648501158, 0.0035570128820836544, -0.004417836666107178, 0.06369199603796005, 0.008897949941456318, -0.08504544198513031, 0.006853441707789898, -0.04815134033560753, -0.016940956935286522, -0.019862938672304153, 0.01832389645278454, 0.01591271162033081, -0.07071401178836823, -0.015134930610656738, 0.04932406172156334, 0.04988742992281914, -0.005563266109675169, 0.011178339831531048, 0.02938891388475895, -0.028119169175624847, -0.0014890413731336594, -0.046214763075113297, -0.021370986476540565, -0.021075701341032982, -0.0163461584597826, 0.02598622813820839, 0.07445774972438812, 0.017543096095323563, 0.024654146283864975, 0.03938230872154236, -0.007331121247261763, -0.01997085101902485, 0.02184523269534111, 0.005739516578614712, -0.029715681448578835, -0.013431252911686897, 0.07148490101099014, -0.012413905002176762, -0.003269744571298361, 0.07308091223239899, 0.04462204873561859, -0.017618980258703232, 0.00604642741382122, 0.03514988720417023, 0.010728752240538597, 0.014026925899088383, -0.01612860895693302, -0.0025191756431013346, -0.009528274647891521, -0.002081424929201603, 0.04338645562529564, -0.0002817734784912318, 0.07299476116895676, 0.03415648266673088, 0.021750537678599358, -0.013036692515015602, 0.024793371558189392, 0.004604316782206297, -0.025777138769626617, 0.023773008957505226, -0.009098224341869354, -0.2841379940509796, 0.0501684844493866, 0.042748481035232544, -0.011691835708916187, -0.005327714141458273, 0.007120593450963497, 0.04212541505694389, -0.07409723103046417, -0.06002553179860115, 0.03780612722039223, 0.018710197880864143, 0.0748007744550705, 0.0012545258505269885, -0.016350967809557915, 0.002887216629460454, 0.02170509845018387, 0.048282984644174576, 0.007776129990816116, -0.019308477640151978, 0.013258034363389015, 0.003149109659716487, 0.0009456187253817916, 0.20967651903629303, -0.01786339469254017, 0.01788109354674816, 0.010860494337975979, -0.006000390741974115, 0.01690165139734745, 0.049096014350652695, 0.024800756946206093, -0.018469715490937233, 0.004821324720978737, 0.06216226518154144, -0.015913164243102074, -0.007848498411476612, -0.0009262888925150037, 0.0363532118499279, 0.05168994516134262, 0.00029884473769925535, -0.01843903958797455, -0.04488634318113327, 0.02242242358624935, 0.000006123702405602671, 0.0261634960770607, 0.07016462832689285, 0.019091041758656502, 0.005705534014850855, -0.07052399218082428, -0.03961389884352684, 0.04072435945272446, -0.058655086904764175, -0.044856660068035126, -0.007292040158063173, 0.02055145427584648, 0.005463914480060339, 0.05416955426335335, -0.02178090810775757, -0.03821858763694763, -0.03154577314853668, 0.012883123010396957, 0.002514151856303215, 0.0013133876491338015, 0.05946112424135208, 0.013329964131116867, 0.05126434564590454 ]
[ -0.005491872783750296, 0.017573565244674683, -0.026561686769127846, 0.008040116168558598, -0.02155221626162529, -0.009402901865541935, 0.01809333637356758, -0.0090429512783885, -0.0360901840031147, -0.021958166733384132, -0.0786954015493393, -0.004494825843721628, 0.06662452220916748, -0.046292077749967575, -0.008350658230483532, -0.005385372322052717, -0.00025977074983529747, 0.007590175606310368, 0.039935868233442307, -0.03471464291214943, -0.025169964879751205, 0.008581583388149738, 0.0014459405792877078, 0.008016129955649376, 0.004327368922531605, 0.05541614443063736, -0.036978829652071, -0.025743048638105392, -0.005436988081783056, -0.12214745581150055, -0.022572970017790794, -0.026266125962138176, 0.016926635056734085, -0.0003236634947825223, -0.05840256065130234, 0.011522090993821621, -0.0049688443541526794, 0.04908814653754234, -0.0002923186111729592, -0.012104853987693787, -0.0029169099871069193, 0.007886103354394436, -0.024796655401587486, 0.0036488657351583242, 0.00046232869499363005, 0.0114750936627388, -0.011929410509765148, -0.05271276459097862, -0.022723810747265816, 0.02499993145465851, -0.06303956359624863, 0.01856420561671257, 0.05137225240468979, 0.04211543872952461, 0.04527902975678444, -0.009928996674716473, -0.05720153823494911, -0.05853462964296341, -0.0029031760059297085, 0.003545078681781888, -0.034914057701826096, 0.03316127508878708, -0.03572206571698189, 0.003585261758416891, -0.03475473076105118, -0.0012429842026904225, 0.01596135087311268, 0.03581893444061279, 0.017099810764193535, -0.0007788499933667481, 0.04630550742149353, 0.014297641813755035, -0.055282846093177795, -0.02790404111146927, -0.0053282976150512695, -0.00292108952999115, 0.04744482785463333, -0.029185988008975983, 0.02013080008327961, -0.017089547589421272, -0.04724927619099617, 0.008853360079228878, -0.0006242438103072345, 0.021242821589112282, -0.03420184552669525, 0.0008542173309251666, -0.02890382707118988, 0.013325081206858158, -0.029595930129289627, -0.030634047463536263, 0.0028549220878630877, 0.025219272822141647, 0.0023284449707716703, 0.007652840111404657, 0.0005987407639622688, 0.0009426691103726625, -0.035242363810539246, 0.026505617424845695, -0.006533605977892876, 0.8093056082725525, -0.011905770748853683, 0.05505558103322983, -0.015027974732220173, -0.007484710309654474, -0.036159005016088486, -0.032619062811136246, 0.022491710260510445, 0.0173482745885849, -0.05858742445707321, -0.03339119628071785, 0.05942626670002937, -0.018122412264347076, 0.060202229768037796, 0.011989375576376915, 0.005542187951505184, 0.045520950108766556, 0.005653500556945801, 0.005277219694107771, -0.012804984115064144, 0.0005426567513495684, 0.04604438692331314, -0.02613532543182373, 0.001690446282736957, 0.04434385523200035, 0.010066079907119274, -0.1558409333229065, -0.020103653892874718, -6.876350282774584e-33, 0.0574595145881176, -0.02941131964325905, 0.008183307014405727, -0.00574217364192009, 0.04548456519842148, 0.02829526737332344, 0.06019938364624977, -0.0011488579912111163, -0.027796195819973946, 0.003477182937785983, 0.002777092158794403, -0.000768383324611932, -0.016730839386582375, -0.020834634080529213, 0.0155263040214777, -0.019136078655719757, 0.034261755645275116, 0.04491109028458595, -0.031170928850769997, 0.0023436429910361767, 0.020137593150138855, 0.0781344473361969, -0.006723083555698395, -0.0036477933172136545, -0.005490575917065144, 0.026688186451792717, 0.0005487357266247272, -0.03492208942770958, 0.023168416693806648, -0.029758751392364502, 0.0032023945823311806, 0.007283620536327362, 0.0025773653760552406, -0.027247335761785507, 0.02727792039513588, -0.04709966108202934, -0.013168753124773502, 0.025405682623386383, -0.0062316302210092545, -0.02965976484119892, -0.0633554682135582, 0.027945516631007195, -0.005216177087277174, -0.042081769555807114, -0.014791402965784073, -0.02677064761519432, 0.010601194575428963, 0.011791464872658253, 0.016145823523402214, 0.035692065954208374, 0.027170171961188316, 0.0340874008834362, -0.0035964609123766422, 0.016161715611815453, -0.025174325332045555, 0.019941948354244232, 0.008767892606556416, 0.05283181741833687, -0.006876092869788408, 0.06744381040334702, 0.020671812817454338, 0.023841045796871185, -0.014100482687354088, 0.05451316013932228, -0.012201349250972271, 0.0068678841926157475, -0.03190146014094353, 0.0014160327846184373, 0.03157471865415573, 0.027193129062652588, -0.03774665668606758, -0.0037011990789324045, -0.031833019107580185, -0.013639278709888458, 0.03635893017053604, -0.013465571217238903, -0.0026987630408257246, -0.02342238649725914, -0.014390101656317711, -0.005149122327566147, 0.023159349337220192, -0.04266764223575592, 0.016847506165504456, -0.006488319020718336, -0.0243639275431633, 0.008768259547650814, -0.0018173523712903261, -0.009567232802510262, -0.023984143510460854, 0.008301084861159325, 0.0220097154378891, 0.02056651934981346, 0.004357228055596352, -0.007398884743452072, -0.00919051468372345, 7.34670671484086e-33, 0.012075966224074364, -0.035646650940179825, 0.044715411961078644, 0.0019819061271846294, 0.02757975272834301, -0.00694819213822484, 0.07866965979337692, -0.019874392077326775, -0.02604079619050026, 0.055352360010147095, -0.011794976890087128, 0.03441380336880684, -0.04955907166004181, -0.0048061697743833065, 0.07775010168552399, -0.022092822939157486, 0.038171540945768356, -0.006726166233420372, 0.0007040590280666947, -0.012658180668950081, 0.011472703889012337, 0.0028915591537952423, 0.020490970462560654, 0.015022985637187958, 0.023020464926958084, 0.030699903145432472, -0.025546958670020103, 0.012429493479430676, 0.0006989717949181795, -0.020943904295563698, -0.002939898520708084, -0.042384129017591476, -0.003962494898587465, -0.029566623270511627, 0.014973812736570835, 0.02509845420718193, 0.008123073726892471, -0.018078980967402458, -0.0027984483167529106, 0.01160306017845869, -0.006616800557821989, -0.006971975322812796, 0.01677403412759304, 0.014795458875596523, 0.02124899998307228, 0.016808465123176575, -0.02115180715918541, 0.01341900136321783, 0.02121255174279213, -0.03267286717891693, -0.013763638213276863, 0.005395397078245878, 0.023561978712677956, -0.0007584193372167647, 0.024509595707058907, -0.019434625282883644, -0.005916641093790531, 0.003380383364856243, -0.02215632237493992, -0.013794027268886566, 0.005603020079433918, 0.00463508116081357, 0.016628485172986984, 0.021831458434462547, -0.003365017008036375, -0.02575581707060337, -0.027460802346467972, -0.04951198026537895, -0.010649637319147587, 0.0672539696097374, -0.03639986366033554, -0.033187441527843475, -0.013826766051352024, 0.045218564569950104, -0.032311465591192245, -0.010693653486669064, -0.0779872015118599, -0.010951629839837551, 0.0011287301313132048, 0.03591153398156166, 0.017019636929035187, 0.014860515482723713, 0.004589601885527372, -0.019617998972535133, 0.01987297646701336, -0.006394618656486273, 0.058100756257772446, 0.017802145332098007, 0.014492454938590527, -0.006006691139191389, -0.007392358034849167, -0.05392780154943466, -0.013921529985964298, -0.033299338072538376, -0.03873433545231819, -1.242532654543993e-8, -0.0006425045430660248, -0.05019574239850044, -0.03214839845895767, 0.04683571308851242, 0.011806794442236423, 0.015164732001721859, -0.041994333267211914, -0.02230476588010788, -0.015114220790565014, 0.011177736334502697, 0.037198249250650406, -0.022765493020415306, 0.019155750051140785, -0.017186952754855156, 0.03682303428649902, -0.0641288310289383, 0.05248149111866951, -0.04567144066095352, 0.01269021537154913, -0.039508529007434845, 0.002844163915142417, 0.02748643234372139, -0.01791086234152317, -0.005572995636612177, -0.042439017444849014, 0.003723647678270936, 0.011105346493422985, -0.041641391813755035, 0.015477504581212997, 0.02499331720173359, 0.021794013679027557, -0.019994480535387993, -0.0041116951033473015, 0.036247335374355316, 0.0021724007092416286, -0.020070664584636688, 0.00268928543664515, 0.019551079720258713, 0.011629262939095497, -0.024462314322590828, 0.0010869812685996294, 0.053702086210250854, 0.016843555495142937, -0.007239331025630236, 0.004879469517618418, -0.020026398822665215, -0.028002245351672173, 0.006735628470778465, 0.04341813549399376, -0.05573127046227455, 0.05641285702586174, -0.024026595056056976, 0.03378767520189285, 0.01911434344947338, 0.047102924436330795, 0.013224263675510883, 0.010341138578951359, -0.05319390818476677, 0.0055239940993487835, 0.012157819233834743, 0.020647719502449036, 0.004690553992986679, -0.013823808170855045, -0.023729516193270683 ]
haskell-strictness-and-the-monadic-bind
https://markhneedham.com/blog/2012/12/31/haskell-strictness-and-the-monadic-bind
false
2012-12-30 23:16:48
Haskell: Using qualified imports to avoid polluting the namespace
[ "haskell" ]
[ "Haskell" ]
In most of the Haskell code I've read any functions from other modules have been imported directly into the namespace and I reached the stage where I had this list of imports in a file: [source,haskell] ---- import System.IO import Data.List.Split import Data.Char import Data.Bits import Control.Monad import Data.Map import Data.Set import Data.List import Data.Maybe ---- This becomes a problem when you want to use a function which is defined in multiple modules such as +++<cite>+++filter+++</cite>+++: [source,text] ---- clustering.hs:53:43: Ambiguous occurrence `filter' It could refer to either `Data.List.filter', imported from `Data.List' at clustering.hs:11:1-16 (and originally defined in `GHC.List') or `Data.Set.filter', imported from `Data.Set' at clustering.hs:10:1-16 or `Data.Map.filter', imported from `Data.Map' at clustering.hs:9:1-16 ---- One way to solve this is to change occurrences of +++<cite>+++filter+++</cite>+++ to +++<cite>+++Data.List.filter+++</cite>+++ but it's a bit long winded and in this case there is a function in the +++<cite>+++Prelude+++</cite>+++ package which is available without us importing anything. Unfortunately we'd have to use the prefix +++<cite>+++Prelude+++</cite>+++ to refer to it since all the other versions of the function have made it ambiguous. We still want to use some of the functions in those other modules though so we can do a qualified import which will make the functions available to us but only if we refer to them by their full name. It won't import them into our namespace. For example to initialise a map we'd do this: [source,haskell] ---- > import qualified Data.Map > Data.Map.assocs $ Data.Map.fromList [(1,2), (3,7)] [(1,2),(3,7)] ---- That's a bit long winded though so we can rename imports with a shorter name to make our life a bit easier: [source,haskell] ---- import System.IO import Data.List.Split import Data.Char import Data.Bits import qualified Control.Monad as Monad import qualified Data.Map as Map import qualified Data.Set as Set import qualified Data.List as List import qualified Data.Maybe as Maybe ---- We can then use functions in those packages like so: [source,haskell] ---- > Maybe.maybeToList (Just 3) [3] ---- For this particular function I haven't come across any with the same name so we might want to import that one into our namespace but require the use of the +++<cite>+++Maybe+++</cite>+++ prefix for any other functions: [source,haskell] ---- import qualified Data.Maybe as Maybe import Data.Maybe (maybeToList) ---- [source,haskell] ---- > maybeToList (Just 3) [3] ---- There's a wiki entry I came across which http://en.wikibooks.org/wiki/Haskell/Modules#Renaming_imports[explains Haskell modules this in a bit more detail] and is worth a read.
null
null
[ -0.008685387670993805, 0.02963983081281185, -0.05869904160499573, 0.010289732366800308, 0.06485084444284439, 0.014228872954845428, 0.0022318530827760696, -0.008424281142652035, 0.010317315347492695, -0.02087293192744255, -0.02494305744767189, 0.0038039893843233585, -0.07465727627277374, 0.02355027198791504, 0.007584760896861553, 0.046309202909469604, 0.08579892665147781, -0.0029051699675619602, -0.02806299924850464, 0.02221454679965973, 0.033371876925230026, 0.08139707148075104, 0.0019991472363471985, 0.025377249345183372, 0.022604290395975113, 0.014192167669534683, 0.0033164869528263807, 0.00687288586050272, -0.04448847845196724, 0.032066017389297485, 0.03822363168001175, 0.003499580081552267, -0.00408784719184041, -0.010758665390312672, 0.022564629092812538, -0.009367911145091057, 0.008172685280442238, -0.009526165202260017, 0.005761920940130949, 0.010005222633481026, -0.057441264390945435, 0.018598880618810654, -0.01640307903289795, -0.0045823752880096436, -0.05492788925766945, -0.00580856017768383, -0.040855150669813156, 0.012343751266598701, -0.04604065790772438, -0.00691751716658473, -0.04147227481007576, -0.00802953727543354, -0.019053582102060318, -0.00854373350739479, -0.021202191710472107, 0.053484927862882614, 0.00602704007178545, -0.07901107519865036, 0.033089928328990936, -0.034735243767499924, 0.022315695881843567, 0.006062523927539587, 0.022624850273132324, 0.04755905270576477, 0.0463549867272377, 0.004976239986717701, -0.04405312240123749, 0.037412919104099274, -0.05202619731426239, -0.009106539189815521, -0.005008552689105272, -0.018887436017394066, -0.04898561164736748, -0.009917667135596275, -0.03312882035970688, -0.03532319888472557, -0.025653192773461342, 0.05526608228683472, 0.003705632174387574, 0.04649189114570618, -0.014980563893914223, 0.03801410645246506, 0.009662923403084278, -0.0033611690159887075, 0.029042677953839302, -0.0706910714507103, -0.04752476513385773, 0.027830637991428375, -0.0380292683839798, 0.057133570313453674, 0.014598621986806393, -0.05267626419663429, 0.01096260268241167, -0.012894702143967152, 0.040452923625707626, -0.009249496273696423, 0.008112428709864616, -0.032727088779211044, 0.02317805401980877, 0.0018942162860184908, -0.06487800925970078, -0.0190342515707016, 0.02240639179944992, 0.001931726816110313, -0.08195959776639938, -0.03099438175559044, -0.01453185174614191, -0.026601547375321388, -0.008339696563780308, 0.0017295130528509617, -0.013437125831842422, -0.019924111664295197, -0.014255756512284279, -0.004982376471161842, -0.07536014169454575, 0.06279189139604568, 0.018922854214906693, 0.006534581072628498, 0.002935136668384075, 0.02410404197871685, 0.05462916940450668, 0.02903633378446102, 0.00025718699907884, 0.07203465700149536, 0.03757564723491669, 0.0353972464799881, 0.013250241056084633, 0.06631526350975037, 0.0040702540427446365, -0.06436435133218765, -0.024019643664360046, 0.06044980511069298, -0.0367387980222702, 0.022648386657238007, -0.011346506886184216, -0.031156079843640327, -0.039109788835048676, 0.022073186933994293, 0.02327125519514084, 0.032740380614995956, 0.00811725202947855, -0.02970704436302185, 0.004401791375130415, -0.04287433251738548, 0.007890219800174236, 0.003381442977115512, -0.0039007000159472227, -0.038570187985897064, -0.00021590273536276072, 0.032887428998947144, 0.0015819461550563574, 0.06439422070980072, 0.060234133154153824, -0.006542361807078123, 0.03673573210835457, 0.08479849249124527, 0.030963731929659843, 0.013070305809378624, -0.02809729240834713, 0.002056127181276679, 0.0381634458899498, 0.017103223130106926, 0.007709525991231203, 0.03251039981842041, -0.004348432179540396, -0.028430363163352013, -0.020054034888744354, 0.04605536535382271, 0.009429560974240303, -0.020319828763604164, -0.027967797592282295, -0.060041602700948715, 0.0677686408162117, -0.015196142718195915, 0.024200858548283577, 0.010665975511074066, 0.09643980860710144, -0.0033922246657311916, 0.042269378900527954, 0.0022568677086383104, -0.07960072159767151, 0.017108766362071037, -0.031423989683389664, -0.0027916303370147943, 0.005962626077234745, 0.014684053137898445, 0.06182229891419411, 0.009846794418990612, 0.00208244938403368, 0.05359973758459091, -0.05528191477060318, -0.08444947749376297, -0.025923602283000946, -0.009905953891575336, 0.0712227150797844, -0.03934360668063164, -0.02689754217863083, 0.07606635987758636, -0.004706207662820816, 0.022873999550938606, 0.026004651561379433, 0.012413709424436092, 0.007986553944647312, -0.017657117918133736, -0.05125145986676216, 0.023750321939587593, 0.004239365458488464, 0.02855953574180603, -0.042239297181367874, 0.003844205057248473, 0.004721830599009991, -0.002504148054867983, 0.04831640049815178, -0.020560206845402718, 0.05726778134703636, 0.03057164140045643, 0.011675246059894562, -0.0034998594783246517, 0.03279787302017212, -0.04639587551355362, 0.052274785935878754, 0.032696112990379333, -0.02103402093052864, -0.04125678911805153, -0.012721868231892586, 0.11910060793161392, 0.07635492086410522, -0.02366700768470764, -0.04559309780597687, 0.03159204125404358, 0.008107155561447144, -0.04098767414689064, 0.013070326298475266, -0.010111541487276554, -0.014354584738612175, -0.003940389957278967, -0.012922107242047787, 0.002248573349788785, -0.01475363876670599, -0.033483922481536865, -0.02156697027385235, 0.08716597408056259, -0.02849085070192814, 0.02930164895951748, 0.020301146432757378, -0.02795257791876793, -0.006022210232913494, -0.031426675617694855, -0.05785318836569786, -0.015949277207255363, 0.05553346127271652, -0.003975247964262962, 0.06987453997135162, -0.047769226133823395, -0.023721767589449883, -0.021495291963219643, -0.048566658049821854, 0.04031166061758995, 0.05293833836913109, 0.06875264644622803, -0.0019748772028833628, 0.023574773222208023, -0.05385551229119301, -0.02432129718363285, -0.023278256878256798, -0.05108332261443138, -0.0015643293736502528, -0.012532010674476624, -0.0007092256564646959, 0.021387619897723198, 0.042366769164800644, -0.009814047254621983, 0.023085253313183784, -0.015730125829577446, 0.005822363309562206, 0.004413474816828966, 0.0042054192163050175, -0.00658078957349062, -0.0384553000330925, -0.05426027253270149, -0.031864095479249954, 0.08194255083799362, -0.042474351823329926, -0.04434182122349739, -0.022707046940922737, -0.029246395453810692, 0.04510863870382309, -0.08008889853954315, -0.020643023774027824, -0.003741210326552391, 0.060888029634952545, 0.034335460513830185, -0.018248427659273148, 0.005574028939008713, 0.05230923369526863, 0.023201335221529007, 0.012346623465418816, 0.03604756295681, 0.002691730624064803, 0.03039681166410446, -0.022298574447631836, 0.05348819121718407, 0.017348073422908783, 0.008998189121484756, -0.008569762110710144, -0.013218408450484276, -0.02017872966825962, -0.02286485582590103, -0.2623656392097473, 0.014259491115808487, -0.03757062554359436, -0.01734621450304985, 0.02571716532111168, -0.03174729272723198, 0.011220371350646019, -0.04730013757944107, -0.012057868763804436, 0.019440460950136185, -0.022726358845829964, -0.034665919840335846, -0.029461560770869255, 0.06519588828086853, -0.009242694824934006, 0.029774155467748642, -0.012892593629658222, -0.04650549963116646, -0.02117924764752388, 0.05071980878710747, -0.010132113471627235, -0.030581248924136162, -0.010821670293807983, 0.04380624741315842, -0.03540811687707901, 0.024846848100423813, -0.07439868897199631, 0.053767282515764236, -0.061007022857666016, -0.039452217519283295, -0.05763820558786392, -0.027817318215966225, -0.01224473025649786, -0.04288811981678009, -0.0144575834274292, -0.03347155824303627, 0.01675781048834324, 0.021984651684761047, 0.0082831010222435, 0.0228794664144516, -0.05265427753329277, -0.03497624397277832, 0.005452741403132677, -0.038604654371738434, 0.08306217938661575, -0.01726008951663971, -0.06730203330516815, -0.024055801331996918, -0.04264715313911438, 0.06898798048496246, -0.024657072499394417, -0.05043504387140274, -0.015422206372022629, 0.028669822961091995, -0.0071506742388010025, -0.0184297114610672, 0.014960071071982384, -0.0007004296639934182, -0.06074460968375206, -0.033034514635801315, -0.03230717033147812, -0.03173919767141342, -0.02650192379951477, -0.029943183064460754, -0.02783973701298237, -0.0649554580450058, -0.07729708403348923, -0.02514435537159443, 0.037964362651109695, 0.019299505278468132, -0.026512907817959785, 0.0006124926148913801, -0.01758662238717079, -0.11080918461084366, -0.005767787341028452, -0.05082496628165245, -0.047185495495796204, -0.03732491284608841, 0.0013473655562847853, 0.04168325662612915, -0.03180033341050148, -0.0457921028137207, 0.03919893130660057, -0.017041899263858795, 0.02264857478439808, -0.009247398003935814, 0.0007910934509709477, 0.0032081264071166515, -0.03774084523320198, -0.03140825778245926, 0.05193130299448967, -0.015789339318871498, 0.012739967554807663, -0.005333711858838797, -0.0024795113131403923, 0.012552449479699135, 0.0037699483800679445, -0.013055144809186459, 0.04117539897561073, 0.032477911561727524, 0.03675192967057228, -0.06186291575431824, 0.024767344817519188, -0.0328589528799057, -0.02096838690340519, -0.02454906515777111, -0.06666544079780579, 0.043719567358493805, 0.04054749384522438, 0.004215552005916834, -0.00310079799965024, -0.01437204796820879, 0.013410620391368866, -0.07008171826601028, -0.032381828874349594, 0.005314453970640898, 0.023955263197422028, 0.010318901389837265, 0.024323517456650734, 0.020755425095558167, -0.04700832441449165, 0.0008366373367607594, 0.009973208419978619, -0.03547727316617966, -0.04926861822605133, -0.026693200692534447, -0.030501578003168106, -0.025140011683106422, 0.022069470956921577, 0.03563976287841797, -0.02956334874033928, 0.030472934246063232, 0.04584280401468277, -0.03614934906363487, 0.061963826417922974, -0.02906676009297371, -0.05048934370279312, -0.015465915203094482, -0.009597055613994598, -0.02195947989821434, 0.00009871603106148541, 0.006118541117757559, 0.03522655367851257, 0.040148042142391205, 0.0722682923078537, -0.00604093587026, 0.012892288155853748, 0.028939399868249893, -0.009206575341522694, 0.015844028443098068, -0.0075943139381706715, -0.04171343147754669, 0.008279494009912014, -0.004722007550299168, -0.012478849850594997, -0.0014278903836384416, 0.03268706798553467, 0.008096217177808285, -0.027706153690814972, -0.05618888884782791, 0.0357198528945446, -0.027014434337615967, 0.006082581821829081, -0.047771353274583817, -0.0133820790797472, 0.05662501975893974, -0.01167790312319994, 0.03801630437374115, -0.026328036561608315, 0.02212069369852543, 0.032980501651763916, 0.02239190600812435, -0.04832867160439491, 0.018423238769173622, -0.000035887915146304294, -0.011958048678934574, 0.017852576449513435, 0.013989061117172241, 0.03621320426464081, 0.013061312027275562, 0.002244269009679556, -0.007833545096218586, -0.010237607173621655, 0.00016313161177095026, 0.048502858728170395, 0.010630620643496513, 0.020524831488728523, 0.009432210586965084, -0.016272766515612602, -0.06905199587345123, -0.0306136142462492, 0.012869619764387608, -0.02706059440970421, 0.020170772448182106, -0.02406751736998558, -0.06181718036532402, 0.007066323421895504, 0.013834541663527489, 0.00011673136032186449, 0.008594793267548084, 0.006556190084666014, -0.025786519050598145, -0.00012402894208207726, 0.02318584732711315, 0.055826857686042786, -0.041309110820293427, 0.01887531951069832, 0.01046135276556015, 0.01606249064207077, 0.007530428934842348, 0.018928103148937225, -0.045470427721738815, -0.019021596759557724, -0.026934165507555008, -0.0048186094500124454, 0.001275279326364398, -0.017330877482891083, -0.009175839833915234, 0.005011416040360928, 0.00457130977883935, -0.02885398082435131, 0.0003974284918513149, 0.02145261876285076, -0.04060705378651619, -0.017101064324378967, 0.0029969103634357452, -0.022029167041182518, 0.002824127906933427, 0.044810980558395386, -0.04629048332571983, 0.026512105017900467, -0.01766972616314888, 0.025256728753447533, 0.014233525842428207, 0.014634503051638603, -0.02389371022582054, -0.04914861172437668, 0.016131691634655, -0.03513178601861, 0.05794435366988182, 0.000026351168344262987, -0.005942504853010178, 0.021626535803079605, -0.002793316962197423, -0.05396493151783943, -0.006644990295171738, 0.003728478914126754, -0.030592598021030426, 0.015274269506335258, 0.05453883111476898, -0.04091917723417282, 0.03554585203528404, -0.0029221209697425365, -0.012914021499454975, 0.06275016069412231, -0.017783595249056816, -0.047351691871881485, -0.004004964139312506, -0.017772415652871132, 0.00481776986271143, 0.02728784643113613, 0.034875497221946716, -0.029257001355290413, 0.04892804101109505, 0.06342878192663193, 0.04589343070983887, 0.04840373620390892, 0.008173536509275436, 0.03784980997443199, -0.055074866861104965, -0.016632789745926857, -0.08284864574670792, -0.0017382059013471007, 0.018404150381684303, -0.009144697338342667, -0.044802047312259674, -0.012230024673044682, -0.014784514904022217, 0.035055071115493774, -0.058920055627822876, -0.014047499746084213, 0.02556237019598484, 0.015614615753293037, 0.027499770745635033, 0.015354122035205364, -0.0332222580909729, 0.0017826883122324944, 0.017695236951112747, 0.005489977542310953, -0.019589116796851158, -0.033973269164562225, 0.050067804753780365, 0.000009611891982785892, 0.02576306276023388, -0.019253162667155266, -0.010348983108997345, 0.05426473170518875, 0.029283298179507256, 0.01982186920940876, 0.056809958070516586, -0.017251325771212578, 0.030026579275727272, 0.015328336507081985, -0.029519733041524887, -0.021693097427487373, 0.042266055941581726, -0.013297198340296745, -0.05121057480573654, 0.023492921143770218, 0.033829160034656525, 0.008380018174648285, -0.06425420939922333, 0.05456812307238579, 0.017369898036122322, -0.005267095752060413, -0.025220952928066254, 0.02341560088098049, -0.05104933679103851, 0.05102446675300598, -0.01591968536376953, -0.027596907690167427, -0.04816671088337898, 0.04694715887308121, -0.019671844318509102, -0.02571113035082817, 0.04048805311322212, -0.010370995849370956, -0.026977479457855225, 0.00932053942233324, 0.10430537909269333, 0.07628196477890015, 0.043543800711631775, 0.026419365778565407, 0.04792671650648117, -0.030509088188409805, -0.029624614864587784, 0.004726960323750973, -0.026218168437480927, 0.013025670312345028, 0.012877954170107841, 0.020573005080223083, 0.07250954210758209, 0.011644785292446613, 0.07162724435329437, -0.030613107606768608, 0.013047496788203716, -0.02710368111729622, 0.021888282150030136, 0.05351617932319641, 0.07298214733600616, 0.01594478264451027, 0.065281942486763, 0.008171523921191692, -0.03049635700881481, 0.02616795338690281, 0.018473340198397636, 0.007878015749156475, -0.005173553247004747, -0.012759977951645851, -0.015949701890349388, 0.060779932886362076, 0.03729560226202011, 0.05946844443678856, 0.013064858503639698, -0.01670847088098526, 0.01784706301987171, 0.05609974265098572, 0.014630448073148727, 0.02074970118701458, -0.050042927265167236, -0.03201933577656746, -0.02073848247528076, -0.0496860146522522, -0.034302953630685806, -0.00006640335050178692, -0.027941826730966568, 0.04874609410762787, -0.026036137714982033, -0.0025435297284275293, -0.006895013619214296, 0.013514657504856586, -0.026025941595435143, -0.04885965958237648, -0.052199430763721466, -0.039067331701517105, -0.07466486841440201, -0.002255492378026247, -0.0023086443543434143, -0.04006436467170715, -0.012431247159838676, -0.04622868075966835, -0.0028276322409510612, -0.05462107062339783, 0.02385704219341278, -0.02856820449233055, -0.03151152655482292, 0.0020318098831921816, 0.023388251662254333, 0.0530865378677845, 0.02711653709411621, 0.04191061481833458, -0.012069419026374817, 0.00509902136400342, 0.008045682683587074, -0.009737908840179443, 0.04622682183980942, 0.00011431375605752692, 0.0056993067264556885, -0.07478168606758118, 0.011032011359930038, 0.02741033397614956, 0.041309162974357605, -0.08751188218593597, 0.014468175359070301, 0.050524868071079254, -0.013198801316320896, 0.00391352316364646, 0.001696392660960555, -0.013368275947868824, -0.002251049969345331, -0.0023366790264844894, 0.0007996097556315362, 0.026646506041288376, 0.03946869820356369, -0.03494967892765999, 0.08378377556800842, 0.03483801707625389, 0.013628941029310226, -0.005774044897407293, -0.007369029801338911, -0.03612251952290535, 0.03447209671139717, -0.028976093977689743, -0.014963412657380104, -0.028845392167568207, -0.06682585179805756, -0.017754079774022102, -0.023316355422139168, -0.020157018676400185, -0.010408854112029076, 0.01071644015610218, 0.05421217530965805, -0.08057434111833572, 0.0563669353723526, -0.02151075005531311, 0.011930403299629688, -0.03141726925969124, -0.026582689955830574, 0.015295835211873055, 0.058376919478178024, 0.023777566850185394, 0.005848830100148916, 0.013706307858228683, -0.037037335336208344, -0.0024796398356556892, -0.016713790595531464, 0.007497631479054689, 0.030660532414913177, -0.013820558786392212, 0.04246531426906586 ]
[ -0.06524419784545898, -0.029948661103844643, -0.022140882909297943, -0.015022240579128265, -0.0007119360379874706, -0.04793167486786842, 0.034339990466833115, 0.026399211958050728, -0.0000912220639293082, -0.03410007804632187, 0.010845583863556385, -0.07635793834924698, 0.013619646430015564, -0.026533134281635284, 0.07084784656763077, 0.0034382680896669626, -0.040118418633937836, -0.025183236226439476, -0.060029271990060806, -0.02711290493607521, 0.018258044496178627, -0.027740567922592163, -0.026644796133041382, -0.022019874304533005, 0.02987409010529518, 0.0808124914765358, 0.03949129953980446, -0.019795095548033714, -0.0007486235117539763, -0.24499589204788208, -0.03125565126538277, 0.00453165965154767, 0.011842130683362484, -0.014847535640001297, 0.0013239339459687471, 0.06605430692434311, 0.02127019688487053, 0.0082554891705513, 0.007879737764596939, 0.07524093985557556, 0.049256131052970886, 0.01066950336098671, -0.025641772896051407, -0.0021097224671393633, -0.022896641865372658, -0.01042955182492733, -0.04858478158712387, 0.005125940311700106, -0.008230705745518208, -0.0026144389994442463, -0.07879940420389175, 0.010494436137378216, 0.007554522715508938, 0.012966178357601166, 0.010726258158683777, 0.050162315368652344, 0.0682700127363205, 0.08807945996522903, 0.03102673590183258, 0.03883693739771843, 0.0244002602994442, -0.003577413270249963, -0.1334138661623001, 0.12445224076509476, -0.0038049391005188227, 0.04578165337443352, -0.066501185297966, -0.051225170493125916, -0.047448839992284775, 0.07248302549123764, -0.021057413890957832, -0.002049125963822007, -0.04140854254364967, 0.0645020604133606, 0.01782948710024357, -0.05622125416994095, -0.0157025046646595, 0.020474271848797798, 0.057370781898498535, -0.0340682752430439, -0.005006263963878155, -0.03633561357855797, -0.021059110760688782, -0.00799189880490303, -0.01600114069879055, 0.0041497694328427315, -0.03622215613722801, 0.054974716156721115, -0.0019401571480557323, -0.018812015652656555, -0.002458837814629078, -0.05976244434714317, 0.011100055649876595, 0.07318860292434692, -0.0692627876996994, 0.015096541494131088, 0.0003648854326456785, 0.022419821470975876, 0.002234197687357664, 0.3817143738269806, -0.05251267924904823, -0.001912022940814495, 0.029201144352555275, 0.05558209493756294, -0.024304572492837906, -0.001965291565284133, -0.028741370886564255, -0.053611841052770615, 0.0022842171601951122, -0.03891190141439438, -0.02255382388830185, -0.027409985661506653, 0.07133224606513977, -0.06575101613998413, 0.002362708328291774, 0.004048319533467293, 0.051151201128959656, -0.036735933274030685, -0.004958080593496561, 0.010415296070277691, 0.006776486523449421, -0.00555706862360239, 0.05722533538937569, 0.04796343296766281, -0.005822120700031519, 0.0362633541226387, 0.049501411616802216, 0.0036381063982844353, 0.0279509499669075, 0.026848923414945602, 0.04848672077059746, -0.03977081552147865, -0.04509816691279411, 0.023859066888689995, 0.020358584821224213, 0.0022747137118130922, 0.026787154376506805, -0.03361186012625694, 0.016639383509755135, 0.005741615314036608, -0.005281983409076929, -0.03406486660242081, 0.01649552397429943, 0.014805519953370094, 0.002165928017348051, 0.12006396055221558, 0.002040938939899206, -0.04574954882264137, -0.033503443002700806, -0.038146741688251495, -0.007463989779353142, 0.059455208480358124, 0.0010675181401893497, -0.02041611261665821, -0.004716123919934034, 0.016732458025217056, 0.07623881101608276, -0.011486787348985672, -0.04717613011598587, 0.008807151578366756, -0.0353068932890892, -0.03351195529103279, -0.016484199091792107, 0.08584263175725937, 0.0012357670348137617, -0.042678941041231155, -0.05442506819963455, 0.0248726699501276, 0.017782248556613922, -0.08325396478176117, 0.012860684655606747, 0.01766742579638958, -0.004416530020534992, 0.04627440869808197, 0.04313617944717407, -0.02052217721939087, -0.0585421547293663, -0.028921471908688545, 0.010680150240659714, 0.014344760216772556, -0.0038394781295210123, -0.001995859434828162, -0.06783876568078995, -0.004104659426957369, -0.003680381691083312, -0.06348910182714462, -0.09768832474946976, 0.013238482177257538, -0.010570297949016094, -0.018959209322929382, -0.002510894788429141, 0.06332223117351532, -0.03304880112409592, 0.02434689924120903, -0.005452267825603485, -0.009740244597196579, 0.0022353946696966887, 0.017277095466852188, -0.02471992000937462, -0.04589388892054558, 0.00793647300451994, 0.05886780098080635, 0.011918379925191402, 0.019503004848957062, -0.09171658009290695, 0.015310833230614662, 0.03660768270492554, -0.061805471777915955, 0.055230092257261276, -0.004171489272266626, -0.023310404270887375, 0.006645850837230682, -0.02499816007912159, 0.013828149065375328, 0.004148584324866533, -0.03992171958088875, 0.01715131290256977, -0.02271856553852558, 0.011482411064207554, 0.036857809871435165, -0.041718851774930954, -0.0502491369843483, -0.03419819474220276, -0.3495590090751648, -0.023874379694461823, -0.0029774541035294533, 0.006440708879381418, -0.027452170848846436, -0.10759224742650986, -0.0066679478622972965, -0.0035253725945949554, -0.026880336925387383, 0.0733874961733818, 0.060924138873815536, 0.014387591741979122, -0.006934679113328457, -0.02193818800151348, 0.006841442082077265, 0.02266192063689232, -0.001678965869359672, -0.019059758633375168, -0.03448242321610451, 0.03109845332801342, -0.0153961768373847, -0.020863022655248642, -0.0386151485145092, -0.046157777309417725, -0.01035432331264019, -0.03311439976096153, 0.12089487165212631, -0.010180804878473282, 0.06568850576877594, -0.03098246082663536, 0.060140397399663925, -0.0025953585281968117, 0.008000539615750313, -0.05950750410556793, -0.02766866609454155, -0.04773508384823799, -0.014373425394296646, 0.015124727971851826, 0.04003416746854782, -0.029716674238443375, -0.01688200794160366, 0.006919331382960081, -0.062129583209753036, 0.007789581548422575, 0.05738039314746857, 0.014760603196918964, -0.03177987039089203, -0.04860816150903702, 0.009294276125729084, 0.051252581179142, 0.0016874619759619236, 0.01727467030286789, 0.0179907213896513, 0.022349568083882332, -0.014355762861669064, -0.018028201535344124, -0.02712094411253929, -0.026311613619327545, -0.020950201898813248, -0.022722575813531876, 0.024284156039357185, 0.08977605402469635, 0.06347291171550751, -0.016461670398712158, -0.009653763845562935, -0.029482724145054817, 0.006070783361792564, 0.0029377900063991547, 0.008658504113554955, 0.0171966589987278, -0.03164789080619812, 0.10798738151788712, -0.01318283099681139, -0.002972429385408759, 0.0019524035742506385, 0.05705796182155609, -0.026702463626861572, 0.06144309043884277, 0.04886598140001297, 0.00973562616854906, 0.05935245379805565, 0.030643979087471962, 0.0000411928012908902, 0.006161898374557495, -0.004897679202258587, 0.030206134542822838, -0.023196548223495483, 0.017844850197434425, 0.044775042682886124, -0.017233479768037796, -0.014993217773735523, 0.015612144023180008, 0.02559232898056507, -0.022495565935969353, 0.08173757791519165, -0.002377142896875739, -0.2466944009065628, 0.015202709473669529, 0.0706382766366005, 0.011739165522158146, -0.008261119946837425, -0.006486345082521439, 0.023390308022499084, -0.08559251576662064, -0.0035048883873969316, -0.026294566690921783, 0.032676879316568375, 0.03179584816098213, 0.038788747042417526, 0.010855261236429214, 0.002955058356747031, 0.0006981241749599576, 0.09323500841856003, 0.022143740206956863, 0.016867859289050102, -0.005703259725123644, 0.018818823620676994, -0.02052340842783451, 0.219390869140625, 0.011240019463002682, 0.015601231716573238, 0.012429595924913883, -0.01876104436814785, 0.011983067728579044, 0.03502250090241432, 0.06453070789575577, 0.013512969948351383, 0.0002392955357208848, 0.05194338411092758, 0.0007289506029337645, 0.04146680235862732, -0.013880513608455658, -0.00659200781956315, 0.03125825524330139, 0.03406199812889099, -0.0033397155348211527, -0.06011314317584038, -0.001087311189621687, -0.07735166698694229, 0.047800663858652115, 0.041376903653144836, -0.0019972652662545443, -0.016051121056079865, -0.07603204995393753, -0.07111041992902756, 0.02161627635359764, -0.011089203879237175, -0.013155424036085606, -0.02935502491891384, -0.019877690821886063, -0.003199190367013216, 0.04444863647222519, 0.005263390485197306, -0.026546314358711243, -0.021989965811371803, 0.01393100619316101, 0.018849490210413933, -0.042143046855926514, 0.09364820271730423, 0.012762341648340225, -0.011248459108173847 ]
[ -0.01816924288868904, -0.014946162700653076, -0.013949165120720863, 0.053187161684036255, 0.017978506162762642, 0.015424461103975773, -0.012274379841983318, 0.04479089006781578, -0.0724136009812355, -0.03278711810708046, -0.0017452770844101906, -0.05427491292357445, 0.026371976360678673, -0.014361406676471233, -0.01258300431072712, 0.0049840533174574375, 0.02149694785475731, 0.018655046820640564, 0.025243032723665237, -0.08940475434064865, -0.030716868117451668, 0.028661878779530525, 0.009615929797291756, 0.0386992022395134, 0.009475074708461761, 0.052494920790195465, -0.050132956355810165, -0.011348523199558258, 0.006991925183683634, -0.12131944298744202, -0.03754870221018791, 0.00960880983620882, 0.04384160786867142, 0.033400386571884155, 0.0014316351152956486, 0.07613173872232437, 0.008149497210979462, 0.0242973230779171, -0.044354286044836044, -0.02437247708439827, 0.013133714906871319, 0.012829027138650417, 0.006530654616653919, -0.034919172525405884, -0.011086808517575264, 0.005468362011015415, -0.00405622273683548, -0.03391334041953087, -0.004620923660695553, 0.022571245208382607, -0.05162812024354935, 0.04856177046895027, 0.00312775163911283, 0.02839616686105728, 0.011299596168100834, 0.022422239184379578, -0.029871074482798576, -0.08483029156923294, -0.010557972826063633, -0.06411376595497131, -0.037992361932992935, 0.00027593891718424857, -0.026305770501494408, 0.0002774762688204646, -0.03325976803898811, 0.022679826244711876, 0.009001979604363441, -0.015623589977622032, 0.04765044525265694, -0.018585020676255226, 0.008027068339288235, 0.02161487750709057, -0.042469799518585205, -0.052107300609350204, 0.002801045775413513, -0.005051661282777786, 0.04533810541033745, -0.04619843512773514, 0.03189786523580551, 0.0016940117347985506, 0.002218599896878004, -0.026806140318512917, 0.05232668295502663, 0.005030335392802954, -0.03300453722476959, -0.016123302280902863, -0.02406865730881691, -0.009462829679250717, 0.03590012714266777, -0.05420060083270073, -0.02089434117078781, 0.04433313012123108, 0.011214500293135643, 0.029627462849020958, -0.013816051185131073, 0.0023192795924842358, -0.022754810750484467, 0.00925220176577568, 0.022517560049891472, 0.772261381149292, 0.003896441776305437, 0.053611934185028076, 0.004061027895659208, 0.012250854633748531, -0.022386936470866203, -0.026244336739182472, -0.00041963436524383724, -0.023165499791502953, -0.007655985653400421, -0.031420134007930756, 0.06241033598780632, 0.0011620703153312206, 0.05351365730166435, -0.030827725306153297, 0.01533350721001625, 0.01700260117650032, 0.0501268245279789, -0.009557198733091354, -0.02546437457203865, 0.023564763367176056, 0.02379450760781765, -0.039712969213724136, 0.02470989339053631, 0.013083349913358688, 0.03856977820396423, -0.1946040242910385, -0.04587836191058159, -7.478079963488759e-33, 0.03267943486571312, -0.04944572225213051, 0.009044107981026173, -0.0019497994799166918, 0.05425548925995827, -0.011843973770737648, 0.013730054721236229, 0.023911945521831512, -0.04705607146024704, -0.004293777048587799, -0.0024765513371676207, -0.002017995109781623, -0.026154685765504837, -0.004763971082866192, 0.05106358230113983, 0.011277569457888603, 0.015603764913976192, 0.04088256508111954, -0.047145869582891464, -0.026158832013607025, -0.006584953982383013, 0.04069996252655983, -0.009352964349091053, 0.015366366133093834, 0.0046936748549342155, 0.04856787994503975, 0.013058274053037167, -0.025427956134080887, 0.009429952129721642, -0.04201662912964821, -0.00042992213275283575, 0.027157962322235107, -0.012935548089444637, 0.021015966311097145, 0.030428750440478325, -0.014624839648604393, -0.005130593199282885, 0.010969751514494419, -0.01796356588602066, 0.0074828388169407845, -0.026214566081762314, 0.041652970016002655, -0.02933311089873314, -0.08456043154001236, 0.03179806470870972, -0.037223488092422485, 0.02714427374303341, 0.042441245168447495, 0.030533181503415108, 0.05047290399670601, 0.06289637088775635, 0.0060790167190134525, -0.012942183762788773, 0.025654660537838936, -0.0163574256002903, -0.002713453257456422, 0.0006009648786857724, 0.008441620506346226, 0.04602251201868057, 0.06909393519163132, -0.050825413316488266, 0.0038340003229677677, -0.014764105901122093, 0.03873210400342941, 0.022723011672496796, 0.0021518452558666468, -0.0040243081748485565, 0.03857872635126114, 0.01479381788522005, 0.08356000483036041, -0.03185443952679634, 0.009180362336337566, -0.033482909202575684, 0.0036235637962818146, 0.032674700021743774, -0.026941955089569092, -0.02293635904788971, -0.074395552277565, -0.021491870284080505, 0.025117143988609314, 0.023291511461138725, -0.058473680168390274, -0.03194407746195793, 0.017098665237426758, -0.03717861324548721, 0.01483236812055111, 0.03896646201610565, -0.002130945445969701, -0.017493175342679024, -0.02874811366200447, -0.005520710255950689, 0.04305870085954666, 0.022701861336827278, -0.025773687288165092, -0.019177738577127457, 7.681537464464958e-33, 0.002459947718307376, -0.015599780716001987, -0.021244319155812263, 0.03405395895242691, -0.00861196219921112, -0.03013588674366474, 0.04467703774571419, 0.024649979546666145, 0.023525549098849297, 0.07084844261407852, 0.012792656198143959, -0.011175683699548244, 0.008524294942617416, -0.009484824724495411, 0.02783951535820961, -0.003154682694002986, 0.01709502562880516, 0.02366430126130581, 0.0035305521450936794, 0.025936000049114227, -0.004507598467171192, -0.01843748427927494, -0.0007855427684262395, 0.01418612152338028, 0.016124708577990532, 0.05224362760782242, -0.023564087226986885, -0.011263453401625156, -0.016691632568836212, 0.00014921773981768638, -0.015321338549256325, -0.002437943359836936, 0.021386709064245224, -0.0268618892878294, 0.013418261893093586, 0.019787130877375603, 0.008953548036515713, 0.004102165345102549, 0.016422228887677193, -0.0405779704451561, -0.005049899220466614, 0.016031356528401375, -0.022806620225310326, -0.009925911203026772, 0.005556989461183548, -0.009527112357318401, 0.008397331461310387, -0.0015213434817269444, 0.01696876809000969, -0.007074739318341017, -0.00013678944378625602, -0.02165062539279461, 0.024506427347660065, 0.006188871338963509, 0.0036250364501029253, 0.004326257389038801, 0.016258982941508293, 0.04376737400889397, -0.04601140320301056, -0.03158412501215935, -0.02078212797641754, -0.030896399170160294, -0.008666287176311016, -0.0011568341869860888, -0.018602846190333366, -0.0236916933208704, -0.028515081852674484, -0.07264349609613419, -0.008163217455148697, 0.02240031771361828, -0.04455458000302315, 0.011270877905189991, -0.02052786573767662, 0.03633825108408928, -0.042160991579294205, -0.0011885486310347915, -0.02047857455909252, 0.014711109921336174, 0.061966706067323685, 0.039407022297382355, 0.002226122422143817, -0.018987154588103294, 0.05948130041360855, 0.007761454675346613, 0.019848477095365524, -0.03661138936877251, 0.010259277187287807, 0.04211350157856941, 0.06709158420562744, 0.008290220983326435, -0.03238653764128685, -0.04446195438504219, -0.014768830500543118, -0.02316019870340824, -0.036367472261190414, -1.2575778640666613e-8, -0.0030278144404292107, -0.05912832170724869, -0.05575326085090637, 0.05156424269080162, 0.003925482276827097, 0.03481537103652954, -0.01729443483054638, -0.002194602508097887, -0.01163727231323719, 0.0033821468241512775, 0.04171888157725334, 0.0322156623005867, -0.023040054365992546, -0.002921035047620535, 0.03422341123223305, -0.03157408535480499, 0.034900251775979996, -0.012727885507047176, 0.02104005217552185, -0.006381683982908726, -0.04612892493605614, 0.012302173301577568, 0.009025311097502708, -0.005827670451253653, -0.0467851422727108, -0.03609972447156906, 0.05885274335741997, -0.0781145915389061, 0.00696166604757309, -0.021840542554855347, -0.015069094486534595, -0.049630988389253616, 0.010827728547155857, -0.0032790438272058964, -0.016228830441832542, -0.039017532020807266, -0.0004207489837426692, 0.04438493028283119, 0.048816606402397156, -0.006490055005997419, -0.011084817349910736, 0.021996786817908287, -0.007026899140328169, -0.030346674844622612, -0.018473627045750618, 0.00030873907962813973, -0.008579071611166, 0.0017301571788266301, 0.023045791313052177, 0.006069549825042486, 0.043857041746377945, -0.015272612683475018, 0.03541828691959381, -0.005211286712437868, 0.045016855001449585, 0.026124516502022743, 0.00808684527873993, -0.0567828044295311, -0.022672470659017563, -0.032075703144073486, 0.023578688502311707, -0.0010915526654571295, -0.019599352031946182, -0.04389471188187599 ]
haskell-using-qualified-imports-to-avoid-polluting-the-namespace
https://markhneedham.com/blog/2012/12/30/haskell-using-qualified-imports-to-avoid-polluting-the-namespace
false
2012-12-30 22:39:16
Haskell: Pattern matching a list
[ "haskell" ]
[ "Haskell" ]
As I mentioned http://www.markhneedham.com/blog/2012/12/29/haskell-initialising-a-map/[in a post yesterday] I've been converting a clustering algorithm into Haskell and I wanted to get the value from doing a bit wise or on two values in a list. I forgot it was possible to pattern match on lists until I http://www.markhneedham.com/blog/2012/04/15/haskell-a-simple-parsing-example-using-pattern-matching/[came across a post I wrote about 8 months ago] where I'd done this so my initial code looked like this: [source,haskell] ---- > import Data.Bits > map (\pair -> (pair !! 0) .|. (pair !! 1)) [[1,2], [3,4]] [3,7] ---- We can pattern match against the list like so: [source,haskell] ---- > map (\(x:y:_) -> x .|. y) [[1,2], [3,4]] [3,7] ---- Here +++<cite>+++x+++</cite>+++ takes the first value, +++<cite>+++y+++</cite>+++ takes the second value and the rest of the list is assigned to +++<cite>+++_+++</cite>+++ which we don't use in this case. There are loads of examples of pattern matching against different data structures in http://learnyouahaskell.com/syntax-in-functions[Learn You A Haskell] and hopefully next time I'll remember and won't write hideous code like the first example!
null
null
[ 0.008323322981595993, 0.010578739456832409, -0.023448757827281952, 0.021047599613666534, 0.06517019122838974, 0.042779915034770966, 0.01767776906490326, 0.018312014639377594, 0.025871457532048225, -0.015564030036330223, -0.0061675929464399815, -0.014060914516448975, -0.07045501470565796, 0.006972744129598141, -0.009495659731328487, 0.06233150511980057, 0.06393859535455704, -0.01666603609919548, -0.024979956448078156, 0.02375906892120838, 0.02604181319475174, 0.06964034587144852, -0.00023687824432272464, 0.017193490639328957, 0.029002677649259567, 0.01671433635056019, 0.02052108198404312, 0.009745859540998936, -0.030558094382286072, 0.017946239560842514, 0.04752964898943901, 0.02032516524195671, -0.0019276138627901673, -0.017087843269109726, 0.00983533263206482, 0.0055077639408409595, -0.0024397005327045918, -0.00527386786416173, 0.006534326821565628, 0.005565809551626444, -0.05551954731345177, 0.055148616433143616, -0.008299431763589382, 0.02450557053089142, -0.05128597468137741, -0.0026102603878825903, -0.07012747973203659, 0.006888341624289751, -0.02106042020022869, -0.005358039867132902, -0.057588204741477966, 0.03057880327105522, -0.010925814509391785, -0.0022595638874918222, -0.027992863208055496, 0.0499831847846508, 0.020095597952604294, -0.085878886282444, 0.042731985449790955, -0.00922398455440998, -0.004226995166391134, 0.0019275086233392358, 0.004487695172429085, 0.04081914946436882, 0.0038389847613871098, -0.017149243503808975, -0.0347847156226635, 0.04831872507929802, -0.04545829817652702, -0.016936693340539932, -0.006469493266195059, 0.013109447434544563, -0.005405203904956579, -0.027595562860369682, 0.0038089919835329056, -0.02555888704955578, -0.010051649995148182, 0.06497662514448166, 0.013721469789743423, 0.043326932936906815, -0.022335806861519814, 0.012006377801299095, 0.028762049973011017, 0.009338519535958767, 0.03533920273184776, -0.04000407084822655, -0.042537569999694824, -0.018596673384308815, -0.05992278456687927, 0.06700025498867035, 0.014358087442815304, -0.04698459059000015, 0.013180190697312355, -0.0026857138145715, 0.025658253580331802, 0.002139890566468239, 0.0053220815025269985, -0.001781738130375743, -0.006432564463466406, -0.023782042786478996, -0.03603753820061684, -0.02799460105597973, 0.022198854014277458, 0.007040275726467371, -0.07959616929292679, -0.03018343262374401, -0.009180567227303982, 0.00423069391399622, 0.017840154469013214, -0.0002435443311696872, -0.015111635439097881, -0.020231209695339203, 0.0034479100722819567, 0.019897036254405975, -0.08347287774085999, 0.061660490930080414, -0.0028819050639867783, -0.012291939929127693, -0.013212572783231735, 0.04456271603703499, 0.02973024547100067, 0.02098170481622219, 0.014694735407829285, 0.08071517944335938, 0.040173646062612534, 0.04907756671309471, 0.02796151302754879, 0.06729527562856674, -0.032894015312194824, -0.05516919121146202, -0.01169940922409296, 0.05391181260347366, -0.04172675684094429, 0.013742334209382534, -0.00021707512496504933, -0.030560292303562164, -0.04943286255002022, 0.024014636874198914, 0.041342321783304214, 0.0649312362074852, 0.013725674711167812, -0.02920656092464924, 0.03029658831655979, -0.008884614333510399, 0.011827697977423668, 0.012988495640456676, -0.01302346307784319, -0.0025963049847632647, -0.01715821400284767, 0.018480971455574036, 0.022207899019122124, 0.04701794311404228, 0.04069114476442337, -0.018566790968179703, 0.014233575202524662, 0.07321930676698685, 0.011871159076690674, 0.0293258186429739, -0.013202290050685406, 0.03728858381509781, 0.026328250765800476, 0.03189734369516373, 0.03804342821240425, 0.03295459970831871, 0.011099172756075859, -0.022040780633687973, -0.012423804961144924, 0.04638199880719185, 0.000030342167519847862, -0.006105621811002493, -0.02051396667957306, -0.04196135699748993, 0.06205885484814644, -0.027615990489721298, 0.01898224465548992, 0.00367937539704144, 0.07354949414730072, 0.00679504731670022, 0.0509965717792511, -0.00532488850876689, -0.07798466086387634, 0.03119240142405033, 0.008689104579389095, 0.032718684524297714, 0.012505345977842808, 0.0027225033845752478, 0.06577340513467789, 0.034695275127887726, 0.02642923779785633, 0.029432203620672226, -0.047912776470184326, -0.07022672891616821, -0.019660193473100662, -0.03103894554078579, 0.07812720537185669, -0.04435978829860687, -0.008800899609923363, 0.05601586401462555, 0.010466361418366432, 0.0370134599506855, 0.016795646399259567, -0.01828048750758171, 0.019708381965756416, -0.02681424282491207, -0.032074809074401855, 0.053133122622966766, 0.050018709152936935, -0.010012367740273476, -0.04911236837506294, 0.002520907437428832, 0.013177234679460526, 0.007328159175813198, 0.030292648822069168, -0.029404640197753906, 0.04374632239341736, 0.04377780854701996, 0.02062327228486538, 0.002738604787737131, 0.05700156092643738, -0.05588706210255623, 0.0262715145945549, 0.022622166201472282, -0.020364534109830856, -0.012267244048416615, 0.01783272624015808, 0.13992033898830414, 0.07298567146062851, -0.027823232114315033, -0.024499868974089622, 0.012690344825387001, -0.01564749889075756, -0.018038712441921234, 0.004749881103634834, 0.0005859919474460185, -0.026660174131393433, -0.004160964861512184, -0.037506453692913055, -0.02899462729692459, 0.010664542205631733, -0.016064289957284927, -0.01394642237573862, 0.07843392342329025, -0.03289732336997986, 0.03220761567354202, -0.006585623137652874, -0.037575483322143555, -0.009909549728035927, -0.04265480861067772, -0.05573573336005211, 0.0048348126001656055, -0.01974729634821415, -0.015721099451184273, 0.06395340710878372, -0.04079917445778847, -0.052109796553850174, -0.03295081853866577, -0.04697567597031593, 0.021219898015260696, 0.05814148113131523, 0.061223652213811874, -0.013477683998644352, 0.05831403657793999, -0.03886030986905098, 0.006928198505192995, -0.0064909555949270725, -0.04402156174182892, -0.05242382362484932, -0.010634131729602814, 0.01822512410581112, 0.02971097081899643, 0.023509196937084198, 0.028997905552387238, 0.04231603816151619, -0.008443924598395824, 0.0010648256866261363, -0.019538186490535736, 0.016745319589972496, -0.0008699355530552566, -0.03857118636369705, -0.030218489468097687, -0.03478805348277092, 0.06331737339496613, -0.04114051163196564, -0.01834551803767681, -0.007984799332916737, -0.03288988396525383, 0.059124987572431564, -0.051853377372026443, -0.04425223544239998, 0.0036912562791258097, 0.03339574113488197, 0.04490220546722412, -0.032567162066698074, -0.001683809095993638, 0.05475662276148796, 0.03231443464756012, 0.005855647847056389, 0.03867894038558006, 0.0016741999424993992, 0.030754156410694122, -0.009518105536699295, 0.05297747254371643, 0.04086770489811897, 0.017629550769925117, -0.020996900275349617, -0.044349394738674164, -0.0037783770821988583, -0.00326320668682456, -0.27983611822128296, 0.02432577684521675, -0.028077509254217148, -0.026213860139250755, 0.008162393234670162, -0.028532113879919052, -0.016490938141942024, -0.033103931695222855, 0.002510266611352563, 0.0391361266374588, -0.03894643858075142, -0.04428097978234291, -0.0600796714425087, 0.049878042191267014, 0.004943354520946741, 0.00012658470950555056, 0.006604969967156649, -0.04135638847947121, -0.004648507572710514, 0.04156879335641861, -0.010051208548247814, -0.06278745830059052, 0.009128752164542675, 0.06876078248023987, -0.017646273598074913, 0.07142941653728485, -0.07772781699895859, 0.02005595900118351, -0.06872880458831787, -0.025369983166456223, -0.03620266169309616, -0.007582276128232479, 0.010110423900187016, -0.02783188782632351, -0.018379289656877518, -0.027371728792786598, 0.019977416843175888, 0.007404371164739132, 0.008432630449533463, 0.06447362154722214, -0.03610095754265785, -0.014704939909279346, 0.008903862908482552, -0.010360204614698887, 0.07778438180685043, -0.01781413145363331, -0.05835847929120064, -0.024777309969067574, -0.025332728400826454, 0.056468043476343155, -0.05225822329521179, -0.04043705761432648, -0.013822968117892742, 0.0329500213265419, -0.02166992425918579, -0.020358078181743622, -0.003273620968684554, -0.007297317031770945, -0.04520083963871002, -0.008237641304731369, -0.03370657190680504, -0.035417839884757996, -0.006666440051048994, -0.0589948408305645, -0.011626329272985458, -0.046082060784101486, -0.07778958976268768, -0.00947859138250351, 0.0583508275449276, 0.014740253798663616, 0.00027539211441762745, -0.018384721130132675, -0.029184332117438316, -0.11240237951278687, -0.02505815401673317, -0.004397477488964796, -0.02397606149315834, -0.017732083797454834, 0.014626719988882542, 0.05035734549164772, -0.040933992713689804, -0.07273618131875992, 0.0498521625995636, 0.006350501906126738, 0.036241479218006134, -0.02647627890110016, -0.014779352582991123, -0.017761511728167534, -0.010568558238446712, -0.01160432305186987, 0.03750814497470856, -0.007405364420264959, -0.017396071925759315, 0.007386200129985809, 0.01875859871506691, 0.03135347366333008, 0.02899213507771492, -0.011201361194252968, 0.032036926597356796, 0.03622570261359215, 0.027250079438090324, -0.05353542044758797, 0.04683887958526611, -0.03913281857967377, -0.023472337052226067, 0.018822647631168365, -0.040074482560157776, 0.02108640968799591, 0.03771595284342766, -0.01519700139760971, -0.016244789585471153, -0.05172396078705788, 0.0034196600317955017, -0.06547989696264267, -0.022578228265047073, -0.03708093240857124, 0.016175489872694016, 0.012175682932138443, 0.024677220731973648, 0.009318479336798191, -0.0630464032292366, -0.01075723860412836, -0.009388381615281105, -0.018876630812883377, -0.05016826465725899, -0.04369222745299339, -0.021099604666233063, -0.02843879908323288, 0.010326558724045753, 0.04371221736073494, 0.009054351598024368, 0.037203606218099594, 0.033193349838256836, -0.03006390854716301, 0.03161799535155296, -0.027499500662088394, -0.018285555765032768, 0.0002006619906751439, -0.03125627711415291, -0.017195578664541245, 0.027304358780384064, -0.016497300937771797, 0.02244322933256626, 0.05415205657482147, 0.034494537860155106, -0.010480314493179321, 0.020617058500647545, -0.019737953320145607, -0.0032496133353561163, 0.021229006350040436, -0.024129947647452354, -0.03954972326755524, 0.017914647236466408, -0.013596603646874428, -0.0128023074939847, 0.011129575781524181, 0.04760603606700897, -0.0031939868349581957, -0.06087222322821617, -0.05041813477873802, 0.03486026078462601, -0.03776533529162407, -0.018174802884459496, -0.03387162461876869, 0.004040995612740517, 0.06379774957895279, -0.056925736367702484, 0.06190889701247215, -0.038870275020599365, 0.033960334956645966, 0.013385497033596039, 0.020410729572176933, -0.040652722120285034, 0.036919523030519485, -0.00893296767026186, -0.033407360315322876, 0.024475250393152237, 0.03553062304854393, 0.03461024537682533, -0.003732133423909545, -0.02786346524953842, -0.007510974071919918, -0.02140410616993904, 0.02590402588248253, 0.04352502524852753, 0.014078018255531788, 0.01404409110546112, -0.0021697203628718853, -0.029230523854494095, -0.04754326865077019, -0.024981895461678505, -0.029412027448415756, -0.005885799881070852, 0.037698931992053986, -0.03280860185623169, -0.056289516389369965, 0.011477642692625523, -0.011531321331858635, -0.013127793557941914, 0.024702416732907295, 0.0031171906739473343, -0.014357343316078186, -0.0007515609031543136, 0.010684487409889698, 0.07917694747447968, -0.05091392621397972, -0.0004647997848223895, 0.009007925167679787, 0.0052311052568256855, 0.022386156022548676, 0.04568542540073395, -0.06404950469732285, 0.00043367798207327724, -0.0007974793552421033, 0.0077418177388608456, -0.04152786731719971, -0.031060107052326202, -0.0070000141859054565, 0.022152867168188095, 0.001668818760663271, -0.026778660714626312, 0.012466938234865665, 0.00018394592916592956, -0.014083017595112324, -0.03258420154452324, 0.0064711663872003555, -0.04035264998674393, -0.01685526594519615, 0.03826740011572838, -0.049812909215688705, 0.034860122948884964, -0.04058973863720894, 0.021157629787921906, 0.031331855803728104, 0.004184945486485958, -0.023088151589035988, -0.06268684566020966, 0.010961022228002548, -0.0362146757543087, 0.0566093884408474, 0.006421580910682678, -0.03203747048974037, -0.014085972681641579, 0.012686427682638168, -0.03853050619363785, 0.008377124555408955, 0.010310678742825985, -0.04086502268910408, 0.01246592402458191, 0.04492181912064552, -0.02889765426516533, 0.03639959171414375, 0.0005098581896163523, -0.04477783292531967, 0.04898301139473915, -0.009053022600710392, -0.04760480672121048, -0.009072703309357166, -0.03991950675845146, 0.00928241666406393, -0.005962421651929617, 0.027112474665045738, -0.038637254387140274, 0.030505985021591187, 0.03466128557920456, 0.032287124544382095, 0.02839791215956211, -0.005112629383802414, 0.03167715668678284, -0.03296195715665817, -0.01764792576432228, -0.0974569022655487, 0.0015540056629106402, 0.0157486405223608, 0.01662687212228775, -0.028982434421777725, -0.010240874253213406, -0.01932399719953537, 0.009390017949044704, -0.06057414785027504, -0.021004250273108482, 0.03170430287718773, 0.008288975805044174, 0.02560655027627945, 0.022397316992282867, -0.03994453325867653, 0.012289428152143955, 0.03136158734560013, -0.01617145910859108, -0.017124244943261147, -0.04786793887615204, 0.045679301023483276, -0.003181008854880929, 0.0352538526058197, 0.00949978269636631, 0.0025826282799243927, 0.04956294596195221, 0.05322416499257088, 0.02154725417494774, 0.05136754363775253, -0.027880867943167686, 0.023424802348017693, 0.02192317135632038, -0.0060694292187690735, -0.005819846410304308, 0.022487005218863487, -0.025625314563512802, -0.07038755714893341, 0.03109820745885372, 0.007069457788020372, -0.02951997146010399, -0.027314625680446625, 0.07623409479856491, 0.025149013847112656, -0.03877491503953934, -0.04700351506471634, 0.02347138524055481, -0.05303006246685982, 0.018523965030908585, 0.00786579679697752, 0.002520501147955656, -0.04785177856683731, 0.04575920104980469, 0.00986417941749096, 0.020782217383384705, 0.052241161465644836, 0.016608433797955513, -0.03287309408187866, 0.02297774702310562, 0.09795036166906357, 0.10819287598133087, 0.0324096642434597, 0.018994126468896866, 0.043921466916799545, -0.03584950417280197, -0.03526673465967178, 0.011130972765386105, -0.03450159355998039, 0.006184145342558622, -0.004525513853877783, 0.028168924152851105, 0.08473357558250427, -0.0267186276614666, 0.059997785836458206, -0.03550796955823898, -0.0032426391262561083, -0.0030329900328069925, 0.009749791584908962, 0.05920754745602608, 0.07362837344408035, 0.009441851638257504, 0.05049280822277069, -0.004707752726972103, -0.04281730577349663, 0.025233715772628784, 0.005723100621253252, -0.008662465959787369, 0.00009782332926988602, -0.015154974535107613, 0.005918066017329693, 0.03940179944038391, 0.04046030342578888, 0.05580203980207443, -0.010105451568961143, 0.0024935638066381216, -0.003038650145754218, 0.014721894636750221, -0.010456976480782032, 0.007209077011793852, -0.03394335135817528, -0.03513047844171524, -0.002586119808256626, -0.02488604374229908, -0.01103907823562622, -0.026922347024083138, -0.049468815326690674, 0.03753945976495743, -0.026991212740540504, -0.007678059861063957, 0.014058788307011127, -0.003951008431613445, -0.03139536455273628, -0.04525209963321686, -0.04839920252561569, -0.03489658609032631, -0.08643397688865662, 0.006632104050368071, -0.019349355250597, -0.017184797674417496, -0.01730976812541485, -0.042916785925626755, -0.016460655257105827, -0.04717540740966797, 0.03833146020770073, -0.05402472987771034, -0.027941890060901642, 0.004204119089990854, 0.046622008085250854, 0.030994975939393044, 0.0410107783973217, 0.03410452604293823, -0.007418387569487095, -0.0030809894669800997, -0.0014481352409347892, -0.02479369379580021, 0.049833741039037704, 0.029015902429819107, -0.00849938951432705, -0.0899561271071434, -0.023623237386345863, 0.03565965220332146, 0.027307339012622833, -0.0891580879688263, -0.0008300152258016169, 0.003595073474571109, -0.0020295651629567146, 0.014805810526013374, -0.00843898393213749, -0.006946461275219917, -0.014979884028434753, -0.022197576239705086, -0.010452047921717167, -0.00798618234694004, 0.048290446400642395, -0.017170224338769913, 0.08428695797920227, -0.0020325619261711836, -0.03603114187717438, -0.035503871738910675, -0.014178304001688957, -0.019230850040912628, 0.03241345286369324, -0.02820783108472824, -0.04562677443027496, -0.007056336849927902, -0.05801668018102646, -0.02038242667913437, -0.02368391491472721, -0.02663232758641243, -0.04053812846541405, 0.014599856920540333, 0.03481200337409973, -0.06538312882184982, 0.07513027638196945, -0.02728903666138649, 0.04225929453969002, -0.029217807576060295, -0.031145110726356506, -0.019799161702394485, 0.02393641322851181, -0.010795271955430508, 0.011876295320689678, 0.016498379409313202, -0.05031123012304306, -0.00181516632437706, -0.00796580407768488, 0.007999937981367111, 0.002781512914225459, -0.02114219404757023, 0.015667635947465897 ]
[ -0.10107075423002243, -0.04025689512491226, -0.05205421522259712, -0.0036025429144501686, -0.009759096428751945, -0.03962657228112221, 0.007252267561852932, 0.031803909689188004, 0.022816594690084457, -0.03612082079052925, 0.0051666018553078175, -0.08506587892770767, 0.01553510781377554, -0.022299088537693024, 0.05395151302218437, 0.008660083636641502, -0.035070158541202545, -0.01982344128191471, -0.018880045041441917, 0.010586974211037159, 0.02079056203365326, -0.025396166369318962, -0.06432382017374039, -0.03659185767173767, 0.04210372641682625, 0.07826973497867584, 0.031103160232305527, -0.05351004749536514, 0.004561232402920723, -0.24844515323638916, -0.03178207203745842, 0.01865076832473278, 0.06518031656742096, -0.046788450330495834, 0.00666428916156292, 0.031551480293273926, 0.01509000826627016, 0.018548734486103058, -0.003147631185129285, 0.051418155431747437, 0.02258773148059845, 0.015189084224402905, -0.04004323482513428, -0.0032876022160053253, 0.009442289359867573, 0.0024310790468007326, -0.04330455884337425, 0.001340550254099071, -0.018236415460705757, -0.004382618702948093, -0.09152757376432419, -0.0015577112790197134, -0.014535734429955482, 0.005426616873592138, 0.014708535745739937, 0.04380028322339058, 0.050429146736860275, 0.09419238567352295, -0.004230335354804993, 0.009819265455007553, 0.011995437555015087, 0.011268500238656998, -0.11272311955690384, 0.11136169731616974, 0.02796589396893978, 0.06469045579433441, -0.01576811820268631, -0.0396578311920166, -0.03715430945158005, 0.08090510964393616, 0.01890256442129612, -0.008663766086101532, -0.011895804665982723, 0.052184320986270905, 0.02913033962249756, -0.04780091345310211, -0.02404841035604477, 0.02767699398100376, 0.0689537450671196, -0.0136739332228899, -0.0636168047785759, -0.03176278620958328, 0.01084873266518116, -0.005216112360358238, 0.0003840286226477474, -0.004728369880467653, -0.037952031940221786, 0.059600621461868286, 0.02053377404808998, -0.014924447052180767, 0.018062112852931023, -0.018476173281669617, -0.012459112331271172, 0.03081461787223816, -0.052809447050094604, 0.0014210734516382217, -0.0007453795406036079, 0.03487180173397064, 0.009380335919559002, 0.39518028497695923, -0.06738828867673874, 0.012442749924957752, 0.03164004534482956, 0.03702838718891144, -0.010250234045088291, -0.026562290266156197, -0.020649002864956856, -0.060038402676582336, -0.020407838746905327, -0.06490469723939896, -0.03670015186071396, -0.037422411143779755, 0.07882389426231384, -0.07504145801067352, 0.000673137023113668, -0.008342253044247627, 0.05680236220359802, 0.011603794991970062, 0.035938262939453125, 0.01542567741125822, -0.010404511354863644, 0.00033713169978000224, 0.012998748570680618, 0.01869739405810833, 0.00391150638461113, 0.03023846074938774, 0.010713676922023296, 0.03966093435883522, 0.03942439705133438, 0.03605423495173454, 0.042853955179452896, -0.026284459978342056, -0.060073066502809525, 0.012975245714187622, 0.0011515638325363398, 0.004198847804218531, 0.01532821822911501, -0.020534608513116837, 0.0005661764298565686, 0.009987182915210724, -0.0010003502247855067, -0.05493716895580292, 0.020704634487628937, 0.022421114146709442, 0.0093035027384758, 0.11625825613737106, -0.011565242893993855, -0.041035931557416916, -0.01987587846815586, -0.04100819677114487, -0.015285967849195004, 0.015675097703933716, -0.029560215771198273, -0.046560660004615784, -0.0009298200020566583, 0.04895685240626335, 0.08326785266399384, -0.016563108190894127, -0.05713236331939697, 0.01793668232858181, -0.03721148148179054, -0.018926825374364853, -0.03832846134901047, 0.0646522119641304, 0.021699508652091026, -0.06407193094491959, -0.012370076030492783, -0.024559278041124344, 0.01899503730237484, -0.08633957803249359, 0.009200581349432468, 0.029598258435726166, -0.00031826531630940735, 0.03527035936713219, 0.03595588356256485, -0.013569386675953865, -0.036731019616127014, -0.04599276930093765, 0.022934522479772568, 0.01914934441447258, -0.022627126425504684, 0.028333034366369247, -0.0683278739452362, 0.013352245092391968, -0.017148396000266075, -0.0658947005867958, -0.08510834723711014, 0.028189240023493767, -0.014421762898564339, -0.0060217492282390594, -0.001983005553483963, -0.0056896875612437725, -0.041639670729637146, 0.04201952740550041, -0.01761091686785221, -0.019998444244265556, 0.036306191235780716, -0.006131633184850216, -0.03034898266196251, -0.0009209518320858479, 0.008513947017490864, 0.060577213764190674, -0.007695106323808432, 0.02521868795156479, -0.06870681792497635, 0.009825212880969048, 0.06271342933177948, -0.0655725747346878, 0.06331023573875427, 0.03702696040272713, 0.0019575320184230804, -0.0046201893128454685, -0.046396177262067795, 0.0004606780712492764, -0.006284859497100115, -0.04696885868906975, 0.015619829297065735, -0.008916137740015984, 0.023702332749962807, 0.06050225347280502, -0.046229325234889984, -0.06544191390275955, -0.050791386514902115, -0.3331809341907501, -0.053358159959316254, -0.02582378312945366, 0.0038472707383334637, -0.021147647872567177, -0.07533740997314453, -0.012204387225210667, -0.00766395078971982, -0.04596439003944397, 0.057834457606077194, 0.05014052242040634, -0.016858847811818123, -0.006133232731372118, -0.05653258040547371, -0.012214924208819866, 0.005264456383883953, 0.015500342473387718, -0.020298702642321587, -0.02660464309155941, 0.04758462309837341, -0.0011404160177335143, -0.005051140207797289, -0.03269714117050171, -0.050031621009111404, -0.0024179539177566767, -0.04205915704369545, 0.11306773126125336, 0.012611701153218746, 0.03364015370607376, -0.03846728801727295, 0.03335880860686302, -0.01634363830089569, -0.018541477620601654, -0.04589120298624039, -0.016768813133239746, -0.02785412408411503, -0.0026266840286552906, 0.006616709753870964, 0.06418690085411072, -0.04120801016688347, -0.055135633796453476, -0.014948970638215542, -0.053214482963085175, -0.03016803227365017, -0.014203784987330437, 0.029246926307678223, 0.0016563119133934379, -0.04617549851536751, -0.012152100913226604, 0.08653754740953445, 0.02597963809967041, 0.027367735281586647, 0.020854560658335686, 0.006962108425796032, -0.0033129353541880846, -0.024381591007113457, -0.05427240580320358, -0.048921648412942886, -0.009891580790281296, -0.03827064484357834, 0.03324917331337929, 0.03736996278166771, 0.0316426046192646, -0.0040741609409451485, 0.00632057199254632, 0.010086173191666603, -0.011594891548156738, -0.01850249245762825, 0.0024784484412521124, 0.0019061898346990347, -0.023969057947397232, 0.09062159806489944, 0.0076951757073402405, -0.02109408751130104, 0.03467508405447006, 0.06441717594861984, -0.028632329776883125, 0.058113034814596176, 0.06875859946012497, 0.01740182377398014, 0.0437188558280468, -0.019525915384292603, 0.023008575662970543, -0.004980680998414755, -0.008367775939404964, 0.04950103163719177, 0.0044519612565636635, 0.02523333951830864, 0.03513125330209732, 0.018977422267198563, -0.003905715188011527, 0.009190661832690239, 0.027308069169521332, -0.01643109694123268, 0.05041927844285965, 0.0028679214883595705, -0.2522997260093689, 0.03334313631057739, 0.04546217992901802, 0.04683897644281387, -0.010045088827610016, 0.0007528152782469988, 0.05244888365268707, -0.07628626376390457, -0.006389209069311619, -0.040188346058130264, 0.0225700493901968, 0.06770195066928864, 0.03805091604590416, 0.0015961098251864314, 0.03340170532464981, -0.011690734885632992, 0.06431892514228821, -0.007901412434875965, 0.012882500886917114, 0.012474565766751766, 0.027539240196347237, -0.0031812831293791533, 0.24102261662483215, -0.006420156452804804, 0.03915645554661751, 0.0021792021580040455, -0.016867585480213165, 0.005771446507424116, 0.07872281968593597, 0.0472402386367321, 0.0008288542740046978, -0.008262583054602146, 0.06531894952058792, -0.003954413812607527, 0.04336022958159447, -0.013865910470485687, -0.019003739580512047, 0.03986141458153725, 0.040683213621377945, -0.006876814644783735, -0.015180094167590141, 0.01820235140621662, -0.046352315694093704, 0.05214891582727432, 0.051545172929763794, 0.031148992478847504, 0.007219032384455204, -0.04137558862566948, -0.06948287039995193, 0.020534547045826912, -0.03183149918913841, -0.023812875151634216, -0.016390757635235786, -0.017898477613925934, -0.0059606218710541725, 0.07079373300075531, -0.030711933970451355, -0.02372811734676361, -0.026580533012747765, 0.026097649708390236, 0.019998349249362946, -0.021805960685014725, 0.09008441865444183, 0.009675211273133755, -0.0027011611964553595 ]
[ -0.03334599360823631, 0.010749462060630322, -0.0044412435963749886, 0.04231303185224533, -0.007138493005186319, 0.0043837521225214005, 0.007212445139884949, 0.0001582824916113168, -0.06631127744913101, -0.02644573152065277, -0.037903085350990295, -0.024910952895879745, 0.037234846502542496, -0.022127749398350716, -0.0041989716701209545, 0.009858251549303532, 0.02493412047624588, 0.015919961035251617, 0.030522428452968597, -0.06300356984138489, -0.04250826686620712, 0.013025079853832722, 0.004028041381388903, 0.01776145212352276, 0.006824887357652187, 0.0530896931886673, -0.03268805891275406, -0.007297869306057692, 0.006408317945897579, -0.09919239580631256, -0.034979451447725296, 0.0018622670322656631, 0.02941349521279335, 0.02278292365372181, -0.013365053571760654, 0.0856320858001709, 0.0138237988576293, 0.024859141558408737, -0.008442173711955547, 0.007039576768875122, -0.006257693748921156, -0.01291700080037117, 0.012017395347356796, -0.0369466170668602, 0.0007526639383286238, 0.01999364048242569, 0.013350973837077618, 0.01247700210660696, -0.01271889265626669, -0.002930284244939685, -0.0359872430562973, 0.03983087092638016, -0.0015776793006807566, 0.030761418864130974, 0.00027089897776022553, 0.013849884271621704, -0.012449060566723347, -0.06792034953832626, -0.025231298059225082, -0.0368698388338089, -0.03422379121184349, 0.009441378526389599, -0.036323390901088715, -0.00617399113252759, -0.044621460139751434, 0.00559706287458539, 0.004619641695171595, -0.018976444378495216, 0.03745304048061371, -0.012043895199894905, 0.010074164718389511, 0.04063728451728821, -0.050691161304712296, -0.03775725141167641, 0.009613807313144207, -0.013779640197753906, 0.07239207625389099, -0.05766287073493004, 0.017044903710484505, -0.011251573450863361, -0.028237245976924896, -0.042967844754457474, 0.061606861650943756, 0.012881428934633732, -0.014834257774055004, -0.03180618956685066, -0.014570039696991444, 0.023809220641851425, 0.02527482993900776, -0.028051404282450676, -0.04074038565158844, 0.05799613893032074, 0.009955693036317825, 0.002038465114310384, 0.0002539354027248919, 0.02358870580792427, -0.028297366574406624, 0.004275268875062466, 0.021429825574159622, 0.7861067056655884, 0.014083181507885456, 0.040465641766786575, -0.009535202756524086, 0.017542263492941856, -0.008693401701748371, -0.02855495922267437, -0.020364683121442795, -0.0034998890478163958, -0.007349647581577301, -0.03206764534115791, 0.05799441039562225, -0.012423548847436905, 0.06748887896537781, 0.024482732638716698, -0.011506067588925362, 0.01126729603856802, 0.027686165645718575, 0.014369486831128597, -0.017256228253245354, 0.018941398710012436, 0.012219513766467571, -0.013640804216265678, 0.012665247544646263, 0.015995832160115242, 0.027965325862169266, -0.2205217480659485, -0.03405830264091492, -8.279252097287105e-33, 0.033951543271541595, -0.0458269864320755, 0.014487783424556255, -0.030991284176707268, 0.03253819793462753, 0.001864040270447731, 0.01176830381155014, -0.000619670725427568, -0.04723185673356056, -0.004863058216869831, 0.021571891382336617, -0.0026083244010806084, -0.011198502033948898, 0.01479309145361185, 0.05367262288928032, 0.00796719640493393, 0.02274257317185402, 0.016322528943419456, -0.027650311589241028, -0.018614165484905243, 0.012089857831597328, 0.04928037151694298, -0.014419005252420902, 0.011369135230779648, -0.020751189440488815, 0.03535889834165573, 0.006624145898967981, -0.009186760522425175, 0.01388871856033802, -0.046265069395303726, -0.009198354557156563, 0.02048025280237198, 0.009318367578089237, 0.003989638295024633, 0.031132521107792854, -0.012971462681889534, 0.00833946093916893, 0.025429492816329002, -0.030429111793637276, -0.009539714083075523, -0.017960723489522934, 0.02789006195962429, -0.018845057114958763, -0.07054051011800766, 0.02385750599205494, -0.055741678923368454, 0.03844339773058891, 0.053172849118709564, 0.03340785577893257, 0.04252193495631218, 0.04628109559416771, 0.011023684404790401, -0.012338855303823948, 0.029805105179548264, -0.03686683624982834, -0.010254336521029472, 0.006798099260777235, 0.014561960473656654, 0.019300289452075958, 0.0960899144411087, -0.038202542811632156, 0.01558811217546463, 0.005137898027896881, 0.018770873546600342, -0.009824217297136784, -0.03185994178056717, 0.016773654147982597, 0.024032816290855408, -0.016670336946845055, 0.06837552785873413, -0.020758548751473427, 0.026054639369249344, -0.023341640830039978, -0.02403252013027668, 0.0013264811132103205, -0.020696962252259254, -0.022146698087453842, -0.03826090693473816, -0.0213460773229599, 0.0048315986059606075, 0.010318473912775517, -0.04075007513165474, 0.004986205603927374, 0.030327968299388885, -0.04294958710670471, 0.006527341902256012, 0.030636034905910492, 0.00639323377981782, -0.021964259445667267, -0.02461700513958931, -0.005314584821462631, 0.053689874708652496, -0.008403842337429523, -0.015518669039011002, 0.012097868137061596, 8.056134453293404e-33, -0.02191305346786976, -0.025458797812461853, -0.008496848866343498, 0.04130326956510544, -0.0007394778076559305, -0.02796006202697754, 0.07001227885484695, 0.00809440203011036, 0.012972257100045681, 0.07110168784856796, 0.006724693346768618, 0.015928341075778008, 0.014901496469974518, -0.005735672544687986, 0.03023674711585045, -0.041991643607616425, 0.01079160999506712, 0.038066230714321136, 0.023102864623069763, 0.005365261808037758, 0.013956681825220585, -0.01930895261466503, 0.007866241969168186, 0.004468654282391071, 0.031511154025793076, 0.039084456861019135, -0.017687251791357994, -0.0054139262065291405, -0.026580965146422386, 0.02042163349688053, 0.013974770903587341, -0.02243831567466259, 0.02872519940137863, -0.028367022052407265, 0.03489582613110542, 0.03984805569052696, -0.0019979628268629313, -0.010666762478649616, 0.0243487861007452, -0.00026934329071082175, -0.00800709705799818, -0.006753023248165846, -0.022428564727306366, -0.0016296686371788383, -0.0011808285489678383, -0.008826659061014652, -0.0020869586151093245, -0.0018302493263036013, 0.03141782805323601, 0.0031502102501690388, 0.016496066004037857, 0.010855529457330704, 0.010323511436581612, -0.003144660731777549, 0.003706063376739621, 0.0009176547173410654, -0.045046526938676834, 0.036948323249816895, -0.039408594369888306, -0.03617405891418457, -0.02254163846373558, -0.01165173389017582, -0.00475721713155508, 0.01634090207517147, -0.009716819040477276, -0.021261919289827347, -0.0452038049697876, -0.07665721327066422, -0.011635829694569111, 0.024113738909363747, -0.05959988012909889, 0.030734509229660034, -0.009654559195041656, 0.024080708622932434, -0.0414254404604435, -0.03529662266373634, -0.035384029150009155, -0.005008623469620943, 0.04243241623044014, 0.05675824359059334, 0.016515566036105156, -0.007792090065777302, 0.044807057827711105, 0.004910010378807783, 0.011864730156958103, -0.007758620195090771, 0.034556396305561066, 0.06534748524427414, 0.04409296065568924, -0.0033381045795977116, -0.027745099738240242, -0.008491684682667255, -0.00816908199340105, -0.019267292693257332, -0.02579871565103531, -1.3089317185688287e-8, -0.042658742517232895, -0.06548208743333817, -0.04968181997537613, 0.02997656539082527, 0.02001822739839554, 0.025143219158053398, -0.003653771011158824, -0.012855803593993187, -0.02192370779812336, 0.0023166402243077755, 0.006036821752786636, 0.0028443753253668547, -0.00998756568878889, -0.007586370687931776, 0.02938110940158367, -0.032899826765060425, 0.049517787992954254, -0.05762249603867531, 0.01883196085691452, -0.02284722961485386, -0.033970996737480164, -0.007757281418889761, -0.006692811846733093, -0.009755831211805344, -0.030376598238945007, -0.03944594785571098, 0.04840683192014694, -0.08773618191480637, 0.01076185517013073, -0.0014462892431765795, -0.01435824390500784, -0.05877302587032318, -0.0006003894959576428, -0.007279630750417709, -0.011095116846263409, -0.03873556852340698, -0.024733301252126694, 0.051042743027210236, 0.034973081201314926, -0.017286179587244987, -0.008143641985952854, 0.01644313521683216, 0.0007710485951974988, -0.020293409004807472, -0.010156464762985706, -0.01969200372695923, -0.007002143654972315, -0.001885106205008924, 0.009693184867501259, -0.027417616918683052, 0.05424204841256142, -0.007825294509530067, 0.03283544257283211, 0.021174073219299316, 0.0688646137714386, 0.018033990636467934, -0.011060414835810661, -0.0714106410741806, 0.01441718265414238, 0.008970477618277073, 0.01315746083855629, 0.009350349195301533, -0.015489068813621998, -0.039834387600421906 ]
haskell-pattern-matching-a-list
https://markhneedham.com/blog/2012/12/30/haskell-pattern-matching-a-list
false
2012-12-24 09:09:44
The Tracer Bullet Approach: An example
[ "devops-2" ]
[ "DevOps" ]
A few weeks ago my former colleague https://twitter.com/kief[Kief Morris] wrote a blog post describing http://kief.com/tracer-bullet.html[the tracer bullet approach] he's used to setup a continuous delivery pipeline on his current project. ____ The idea is to get the simplest implementation of a pipeline in place, prioritizing a fully working skeleton that stretches across the full path to production over a fully featured, final-design functionality for each stage of the pipeline. ____ Kief goes on to explain in detail how we can go about executing this and it reminded of a project I worked on almost 3 years ago where we took a similar approach. We were building an internal application for an insurance company and didn't have any idea how difficult it was going to be to put something into production so we decided to find out on the first day of the project. We started small - our initial goal was to work out what the process would be to get a 'Hello world' text file onto production hardware. Although we were only putting a text file into production we wanted to try and make the pipeline as similar as possible to how it would actually be so we set up a script to package the text file into a ZIP file. We then wired up a continuous integration server to generate this artifact on each run of the build. What we learnt from this initial process was how far we'd be able to automate things. We were working closely with one of the guys in the operations team and he showed us where we should deploy the artifact so that he could pick it up and put it into production. Our next step after this was to do the same thing but this time with a web application just serving a 'Hello world' response from one of the end points. This was relatively painless but we learnt some other intricacies of the process when we wanted to deploy a script that would make changes to a database. Since these changes had to be verified by a different person they preferred it if we put the SQL scripts in a different artifact which they could pick up. We found all these things out within the first couple of weeks which made our life much easier when we put the application live a couple of months down the line. Although there were a few manual steps in the process I've described *we still found the idea of driving out the path to production early a useful exercise*. Read http://kief.com/tracer-bullet.html[Kief's post] for ideas about how to handle some of the problems you'll come across when it's all a bit more automated!
null
null
[ 0.043265122920274734, 0.007592536974698305, 0.004325164947658777, 0.04613436013460159, 0.10310296714305878, 0.01174652948975563, 0.025174031034111977, 0.04203049838542938, 0.04508160054683685, -0.027022603899240494, -0.010528163984417915, -0.019672401249408722, -0.0741230696439743, 0.02022366411983967, -0.03160799667239189, 0.0623055025935173, 0.057654231786727905, 0.021141715347766876, 0.041465938091278076, 0.030097711831331253, 0.025166792795062065, 0.07240034639835358, 0.032916340976953506, 0.0438399612903595, 0.019564827904105186, 0.02156589739024639, 0.01614178530871868, -0.008490913547575474, -0.07091439515352249, -0.0031067137606441975, 0.0310690775513649, -0.004471541848033667, 0.002116731135174632, -0.04075760394334793, 0.023272814229130745, -0.012770668603479862, -0.021718868985772133, 0.036628782749176025, 0.0001996076462091878, -0.0008427761495113373, -0.08044537156820297, 0.06352555751800537, -0.001075352425687015, 0.012513241730630398, -0.05094670131802559, -0.009924867190420628, -0.02754119038581848, 0.013416947796940804, 0.005487489048391581, -0.015696164220571518, -0.08339960128068924, 0.012779109179973602, -0.023726563900709152, -0.011129985563457012, -0.0019713183864951134, 0.047041114419698715, 0.032999664545059204, -0.06256432831287384, 0.012382222339510918, -0.027651717886328697, 0.0017558016115799546, -0.006810258142650127, 0.007228410337120295, 0.03315442055463791, 0.01924787648022175, -0.040716998279094696, 0.005539109464734793, 0.05084005370736122, -0.03037107363343239, -0.004030791576951742, 0.019578011706471443, 0.004561787936836481, -0.009181041270494461, -0.016493765637278557, 0.014771195128560066, -0.04208425432443619, 0.015744870528578758, 0.06200114265084267, 0.0032482040114700794, 0.05776147171854973, -0.022247398272156715, -0.0009444748284295201, 0.004014052450656891, 0.03568612411618233, -0.03470945358276367, -0.03870681673288345, 0.013842414133250713, -0.027712684124708176, -0.05480583757162094, 0.046871259808540344, 0.00949849933385849, -0.06903233379125595, 0.01910083368420601, 0.016441648826003075, -0.001113599631935358, 0.014735775999724865, 0.018987033516168594, 0.027302561327815056, -0.0036132866516709328, -0.008435098454356194, -0.025164499878883362, -0.005781115964055061, -0.01806478016078472, 0.00892010610550642, -0.0646345466375351, -0.01352236233651638, -0.025987809523940086, -0.011746865697205067, 0.011525127105414867, -0.007981461472809315, -0.002991546643897891, 0.012433839961886406, -0.03215256333351135, 0.00684100529178977, -0.06389448046684265, 0.08094997704029083, 0.0003233605530112982, -0.04676591604948044, -0.004975669551640749, 0.0038930291775614023, 0.028706805780529976, 0.050653181970119476, -0.02136763371527195, 0.08910950273275375, 0.01469543669372797, 0.036498136818408966, -0.01166333444416523, 0.041704822331666946, -0.002717144088819623, -0.07159098237752914, 0.014142184518277645, 0.0426248274743557, -0.008186321705579758, -0.008361552841961384, 0.0002770399150904268, -0.03859899193048477, 0.0165396761149168, -0.0012189877452328801, 0.0341792032122612, 0.019907735288143158, 0.00046712622861377895, -0.049351342022418976, 0.010643801651895046, 0.006761453580111265, 0.03132626414299011, 0.0038420450873672962, -0.00495904590934515, -0.04510311409831047, -0.05700691416859627, 0.02036271058022976, -0.018516341224312782, -0.002700859447941184, 0.015949880704283714, -0.037430353462696075, 0.030879955738782883, 0.10831116884946823, 0.028667347505688667, -0.00295330211520195, -0.031136617064476013, 0.009989222511649132, 0.04440055042505264, 0.03790811076760292, 0.018227646127343178, 0.020830988883972168, 0.0038373747374862432, -0.012412446551024914, 0.011997482739388943, 0.015333335846662521, -0.021412692964076996, 0.00403197854757309, -0.05663306638598442, -0.04383799061179161, 0.06219781935214996, -0.028012756258249283, -0.007986865006387234, 0.04431156814098358, 0.08985660970211029, 0.022604504600167274, 0.03839752823114395, 0.009303524158895016, -0.07878458499908447, 0.04590019956231117, 0.008713755756616592, 0.019481729716062546, 0.017904266715049744, -0.029500674456357956, 0.06159202754497528, 0.014113526791334152, 0.0034266591537743807, 0.03284844011068344, -0.07766507565975189, -0.12010261416435242, -0.017847377806901932, -0.020012754946947098, 0.03801516816020012, -0.03343673422932625, 0.01743623986840248, 0.06939204782247543, 0.014095709659159184, 0.03952251002192497, 0.012066747061908245, -0.00020019662042614073, 0.008853557519614697, -0.07847749441862106, -0.048382457345724106, 0.04038502275943756, 0.03309940546751022, -0.01017850637435913, -0.059388283640146255, 0.011258384212851524, -0.00576251745223999, -0.015387767925858498, 0.03720247372984886, -0.020180873572826385, 0.049128543585538864, 0.029572928324341774, 0.03168925270438194, -0.010867894627153873, 0.0388459749519825, -0.03791796788573265, -0.0011603707680478692, -0.004497217945754528, -0.0303860604763031, 0.011564233340322971, -0.0005746909882873297, 0.11225035041570663, 0.05345001816749573, -0.07651522010564804, -0.04042283818125725, 0.0329582653939724, 0.03498324006795883, -0.04423265531659126, -0.005902641452848911, -0.03273569419980049, 0.0007597905350849032, 0.01317153312265873, -0.06841479986906052, -0.020665766671299934, 0.003639447735622525, -0.05049395188689232, 0.009777274914085865, 0.06068795546889305, -0.029710587114095688, 0.041761405766010284, -0.0027561632450670004, -0.025727806612849236, -0.005699631292372942, -0.02347745932638645, -0.05723385140299797, 0.01811874471604824, -0.0009883727179840207, -0.006553759332746267, 0.03538016974925995, -0.035303909331560135, -0.010640222579240799, -0.035205546766519547, -0.056269824504852295, 0.03744279965758324, 0.03358004242181778, 0.06364027410745621, -0.04096038267016411, 0.05282491073012352, 0.0012462990125641227, 0.04884401336312294, 0.01636565662920475, -0.01474700216203928, -0.035549767315387726, -0.021415725350379944, 0.005017917603254318, 0.03203800693154335, 0.005360293667763472, 0.01383840199559927, 0.013145987875759602, 0.016026468947529793, 0.012576955370604992, -0.015691984444856644, 0.011768407188355923, 0.002801669994369149, -0.016596365720033646, -0.038273949176073074, -0.001089243683964014, 0.06546252965927124, -0.06162840500473976, -0.019381510093808174, 0.022098546847701073, -0.05639002472162247, 0.03894501179456711, -0.06054898351430893, -0.04014125093817711, 0.004077278543263674, -0.0025244185235351324, 0.029208321124315262, -0.014594427309930325, 0.02464102767407894, 0.06920216977596283, 0.019456008449196815, 0.011904733255505562, 0.004033065866678953, 0.019288605079054832, 0.029930006712675095, 0.019154010340571404, 0.014404695481061935, 0.025972018018364906, 0.005068731959909201, 0.0020456307101994753, -0.05056542158126831, 0.036965690553188324, -0.038052622228860855, -0.30539223551750183, 0.04122760519385338, 0.03235054761171341, -0.04422512650489807, 0.033878084272146225, -0.029042411595582962, 0.001627598307095468, -0.050223156809806824, -0.00864130537956953, -0.0006315367645584047, -0.033606234937906265, -0.030701063573360443, -0.0200638510286808, 0.03370298072695732, -0.007117137312889099, 0.01739659160375595, 0.03951917588710785, -0.03016069158911705, 0.026375025510787964, 0.031397249549627304, -0.021462714299559593, -0.060519710183143616, 0.0032231598161160946, 0.022051429376006126, 0.035977527499198914, 0.043981216847896576, -0.08598925173282623, 0.07966148853302002, -0.04860389605164528, -0.011644597165286541, 0.021504363045096397, -0.0158090777695179, -0.02548372931778431, -0.004977278411388397, -0.023752544075250626, -0.021862167865037918, 0.04016033932566643, 0.009323482401669025, 0.027818504720926285, -0.02187247946858406, -0.020084889605641365, -0.029302889481186867, -0.020490463823080063, 0.012425132095813751, 0.07672399282455444, -0.009140996262431145, -0.08094310015439987, 0.0036339075304567814, -0.017097579315304756, 0.0616815946996212, -0.028125157579779625, -0.0318533219397068, -0.011840421706438065, 0.0353340245783329, -0.005649347323924303, -0.03376685455441475, -0.02712942287325859, -0.009181137196719646, -0.05798090249300003, -0.025719230994582176, 0.0025446396321058273, -0.02846764400601387, -0.013861694373190403, -0.03140219673514366, 0.020033085718750954, -0.05972274765372276, -0.03494434058666229, -0.026032276451587677, 0.07414232194423676, 0.0115662831813097, -0.01993243210017681, 0.0252400953322649, -0.010476735420525074, -0.11643976718187332, 0.012222159653902054, -0.014444067142903805, -0.0123875942081213, 0.0023325984366238117, 0.004512995481491089, 0.03632989898324013, -0.02957295998930931, -0.058334775269031525, 0.03071756660938263, -0.014437147416174412, 0.017788683995604515, -0.011415733955800533, 0.021602297201752663, 0.031607698649168015, -0.03669498488306999, 0.017651645466685295, 0.05190523713827133, -0.022516043856739998, -0.019548427313566208, -0.008371897041797638, 0.004942579194903374, 0.015989307314157486, 0.024988047778606415, -0.01061787735670805, -0.006741361226886511, 0.0356772355735302, 0.017118701711297035, -0.06636666506528854, 0.011670097708702087, -0.01957893744111061, 0.0043147532269358635, -0.004350092727690935, -0.050002411007881165, 0.02010413631796837, 0.04623785242438316, 0.040837179869413376, -0.013568270951509476, -0.02562909945845604, 0.015623590908944607, -0.05005413666367531, -0.03817706182599068, 0.000584263529162854, 0.006947754882276058, 0.03312525898218155, 0.0026750448159873486, -0.01661313883960247, -0.0451289527118206, 0.014670237898826599, 0.017543815076351166, -0.004521671216934919, -0.049701180309057236, -0.027249857783317566, -0.003603512654080987, 0.0057837446220219135, 0.031993504613637924, 0.024583563208580017, -0.005822791252285242, 0.02992933988571167, 0.017548510804772377, -0.025410782545804977, 0.025772573426365852, -0.039217427372932434, -0.06145956739783287, -0.040284834802150726, 0.010454160161316395, 0.00008023913687793538, -0.021422360092401505, 0.04137028753757477, 0.005225080531090498, 0.011609961278736591, 0.04942888021469116, 0.023845143616199493, 0.008489024825394154, -0.016175344586372375, 0.02804405614733696, -0.004329411778599024, 0.009731503203511238, -0.06011100485920906, 0.007547094952315092, -0.04595259204506874, -0.024542544037103653, -0.03857211396098137, 0.03205547109246254, -0.026051614433526993, -0.037341222167015076, -0.004454183857887983, 0.026165148243308067, -0.0483865961432457, -0.021640392020344734, -0.005034725181758404, 0.001053541898727417, 0.06024415045976639, -0.008194134570658207, 0.027124503627419472, -0.013331861235201359, 0.005309302359819412, 0.018080541864037514, 0.004042123444378376, -0.05069395899772644, -0.008393235504627228, 0.009892869740724564, 0.007558419369161129, -0.0010669361799955368, 0.00971630122512579, 0.0440661646425724, 0.014312105253338814, 0.0019473305437713861, -0.014563266187906265, -0.0015004173619672656, 0.009443840943276882, 0.05077443644404411, 0.02713906392455101, -0.0010840659961104393, 0.0047865998931229115, -0.018549667671322823, -0.011123096570372581, -0.0454365611076355, -0.0002878230588976294, -0.006798990536481142, 0.011955712921917439, -0.015454448759555817, -0.0980621799826622, 0.05645463615655899, 0.024437645450234413, 0.022150825709104538, 0.029771877452731133, -0.014857740141451359, -0.0003049371007364243, -0.019498050212860107, 0.05663246661424637, 0.06345320492982864, -0.05887338146567345, -0.000876377453096211, -0.000675996532663703, 0.016587847843766212, 0.007628731429576874, 0.00870353914797306, -0.05413929373025894, -0.014472522772848606, -0.02636595442891121, 0.01020217314362526, -0.07016032934188843, -0.01187431626021862, -0.015449484810233116, 0.020048996433615685, -0.012159730307757854, -0.002953973598778248, -0.007292200345546007, -0.027385186403989792, -0.009753786027431488, -0.0089434664696455, 0.01185646466910839, -0.03300124406814575, -0.009742257185280323, 0.004692164249718189, -0.04144049808382988, -0.007369131315499544, -0.037420693784952164, 0.017221080139279366, 0.016794778406620026, -0.016785768792033195, 0.024575790390372276, -0.04933900386095047, -0.011282782070338726, -0.004636779427528381, 0.037861693650484085, -0.0016592538449913263, -0.014388351701200008, -0.021075723692774773, -0.01182944793254137, -0.022360485047101974, 0.00403939513489604, -0.03143684193491936, 0.0009895829716697335, 0.03518262505531311, 0.06071183830499649, 0.002769791055470705, 0.028749410063028336, -0.01652073673903942, -0.01682053506374359, 0.05388946086168289, -0.07836796343326569, -0.012760049663484097, -0.03695220127701759, -0.06799618154764175, 0.019275100901722908, 0.011673429049551487, -0.0008798873168416321, -0.050304483622312546, 0.027338318526744843, 0.0372060127556324, 0.019583212211728096, 0.03353313356637955, -0.007770838215947151, 0.028818799182772636, -0.05107686668634415, -0.020981568843126297, -0.08444295823574066, -0.0019417235162109137, 0.028407271951436996, 0.0019242351409047842, -0.012955584563314915, 0.01137949526309967, -0.036098379641771317, 0.02213270775973797, -0.07214440405368805, -0.04098089784383774, 0.02635335735976696, -0.02027977630496025, -0.012381753884255886, 0.021884674206376076, -0.05364992097020149, 0.02870098501443863, 0.013888172805309296, -0.03707956150174141, -0.02780960127711296, -0.02230142056941986, 0.06988173723220825, 0.006529139820486307, 0.03246237710118294, -0.020467938855290413, -0.014828121289610863, 0.07858090102672577, 0.010131128132343292, 0.012729745358228683, 0.05535876005887985, 0.0030739239882677794, 0.034737322479486465, 0.02096533589065075, 0.013254429213702679, -0.014647867530584335, 0.01643195003271103, -0.006346088368445635, -0.04109729081392288, 0.034134391695261, 0.009612031280994415, -0.032433561980724335, -0.02662845328450203, 0.059177130460739136, 0.014565474353730679, -0.03212422877550125, -0.07136650383472443, 0.02563847415149212, -0.045872762799263, -0.0068741547875106335, -0.02753816917538643, -0.0010178961092606187, -0.05819988250732422, 0.03084566816687584, -0.015041468665003777, 0.003710072720423341, 0.0698111429810524, 0.02216501533985138, -0.013650205917656422, -0.025357378646731377, 0.07228797674179077, 0.08041499555110931, 0.04368535801768303, 0.01908925734460354, 0.04360787943005562, -0.02026844210922718, -0.016218621283769608, 0.02157123014330864, -0.0005345095414668322, -0.019518446177244186, -0.015645956620573997, 0.02052246406674385, 0.0699457973241806, -0.0012356364168226719, 0.065619558095932, -0.01008162647485733, -0.008470063097774982, 0.00672198785468936, 0.027656085789203644, 0.013240782544016838, 0.07904907315969467, 0.022983280941843987, 0.013762072660028934, -0.015037582255899906, -0.0483081191778183, 0.0037827936466783285, -0.05151985213160515, -0.007809108588844538, 0.05558711290359497, 0.0004297532723285258, 0.041820067912340164, 0.014099523425102234, 0.01945333182811737, 0.07520585507154465, -0.048146672546863556, 0.00407413300126791, -0.007819282822310925, 0.03231656178832054, -0.017282726243138313, 0.017072295770049095, -0.027688635513186455, -0.005866084713488817, -0.0051934802904725075, -0.04936877638101578, -0.01905575394630432, -0.02151171863079071, -0.014107982628047466, 0.03411851078271866, -0.026067346334457397, 0.025201819837093353, 0.03765175864100456, -0.004535549785941839, -0.04221871867775917, -0.05577879026532173, -0.02296142280101776, -0.04192933440208435, -0.046537768095731735, -0.03428516536951065, 0.026517080143094063, -0.0017083517741411924, -0.03289446607232094, 0.0021311775781214237, -0.031579263508319855, -0.05221803858876228, 0.06111481785774231, -0.04983540251851082, -0.007675028406083584, -0.0011199781438335776, 0.02980593591928482, -0.009445173665881157, 0.022417083382606506, 0.04318969324231148, -0.00432538241147995, -0.008725362829864025, -0.03171072155237198, 0.02301674708724022, 0.027373231947422028, -0.003177696606144309, 0.006437184754759073, -0.0959545373916626, 0.0448913536965847, 0.02523134835064411, 0.0051461681723594666, -0.06510472297668457, 0.01998482458293438, 0.04006219282746315, 0.00004629280374501832, 0.049442511051893234, -0.025864094495773315, 0.0021092682145535946, -0.06364849209785461, -0.01018783263862133, -0.011744506657123566, -0.003930965438485146, 0.042871829122304916, -0.01844906061887741, 0.09499306976795197, 0.03598629683256149, -0.0023543371353298426, -0.033706024289131165, -0.0024383512791246176, -0.006564586888998747, 0.017448626458644867, -0.01751156896352768, -0.021780846640467644, -0.027145681902766228, -0.08205217868089676, -0.01979929208755493, 0.02119431458413601, -0.013253279961645603, -0.04575759544968605, 0.016809364780783653, 0.020764976739883423, -0.01770821399986744, -0.004976846277713776, -0.052664704620838165, 0.0511547289788723, -0.027367809787392616, -0.007558383978903294, -0.009213433600962162, 0.013367175124585629, -0.0010468318359926343, -0.017651651054620743, 0.015992427244782448, -0.047138720750808716, -0.023957708850502968, 0.0022869743406772614, 0.04688282683491707, 0.034009899944067, 0.00892717856913805, -0.024184493348002434 ]
[ -0.09766268730163574, -0.008602902293205261, -0.021961374208331108, -0.036142151802778244, 0.0247170552611351, -0.048763424158096313, -0.028183793649077415, 0.0048643723130226135, -0.04463493078947067, -0.02176310494542122, 0.010208318941295147, -0.0204929132014513, -0.011365027166903019, -0.03144368156790733, 0.06551046669483185, 0.013809097930788994, -0.002251547062769532, -0.07275959104299545, 0.010301490314304829, 0.0011520222760736942, 0.004400581121444702, -0.03632008656859398, -0.0337458960711956, -0.035777848213911057, 0.009013996459543705, 0.017445575445890427, 0.028479866683483124, -0.03069830872118473, 0.007134770508855581, -0.19593097269535065, 0.018203750252723694, -0.018056215718388557, 0.025870079174637794, -0.01737382262945175, 0.0076540373265743256, 0.06371547281742096, 0.02246677689254284, 0.027173154056072235, -0.009768621996045113, 0.020440906286239624, 0.027773812413215637, 0.026083335280418396, -0.04488436505198479, -0.02536625601351261, 0.04453587904572487, -0.02446802519261837, 0.0020373461302369833, -0.03249622508883476, 0.012356164865195751, 0.016967635601758957, -0.054327186197042465, -0.032835084944963455, -0.00270275492221117, -0.028738567605614662, -0.015887554734945297, -0.007355350069701672, 0.04776519164443016, 0.0758269801735878, 0.017680684104561806, 0.009336736984550953, 0.01746847853064537, -0.015906570479273796, -0.145790696144104, 0.08867397904396057, 0.03234909847378731, 0.04738780856132507, -0.05465063452720642, -0.04846173897385597, -0.005177464336156845, 0.09303566813468933, 0.008657015860080719, -0.021592603996396065, -0.021593647077679634, 0.05750174820423126, 0.02295360527932644, -0.013453536666929722, 0.01880205236375332, 0.04330310970544815, 0.01481601595878601, -0.03586804121732712, -0.025327954441308975, 0.016755329445004463, -0.028213223442435265, 0.006806875579059124, -0.07421983033418655, 0.043233469128608704, 0.008216314017772675, 0.05806521698832512, 0.048134945333004, 0.03502759709954262, 0.04716937988996506, -0.003965431358665228, 0.03975880146026611, -0.008179760538041592, -0.0671522319316864, -0.01902068965137005, -0.008358750492334366, -0.001939204754307866, -0.034343402832746506, 0.4448819160461426, -0.000035728575312532485, -0.04454736039042473, 0.06581836938858032, 0.03733370825648308, 0.00859890691936016, 0.022528111934661865, -0.008421436883509159, -0.03146521747112274, 0.021376958116889, -0.02453826367855072, 0.023608330637216568, 0.02442122995853424, 0.05523541569709778, -0.06585408747196198, 0.03661532327532768, 0.025775738060474396, -0.015221425332129002, 0.015619016252458096, -0.007680330891162157, -0.008687762543559074, -0.0009117636946029961, 0.027587302029132843, 0.0002274089929414913, 0.0189503226429224, -0.009998677298426628, -0.033808618783950806, 0.05646315589547157, 0.034877121448516846, 0.027180485427379608, 0.01755407266318798, 0.040411271154880524, -0.05929911881685257, -0.06249309331178665, 0.004473136737942696, -0.004217045847326517, 0.022144369781017303, 0.01790672540664673, -0.031151434406638145, -0.018565978854894638, 0.04354264214634895, -0.007760486099869013, 0.016845671460032463, 0.01987621560692787, -0.04186228662729263, -0.025113148614764214, 0.12155012041330338, 0.03389143943786621, -0.0300146471709013, -0.025552015751600266, -0.06294292211532593, -0.010275758802890778, 0.015522337518632412, 0.016818899661302567, -0.038181569427251816, 0.02101263776421547, 0.005842337850481272, 0.058880988508462906, -0.00283224880695343, -0.06365658342838287, 0.003779589431360364, -0.015309367328882217, -0.04248613119125366, -0.06510795652866364, 0.04162327200174332, 0.05330243334174156, -0.12943750619888306, -0.03076218068599701, 0.0024107934441417456, 0.05660492181777954, -0.04923358932137489, -0.008642368018627167, 0.024989964440464973, -0.012453768402338028, -0.03165656700730324, 0.02546474151313305, -0.03483808785676956, -0.06118108332157135, 0.012627619318664074, 0.03547552600502968, 0.022029530256986618, 0.02364972233772278, 0.0076539404690265656, -0.0289023257791996, -0.0006899060681462288, -0.065913625061512, -0.11644866317510605, -0.03415114805102348, 0.011104485020041466, -0.033941175788640976, 0.01989244483411312, -0.01299295574426651, 0.02499351277947426, -0.05997799336910248, 0.08677506446838379, -0.0011500510154291987, -0.025113726034760475, 0.02633066289126873, -0.004479367285966873, -0.03674547001719475, -0.031247735023498535, 0.0039100949652493, 0.03228967264294624, -0.03541146591305733, 0.044465675950050354, -0.07132212072610855, 0.04879768192768097, 0.04422023892402649, -0.04098854586482048, 0.06127166748046875, 0.05490484833717346, -0.008781686425209045, -0.023418063297867775, 0.00019023288041353226, 0.017589621245861053, -0.015021405182778835, -0.021481171250343323, 0.0056232875213027, 0.007193831726908684, 0.017998432740569115, 0.018430281430482864, -0.0300238486379385, 0.01896742358803749, 0.0017410386353731155, -0.3440104126930237, -0.029993021860718727, -0.027976203709840775, 0.02308758534491062, 0.03227194398641586, -0.06051334738731384, 0.005996219348162413, -0.014004570432007313, -0.007486370857805014, 0.004428906831890345, 0.09144363552331924, -0.019967082887887955, 0.024473614990711212, -0.07962477952241898, -0.010898308828473091, 0.0248421523720026, -0.035630881786346436, -0.017552612349390984, -0.030926955863833427, 0.012371203862130642, -0.003951563499867916, -0.0073284730315208435, -0.05456893891096115, -0.06745222210884094, 0.009049217216670513, -0.028862055391073227, 0.11582570523023605, -0.013983659446239471, 0.07340128719806671, -0.049489039927721024, 0.04744899272918701, -0.0006459355936385691, 0.014019541442394257, -0.11244261264801025, -0.002663428196683526, -0.019054992124438286, 0.03537188842892647, -0.014302232302725315, 0.03242644667625427, -0.008331834338605404, -0.07707517594099045, 0.014156661927700043, -0.0537971667945385, -0.055753134191036224, -0.02810552343726158, 0.005504527594894171, -0.0440717376768589, -0.002682463964447379, -0.023980027064681053, 0.06589291244745255, 0.014171876944601536, -0.013165321201086044, 0.017430031672120094, 0.00134792469907552, 0.008893690072000027, -0.02927381359040737, -0.05707918480038643, 0.028433581814169884, 0.011491763405501842, -0.00752122001722455, 0.04865388572216034, 0.06980297714471817, 0.010879229754209518, -0.02735561691224575, 0.03191227465867996, 0.0022228381130844355, 0.022043565288186073, 0.02584400214254856, 0.045635223388671875, -0.030846303328871727, -0.01548708789050579, 0.10023188591003418, -0.01645219884812832, 0.016629846766591072, 0.04037746042013168, 0.038762204349040985, -0.020245425403118134, -0.006024082191288471, 0.01539787370711565, -0.010797795839607716, 0.040464770048856735, -0.032114483416080475, 0.02527153491973877, -0.017372312024235725, 0.0022372272796928883, 0.07359524071216583, 0.0007207223679870367, -0.05962416157126427, 0.03167051076889038, 0.028645576909184456, -0.004184930119663477, -0.0061064474284648895, -0.028520401567220688, -0.06996528059244156, 0.06089141219854355, -0.014462867751717567, -0.26117637753486633, 0.017279120162129402, 0.0572773776948452, 0.02661028690636158, -0.011453401297330856, -0.001638840651139617, 0.04775054752826691, -0.025005942210555077, 0.038947828114032745, 0.02202550694346428, 0.00716409832239151, 0.018635645508766174, -0.006813389249145985, -0.00014976599777583033, 0.032835789024829865, -0.008643284440040588, 0.025786902755498886, -0.017419805750250816, -0.002519006608054042, 0.005358097609132528, 0.012314554303884506, -0.01732778549194336, 0.15687237679958344, 0.02196713536977768, 0.007418349385261536, 0.013484428636729717, -0.020278602838516235, 0.026918794959783554, 0.07297185063362122, 0.012023561634123325, 0.0021091995295137167, 0.0051869601011276245, 0.011508636176586151, 0.0047363052144646645, 0.021891433745622635, -0.060688506811857224, -0.012590617872774601, 0.06471816450357437, -0.008321648463606834, 0.014399263076484203, 0.00341336103156209, 0.002189225284382701, -0.0016189627349376678, 0.021337389945983887, 0.05572621151804924, -0.0160162802785635, -0.0135879535228014, -0.05872667580842972, -0.053278762847185135, -0.028514450415968895, -0.0498879998922348, -0.011717956513166428, 0.0099651999771595, -0.01377290952950716, 0.01604512892663479, 0.10668933391571045, 0.029378622770309448, -0.027103077620267868, -0.008238897658884525, 0.02499595656991005, -0.004558243323117495, -0.008842336013913155, 0.0990406945347786, 0.04803963005542755, 0.028552444651722908 ]
[ -0.017022790387272835, 0.01937020570039749, 0.000974971626419574, 0.010388815775513649, -0.010390357114374638, -0.04874274507164955, 0.015507516451179981, 0.029380924999713898, -0.047352682799100876, 0.0057782260701060295, 0.0003631626896094531, -0.015476429834961891, 0.017372654750943184, -0.03078763373196125, -0.012314056046307087, -0.04332100600004196, 0.00009395313827553764, -0.014278092421591282, 0.006775230169296265, -0.02464810572564602, -0.02799408510327339, 0.01896921917796135, -0.00020332018902990967, -0.0030744881369173527, 0.013864883221685886, 0.013244186528027058, -0.028030334040522575, 0.020072709769010544, 0.030190737918019295, -0.14302435517311096, -0.005611099768429995, -0.039524540305137634, -0.02073155902326107, 0.005774639546871185, 0.03396590054035187, -0.002123130951076746, 0.03303965553641319, -0.002046197419986129, -0.050445668399333954, -0.0034824765753000975, 0.04181446135044098, -0.03599206730723381, -0.04143592715263367, 0.032114747911691666, -0.020315071567893028, -0.03525003418326378, -0.012503734789788723, -0.060470737516880035, -0.013720488175749779, 0.008483530953526497, -0.04222763329744339, -0.03291536495089531, -0.002791960258036852, 0.002257122192531824, 0.006350258365273476, -0.01426068414002657, 0.01957896538078785, -0.020518401637673378, 0.022465452551841736, -0.019158069044351578, 0.005251660011708736, -0.016407521441578865, 0.009787950664758682, -0.006557524669915438, -0.0001914010790642351, 0.006094416603446007, 0.02084091491997242, 0.02224159426987171, 0.011732436716556549, -0.009767143987119198, -0.02786947228014469, 0.028570489957928658, -0.06743978708982468, -0.006602418143302202, -0.015776293352246284, 0.04219507798552513, 0.021945778280496597, -0.01462799496948719, -0.02442140504717827, 0.010807139798998833, -0.04019054397940636, 0.023585839197039604, 0.004212630447000265, -0.0009908222127705812, -0.0030855941586196423, -0.0018324985867366195, 0.01671881414949894, 0.0092632956802845, 0.03276530280709267, 0.005969871301203966, -0.009416662156581879, 0.009573252871632576, 0.019289376214146614, 0.01528017409145832, -0.10456103831529617, -0.020432021468877792, -0.020060278475284576, 0.005529987625777721, -0.014717231504619122, 0.8239397406578064, 0.009842638857662678, 0.009579685516655445, 0.021080903708934784, 0.024433201178908348, -0.009881343692541122, -0.016104523092508316, -0.032213736325502396, 0.00809361133724451, -0.026857424527406693, -0.031153926625847816, 0.018658896908164024, 0.029946403577923775, 0.037968553602695465, 0.015904569998383522, 0.06212593615055084, 0.014181283302605152, -0.008245567791163921, -0.002958354540169239, -0.018575021997094154, -0.00047079240903258324, 0.031508129090070724, 0.00044468065607361495, -0.02780442126095295, -0.02361108362674713, -0.008205738849937916, -0.14162880182266235, 0.02321641892194748, -7.316607447304086e-33, 0.04735007882118225, -0.01136457733809948, 0.020298147574067116, -0.01305666659027338, 0.06235947087407112, -0.030935248360037804, 0.010432694107294083, 0.012185335159301758, -0.006497087888419628, -0.020632527768611908, -0.005062734708189964, -0.00017653558461461216, 0.0012379847466945648, -0.00949646532535553, 0.02775188907980919, -0.031701818108558655, -0.008912256918847561, 0.056374747306108475, 0.019463984295725822, 0.05773265287280083, 0.008134087547659874, 0.011356692761182785, -0.010166512802243233, -0.013041171245276928, 0.04909699037671089, 0.008560174144804478, 0.010631642304360867, 0.024431176483631134, -0.02189197577536106, -0.039741307497024536, -0.02451331727206707, 0.008851034566760063, 0.03435419499874115, -0.005803858861327171, -0.017787590622901917, -0.06463995575904846, -0.03135572746396065, -0.0094338059425354, -0.013339235447347164, -0.003607549937441945, -0.01641218364238739, -0.023495687171816826, -0.03890645503997803, 0.004598163068294525, -0.03557131066918373, 0.004071138333529234, -0.01908939890563488, 0.008692440576851368, 0.02878032997250557, -0.015600226819515228, 0.027554215863347054, 0.0212115291506052, 0.03280774876475334, 0.002498575020581484, 0.0469629168510437, 0.014105811715126038, 0.0006925706402398646, -0.04166536405682564, 0.02349967136979103, 0.012881108559668064, -0.0087877893820405, 0.0077957515604794025, 0.004332442302256823, 0.03857714682817459, 0.003611525986343622, -0.045818623155355453, 0.008474321104586124, 0.017489459365606308, 0.02646280825138092, -0.0037996245082467794, -0.07466711103916168, 0.043811824172735214, -0.0019521829672157764, -0.04132833331823349, 0.04085589200258255, -0.032442960888147354, -0.020022161304950714, 0.01738113909959793, -0.027611391618847847, 0.05617545545101166, -0.008984200656414032, -0.0027547054924070835, -0.01733396202325821, -0.018148958683013916, 0.000051293784053996205, -0.006993621122092009, -0.004473336972296238, -0.005949798505753279, -0.021424341946840286, 0.019640851765871048, 0.010819484479725361, -0.00662972591817379, -0.01525438018143177, 0.0008123469888232648, -0.015048308297991753, 7.868589472407493e-33, 0.047430846840143204, 0.007453973405063152, -0.004220615141093731, 0.023145010694861412, -0.015798382461071014, -0.0027388297021389008, 0.04877348989248276, 0.01646617241203785, -0.037223659455776215, 0.04331151023507118, 0.004446104168891907, 0.025040805339813232, -0.00418887147679925, 0.016489192843437195, 0.06303416937589645, -0.03536274656653404, 0.020618446171283722, -0.01744496263563633, 0.0468115396797657, 0.0003679976216517389, 0.0283015388995409, -0.004326139111071825, -0.012050135992467403, 0.013298682868480682, 0.006228016223758459, 0.06125151365995407, -0.03972877562046051, 0.015385190024971962, -0.030298374593257904, -0.03656373172998428, 0.0009515347774140537, -0.009483310393989086, 0.014183396473526955, -0.05225539579987526, -0.05000649020075798, 0.001856420305557549, -0.020030353218317032, 0.0010580053785815835, 0.048394445329904556, -0.03231246396899223, 0.04336833953857422, 0.020673861727118492, 0.023888900876045227, 0.027352340519428253, -0.052859704941511154, -0.007516616024076939, 0.030521797016263008, -0.039858974516391754, 0.009434936568140984, -0.02885725162923336, -0.01583821140229702, 0.05382004752755165, 0.0032050427980720997, 0.01372668705880642, -0.009867544285953045, 0.015215852297842503, -0.02857452817261219, -0.0008443181286565959, -0.06791013479232788, 0.0324094258248806, 0.0003014292160514742, 0.016590354964137077, 0.03307012468576431, -0.012634333223104477, -0.043821848928928375, -0.003899163333699107, -0.012719443999230862, 0.008093652315437794, -0.013296747580170631, -0.01686352677643299, -0.025788037106394768, 0.008177828043699265, -0.00027140442398376763, 0.04181554913520813, 0.04062662646174431, -0.02742750756442547, -0.03358588367700577, 0.0029344502836465836, -0.026556290686130524, 0.03393462300300598, 0.02688795141875744, 0.0049688913859426975, -0.017181603237986565, -0.0015119855524972081, 0.00647704117000103, 0.02425195649266243, -0.03200670704245567, 0.024935606867074966, 0.044302310794591904, -0.025563882663846016, -0.022202935069799423, -0.04190896824002266, -0.05520376190543175, 0.005908949766308069, -0.019977623596787453, -1.2973687901762787e-8, -0.00669846311211586, 0.026479575783014297, -0.0020795741584151983, 0.024619029834866524, 0.008651454001665115, -0.01518986839801073, 0.02382715232670307, 0.013663309626281261, -0.02181786671280861, -0.003880284959450364, 0.06118471920490265, -0.014974495396018028, -0.019933149218559265, 0.04705230891704559, 0.007592981681227684, -0.048639580607414246, -0.01672365516424179, -0.002287735464051366, 0.026194242760539055, -0.010611317120492458, 0.01747693121433258, 0.05204055458307266, 0.00831533782184124, 0.009539169259369373, -0.01134138461202383, 0.027952443808317184, 0.03319829702377319, -0.06982941180467606, 0.005864166188985109, 0.019734065979719162, -0.011631486937403679, -0.04627577215433121, -0.039646029472351074, 0.057868991047143936, -0.005110051017254591, -0.032261621206998825, 0.036120105534791946, 0.027324941009283066, 0.018804289400577545, -0.007755512837320566, -0.013870171271264553, 0.004416046664118767, -0.006775855552405119, -0.022352900356054306, -0.027834981679916382, 0.020830748602747917, -0.04315321892499924, 0.038583096116781235, -0.005471707321703434, -0.012446069158613682, 0.03238244354724884, -0.01874031312763691, 0.005194458179175854, 0.040906764566898346, 0.033665888011455536, 0.0015329563757404685, 0.02696787752211094, -0.03625316172838211, -0.030186450108885765, 0.06410779058933258, 0.037577152252197266, -0.011079867370426655, 0.020860597491264343, -0.020227011293172836 ]
the-tracer-bullet-approach-an-example
https://markhneedham.com/blog/2012/12/24/the-tracer-bullet-approach-an-example
false
2012-12-23 14:18:53
Kruskal's Algorithm in Ruby
[ "ruby", "algorithms", "kruskal" ]
[ "Algorithms" ]
Last week I wrote a couple of posts showing http://www.markhneedham.com/blog/2012/12/15/prims-algorithm-using-a-heappriority-queue-in-ruby/[different] http://www.markhneedham.com/blog/2012/12/15/prims-algorithm-in-ruby/[implementations] of http://en.wikipedia.org/wiki/Prim's_algorithm[Prim's algorithm] - an algorithm using to find a minimum spanning tree in a graph - and a similar algorithm is http://en.wikipedia.org/wiki/Kruskal's_algorithm[Kruskal's algorithm]. Kruskal's algorithm also finds a minimum spanning tree but it goes about it in a slightly different way. Prim's algorithm takes an approach whereby we select nodes and then find connecting edges until we've covered all the nodes. Kruskal's algorithm, on the other hand, drives from the edges of lowest costs and *makes sure that we don't create a cycle* in our spanning tree by adding an edge to it. The pseudocode for Kruskal's algorithm reads like so: * sort edges +++<cite>+++E+++</cite>+++ in order of increasing cost * let +++<cite>+++T+++</cite>+++ = minimum spanning tree, +++<cite>+++m+++</cite>+++ = number of edges * for +++<cite>+++i+++</cite>+++=1 to +++<cite>+++m+++</cite>+++: ** let +++<cite>+++e+++</cite>+++ = selected edge +++<cite>+++(u,v)+++</cite>+++ ** if there's no way to go between +++<cite>+++u+++</cite>+++ and +++<cite>+++v+++</cite>+++ using edges in +++<cite>+++T+++</cite>+++: *** add +++<cite>+++e+++</cite>+++ to +++<cite>+++T+++</cite>+++ * return +++<cite>+++T+++</cite>+++ The https://github.com/mneedham/algorithms2/blob/master/kruskals.rb[full code]is on github and the outline of the algorithm reads like so: [source,ruby] ---- @minimum_spanning_tree = [] edges = file.drop(1). map { |x| x.gsub(/\n/, "").split(" ").map(&:to_i) }. map { |one, two, weight| { :from => one, :to => two, :weight => weight}}. sort_by { |x| x[:weight]} edges.each do |edge| @minimum_spanning_tree << edge unless has_cycles edge end ---- The main bit of code is a variation on depth first search to check if adding an edge creates a cycle which would mean we're adding an edge which isn't needed as part of a minimum spanning tree. [source,ruby] ---- def has_cycles(edge) node_one, node_two = edge[:from], edge[:to] @minimum_spanning_tree.each { |x| x[:explored] = false } cycle_between(node_one, node_two, @minimum_spanning_tree.dup) end def cycle_between(one, two, edges) adjacent_edges = edges.select { |edge| edge[:to] == one || edge[:from] == one} return false if adjacent_edges.empty? adjacent_edges.reject {|edge| edge[:explored] }.each do |edge| edge[:explored] = true other_node = (edge[:from] == one) ? edge[:to] : edge[:from] return true if other_node == two || cycle_between(other_node, two, edges) end false end ---- +++<cite>+++cycle_between+++</cite>+++ is the http://en.wikipedia.org/wiki/Depth-first_search[depth first search] but we're using it to tell us whether there's already a path between two nodes in the graph and we exit as soon as we determine that. I added some code on line 3 to reset the +++<cite>+++explored+++</cite>+++ status of edges each time that +++<cite>+++has_cycles+++</cite>+++ is called but I'm not sure why this is necessary because I am making a copy of +++<cite>+++@minimum spanning_tree+++</cite>+++ (on line 4) before mutating it. Otherwise I think this is a fairly standard solution. If we wanted to go from node 1 to node 3 and we had the following edges: 1 \-> 4 \-> 5 \-> 3 we'd make these method calls: [source,ruby] ---- # excluding weights and explored status for brevity cycle_between(1,3, [{:from => 1, :to => 4}, {:from => 4, :to => 5}, {:from => 5, :to => 3}) cycle_between(4,3, [{:from => 1, :to => 4}, {:from => 4, :to => 5}, {:from =>; 5, :to => 3}) cycle_between(5,3, [{:from => 1, :to => 4}, {:from => 4, :to => 5}, {:from => 5, :to => 3}) ---- The function would exit on that last iteration because we'd match our target node '3'. This algorithm wasn't one of the assignments for the class but I used the same data set that was provided for Prim's algorithm and was able to get the same output so I figure it works!
null
null
[ -0.007044588215649128, 0.00391070730984211, -0.02470538020133972, 0.03472096472978592, 0.059718698263168335, 0.017294565215706825, 0.04029109328985214, 0.04541445150971413, -0.020025955513119698, -0.021101322025060654, -0.0005941606359556317, -0.03962201997637749, -0.04336634650826454, 0.003914178349077702, -0.0017717645969241858, 0.06952475756406784, 0.03467371314764023, -0.01544928178191185, -0.002266692230477929, -0.01574961096048355, 0.03957488387823105, 0.05207342654466629, 0.04639223963022232, 0.030379364266991615, 0.03650660812854767, 0.014912465587258339, 0.013390311039984226, -0.0038848400581628084, -0.0297971423715353, 0.006473362911492586, 0.04543178901076317, 0.012148665264248848, -0.0023170579224824905, 0.01094310637563467, 0.037369098514318466, 0.009450353682041168, -0.03425448760390282, 0.0020488996524363756, -0.00813642144203186, 0.004813254810869694, -0.04311409592628479, 0.06529691070318222, -0.03251218423247337, 0.008835221640765667, -0.03445931896567345, 0.01632652059197426, -0.05077638849616051, 0.011048639193177223, -0.005585428327322006, -0.02050119824707508, -0.0928514376282692, 0.022956758737564087, 0.018985893577337265, -0.0017470328602939844, -0.040529124438762665, 0.027013389393687248, 0.03508478030562401, -0.04171013459563255, 0.04553849995136261, -0.03198760375380516, -0.014749573543667793, -0.011106950230896473, 0.002000686712563038, 0.04342243820428848, 0.012467592023313046, -0.04170230031013489, 0.021419381722807884, 0.0585775263607502, -0.040826842188835144, -0.01374667789787054, -0.003561300691217184, 0.013688242994248867, -0.0002333681914024055, 0.030673226341605186, 0.017793571576476097, -0.03185616806149483, 0.028976624831557274, 0.06301337480545044, 0.016210759058594704, 0.057580795139074326, -0.03009817935526371, 0.03539830818772316, -0.016791949048638344, 0.038403600454330444, -0.01883007399737835, -0.022931266576051712, -0.03961534425616264, -0.02481544390320778, -0.08306261152029037, 0.06230264529585838, -0.004745584446936846, -0.04211052507162094, 0.005222952459007502, 0.024696962907910347, -0.019916612654924393, -0.0015317107317969203, 0.015780549496412277, 0.008089277893304825, -0.017442964017391205, -0.03130803257226944, -0.03520602360367775, -0.05561821535229683, 0.022663483396172523, -0.009855673648416996, -0.09824197739362717, -0.041199974715709686, -0.027919501066207886, 0.021213224157691002, 0.019125744700431824, -0.0030724324751645327, -0.01898263767361641, 0.004868106916546822, -0.023070205003023148, -0.0036602586042135954, -0.06453248858451843, 0.07409729808568954, -0.00002675599534995854, -0.04644613340497017, -0.01403381209820509, 0.011637039482593536, 0.05455274507403374, 0.05241737887263298, 0.009995666332542896, 0.0858968123793602, 0.014156435616314411, 0.018483832478523254, 0.02488548867404461, 0.04867972061038017, -0.04249170795083046, -0.05804380401968956, -0.013168048113584518, 0.08586090058088303, 0.0009638360934332013, -0.010387161746621132, -0.02964513562619686, -0.022329451516270638, -0.012399176135659218, 0.030370071530342102, 0.04891636222600937, 0.04117380455136299, 0.0014378889463841915, -0.060802921652793884, 0.012472573667764664, -0.008364412933588028, 0.0185661930590868, -0.028234871104359627, 0.024304892867803574, 0.0009830619674175978, -0.030765922740101814, 0.011602894403040409, 0.013810943812131882, 0.010330689139664173, 0.018161792308092117, -0.04035190865397453, 0.02814224734902382, 0.07753650844097137, 0.03468278795480728, 0.03170830383896828, -0.018742341548204422, 0.02553620934486389, 0.04965243488550186, 0.03643200919032097, 0.018746301531791687, 0.020725375041365623, -0.01257467269897461, -0.015478610061109066, 0.03045629896223545, 0.05249614641070366, -0.008747024461627007, -0.017029300332069397, -0.02907172590494156, -0.032660312950611115, 0.056166429072618484, -0.04223037138581276, -0.01908150129020214, 0.05047247186303139, 0.0717775896191597, 0.04321569576859474, 0.04344303160905838, -0.03661219775676727, -0.0898110419511795, 0.033310409635305405, -0.009327460080385208, 0.03169691562652588, -0.004588935989886522, -0.02745683491230011, 0.0728009045124054, 0.04096966236829758, 0.021028436720371246, -0.0019647511653602123, -0.07309525460004807, -0.07743941992521286, 0.006727100815623999, -0.043214358389377594, 0.09388916194438934, -0.0015212052967399359, 0.009218118153512478, 0.014473714865744114, 0.012202193960547447, 0.05415615066885948, 0.035806991159915924, -0.016651896759867668, 0.0125642204657197, -0.062148142606019974, -0.060829970985651016, 0.06718019396066666, 0.02566066011786461, -0.04464581236243248, -0.07176563143730164, 0.012269120663404465, -0.002660610480234027, -0.025239191949367523, -0.0018783408449962735, -0.022568540647625923, 0.008625964634120464, 0.020763985812664032, 0.05052439868450165, -0.026617838069796562, 0.05185285210609436, -0.04353451728820801, 0.02597939968109131, -0.0033906109165400267, -0.014385954476892948, 0.011511371470987797, -0.0016666339943185449, 0.10542062669992447, 0.06052548810839653, -0.029126837849617004, -0.024526750668883324, 0.034394919872283936, 0.009597895666956902, -0.029111497104167938, 0.006966825108975172, -0.0183610450476408, -0.023750893771648407, -0.018489699810743332, -0.06130458042025566, -0.029406478628516197, 0.05045972019433975, -0.03683894872665405, -0.034566476941108704, 0.07631415128707886, -0.014289399608969688, 0.056276656687259674, -0.002304424298927188, -0.02895859070122242, -0.01927502080798149, -0.03537486121058464, -0.06727869063615799, 0.021181752905249596, -0.013756940141320229, -0.014260474592447281, 0.025792131200432777, -0.021964609622955322, -0.029031503945589066, -0.017672313377261162, -0.020579807460308075, 0.02033962681889534, 0.06455982476472855, 0.05911213904619217, 0.007247901987284422, 0.07176800817251205, -0.026389382779598236, -0.014338111504912376, -0.0310524869710207, -0.06555582582950592, -0.04127764329314232, -0.03975646570324898, 0.02280990406870842, 0.023078693076968193, 0.0023423379752784967, -0.011053221300244331, 0.02084115892648697, 0.01842695288360119, 0.0029625992756336927, -0.012351312674582005, 0.025390712544322014, 0.020827407017350197, -0.01978261023759842, -0.015052130445837975, -0.0314212404191494, 0.04368649795651436, -0.034677643328905106, -0.014222610741853714, -0.007253659423440695, -0.04980086162686348, 0.07342525571584702, -0.05703752860426903, -0.01892762817442417, -0.011512763798236847, 0.0017841095104813576, 0.038575708866119385, -0.015570397488772869, 0.004888348281383514, 0.06393099576234818, 0.04102236032485962, 0.021049359813332558, 0.012240014038980007, 0.01761467196047306, 0.0034597136545926332, -0.0169618371874094, 0.003827525768429041, 0.03653230518102646, 0.01282601896673441, -0.009603872895240784, -0.03375045955181122, -0.004122510086745024, 0.009565062820911407, -0.2857174575328827, 0.014929656870663166, -0.030963696539402008, -0.04944538325071335, 0.0039763986133039, 0.0025618530344218016, -0.014261442236602306, -0.02019326202571392, -0.005511314142495394, 0.013914544135332108, -0.014242302626371384, -0.022101497277617455, -0.04035281389951706, 0.048337534070014954, 0.021813377737998962, 0.010139268822968006, 0.012034137733280659, -0.05066043511033058, 0.006285938899964094, 0.030376963317394257, 0.017049310728907585, -0.08203315734863281, -0.02031843364238739, 0.020584676414728165, 0.038782998919487, 0.0593385323882103, -0.0876370370388031, 0.04330361634492874, -0.054103072732686996, -0.0027865921147167683, -0.022983653470873833, -0.03807495906949043, 0.002454072469845414, -0.055384255945682526, 0.0016249145846813917, -0.038016967475414276, 0.03407248854637146, 0.023509720340371132, -0.00003538604869390838, 0.03067394345998764, -0.00480593740940094, -0.026286644861102104, -0.0030084995087236166, 0.012197240255773067, 0.08798636496067047, 0.032726090401411057, -0.049581341445446014, -0.01719866879284382, -0.015219847671687603, 0.06000466272234917, -0.012640553526580334, -0.023507609963417053, -0.0010497573530301452, 0.032482653856277466, 0.0031981493812054396, -0.03702385351061821, 0.007153792306780815, -0.05014988034963608, -0.04286950081586838, -0.04289696365594864, -0.0019643516279757023, -0.04185185953974724, 0.005127194337546825, -0.04573005810379982, -0.006169868633151054, -0.040814317762851715, -0.06376426666975021, -0.011372692883014679, 0.05568036437034607, -0.007798546459525824, -0.002175311790779233, -0.005852947942912579, -0.02489345148205757, -0.09201887249946594, -0.029983198270201683, -0.010313197039067745, -0.0457930862903595, 0.025385988876223564, 0.012607055716216564, 0.036945588886737823, -0.04181348532438278, -0.054205622524023056, 0.005084290634840727, 0.028885547071695328, 0.02632293477654457, -0.019084250554442406, -0.011539356783032417, 0.009820645675063133, -0.02002132683992386, 0.00008764013909967616, 0.04854133725166321, -0.004053820390254259, -0.025911372154951096, -0.020884834229946136, 0.0413484163582325, 0.030123574659228325, 0.030573202297091484, 0.015083899721503258, 0.040084198117256165, 0.03819933161139488, 0.023323727771639824, -0.06297370791435242, 0.03960045799612999, -0.008099435828626156, -0.0572621189057827, 0.028647448867559433, -0.05276475474238396, -0.00005078654066892341, 0.04350028932094574, -0.007042306941002607, -0.03490804135799408, -0.05570238083600998, 0.02425096556544304, -0.0618867389857769, -0.03974386304616928, -0.014261200092732906, 0.02660144679248333, 0.030752500519156456, 0.010278075002133846, -0.010525179095566273, -0.0819401815533638, 0.01769743487238884, -0.024812670424580574, -0.014720643870532513, -0.05304409936070442, -0.015264050103724003, -0.021419240161776543, -0.008566232398152351, 0.015031278133392334, 0.037244413048028946, -0.005916288122534752, 0.04492940753698349, 0.028549425303936005, -0.024408139288425446, 0.017709819599986076, 0.0012556383153423667, -0.04474605619907379, -0.029705341905355453, 0.03890977427363396, -0.0050314790569245815, 0.011498935520648956, -0.00034070166293531656, 0.004699956625699997, 0.016777535900473595, 0.063309445977211, 0.015532813966274261, 0.039500266313552856, -0.02491031028330326, 0.037550829350948334, -0.0028713131323456764, 0.004526252392679453, -0.03020882047712803, 0.04392208158969879, -0.033850591629743576, 0.0006310601020231843, -0.018041042611002922, 0.04522853344678879, -0.025728333741426468, -0.07116370648145676, -0.017014652490615845, 0.028848586603999138, -0.0469818077981472, -0.002257417654618621, -0.035306211560964584, 0.005912269931286573, 0.07806666195392609, -0.023672306910157204, 0.03516285866498947, 0.001117341686040163, -0.0012454077368602157, 0.011033988557755947, 0.0016338195418938994, -0.04453562945127487, 0.04010678827762604, -0.00024940239381976426, -0.016511600464582443, 0.0061346092261374, 0.0017124220030382276, 0.014276629313826561, 0.00048350825090892613, -0.015061627142131329, -0.02851126156747341, -0.0009249773574993014, 0.0503954142332077, 0.05065382644534111, 0.034423209726810455, -0.004687381908297539, 0.01485605537891388, -0.03458239883184433, 0.0027750639710575342, 0.007214751094579697, -0.0069219390861690044, -0.021747367456555367, -0.0013481394853442907, -0.014565842226147652, -0.06615491211414337, 0.005552958697080612, 0.006584647577255964, 0.011033983901143074, 0.01125660352408886, -0.010263900272548199, 0.002346134977415204, -0.012572446838021278, 0.025444678962230682, 0.06899705529212952, -0.06124616786837578, 0.004519700072705746, 0.007406548131257296, -0.0019278882537037134, -0.0013302186271175742, 0.007814374752342701, -0.026931997388601303, 0.0141545869410038, 0.012676366604864597, 0.010937601327896118, -0.0492744967341423, -0.02597150392830372, -0.004836428444832563, -0.010744837112724781, 0.014282731339335442, 0.005900011397898197, -0.013233229517936707, 0.028790060430765152, -0.019836928695440292, -0.035772114992141724, 0.036968082189559937, -0.007129627279937267, -0.01398539636284113, -0.0014029312878847122, -0.021577682346105576, -0.0009844988817349076, -0.03757771477103233, 0.03147704154253006, 0.038868051022291183, -0.024959038943052292, 0.016394497826695442, -0.04001036286354065, 0.005051019135862589, -0.042530082166194916, 0.056754350662231445, 0.0033405516296625137, -0.024426575750112534, -0.05951954424381256, 0.003687277901917696, -0.043044961988925934, -0.0025835952255874872, -0.002168379258364439, -0.024465151131153107, 0.030200155451893806, 0.016050070524215698, 0.002125512808561325, 0.031612128019332886, -0.024495359510183334, -0.008458862081170082, 0.042367056012153625, -0.04147358238697052, -0.04321978613734245, -0.04304151237010956, -0.05396106094121933, 0.007338068448007107, -0.016792764887213707, 0.016881778836250305, 0.007270550820976496, 0.0541103333234787, 0.036872778087854385, 0.04137272387742996, 0.024380628019571304, -0.014778992161154747, 0.004740486852824688, -0.034964971244335175, 0.007148559205234051, -0.09510843455791473, 0.016948653385043144, 0.028957728296518326, 0.007774793077260256, -0.0006362405838444829, 0.005378014408051968, -0.03072519786655903, 0.007154278922826052, -0.07163055986166, -0.030408602207899094, 0.03190791234374046, -0.018505632877349854, -0.004517625086009502, 0.014487169682979584, -0.05733701214194298, 0.022981539368629456, 0.031901199370622635, -0.039062004536390305, -0.0025078521575778723, -0.021354202181100845, 0.04392901808023453, -0.004525371827185154, 0.03607151284813881, -0.013860943727195263, -0.01968569867312908, 0.053311556577682495, 0.03642503172159195, -0.005762473680078983, 0.035335149616003036, -0.038430117070674896, 0.0227974820882082, 0.04060073569417, 0.019801268354058266, 0.015130042098462582, 0.017842844128608704, -0.03758437931537628, -0.040606360882520676, 0.03274445980787277, -0.011639632284641266, 0.004905008245259523, -0.031108174473047256, 0.0691826269030571, 0.03320537880063057, -0.032627034932374954, -0.07127901166677475, 0.0553685687482357, -0.06452549248933792, -0.004005447030067444, -0.021381516009569168, 0.02841096743941307, -0.015034109354019165, 0.05999843031167984, -0.008274046704173088, -0.004631715826690197, 0.07580386102199554, 0.012175140902400017, -0.0363009013235569, 0.0013885217485949397, 0.10917353630065918, 0.11513248831033707, 0.05158350244164467, -0.010387755930423737, 0.07358177751302719, -0.0024718698114156723, -0.039314981549978256, -0.0008644033805467188, -0.029872233048081398, 0.0005004204576835036, -0.006172158755362034, 0.03548088297247887, 0.06341709196567535, -0.061087850481271744, 0.06441143900156021, -0.04607561230659485, -0.0032179695554077625, 0.013736498542129993, 0.01830548793077469, 0.01630544476211071, 0.08478236198425293, 0.0031412604730576277, 0.03885399177670479, -0.039809491485357285, -0.03254149481654167, 0.035310178995132446, 0.0033776320051401854, 0.0011972488136962056, -0.010190291330218315, -0.016616933047771454, 0.024111703038215637, 0.010782778263092041, 0.013919839635491371, 0.08500649034976959, -0.040961336344480515, -0.010581448674201965, -0.0031650355085730553, -0.0011201025918126106, -0.018179146572947502, 0.021048109978437424, -0.010425383225083351, -0.02660718932747841, -0.04327698051929474, -0.036728981882333755, 0.000450111401733011, -0.009813684970140457, -0.020239992067217827, 0.023654447868466377, 0.01020786352455616, 0.010416686534881592, 0.02498607337474823, 0.0023420394863933325, -0.019179901108145714, -0.04152519628405571, -0.047801852226257324, -0.050663240253925323, -0.05636534467339516, 0.025259099900722504, -0.004327737260609865, 0.006508727557957172, -0.052442822605371475, -0.025152163580060005, -0.006508679129183292, -0.011577256955206394, 0.030347712337970734, -0.048213373869657516, -0.02858566679060459, -0.021043984219431877, 0.03272833302617073, 0.017404237762093544, 0.031635578721761703, 0.04537505283951759, -0.0313018262386322, 0.011975184082984924, 0.010140356607735157, 0.002801615511998534, 0.022568432614207268, 0.0034287439193576574, -0.018025390803813934, -0.06588638573884964, 0.024826152250170708, 0.014143976382911205, -0.025353368371725082, -0.08066320419311523, 0.00022933658328838646, 0.014533327892422676, 0.01618952862918377, 0.023232296109199524, -0.028890419751405716, 0.03118949756026268, -0.050516966730356216, -0.0034635846968740225, -0.012214016169309616, -0.006721027195453644, 0.0404011569917202, -0.010279525071382523, 0.09741402417421341, 0.018504781648516655, -0.01797516644001007, -0.022181035950779915, -0.0205000638961792, -0.01414310373365879, 0.018690895289182663, -0.041479308158159256, -0.007293626666069031, -0.03653031587600708, -0.08722985535860062, -0.026084523648023605, 0.014941265806555748, -0.009240498766303062, -0.05013241246342659, 0.02063172683119774, -0.0031078169122338295, -0.026836099103093147, 0.03311510384082794, -0.04151056706905365, 0.013236447237432003, -0.033655937761068344, -0.008188621141016483, -0.027894405648112297, 0.01141910906881094, 0.012112550437450409, 0.009010063484311104, -0.0030087814666330814, -0.03152879327535629, 0.010221313685178757, 0.005696005653589964, 0.018389400094747543, 0.02763521298766136, 0.021631479263305664, -0.014443312771618366 ]
[ -0.09333355724811554, -0.011246789246797562, -0.04251934960484505, 0.01950160600244999, 0.021859878674149513, -0.0498158261179924, -0.025410249829292297, 0.011160371825098991, 0.02677360735833645, -0.014536271803081036, 0.02393656224012375, -0.06663542240858078, -0.0008568390039727092, 0.0006145336083136499, 0.06598139554262161, 0.002243829658254981, 0.004403755534440279, -0.016806723549962044, 0.01174461841583252, 0.024465128779411316, 0.05306527018547058, -0.052915412932634354, -0.04108632728457451, -0.050849318504333496, 0.029620248824357986, 0.04133274778723717, 0.028602609410881996, -0.014590520411729813, -0.007023332640528679, -0.2392255663871765, 0.027025263756513596, -0.010623476468026638, 0.057735029608011246, -0.049704015254974365, -0.008001141250133514, 0.02771914191544056, 0.020774614065885544, 0.008792884647846222, -0.04192713648080826, 0.040301334112882614, 0.016215801239013672, 0.04015863686800003, -0.05174056068062782, 0.011531292460858822, 0.03968144208192825, 0.04024110361933708, -0.01904352568089962, -0.013801148161292076, -0.012349674478173256, -0.02949799783527851, -0.05513210967183113, 0.0008721569320186973, 0.02795894257724285, -0.015518291853368282, 0.010833178646862507, 0.025314541533589363, 0.033096794039011, 0.051296770572662354, 0.0007350853411480784, 0.02935609221458435, 0.01760520227253437, 0.010291296988725662, -0.1400633305311203, 0.044148288667201996, 0.0611933134496212, 0.036324359476566315, -0.03507361561059952, -0.023078028112649918, -0.015456951223313808, 0.10263088345527649, 0.03683147579431534, 0.04362250864505768, -0.03180212527513504, 0.025180775672197342, 0.026359878480434418, -0.0015635581221431494, 0.0022321431897580624, 0.04133837670087814, 0.025430334731936455, -0.04782959446310997, -0.07616779953241348, -0.016141915693879128, -0.04455927014350891, -0.015306003391742706, -0.03408599644899368, -0.0037614896427839994, -0.03567815199494362, 0.01775181293487549, 0.017797838896512985, 0.018610598519444466, 0.04661783576011658, 0.026669135317206383, 0.015421359799802303, -0.007357506547123194, -0.06583408266305923, -0.007192232646048069, -0.017598822712898254, 0.03333572298288345, -0.02165033482015133, 0.42315053939819336, -0.014843334443867207, -0.001007162150926888, 0.06854831427335739, 0.018661007285118103, -0.012477636337280273, -0.007240520790219307, -0.032316435128450394, -0.05139501765370369, -0.01993950828909874, -0.028245234861969948, 0.04642679914832115, -0.05162207409739494, 0.08466169983148575, -0.03534005209803581, 0.017210083082318306, -0.04306645691394806, 0.056133463978767395, 0.042771074920892715, 0.004105443600565195, 0.02960064262151718, -0.05269565433263779, 0.01769181527197361, 0.030735662207007408, -0.002952517941594124, 0.026858104392886162, 0.006023872178047895, -0.001847440260462463, 0.059453438967466354, 0.03717473894357681, 0.04219700023531914, 0.04960600659251213, -0.034838661551475525, -0.07514675706624985, -0.0014452326577156782, -0.005688877776265144, 0.0002504138683434576, 0.04789649322628975, -0.05355728045105934, -0.0014958855463191867, 0.010270248167216778, -0.038564328104257584, -0.00461970129981637, 0.03498511016368866, -0.007283669896423817, -0.025738781318068504, 0.10992096364498138, 0.005458611063659191, -0.04504703730344772, -0.004029684234410524, -0.05501049384474754, -0.012191993184387684, 0.00173953827470541, 0.013699236325919628, -0.06871145963668823, 0.024132877588272095, -0.03358409181237221, 0.05679239705204964, -0.009839030914008617, -0.02549610286951065, 0.02738278917968273, -0.039686769247055054, -0.019406801089644432, -0.06876090168952942, 0.08427029848098755, 0.0598616786301136, -0.0825287476181984, -0.014771510846912861, 0.004009701311588287, 0.003400790970772505, -0.07112883031368256, 0.0253891721367836, 0.0636952593922615, -0.015864776447415352, -0.004598211497068405, 0.035869911313056946, -0.02782696671783924, -0.03532084450125694, -0.04197763279080391, 0.03280389681458473, 0.0027066105976700783, 0.017657678574323654, 0.006086011417210102, -0.04508731886744499, 0.008685116656124592, -0.0408150851726532, -0.060673873871564865, -0.062547966837883, -0.007326290477067232, -0.02612963877618313, -0.03147917985916138, -0.03477197140455246, 0.002494578482583165, -0.07237183302640915, 0.06488635390996933, -0.04315292835235596, -0.04041988402605057, 0.03072238340973854, 0.021546825766563416, -0.003471863456070423, 0.004155777860432863, -0.03490639850497246, 0.050976600497961044, -0.008584856986999512, 0.030158430337905884, -0.09814969450235367, 0.007392860017716885, 0.03206491842865944, -0.02540881372988224, 0.08587474375963211, 0.041586071252822876, -0.021029522642493248, -0.0336061492562294, -0.009699626825749874, 0.0434827022254467, -0.03744335100054741, 0.0021374733187258244, 0.005835012067109346, -0.008916783146560192, 0.018470674753189087, 0.0585712194442749, -0.013896857388317585, -0.030637087300419807, -0.05785722658038139, -0.3370683491230011, -0.06523521989583969, -0.026704972609877586, -0.004818241111934185, 0.039186347275972366, -0.04722244665026665, 0.0023650112561881542, -0.049240224063396454, -0.018043557181954384, -0.013869699090719223, 0.08502993732690811, -0.02893206477165222, -0.01854400709271431, -0.052008211612701416, 0.011625838465988636, 0.0451519675552845, -0.04550100117921829, -0.025791211053729057, -0.026549262925982475, 0.017423756420612335, -0.001300571602769196, -0.012529408559203148, 0.02710287645459175, -0.04095027223229408, -0.013051766902208328, -0.03602595627307892, 0.11061257123947144, 0.007067228201776743, 0.04469568282365799, -0.036231618374586105, 0.03045428730547428, -0.02630799077451229, -0.012242449447512627, -0.036390263587236404, -0.007689282298088074, -0.0028688220772892237, 0.014844235964119434, 0.02608453668653965, 0.023683195933699608, -0.0360897034406662, -0.0649845227599144, 0.01252358965575695, -0.04652294144034386, -0.054203297942876816, -0.06440357863903046, 0.05332034453749657, -0.006401360500603914, -0.0603637769818306, 0.020510487258434296, 0.0654049813747406, 0.04024866223335266, -0.0036651722621172667, 0.050598129630088806, -0.009853930212557316, 0.00040126952808350325, -0.05529330298304558, -0.05891415476799011, -0.015240415930747986, -0.027253659442067146, 0.004629040136933327, 0.008295766077935696, 0.005750620737671852, 0.019611751660704613, -0.05817916616797447, 0.013928661122918129, -0.0023746120277792215, -0.013825234025716782, 0.01166036818176508, 0.0051671164110302925, 0.005134048871695995, -0.0006785645964555442, 0.10524335503578186, 0.037058379501104355, -0.0156546737998724, 0.014265916310250759, 0.05010710284113884, 0.0031465094070881605, 0.06612423062324524, 0.01450242567807436, 0.005495213437825441, 0.03642311319708824, -0.055938806384801865, 0.05135015398263931, -0.014106483198702335, -0.03564240783452988, 0.02751493826508522, 0.004533766303211451, 0.003309008199721575, 0.0432121716439724, 0.05081663653254509, -0.02372710220515728, 0.021396230906248093, 0.0012878755806013942, -0.03599023446440697, 0.09220188111066818, 0.00577226048335433, -0.24878786504268646, 0.04084618017077446, 0.06266949325799942, 0.04019763320684433, 0.007526398170739412, 0.0217021144926548, 0.05979439616203308, -0.04459603130817413, 0.037475623190402985, -0.029236335307359695, 0.028510037809610367, 0.08502588421106339, 0.025319745764136314, -0.0022467568051069975, 0.01868380978703499, -0.03074447065591812, 0.04002213478088379, -0.010398761369287968, -0.02508305013179779, -0.010223884135484695, 0.027135321870446205, -0.004578756634145975, 0.16991056501865387, -0.002283265348523855, 0.004335980396717787, 0.011887453496456146, -0.01852753385901451, 0.042761120945215225, 0.05396672710776329, 0.006117062643170357, -0.02257070504128933, 0.020533666014671326, 0.03682410717010498, -0.0025986982509493828, 0.04103144258260727, -0.028995750471949577, -0.005858113057911396, 0.0381571426987648, 0.02456779032945633, -0.009838388301432133, -0.0005398247158154845, 0.0031214712653309107, -0.05344081670045853, 0.035700466483831406, 0.05650242418050766, -0.027260467410087585, -0.04383362457156181, -0.01302366703748703, -0.03982086107134819, -0.0033346964046359062, -0.03260532394051552, -0.044773343950510025, -0.013325449079275131, 0.002831147750839591, 0.0226154588162899, 0.08454973995685577, -0.013474895618855953, -0.026890890672802925, -0.013924631290137768, -0.004578145686537027, -0.00793094839900732, -0.027199309319257736, 0.10833802819252014, 0.012573574669659138, 0.051933761686086655 ]
[ 0.0035300867166370153, 0.06797832995653152, -0.029828907921910286, 0.033591657876968384, -0.009663443081080914, -0.024698082357645035, -0.02417720854282379, 0.023622499778866768, -0.0529397651553154, 0.0021726014092564583, -0.02142815850675106, 0.03004194237291813, 0.04248877987265587, -0.03740990161895752, -0.012105616740882397, -0.0017010422889143229, 0.014105260372161865, 0.011575869284570217, 0.044031791388988495, -0.033185821026563644, -0.014275959692895412, -0.009595528244972229, 0.005374433007091284, -0.04709160327911377, 0.014161772094666958, 0.03489954397082329, -0.04369058087468147, 0.018721530213952065, 0.04656931012868881, -0.13521620631217957, -0.006196647882461548, -0.032135870307683945, -0.0025775344111025333, -0.003960776142776012, -0.025872068479657173, -0.000634865602478385, -0.055725935846567154, 0.0017305748770013452, 0.024403609335422516, 0.02385789155960083, 0.06451856344938278, 0.016468945890665054, -0.05046912655234337, 0.021702297031879425, -0.018463164567947388, -0.001502843340858817, -0.06572721898555756, 0.016590049490332603, -0.02669532783329487, -0.05179356038570404, -0.010002254508435726, -0.008774218149483204, -0.010823072865605354, 0.002772061387076974, -0.010239732451736927, -0.06114649027585983, 0.003421876346692443, -0.02099904790520668, -0.0006267284625209868, -0.01258935034275055, 0.02770693600177765, 0.005212635733187199, -0.054850317537784576, -0.01720467209815979, 0.007476832717657089, -0.019679861143231392, 0.002392779802903533, 0.03339143469929695, -0.013884998857975006, -0.008539007045328617, 0.02869730442762375, 0.029118819162249565, -0.061131592839956284, 0.018157444894313812, 0.024517709389328957, -0.0012593126157298684, 0.02700384519994259, 0.020989451557397842, -0.043563805520534515, -0.0030481445137411356, -0.03774638473987579, 0.01246741134673357, -0.029620155692100525, -0.007168901618570089, -0.032750874757766724, -0.031738199293613434, -0.022367006167769432, 0.02437146194279194, 0.01514775212854147, -0.03340134397149086, 0.02083180658519268, 0.038589540868997574, -0.017721133306622505, -0.003691354300826788, -0.0975671112537384, 0.03194938972592354, -0.008244136348366737, -0.004492536652833223, -0.023313036188483238, 0.7990952730178833, 0.021386079490184784, -0.015980200842022896, 0.013657513074576855, -0.009601390920579433, 0.012274937704205513, 0.023741092532873154, -0.04903225600719452, 0.016169527545571327, 0.006101315841078758, -0.029819117859005928, 0.02862291969358921, 0.0015669218264520168, 0.02206221967935562, 0.03845244646072388, 0.0018578657181933522, -0.006898008286952972, 0.007961017079651356, -0.02435264177620411, 0.0584837831556797, -0.024294307455420494, 0.003878046292811632, 0.02958853729069233, -0.011711636558175087, -0.018590401858091354, -0.010672747157514095, -0.18790696561336517, 0.00286653614602983, -7.654717826166978e-33, 0.015114262700080872, -0.026013853028416634, 0.022300172597169876, -0.03410365432500839, 0.0029572590719908476, 0.010307813063263893, -0.018323199823498726, -0.04690613970160484, -0.008099209517240524, -0.030275028198957443, -0.026880476623773575, 0.01368248462677002, 0.013598735444247723, -0.07090124487876892, 0.026813553646206856, -0.01308401208370924, 0.015181882306933403, 0.02038288675248623, 0.030669504776597023, -0.010160676203668118, 0.008267962373793125, 0.011167462915182114, -0.006502780597656965, 0.036081645637750626, -0.0015340531244874, 0.02899245172739029, 0.026390045881271362, -0.07933684438467026, 0.016773317009210587, -0.046566322445869446, -0.04109753295779228, 0.037499599158763885, -0.0124845951795578, 0.0014630010118708014, -0.01507348008453846, -0.02672615461051464, -0.03989043086767197, 0.015533550642430782, -0.03232776001095772, -0.0564030259847641, -0.02634631097316742, 0.022375809028744698, -0.0061935498379170895, 0.0010029779514297843, -0.010538417845964432, 0.01510736346244812, 0.025686873123049736, 0.04154014214873314, -0.013955015689134598, 0.042138129472732544, -0.021468786522746086, 0.011314081028103828, 0.000895683013368398, 0.038769129663705826, -0.04688332974910736, 0.05838501825928688, 0.057924818247556686, 0.00013770222722087055, 0.00690484931692481, 0.0309883002191782, 0.06346423923969269, -0.020999828353524208, -0.004591786302626133, 0.03255212679505348, 0.013824278488755226, -0.01917886734008789, -0.003192990319803357, 0.015572210773825645, 0.02241646498441696, 0.04887840896844864, -0.06129205599427223, 0.043939705938100815, 0.005000240635126829, 0.036334604024887085, 0.0031778598204255104, -0.023756632581353188, 0.011210750788450241, -0.006483831908553839, -0.025621322914958, 0.024926025420427322, 0.016975553706288338, -0.01546857226639986, -0.018441978842020035, -0.03802238404750824, -0.0033340821973979473, -0.04142472520470619, 0.022289235144853592, 0.0052177333272993565, -0.015725646167993546, 0.03774276748299599, 0.036999594420194626, 0.02672080136835575, -0.014860500581562519, 0.011310725472867489, -0.004801700357347727, 7.842483946927637e-33, -0.009721682406961918, -0.041799817234277725, 0.04130879417061806, 0.0011659859446808696, 0.03830401971936226, 0.01249845139682293, 0.03407213091850281, 0.01195952296257019, -0.05971034616231918, 0.0376686155796051, 0.005223162937909365, 0.01629537157714367, 0.008936737664043903, 0.050539158284664154, 0.0647478997707367, -0.014550263993442059, 0.027440056204795837, 0.017905153334140778, 0.01179773360490799, 0.03970819711685181, 0.010719412006437778, 0.0408024899661541, -0.039874959737062454, 0.0380571074783802, 0.030092038214206696, 0.005389349535107613, -0.0006272751488722861, -0.005756991915404797, -0.004085061140358448, 0.009762834757566452, 0.027306124567985535, -0.03357108682394028, -0.009915860369801521, -0.003623242024332285, -0.019340883940458298, 0.046285584568977356, 0.033073849976062775, 0.0005897662485949695, 0.017768902704119682, 0.01824217103421688, 0.03195295110344887, 0.007170211523771286, -0.016759701073169708, 0.023431500419974327, 0.006787856109440327, 0.0413547158241272, -0.026383772492408752, -0.001051227212883532, -0.03395799174904823, -0.005442409310489893, -0.0018828832544386387, 0.020777180790901184, 0.019503537565469742, 0.015084153972566128, 0.010792143642902374, -0.053462859243154526, -0.009706011973321438, 0.0343831442296505, 0.003486762521788478, -0.009027022868394852, -0.015319508500397205, -0.013765460811555386, -0.03095267526805401, -0.020522048696875572, -0.05157943069934845, -0.05685772746801376, -0.010217418894171715, -0.06695207208395004, -0.011792219243943691, -0.00024672376457601786, -0.03790924698114395, 0.033980436623096466, -0.003717554034665227, 0.002748762723058462, 0.015555527992546558, -0.0030825112480670214, -0.004746088758111, 0.037334464490413666, -0.03052516095340252, -0.0020018876530230045, 0.026421580463647842, 0.049290500581264496, 0.028666337952017784, -0.0016138354549184442, -0.0029675413388758898, 0.0045441375114023685, -0.017127087339758873, 0.0024776991922408342, 0.006651804782450199, 0.004223359748721123, 0.015870660543441772, -0.021370211616158485, -0.035077568143606186, 0.06113114953041077, -0.01106195617467165, -1.2851628206078658e-8, -0.03543395549058914, 0.019132019951939583, -0.004468938801437616, 0.0021415255032479763, 0.05209343507885933, 0.023436708375811577, 0.024001993238925934, -0.006935435347259045, -0.0360654853284359, -0.002386996988207102, 0.0407150536775589, -0.017950039356946945, -0.0029153027571737766, 0.041183143854141235, 0.010495264083147049, -0.01752314157783985, -0.006012282334268093, -0.011969348415732384, 0.04620763659477234, 0.00838562473654747, 0.04078151658177376, 0.02106110192835331, -0.023695316165685654, 0.015326447784900665, 0.011090666055679321, -0.011642432771623135, 0.04315534234046936, -0.07259047776460648, 0.01959887146949768, -0.020455332472920418, 0.027139583602547646, -0.024725066497921944, -0.022798171266913414, 0.015584253706037998, -0.019348498433828354, 0.002640550257638097, -0.004229538142681122, 0.03515290841460228, 0.011181579902768135, 0.019717855378985405, -0.013597841374576092, -0.010372793301939964, -0.04815378412604332, -0.030161285772919655, -0.02668716385960579, 0.016685163602232933, -0.014281094074249268, 0.0039354609325528145, 0.03323986753821373, -0.049210384488105774, 0.004108374007046223, -0.03969718515872955, 0.02887650951743126, -0.008066282607614994, 0.04114120826125145, -0.020437877625226974, 0.02606789954006672, -0.0370301827788353, -0.01187859009951353, -0.038820601999759674, 0.05987168103456497, 0.011399446986615658, 0.0036631517577916384, 0.00593301746994257 ]
kruskals-algorithm-in-ruby
https://markhneedham.com/blog/2012/12/23/kruskals-algorithm-in-ruby
false
2012-12-23 21:43:42
Kruskal's Algorithm using union find in Ruby
[ "ruby", "algorithms", "kruskal" ]
[ "Algorithms" ]
I recently wrote a blog post describing http://www.markhneedham.com/blog/2012/12/23/kruskals-algorithm-in-ruby/[my implementation] of http://en.wikipedia.org/wiki/Kruskal's_algorithm[Kruskal's algorithm] - a greedy algorithm using to find a minimum spanning tree (MST) of a graph - and while it does the job it's not particularly quick. It takes 20 seconds to calculate the MST for a 500 node, ~2000 edge graph. One way that we can improve the performance of the algorithm is by storing the MST in a union find/http://en.wikipedia.org/wiki/Disjoint-set_data_structure[disjoint set] data structure. To refresh, Kruskal's algorithm does the following: * sort edges +++<cite>+++E+++</cite>+++ in order of increasing cost * let +++<cite>+++T+++</cite>+++ = minimum spanning tree, +++<cite>+++m+++</cite>+++ = number of edges * for +++<cite>+++i+++</cite>+++=1 to +++<cite>+++m+++</cite>+++: ** let +++<cite>+++e+++</cite>+++ = selected edge +++<cite>+++(u,v)+++</cite>+++ ** if there's no way to go between +++<cite>+++u+++</cite>+++ and +++<cite>+++v+++</cite>+++ using edges in +++<cite>+++T+++</cite>+++: *** add +++<cite>+++e+++</cite>+++ to +++<cite>+++T+++</cite>+++ * return +++<cite>+++T+++</cite>+++ In the first version of the algorithm we stored the MST in an array and then we did a depth first search to check that adding an edge to the array wasn't going to create a cycle which would mean we no longer had an MST. As I understand it the way that we use the union find data structure is that we start out with +++<cite>+++n+++</cite>+++ connected components i.e. every node is in its own connected component. We then merge these components together as we come across new edges which connect nodes in different components until we only have one component left at which point we should have our MST. * sort edges +++<cite>+++E+++</cite>+++ in order of increasing cost * initialise union-find +++<cite>+++uf+++</cite>+++ with +++<cite>+++n+++</cite>+++ connected components * let +++<cite>+++T+++</cite>+++ = minimum spanning tree, +++<cite>+++m+++</cite>+++ = number of edges * for +++<cite>+++i+++</cite>+++=1 to +++<cite>+++m+++</cite>+++: ** let +++<cite>+++e+++</cite>+++ = selected edge +++<cite>+++(u,v)+++</cite>+++ ** if +++<cite>+++u+++</cite>+++ and +++<cite>+++v+++</cite>+++ not in same connected component in +++<cite>+++uf+++</cite>+++: *** merge +++<cite>+++u+++</cite>+++ and +++<cite>+++v+++</cite>+++ into same connected component in +++<cite>+++uf+++</cite>+++ *** add +++<cite>+++e+++</cite>+++ to +++<cite>+++T+++</cite>+++ * return +++<cite>+++T+++</cite>+++ I came across https://github.com/mluckeneder/Union-Find-Ruby[this bit of code] written by Michael Luckeneder which implements the union find data structure in Ruby and adapted that slightly to fit the nomenclature used in the https://class.coursera.org/algo2-2012-001/class[Algorithms 2] videos. The union find data structure looks like this: [source,ruby] ---- class UnionFind def initialize(n) @leaders = 1.upto(n).inject([]) { |leaders, i| leaders[i] = i; leaders } end def connected?(id1,id2) @leaders[id1] == @leaders[id2] end def union(id1,id2) leader_1, leader_2 = @leaders[id1], @leaders[id2] @leaders.map! {|i| (i == leader_1) ? leader_2 : i } end end ---- We have two methods: * +++<cite>+++connected?+++</cite>+++ which we use to check whether or not two nodes are in the same connected component. * +++<cite>+++union+++</cite>+++ which we use to put two nodes into the same connected component. The way it's implemented is that we have a collection of 'leaders' and initially each node is its own leader. As we find edges which belong in the MST we call +++<cite>+++union+++</cite>+++ passing the two nodes as arguments. After this method executes every node which has the same leader as the first node will now instead have the same leader as the second node. For example if we have a simple graph with edges 1 \-> 2 \-> 3 \-> 4 \-> 5 our initial union find data structure would look like this: [source,ruby] ---- > uf = UnionFind.new 5 => #<UnionFind:0x45e5a9b3 @leaders=[nil, 1, 2, 3, 4, 5]> ---- At this stage each node is in its own connected component but if we process the edge 1 \-> 2 we'd first check if those two nodes were already in the same connected component: [source,ruby] ---- > uf.connected?(1,2) => false ---- Given that they aren't we can call +++<cite>+++union+++</cite>+++: [source,ruby] ---- > uf.union(1,2) => [nil, 2, 2, 3, 4, 5] ---- As we can see from the output nodes 1 & 2 now both have the same leader since they are in the same connected component while the other nodes still remain on their own. We could then process the 2 \-> 3 edge which would put nodes 1, 2 & 3 together: [source,ruby] ---- > uf.union(2,3) => [nil, 3, 3, 3, 4, 5] ---- The outline for Kruskal's algorithm which makes use of this data structure is like so: [source,ruby] ---- set = UnionFind.new number_of_nodes @minimum_spanning_tree = [] edges = file.drop(1). map { |x| x.gsub(/\n/, "").split(" ").map(&:to_i) }. map { |one, two, weight| { :from => one, :to => two, :weight => weight}}. sort_by { |x| x[:weight]} edges.each do |edge| if !set.connected?(edge[:from], edge[:to]) @minimum_spanning_tree << edge set.union(edge[:from], edge[:to]) end end puts "MST: #{@minimum_spanning_tree}" puts "Cost: #{@minimum_spanning_tree.inject(0) { |acc, x| acc + x[:weight]}}" ---- This version of the algorithm runs in 1.9 seconds, a significant improvement on the initial version. The https://github.com/mneedham/algorithms2/blob/master/kruskals_union_set.rb[full code is on github] as usual!
null
null
[ 0.018897324800491333, 0.0014433267060667276, -0.015885498374700546, 0.04387069493532181, 0.06869379431009293, 0.0016208159504458308, 0.0289128627628088, 0.050109460949897766, 0.0007297976408153772, -0.021829335018992424, 0.011712830513715744, -0.02228986844420433, -0.05753675475716591, 0.011186902411282063, -0.0005271299742162228, 0.07209689170122147, 0.037461020052433014, -0.009288998320698738, -0.005189092829823494, -0.027327587828040123, 0.03350922837853432, 0.04900467023253441, 0.03675442934036255, 0.03519005700945854, 0.03996879607439041, 0.011118156835436821, 0.005100953858345747, 0.00010760906297946349, -0.036615584045648575, 0.02765868417918682, 0.04310533031821251, 0.012677624821662903, 0.00032874924363568425, -0.001169963856227696, 0.03336508572101593, -0.0038043814711272717, -0.034227751195430756, 0.008360274136066437, 0.002969243098050356, -0.004433995578438044, -0.05076231434941292, 0.047495946288108826, -0.029381608590483665, 0.02581649087369442, -0.04474025219678879, -0.0007516858167946339, -0.04566964879631996, 0.03504021465778351, -0.004109904635697603, -0.010563859716057777, -0.08723368495702744, 0.012107504531741142, 0.014083181507885456, 0.008189903572201729, -0.03451874479651451, 0.0520230196416378, 0.0273983646184206, -0.025225890800356865, 0.04725228622555733, -0.03249649703502655, -0.007538406178355217, -0.016430845484137535, 0.005560675170272589, 0.0390789657831192, 0.0025423732586205006, -0.03481558337807655, 0.014345803298056126, 0.05060036480426788, -0.041533634066581726, -0.008878938853740692, -0.003857977455481887, 0.00934458989650011, -0.021906161680817604, 0.021261129528284073, -0.011463495902717113, -0.03075512871146202, 0.03489486500620842, 0.0515139140188694, 0.023409506306052208, 0.053353019058704376, -0.026981262490153313, 0.04214388504624367, -0.029224911704659462, 0.024878516793251038, -0.022206386551260948, -0.048148013651371, -0.034283481538295746, -0.029027234762907028, -0.0924311950802803, 0.06039363518357277, -0.006054564844816923, -0.048308808356523514, 0.011863857507705688, 0.022193988785147667, -0.016873784363269806, -0.01041292306035757, 0.013957623392343521, 0.009987879544496536, -0.005533092189580202, -0.03541581332683563, -0.021189585328102112, -0.046844106167554855, 0.007643784862011671, 0.0005202424363233149, -0.08997165411710739, -0.03380945324897766, -0.020344698801636696, 0.015390826389193535, 0.021655093878507614, -0.011029868386685848, -0.017055103555321693, 0.003875911934301257, -0.04635060951113701, -0.010186156257987022, -0.0674142986536026, 0.06585970520973206, 0.0030156222637742758, -0.04774438589811325, -0.014828402549028397, 0.007144727744162083, 0.035598739981651306, 0.04127543047070503, 0.0049280873499810696, 0.08706390112638474, 0.016435127705335617, 0.022160276770591736, 0.028699763119220734, 0.0461939200758934, -0.04398946836590767, -0.052900660783052444, -0.0056587946601212025, 0.07381457090377808, 0.0027530428487807512, 0.0012300220550969243, -0.012600846588611603, -0.02943376824259758, 0.0033978652209043503, 0.0329756923019886, 0.03826182335615158, 0.03911568969488144, 0.010214230045676231, -0.07718018442392349, 0.008902029134333134, -0.01278549712151289, 0.01677848771214485, -0.021518874913454056, 0.008811654523015022, -0.012289187870919704, -0.008871832862496376, 0.0013925947714596987, 0.009140018373727798, 0.015994763001799583, 0.007246516179293394, -0.039419468492269516, 0.049043722450733185, 0.09454613924026489, 0.024307895451784134, 0.014092002995312214, -0.010545420460402966, 0.029698237776756287, 0.041988734155893326, 0.028737911954522133, 0.01838507317006588, 0.020487187430262566, -0.005269227549433708, -0.03359272703528404, 0.013592259027063847, 0.06815102696418762, -0.01217668317258358, -0.006069609429687262, -0.02286796271800995, -0.028257114812731743, 0.0443490669131279, -0.033597931265830994, -0.005577761679887772, 0.055530909448862076, 0.06946825981140137, 0.056438274681568146, 0.03813067078590393, -0.027232397347688675, -0.08882234245538712, 0.05379728600382805, 0.015405810438096523, 0.01698770560324192, -0.003845848375931382, -0.01819421350955963, 0.097102589905262, 0.04104131832718849, 0.022631211206316948, -0.006256310269236565, -0.08185464143753052, -0.08073660731315613, -0.0008831506129354239, -0.038306817412376404, 0.08784854412078857, -0.013960937969386578, -0.0036325857508927584, 0.028948290273547173, -0.0015040781581774354, 0.04697427153587341, 0.029865846037864685, -0.000310262490529567, 0.03683924302458763, -0.06671136617660522, -0.056252289563417435, 0.0585942417383194, 0.03201498091220856, -0.06680569052696228, -0.06708117574453354, 0.01913447119295597, -0.000779572466854006, -0.03225114569067955, 0.002880922518670559, -0.015161892399191856, -0.0028499318286776543, 0.02157583460211754, 0.05946626141667366, -0.004305316600948572, 0.055194608867168427, -0.03188960254192352, 0.030554993078112602, -0.002964500803500414, -0.032670922577381134, 0.02229142375290394, -0.005571513902395964, 0.11256887018680573, 0.060125526040792465, -0.01899884268641472, -0.029903771355748177, 0.02435663715004921, -0.006949623115360737, -0.037339188158512115, 0.010298648849129677, -0.016181260347366333, -0.013583456166088581, -0.01442650705575943, -0.062484100461006165, -0.023104563355445862, 0.055928412824869156, -0.036896608769893646, -0.03321254625916481, 0.0665300115942955, 0.0012388775357976556, 0.06777696311473846, 0.00919807143509388, -0.024418164044618607, -0.015141624957323074, -0.031485237181186676, -0.04844801872968674, 0.015528364107012749, 0.0014804006787016988, -0.008795872330665588, 0.02540125697851181, -0.025445638224482536, -0.021382100880146027, -0.026114922016859055, -0.007146090734750032, 0.016359740868210793, 0.05647435039281845, 0.055400919169187546, 0.00772168068215251, 0.04797555133700371, -0.018831267952919006, -0.008451301604509354, -0.028381727635860443, -0.07883481681346893, -0.021972397342324257, -0.03833751007914543, 0.027425015345215797, 0.012519325129687786, 0.011125595308840275, 0.0005478397943079472, 0.038025837391614914, 0.018018772825598717, 0.002499187830835581, -0.0012707720743492246, 0.045302387326955795, 0.007109324913471937, -0.04045595973730087, -0.02993563562631607, -0.03035326674580574, 0.047363221645355225, -0.0363362692296505, -0.031638409942388535, -0.003623864846304059, -0.054249346256256104, 0.07246793806552887, -0.053396664559841156, -0.01253683865070343, -0.022725103422999382, -0.02014107070863247, 0.04931614175438881, -0.01348764169961214, -0.006055289879441261, 0.05181381478905678, 0.025166558101773262, 0.02372721955180168, 0.0005271441186778247, 0.0184885673224926, -0.0003266622661612928, -0.0028741706628352404, 0.005805885884910822, 0.04067573696374893, 0.0025752985384315252, -0.016447128728032112, -0.028663234785199165, -0.00977420061826706, 0.0009446748299524188, -0.29007428884506226, 0.03556276112794876, -0.02680571749806404, -0.03898154944181442, 0.007025339175015688, -0.01899655908346176, 0.006035444792360067, -0.03527415916323662, -0.008677007630467415, -0.0005209653754718602, -0.015362215228378773, -0.009299837052822113, -0.046834468841552734, 0.07126729935407639, 0.021386295557022095, 0.0169964749366045, 0.018243808299303055, -0.0432431623339653, -0.012991520576179028, 0.050022657960653305, 0.0207784753292799, -0.07737515866756439, -0.0225151926279068, 0.005992148537188768, 0.03692011907696724, 0.05651723966002464, -0.10453616827726364, 0.039005205035209656, -0.06215284392237663, -0.00305124931037426, -0.0017570664640516043, -0.036287572234869, -0.002292002784088254, -0.03859628364443779, 0.008108999580144882, -0.03170143812894821, 0.03866032138466835, 0.0234070997685194, 0.01706594042479992, 0.024659937247633934, -0.01713700219988823, -0.033176880329847336, -0.00040475238347426057, 0.0031622855458408594, 0.09856435656547546, 0.028562214225530624, -0.05889950692653656, -0.025295032188296318, -0.010859574191272259, 0.07365492731332779, -0.015839984640479088, -0.026651503518223763, -0.008451578207314014, 0.033663637936115265, -0.01763296313583851, -0.04401875287294388, 0.016138654202222824, -0.038676679134368896, -0.055028073489665985, -0.04913090541958809, -0.009154191240668297, -0.02883164957165718, 0.012733138166368008, -0.04651389643549919, -0.0043622152879834175, -0.053156107664108276, -0.06318159401416779, -0.016705887392163277, 0.042322225868701935, -0.00884309597313404, -0.02614283375442028, 0.0292665958404541, -0.015849648043513298, -0.0865967720746994, -0.03163163736462593, -0.027543283998966217, -0.046280067414045334, 0.02063710428774357, -0.0017998329130932689, 0.0371382012963295, -0.05473622679710388, -0.04743265360593796, -0.008005145005881786, 0.008963325060904026, 0.035169947892427444, -0.022597962990403175, -0.0031149995047599077, -0.002048118505626917, -0.030851343646645546, -0.007947562262415886, 0.0522005669772625, -0.004153765272349119, -0.020539576187729836, -0.022507328540086746, 0.030941233038902283, 0.02771070972084999, 0.03290539234876633, 0.00733182393014431, 0.03475107625126839, 0.042711928486824036, 0.048051707446575165, -0.05003755912184715, 0.04396497458219528, -0.029917635023593903, -0.07492046058177948, 0.016259299591183662, -0.05928507819771767, 0.007718008942902088, 0.038867123425006866, -0.008703617379069328, -0.02975328080356121, -0.045094478875398636, 0.02324705198407173, -0.060280587524175644, -0.040450405329465866, 0.0006309730815701187, 0.028673989698290825, 0.017221735790371895, 0.01050510909408331, -0.00946816336363554, -0.05773118883371353, 0.017272591590881348, -0.013960077427327633, -0.021352455019950867, -0.057208724319934845, -0.026099929586052895, -0.01890426129102707, -0.0101386159658432, 0.011781937442719936, 0.03714889660477638, -0.020352927967905998, 0.040588993579149246, 0.03499042987823486, -0.020095791667699814, 0.020226065069437027, -0.0050026546232402325, -0.04469691589474678, -0.027407599613070488, 0.033429402858018875, 0.0075191291980445385, 0.00440470315515995, 0.015025992877781391, 0.0030803035479038954, 0.023434000089764595, 0.06305789947509766, 0.016804704442620277, 0.03500736877322197, -0.009953925386071205, 0.03514961153268814, 0.011493375524878502, -0.010122553445398808, -0.022893249988555908, 0.011201404966413975, -0.03691011667251587, 0.005736589431762695, -0.011140964925289154, 0.03879755362868309, -0.026026077568531036, -0.042529795318841934, -0.02566973865032196, 0.02395651489496231, -0.05108536034822464, 0.006058662198483944, -0.034510765224695206, 0.004319546744227409, 0.06894560903310776, -0.02848776988685131, 0.04521550238132477, -0.002416397677734494, -0.0017175204120576382, 0.01597949117422104, -0.0017524934373795986, -0.05299840867519379, 0.03110148385167122, 0.0029102726839482784, -0.0223467405885458, 0.00830911099910736, 0.014635676518082619, 0.03253151848912239, 0.006020859815180302, -0.021777965128421783, -0.031163979321718216, -0.0064107575453817844, 0.028261182829737663, 0.04791302606463432, 0.04017512500286102, -0.00527260871604085, 0.018852751702070236, -0.024656757712364197, 0.003186466172337532, 0.024548720568418503, -0.007709934841841459, -0.019403088837862015, -0.001811451744288206, -0.003035606350749731, -0.06326035410165787, 0.026120826601982117, 0.007920452393591404, 0.00048201793106272817, 0.02629678137600422, -0.0026616158429533243, 0.015614247880876064, -0.02384570799767971, 0.031370554119348526, 0.06762012094259262, -0.05395589768886566, -0.002951001515612006, -0.0010947363916784525, 0.007776410784572363, -0.001097764354199171, -0.00970032811164856, -0.03912417218089104, -0.0031697354279458523, 0.008777270093560219, 0.018492180854082108, -0.02669774554669857, -0.025166703388094902, -0.002815376501530409, -0.005090642720460892, -0.005214792676270008, 0.012861869297921658, -0.0111287422478199, 0.012268048711121082, -0.020110957324504852, -0.018827814608812332, 0.03985247761011124, -0.009316768497228622, -0.013016843236982822, -0.012293384410440922, -0.031633831560611725, 0.010734163224697113, -0.03683312237262726, 0.03136147931218147, 0.03370220214128494, -0.012204829603433609, 0.01861209236085415, -0.051026202738285065, 0.010001697577536106, -0.01089958380907774, 0.042645037174224854, -0.01156175509095192, -0.02159411832690239, -0.052332185208797455, 0.012861223891377449, -0.04049157723784447, -0.0017212486127391458, -0.0032192436046898365, -0.01505996473133564, 0.01140645332634449, 0.023073766380548477, -0.0012281452072784305, 0.03009796142578125, -0.01959356851875782, -0.02658761292695999, 0.05882535129785538, -0.04685639590024948, -0.03599671646952629, -0.03387300297617912, -0.040693722665309906, 0.024021655321121216, -0.015847142785787582, 0.020092515274882317, -0.0189723651856184, 0.05343464016914368, 0.0384707972407341, 0.0391572080552578, 0.023060044273734093, -0.019282646477222443, 0.012767840176820755, -0.02942727878689766, 0.011858045123517513, -0.08926289528608322, -0.004756690934300423, 0.03983636572957039, 0.01053792517632246, 0.006166188977658749, -0.005732385907322168, -0.027707168832421303, 0.007206948474049568, -0.05929787829518318, -0.027957847341895103, 0.03213860094547272, -0.013376720249652863, -0.009103905409574509, 0.0014568386832252145, -0.05598897486925125, 0.021271565929055214, 0.0451401062309742, -0.04177466407418251, -0.0020501494873315096, -0.03766874969005585, 0.05208595469594002, -0.015400540083646774, 0.042370762676000595, -0.018592117354273796, -0.03164783865213394, 0.06582547724246979, 0.03652401268482208, 0.009190848097205162, 0.042849101126194, -0.02702494151890278, 0.021068433299660683, 0.03692632168531418, 0.0051436894573271275, 0.02527223341166973, 0.025721820071339607, -0.035462040454149246, -0.03546375781297684, 0.03899715840816498, -0.02782565727829933, -0.0006258191424421966, -0.03021175041794777, 0.0707453116774559, 0.031229469925165176, -0.024986665695905685, -0.07819728553295135, 0.037999894469976425, -0.04404868558049202, -0.001568442676216364, -0.02375403605401516, 0.021920718252658844, -0.027713289484381676, 0.06099771708250046, -0.021737972274422646, 0.00491904653608799, 0.07278778403997421, -0.0006745113641954958, -0.05073032155632973, -0.012739656493067741, 0.09899734705686569, 0.10501094907522202, 0.0621715746819973, -0.012132203206419945, 0.07582470029592514, 0.003766060573980212, -0.041402604430913925, -0.010689469054341316, -0.007887833751738071, 0.004546753130853176, 0.002293138997629285, 0.011446690186858177, 0.053394615650177, -0.04211375489830971, 0.06744582951068878, -0.04038397595286369, -0.001815721858292818, 0.022632190957665443, 0.009812017902731895, 0.015611795708537102, 0.07969643175601959, 0.003630271879956126, 0.04173826053738594, -0.032875292003154755, -0.037148404866456985, 0.029250429943203926, 0.0014205619227141142, 0.0036820692475885153, -0.0008401093655265868, -0.018067706376314163, 0.017533401027321815, 0.018284877762198448, 0.027031874284148216, 0.08552475273609161, -0.048066671937704086, -0.013499623164534569, -0.008099792525172234, 0.010481083765625954, -0.009496544487774372, 0.01530963834375143, -0.022745180875062943, -0.021360155194997787, -0.04179553687572479, -0.053610458970069885, -0.010505526326596737, -0.00774012878537178, -0.00870995782315731, 0.017313821241259575, -0.012699872255325317, 0.01670665107667446, 0.020448200404644012, -0.00032311311224475503, -0.03584802523255348, -0.04427440091967583, -0.04662751406431198, -0.04992007091641426, -0.05288895219564438, 0.023683156818151474, -0.007277811411768198, 0.01501435600221157, -0.05067610740661621, -0.022572694346308708, -0.005047833081334829, -0.014817309565842152, 0.042648427188396454, -0.04751244932413101, -0.005120792891830206, -0.019944075495004654, 0.04463772848248482, 0.005491912830621004, 0.037466999143362045, 0.057438924908638, -0.02661626972258091, 0.016690600663423538, 0.019653892144560814, 0.0015797106316313148, 0.03158069774508476, 0.017061881721019745, -0.00848805345594883, -0.07448430359363556, 0.00016307824989780784, 0.007322735618799925, -0.021583186462521553, -0.0910908505320549, 0.001279572257772088, 0.019075829535722733, 0.011715293861925602, 0.02442301996052265, -0.03879256173968315, 0.014398506842553616, -0.03159637376666069, 0.007356840185821056, -0.0046902867034077644, 0.0021753902547061443, 0.030117960646748543, -0.017970794811844826, 0.0842394307255745, 0.0023689090739935637, -0.017314905300736427, -0.03553194925189018, -0.027782071381807327, -0.010670379735529423, 0.018597310408949852, -0.04984024167060852, 0.01724325120449066, -0.0464024692773819, -0.09815818071365356, -0.017855865880846977, 0.011546149849891663, -0.018946832045912743, -0.04120057076215744, 0.015195434913039207, -0.0004882611974608153, -0.032888446003198624, 0.027756860479712486, -0.04975588992238045, 0.009678864851593971, -0.03916378319263458, -0.0032350197434425354, -0.005933178123086691, 0.01876390352845192, 0.005284314509481192, 0.003075805027037859, 0.006555672734975815, -0.0408971942961216, 0.0057538659311831, -0.0015949240187183022, 0.01792372204363346, 0.032484788447618484, 0.02846415527164936, -0.010367637500166893 ]
[ -0.08457902073860168, -0.0016934062587097287, -0.03827879950404167, 0.018738796934485435, 0.029432035982608795, -0.04708950221538544, -0.02807740308344364, 0.016678497195243835, 0.023142732679843903, -0.0034692289773374796, 0.009619970805943012, -0.06770990788936615, 0.006974398624151945, -0.013132957741618156, 0.05754227191209793, -0.012485666200518608, 0.0019512419821694493, -0.01637137494981289, -0.019450312480330467, 0.029857691377401352, 0.04785803705453873, -0.04880325123667717, -0.023498374968767166, -0.057123661041259766, 0.025929685682058334, 0.04340611770749092, 0.03797069936990738, -0.033086877316236496, 0.018002115190029144, -0.23450608551502228, 0.01665981113910675, -0.003992924466729164, 0.06862930208444595, -0.04084602743387222, -0.013979010283946991, 0.029584191739559174, 0.014494665898382664, 0.005261791869997978, -0.023480752483010292, 0.045385561883449554, 0.023495400324463844, 0.03854421526193619, -0.04981428384780884, -0.023179611191153526, 0.038655154407024384, 0.027621570974588394, -0.029230400919914246, -0.007060721982270479, -0.01788480021059513, -0.01833139732480049, -0.06737107783555984, -0.011064461432397366, 0.0333915650844574, -0.014396891929209232, 0.03138655796647072, 0.022937748581171036, 0.0486978217959404, 0.04976854473352432, 0.004322443623095751, 0.029642334207892418, 0.011884735897183418, -0.0005736347520723939, -0.12984789907932281, 0.045946408063173294, 0.03508731722831726, 0.023937080055475235, -0.046267230063676834, -0.01512223668396473, -0.013131046667695045, 0.0940614640712738, 0.05472056195139885, 0.016328686848282814, -0.013243712484836578, 0.042053140699863434, 0.030111951753497124, 0.006296450737863779, -0.004844233393669128, 0.030364176258444786, 0.027070993557572365, -0.05363653600215912, -0.05770358815789223, -0.009121465496718884, -0.05251786485314369, -0.009263904765248299, -0.0379091314971447, 0.0004664754669647664, -0.02835720404982567, 0.0221616942435503, 0.010106314904987812, 0.03145606443285942, 0.06382084637880325, 0.03649628534913063, 0.03752889111638069, -0.016908589750528336, -0.07710655778646469, -0.013704431243240833, -0.02165139839053154, 0.0372406467795372, -0.03584010899066925, 0.4500509202480316, -0.013750948011875153, -0.008606880903244019, 0.0672178640961647, 0.01920410431921482, -0.011165883392095566, -0.010433112271130085, -0.022243380546569824, -0.061076242476701736, -0.013209720142185688, -0.031698551028966904, 0.03603314608335495, -0.025458939373493195, 0.06121382862329483, -0.03144930675625801, 0.018175611272454262, -0.03093431331217289, 0.0646570697426796, 0.04255300387740135, 0.0026133882347494364, 0.03519625589251518, -0.039368633180856705, 0.03807494789361954, 0.009491706266999245, 0.009215890429913998, 0.026972690597176552, 0.015352342277765274, 0.012002426199615002, 0.055890195071697235, 0.03179793804883957, 0.04657230153679848, 0.052133116871118546, -0.011239377781748772, -0.06929275393486023, -0.009792312048375607, -0.0367523692548275, -0.008494819514453411, 0.031911902129650116, -0.028875283896923065, -0.02407650277018547, 0.02993202768266201, -0.03568144142627716, -0.006839602254331112, 0.04729129374027252, -0.008584481664001942, -0.03732800483703613, 0.1161108911037445, 0.0023696969728916883, -0.05703523010015488, 0.007563633378595114, -0.06667263060808182, -0.014245953410863876, 0.0083231870085001, 0.006934868171811104, -0.06543992459774017, 0.006883850786834955, -0.041887473315000534, 0.02115880325436592, -0.01963895931839943, -0.038016173988580704, 0.030117925256490707, -0.04515115171670914, -0.01870792917907238, -0.07216624170541763, 0.04742730036377907, 0.06782074272632599, -0.08091609925031662, -0.00035255655529908836, 0.01795376092195511, 0.007042712066322565, -0.09481333941221237, 0.024485791102051735, 0.05213954672217369, -0.022399570792913437, 0.017856450751423836, 0.026812275871634483, -0.0494118332862854, -0.047278571873903275, -0.009964755736291409, 0.05189820006489754, -0.006700803525745869, 0.028708217665553093, 0.017826423048973083, -0.0717548131942749, 0.010536174289882183, -0.04097701609134674, -0.07164020836353302, -0.05930228903889656, -0.0036438212264329195, -0.027928680181503296, -0.028181230649352074, -0.03174126148223877, 0.009333106689155102, -0.08424467593431473, 0.05000860616564751, -0.03342517465353012, -0.04363971948623657, 0.024098655208945274, 0.013770095072686672, -0.027052180841565132, -0.008308982476592064, -0.01378830149769783, 0.04418851435184479, -0.014913525432348251, 0.03394904360175133, -0.054482582956552505, 0.0070935459807515144, 0.045291706919670105, -0.025784356519579887, 0.06677425652742386, 0.028318028897047043, -0.004810600075870752, -0.03399385139346123, 0.00454176589846611, 0.033177293837070465, -0.01956777274608612, -0.0034084690269082785, -0.009420952759683132, -0.016705874353647232, 0.02691059187054634, 0.050728797912597656, -0.01543071586638689, -0.035731710493564606, -0.03804296255111694, -0.34187278151512146, -0.036399513483047485, -0.024278365075588226, 0.025359949097037315, 0.045918673276901245, -0.054881226271390915, 0.015407365746796131, -0.05406425520777702, 0.014884322881698608, 0.0016001525800675154, 0.08986490964889526, 0.005117245018482208, -0.013792691752314568, -0.0573248416185379, 0.0202380008995533, 0.025320902466773987, -0.04095994308590889, -0.013052249327301979, -0.03145230934023857, 0.0182202085852623, -0.004918708000332117, -0.010298495180904865, -0.004179778508841991, -0.03187787905335426, -0.021326037123799324, -0.053864624351263046, 0.12240666151046753, 0.007359983399510384, 0.04880952835083008, -0.028960950672626495, 0.03420383483171463, -0.011757591739296913, -0.014880061149597168, -0.05548996478319168, -0.008085780777037144, 0.002876585815101862, 0.03188488259911537, 0.019307365640997887, 0.006320723332464695, -0.03176040202379227, -0.050465550273656845, 0.0212270375341177, -0.030181175097823143, -0.03456704691052437, -0.06387214362621307, 0.053900353610515594, -0.009240451268851757, -0.05838751792907715, 0.018664315342903137, 0.06646677851676941, 0.034087274223566055, -0.0035843676887452602, 0.054927974939346313, 0.011120117269456387, -0.007670886814594269, -0.0367649644613266, -0.07152067869901657, -0.001928818179294467, -0.0014157068217173219, -0.002794466447085142, 0.018695766106247902, 0.00753621244803071, 0.025718966498970985, -0.05447614565491676, 0.011502726934850216, 0.02378421649336815, 0.004779654089361429, 0.012835501693189144, 0.005493068136274815, -0.002899325219914317, 0.0015098302392289042, 0.08894698321819305, 0.020407116040587425, -0.0007619597599841654, 0.023087283596396446, 0.038097135722637177, 0.012181129306554794, 0.0473041869699955, 0.01693282462656498, 0.018892504274845123, 0.0444142147898674, -0.0554385744035244, 0.04048440232872963, -0.032562702894210815, -0.019004851579666138, 0.03615253046154976, 0.024452244862914085, -0.014624939300119877, 0.06129749119281769, 0.05331263691186905, -0.01342376135289669, 0.0012189432745799422, -0.0021714947652071714, -0.03739834949374199, 0.07642418891191483, 0.01506419014185667, -0.278378427028656, 0.0450160875916481, 0.04741668328642845, 0.029666097834706306, -0.01160433515906334, 0.014820861630141735, 0.04628127068281174, -0.0506567507982254, 0.021735018119215965, -0.02771424502134323, -0.007589144166558981, 0.07509732246398926, 0.013298043049871922, -0.006651157513260841, 0.026790648698806763, -0.022799992933869362, 0.05995379388332367, -0.013333198614418507, -0.007469673175364733, 0.010361169464886189, 0.02860701084136963, -0.010771910659968853, 0.16405676305294037, -0.002689455170184374, 0.026093635708093643, 0.017738256603479385, -0.009902668185532093, 0.005935381632298231, 0.07032564282417297, -0.005371337756514549, -0.028931178152561188, 0.016567304730415344, 0.025669336318969727, 0.005576382391154766, 0.03989056125283241, -0.015850700438022614, -0.012854590080678463, 0.028053803369402885, 0.0013606979046016932, -0.007747253403067589, 0.019299747422337532, -0.0023995658848434687, -0.0331520214676857, 0.03756994381546974, 0.05606172978878021, -0.04258183762431145, -0.03418543189764023, -0.012121076695621014, -0.042296670377254486, -0.005325093865394592, -0.02859189733862877, -0.03746124729514122, -0.030029021203517914, -0.015283079817891121, -0.00019068543042521924, 0.07593120634555817, -0.00310932332649827, -0.027821188792586327, -0.0221710205078125, -0.013904440216720104, -0.0314943753182888, -0.036033712327480316, 0.08023582398891449, 0.026967275887727737, 0.020112615078687668 ]
[ -0.011580751277506351, 0.052344948053359985, -0.014260570518672466, 0.0333457887172699, -0.0192672498524189, -0.01689654029905796, -0.033155497163534164, 0.005047740414738655, -0.06117498502135277, 0.008232713676989079, -0.04943668469786644, -0.00970805436372757, 0.03941553831100464, -0.01567884534597397, -0.021912917494773865, 0.0010869171237573028, 0.008802266791462898, 0.016532912850379944, 0.039792854338884354, -0.04923448711633682, -0.008428421802818775, 0.008859727531671524, 0.004030318930745125, -0.040860313922166824, 0.024165069684386253, 0.021268805488944054, -0.049063462764024734, 0.007389065809547901, 0.04628444090485573, -0.12361304461956024, -0.00135568727273494, -0.042677849531173706, -0.0013150107115507126, 0.017552368342876434, -0.03385339304804802, -0.014378011226654053, -0.03666750714182854, 0.014598910696804523, 0.017477737739682198, 0.027503948658704758, 0.019783027470111847, 0.026772042736411095, -0.043600521981716156, 0.014002371579408646, 0.013833978213369846, 0.010998490266501904, -0.07461102306842804, 0.003100795205682516, -0.021693313494324684, -0.01777677983045578, -0.02069559134542942, -0.016552066430449486, -0.016167039051651955, 0.010662506334483624, 0.007634259294718504, -0.04503925144672394, -0.019894227385520935, 0.006250809412449598, 0.01683259941637516, -0.0055253636091947556, 0.03822007030248642, 0.010660639964044094, -0.04105164855718613, -0.018283430486917496, -0.018862459808588028, -0.01979766972362995, -0.039593763649463654, 0.039070650935173035, 0.010883712209761143, 0.0010724477469921112, 0.027794642373919487, 0.026409318670630455, -0.06251867115497589, 0.010946011170744896, 0.013245785608887672, 0.018082471564412117, 0.020773200318217278, 0.012528186663985252, -0.04479142650961876, 0.0066754999570548534, -0.03252216801047325, 0.013456477783620358, -0.05525445565581322, -0.005535030271857977, -0.033910349011421204, -0.032891660928726196, -0.022231150418519974, 0.034283582121133804, 0.019527098163962364, -0.028020942583680153, 0.015124213881790638, 0.012035300023853779, -0.0028709822800010443, -0.014247785322368145, -0.07745020091533661, 0.02331693284213543, -0.023084139451384544, 0.017872871831059456, -0.014192449860274792, 0.8113604784011841, 0.010371572338044643, -0.01207537017762661, -0.02500825747847557, 0.008962844498455524, -0.0002538998960517347, -0.014923212118446827, -0.011835543438792229, 0.0122512923553586, -0.00228117685765028, -0.05881015583872795, 0.02707528881728649, 0.018231425434350967, 0.022767547518014908, 0.031029876321554184, -0.0020561902783811092, -0.0032801406923681498, 0.015402009710669518, -0.016467556357383728, 0.05774512514472008, -0.009274540469050407, -0.0029240213334560394, 0.008879551663994789, -0.026909109205007553, -0.024657636880874634, -0.01858249492943287, -0.1813119351863861, 0.009594904258847237, -7.245162370029046e-33, 0.040370434522628784, -0.018608219921588898, 0.030914710834622383, -0.027625899761915207, -0.0019124806858599186, -0.0045981574803590775, -0.024626905098557472, -0.06807601451873779, -0.019656214863061905, -0.017529308795928955, -0.029919734224677086, 0.02051340602338314, 0.014681157656013966, -0.04765988141298294, 0.020840315148234367, -0.008316810242831707, 0.01605735346674919, 0.01616448350250721, 0.0020176616962999105, -0.009460089728236198, 0.018431611359119415, 0.017085183411836624, -0.020379899069666862, 0.04898452013731003, 0.011917448602616787, 0.03547903895378113, 0.01573042944073677, -0.07425038516521454, 0.0019343362655490637, -0.031593285501003265, -0.056131456047296524, 0.032899949699640274, -0.0009186280076391995, -0.0010645856382325292, -0.03568257391452789, -0.025061743333935738, -0.030242757871747017, 0.004159850999712944, -0.014898036606609821, -0.06177690252661705, -0.03222469985485077, 0.02390257827937603, -0.008168051950633526, 0.0026131439954042435, -0.017694974318146706, 0.010238791815936565, 0.016188982874155045, 0.05022437870502472, 0.0031019849702715874, 0.034105293452739716, -0.013435695320367813, 0.021578576415777206, 0.0033649178221821785, 0.03330222889780998, -0.04290417209267616, 0.0352887399494648, 0.054350417107343674, 0.02420574426651001, 0.025076957419514656, 0.04409664869308472, 0.02306089922785759, -0.03618316352367401, 0.00927998498082161, 0.04828573763370514, 0.0046631270088255405, -0.013847382739186287, 0.017053866758942604, 0.026179881766438484, 0.02393152564764023, 0.03827420249581337, -0.06278642266988754, 0.04865926504135132, -0.009258026257157326, 0.012890738435089588, -0.004436689428985119, -0.03256387636065483, 0.015993516892194748, 0.010665876790881157, -0.034994713962078094, 0.030612917616963387, -0.009401212446391582, -0.019210536032915115, -0.0044776624999940395, -0.04552341252565384, 0.01128284353762865, -0.03326983004808426, 0.03512683883309364, -0.002199340146034956, -0.01379464566707611, 0.042915958911180496, 0.021181069314479828, 0.04856361821293831, 0.0062686000019311905, 0.003769126022234559, 0.007809431292116642, 7.947055924376788e-33, 0.029342586174607277, -0.045546647161245346, 0.0545223243534565, -0.012275072745978832, 0.01113305427134037, -0.0015406400198116899, 0.028107572346925735, 0.01853337325155735, -0.059474192559719086, 0.05396718531847, -0.0013470484409481287, -0.006237540859729052, 0.0019982755184173584, 0.042304299771785736, 0.052995938807725906, -0.02026193216443062, 0.03787235915660858, 0.017221104353666306, 0.006512044928967953, 0.034705862402915955, -0.007935438305139542, 0.027445772662758827, -0.015459226444363594, 0.030118510127067566, 0.03694770485162735, 0.035362157970666885, -0.020922396332025528, -0.012316867709159851, -0.024584989994764328, -0.012543907389044762, 0.021820127964019775, -0.04036303237080574, -0.01308377180248499, -0.0014095930382609367, -0.0029489791486412287, 0.04623619467020035, 0.043486423790454865, 0.0005973937804810703, 0.031330399215221405, 0.016170699149370193, 0.023917848244309425, 0.05696972459554672, -0.015525851398706436, 0.04178335890173912, 0.021554069593548775, 0.028912462294101715, -0.017150966450572014, 0.007987490855157375, -0.018961621448397636, -0.006002358160912991, -0.0032257623970508575, 0.03366429731249809, 0.010334801860153675, 0.013408364728093147, 0.012258865870535374, -0.048454683274030685, -0.022780464962124825, 0.043524596840143204, -0.030955389142036438, -0.010718083009123802, -0.01750565879046917, -0.024226952344179153, -0.017732534557580948, -0.00931165274232626, -0.030680840834975243, -0.030859289690852165, -0.004555633757263422, -0.028294045478105545, 0.012809157371520996, -0.014596352353692055, -0.03376175835728645, 0.008205893449485302, -0.009253943338990211, 0.013453000225126743, 0.019587643444538116, 0.0010102110682055354, -0.026646509766578674, 0.027820587158203125, -0.007284918334335089, 0.020648302510380745, 0.020519329234957695, 0.031219448894262314, 0.03643319010734558, -0.014885347336530685, 0.027702588587999344, 0.009596206247806549, -0.03071766532957554, 0.023291217163205147, 0.02100093849003315, 0.0012923931935802102, -0.007722369860857725, -0.04418463259935379, -0.03242933005094528, 0.02946937270462513, -0.019807085394859314, -1.281610995107485e-8, -0.03354397043585777, 0.003123506437987089, -0.02761712297797203, 0.010379190556704998, 0.04050184786319733, 0.0344429649412632, 0.0024274864699691534, 0.006086871959269047, -0.028101881965994835, -0.011853557080030441, 0.03171808645129204, -0.02212013490498066, -0.01391462329775095, 0.027702506631612778, 0.006476824637502432, -0.043071065098047256, 0.006826795171946287, -0.00982515886425972, 0.044396888464689255, 0.02154260315001011, 0.032425567507743835, 0.035051584243774414, -0.007052555680274963, 0.017176974564790726, 0.003212947864085436, 0.004686401225626469, 0.03574232757091522, -0.06020428612828255, 0.027688464149832726, 0.00023754517314955592, 0.022994600236415863, -0.033600855618715286, -0.032152287662029266, 0.024087579920887947, -0.010781344957649708, -0.008984525687992573, -0.0032035773620009422, 0.05297669768333435, 0.006171501241624355, 0.01949363574385643, -0.00944287795573473, -0.006256217136979103, -0.046090204268693924, -0.02795567736029625, -0.041182342916727066, 0.015962185338139534, -0.02160581387579441, 0.008063987828791142, 0.033602725714445114, -0.051061827689409256, 0.010741189122200012, -0.04698263108730316, 0.028232404962182045, -0.007689797785133123, 0.035978369414806366, -0.018771473318338394, 0.039842501282691956, -0.04272715747356415, -0.0015563744818791747, -0.044964175671339035, 0.044438134878873825, -0.0006831827340647578, 0.010843200609087944, -0.0020770712289959192 ]
kruskals-algorithm-using-union-find-in-ruby
https://markhneedham.com/blog/2012/12/23/kruskals-algorithm-using-union-find-in-ruby
false
2012-12-15 16:31:05
Prim's algorithm using a heap/priority queue in Ruby
[ "algo-class", "algorithms" ]
[ "Algorithms" ]
I recently wrote a blog post describing http://www.markhneedham.com/blog/2012/12/15/prims-algorithm-in-ruby/[my implementation of Prim's Algorithm] for the https://class.coursera.org/algo2-2012-001[Algorithms 2] class and while it comes up with the right answer for the supplied data set it takes almost 30 seconds to do so! In one of the lectures Tim Roughgarden points out that we're doing the same calculations multiple times to work out the next smallest edge to include in our minimal spanning tree and could use a heap to speed things up. A heap works well in this situation because one of the reasons we might use a heap is to speed up repeated minimum computations i.e. working out the minimum weighted edge to add to our spanning tree. The pseudocode for the Prim's algorithm which uses a heap reads like this: * Let +++<cite>+++X+++</cite>+++ = nodes covered so far, +++<cite>+++V+++</cite>+++ = all the nodes in the graph, +++<cite>+++E+++</cite>+++ = all the edges in the graph * Pick an arbitrary initial node +++<cite>+++s+++</cite>+++ and put that into +++<cite>+++X+++</cite>+++ * for +++<cite>+++v+++</cite>+++ ∈ +++<cite>+++V+++</cite>+++ - +++<cite>+++X+++</cite>+++ ** key[v] = cheapest edge +++<cite>+++(u,v)+++</cite>+++ with +++<cite>+++v+++</cite>+++ ∈ +++<cite>+++X+++</cite>+++ * while +++<cite>+++X+++</cite>+++ ≠ +++<cite>+++V+++</cite>+++: ** let +++<cite>+++v+++</cite>+++ = extract-min(heap) _(i.e. v is the node which has the minimal edge cost into +++<cite>+++X+++</cite>+++)_ ** Add +++<cite>+++v+++</cite>+++ to +++<cite>+++X+++</cite>+++ ** for each edge +++<cite>+++v, w+++</cite>+++ ∈ +++<cite>+++E+++</cite>+++ *** if w ∈ +++<cite>+++V+++</cite>+++ - +++<cite>+++X+++</cite>+++ (_i.e. w is a node which hasn't yet been covered)_ **** Delete +++<cite>+++w+++</cite>+++ from heap **** recompute key[w] = min(key[w], weight(v, w)) _(key[w] would only change if the weight of the edge (v,w) is less than the current weight for that key)._ **** reinsert +++<cite>+++w+++</cite>+++ into the heap We store the uncovered nodes in the heap and set their priority to be the cheapest edge from that node into the set of nodes which we're already covered. I came across the http://rubydoc.info/gems/PriorityQueue/0.1.2/frames[PriorityQueue] gem which actually seems to be better than a heap because we can have the node as the key and then set the priority of the key to be the edge weight. When you extract the minimum value from the priority queue it makes use of this priority to return the minimum one. The outline of my solution to this problem looks like this: [source,ruby] ---- MAX_VALUE = (2**(0.size * 8 -2) -1) adjacency_matrix = create_adjacency_matrix @nodes_spanned_so_far, spanning_tree_cost = [1], 0 heap = PriorityQueue.new nodes_left_to_cover.each do |node| cheapest_nodes = get_edges(adjacency_matrix, node-1). select { |_, other_node_index| @nodes_spanned_so_far.include?(other_node_index + 1) } || [] cheapest = cheapest_nodes.inject([]) do |all_edges, (weight, index)| all_edges << { :start => node, :end => index + 1, :weight => weight } all_edges end.sort { |x,y| x[:weight] y[:weight] }.first weight = !cheapest.nil? ? cheapest[:weight]: MAX_VALUE heap[node] = weight end while !nodes_left_to_cover.empty? cheapest_node, weight = heap.delete_min spanning_tree_cost += weight @nodes_spanned_so_far << cheapest_node edges_with_potential_change = get_edges(adjacency_matrix, cheapest_node-1). reject { |_, node_index| @nodes_spanned_so_far.include?(node_index + 1) } edges_with_potential_change.each do |weight, node_index| heap.change_priority(node_index+1, [heap.priority(node_index+1), adjacency_matrix[cheapest_node-1][node_index]].min) end end puts "total spanning tree cost #{spanning_tree_cost}" ---- I couldn't see a way to keep track of the edges that comprise the minimal spanning tree so in this version I've created a variable which keeps tracking of the edge weights as we go rather than computing it at the end. We start off by initialising the priority queue to contain entries for each of the nodes in the graph. We do this by finding the edges that go from each node to the nodes that we've already covered. In this case the only node we've covered is node 1 so the priorities for most nodes will be MAX_VALUE and for nodes which have an edge to node 1 it'll be the weight of that edge. While we still have nodes left to cover we take the next node with the cheapest weight from the priority queue and add it to the collection of nodes that we've covered. We then iterate through the nodes which have an edge to the node we just removed and update the priority queue if necessary. The time taken for this version of the algorithm to run against the data set was 0.3 seconds as compared to the 29 seconds of the naive implementation. As usual the https://github.com/mneedham/algorithms2/blob/master/prims_heap.rb[code is on github] - I need to figure out how to keep track of the edges so if anyone has any suggestions that'd be cool.
null
null
[ -0.000342874409398064, 0.004595356993377209, -0.029854416847229004, 0.046178776770830154, 0.05072921887040138, 0.01122864056378603, 0.033501215279102325, 0.033796269446611404, -0.00956769660115242, -0.013757750391960144, -0.007454140577465296, -0.03663971647620201, -0.04178949072957039, 0.005291687324643135, -0.006558210123330355, 0.06837400794029236, 0.03235150873661041, -0.018705077469348907, -0.0027364648412913084, -0.005072061903774738, 0.03673462197184563, 0.03889826312661171, 0.04891271889209747, 0.035473063588142395, 0.0350472629070282, 0.0036101883742958307, 0.0021750638261437416, 0.005757744424045086, -0.037631455808877945, 0.009718445129692554, 0.03499610349535942, 0.005786058492958546, -0.013444319367408752, 0.009188257157802582, 0.03735686093568802, 0.011671888642013073, -0.03592713549733162, 0.019020363688468933, -0.01356380246579647, 0.009951437823474407, -0.04672221466898918, 0.05934411287307739, -0.030302880331873894, 0.014714663848280907, -0.045486629009246826, 0.0012059297878295183, -0.051007162779569626, 0.017539937049150467, -0.014913436956703663, -0.018131066113710403, -0.10016337037086487, 0.035114437341690063, 0.011799817904829979, 0.0014101857086643577, -0.04033442214131355, 0.029086850583553314, 0.029958730563521385, -0.04417554661631584, 0.04639961197972298, -0.03802095726132393, -0.012923246249556541, -0.004837732296437025, -0.0064967721700668335, 0.027605293318629265, 0.010792803950607777, -0.04757647216320038, 0.015554201789200306, 0.058023616671562195, -0.047818493098020554, -0.01703752391040325, -0.005235420539975166, 0.014257814735174179, -0.018890751525759697, 0.02311122789978981, 0.009317656978964806, -0.035007067024707794, 0.03236005827784538, 0.059082768857479095, 0.00965978018939495, 0.05342929810285568, -0.025148166343569756, 0.02412501350045204, -0.014296669512987137, 0.048234447836875916, -0.013711049221456051, -0.021835647523403168, -0.03836007043719292, -0.023702027276158333, -0.07950519770383835, 0.0653676837682724, 0.0088094063103199, -0.038454849272966385, 0.0007314571412280202, 0.02087487280368805, -0.01108656544238329, 0.008756062015891075, 0.03505696728825569, -0.003079263726249337, -0.02280060015618801, -0.026660548523068428, -0.03607018291950226, -0.051836468279361725, 0.035234224051237106, -0.009494984522461891, -0.09117221087217331, -0.047910865396261215, -0.026386255398392677, 0.01199190691113472, 0.00769036402925849, -0.003899801056832075, -0.015622751787304878, 0.0034060783218592405, -0.04475369304418564, -0.0048421043902635574, -0.06800315529108047, 0.06198982894420624, 0.00816752202808857, -0.04026908800005913, -0.018671302124857903, 0.013300970196723938, 0.04899095743894577, 0.05336112156510353, 0.006632741075009108, 0.08619678020477295, 0.013979447074234486, 0.026393726468086243, 0.023714009672403336, 0.04765554144978523, -0.030982879921793938, -0.05817209556698799, -0.005219865590333939, 0.07595140486955643, 0.015937484800815582, -0.00922328419983387, -0.026956886053085327, -0.018510350957512856, -0.00939367339015007, 0.029735013842582703, 0.054737310856580734, 0.03139244019985199, 0.0053499978967010975, -0.0641133040189743, 0.023505831137299538, -0.01189639512449503, 0.02062367834150791, -0.019552288576960564, 0.021186212077736855, -0.0006127667147666216, -0.01561578456312418, 0.003566295839846134, 0.01524354424327612, 0.01809653826057911, 0.008687207475304604, -0.047384001314640045, 0.024827953428030014, 0.09482704102993011, 0.0194073598831892, 0.017365941777825356, -0.016882937401533127, 0.03482966870069504, 0.05423596873879433, 0.014064690098166466, -0.0006718082004226744, 0.018249768763780594, -0.004560355097055435, -0.019399015232920647, 0.02195143513381481, 0.05726667121052742, -0.025742841884493828, -0.020853549242019653, -0.02472912147641182, -0.024158407002687454, 0.058040037751197815, -0.05026983842253685, -0.026806535199284554, 0.052501123398542404, 0.07409793138504028, 0.04482889175415039, 0.032267648726701736, -0.03805457055568695, -0.08723524212837219, 0.03568127751350403, -0.009427186101675034, 0.03244379162788391, 0.0035692891106009483, -0.022706380113959312, 0.08636254817247391, 0.03373267501592636, 0.009831017814576626, -0.0068106576800346375, -0.07473937422037125, -0.061978042125701904, 0.0069364202208817005, -0.034790441393852234, 0.09653376787900925, -0.014916271902620792, 0.008065614849328995, 0.02890242077410221, 0.017194638028740883, 0.043039362877607346, 0.028926383703947067, -0.018881237134337425, 0.0209174994379282, -0.058616507798433304, -0.06668376922607422, 0.05718449875712395, 0.02964443527162075, -0.046090975403785706, -0.07713299989700317, 0.012689105235040188, -0.01332951057702303, -0.030659297481179237, 0.012331105768680573, -0.014679993502795696, 0.0023012938909232616, 0.023441234603524208, 0.05232794210314751, -0.02123013697564602, 0.046316761523485184, -0.04810077324509621, 0.03134777396917343, -0.008855869993567467, -0.015312857925891876, 0.014197839424014091, -0.006680633872747421, 0.1120496466755867, 0.06101924926042557, -0.03034883737564087, -0.02452315017580986, 0.02441374398767948, 0.01503783743828535, -0.03504740074276924, 0.014038546942174435, -0.023426387459039688, -0.015036995522677898, -0.004429839551448822, -0.06081260368227959, -0.019754251465201378, 0.045970574021339417, -0.02231498807668686, -0.03753207251429558, 0.06554797291755676, -0.013678272254765034, 0.06350339204072952, 0.0028583724051713943, -0.030132995918393135, -0.009609255939722061, -0.03188096359372139, -0.06882817298173904, 0.011625600978732109, -0.01071583479642868, -0.010562642477452755, 0.03705552965402603, -0.023397818207740784, -0.01784440316259861, -0.031768009066581726, -0.019269602373242378, 0.025496358051896095, 0.06016630679368973, 0.06389814615249634, 0.007309915963560343, 0.07179561257362366, -0.011185952462255955, -0.012937505729496479, -0.029498402029275894, -0.07813972979784012, -0.02991572767496109, -0.03835440054535866, 0.026335764676332474, 0.024162596091628075, 0.005083309020847082, -0.011414166539907455, 0.02407057210803032, 0.011144669726490974, -0.004769263323396444, -0.016890380531549454, 0.033668335527181625, -0.008980591781437397, -0.029879797250032425, -0.025530284270644188, -0.030222125351428986, 0.0429244190454483, -0.039020273834466934, -0.021028969436883926, -0.0031313549261540174, -0.04269205406308174, 0.08167821168899536, -0.06320997327566147, -0.02637120895087719, -0.009521929547190666, 0.013742976821959019, 0.039452288299798965, -0.010529960505664349, 0.00786168035119772, 0.0743398368358612, 0.042128387838602066, 0.021769141778349876, -0.00031499884789809585, 0.016785532236099243, 0.003769062925130129, -0.01678680256009102, 0.018214941024780273, 0.02036271244287491, 0.017548726871609688, -0.023879162967205048, -0.032269664108753204, -0.003946695942431688, 0.0015691716689616442, -0.26437392830848694, 0.01683482527732849, -0.03620128706097603, -0.0580655075609684, 0.002561123576015234, -0.01271116640418768, -0.0019019768806174397, -0.0297728031873703, -0.02221623808145523, 0.02070026844739914, -0.00926305167376995, -0.01766750030219555, -0.03903701901435852, 0.04902588576078415, 0.025710346177220345, 0.013473392464220524, 0.0187961645424366, -0.05354774370789528, 0.0005907412269152701, 0.04688456282019615, 0.022592410445213318, -0.07509208470582962, -0.03159596398472786, 0.024306591600179672, 0.03924206644296646, 0.05281781777739525, -0.07755814492702484, 0.033495064824819565, -0.0549808107316494, -0.008875561878085136, -0.0019550800789147615, -0.04609556496143341, 0.0056679765693843365, -0.04077208787202835, 0.009049048647284508, -0.039433516561985016, 0.03665059804916382, 0.019383877515792847, 0.0037792064249515533, 0.02715400606393814, -0.015076413750648499, -0.03306354954838753, 0.000867133610881865, 0.011377738788723946, 0.08404246717691422, 0.031906858086586, -0.038512375205755234, -0.0268706101924181, -0.007587925065308809, 0.05475235730409622, -0.016476552933454514, -0.030789265409111977, -0.008131027221679688, 0.02077803947031498, -0.01992138847708702, -0.03694872558116913, 0.012346002273261547, -0.037680983543395996, -0.04829102382063866, -0.05898614227771759, -0.004273375496268272, -0.03948020935058594, 0.005731948185712099, -0.05276259407401085, -0.021546823903918266, -0.04716392233967781, -0.06739258766174316, -0.009221727959811687, 0.0537736602127552, 0.009848431684076786, 0.005180266685783863, 0.005390631500631571, -0.01875620149075985, -0.0958143100142479, -0.03202565014362335, -0.025528479367494583, -0.03199548274278641, 0.02423492819070816, 0.0068556442856788635, 0.045908696949481964, -0.04909355193376541, -0.06156058982014656, 0.0077237351797521114, 0.011905272491276264, 0.03350360319018364, -0.0293202493339777, -0.01285191997885704, 0.0015819976106286049, -0.002112907823175192, 0.010668870992958546, 0.05767935514450073, 0.006840858608484268, -0.023952635005116463, -0.023777836933732033, 0.02652941644191742, 0.02571839839220047, 0.0289741363376379, 0.02572472207248211, 0.042909782379865646, 0.037579696625471115, 0.031708974391222, -0.05278753861784935, 0.032948628067970276, -0.017717353999614716, -0.05387604609131813, 0.018227949738502502, -0.05999162793159485, 0.017110111191868782, 0.05075109004974365, 0.00024017431132961065, -0.03210419416427612, -0.037701696157455444, 0.029245031997561455, -0.059128537774086, -0.04448629170656204, -0.01653256267309189, 0.012640575878322124, 0.02539713680744171, 0.008637994527816772, -0.018444212153553963, -0.0817437395453453, 0.022718191146850586, -0.00983127485960722, -0.030110862106084824, -0.04646486043930054, -0.012672211043536663, -0.019137315452098846, -0.005409286357462406, 0.007945943623781204, 0.030612654983997345, -0.00842238962650299, 0.0384981632232666, 0.027377856895327568, -0.013813766650855541, 0.015528792515397072, -0.0023871397133916616, -0.04122990369796753, -0.03967064246535301, 0.04212180897593498, -0.00518949655815959, 0.008778438903391361, 0.00023320566106121987, 0.007792378310114145, 0.016422025859355927, 0.07507578283548355, 0.02538612112402916, 0.04477384686470032, -0.0166800394654274, 0.02745153196156025, -0.0026244979817420244, 0.01575118489563465, -0.03890574723482132, 0.03588775545358658, -0.03326771408319473, -0.011950585059821606, -0.03016355074942112, 0.03920529782772064, -0.03071996010839939, -0.06066928431391716, -0.027922531589865685, 0.021102381870150566, -0.04532263055443764, -0.003699786961078644, -0.04376166686415672, 0.002287648618221283, 0.08439430594444275, -0.011453630402684212, 0.036464568227529526, -0.009032835252583027, -0.012447832152247429, 0.010299553163349628, -0.004513208754360676, -0.05348925292491913, 0.031228303909301758, 0.003197944490239024, -0.015139173716306686, 0.00806417129933834, 0.01097725611180067, 0.02238614112138748, -0.0007723859162069857, -0.018162041902542114, -0.015091782435774803, 0.007005831226706505, 0.0457758828997612, 0.053929947316646576, 0.02891058288514614, 0.0013899857876822352, 0.020707041025161743, -0.02562040090560913, 0.0016072402941063046, 0.0076363179832696915, -0.020360244438052177, -0.007350268308073282, 0.0030723141971975565, -0.02249082550406456, -0.06044681370258331, 0.016197355464100838, 0.014728903770446777, 0.0012142648920416832, 0.013415062800049782, -0.0049484241753816605, -0.0019913380965590477, -0.014054727740585804, 0.03576222062110901, 0.06309466063976288, -0.056257933378219604, -0.005049665458500385, 0.005238812882453203, -0.0025844040792435408, 0.004922321066260338, -0.0030121782328933477, -0.02480139769613743, 0.015171164646744728, 0.018504109233617783, 0.01171872764825821, -0.044886138290166855, -0.03871824964880943, -0.017231542617082596, 0.002154634101316333, 0.007962578907608986, -0.012060489505529404, -0.005580905359238386, 0.021595187485218048, -0.02024916186928749, -0.03354031965136528, 0.027564669027924538, -0.0077366759069263935, -0.0029024463146924973, 0.0022780364379286766, -0.03647647053003311, 0.000551244243979454, -0.03274577111005783, 0.029923001304268837, 0.04570036008954048, -0.018006671220064163, 0.017030268907546997, -0.03975934535264969, 0.015877138823270798, -0.029938556253910065, 0.06006113439798355, 0.01184319332242012, -0.022378794848918915, -0.05557696521282196, 0.02040737308561802, -0.03799676150083542, 0.0014640362933278084, 0.00036109364009462297, -0.024041960015892982, 0.0102496687322855, 0.019482439383864403, -0.007215649820864201, 0.03485051915049553, -0.019892258569598198, -0.004805314354598522, 0.043883297592401505, -0.048197533935308456, -0.04294906184077263, -0.04007408395409584, -0.05501563474535942, 0.005707708653062582, -0.0009454019018448889, 0.008491665124893188, 0.0011745353695005178, 0.06292793154716492, 0.03873897343873978, 0.04176706820726395, 0.039317917078733444, -0.006499097216874361, 0.01675940491259098, -0.02346283756196499, 0.0010093639139086008, -0.09742934256792068, 0.003380928188562393, 0.034376345574855804, 0.016083702445030212, 0.0013763142051175237, -0.013295619748532772, -0.021904723718762398, 0.014681346714496613, -0.06987489014863968, -0.03354799002408981, 0.030473357066512108, 0.00547397555783391, -0.013434294611215591, 0.01257359329611063, -0.05222887545824051, 0.045190129429101944, 0.02787570096552372, -0.03658422827720642, 0.007557288743555546, -0.027222108095884323, 0.03963538259267807, 0.0000016345518361049471, 0.03601807355880737, -0.01504743192344904, -0.015991339460015297, 0.054969318211078644, 0.03573713079094887, -0.007264669053256512, 0.027231786400079727, -0.03494559973478317, 0.03410609811544418, 0.03881347179412842, -0.0005121012800373137, 0.007650565821677446, 0.01077386736869812, -0.02816130965948105, -0.04360435903072357, 0.022216564044356346, -0.02124026231467724, 0.000868030998390168, -0.03700122609734535, 0.07047101110219955, 0.04548455402255058, -0.029747912660241127, -0.07717642933130264, 0.053355224430561066, -0.05306439474225044, -0.0034497918095439672, -0.017236797139048576, 0.01655901037156582, -0.026245908811688423, 0.054994434118270874, -0.010659536346793175, -0.005799382459372282, 0.07723622769117355, 0.0038861967623233795, -0.04212590679526329, 0.0018880655989050865, 0.11256247758865356, 0.11067929118871689, 0.06481628119945526, -0.006155561655759811, 0.07023579627275467, 0.0013766997726634145, -0.04355013370513916, 0.006175393704324961, -0.029236890375614166, 0.0056534502655267715, -0.014866000041365623, 0.038934096693992615, 0.07140906900167465, -0.05675249919295311, 0.0660625770688057, -0.052584003657102585, 0.010509366169571877, 0.011921250261366367, 0.015643956139683723, 0.022217882797122, 0.08880899846553802, 0.005730635020881891, 0.050430137664079666, -0.042871713638305664, -0.025180142372846603, 0.020110780373215675, 0.0018905769102275372, 0.001194600248709321, 0.004280684981495142, -0.020782671868801117, 0.02551025152206421, 0.010301218368113041, 0.013910980895161629, 0.08436918258666992, -0.03502258285880089, -0.015190244652330875, -0.0027454758528620005, 0.00856833066791296, -0.0018273759633302689, 0.025890830904245377, -0.01605525054037571, -0.034142013639211655, -0.03841732442378998, -0.03727556765079498, -0.0007140825036913157, -0.007167527452111244, -0.02728271484375, 0.029273604974150658, 0.0031702977139502764, 0.007709039840847254, 0.020483776926994324, -0.002409090753644705, -0.01881342940032482, -0.04492712765932083, -0.040844082832336426, -0.04359744116663933, -0.06381946802139282, 0.030260419473052025, 0.0032300795428454876, 0.0006412400398403406, -0.04708590358495712, -0.018174123018980026, 0.00401009526103735, -0.019331729039549828, 0.02629910781979561, -0.041650742292404175, -0.038676317781209946, -0.009329644963145256, 0.026220664381980896, 0.028677327558398247, 0.03647463768720627, 0.042409881949424744, -0.026847027242183685, 0.00896203052252531, 0.015463747084140778, -0.006602352485060692, 0.027909616008400917, 0.01130224484950304, -0.025624537840485573, -0.07818098366260529, 0.02115136757493019, 0.019946375861763954, -0.031634751707315445, -0.08792007714509964, 0.001070191152393818, 0.02092227339744568, 0.013877253979444504, 0.021600451320409775, -0.025929901748895645, 0.024171747267246246, -0.04759768024086952, -0.008561713621020317, -0.008237749338150024, 0.0032261826563626528, 0.032623905688524246, -0.00883378367871046, 0.1060909852385521, 0.023700617253780365, -0.021882537752389908, -0.019898846745491028, -0.0244505163282156, -0.01748492754995823, 0.029643822461366653, -0.045717205852270126, 0.004666457884013653, -0.03895045071840286, -0.08673257380723953, -0.034057438373565674, 0.009323546662926674, -0.019624274224042892, -0.053349945694208145, 0.01850472390651703, 0.001750641386024654, -0.03209729120135307, 0.035883039236068726, -0.04511724039912224, 0.027457281947135925, -0.03797958046197891, -0.01406455971300602, -0.01728903315961361, 0.00990933459252119, 0.005747220944613218, 0.0064009097404778, -0.0009238474885933101, -0.03439919278025627, 0.009798155166208744, 0.001144213485531509, 0.030888188630342484, 0.025693580508232117, 0.021566223353147507, -0.012714236974716187 ]
[ -0.08013807237148285, 0.006516024004667997, -0.03819778934121132, 0.01314549334347248, 0.03951553255319595, -0.04808589071035385, -0.03305544704198837, 0.006871417164802551, 0.020094769075512886, -0.013822422362864017, 0.013808194547891617, -0.07966944575309753, 0.012758845463395119, 0.009481201879680157, 0.06744246929883957, 0.005989192984998226, -0.010571748949587345, -0.009703068062663078, 0.008534946478903294, 0.02431338280439377, 0.053054992109537125, -0.051976464688777924, -0.04088044911623001, -0.050329335033893585, 0.03299769014120102, 0.043390825390815735, 0.0056784325279295444, -0.009846393018960953, -0.006343066226691008, -0.24328312277793884, 0.03313421458005905, -0.0033398924861103296, 0.0561964213848114, -0.04462607949972153, -0.02418958954513073, 0.01601138338446617, 0.0448300763964653, 0.016688313335180283, -0.04272964969277382, 0.039498332887887955, 0.02441731095314026, 0.05755232274532318, -0.07852931320667267, -0.001591686625033617, 0.028957048431038857, 0.040236856788396835, -0.01589224487543106, -0.0400034599006176, -0.000742406933568418, -0.021110394969582558, -0.06466934829950333, 0.0018309655133634806, 0.017323598265647888, -0.03024115040898323, 0.006621400825679302, 0.03980541229248047, 0.03275390714406967, 0.03959540277719498, -0.011255390010774136, 0.017310846596956253, 0.02308575250208378, 0.01602308265864849, -0.13226769864559174, 0.05836069956421852, 0.06050017476081848, 0.009452166967093945, -0.03344506025314331, -0.02871665172278881, -0.02866099402308464, 0.10440825670957565, 0.02221810817718506, 0.04437047988176346, -0.02351892553269863, 0.038454364985227585, 0.025443898513913155, 0.014072551392018795, -0.005883635021746159, 0.026802703738212585, 0.04390760511159897, -0.04347722604870796, -0.09021180868148804, -0.027305448427796364, -0.030919848009943962, -0.012532223016023636, -0.014876809902489185, 0.0063129751943051815, -0.032569292932748795, 0.02633344940841198, 0.04493916034698486, 0.016019532456994057, 0.05063818767666817, 0.03442974016070366, -0.013977709226310253, -0.003359716385602951, -0.042696449905633926, -0.015181527473032475, -0.009635025635361671, 0.024960488080978394, -0.04940137267112732, 0.42942771315574646, -0.029016168788075447, -0.0054596490226686, 0.06488436460494995, -0.002120184013620019, -0.015255973674356937, -0.0000750907274778001, -0.018983233720064163, -0.047276802361011505, -0.030162693932652473, -0.026591740548610687, 0.03361930325627327, -0.07325851917266846, 0.06466836482286453, -0.03376305103302002, 0.035945478826761246, -0.04153884947299957, 0.054849520325660706, 0.025200461968779564, -0.0001988730364246294, 0.017098871991038322, -0.055273886770009995, 0.023730654269456863, 0.04002983123064041, -0.0012635166058316827, 0.008753401227295399, 0.006735088303685188, 0.00466238334774971, 0.0658850222826004, 0.04316689446568489, 0.051358290016651154, 0.05684109404683113, -0.02904631942510605, -0.08484167605638504, -0.007976514287292957, -0.012765592895448208, 0.0030792364850640297, 0.04453124850988388, -0.053349677473306656, -0.0008483048877678812, 0.0019904293585568666, -0.026423336938023567, 0.01747889257967472, 0.038597289472818375, -0.0038644783198833466, -0.03250834718346596, 0.09896238893270493, -0.007652436848729849, -0.02197244018316269, -0.012979701161384583, -0.05753609165549278, -0.0009067308274097741, 0.004123467952013016, 0.009398349560797215, -0.061689212918281555, -0.004612641874700785, -0.025161031633615494, 0.04662385210394859, -0.011352745816111565, -0.007017896510660648, 0.0072345975786447525, -0.06814973801374435, -0.004905166104435921, -0.05081582069396973, 0.06591033190488815, 0.04225793853402138, -0.07742153853178024, -0.016581544652581215, 0.014892886392772198, -0.0035042690578848124, -0.08397235721349716, 0.031921956688165665, 0.05111073702573776, -0.011096253991127014, -0.01719868928194046, 0.04227341711521149, -0.030277106910943985, -0.029199330136179924, -0.06318150460720062, 0.0110078239813447, 0.026460113003849983, 0.03495321050286293, 0.00516149029135704, -0.0479128398001194, 0.012475200928747654, -0.053333692252635956, -0.051150549203157425, -0.06276068091392517, 0.012585985474288464, -0.028773924335837364, -0.04163488373160362, -0.04609718546271324, 0.007090125232934952, -0.06905154883861542, 0.07474691420793533, -0.05718497186899185, -0.043389979749917984, 0.04023469239473343, 0.017468616366386414, -0.013316438533365726, 0.0024424202274531126, -0.01802474446594715, 0.057605545967817307, 0.010526086203753948, 0.03507227823138237, -0.0718643069267273, -0.0008365995017811656, 0.025432461872696877, -0.028848301619291306, 0.08649684488773346, 0.04631694033741951, -0.023530388250947, -0.04991905018687248, -0.010256625711917877, 0.03686961904168129, -0.013709716498851776, 0.011968838982284069, 0.01454751007258892, -0.01281992718577385, 0.026285553351044655, 0.06624722480773926, -0.012207483872771263, -0.06632830947637558, -0.05173614248633385, -0.33788004517555237, -0.06352376192808151, -0.02220967970788479, -0.023505574092268944, 0.051200926303863525, -0.030515450984239578, 0.007449174765497446, -0.030731607228517532, -0.012479638680815697, -0.0225352980196476, 0.07272596657276154, -0.03178471326828003, -0.021206779405474663, -0.05757847800850868, -0.016076872125267982, 0.030977513641119003, -0.046323273330926895, -0.021974241361021996, -0.03625459596514702, 0.022729232907295227, 0.016469446942210197, -0.0153192188590765, 0.024464132264256477, -0.048868194222450256, 0.00838999729603529, -0.030897419899702072, 0.1196349561214447, -0.007869234308600426, 0.047915924340486526, -0.031723055988550186, 0.02641080692410469, -0.03184971585869789, -0.013427956029772758, -0.03210129216313362, -0.004539658781141043, 0.01784307323396206, 0.024637673050165176, 0.026411931961774826, 0.026719095185399055, -0.03171762824058533, -0.05801123008131981, 0.025212999433279037, -0.041004788130521774, -0.07999498397111893, -0.07417487353086472, 0.03972292318940163, 0.005649931728839874, -0.07096663117408752, 0.03603668138384819, 0.04762329161167145, 0.03833278641104698, -0.019019942730665207, 0.0626257061958313, -0.005936125759035349, 0.002483663847669959, -0.050553690642118454, -0.05871684104204178, -0.020190495997667313, -0.027347592636942863, 0.015291770920157433, 0.0028630318120121956, -0.021282734349370003, 0.025445589795708656, -0.04343842342495918, -0.0016888745594769716, 0.000919364218134433, -0.005319159012287855, -0.004670791793614626, -0.022485066205263138, -0.008996411226689816, 0.0021845961455255747, 0.08783720433712006, 0.03135668858885765, -0.02053060382604599, 0.007292141206562519, 0.05707132816314697, 0.005327586550265551, 0.05156222730875015, 0.004357672296464443, 0.019570089876651764, 0.021810023114085197, -0.04256950318813324, 0.045929666608572006, -0.008200487121939659, -0.02963442914187908, 0.03456563875079155, -0.0030680298805236816, 0.0036446794401854277, 0.03216720372438431, 0.04257097467780113, -0.011522206477820873, 0.022000804543495178, 0.001625530538149178, -0.03938031569123268, 0.0710877925157547, -0.0040751309134066105, -0.24826012551784515, 0.03161966800689697, 0.0524279922246933, 0.026685619726777077, 0.007031664252281189, 0.021447477862238884, 0.059667862951755524, -0.013227813877165318, 0.04055674374103546, -0.024762339890003204, 0.025897765532135963, 0.09119684249162674, 0.03658917173743248, -0.00579651165753603, 0.025687919929623604, -0.03485109284520149, 0.041328348219394684, -0.013027547858655453, -0.024363823235034943, -0.0034488399978727102, 0.02508736588060856, -0.012775113806128502, 0.17273017764091492, 0.000542850757483393, 0.012838686816394329, 0.013365126214921474, -0.0035738099832087755, 0.02766820788383484, 0.0699535608291626, 0.01491057313978672, 0.004915440920740366, 0.026165608316659927, 0.03273589909076691, 0.0003556300653144717, 0.036254458129405975, -0.02442312054336071, -0.01136441994458437, 0.03990709409117699, 0.03231922164559364, -0.0054561421275138855, 0.011329198256134987, 0.0020523350685834885, -0.05269824340939522, 0.049610648304224014, 0.04879043623805046, -0.02473202534019947, -0.03361261636018753, -0.003480668645352125, -0.04232604429125786, -0.004707341082394123, -0.013789343647658825, -0.02651359513401985, 0.003974162973463535, -0.013377362862229347, 0.017115343362092972, 0.07796040177345276, -0.007899797521531582, -0.011990766040980816, -0.019854214042425156, -0.00136554054915905, -0.0007802176987752318, -0.009860563091933727, 0.10026821494102478, 0.010118101723492146, 0.06853867322206497 ]
[ -0.0017769963014870882, 0.060299601405858994, -0.04162934049963951, 0.023922085762023926, -0.004673980176448822, -0.036847006529569626, -0.022661203518509865, 0.03270518779754639, -0.042379822582006454, -0.0022982205264270306, -0.009579078294336796, 0.0351669080555439, 0.03645116463303566, -0.029439017176628113, -0.004570535849779844, 0.004932876210659742, 0.022082528099417686, 0.03688640519976616, 0.0469554103910923, -0.0024023959413170815, -0.015138376504182816, 0.01972787082195282, 0.013348535634577274, -0.04200005158782005, -0.0057525718584656715, 0.04809878394007683, -0.058891382068395615, 0.03172624856233597, 0.031310535967350006, -0.12772107124328613, -0.0024271912407130003, -0.021274695172905922, -0.00025891486438922584, 0.02066030725836754, -0.022718200460076332, 0.012635390274226665, -0.060555052012205124, 0.016395755112171173, 0.008422795683145523, 0.019657686352729797, 0.07007806748151779, 0.015453604981303215, -0.034548480063676834, 0.010301356203854084, -0.00581052852794528, -0.021249068900942802, -0.04641237482428551, 0.02327982895076275, -0.004621405154466629, -0.04679243639111519, -0.020834552124142647, -0.011593392118811607, -0.0030415570363402367, 0.007102613337337971, -0.03234031796455383, -0.0283658467233181, 0.014275608584284782, -0.02289917692542076, -0.034977223724126816, -0.0024560901802033186, 0.006833684630692005, 0.007465132977813482, -0.05653217062354088, -0.03271334990859032, 0.01399335265159607, -0.0035001400392502546, 0.04151810705661774, 0.02027636207640171, -0.014973524957895279, -0.002210780046880245, 0.05208943784236908, 0.036703430116176605, -0.04497276619076729, -0.004494259133934975, 0.028488244861364365, 0.014296131208539009, 0.00045682681957259774, -0.005554378032684326, -0.043675266206264496, -0.018568793311715126, -0.04686233401298523, 0.006985065061599016, 0.002836383180692792, -0.02084261178970337, -0.03131552040576935, -0.013867371715605259, 0.007530034054070711, 0.033660173416137695, 0.0053374613635241985, -0.02353312261402607, -0.003683545859530568, 0.016309048980474472, -0.0289266649633646, 0.0005272970884107053, -0.08802048861980438, 0.02311530150473118, -0.004447242710739374, -0.018474435433745384, -0.03375934436917305, 0.8093566298484802, 0.008291120640933514, 0.00900540966540575, 0.026128621771931648, -0.03523498401045799, 0.010589084587991238, 0.03446298465132713, -0.04678819328546524, 0.01429614145308733, -0.0075877076014876366, -0.041259195655584335, 0.04414525628089905, -0.002617673249915242, 0.027390489354729652, 0.03622575104236603, 0.0056372350081801414, -0.004039994906634092, 0.0067470138892531395, -0.016347164288163185, 0.020432716235518456, -0.02165806107223034, -0.005821126513183117, 0.02760540321469307, -0.007493985816836357, -0.01727597787976265, -0.018234988674521446, -0.21204812824726105, -0.014009499922394753, -8.051163581557364e-33, -0.0008269927930086851, -0.025837941095232964, -0.004645851440727711, -0.030027879402041435, -0.005141232628375292, 0.017635636031627655, -0.016132960096001625, -0.015533444471657276, 0.0024944189935922623, -0.026799816638231277, 0.009191842749714851, -0.011301310732960701, 0.013519102707505226, -0.04642992839217186, 0.029050156474113464, -0.02085360325872898, 0.0069260867312550545, 0.023338928818702698, 0.031255267560482025, -0.0050047761760652065, -0.004672067705541849, 0.023905819281935692, 0.003048558486625552, 0.0080183707177639, -0.012379283085465431, 0.03776950016617775, 0.03454378992319107, -0.03226673975586891, 0.020617177709937096, -0.05500946193933487, -0.023323196917772293, 0.030391044914722443, -0.03201949968934059, -0.019879432395100594, 0.043301280587911606, -0.03997538238763809, -0.03690209612250328, 0.021723734214901924, -0.025760654360055923, -0.06603943556547165, -0.029048724099993706, 0.015428612940013409, -0.008853796869516373, -0.01399114541709423, -0.009905897080898285, 0.027026772499084473, 0.03721996396780014, 0.037829164415597916, 0.00040777618414722383, 0.028421645984053612, 0.0024150663521140814, -0.001288658706471324, -0.004167165607213974, 0.04994392767548561, -0.03768383339047432, 0.03782150149345398, 0.04705701023340225, 0.015597029589116573, -0.006105491891503334, 0.04466792196035385, 0.058296333998441696, 0.0004051394062116742, 0.0033968775533139706, 0.03865398094058037, -0.007235255092382431, -0.023548413068056107, 0.021020356565713882, 0.02160024270415306, 0.028955113142728806, 0.06139851361513138, -0.021857863292098045, 0.0279141366481781, 0.0038458637427538633, 0.03389602527022362, -0.007436641026288271, -0.01463364902883768, 0.021173812448978424, -0.0024567313957959414, -0.009888271801173687, 0.0076933810487389565, 0.012622520327568054, -0.015192706137895584, -0.02611205168068409, -0.03749861568212509, -0.017081161960959435, -0.013868225738406181, 0.01224437728524208, -0.0035097759682685137, -0.012203820049762726, 0.01735200732946396, 0.04853179678320885, 0.022078292444348335, -0.02048383094370365, -0.009747338481247425, -0.03289331495761871, 8.496515779413711e-33, -0.010239859111607075, -0.019980330020189285, 0.02413000725209713, 0.006512665655463934, 0.033765748143196106, -0.010247258469462395, 0.018681664019823074, 0.014439712278544903, -0.05712490156292915, 0.04040704667568207, -0.0075227683410048485, 0.01880110800266266, 0.010598846711218357, 0.030322348698973656, 0.05875187739729881, -0.003727666800841689, 0.002306366339325905, -0.012835637666285038, 0.00923492107540369, 0.035697709769010544, 0.024478282779455185, 0.019557582214474678, -0.02975563146173954, 0.03207919001579285, 0.03838499262928963, 0.008941670879721642, -0.02262459322810173, 0.003852830035611987, 0.002220487454906106, -0.004043128807097673, 0.03559286147356033, -0.023696938529610634, -0.007129923906177282, -0.03042442351579666, -0.03278713673353195, 0.03611420467495918, 0.04364405944943428, -0.020159708335995674, 0.003817469347268343, 0.0363161563873291, 0.032350119203329086, -0.008457799442112446, -0.039332546293735504, 0.02866685390472412, 0.00467378506436944, 0.02538442425429821, -0.03066619113087654, -0.008253734558820724, -0.01011263020336628, 0.00024915687390603125, -0.00002466587829985656, 0.002643384737893939, 0.021326007321476936, 0.00508112134411931, 0.03371335566043854, -0.061893779784440994, -0.027927350252866745, 0.01751314289867878, -0.0028737487737089396, -0.000013572899661085103, -0.006013810634613037, -0.0032677464187145233, -0.024117829278111458, -0.0019876512233167887, -0.05863029137253761, -0.03718961775302887, -0.006330118514597416, -0.0714530348777771, -0.055667754262685776, 0.05577486753463745, -0.02575971744954586, 0.03524230420589447, -0.012525070458650589, -0.003409821540117264, 0.005887437611818314, -0.004746199119836092, -0.01347773801535368, 0.03962114825844765, -0.017273034900426865, -0.0051152873784303665, 0.03153042122721672, 0.0324569009244442, 0.0178347397595644, 0.019726160913705826, -0.0007176156505011022, -0.0002612024254631251, -0.014334472827613354, -0.01961991935968399, -0.011311005800962448, 0.012233906425535679, 0.03357894346117973, -0.02427484095096588, -0.01127080712467432, 0.07365643978118896, -0.024560920894145966, -1.3341912463715744e-8, -0.036088693886995316, 0.03555801883339882, -0.009656908921897411, 0.014815284870564938, 0.054885707795619965, 0.009824203327298164, 0.011690125800669193, 0.02354528196156025, -0.038158997893333435, 0.02063753828406334, 0.035254884511232376, -0.031806137412786484, -0.014720689505338669, 0.02764124609529972, 0.023152312263846397, -0.016172092407941818, -0.010083268396556377, -0.058641791343688965, 0.03671180456876755, -0.02210158109664917, 0.048599690198898315, 0.03454633057117462, -0.016895169392228127, 0.029383515939116478, 0.01385365892201662, -0.0303263571113348, 0.030804593116044998, -0.061667025089263916, 0.004816844593733549, -0.010791454464197159, 0.03602369502186775, -0.018157241865992546, -0.03115696832537651, -0.014060680754482746, 0.0011334707960486412, -0.014643959701061249, 0.006470608524978161, 0.0396973118185997, 0.013336497358977795, 0.03041711635887623, -0.019934870302677155, 0.015986725687980652, -0.033184345811605453, -0.03179260343313217, -0.007747652940452099, 0.010315973311662674, -0.013360538519918919, 0.003076072782278061, 0.02453097328543663, -0.05477723851799965, 0.0035728125367313623, -0.01811780221760273, 0.013262446038424969, 0.01828262209892273, 0.025518393144011497, -0.0031396846752613783, 0.01174765545874834, -0.03624972701072693, -0.01338282786309719, 0.0035805576480925083, 0.028863025829195976, -0.0023967893794178963, 0.005852255504578352, 0.0081454673781991 ]
prims-algorithm-using-a-heappriority-queue-in-ruby
https://markhneedham.com/blog/2012/12/15/prims-algorithm-using-a-heappriority-queue-in-ruby
false
2012-12-15 02:51:14
Prim's Algorithm in Ruby
[ "algorithms" ]
[ "Algorithms" ]
One of the first programming assignments of the https://class.coursera.org/algo2-2012-001/class[Algorithms 2] course was to code http://en.wikipedia.org/wiki/Prim's_algorithm[Prim's algorithm] - a greedy algorithm used to find the minimum spanning tree of a connected weighted undirected graph. In simpler terms we need to find the path of least cost which connects all of the nodes together and there can't be any cycles in that path. Wikipedia has a neat diagram which http://en.wikipedia.org/wiki/Minimum_spanning_tree[shows this more clearly]: image::http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Minimum_spanning_tree.svg/300px-Minimum_spanning_tree.svg.png[] The pseudocode for the algorithm is as follows: * Let +++<cite>+++X+++</cite>+++ = nodes covered so far, +++<cite>+++T+++</cite>+++ = edges covered so far, +++<cite>+++V+++</cite>+++ = all the nodes in the graph * Pick an initial arbitrary node +++<cite>+++s+++</cite>+++ - it doesn't matter which one it is * while +++<cite>+++X+++</cite>+++ ≠ +++<cite>+++V+++</cite>+++: ** let +++<cite>+++e+++</cite>+++ = +++<cite>+++(u,v)+++</cite>+++ be the cheapest edge of the graph where +++<cite>+++u+++</cite>+++ ∈ +++<cite>+++X+++</cite>+++ and v ∉ +++<cite>+++X+++</cite>+++ + i.e. +++<cite>+++u+++</cite>+++ is a node that has been covered and +++<cite>+++v+++</cite>+++ a node that has not yet been covered ** Add +++<cite>+++e+++</cite>+++ to +++<cite>+++T+++</cite>+++ ** Add +++<cite>+++v+++</cite>+++ to +++<cite>+++X+++</cite>+++ At the end of the algorithm we'll have a collection of all the nodes in the graph and a collection of the edges we need to follow in order to create a minimal spanning tree. If we sum the weights of those edges we get the cost of the tree. I used an http://en.wikipedia.org/wiki/Adjacency_matrix[adjacency matrix] to represent the graph i.e. a 2 dimensional array of size n*n (where n = number of nodes in the graph). If node 0 had an edge to node 3 of weight 4 then we'd put this entry into the matrix: [source,ruby] ---- ---- I tried to get my implementation of the algorithm to look as close to the pseudocode as possible and I ended up with the following: [source,ruby] ---- adjacency_matrix = create_adjacency_matrix first_edge = select_first_edge(adjacency_matrix) @nodes_spanned_so_far, @edges = [first_edge[:start], first_edge[:end]], [first_edge] while !nodes_left_to_cover.empty? cheapest_edge = find_cheapest_edge(adjacency_matrix, @nodes_spanned_so_far, number_of_nodes) @edges << cheapest_edge @nodes_spanned_so_far << cheapest_edge[:start] end ---- The code became a bit messy in parts because it relies on a 0 indexed array yet the names of the nodes start at 1. There's therefore loads of +1s and -1s dotted around the place. The method to work out the next cheapest node looks like this: [source,ruby] ---- def find_cheapest_edge(adjacency_matrix, nodes_spanned_so_far, number_of_nodes) available_nodes = (0..number_of_nodes-1).to_a.reject { |node_index| nodes_spanned_so_far.include?(node_index + 1) } cheapest_edges = available_nodes.inject([]) do |acc, node_index| get_edges(adjacency_matrix, node_index).select { |_, other_node_index| nodes_spanned_so_far.include?(other_node_index + 1) }.each do |weight, other_node_index| acc << { :start => node_index + 1, :end => other_node_index + 1, :weight => weight } end acc end cheapest_edges.sort { |x,y| x[:weight] y[:weight] }.first end def get_edges(adjacency_matrix, node_index) adjacency_matrix[node_index].each_with_index.reject { |edge, index| edge.nil? } end ---- We first get all the nodes which haven't already been spanned and then build up a collection of the edges between nodes we've already spanned and ones that we haven't. The other bit of interesting code is the creation of the adjacency matrix at the beginning: [source,ruby] ---- def create_adjacency_matrix adjacency_matrix = [].tap { |m| number_of_nodes.times { m << Array.new(number_of_nodes) } } file.drop(1).map { |x| x.gsub(/\n/, "").split(" ").map(&:to_i) }.each do |(node1, node2, weight)| adjacency_matrix[node1 - 1][node2 - 1] = weight adjacency_matrix[node2 - 1][node1 - 1] = weight end adjacency_matrix end ---- Here we are first parsing the file which involves skipping the first header line and the converting it into a collection of integer arrays representing the two nodes and their corresponding edge weight. We then put two entries into the adjacency matrix, one entry from node A to node B and one entry from node B to node A. The reason we do this is that this is an undirected graph so we can go either way between the nodes. To work out the cost of the minimum spanning tree I use this line of code at the end: [source,ruby] ---- puts "edges: #{@edges}, total spanning tree cost #{@edges.inject(0) {|acc, edge| acc + edge[:weight]}}" ---- My full solution is on https://github.com/mneedham/algorithms2/blob/master/prims.rb[github] so if anyone has any suggestions/improvements they're always welcome.
null
null
[ -0.0025681303814053535, -0.004030482843518257, -0.026536695659160614, 0.03913475200533867, 0.06348066031932831, -0.005691157653927803, 0.013829519972205162, 0.05768562853336334, -0.008584236726164818, -0.023632105439901352, 0.003129483200609684, -0.010799551382660866, -0.052268028259277344, 0.0055881766602396965, -0.016619952395558357, 0.07426448166370392, 0.0429452620446682, -0.022174296900629997, -0.007705246564000845, -0.00571093475446105, 0.008646837435662746, 0.055694401264190674, 0.034696064889431, 0.03780921548604965, 0.0402408204972744, 0.028987228870391846, 0.012957724742591381, -0.006764937657862902, -0.029401274397969246, 0.026797903701663017, 0.05478828027844429, 0.01029431726783514, 0.004005911760032177, 0.0006428627530112863, 0.018139895051717758, 0.008807900361716747, -0.040419802069664, 0.003638654015958309, -0.017454205080866814, 0.005905242171138525, -0.06064412370324135, 0.06165899336338043, -0.022020207718014717, 0.022763218730688095, -0.02445363625884056, 0.014357796870172024, -0.04613076522946358, 0.035818617790937424, -0.024293692782521248, -0.017211677506566048, -0.09648435562849045, 0.028525421395897865, -0.005997904576361179, 0.022311855107545853, -0.048712108284235, 0.042583949863910675, 0.04103538766503334, -0.049744196236133575, 0.03533865138888359, -0.04093780368566513, 0.00390763022005558, 0.0003660895745269954, 0.005009377375245094, 0.039913907647132874, 0.000449526181910187, -0.04779290035367012, 0.019082030281424522, 0.06585167348384857, -0.033402424305677414, -0.033518217504024506, -0.013923486694693565, 0.02556432969868183, -0.03215690329670906, 0.022252686321735382, 0.00794913712888956, -0.039983369410037994, 0.015530594624578953, 0.04784180968999863, 0.018480006605386734, 0.04510271176695824, -0.030774718150496483, 0.046430036425590515, -0.005961847957223654, 0.027017923071980476, -0.01963805966079235, -0.023381300270557404, -0.057804256677627563, -0.021370358765125275, -0.08170259743928909, 0.047560110688209534, 0.004018496721982956, -0.05114458501338959, -0.014343997463583946, 0.026347067207098007, -0.004222461953759193, -0.013429933227598667, 0.04043473303318024, -0.007265434134751558, -0.010789597406983376, -0.0439707413315773, -0.018221409991383553, -0.0413321778178215, 0.04143765568733215, 0.0031148241832852364, -0.09652990102767944, -0.03229213505983353, -0.008526047691702843, 0.014797914773225784, 0.011109670624136925, -0.006762745790183544, -0.0034506749361753464, -0.002470702398568392, -0.04187960550189018, -0.012342364527285099, -0.07540540397167206, 0.073133684694767, -0.005947982892394066, -0.0264106597751379, 0.010351809673011303, 0.015126428566873074, 0.04610908403992653, 0.029805243015289307, 0.003066395875066519, 0.08485125005245209, 0.007814135402441025, 0.035645414143800735, 0.02861405536532402, 0.06195436045527458, -0.03741877153515816, -0.056200332939624786, -0.01086018979549408, 0.07134285569190979, 0.01300338190048933, -0.005865191575139761, -0.031040498986840248, -0.03764652460813522, -0.011021631769835949, 0.03525136783719063, 0.012279980815947056, 0.041051462292671204, -0.009215075522661209, -0.06161641329526901, 0.025219205766916275, -0.009327043779194355, 0.010366839356720448, -0.019306989386677742, 0.017841622233390808, -0.007601859048008919, -0.022287756204605103, 0.013451412320137024, 0.007459326647222042, -0.00029272245592437685, 0.026338012889027596, -0.03133567050099373, 0.016551749780774117, 0.10680320113897324, 0.02879904769361019, 0.029391560703516006, -0.01583573967218399, 0.012044226750731468, 0.06782637536525726, 0.01413456629961729, 0.0056197913363575935, 0.023597581312060356, -0.017339184880256653, -0.029480919241905212, 0.024788547307252884, 0.06834064424037933, -0.02158045768737793, -0.010565814562141895, -0.029059460386633873, -0.057784900069236755, 0.06452560424804688, -0.04160856083035469, -0.03553780913352966, 0.04385283961892128, 0.06349748373031616, 0.034252867102622986, 0.02926662005484104, -0.015014894306659698, -0.07993488758802414, 0.033002156764268875, 0.010535956360399723, 0.012315815314650536, 0.010251508094370365, -0.032455869019031525, 0.0832134410738945, 0.030014539137482643, 0.022714391350746155, 0.005788940470665693, -0.06486035883426666, -0.06620865315198898, -0.010084816254675388, -0.03786133974790573, 0.08223539590835571, -0.014956957660615444, -0.00364514859393239, 0.034172285348176956, 0.022245408967137337, 0.0423097126185894, 0.010161364451050758, -0.010461268946528435, 0.02342325821518898, -0.03668642416596413, -0.08191642165184021, 0.05490155518054962, 0.024350566789507866, -0.03780034929513931, -0.0676366463303566, 0.01711457036435604, -0.004169259686022997, -0.014859999530017376, -0.0017623088788241148, -0.03350634500384331, 0.023388851433992386, -0.0029517868533730507, 0.05635970085859299, -0.015409186482429504, 0.05662732943892479, -0.05396369844675064, 0.006082513369619846, -0.017340969294309616, -0.028074588626623154, 0.006807219237089157, -0.01070807408541441, 0.1102728545665741, 0.07562446594238281, -0.020194247364997864, -0.011333438567817211, 0.04441141337156296, 0.005658575799316168, -0.03086761385202408, 0.019857116043567657, -0.02760740928351879, -0.028044842183589935, -0.025770965963602066, -0.0632561445236206, -0.027096698060631752, 0.04637661576271057, -0.03743337467312813, -0.022029107436537743, 0.07436960935592651, -0.027858130633831024, 0.05760401859879494, 0.007343977689743042, -0.048284027725458145, -0.003451392985880375, -0.0279148668050766, -0.055972982197999954, 0.033434268087148666, -0.010202947072684765, -0.01289360225200653, 0.03474194183945656, -0.01976740173995495, -0.04242289811372757, -0.02931533195078373, -0.01812882162630558, 0.024928392842411995, 0.07035931199789047, 0.05895533040165901, -0.002443575067445636, 0.05137963965535164, -0.002009127289056778, -0.005147001706063747, -0.019316937774419785, -0.07146506011486053, -0.03593982011079788, -0.043920502066612244, 0.02412855625152588, 0.018345506861805916, 0.009009175933897495, -0.010980388149619102, 0.022443680092692375, 0.007602292113006115, 0.01007519569247961, -0.014416503719985485, 0.042067062109708786, 0.011286742053925991, -0.035457924008369446, -0.020749976858496666, -0.02017565257847309, 0.05385509878396988, -0.04046011343598366, -0.03391619399189949, -0.018049538135528564, -0.04523685947060585, 0.0625603049993515, -0.044347744435071945, -0.01833818480372429, 0.00339972460642457, 0.017771778628230095, 0.046127013862133026, -0.007585645187646151, -0.009458307176828384, 0.05809956043958664, 0.004458989482372999, 0.007318273186683655, 0.0037323199212551117, 0.015932193025946617, -0.008619491942226887, -0.007943517528474331, 0.04630414396524429, 0.008695218712091446, 0.004367208108305931, -0.015015760436654091, -0.012585717253386974, 0.01740342378616333, 0.026061123237013817, -0.2416573017835617, 0.02904048189520836, -0.002318498445674777, -0.03550673648715019, 0.0060781026259064674, -0.011556346900761127, -0.00897568091750145, -0.022100679576396942, -0.012082773260772228, -0.01127514336258173, -0.0000850634096423164, -0.03731154650449753, -0.03408429026603699, 0.06876914948225021, 0.01946203038096428, -0.0026622102595865726, 0.0015040035359561443, -0.046880096197128296, 0.015531852841377258, 0.03837141394615173, 0.0125496881082654, -0.08048240095376968, -0.016913311555981636, 0.014704334549605846, 0.035903412848711014, 0.04307476431131363, -0.08625645190477371, 0.025696801021695137, -0.06433746963739395, -0.007851134054362774, -0.030414961278438568, -0.029726913198828697, -0.0017592990770936012, -0.041630033403635025, 0.009859560057520866, -0.0355520136654377, 0.05019550397992134, 0.0068506039679050446, -0.0025811106897890568, 0.03690483421087265, -0.010689540766179562, -0.025974351912736893, 0.00009004860476125032, 0.007868361659348011, 0.0881233662366867, 0.04066183790564537, -0.04074962064623833, -0.027707381173968315, 0.0019366095075383782, 0.07036692649126053, -0.024846553802490234, -0.014013589359819889, 0.011621925979852676, 0.02919914200901985, 0.006410310510545969, -0.04390297085046768, 0.02688833698630333, -0.042451806366443634, -0.05979068949818611, -0.06329818069934845, -0.002821174683049321, -0.03735130652785301, -0.0013194840867072344, -0.060272086411714554, -0.002037086756899953, -0.051430441439151764, -0.05361221358180046, -0.03550456464290619, 0.04569217562675476, 0.022193411365151405, 0.0006750046159140766, -0.0006153220892883837, -0.021079063415527344, -0.09726179391145706, -0.01816582679748535, -0.032720375806093216, -0.03373026102781296, 0.02440146543085575, 0.01718885637819767, 0.020443538203835487, -0.04034842923283577, -0.06867606937885284, 0.008993363007903099, 0.030661141499876976, 0.010726392269134521, -0.02636466547846794, 0.013201870024204254, -0.0055225747637450695, -0.016882168129086494, 0.007190752774477005, 0.050272516906261444, 0.039082545787096024, -0.02669594995677471, -0.02641436457633972, 0.027467625215649605, 0.026091545820236206, 0.019864778965711594, 0.017207959666848183, 0.026958413422107697, 0.014489985071122646, 0.030273569747805595, -0.04188043996691704, 0.0390334278345108, 0.020303238183259964, -0.07022921741008759, 0.02209308370947838, -0.052030593156814575, 0.01562955230474472, 0.04003401845693588, -0.00020438642241060734, -0.0234408900141716, -0.05436640977859497, 0.02437450736761093, -0.04120977222919464, -0.03726956620812416, -0.012946250848472118, 0.025699641555547714, 0.025445885956287384, 0.026046665385365486, -0.022124823182821274, -0.07855093479156494, 0.031304024159908295, -0.020333437249064445, -0.025540249422192574, -0.056101150810718536, -0.020356614142656326, -0.018656348809599876, -0.0056025804951786995, 0.0086490698158741, 0.040192656219005585, -0.009523920714855194, 0.055596012622117996, 0.04339609667658806, -0.022944647818803787, 0.019455617293715477, -0.004046861547976732, -0.031706396490335464, -0.03950585052371025, 0.04169704392552376, -0.015488888137042522, -0.010627148672938347, 0.0193147175014019, -0.00752244982868433, -0.01636751927435398, 0.08043736964464188, 0.009406741708517075, 0.033955320715904236, -0.02847418002784252, 0.027072785422205925, 0.005316935945302248, 0.011660444550216198, -0.021979348734021187, 0.04465648531913757, -0.03693260997533798, 0.007835791446268559, -0.02010113187134266, 0.025006655603647232, -0.02894962579011917, -0.07839910686016083, -0.02887875586748123, 0.031967826187610626, -0.04143081232905388, 0.0036802557297050953, -0.02357952855527401, 0.00015387444000225514, 0.08597876131534576, -0.004792038816958666, 0.02562701888382435, -0.014513466507196426, -0.01956583559513092, 0.045016027987003326, -0.011086164973676205, -0.0458303727209568, 0.019074032083153725, -0.01923665963113308, -0.03269568830728531, 0.020103342831134796, 0.01257418654859066, -0.0049518090672791, 0.014469864778220654, -0.024958040565252304, -0.020809581503272057, -0.003501232247799635, 0.031502313911914825, 0.05652712285518646, 0.01089745294302702, -0.017677605152130127, 0.0133932800963521, -0.030290016904473305, 0.0037593860179185867, 0.021900318562984467, -0.019950587302446365, -0.02729274146258831, -0.00181251997128129, -0.014594607055187225, -0.05568680539727211, -0.006740651559084654, 0.008730150759220123, 0.01632966287434101, 0.0023232130333781242, -0.030102066695690155, 0.016824020072817802, -0.007918163202702999, 0.038163915276527405, 0.043228887021541595, -0.06386301666498184, 0.005237463396042585, 0.015316562727093697, 0.01601574756205082, 0.004476839676499367, -0.010304810479283333, -0.01826442778110504, -0.007598662283271551, -0.006808792240917683, 0.011112472973763943, -0.04905281960964203, -0.04572649672627449, 0.0016764596803113818, 0.00197178078815341, 0.012104294262826443, -0.00140816206112504, 0.0036740596406161785, 0.008392450399696827, -0.04080626368522644, -0.0019472010899335146, 0.04855917766690254, -0.02059870958328247, -0.005942502059042454, 0.014832603745162487, -0.021697822958230972, -0.013173982501029968, -0.02623194269835949, 0.017496708780527115, 0.0272507481276989, -0.012582945637404919, 0.004868178628385067, -0.04885076731443405, -0.006047248840332031, -0.037191253155469894, 0.04248366504907608, 0.016829002648591995, -0.0017270552925765514, -0.06796476989984512, 0.013764020055532455, -0.00790061242878437, 0.022602446377277374, 0.0006905549089424312, -0.0367790088057518, 0.03307197242975235, 0.0077064563520252705, 0.008718954399228096, 0.025891628116369247, -0.02954823337495327, -0.016230205073952675, 0.048836931586265564, -0.031991925090551376, -0.04970431700348854, -0.0368904285132885, -0.04513998702168465, -0.00574515713378787, -0.009848074056208134, 0.03190502151846886, -0.0037317308597266674, 0.06132526695728302, 0.03772096335887909, 0.03396354615688324, 0.027493998408317566, -0.018806694075465202, 0.015700146555900574, -0.02601504698395729, 0.01616714335978031, -0.10153989493846893, 0.008834426291286945, 0.014649329707026482, 0.010667272843420506, -0.015404856763780117, 0.0020629260689020157, -0.0181361623108387, 0.007711025886237621, -0.08104834705591202, -0.03483123704791069, 0.02296742983162403, 0.011967580765485764, -0.007464572787284851, 0.016718976199626923, -0.04336662217974663, 0.04354747384786606, 0.055700067430734634, -0.058196622878313065, 0.00870291143655777, -0.02598290890455246, 0.05591443553566933, 0.0017244946211576462, 0.011777307838201523, -0.0034914070274680853, -0.0030969984363764524, 0.05541052669286728, 0.04912929609417915, 0.015520954504609108, 0.024369003251194954, -0.04561382159590721, 0.025392524898052216, 0.047795046120882034, 0.001699501066468656, 0.004778260365128517, 0.01972171477973461, -0.040735989809036255, -0.05222766846418381, 0.030652379617094994, -0.012864808551967144, -0.01527063176035881, -0.04418674856424332, 0.07584230601787567, 0.03953934833407402, -0.046172697097063065, -0.06933410465717316, 0.04061008617281914, -0.06269538402557373, 0.007443219888955355, -0.01581353135406971, 0.02140606939792633, -0.006947375368326902, 0.07045456022024155, -0.02981654740869999, 0.015266800299286842, 0.07518015056848526, -0.010096104815602303, -0.04036339372396469, 0.010955371893942356, 0.10490311682224274, 0.10311418771743774, 0.045057665556669235, -0.011632844805717468, 0.07653312385082245, -0.015479288063943386, -0.033149752765893936, 0.0014719623140990734, -0.05102946609258652, 0.00029834191082045436, -0.01862962730228901, 0.037990715354681015, 0.06739851832389832, -0.030137354508042336, 0.07045381516218185, -0.04579370468854904, 0.004226210061460733, 0.019083315506577492, 0.01293052639812231, 0.019976982846856117, 0.07742515206336975, 0.007494076620787382, 0.03791353106498718, -0.01664518192410469, -0.019529951736330986, 0.04586057364940643, -0.0008058053790591657, 0.0051125818863511086, 0.008698301389813423, -0.022458259016275406, 0.014401057735085487, 0.01540739368647337, 0.014427435584366322, 0.09194476902484894, -0.041249752044677734, -0.02243187092244625, 0.0011054743081331253, 0.0027404404245316982, -0.0074873147532343864, 0.02032487839460373, -0.005914052948355675, -0.02140730805695057, -0.031834039837121964, -0.0541590116918087, -0.003547330154106021, -0.023074142634868622, -0.00545610161498189, 0.03600827232003212, 0.012687002308666706, 0.011627979576587677, 0.010081775486469269, 0.003415983635932207, -0.028916282579302788, -0.043327171355485916, -0.038147564977407455, -0.05144751816987991, -0.051870476454496384, 0.003600955242291093, -0.0022184913977980614, -0.003112298436462879, -0.04010281711816788, -0.022516047582030296, -0.002462113508954644, -0.014178760349750519, 0.03655857592821121, -0.038924653083086014, -0.016734497621655464, -0.014280644245445728, 0.042593926191329956, 0.02552022598683834, -0.0021516031119972467, 0.03469887748360634, -0.015326293185353279, 0.0031605318654328585, 0.00705111026763916, -0.0037233643233776093, 0.013111871667206287, -0.003613318782299757, 0.0007968018180690706, -0.0639779195189476, 0.011954093351960182, 0.008955460041761398, -0.02207721769809723, -0.09805300831794739, 0.015456952154636383, 0.030441904440522194, 0.025744466111063957, 0.03035464882850647, -0.02892397902905941, 0.018110573291778564, -0.040671780705451965, -0.012933258898556232, -0.00843090657144785, -0.026143841445446014, 0.04072679579257965, -0.025945985689759254, 0.08475469797849655, 0.025771936401724815, 0.010389674454927444, -0.035022202879190445, -0.009888368658721447, -0.03376961871981621, 0.019692791625857353, -0.07157808542251587, 0.012774032540619373, -0.018827177584171295, -0.0940694585442543, -0.02538629062473774, 0.017744030803442, -0.0317826084792614, -0.058633506298065186, 0.016043798997998238, -0.0031102809589356184, -0.04562272131443024, 0.03201776370406151, -0.046365171670913696, 0.0053436532616615295, -0.034745894372463226, 0.012848884798586369, -0.0015944306505843997, 0.028091032058000565, 0.005802110768854618, 0.036026012152433395, 0.0030031739734113216, -0.029808517545461655, 0.006960975471884012, -0.004939740523695946, 0.026207657530903816, 0.04464010149240494, 0.018365416675806046, 0.0189973097294569 ]
[ -0.08442199975252151, -0.01604820042848587, -0.052577413618564606, 0.00783069059252739, 0.05013874173164368, -0.025769611820578575, -0.03490738570690155, 0.02261161431670189, 0.023000579327344894, -0.013208828866481781, 0.030738482251763344, -0.06990965455770493, 0.02025970257818699, 0.005490908399224281, 0.06664355099201202, 0.022169427946209908, -0.010147176682949066, 0.014516628347337246, 0.024873236194252968, 0.03497733548283577, 0.03459656238555908, -0.05589112266898155, -0.06421320140361786, -0.06307123601436615, 0.04625441133975983, 0.03260771185159683, 0.04740690812468529, -0.03148088976740837, 0.0036695031449198723, -0.23254874348640442, 0.013995145447552204, 0.0016675859224051237, 0.053849056363105774, -0.035031065344810486, 0.006567804608494043, 0.02235756255686283, 0.032495807856321335, 0.007124114781618118, -0.054751280695199966, 0.019797930493950844, 0.0093498844653368, 0.041451819241046906, -0.04244808107614517, -0.010744304396212101, 0.05114350467920303, 0.02256416529417038, -0.010573250241577625, -0.007905302569270134, -0.010431444272398949, -0.01518191583454609, -0.05848870426416397, -0.012188411317765713, 0.008850781247019768, -0.009809808805584908, -0.0036767038982361555, 0.02789400890469551, 0.043021101504564285, 0.0060189939104020596, -0.01429659966379404, 0.04305771738290787, 0.00023420681827701628, -0.0017360715428367257, -0.13493727147579193, 0.05359838530421257, 0.06776048243045807, 0.032064586877822876, -0.02226470410823822, -0.007753846235573292, -0.027827853336930275, 0.11880560219287872, 0.045050520449876785, 0.027230318635702133, -0.027523942291736603, 0.007517715450376272, 0.03185729309916496, 0.012105800211429596, 0.013498771004378796, 0.024313023313879967, 0.03849906846880913, -0.04449255391955376, -0.05168408900499344, -0.020175520330667496, -0.04711655527353287, -0.00040740976692177355, -0.005407224874943495, -0.006696878932416439, -0.02389274723827839, 0.013292087242007256, 0.0016242546262219548, 0.022549334913492203, 0.033286526799201965, 0.012510266155004501, 0.009612820111215115, -0.017892898991703987, -0.0907883495092392, -0.007455751299858093, 0.0019361503655090928, 0.009457636624574661, -0.03084595315158367, 0.4582032263278961, -0.036036599427461624, 0.0003206180117558688, 0.07520749419927597, 0.006017668638378382, 0.0048891399055719376, 0.0002859933883883059, -0.00930638238787651, -0.04714779183268547, -0.016155174002051353, -0.035980816930532455, 0.030499286949634552, -0.049146708101034164, 0.06793806701898575, -0.05064393952488899, 0.009308912791311741, -0.03617338836193085, 0.047698020935058594, 0.034157894551754, 0.001526302075944841, 0.00924154743552208, -0.03274437040090561, 0.017260251566767693, 0.03190263733267784, 0.008485240861773491, 0.0048232851549983025, -0.010402257554233074, -0.01491854153573513, 0.05003061145544052, 0.04728775471448898, 0.0322248749434948, 0.06768406927585602, -0.03543543443083763, -0.053584203124046326, 0.003978329245001078, 0.011230594478547573, -0.020999755710363388, 0.02778812125325203, -0.04559269919991493, -0.031412988901138306, 0.00688300933688879, -0.04865826666355133, 0.01214279793202877, 0.048812780529260635, -0.024933742359280586, -0.05025717616081238, 0.10305467993021011, 0.00003174648736603558, -0.04929177835583687, -0.019056852906942368, -0.05043535307049751, 0.0020723629277199507, -0.023199643939733505, 0.008480959571897984, -0.05617816373705864, 0.009361890144646168, -0.017998553812503815, 0.06512796878814697, -0.008907007053494453, -0.02678416296839714, 0.007118556648492813, -0.010145454667508602, -0.02143135666847229, -0.06652174890041351, 0.07429305464029312, 0.0710240826010704, -0.1012062281370163, -0.009287729859352112, 0.003760692896321416, -0.013343432918190956, -0.07672975957393646, 0.024442797526717186, 0.04725925251841545, -0.019887780770659447, -0.004876256454735994, 0.040761493146419525, -0.014864272437989712, -0.0361102856695652, -0.030917510390281677, 0.023284912109375, 0.008677439764142036, 0.015770332887768745, -0.005384692456573248, -0.04029964283108711, -0.011016657575964928, -0.03793124482035637, -0.042326126247644424, -0.05152292922139168, 0.004435269627720118, -0.032186031341552734, -0.021124131977558136, -0.012685420922935009, -0.004010400734841824, -0.05533554404973984, 0.06389151513576508, -0.06751970946788788, -0.035803403705358505, 0.04028908535838127, -0.007527101784944534, -0.008014684543013573, 0.008006478659808636, -0.011903648264706135, 0.027859322726726532, 0.00007625966100022197, 0.03367872163653374, -0.08140036463737488, 0.00795469619333744, 0.04895555600523949, -0.026567760854959488, 0.07322314381599426, 0.04350169748067856, -0.019642364233732224, -0.03968852013349533, 0.013026888482272625, 0.012544982135295868, -0.0036042043939232826, -0.016653848811984062, 0.017460770905017853, 0.005641093477606773, 0.004180992022156715, 0.06662227213382721, -0.01472249161452055, -0.04769498482346535, -0.05422056466341019, -0.3144528269767761, -0.07093682885169983, -0.02830364927649498, -0.003528105327859521, 0.05420274659991264, -0.03059966303408146, -0.013874254189431667, -0.04741796478629112, -0.02393908053636551, 0.0019223615527153015, 0.08070088177919388, -0.0072682322934269905, -0.022860269993543625, -0.04463997110724449, -0.006285985000431538, 0.015680665150284767, -0.009019705466926098, -0.023568660020828247, -0.020075984299182892, 0.0024708572309464216, 0.00119381258264184, 0.014183069579303265, 0.003213853808119893, -0.033192720264196396, -0.017228584736585617, -0.014995931647717953, 0.12329235672950745, -0.008868672885000706, 0.07128175348043442, -0.03237937390804291, 0.03567838668823242, -0.03148486092686653, 0.00095588737167418, 0.0013626419240608811, 0.005726833827793598, -0.0023935677018016577, 0.017996197566390038, -0.007453112863004208, 0.019404787570238113, -0.04344085976481438, -0.07463489472866058, 0.009847859852015972, -0.031204991042613983, -0.04755612090229988, -0.06065911054611206, 0.02732284925878048, -0.010183379054069519, -0.07190415263175964, 0.0028629570733755827, 0.05766163021326065, 0.033831216394901276, -0.007124691270291805, 0.054762110114097595, -0.016647890210151672, -0.0077927131205797195, -0.03854084759950638, -0.057573698461055756, -0.016007965430617332, -0.0164017491042614, -0.005301731638610363, 0.014645343646407127, -0.0072534154169261456, 0.027925269678235054, -0.050472281873226166, -0.0025755660608410835, 0.016017477959394455, 0.0036001100670546293, 0.0030431326013058424, 0.011318089440464973, -0.00829336792230606, 0.0033606248907744884, 0.10490376502275467, 0.04725721850991249, -0.02172861620783806, 0.002153936307877302, 0.03191227838397026, 0.012697343714535236, 0.07151418924331665, -0.00237090652808547, -0.018070323392748833, 0.05705207213759422, -0.042806342244148254, 0.03371604532003403, -0.041994791477918625, -0.04161064699292183, 0.03064548596739769, 0.013513133861124516, -0.011023200117051601, 0.04612797498703003, 0.0442890040576458, -0.009930003434419632, 0.028346681967377663, 0.008602204732596874, -0.05363379418849945, 0.07848284393548965, 0.0017655356787145138, -0.27135583758354187, 0.025057287886738777, 0.06809472292661667, 0.0280230101197958, 0.00578005937859416, 0.021746646612882614, 0.06514424830675125, -0.03287573531270027, 0.032995954155921936, -0.02269415371119976, 0.03017379343509674, 0.08366916328668594, 0.02909143827855587, -0.002334208693355322, 0.014623666182160378, -0.04511919617652893, 0.05051293969154358, 0.004707603249698877, -0.006096119061112404, 0.012127718888223171, 0.02986418642103672, -0.007731945253908634, 0.1831149011850357, -0.013146895915269852, 0.029517678543925285, 0.012005697935819626, -0.03534482419490814, 0.022058280184864998, 0.06789422035217285, -0.006409942638128996, -0.022255178540945053, 0.048284370452165604, 0.028097521513700485, -0.027194613590836525, 0.04416407272219658, -0.025445327162742615, -0.0023585886228829622, 0.05606576427817345, 0.01783730648458004, 0.006170241162180901, 0.0013128399150446057, -0.016101958230137825, -0.04010147601366043, 0.01821097545325756, 0.04055054858326912, -0.01685120165348053, -0.02449464239180088, -0.005338746588677168, -0.044962894171476364, 0.021263310685753822, -0.030973520129919052, -0.009932881221175194, -0.003239212092012167, -0.018586400896310806, 0.024059269577264786, 0.06412754207849503, -0.0009356863447465003, -0.02731364406645298, -0.02609693445265293, -0.018178453668951988, -0.021539118140935898, -0.0285132247954607, 0.09891389310359955, 0.004244361538439989, 0.0719689354300499 ]
[ 0.010538261383771896, 0.0632316842675209, -0.012039604596793652, 0.035808056592941284, 0.015129288658499718, -0.034995853900909424, -0.017627980560064316, 0.017498601227998734, -0.059949733316898346, 0.012775092385709286, -0.0006971699185669422, 0.040166307240724564, 0.02451770380139351, -0.026637781411409378, -0.0059362296015024185, 0.015400996431708336, 0.00042947783367708325, 0.013240356929600239, 0.05563558638095856, -0.022494355216622353, -0.014189256355166435, -0.0172605961561203, 0.014426358975470066, -0.054950568825006485, 0.027486717328429222, 0.041428983211517334, -0.046173807233572006, 0.02671465463936329, 0.0506201907992363, -0.1139012798666954, -0.01694238930940628, -0.031106935814023018, -0.006509459111839533, 0.0016597399953752756, -0.03825419768691063, -0.0016830944223329425, -0.0597226582467556, 0.0017955675721168518, 0.012686528265476227, 0.002192466054111719, 0.060304757207632065, 0.019304808229207993, -0.02181337960064411, 0.0059606474824249744, -0.010927364230155945, 0.01680980809032917, -0.05986921116709709, 0.003853023750707507, -0.01442341972142458, -0.034871648997068405, -0.01553283166140318, -0.03936133533716202, -0.005588014144450426, -0.006125221960246563, 0.0019095026655122638, -0.025433190166950226, 0.008314240723848343, -0.006694772280752659, -0.007060712669044733, -0.012701859697699547, 0.02093886397778988, -0.010554308071732521, -0.05737763270735741, -0.01553698442876339, -0.0020057966466993093, -0.012756528332829475, 0.0008710575639270246, 0.015435189940035343, -0.012147646397352219, -0.016900211572647095, 0.035924751311540604, 0.026480482891201973, -0.05324643850326538, 0.0060333628207445145, 0.03316471725702286, 0.016253288835287094, 0.030352111905813217, 0.015114649198949337, -0.012811408378183842, -0.013618641532957554, -0.02976444736123085, 0.024350875988602638, -0.01602526567876339, -0.006618261802941561, -0.015672245994210243, -0.022653648629784584, -0.006397636141628027, 0.009077797643840313, 0.016192466020584106, -0.008788554929196835, -0.01923990249633789, 0.03578691557049751, -0.02653476782143116, 0.010991132818162441, -0.10234106332063675, 0.047828346490859985, -0.0017288585659116507, -0.006076735444366932, -0.021067248657345772, 0.809248149394989, 0.012305980548262596, -0.021462440490722656, 0.009721126407384872, -0.018464980646967888, 0.004010332748293877, 0.06201537325978279, -0.03598610311746597, 0.008299021050333977, 0.012980560772120953, -0.039253730326890945, 0.019402865320444107, -0.002428576583042741, 0.01307517196983099, 0.03489845246076584, -0.005848643369972706, -0.026015277951955795, 0.02994471602141857, -0.02091395854949951, 0.05817125737667084, -0.0051684933714568615, -0.024820348247885704, -0.0005845824489369988, -0.004253047052770853, -0.011914649978280067, -0.0028116395696997643, -0.21999609470367432, -0.013894346542656422, -8.161037038528723e-33, -0.003855804679915309, -0.009678315371274948, 0.019420230761170387, -0.0334673747420311, 0.005169777199625969, 0.024727076292037964, -0.004124171566218138, -0.012836165726184845, -0.02561725489795208, -0.01983043923974037, -0.034442801028490067, -0.001577666844241321, -0.0004109279834665358, -0.039887793362140656, 0.0513843335211277, -0.017638221383094788, 0.03683042898774147, 0.017010871320962906, 0.021142374724149704, -0.028977882117033005, -0.008619907312095165, -0.011723403818905354, 0.011318962089717388, 0.0050948369316756725, 0.008943045511841774, 0.0219352375715971, 0.030593587085604668, -0.07615227997303009, 0.02043815515935421, -0.04932500422000885, -0.03955589234828949, 0.029126973822712898, 0.013009022921323776, -0.002940384205430746, 0.004120939411222935, -0.016362788155674934, -0.023299725726246834, 0.017092054709792137, -0.03574035316705704, -0.01578373648226261, -0.03209557756781578, 0.016986358910799026, 0.012474512681365013, -0.010615069419145584, 0.0045854561030864716, 0.019793035462498665, 0.010731126181781292, 0.04101591557264328, -0.027585944160819054, 0.039988551288843155, -0.02410651184618473, 0.022462919354438782, -0.007878386415541172, 0.0190891120582819, -0.04550416022539139, 0.04267248511314392, 0.04074132442474365, 0.020510327070951462, -0.02297748439013958, 0.03133397921919823, 0.058930654078722, -0.005391035228967667, -0.011188166216015816, 0.03796476498246193, -0.017980121076107025, 0.004926624242216349, -0.013395624235272408, -0.023824060335755348, 0.007568391505628824, 0.03018306940793991, -0.07238791882991791, 0.03612741455435753, 0.00836764182895422, 0.005765523295849562, 0.013090956024825573, -0.012991560623049736, 0.009980481117963791, -0.008633184246718884, 0.0032928865402936935, 0.01025647297501564, 0.0004651129129342735, -0.023473631590604782, -0.012888670898973942, -0.042825013399124146, -0.005579857155680656, -0.02860836125910282, 0.02454496920108795, 0.001864551566541195, 0.0001149175368482247, 0.036228686571121216, 0.06802012771368027, 0.020578784868121147, -0.0229216068983078, 0.020587297156453133, -0.0033969576470553875, 8.461209806586764e-33, -0.015359924174845219, -0.005923427175730467, 0.03585202619433403, -0.018784180283546448, 0.037893712520599365, 0.0009659510687924922, 0.017918825149536133, 0.0085380207747221, -0.06204826012253761, 0.041209183633327484, 0.025872860103845596, -0.0017631700029596686, -0.003280930919572711, 0.03920336067676544, 0.05596443638205528, -0.024028107523918152, 0.013496210798621178, -0.0029197579715400934, -0.000404811289627105, 0.02190445363521576, 0.03758612647652626, 0.03276548907160759, -0.029764210805296898, 0.026298342272639275, 0.02796332910656929, 0.013650349341332912, 0.015379429794847965, 0.0001854199799709022, 0.0036892893258482218, 0.03911590576171875, 0.007015218958258629, -0.022135676816105843, -0.004659030120819807, 0.008228542283177376, 0.0015460586873814464, 0.06471998244524002, 0.018993977457284927, -0.0027520351577550173, 0.013565575703978539, 0.050158385187387466, 0.0244755856692791, -0.008110996335744858, -0.05004468560218811, 0.019017135724425316, -0.004094246309250593, 0.019446415826678276, -0.028327418491244316, -0.0007943919044919312, -0.0401175394654274, 0.0024217679165303707, 0.003711163764819503, -0.005082058720290661, 0.02324373461306095, 0.026132972911000252, 0.02178136445581913, -0.05116363242268562, -0.02672453597187996, 0.042311687022447586, -0.011660540476441383, -0.012734848074615002, -0.013781731016933918, -0.008601655252277851, -0.04492262005805969, 0.009435374289751053, -0.04553684592247009, -0.03645304962992668, -0.021989542990922928, -0.06554678827524185, -0.02139212377369404, 0.0023892433382570744, -0.04222879931330681, 0.04144081473350525, -0.02512095868587494, -0.007523354608565569, 0.009796436876058578, -0.012722997926175594, -0.0028893686830997467, 0.01910191960632801, -0.01736554130911827, 0.0082673579454422, 0.03518866375088692, 0.03494198992848396, 0.032765548676252365, 0.0030066443141549826, -0.003198511665686965, -0.01357663981616497, -0.006149320397526026, -0.0058974758721888065, 0.002556690713390708, 0.006896414794027805, 0.01860012859106064, -0.0046324701979756355, -0.017570698633790016, 0.058580659329891205, -0.023030543699860573, -1.3289741751520978e-8, -0.06815691292285919, 0.05195709690451622, -0.010939816944301128, -0.01091735903173685, 0.05954909697175026, 0.027837952598929405, 0.029743695631623268, 0.008685203269124031, -0.04756760597229004, 0.011842274107038975, 0.027515480294823647, -0.019003547728061676, -0.008057973347604275, 0.03345894068479538, 0.018281884491443634, -0.0027995207346975803, -0.012508121319115162, -0.02887328341603279, 0.04837842285633087, -0.0030162306502461433, 0.013068787753582, 0.019144078716635704, -0.037281159311532974, 0.03505128249526024, -0.0038139510434120893, -0.036122266203165054, 0.04303727671504021, -0.05523262172937393, 0.042274780571460724, 0.010378648526966572, -0.012992124073207378, -0.02212240733206272, -0.007805380970239639, 0.01243083830922842, -0.024242624640464783, 0.0076116290874779224, -0.01158981118351221, 0.023086845874786377, -0.012881007045507431, 0.03241987153887749, -0.0038412946742028, 0.006199301686137915, -0.033625371754169464, -0.032810527831315994, -0.014731422066688538, 0.023314040154218674, 0.010689374059438705, -0.011956490576267242, 0.036203011870384216, -0.044511936604976654, 0.023380395025014877, -0.03322122246026993, 0.011457476764917374, 0.0074821291491389275, 0.023095708340406418, -0.02173623815178871, 0.021564507856965065, -0.029481589794158936, -0.021120091900229454, -0.020118841901421547, 0.033040765672922134, 0.026651909574866295, 0.007121256552636623, -0.0011849914444610476 ]
prims-algorithm-in-ruby
https://markhneedham.com/blog/2012/12/15/prims-algorithm-in-ruby
false
2012-12-12 00:04:42
Weka: Saving and loading classifiers
[ "machine-learning-2", "weka" ]
[ "Machine Learning" ]
In our continued machine learning travels https://twitter.com/jennifersmithco[Jen] and I have been building some classifiers using http://www.cs.waikato.ac.nz/ml/weka/[Weka] and one thing we wanted to do was save the classifier and then reuse it later. There is http://weka.wikispaces.com/Saving+and+loading+models[documentation] for how to do this from the command line but we're doing everything programatically and wanted to be able to save our classifiers from Java code. As it turns out it's not too tricky when you know which classes to call and saving a classifier to a file is as simple as this: [source,java] ---- MultilayerPerceptron classifier = new MultilayerPerceptron(); classifier.buildClassifier(instances); // instances gets passed in from elsewhere Debug.saveToFile("/path/to/weka-neural-network", classifier); ---- If we want to load that classifier up we can make use of the +++<cite>+++http://weka.sourceforge.net/doc.dev/weka/classifiers/misc/SerializedClassifier.html[SerializedClassifier]+++<cite>+++class like so:</p> ~~~java SerializedClassifier classifier = new SerializedClassifier(); classifier.setModelFile(new File("/path/to/weka-neural-network")); ~~~ http://www.youtube.com/watch?v=Hl545RF6dXA[Simples]! +++</cite>++++++</cite>+++
null
null
[ 0.0273950956761837, -0.037228476256132126, -0.017882313579320908, 0.02692090906202793, 0.07997362315654755, 0.012159029953181744, 0.02384403720498085, 0.008506816811859608, -0.016689330339431763, -0.018645113334059715, 0.0071703786961734295, -0.0008669205708429217, -0.04726443812251091, 0.019556090235710144, -0.02487608790397644, 0.04558417201042175, 0.06804147362709045, 0.011579697020351887, 0.007726890966296196, 0.017752869054675102, 0.014662990346550941, 0.05847043916583061, 0.024659015238285065, 0.02289658412337303, 0.013987231068313122, 0.0012628650292754173, -0.0018357743974775076, -0.00807503517717123, -0.06159232556819916, -0.00040654861368238926, 0.05082254111766815, 0.022552426904439926, 0.01312048826366663, -0.006310504395514727, 0.020955972373485565, 0.0039291693829, -0.02137782610952854, 0.026953009888529778, 0.016093870624899864, 0.032090045511722565, -0.054945554584264755, 0.05229266360402107, -0.007918662391602993, 0.02458515577018261, -0.053384121507406235, 0.023813998326659203, -0.027162740007042885, -0.0029120154213160276, 0.0028956294991075993, -0.0237516388297081, -0.06293132156133652, -0.0021708288695663214, 0.0034061691258102655, -0.017534198239445686, 0.020623594522476196, 0.04669441655278206, 0.02312154322862625, -0.07310356944799423, 0.03902329504489899, -0.03243647888302803, -0.00900066178292036, -0.01540657039731741, 0.007220031227916479, 0.03871187940239906, 0.00046851305523887277, -0.01777730882167816, -0.011528033763170242, 0.022550692781805992, -0.0439835824072361, 0.006892288103699684, -0.01585330441594124, -0.002077099634334445, -0.03571678325533867, 0.01806635595858097, 0.0025594900362193584, -0.029148070141673088, -0.006267044693231583, 0.07160018384456635, 0.004675568547099829, 0.03632291033864021, -0.021635739132761955, -0.008580218069255352, 0.023958908393979073, 0.016722822561860085, -0.005122937727719545, -0.02582339011132717, -0.04678638279438019, -0.012950058095157146, -0.06944397836923599, 0.05723920837044716, -0.0009084149496629834, -0.024503102526068687, 0.006891497876495123, 0.0358324833214283, 0.004051032941788435, 0.04559222608804703, 0.0062491800636053085, -0.011641270481050014, 0.022482609376311302, -0.013789664022624493, -0.06461150199174881, -0.02125960774719715, 0.004612310323864222, 0.033364612609148026, -0.06583593040704727, -0.02161850966513157, -0.0003399183333385736, -0.021453561261296272, -0.01628008857369423, 0.00016994592442642897, -0.025345686823129654, 0.017976021394133568, -0.014545083977282047, -0.022124743089079857, -0.0718763992190361, 0.04176126793026924, 0.01718129962682724, -0.051987312734127045, -0.03854541853070259, 0.04983149468898773, 0.039360079914331436, 0.045058347284793854, 0.010120089165866375, 0.07778900861740112, -0.006292634177953005, 0.02866179682314396, -0.015652675181627274, 0.04796648398041725, -0.01685003936290741, -0.09336576610803604, 0.015978535637259483, 0.04861664026975632, 0.00431532459333539, 0.024111619219183922, 0.00029389074188657105, -0.004271869547665119, -0.016831662505865097, -0.015840761363506317, 0.04050523787736893, 0.025980185717344284, -0.00976402685046196, -0.03592297434806824, 0.004631945863366127, -0.005710246041417122, 0.009126502089202404, 0.02640022151172161, -0.025920921936631203, -0.02591986209154129, -0.031030960381031036, 0.009810023941099644, -0.0125301294028759, 0.01855192705988884, 0.055386338382959366, -0.04655825346708298, -0.008057711645960808, 0.08093062043190002, 0.011147350072860718, 0.027256565168499947, -0.0017399177886545658, 0.02382814697921276, 0.05477059632539749, 0.04453372210264206, 0.016758529469370842, 0.060405343770980835, 0.021770071238279343, -0.03535684570670128, 0.01681489124894142, 0.048074908554553986, -0.012055122293531895, 0.013725068420171738, -0.03963484987616539, -0.0597681887447834, 0.048281148076057434, -0.04401099309325218, -0.028217501938343048, 0.020470766350626945, 0.08054166287183762, 0.026298440992832184, 0.05845346674323082, -0.010296178050339222, -0.07952191680669785, 0.0381145216524601, 0.0032471574377268553, 0.019566288217902184, 0.01934850588440895, -0.0009981696493923664, 0.06887412816286087, 0.014186713844537735, 0.014564539305865765, 0.02954430878162384, -0.04932822659611702, -0.07064168155193329, -0.012545265257358551, -0.03332693502306938, 0.0775192454457283, 0.002443104051053524, 0.003208689857274294, 0.062802255153656, -0.005448795855045319, 0.04704255983233452, 0.051604948937892914, -0.021653635427355766, 0.011288246139883995, -0.06429337710142136, -0.0512615405023098, 0.04062327742576599, 0.019797807559370995, -0.05739346519112587, -0.03145607188344002, 0.015343379229307175, -0.023284880444407463, 0.007758939638733864, 0.0296617541462183, -0.03165625408291817, 0.023551346734166145, 0.04043867066502571, 0.024741966277360916, -0.002830726094543934, 0.0737619549036026, -0.06386637687683105, 0.021974224597215652, -0.005276271142065525, -0.029190702363848686, -0.020130788907408714, 0.0251527801156044, 0.12950006127357483, 0.04354964941740036, -0.00926610641181469, -0.04488060250878334, 0.02209833264350891, 0.006370921153575182, -0.040864575654268265, -0.01470212358981371, 0.00857582502067089, -0.016744406893849373, 0.004679832607507706, -0.034260861575603485, -0.010267922654747963, 0.027789447456598282, -0.0388447642326355, -0.0010500627104192972, 0.09218676388263702, -0.039374593645334244, 0.053319383412599564, 0.008614744991064072, 0.0033593722619116306, 0.0017720891628414392, -0.05055999755859375, -0.0784427598118782, 0.004933400545269251, 0.027902932837605476, -0.007491623982787132, 0.034591712057590485, -0.034706875681877136, -0.042778972536325455, -0.03813942149281502, -0.05175136402249336, 0.0053865485824644566, 0.05587492138147354, 0.05869327858090401, 0.020737240090966225, 0.02725493535399437, -0.04423701390624046, 0.020025402307510376, -0.016049182042479515, -0.055786993354558945, -0.005157490726560354, -0.0345122255384922, 0.037936143577098846, 0.04503653571009636, 0.023476937785744667, 0.02183559536933899, 0.05304589867591858, 0.01616319827735424, -0.005276443436741829, 0.011774442158639431, 0.04188184440135956, 0.005373459309339523, -0.02738938108086586, -0.03548801317811012, -0.025176232680678368, 0.053514108061790466, -0.015481392852962017, -0.020628761500120163, 0.027732551097869873, -0.07162116467952728, 0.0333031564950943, -0.07247970998287201, -0.04780972748994827, 0.0010501147480681539, 0.011961002834141254, 0.032416198402643204, -0.0007289196946658194, 0.007060947362333536, 0.07464956492185593, 0.0060647292993962765, 0.016296805813908577, 0.01689125783741474, 0.008765014819800854, 0.04087401181459427, -0.03141199052333832, 0.03327655419707298, 0.049752507358789444, -0.007850111462175846, -0.003954041749238968, -0.016054809093475342, 0.009804846718907356, -0.035876862704753876, -0.2788814306259155, 0.02121129259467125, -0.02148507535457611, -0.0361967496573925, 0.00463575916364789, -0.02446029521524906, 0.017643023282289505, -0.02629186026751995, -0.007296918425709009, 0.01933431625366211, -0.021256377920508385, -0.0070860376581549644, -0.01909291185438633, 0.054820891469717026, -0.01445147953927517, 0.005716810002923012, 0.016011537984013557, -0.012600225396454334, 0.0080031119287014, 0.04538152739405632, -0.0032660772558301687, -0.03615933656692505, -0.025137070566415787, 0.07321470975875854, 0.020710600540041924, 0.06294532865285873, -0.10073301941156387, 0.04097961634397507, -0.047325123101472855, -0.03004983626306057, 0.0033053080551326275, -0.03662761300802231, -0.005019524600356817, -0.012283497489988804, -0.02203233912587166, -0.031612467020750046, 0.015885664150118828, 0.03763744980096817, -0.0032880874350667, 0.013301724568009377, -0.0027830065228044987, -0.04035960137844086, -0.03178028017282486, -0.001346735400147736, 0.07453660666942596, -0.004066416993737221, -0.09605452418327332, -0.021140996366739273, -0.03792652487754822, 0.07438371330499649, -0.03432667255401611, -0.044161099940538406, -0.010344314388930798, 0.03181815519928932, -0.017894376069307327, -0.028667159378528595, 0.019279835745692253, 0.0016507222317159176, -0.024868011474609375, -0.041704826056957245, -0.022727102041244507, -0.05440950021147728, -0.006405466701835394, -0.08555778115987778, -0.0014163203304633498, -0.0740894004702568, -0.06278520822525024, -0.002599745988845825, 0.0575072281062603, 0.037893351167440414, -0.04873276129364967, 0.0244249626994133, -0.028879277408123016, -0.10168837755918503, 0.01553550735116005, -0.044852063059806824, -0.03291313722729683, -0.017765672877430916, -0.0012468895874917507, 0.08157383650541306, -0.031935058534145355, -0.03745674341917038, 0.046921130269765854, -0.022120177745819092, 0.006684198975563049, -0.025149650871753693, 0.0448099821805954, -0.007212209049612284, -0.0007065543904900551, -0.013199624605476856, 0.0478370226919651, 0.001834675669670105, -0.010403650812804699, -0.032905127853155136, 0.003312000771984458, 0.06423136591911316, 0.003570226253941655, -0.015424222685396671, 0.02963879145681858, 0.02891056425869465, 0.03414030000567436, -0.041434042155742645, 0.0037663925904780626, -0.05032721161842346, -0.006874704733490944, 0.016290348023176193, -0.055092331022024155, -0.018247978761792183, 0.02899065800011158, 0.02361682616174221, -0.013020245358347893, -0.04365982860326767, 0.003993870224803686, -0.049464527517557144, -0.0326918289065361, 0.005661994218826294, -0.0006786063895560801, 0.01168180350214243, 0.028242042288184166, -0.03458898514509201, -0.04599715769290924, 0.010952101089060307, -0.011654679663479328, -0.017908450216054916, -0.044103074818849564, -0.0357491709291935, 0.01671210303902626, -0.028493497520685196, -0.018483120948076248, 0.015120208263397217, -0.0426020585000515, 0.023822473362088203, 0.0179902296513319, -0.012792695313692093, 0.015459047630429268, -0.0115719735622406, -0.027019420638680458, -0.02525254711508751, 0.01139621902257204, 0.012709422968327999, -0.018662286922335625, -0.004237103275954723, 0.014302371069788933, 0.02855970524251461, 0.053276970982551575, 0.01605282537639141, 0.03812250867486, 0.011276766657829285, 0.010861940681934357, -0.024847345426678658, 0.025831731036305428, -0.040807388722896576, 0.007180317770689726, -0.013099933974444866, -0.02156083658337593, -0.008859163150191307, 0.04389578104019165, -0.021125711500644684, -0.026701729744672775, -0.049735795706510544, 0.026321670040488243, -0.0343545600771904, -0.016526270657777786, -0.03592757508158684, 0.009333682246506214, 0.05919957160949707, -0.026288097724318504, 0.026815515011548996, 0.02068205736577511, -0.022917646914720535, 0.02166645973920822, -0.01419896725565195, -0.026492498815059662, 0.008353574201464653, -0.010298308916389942, -0.021541891619563103, 0.024845145642757416, 0.021347764879465103, 0.016544848680496216, 0.020223073661327362, -0.010295923799276352, -0.008431123569607735, 0.013392086140811443, -0.015349171124398708, 0.03760388866066933, 0.012548527680337429, -0.011271883733570576, 0.03747767210006714, -0.03043344058096409, -0.019319290295243263, -0.017751293256878853, 0.0047997236251831055, -0.0057609789073467255, 0.020658887922763824, -0.006312174256891012, -0.055817119777202606, 0.01713518425822258, 0.01616477034986019, 0.032444197684526443, 0.008013268001377583, -0.02457408793270588, 0.019067512825131416, -0.043365489691495895, 0.027519691735506058, 0.05879369378089905, -0.08405466377735138, 0.011653467081487179, 0.002834450686350465, 0.01574876718223095, -0.01108279637992382, -0.016005925834178925, -0.041339557617902756, 0.003973595332354307, -0.03130541741847992, 0.010987170040607452, -0.04373369365930557, -0.04091687127947807, -0.006641771644353867, 0.02878979593515396, -0.005309583153575659, 0.007004288956522942, -0.010521573014557362, 0.011464288458228111, -0.016847793012857437, -0.04364122077822685, 0.012963805347681046, -0.0037129928823560476, 0.017904231324791908, 0.010440615005791187, -0.01249848585575819, 0.04102955386042595, -0.027614207938313484, 0.030496101826429367, 0.039615657180547714, -0.023011917248368263, -0.002386137843132019, -0.01878795400261879, 0.018783893436193466, 0.019809994846582413, 0.046392519026994705, 0.022756453603506088, 0.0037573061417788267, -0.07382716238498688, -0.0028670274186879396, -0.04502548277378082, 0.013788792304694653, -0.008987593464553356, -0.0011919086100533605, 0.023576663807034492, 0.035026516765356064, 0.02669168822467327, 0.02166758105158806, -0.020000113174319267, -0.04740586504340172, 0.06676975637674332, -0.06375765055418015, -0.04353059455752373, -0.007739872671663761, -0.033330824226140976, 0.04078173637390137, 0.007409735582768917, 0.05483110621571541, -0.05927189439535141, 0.05900171771645546, 0.008362897671759129, -0.006901239510625601, -0.00348899164237082, 0.0007515603792853653, 0.028999250382184982, -0.05302829667925835, -0.0025000139139592648, -0.08579983562231064, -0.03175482526421547, 0.07184849679470062, 0.03202721104025841, -0.007274175062775612, -0.0194869302213192, -0.05010499432682991, 0.01849484071135521, -0.07138260453939438, -0.031550489366054535, 0.03468582406640053, -0.018222566694021225, -0.004313124809414148, 0.005821361672133207, -0.05245796963572502, 0.035175856202840805, 0.03755972161889076, -0.05857498571276665, -0.024886874482035637, -0.05008486285805702, 0.0712907612323761, 0.022839128971099854, 0.006453597918152809, -0.0156136779114604, -0.0012689311988651752, 0.09051544964313507, 0.015307591296732426, 0.022460030391812325, 0.020983941853046417, -0.01597813330590725, 0.03864792734384537, 0.01302691176533699, -0.012008529156446457, -0.00530220614746213, 0.02088312804698944, -0.001547871739603579, -0.04888647794723511, 0.018671264871954918, 0.010343533009290695, -0.015929896384477615, -0.03529895097017288, 0.054558563977479935, 0.007092130836099386, -0.02784113585948944, -0.050862688571214676, 0.03110577166080475, -0.06156563013792038, -0.01830589398741722, -0.03132506087422371, 0.035757627338171005, -0.04690872132778168, 0.06955579668283463, 0.007300650700926781, -0.006271194200962782, 0.06447266787290573, -0.0036355347838252783, -0.03323132172226906, -0.0013452742714434862, 0.08235981315374374, 0.06384376436471939, 0.024658678099513054, 0.021470382809638977, 0.06314349174499512, 0.0008140903082676232, -0.03940955176949501, 0.006849844008684158, 0.002950137248262763, -0.029497917741537094, -0.016115674749016762, 0.015817834064364433, 0.060274671763181686, 0.00889720767736435, 0.06756323575973511, -0.029063798487186432, -0.0036242767237126827, 0.023885615170001984, 0.04498160257935524, 0.013717420399188995, 0.00890805758535862, -0.00361818028613925, 0.03494032472372055, -0.015146463178098202, -0.06811114400625229, 0.03124702163040638, -0.00633056228980422, 0.013099119067192078, 0.00876840204000473, -0.018789304420351982, 0.029955463483929634, 0.018659023568034172, 0.06462133675813675, 0.09029250591993332, -0.0407387837767601, -0.005641362629830837, -0.0164419487118721, 0.019518503919243813, 0.002805202966555953, -0.0004350914678070694, -0.00702331867069006, -0.019307665526866913, 0.011688651517033577, -0.050993915647268295, 0.0007632628548890352, -0.023446960374712944, -0.005455230362713337, 0.012086281552910805, -0.03864578530192375, 0.019081179052591324, 0.014899354428052902, 0.009751498699188232, -0.04121146351099014, -0.0539613775908947, -0.030017223209142685, -0.03500907123088837, -0.07489136606454849, -0.0152549734339118, 0.019404249265789986, 0.027129076421260834, -0.046486884355545044, -0.04264980927109718, -0.04660804197192192, -0.010741406120359898, 0.038159921765327454, -0.07928440719842911, -0.00483875535428524, 0.027176639065146446, 0.020138822495937347, 0.0060669234953820705, 0.019285103306174278, 0.04665868729352951, 0.007551980204880238, 0.005539793521165848, -0.0009293625480495393, -0.002830249723047018, 0.03951221704483032, 0.00020308354578446597, 0.016738155856728554, -0.0733124241232872, 0.0267613735049963, -0.005367449019104242, -0.025699228048324585, -0.06837545335292816, 0.009633154608309269, 0.05741669237613678, 0.013024772517383099, 0.05906437337398529, 0.00675441836938262, -0.010102711617946625, -0.04795782268047333, -0.023448850959539413, -0.02726609632372856, 0.003260202007368207, 0.02350669354200363, 0.005037570372223854, 0.09211833029985428, 0.029887763783335686, -0.009172600694000721, -0.031156141310930252, -0.028982678428292274, -0.0010709705529734492, 0.005284599959850311, -0.04252035170793533, -0.0299027431756258, -0.03364839032292366, -0.08360850811004639, -0.01251547783613205, 0.020551074296236038, -0.023234156891703606, -0.04617076739668846, -0.0004918968770653009, 0.013770448975265026, -0.0032009235583245754, 0.01134330965578556, -0.05258781090378761, -0.004652829375118017, -0.023837246000766754, -0.014316482469439507, -0.0011248968075960875, 0.028478069230914116, -0.0006547014345414937, 0.008843287825584412, 0.02826056070625782, -0.04348123073577881, -0.03565807268023491, -0.005487872753292322, 0.03813255578279495, 0.07118101418018341, -0.003719484433531761, -0.025153785943984985 ]
[ -0.07937870919704437, -0.01652524434030056, -0.0181661918759346, -0.018071018159389496, 0.05030416324734688, -0.0403263233602047, -0.012299681082367897, 0.06415402889251709, -0.007381198462098837, -0.022123271599411964, -0.019070718437433243, -0.053790975362062454, -0.029827797785401344, -0.009785063564777374, 0.10876763612031937, -0.007854933850467205, 0.011462422087788582, -0.04922158643603325, -0.04433061182498932, 0.010787049308419228, -0.00005034033165429719, -0.010606345720589161, -0.029231194406747818, -0.02051716297864914, 0.01409192755818367, 0.02938867174088955, 0.03993213176727295, -0.03995496407151222, 0.020438333973288536, -0.21481478214263916, 0.04375811666250229, -0.01810881495475769, 0.03721306845545769, -0.02286282740533352, 0.003328945953398943, 0.05261925980448723, 0.051468972116708755, 0.03567790985107422, 0.0033244621008634567, 0.05685288831591606, -0.007562610320746899, 0.002367043634876609, -0.07844072580337524, -0.03436950594186783, 0.0547112338244915, -0.005426091141998768, 0.019714277237653732, -0.052386973053216934, -0.023606913164258003, 0.014066371135413647, -0.030397938564419746, -0.02981303259730339, -0.007165688090026379, -0.0014183006715029478, 0.012962402775883675, 0.01717015914618969, 0.061858292669057846, 0.08380629867315292, 0.045933421701192856, 0.001872769556939602, -0.010157992132008076, -0.003146885661408305, -0.14005695283412933, 0.08112859725952148, -0.01549285463988781, 0.049712058156728745, -0.00595891335979104, -0.029164815321564674, 0.008442931808531284, 0.08119728416204453, 0.009316470474004745, 0.0012291868915781379, -0.014805137179791927, 0.05136615410447121, -0.005930451676249504, 0.018470434471964836, 0.05012090131640434, 0.010781466029584408, 0.03950616344809532, -0.05295070260763168, -0.04050358757376671, 0.008390171453356743, -0.01060089934617281, -0.01781749166548252, -0.015473992563784122, 0.017299238592386246, -0.011256986297667027, 0.057585157454013824, 0.02616921253502369, 0.006531884428113699, 0.004355115350335836, -0.0125409672036767, 0.049475207924842834, 0.034620583057403564, -0.08223114162683487, -0.03225962445139885, -0.026172520592808723, 0.03338262438774109, -0.021310389041900635, 0.4001452326774597, -0.07118871808052063, -0.03702973946928978, 0.0652223750948906, 0.039855826646089554, -0.027572210878133774, -0.04060734435915947, -0.016192566603422165, -0.06960076838731766, -0.01648874208331108, -0.05015275627374649, 0.010250682942569256, 0.016929488629102707, 0.012646375223994255, -0.021909553557634354, 0.001584436628036201, -0.00930218119174242, 0.026888471096754074, 0.034050606191158295, -0.005708847660571337, 0.029248187318444252, -0.006252704653888941, -0.010103707201778889, 0.012852473184466362, -0.015839435160160065, 0.004830470774322748, -0.0381971150636673, 0.021777473390102386, 0.06287048012018204, 0.02958759106695652, 0.007181172259151936, 0.031903333961963654, -0.04059112071990967, -0.10415758937597275, -0.018864762037992477, 0.007688293699175119, 0.007599666714668274, 0.02512671984732151, -0.02070598118007183, -0.03515317663550377, 0.001353673986159265, 0.00011730018741218373, -0.006023145746439695, 0.04767550155520439, -0.00869058072566986, -0.07933247089385986, 0.12503966689109802, -0.006665654480457306, -0.01886856183409691, 0.041517794132232666, -0.06759344041347504, 0.010307103395462036, 0.038924358785152435, 0.008907141163945198, -0.05968429893255234, 0.033043909817934036, 0.022868741303682327, 0.07132916152477264, -0.022343460470438004, -0.06831890344619751, -0.004107921849936247, -0.022499434649944305, -0.046960677951574326, -0.022079162299633026, 0.0351870059967041, 0.06831946969032288, -0.07673599570989609, -0.02946678176522255, 0.008033735677599907, 0.044704630970954895, -0.05396571382880211, 0.019892076030373573, 0.045543961226940155, -0.007901578210294247, 0.010336175560951233, 0.04774561524391174, -0.017354562878608704, -0.016954505816102028, -0.001642051967792213, 0.04166296869516373, 0.01300028245896101, -0.023645177483558655, -0.0008409685106016695, -0.035512775182724, 0.0009678499773144722, -0.016228919848799706, -0.057478148490190506, -0.030953560024499893, -0.027781357988715172, -0.005036468617618084, -0.002700827084481716, 0.005240502301603556, 0.007250875234603882, -0.05291346088051796, 0.05586274340748787, -0.01872328296303749, 0.00463149044662714, 0.004263689741492271, 0.007310457527637482, 0.0016403644112870097, -0.03797158598899841, -0.022668100893497467, 0.05916758254170418, -0.019991282373666763, 0.03407950699329376, -0.02861933223903179, 0.07973985373973846, 0.051122765988111496, -0.035728901624679565, 0.06267370283603668, 0.032208386808633804, -0.029886024072766304, -0.05040651187300682, -0.00038474390748888254, 0.01305230800062418, -0.04045018553733826, 0.016626747325062752, -0.000512555125169456, -0.002147966530174017, 0.015340386889874935, 0.024005785584449768, -0.014192625880241394, -0.00754815898835659, -0.02389347366988659, -0.35640835762023926, -0.0032355713192373514, 0.008881821297109127, -0.02749117650091648, 0.011748561635613441, -0.10707297921180725, 0.0011115159140899777, -0.011750767938792706, -0.007045370526611805, -0.016401343047618866, 0.11452819406986237, -0.017814669758081436, -0.007012670859694481, -0.11225815862417221, -0.004785675089806318, 0.028581267222762108, 0.00437527522444725, -0.017855605110526085, -0.04866500571370125, 0.025965511798858643, -0.023741086944937706, 0.0031633067410439253, 0.01834442839026451, -0.06674547493457794, 0.02304917201399803, -0.03407200425863266, 0.0976317748427391, -0.005896496586501598, 0.10184334218502045, -0.05044546350836754, 0.041961997747421265, 0.019886553287506104, 0.009107053279876709, -0.07427838444709778, -0.0034956769086420536, -0.042338933795690536, -0.00770188495516777, 0.006164402235299349, -0.005423544440418482, -0.02408558689057827, -0.0239657424390316, 0.03499801829457283, -0.027925904840230942, -0.07209458947181702, -0.0023570419289171696, 0.01914766989648342, -0.030421311035752296, -0.06196136772632599, -0.005464616231620312, 0.03613530099391937, -0.003616560949012637, 0.019466044381260872, 0.033687181770801544, -0.008096304722130299, -0.017360640689730644, -0.028671838343143463, -0.07918677479028702, 0.01587691158056259, -0.014099299907684326, 0.028079576790332794, 0.05431269854307175, 0.024197956547141075, 0.032007280737161636, -0.06751080602407455, -0.0036408226005733013, -0.01125809270888567, -0.01644335314631462, 0.0067449528723955154, 0.04675508290529251, -0.03539695218205452, -0.04543142020702362, 0.10897598415613174, 0.005796219687908888, 0.011367528699338436, 0.04520297795534134, 0.009809553623199463, 0.005451933480799198, 0.004506546072661877, 0.025805018842220306, 0.030190683901309967, 0.023106075823307037, 0.004203411750495434, 0.03320971503853798, -0.007174610625952482, 0.01902201771736145, 0.04562586918473244, -0.00040114385774359107, -0.014217659831047058, 0.05939225107431412, 0.04377801716327667, -0.018648510798811913, 0.00158192147500813, 0.010194560512900352, -0.03142154961824417, 0.04978843033313751, -0.008191775530576706, -0.24971126019954681, 0.04379167780280113, 0.07111263275146484, 0.08911730349063873, -0.002590777352452278, 0.001922081457450986, 0.006934016942977905, -0.08154205232858658, 0.011761329136788845, -0.02553924173116684, -0.0013393225381150842, 0.014784755185246468, 0.03496681526303291, -0.003958866931498051, 0.037727467715740204, 0.0006183703080751002, 0.06809710711240768, 0.0016231115441769361, 0.0794326514005661, -0.028730813413858414, 0.004580445121973753, -0.01334815751761198, 0.17270444333553314, -0.0038904929533600807, -0.007202335633337498, -0.0167695302516222, -0.01855870708823204, 0.00005537106699193828, 0.06505104899406433, 0.01615329645574093, 0.017484694719314575, 0.008377034217119217, 0.06458361446857452, 0.014838873408734798, 0.025353962555527687, -0.048241909593343735, -0.03080061636865139, -0.0055219028145074844, 0.01815906912088394, -0.0010257557732984424, 0.01777506060898304, 0.032056525349617004, -0.06953316926956177, 0.006505473051220179, 0.07539576292037964, 0.0016889534890651703, 0.004677086602896452, -0.045040447264909744, -0.09299042075872421, -0.00047954049659892917, -0.005405132658779621, -0.04458090662956238, -0.028548596426844597, -0.03708431124687195, 0.007162618916481733, 0.06728097796440125, 0.006045649293810129, -0.02972613275051117, -0.03740854188799858, -0.014179284684360027, 0.012096656486392021, -0.040429480373859406, 0.10068093985319138, -0.0012213162845000625, 0.01793406903743744 ]
[ -0.027037322521209717, 0.005992330610752106, -0.02707757242023945, 0.035542361438274384, 0.008497245609760284, 0.04164385423064232, -0.0205017551779747, -0.0007733245729468763, -0.010753989219665527, -0.007285038009285927, -0.0065802219323813915, 0.006923592649400234, 0.00704781711101532, -0.042771417647600174, -0.0007361522875726223, -0.010305175557732582, -0.01999104768037796, 0.017877796664834023, -0.002601904096081853, -0.01900198869407177, 0.00196174462325871, 0.019241591915488243, 0.003703298280015588, -0.012424343265593052, -0.020090661942958832, 0.023115508258342743, -0.012981044128537178, 0.00797020923346281, 0.023484978824853897, -0.12343928962945938, -0.02371646650135517, -0.03620945289731026, -0.030883019790053368, 0.0005659822490997612, -0.04382048919796944, 0.030945884063839912, -0.017009012401103973, 0.02955538034439087, 0.011343426071107388, 0.02419348619878292, 0.014354884624481201, -0.023720424622297287, -0.0047204578295350075, 0.012911534868180752, -0.003292931942269206, 0.00745694013312459, -0.06148526072502136, -0.04656846448779106, -0.007299104239791632, -0.033255383372306824, -0.04289327189326286, -0.014983108267188072, 0.003948691301047802, 0.007927624508738518, -0.0076797036454081535, -0.036854878067970276, 0.018442818894982338, 0.028816787526011467, -0.022944841533899307, -0.01891295053064823, 0.0030205890070647, -0.026666807010769844, -0.01763051748275757, -0.021243544295430183, 0.005075441673398018, -0.007744045462459326, -0.01068914495408535, 0.03694792091846466, 0.024801867082715034, 0.006758350413292646, -0.0022674875799566507, 0.04066403582692146, -0.009773759171366692, 0.002764021512120962, -0.007241325452923775, 0.005271861329674721, 0.03526968136429787, 0.022032462060451508, 0.045760612934827805, -0.004918353166431189, -0.010680797509849072, -0.010232019238173962, 0.012983596883714199, 0.01610431633889675, 0.019154243171215057, -0.005576821509748697, -0.034460585564374924, -0.029566993936896324, 0.014671534299850464, 0.00834116991609335, -0.01815164089202881, 0.020415550097823143, -0.006298135034739971, 0.01615281030535698, -0.09042420238256454, 0.03767799958586693, -0.03210802748799324, 0.0027130350936204195, 0.013019781559705734, 0.8451606035232544, -0.02266174741089344, 0.010196497663855553, 0.02405727095901966, 0.004661575425416231, 0.013177184388041496, -0.008787371218204498, -0.005957216024398804, -0.036752402782440186, 0.07450014352798462, -0.01087726466357708, 0.01919664815068245, -0.013839869759976864, 0.0039217849262058735, 0.02783062495291233, 0.0214405320584774, 0.00040918227750808, 0.022967632859945297, -0.00012706054258160293, 0.024745384231209755, 0.02073058672249317, -0.029272954910993576, -0.017348598688840866, 0.0014512315392494202, -0.018728146329522133, 0.014377258718013763, -0.18065235018730164, -0.04556126892566681, -7.311367681235296e-33, 0.06609765440225601, -0.027933208271861076, 0.017934145405888557, 0.01600581593811512, -0.006308961659669876, -0.01595289632678032, 0.010878289118409157, -0.004502536728978157, -0.02583928406238556, -0.034829042851924896, -0.0006962169427424669, -0.0038645858876407146, 0.0017992318607866764, -0.01511701662093401, 0.01693379320204258, -0.01378697156906128, 0.005067394580692053, 0.002855548169463873, -0.017229920253157616, 0.01228358969092369, 0.06095943972468376, 0.005859179422259331, 0.0019587171263992786, 0.005172256845980883, 0.014435803517699242, 0.02760944329202175, 0.027889462187886238, -0.00798021350055933, -0.029672794044017792, -0.02849811315536499, -0.006313242483884096, 0.011386342346668243, -0.000358419754775241, -0.024948561564087868, 0.03072461299598217, -0.06246666610240936, -0.021688560023903847, 0.05139978975057602, -0.00961066223680973, -0.06919492036104202, -0.030573995783925056, -0.018391167744994164, -0.00906291138380766, -0.004547613672912121, -0.014101766049861908, -0.02694639004766941, 0.007678345777094364, 0.004355175886303186, -0.009178279899060726, 0.006339067593216896, 0.004774115979671478, 0.0023173941299319267, 0.020660337060689926, -0.017720554023981094, -0.038516268134117126, 0.04113912582397461, 0.0018833382055163383, 0.023603232577443123, 0.00888349860906601, 0.021164219826459885, -0.000975868315435946, 0.011263436637818813, -0.010890273377299309, 0.024797195568680763, 0.019174402579665184, -0.017955277115106583, 0.017363306134939194, -0.020581742748618126, 0.03412165120244026, 0.025427861139178276, -0.015685634687542915, -0.010004003532230854, -0.02287772111594677, -0.023007119074463844, 0.012318553403019905, -0.025116389617323875, 0.003821327816694975, 0.011015653610229492, -0.011477627791464329, 0.025281978771090508, 0.016003940254449844, 0.004883299116045237, 0.005851198919117451, -0.04043377563357353, 0.014581534080207348, 0.01195333618670702, 0.02417820133268833, -0.026810338720679283, 0.025058215484023094, 0.0401228666305542, 0.03639576584100723, 0.06051625311374664, -0.020132381469011307, -0.02053925022482872, -0.055255141109228134, 6.922603046743564e-33, 0.006806656252592802, 0.0040762717835605145, -0.05157463997602463, 0.01410621590912342, 0.0056771086528897285, -0.002764930948615074, -0.015442959032952785, 0.04907345771789551, -0.06743790209293365, 0.048982858657836914, 0.0031691889744251966, 0.007149329409003258, -0.005314834415912628, 0.009134946390986443, 0.047909826040267944, -0.017902137711644173, 0.007955738343298435, -0.00792192667722702, 0.031469833105802536, -0.030434777960181236, 0.062272295355796814, -0.0035169285256415606, 0.024388480931520462, -0.004411333240568638, 0.017046164721250534, 0.01851128228008747, -0.038822025060653687, 0.032667532563209534, 0.0016653001075610518, 0.010607866570353508, -0.012332938611507416, -0.04436974972486496, -0.000151338754221797, -0.013254211284220219, -0.011319645680487156, 0.027462050318717957, 0.006613383535295725, -0.020696386694908142, 0.03238076716661453, 0.020853497087955475, 0.013716031797230244, -0.04987570643424988, -0.033505018800497055, 0.013928839936852455, 0.019906846806406975, -0.021814977750182152, -0.00044948517461307347, 0.03857378289103508, -0.010659226216375828, 0.012810095213353634, 0.011657937429845333, 0.00004914061355520971, -0.02114880457520485, 0.019017120823264122, 0.016557205468416214, 0.0013042837381362915, -0.009456729516386986, 0.023970182985067368, -0.041534021496772766, 0.035107292234897614, -0.023815978318452835, -0.04598037526011467, -0.027663512155413628, -0.0011430621379986405, -0.04414290189743042, -0.0016871120315045118, 0.015981145203113556, -0.010914335027337074, -0.003671628888696432, 0.019974248483777046, -0.027776701375842094, 0.06022227928042412, -0.00936625525355339, 0.02722584828734398, 0.013552823103964329, -0.0128066660836339, -0.03116903267800808, 0.02298954501748085, -0.01259614247828722, 0.021773749962449074, 0.008782918564975262, 0.0011150774080306292, 0.01048642210662365, -0.0026980962138623, 0.05479464679956436, -0.02122032456099987, 0.004042994696646929, 0.021683266386389732, 0.006129113025963306, -0.04721684753894806, -0.0017320708138868213, 0.021698521450161934, -0.014656788669526577, 0.021786602213978767, -0.020456096157431602, -1.2834963314389825e-8, -0.012812345288693905, 0.03711317852139473, -0.007362160831689835, 0.02928296849131584, 0.05781811848282814, 0.008613732643425465, -0.00938147958368063, -0.01314147375524044, -0.023210689425468445, 0.02668076939880848, 0.045430127531290054, 0.0008089932380244136, -0.005750760436058044, 0.03265417367219925, 0.019131850451231003, -0.05842713266611099, 0.009005321189761162, -0.011511350981891155, 0.022366726770997047, 0.017670495435595512, 0.04130970314145088, 0.016615571454167366, -0.02340475097298622, 0.0072278715670108795, 0.018996553495526314, -0.028559628874063492, 0.013641616329550743, -0.08116824924945831, -0.009670528583228588, 0.009798338636755943, -0.02843092381954193, -0.0210114773362875, -0.054329510778188705, -0.0196137223392725, -0.016222430393099785, -0.015613910742104053, -0.010291650891304016, -0.004286141600459814, 0.015856124460697174, 0.009120089001953602, -0.014647490344941616, 0.0157326553016901, -0.005214456468820572, -0.007157674990594387, 0.000801154354121536, 0.00005425053313956596, -0.0015134431887418032, -0.022851569578051567, 0.0013855698052793741, -0.02019970491528511, -0.01582789234817028, -0.019928211346268654, 0.02077818475663662, 0.03213072568178177, 0.0071999551728367805, -0.028880208730697632, 0.002200454706326127, -0.03530833497643471, -0.012607141397893429, 0.0288423802703619, 0.03999696299433708, 0.0015176325105130672, -0.04138031229376793, -0.025206945836544037 ]
weka-saving-and-loading-classifiers
https://markhneedham.com/blog/2012/12/12/weka-saving-and-loading-classifiers
false
2008-02-10 01:47:25
Pair Programming: Introduction
[ "coding", "pairing", "xp", "altdotnet" ]
[ "Pair Programming" ]
I've had the opportunity to have worked with many different people http://c2.com/cgi/wiki?PairProgramming[pair programming] wise over the last year or so, and having seen it done in several different ways thought it would be interesting to work through some of my thoughts about this Extreme Programming (XP) originated practice. First of all it seems to me that pair programming is a technique that is used with a lot more frequency at ThoughtWorks than at any other IT organisation. Obviously I do not know every IT organisation in the world, but based on discussions at the http://www.altnetuk.com/[ALT.NET UK] conference I went to last weekend; it certainly came across to me like that. The difficulty in getting clients and/or management to see the value in having two people on one machine was the main factor mentioned as proving problematic. I have been working for ThoughtWorks for 18 months now and have been pairing for all but 3 of those months. Perhaps contrary to popular opinion, not every project is a 100% pairing one. I've paired with people for 20-30 days at a time, paired with people for 1 day at a time, paired with people who have been pairing for years, paired with people who are pairing for the first time, and all in all it's been fun. I now find writing code far more enjoyable when working with someone else, motivated by the opportunity to bounce ideas around and come up with better solutions. The biggest benefit for me of pairing is that you have to vocalise your ideas to your pair. This massively reduces the chance of going down a dead alley as a '`wrong`' idea would have to somehow make sense to two people, which is much less likely to happen. Equally, when done well, you end up thinking a lot more about why you are doing things e.g. why should that method go on this class, should we introduce a new service, why are we testing it in this way, should we be testing it another way etc. On the flip side there are times when you just want to look up something which interests you but isn't totally relevant to the current task and that has to be placed on the backburner for the time being. Pairing can also prove very tedious when doing fairly trivial tasks such as changing configuration files; although of course it does help if every knows how to do this so pairing on these tasks does provide some benefit. I will cover some of my other thoughts in future posts.
null
null
[ 0.03937336429953575, -0.009353416971862316, -0.0019044224172830582, 0.035290271043777466, 0.08785024285316467, 0.034780967980623245, 0.030840719118714333, 0.03623029217123985, 0.02152523584663868, -0.03052758239209652, -0.023493412882089615, 0.004951260518282652, -0.060144007205963135, -0.0027372469194233418, -0.04803954437375069, 0.0682663545012474, 0.07108604162931442, -0.014299803413450718, 0.0061857812106609344, 0.001297227805480361, 0.03961513563990593, 0.06692724674940109, 0.006386430934071541, 0.0298803448677063, 0.010804248042404652, 0.017100639641284943, -0.006021565292030573, -0.02088022045791149, -0.052928607910871506, -0.010977053083479404, 0.048961080610752106, -0.013067901134490967, 0.016109969466924667, -0.0001733754761517048, 0.026926176622509956, -0.008226965554058552, -0.006918197963386774, 0.024756399914622307, 0.006870015524327755, 0.0015335110947489738, -0.05465172603726387, 0.04180773347616196, -0.0005993533995933831, -0.0004328521899878979, -0.04722107946872711, 0.002157684415578842, -0.03703778237104416, 0.011452127248048782, 0.00498898234218359, 0.005361385643482208, -0.07697855681180954, 0.02515244111418724, 0.006809477228671312, 0.0007709181518293917, -0.002077969955280423, 0.058608438819646835, 0.02928311564028263, -0.05888709798455238, 0.008840684778988361, -0.04172985255718231, -0.015293287113308907, 0.003772332100197673, 0.008679086342453957, 0.038938917219638824, 0.019850604236125946, -0.02828029729425907, 0.013350018300116062, 0.03999379277229309, -0.03246141970157623, -0.008202501572668552, -0.009171439334750175, 0.006833482533693314, -0.013318659737706184, -0.036921177059412, 0.007088907994329929, -0.041497282683849335, -0.012228305451571941, 0.045466698706150055, 0.03419715538620949, 0.02914922684431076, -0.015434428118169308, 0.03700372204184532, -0.002967591630294919, 0.02370504103600979, -0.001062230672687292, -0.03812572360038757, -0.012317920103669167, -0.021533291786909103, -0.07687681168317795, 0.05200062692165375, 0.02728707529604435, -0.06529262661933899, 0.023531123995780945, 0.040507491677999496, 0.005150872748345137, 0.02671785093843937, 0.02006208710372448, -0.0015017696423456073, 0.0009513170807622373, -0.011112094856798649, -0.009442427195608616, -0.015047043561935425, -0.002548500197008252, -0.0029677017591893673, -0.07275721430778503, -0.00506889121606946, -0.0201649758964777, -0.00744411488994956, 0.0045276484452188015, 0.009307395666837692, -0.047417886555194855, 0.026610514149069786, -0.014791745692491531, 0.016138508915901184, -0.08633748441934586, 0.07790600508451462, 0.0018470319919288158, -0.04334406554698944, -0.025905383750796318, 0.0004105865373276174, 0.031008068472146988, 0.028799809515476227, -0.014653591439127922, 0.07879911363124847, 0.010807499289512634, 0.02960638701915741, -0.009555554948747158, 0.059520117938518524, -0.017950009554624557, -0.061645474284887314, -0.015448709949851036, 0.0460834763944149, -0.023423101752996445, 0.0035247402265667915, 0.012660193257033825, -0.017615225166082382, 0.00025439777527935803, 0.013787978328764439, 0.01694127544760704, 0.057297322899103165, -0.010407776571810246, -0.025030765682458878, 0.02699170634150505, 0.020747298374772072, 0.007391490042209625, 0.0016674953512847424, -0.009042198769748211, -0.023887263610959053, -0.027920160442590714, 0.005047665908932686, 0.004687246400862932, 0.035610347986221313, 0.008919539861381054, -0.052215225994586945, 0.03459513187408447, 0.10316301882266998, 0.04739321768283844, 0.014344637282192707, -0.013168997131288052, 0.018405038863420486, 0.032875873148441315, 0.018720827996730804, -0.0038419098127633333, 0.04087507352232933, 0.012411707080900669, -0.005890791770070791, -0.008866824209690094, 0.022160841152071953, -0.00920945405960083, 0.03421149030327797, -0.06109265610575676, -0.02062704600393772, 0.04909787327051163, -0.061390459537506104, -0.046660423278808594, 0.040756527334451675, 0.07261504232883453, 0.025030307471752167, 0.03610092028975487, 0.019579419866204262, -0.08196544647216797, 0.026241451501846313, 0.020954681560397148, 0.015912365168333054, 0.026998169720172882, -0.01147257350385189, 0.05548684671521187, 0.04093167558312416, -0.007233514450490475, 0.056162279099226, -0.06896920502185822, -0.08413040637969971, -0.02045288495719433, -0.031519826501607895, 0.05966261401772499, -0.03414430096745491, 0.000877469836268574, 0.07212141901254654, -0.003125489456579089, 0.04576542228460312, 0.028653742745518684, 0.0012204861268401146, -0.015628578141331673, -0.033326406031847, -0.05600558966398239, 0.06915297359228134, 0.039328351616859436, -0.011178254149854183, -0.062292132526636124, 0.0035874268505722284, -0.008596038445830345, -0.016270039603114128, 0.04460449516773224, -0.02666427381336689, 0.050238337367773056, 0.022004440426826477, 0.028577230870723724, -0.018304191529750824, 0.04168015718460083, -0.04544835910201073, 0.008861783891916275, 0.0048220776952803135, -0.015264168381690979, 0.008993887342512608, 0.006728325039148331, 0.10326489061117172, 0.06536787003278732, -0.06917516887187958, -0.022684508934617043, 0.019118132069706917, 0.035905346274375916, -0.03372053802013397, 0.001988777657970786, -0.0047445944510400295, 0.010344351641833782, 0.019609251990914345, -0.06324799358844757, -0.052935708314180374, 0.019844189286231995, -0.040488652884960175, 0.004116654861718416, 0.07869292795658112, -0.043616265058517456, 0.07927799224853516, -0.010608223266899586, -0.00951759796589613, -0.00017094392387662083, -0.011722198687493801, -0.04703713208436966, 0.014287381432950497, 0.009413192048668861, -0.008249528706073761, 0.04602983593940735, -0.013891056180000305, -0.031244810670614243, -0.04873257875442505, -0.02501342073082924, 0.010264838114380836, 0.032219622284173965, 0.05686325579881668, -0.0024300904478877783, 0.05028780922293663, -0.0188280139118433, 0.02638411335647106, 0.004400511272251606, -0.04936133325099945, -0.04805532470345497, -0.01455535925924778, 0.0078072198666632175, 0.012787128798663616, 0.006184669211506844, 0.00410258024930954, 0.01213986985385418, 0.00821451935917139, -0.011804364621639252, -0.01761561818420887, 0.03181931748986244, -0.005553058348596096, -0.016187382861971855, -0.035124361515045166, -0.031286370009183884, 0.03926898166537285, -0.04282522574067116, -0.03006291389465332, 0.01427450031042099, -0.06432609260082245, 0.035256072878837585, -0.07357387989759445, -0.06947556138038635, -0.010362088680267334, 0.039531294256448746, 0.054388560354709625, 0.00980198010802269, 0.007738435175269842, 0.08153269439935684, 0.00009374209912493825, 0.022949248552322388, 0.008878771215677261, -0.006521396804600954, 0.038589246571063995, 0.031869444996118546, 0.005207274109125137, 0.021501420065760612, -0.011767388321459293, -0.01542986836284399, -0.055982738733291626, 0.06153310462832451, -0.04449695721268654, -0.30317553877830505, 0.03436143696308136, 0.006524205673485994, -0.03782426565885544, 0.006945210974663496, -0.03671705350279808, 0.02519056759774685, -0.05643376335501671, -0.02546933852136135, 0.013574758544564247, -0.043872278183698654, -0.050175558775663376, -0.030493732541799545, 0.039531562477350235, -0.004153389483690262, 0.036867909133434296, 0.015975914895534515, -0.03000364638864994, 0.009262998588383198, 0.050354596227407455, -0.0030355656053870916, -0.06545072793960571, 0.005815834738314152, 0.047203823924064636, 0.04360829293727875, 0.057818733155727386, -0.08077024668455124, 0.02806488238275051, -0.048159465193748474, 0.0032618935219943523, 0.0076035079546272755, 0.006014519836753607, 0.012682988308370113, -0.022033249959349632, -0.01615937054157257, -0.025944121181964874, 0.048730675131082535, -0.0006499849841929972, -0.012884736992418766, 0.024978745728731155, -0.03498649597167969, -0.039676181972026825, -0.011332457885146141, 0.027503464370965958, 0.06406235694885254, 0.0004248543409630656, -0.0763937383890152, -0.016238296404480934, -0.015774555504322052, 0.06394679844379425, -0.05856412276625633, -0.037209901958703995, 0.0043280464597046375, 0.044500019401311874, -0.01590261608362198, -0.04174162447452545, -0.000155820554937236, 0.004704049788415432, -0.023393627256155014, -0.020199846476316452, -0.028418246656656265, -0.02986449934542179, 0.000676616735290736, -0.06076471135020256, 0.01186020765453577, -0.0500989593565464, -0.06254412233829498, -0.02369481511414051, 0.08367372304201126, 0.017487281933426857, -0.04327864199876785, 0.0031902261544018984, 0.005275971721857786, -0.10221942514181137, -0.0015339840902015567, 0.010644843801856041, -0.021501824259757996, -0.002502083545550704, 0.018062584102153778, 0.06049605831503868, -0.027896754443645477, -0.06786394864320755, 0.016871167346835136, 0.009398026391863823, 0.04153043031692505, -0.019486166536808014, 0.032663147896528244, 0.004916523117572069, -0.022420542314648628, 0.010261258110404015, 0.06314538419246674, 0.00953291729092598, -0.030801761895418167, -0.021938033401966095, 0.03721300885081291, 0.01633523963391781, 0.02642366848886013, -0.01573219895362854, -0.004792375490069389, 0.02291095070540905, -0.007989228703081608, -0.054029956459999084, 0.033432673662900925, -0.01581437699496746, -0.009886464104056358, -0.021707890555262566, -0.04426297917962074, 0.02846423350274563, 0.0388026088476181, 0.04235402122139931, -0.0005393764586187899, -0.029292773455381393, -0.001322637777775526, -0.03999197483062744, -0.05027470737695694, -0.016233673319220543, -0.0015526451170444489, 0.03944436460733414, -0.012410884723067284, -0.00506591284647584, -0.045124780386686325, -0.003489365102723241, 0.01364362332969904, 0.01218989584594965, -0.07452460378408432, -0.03284658119082451, -0.01968519389629364, -0.031609829515218735, 0.010675201192498207, 0.02215820737183094, -0.025404294952750206, 0.045522067695856094, 0.016786204650998116, -0.05347225069999695, 0.010359866544604301, -0.00485890032723546, -0.0518413744866848, -0.026921523734927177, -0.009451308287680149, -0.0026768578682094812, 0.018541410565376282, 0.029874393716454506, -0.013438674621284008, 0.028760133311152458, 0.04100467637181282, 0.026472749188542366, 0.02227800339460373, -0.039209093898534775, 0.03293155878782272, 0.002420388162136078, 0.01578596606850624, -0.06846978515386581, 0.00009081149619305506, -0.029740726575255394, -0.02642938122153282, -0.016341520473361015, 0.03255924582481384, -0.011287214234471321, -0.04900585487484932, -0.0024157557636499405, 0.007957079447805882, -0.06259565055370331, -0.029582707211375237, -0.03544387221336365, 0.04467487707734108, 0.06844848394393921, -0.027860281988978386, 0.020531250163912773, -0.04360866919159889, -0.010050547309219837, 0.008455893956124783, 0.027569659054279327, -0.05000626668334007, -0.001826280145905912, 0.009827962145209312, 0.0005854193004779518, -0.006939491257071495, 0.005785835441201925, 0.04625244811177254, 0.016616331413388252, 0.0038819394540041685, -0.013488690368831158, 0.004423903301358223, 0.011448781937360764, 0.0548238605260849, 0.007404017727822065, -0.015210768207907677, -0.0066575719974935055, -0.01330405380576849, -0.011381837539374828, -0.040846314281225204, -0.017748437821865082, 0.027387021109461784, 0.03586573898792267, -0.03459818288683891, -0.07729528844356537, 0.036503490060567856, 0.03606598451733589, 0.0009814311051741242, 0.021443204954266548, -0.017987478524446487, 0.006517862435430288, -0.013570250011980534, 0.030937783420085907, 0.07778073847293854, -0.06424159556627274, 0.004531084094196558, -0.005464786197990179, -0.0027973989490419626, 0.00305393198505044, 0.001796542084775865, -0.03158183768391609, -0.021860899403691292, -0.028302056714892387, -0.0016916056629270315, -0.06153137981891632, -0.023177077993750572, -0.013915467076003551, 0.018783168867230415, -0.0025797849521040916, -0.017950495705008507, -0.004247564822435379, -0.018840348348021507, -0.028116242960095406, -0.04026979207992554, 0.006596178747713566, -0.029520191252231598, 0.008870000950992107, 0.0029059057123959064, -0.037931736558675766, 0.002444526180624962, -0.04191838949918747, 0.005073930136859417, 0.007941422052681446, -0.018547838553786278, -0.01904929056763649, -0.03243602067232132, 0.005226972978562117, 0.01689346507191658, 0.02963494509458542, -0.014120697975158691, -0.031235678121447563, -0.04594709351658821, -0.02258288860321045, -0.04641953855752945, 0.015956085175275803, -0.018128082156181335, -0.003777505597099662, 0.01574684865772724, 0.051615096628665924, 0.01301574893295765, 0.035858213901519775, -0.013066710904240608, -0.00993029773235321, 0.04442673549056053, -0.04761276766657829, -0.03884154558181763, -0.038236573338508606, -0.05586368963122368, -0.013617814518511295, 0.0052686831913888454, 0.02821638435125351, -0.04014994949102402, 0.03740536421537399, 0.026333119720220566, 0.03409678861498833, 0.03130755573511124, -0.004275396931916475, 0.034514665603637695, -0.05354422703385353, 0.018514716997742653, -0.0823579728603363, -0.01360163651406765, 0.03996850550174713, 0.015438318252563477, -0.008416148833930492, -0.013652955181896687, -0.03511827066540718, 0.04309289529919624, -0.07282145321369171, -0.00804380513727665, 0.034821975976228714, 0.010243152268230915, -0.004442029166966677, 0.012753957882523537, -0.0735386312007904, 0.030520712956786156, 0.013454277999699116, -0.040138211101293564, -0.022216107696294785, -0.01103279273957014, 0.04464409872889519, 0.014812253415584564, 0.035185880959033966, -0.03260018676519394, -0.013324636034667492, 0.07214245200157166, 0.011537193320691586, 0.0020604045130312443, 0.05172541365027428, -0.007517961319535971, 0.032784491777420044, 0.02593148685991764, -0.005988890305161476, -0.01629634015262127, 0.014218172989785671, -0.0031073258724063635, -0.08358544856309891, 0.023991603404283524, 0.007773655001074076, -0.027972346171736717, -0.035567156970500946, 0.05851215869188309, 0.024701733142137527, -0.03556479141116142, -0.037503670901060104, 0.01616058312356472, -0.0523780956864357, 0.00786909181624651, -0.016548600047826767, -0.0055577014572918415, -0.057633403688669205, 0.048945020884275436, 0.008098139427602291, 0.0036646309308707714, 0.06997990608215332, 0.016463415697216988, -0.0318293496966362, 0.0003012893721461296, 0.09704140573740005, 0.07595448940992355, 0.06809844076633453, 0.023221194744110107, 0.07546333223581314, -0.01697828248143196, -0.048558808863162994, 0.009046867489814758, 0.0026478292420506477, -0.040495481342077255, -0.013531431555747986, 0.028067337349057198, 0.06141416355967522, 0.0044977422803640366, 0.07313831150531769, -0.013233001343905926, 0.0020916389767080545, 0.007609281688928604, 0.02963367849588394, 0.026609115302562714, 0.06258692592382431, 0.016306864097714424, 0.017540933564305305, -0.020893918350338936, -0.04294562339782715, 0.029569560661911964, -0.02494530752301216, -0.015995534136891365, 0.03222087770700455, -0.007954196073114872, 0.006111954804509878, 0.019829876720905304, 0.02656599134206772, 0.07591504603624344, -0.039065197110176086, 0.0024474600795656443, -0.014035600237548351, 0.03189219906926155, -0.005890695843845606, 0.007967792451381683, -0.01653066650032997, -0.021164335310459137, 0.004647807218134403, -0.02197721228003502, -0.020863613113760948, -0.02925027906894684, -0.013409962877631187, 0.045559048652648926, -0.032249029725790024, 0.003588279942050576, 0.021422164514660835, 0.013030320405960083, -0.03623953089118004, -0.06423536688089371, -0.03588093817234039, -0.030560418963432312, -0.04403938353061676, -0.017867697402834892, 0.014838091097772121, -0.00035440214560367167, -0.023130491375923157, 0.006090381182730198, -0.023105688393115997, -0.031627900898456573, 0.04738949239253998, -0.06505166739225388, -0.03404996171593666, 0.00602200161665678, 0.02222483977675438, 0.04321138188242912, 0.026107478886842728, 0.04936537146568298, -0.020301278680562973, -0.00833828654140234, -0.0222811009734869, 0.002465668600052595, 0.024021197110414505, 0.007143562193959951, -0.0010568808065727353, -0.08428696542978287, 0.01776657998561859, 0.02520146779716015, -0.00849951058626175, -0.061383601278066635, 0.01881655491888523, 0.024996442720294, 0.020852122455835342, 0.046725794672966, -0.01699635200202465, -0.001442701555788517, -0.03402125462889671, -0.004368711728602648, -0.023526892066001892, 0.01228143461048603, 0.05276311933994293, -0.014515160582959652, 0.09161430597305298, 0.018508421257138252, -0.013177016749978065, -0.04176183417439461, -0.02698115073144436, 0.02834051288664341, 0.004800024908035994, -0.012077436782419682, -0.030080487951636314, -0.020031746476888657, -0.07200006395578384, -0.020567504689097404, 0.008111326955258846, -0.02335348166525364, -0.0341792106628418, 0.031444355845451355, 0.03801274299621582, -0.02953890711069107, 0.03485758602619171, -0.05230730399489403, 0.028131695464253426, -0.00992085225880146, -0.0008259936003014445, -0.0023163841105997562, 0.00617255549877882, -0.03382086381316185, -0.010379044339060783, 0.01601083017885685, -0.04490547627210617, -0.00534940417855978, 0.006953833159059286, 0.04650251939892769, 0.02864331193268299, -0.005958347115665674, 0.0012130516115576029 ]
[ -0.08614824712276459, -0.006721739657223225, -0.03314628824591637, -0.0371115617454052, 0.01690109819173813, -0.04752272367477417, -0.01887636072933674, 0.003971601836383343, 0.008799904957413673, -0.05149255320429802, 0.001420632703229785, -0.0185870211571455, 0.03179963305592537, -0.03039403259754181, 0.09509167075157166, 0.008397110737860203, -0.023658789694309235, -0.0731680616736412, 0.020703928545117378, 0.03495250269770622, -0.003371280152350664, -0.059717290103435516, -0.06940694898366928, -0.042196277529001236, -0.010902859270572662, 0.043510552495718, 0.03180843964219093, -0.0470116101205349, 0.022434234619140625, -0.18094022572040558, 0.014478846453130245, 0.036006860435009, 0.061693403869867325, -0.0035966774448752403, 0.013154574669897556, 0.06276852637529373, 0.034612081944942474, -0.005391945596784353, -0.023187804967164993, 0.020119089633226395, 0.013962159864604473, 0.006881654262542725, -0.04056602343916893, -0.0417257696390152, 0.008578546345233917, 0.016767222434282303, -0.018169449642300606, -0.04758109897375107, -0.03501852974295616, 0.02025621011853218, -0.031817398965358734, -0.05470478534698486, -0.02672506868839264, -0.02207436040043831, -0.009932153858244419, 0.05982612445950508, 0.027056461200118065, 0.05554342642426491, -0.03216300904750824, 0.02986685186624527, -0.0015169760445132852, -0.029209570959210396, -0.1316973865032196, 0.0716448724269867, 0.04695001244544983, 0.04437996447086334, -0.05112814903259277, -0.027392782270908356, -0.023922251537442207, 0.10525357723236084, 0.019829513505101204, -0.007298440672457218, -0.018230095505714417, 0.04659004509449005, 0.011821655556559563, 0.014406280592083931, -0.013468936085700989, 0.03327677398920059, 0.027262642979621887, -0.03294901177287102, -0.05013951659202576, -0.014442152343690395, -0.002031310461461544, 0.001841799938119948, -0.032100897282361984, 0.033476248383522034, -0.00665395800024271, 0.04846273362636566, 0.025072988122701645, 0.006616948638111353, 0.03110523708164692, 0.00036183747579343617, 0.017866337671875954, -0.02318519540131092, -0.05648965761065483, -0.007791094947606325, 0.02641844004392624, 0.01988387107849121, -0.058922089636325836, 0.4419257640838623, -0.04828156530857086, -0.021907109767198563, 0.10621962696313858, 0.01949715055525303, -0.012746253982186317, -0.01113972533494234, -0.0056926533579826355, -0.04445522651076317, 0.03534433990716934, -0.044441428035497665, 0.003495796350762248, 0.01060742698609829, 0.0471159927546978, -0.03714046627283096, 0.012923454865813255, 0.05658986046910286, 0.012068352662026882, 0.035708844661712646, 0.02754802443087101, -0.008148403838276863, -0.011899575591087341, 0.01114191859960556, 0.024208175018429756, 0.01798301562666893, -0.025362469255924225, -0.0392707884311676, 0.01873013935983181, 0.051966700702905655, 0.014270663261413574, 0.0005151296500116587, 0.08556289970874786, -0.04858022928237915, -0.03452254831790924, 0.0024820370599627495, -0.026352258399128914, -0.0008817379712127149, 0.018307875841856003, -0.020764319226145744, 0.0005617258138954639, 0.04422587901353836, 0.0440472848713398, -0.014189491048455238, 0.026135003194212914, -0.012487979605793953, -0.001732979784719646, 0.1300225555896759, -0.0007215957739390433, -0.02338547818362713, -0.013878121972084045, -0.023002510890364647, 0.005636762827634811, 0.017737602815032005, -0.021420374512672424, -0.07777732610702515, 0.03896414116024971, 0.00043407033081166446, 0.1096179187297821, -0.008156578987836838, -0.06008476763963699, 0.03614390268921852, -0.020349033176898956, -0.013120105490088463, -0.08003956079483032, 0.016161013394594193, 0.09519466757774353, -0.12077756971120834, 0.0016829990781843662, -0.006119022611528635, 0.019967403262853622, -0.05511477217078209, -0.0012848631013184786, -0.0008776272879913449, 0.0023158902768045664, 0.005065118428319693, 0.03278481960296631, -0.03794853761792183, -0.05064484849572182, 0.012903797440230846, 0.05747189745306969, 0.019026879221200943, 0.016429465264081955, 0.03438153117895126, -0.03943537175655365, -0.004188314080238342, -0.03912290558218956, -0.07902068644762039, -0.034439362585544586, -0.0023381614591926336, -0.039786774665117264, -0.005933632142841816, -0.019614940509200096, -0.022884896025061607, -0.06716233491897583, 0.08829417824745178, -0.017012400552630424, -0.03629002720117569, 0.03253299370408058, -0.016411203891038895, -0.05660487711429596, -0.008734475821256638, -0.0385310985147953, 0.03581128269433975, -0.035736583173274994, 0.014833047986030579, -0.05238955840468407, 0.04029729217290878, 0.03699125722050667, -0.033390309661626816, 0.08998098969459534, 0.06082932651042938, -0.011522755958139896, -0.06150532886385918, 0.011485601775348186, 0.029731377959251404, -0.004445049911737442, -0.02312714047729969, -0.002064779866486788, 0.04270932450890541, 0.011110207997262478, 0.03891133517026901, -0.02843252383172512, 0.02099042385816574, 0.013668264262378216, -0.3398675322532654, -0.023909585550427437, -0.01874365843832493, 0.014520063064992428, 0.016900591552257538, -0.04842141643166542, 0.025200728327035904, -0.011187320575118065, -0.05935453996062279, 0.027082277461886406, 0.10191956907510757, -0.014592444524168968, 0.006371675059199333, -0.07408905029296875, -0.003032817505300045, 0.0355243943631649, -0.02808704972267151, 0.010331143625080585, -0.020371606573462486, 0.00754481740295887, 0.00011906159488717094, 0.010718482546508312, -0.014694835059344769, -0.05065525695681572, 0.006428512278944254, -0.048600438982248306, 0.10697734355926514, -0.01793847605586052, 0.07257164269685745, -0.023915637284517288, 0.03452340513467789, 0.0040946113876998425, 0.015212399885058403, -0.12601624429225922, 0.010683959349989891, 0.010968798771500587, 0.03325458616018295, -0.05188056454062462, 0.04121550917625427, -0.024997347965836525, -0.07540003955364227, -0.020502718165516853, -0.056357018649578094, -0.035713307559490204, -0.06619660556316376, 0.0066261920146644115, -0.030767908319830894, -0.034785810858011246, -0.04218093678355217, 0.07602840662002563, 0.008476312272250652, -0.004180813208222389, 0.00578197930008173, -0.006025564856827259, -0.01906171627342701, -0.04817788302898407, -0.09589909017086029, 0.027879726141691208, 0.0000337152523570694, 0.0015400988049805164, 0.02418660745024681, 0.05789182707667351, 0.022848736494779587, -0.049683090299367905, 0.01731930673122406, 0.001956322928890586, 0.0022295317612588406, 0.01666492037475109, 0.042687978595495224, -0.009470410645008087, 0.0023753598798066378, 0.07345661520957947, 0.0016305014723911881, 0.000181832117959857, 0.006191544234752655, 0.0029255691915750504, -0.022704139351844788, 0.020245462656021118, 0.014909669756889343, -0.0278422050178051, 0.031169896945357323, -0.0278705433011055, 0.012511303648352623, -0.025300409644842148, 0.0027524528559297323, 0.017036154866218567, 0.007523520849645138, -0.00763144763186574, 0.05141569301486015, 0.006985262967646122, -0.03246317431330681, -0.012899459339678288, 0.002640360500663519, -0.03405948728322983, 0.0859178751707077, 0.0012405234156176448, -0.2537851929664612, 0.005252358969300985, 0.03446182236075401, 0.04688063636422157, -0.022554578259587288, 0.030521590262651443, 0.02147804945707321, -0.02575582265853882, -0.001780533348210156, -0.020013626664876938, 0.03131457045674324, 0.010119941085577011, -0.005657671019434929, -0.00030685585807077587, 0.05512750893831253, -0.0013575765769928694, 0.03674771264195442, -0.014506264589726925, -0.0036818934604525566, -0.012002640403807163, 0.018533874303102493, -0.016238922253251076, 0.15728922188282013, -0.0063398913480341434, 0.05546999350190163, 0.01962088607251644, 0.007185137830674648, 0.025194616988301277, 0.07627695798873901, -0.0038446225225925446, -0.006912737153470516, -0.0006553844432346523, 0.021944498643279076, -0.02446524240076542, 0.01780342124402523, -0.04786267131567001, -0.01662149839103222, 0.006806056015193462, 0.05405356362462044, 0.03494623303413391, 0.0191511083394289, -0.0003587821847759187, -0.008552261628210545, -0.011896754615008831, 0.07975797355175018, 0.03304176405072212, 0.017278682440519333, -0.02775348722934723, -0.05231010168790817, -0.015917113050818443, -0.04899649694561958, -0.03352736309170723, 0.011293764226138592, 0.014024264179170132, 0.01420009694993496, 0.0626540556550026, 0.005646825302392244, -0.008510171435773373, -0.01965058222413063, 0.025863561779260635, -0.006183329503983259, -0.009962283074855804, 0.09735926240682602, 0.058689750730991364, 0.013677047565579414 ]
[ -0.030040539801120758, 0.02616785652935505, -0.015522829256951809, 0.0016204356215894222, -0.028738992288708687, 0.038433369249105453, 0.0010842408519238234, 0.012088226154446602, 0.00026275927666574717, -0.012583219446241856, -0.03654509782791138, 0.020377838984131813, 0.01370746735483408, -0.02502439357340336, 0.03069222904741764, 0.010064651258289814, -0.006596135441213846, -0.036503154784440994, 0.03421670198440552, 0.027549419552087784, -0.03623279929161072, -0.02928536757826805, -0.026785289868712425, -0.04015635699033737, 0.014330034144222736, -0.025810640305280685, 0.0046706488355994225, -0.03028292767703533, 0.022582003846764565, -0.09914689511060715, -0.04094136878848076, -0.006935651879757643, -0.019199268892407417, 0.006907298695296049, 0.001030023442581296, 0.00018279309733770788, 0.04020790010690689, 0.0024446852039545774, -0.0025578471831977367, -0.026565998792648315, 0.009689961560070515, -0.0264555923640728, -0.004671232309192419, 0.00019670558685902506, 0.0018864987650886178, 0.03796493262052536, 0.005064414348453283, -0.04228892922401428, -0.03502846509218216, -0.022068394348025322, -0.041691891849040985, -0.006662994623184204, -0.013225926086306572, 0.008041078224778175, 0.02072974666953087, 0.012037208303809166, -0.02391999214887619, -0.005720941349864006, 0.012429402209818363, -0.0019900838378816843, -0.00229753484018147, -0.0005847502034157515, -0.05254223197698593, -0.006988939363509417, -0.016486236825585365, -0.03317483514547348, 0.0034233888145536184, 0.011247423477470875, 0.00297347130253911, 0.005708528682589531, -0.04915177449584007, 0.019715795293450356, -0.02728157676756382, -0.021512648090720177, 0.008375851437449455, 0.027370024472475052, -0.0016742496518418193, -0.0610806830227375, 0.012542661279439926, -0.06297008693218231, -0.044653598219156265, 0.0024271400179713964, 0.027549274265766144, 0.019746186211705208, 0.04583683982491493, -0.01321442611515522, 0.0177287720143795, 0.009166773408651352, -0.021754495799541473, -0.007872435264289379, -0.05240187793970108, 0.04739334434270859, -0.011804617010056973, -0.00524465087801218, -0.06839432567358017, 0.025323109701275826, -0.02713121846318245, 0.03120264783501625, -0.0076191844418644905, 0.8185235261917114, -0.02197522111237049, 0.045371513813734055, 0.06294810771942139, -0.007444138638675213, -0.014209822751581669, 0.0056114643812179565, 0.01372845284640789, 0.002004206646233797, 0.05170382559299469, -0.042903561145067215, 0.015236077830195427, -0.025537636131048203, 0.00254893209785223, -0.018287567421793938, 0.022484352812170982, 0.022437499836087227, 0.011420877650380135, 0.039359427988529205, 0.01013158168643713, -0.020152071490883827, -0.015998728573322296, -0.012874342501163483, 0.016773486509919167, -0.02138231322169304, 0.007137315347790718, -0.1641293168067932, 0.030009908601641655, -7.466534404911776e-33, 0.03313751891255379, 0.018848353996872902, -0.00488198222592473, -0.0029885186813771725, 0.022068122401833534, 0.0071903676725924015, 0.019249167293310165, -0.040736325085163116, -0.04575049877166748, -0.01701544038951397, 0.004877419210970402, -0.012072481215000153, 0.05623481422662735, -0.003946746699512005, -0.00498893903568387, -0.044917069375514984, 0.0234298724681139, 0.01798262633383274, -0.03982086479663849, 0.026724277064204216, 0.0656762570142746, 0.0372764989733696, -0.017202695831656456, -0.01786137744784355, -0.008605771698057652, -0.033103056252002716, -0.01918521150946617, 0.04600692167878151, 0.02357933670282364, -0.05036013200879097, 0.0005838371580466628, 0.046854112297296524, -0.016831398010253906, -0.0004679154953919351, 0.020601142197847366, -0.03054460510611534, -0.016652580350637436, -0.007666811812669039, -0.019559038802981377, -0.056251540780067444, -0.01850539818406105, 0.022402744740247726, -0.022203508764505386, -0.025270583108067513, -0.014063400216400623, -0.02191535383462906, -0.01193440705537796, 0.021335948258638382, 0.010127522982656956, -0.06612294912338257, -0.005075819790363312, 0.038353703916072845, -0.027919240295886993, 0.046866532415151596, -0.03404070436954498, 0.021969210356473923, 0.0007737103151157498, 0.011149942874908447, 0.0017785555683076382, 0.029643181711435318, 0.020695677027106285, 0.0021659412886947393, -0.023723319172859192, -0.01187414862215519, 0.0007129290606826544, 0.0005662002367898822, 0.020959237590432167, -0.012334439903497696, 0.013356923125684261, -0.013096917420625687, -0.043230656534433365, -0.002176363719627261, 0.005551159847527742, -0.03250499069690704, -0.008888320066034794, -0.0036716172471642494, 0.024063963443040848, -0.021261949092149734, 0.0010757819982245564, 0.03864487633109093, 0.0044284239411354065, -0.006172615569084883, 0.030104460194706917, -0.010651406832039356, -0.013965795747935772, -0.03127264976501465, -0.01695261150598526, -0.036544572561979294, -0.0198126882314682, 0.06964319199323654, 0.0404382050037384, 0.02012915536761284, -0.0004877823230344802, -0.012127777561545372, 0.015195762738585472, 7.517755101880919e-33, -0.015510652214288712, 0.007833307608962059, 0.008358364924788475, 0.0007574468036182225, 0.07121285796165466, 0.027344662696123123, 0.04726226627826691, -0.0577525869011879, -0.05042007192969322, 0.04808913543820381, 0.04190479591488838, -0.023690199479460716, 0.005808877293020487, 0.04126451909542084, 0.05321123078465462, -0.026760833337903023, 0.015297600999474525, -0.016473861411213875, 0.05294819921255112, 0.015565172769129276, 0.0349825844168663, -0.0010286514880135655, 0.03357884660363197, 0.010226273909211159, 0.026957621797919273, 0.05740749463438988, 0.012688650749623775, -0.009496715851128101, -0.013838584534823895, -0.014745309017598629, -0.01023613940924406, -0.005325601436197758, -0.003065338358283043, -0.014772246591746807, 0.018702486529946327, 0.03447091579437256, -0.06113431230187416, -0.034761883318424225, 0.01055874116718769, -0.012315301224589348, 0.012418556027114391, 0.010223916731774807, -0.030522847548127174, 0.02222694270312786, 0.045826926827430725, -0.004806710872799158, 0.004731808789074421, -0.03630777820944786, -0.05508728697896004, 0.006542514078319073, 0.040533266961574554, 0.041050177067518234, -0.03843439370393753, -0.0664433017373085, -0.019351935014128685, -0.04176012799143791, -0.0035181501880288124, 0.01578644849359989, 0.012387946248054504, 0.015354730188846588, 0.01990370638668537, -0.02199725992977619, -0.013955655507743359, 0.04362228512763977, -0.0076982490718364716, 0.026516152545809746, -0.016948522999882698, 0.0435485914349556, -0.01035766489803791, 0.00803658552467823, -0.01833246275782585, 0.0025440333411097527, 0.016543397679924965, 0.029887830838561058, -0.024328652769327164, -0.059529609978199005, -0.0342300608754158, -0.026430316269397736, 0.016558974981307983, 0.011440305039286613, 0.01466607116162777, 0.040299609303474426, 0.03311958536505699, 0.029245873913168907, -0.0029811037238687277, 0.046766433864831924, 0.010917391628026962, 0.05993627384305, -0.022051071748137474, -0.015164701268076897, -0.0034733470529317856, -0.021640675142407417, 0.032559216022491455, 0.018581904470920563, 0.0009690882870927453, -1.30679520538024e-8, -0.052226994186639786, 0.020003532990813255, -0.0287794042378664, -0.002178341615945101, 0.010451276786625385, -0.006364823319017887, 0.004008857533335686, 0.0014777934411540627, -0.0277868565171957, 0.016506902873516083, 0.005866842810064554, -0.030477790161967278, 0.0051158033311367035, 0.014048144221305847, 0.06168202683329582, -0.024133389815688133, 0.0016287165926769376, -0.04585061967372894, 0.014644942246377468, -0.003988950047641993, 0.009734107181429863, 0.041969455778598785, -0.01187263336032629, 0.06031019240617752, -0.016293274238705635, 0.029078269377350807, 0.05931774154305458, -0.05450957641005516, -0.005190378986299038, 0.013617615215480328, -0.010593026876449585, -0.024574073031544685, -0.04713648930191994, 0.046732816845178604, -0.0027290789876133204, -0.005215587094426155, -0.04743491858243942, 0.04490115866065025, 0.004324393346905708, -0.009037243202328682, -0.029930507764220238, 0.027378054335713387, -0.015064442530274391, 0.0004980186349712312, 0.01569601707160473, 0.02654506079852581, -0.026896441355347633, -0.0037629844155162573, -0.04687858745455742, -0.039813075214624405, 0.027294756844639778, 0.011354707181453705, 0.03566377982497215, -0.001278234296478331, 0.013909812085330486, 0.01095859706401825, -0.02769445814192295, -0.006648925598710775, 0.022887615486979485, -0.010608510114252567, -0.017261693254113197, 0.0037537082098424435, -0.027350978925824165, -0.031962037086486816 ]
pair-programming-introduction
https://markhneedham.com/blog/2008/02/10/pair-programming-introduction
false
2008-02-09 13:15:11
Learning theory first
[ "learning", "threading", "university", "theory" ]
[ "Learning" ]
I've always been the type of person who only gets the motivation to do something if there is some useful practical reason for doing so. It therefore probably doesn't come as much of a surprise that I hated the majority of my mostly theoretical computer science degree. I was talking to one of my colleagues last week and came out of the conversation convinced that the desire to know the theory behind concepts is amplified when you actually get to see it in action in a real life system. My prime example is multi threading and concurrency. At university we had to write a program to calculate e to 500 decimal places using multi threading. In my mind this exercise was completely pointless, and I don't think I came out of it any wiser with regards to threading. Contrast that to the project I'm working on now where the main window of our application was freezing up due to an expensive operation being run on the UI thread. The solution of course was to execute the expensive operation on a background thread. Although I know this is a fairly trivial example, it did provide a real life situation where threading was required. As a result of this I have become much more interested in the specifics of threading and the potential problems that can arise when doing so. It would probably actually prove more useful to see the concepts in action in a real life system before being taught the detailed theory behind how it all fits together. For me at least when I'm learning about something I like to have a reference point and having seen the concept in action would provide this. It seems obvious to me therefore that studying for a degree after having first done a few years in industry would probably lead to you having a much richer learning experience and a much improved understanding. Not that I expect that to catch on!
null
null
[ 0.04258234426379204, 0.020269380882382393, -0.00044970164890401065, 0.02170616015791893, 0.07484254240989685, 0.05961470678448677, 0.01494702510535717, 0.05586358159780502, 0.005431706085801125, -0.017792239785194397, -0.00821250956505537, -0.0061139799654483795, -0.06298930943012238, 0.03216003626585007, -0.006539494264870882, 0.06639914959669113, 0.07114261388778687, -0.008556035347282887, 0.0015177952591329813, 0.011629297398030758, 0.015436237677931786, 0.09606271237134933, 0.028138289228081703, 0.03411990404129028, 0.014045747928321362, 0.023166975006461143, 0.0034901206381618977, -0.0001613511412870139, -0.03746110573410988, -0.005380698014050722, 0.045803289860486984, -0.002818002365529537, 0.014702979475259781, 0.0004591969773173332, 0.024024657905101776, -0.03490181639790535, -0.02719891257584095, 0.039721354842185974, 0.009660071693360806, 0.006061397027224302, -0.06791441887617111, 0.04728518798947334, -0.027022503316402435, -0.012446078471839428, -0.060719333589076996, -0.015204659663140774, -0.02503950148820877, -0.001658328459598124, -0.018661873415112495, 0.010590731166303158, -0.07523006200790405, 0.03724050521850586, 0.03647664561867714, 0.0036342123057693243, -0.009494899772107601, 0.0602804459631443, 0.010032029822468758, -0.07354527711868286, 0.008298221975564957, -0.05399544537067413, -0.00976853258907795, 0.0022221000399440527, -0.018421724438667297, 0.04059600457549095, 0.007358247879892588, -0.028371183201670647, 0.004158975090831518, 0.02657311223447323, -0.05103550851345062, 0.018444804474711418, -0.02366088517010212, 0.0033661173656582832, -0.012042993679642677, -0.03555595874786377, 0.017838697880506516, -0.05572152137756348, 0.035623326897621155, 0.05204923823475838, 0.012278834357857704, 0.014525489881634712, -0.007271794136613607, 0.03881661221385002, 0.04558802396059036, 0.018786204978823662, 0.038032278418540955, -0.04039320349693298, -0.025044916197657585, -0.013966708444058895, -0.053958382457494736, 0.06283802539110184, 0.0007957463967613876, -0.027315517887473106, 0.005706861149519682, 0.046457402408123016, -0.016870038583874702, 0.012987680733203888, 0.02680910937488079, -0.018701596185564995, -0.011617530137300491, -0.0029156880918890238, -0.016313936561346054, -0.03873857855796814, 0.008623238652944565, 0.030745472759008408, -0.07338330149650574, 0.012437710538506508, -0.026684071868658066, -0.009097603149712086, -0.006414538249373436, 0.005609840154647827, -0.03375989943742752, 0.011347206309437752, -0.016246112063527107, -0.00485254218801856, -0.06211816146969795, 0.08167215436697006, 0.009757423773407936, -0.046555500477552414, -0.01306527853012085, -0.004427596461027861, 0.022551076486706734, 0.032029036432504654, -0.005927558057010174, 0.0741235539317131, 0.001697477069683373, 0.0140189528465271, -0.027500726282596588, 0.0348290391266346, -0.02282380685210228, -0.07166606932878494, 0.019556725397706032, 0.05677567049860954, -0.01503764744848013, -0.015469533391296864, 0.006129290442913771, -0.02443978376686573, 0.009886879473924637, -0.007326878607273102, 0.008881703019142151, 0.053288619965314865, -0.001276641502045095, -0.05163130164146423, 0.018860608339309692, 0.015059941448271275, 0.004046817775815725, -0.005934873130172491, 0.026872141286730766, 0.015337915159761906, -0.008203924633562565, -0.00963283609598875, -0.0019046040251851082, 0.0283315721899271, -0.0036390796303749084, -0.03623029962182045, 0.04285349324345589, 0.08975338935852051, 0.005390312522649765, 0.032259270548820496, 0.0021080696024000645, 0.03510173782706261, 0.03892280533909798, 0.041885580867528915, 0.0019499966874718666, -0.002141408622264862, 0.021855507045984268, -0.003763687564060092, 0.025681527331471443, 0.0305034089833498, -0.02500053308904171, 0.01635279506444931, -0.07140804827213287, -0.035252515226602554, 0.04711459204554558, -0.04560356214642525, -0.03049032762646675, 0.04892800375819206, 0.07284916937351227, 0.009736557491123676, 0.047255948185920715, 0.000041175921069225296, -0.07404623925685883, 0.019618544727563858, 0.003096751170232892, 0.007812321186065674, 0.018407484516501427, -0.017256250604987144, 0.03664251044392586, 0.016696620732545853, -0.005535721313208342, -0.001400249544531107, -0.06749974191188812, -0.06832624971866608, -0.02133692055940628, -0.016713131219148636, 0.06180628016591072, -0.0238984152674675, -0.002225909847766161, 0.06771308928728104, -0.018268534913659096, 0.06546216458082199, 0.01451895385980606, -0.000600431056227535, 0.0029120922554284334, -0.0621979683637619, -0.050992392003536224, 0.04253099858760834, 0.03051271289587021, -0.013917126692831516, -0.06047527492046356, 0.02181917615234852, -0.00006342072447296232, -0.02816709876060486, 0.03687972202897072, -0.014347581192851067, 0.03514318913221359, 0.01968574896454811, 0.03912733495235443, -0.03213946521282196, 0.03399893268942833, -0.044245027005672455, -0.02250644750893116, -0.019957469776272774, -0.006418181583285332, 0.01803521253168583, 0.01028455514460802, 0.10902176797389984, 0.058146633207798004, -0.05612574890255928, -0.03583734482526779, 0.028291134163737297, 0.018685365095734596, -0.0633339136838913, -0.003856624010950327, -0.0166100412607193, -0.00731970090419054, 0.01557802315801382, -0.05288563668727875, -0.021742602810263634, 0.028329286724328995, -0.06135476753115654, -0.014623148366808891, 0.07650363445281982, -0.04258168488740921, 0.08566669374704361, 0.02112886682152748, -0.020865749567747116, 0.012913464568555355, -0.02391868270933628, -0.05546197667717934, 0.0038590445183217525, -0.01906304992735386, -0.012273094616830349, 0.038772162050008774, -0.019706428050994873, -0.054216209799051285, -0.060339272022247314, -0.02215728908777237, 0.005064233206212521, 0.035622622817754745, 0.06637817621231079, 0.0020519059617072344, 0.06150354817509651, -0.011291127651929855, 0.01671398989856243, -0.01628260873258114, -0.047096166759729385, -0.012297206558287144, -0.027173787355422974, 0.02242564782500267, 0.022461874410510063, -0.008587573654949665, 0.016384204849600792, 0.021243855357170105, 0.0044652908109128475, -0.03550880029797554, -0.03808596357703209, 0.05271041393280029, -0.00784903485327959, -0.020686563104391098, -0.026409806683659554, -0.010519951581954956, 0.05672121047973633, -0.05387173220515251, -0.017210092395544052, 0.034418925642967224, -0.044150590896606445, 0.051893822848796844, -0.02924957126379013, -0.05627015233039856, -0.005562072154134512, 0.014122975058853626, 0.0449804812669754, -0.0014865697594359517, 0.0208387840539217, 0.08778718113899231, 0.018952641636133194, 0.016287971287965775, -0.021663380786776543, 0.016792146489024162, -0.011220168322324753, 0.017552293837070465, 0.01844409480690956, 0.030984334647655487, 0.016080880537629128, 0.00021639151964336634, -0.04730762913823128, 0.06478890776634216, -0.026045506820082664, -0.28722840547561646, 0.039818648248910904, 0.0203505028039217, -0.028481723740696907, 0.031955450773239136, -0.00656194007024169, 0.017024163156747818, -0.038265153765678406, -0.02617853879928589, 0.0071464949287474155, -0.0288544911891222, -0.03893386945128441, -0.050059691071510315, 0.07109444588422775, -0.008108194917440414, 0.04112016409635544, 0.04346994310617447, -0.05736340209841728, -0.008451725356280804, 0.06786247342824936, 0.001213081763125956, -0.05941386520862579, -0.013592350296676159, 0.03686315566301346, 0.04199501872062683, 0.057122327387332916, -0.0958767682313919, 0.039355676621198654, -0.06665470451116562, -0.000821043096948415, 0.00677791191264987, 0.0009447837364859879, 0.017746536061167717, -0.03336498141288757, 0.005107843317091465, -0.026408689096570015, 0.0322539247572422, 0.009642431512475014, -0.014071543700993061, 0.040048014372587204, -0.02399110607802868, -0.03792555630207062, -0.008143880404531956, 0.033176880329847336, 0.05646512657403946, 0.030902454629540443, -0.06845343858003616, -0.03106149472296238, -0.02524423599243164, 0.05738626793026924, -0.06686025112867355, -0.025460869073867798, 0.0043610576540231705, 0.029111851006746292, -0.027903541922569275, -0.014837261289358139, -0.0035215523093938828, -0.00769931823015213, -0.0666842982172966, -0.047680821269750595, -0.02520308643579483, -0.02312941662967205, 0.00991726666688919, -0.05503586307168007, -0.020478399470448494, -0.050223249942064285, -0.07135235518217087, 0.001734468387439847, 0.07692965120077133, 0.03275701403617859, -0.02998238243162632, 0.026465769857168198, -0.012305288575589657, -0.10845211893320084, -0.004265561234205961, -0.0021122568286955357, -0.035634107887744904, 0.0003005481557920575, 0.017959585413336754, 0.03510621562600136, -0.024438608437776566, -0.061760108917951584, 0.027974285185337067, 0.03280824050307274, 0.02827632613480091, -0.040027786046266556, 0.036243706941604614, -0.02385346218943596, -0.015053858049213886, 0.03897221013903618, 0.061396826058626175, 0.011013925075531006, -0.019240841269493103, -0.044650766998529434, 0.0359114445745945, 0.0004246287571731955, 0.005461408756673336, -0.008302507922053337, 0.014689670875668526, 0.018574895337224007, 0.013433028012514114, -0.07156499475240707, 0.018587995320558548, -0.004964957945048809, -0.0030708538834005594, -0.01849023438990116, -0.04582197219133377, 0.01377073209732771, 0.04990481957793236, 0.03693106025457382, -0.007661127485334873, -0.0391167551279068, 0.012813069857656956, -0.02974001318216324, -0.027756061404943466, -0.021477097645401955, 0.016943763941526413, 0.054337337613105774, -0.0203684251755476, -0.003757847473025322, -0.052556853741407394, 0.014820362441241741, 0.01365320198237896, -0.01486955489963293, -0.05463453009724617, -0.02389436960220337, -0.009747838601469994, -0.03781122341752052, 0.003268025116994977, 0.029464734718203545, -0.02405506931245327, 0.021097371354699135, 0.019367994740605354, -0.028128955513238907, 0.00028881983598694205, -0.03442753478884697, -0.04699479416012764, -0.024021703749895096, -0.008098345249891281, -0.0013533475575968623, 0.0065695601515471935, 0.01189702469855547, 0.009148730896413326, 0.005357581190764904, 0.05166191607713699, 0.02678038738667965, 0.02837323769927025, 0.002225226955488324, 0.029243644326925278, 0.0015414359513670206, 0.002294182078912854, -0.08108506351709366, 0.0280271228402853, -0.04064644128084183, -0.025794312357902527, -0.02895493619143963, 0.014676157385110855, -0.015229900367558002, -0.045012883841991425, -0.02485627494752407, 0.03722725808620453, -0.04997565224766731, -0.048584043979644775, -0.02425307407975197, -0.0013353172689676285, 0.07100044935941696, -0.03783146291971207, 0.04125120863318443, -0.002113918773829937, -0.004863475449383259, 0.02609093114733696, 0.013695739209651947, -0.0419929213821888, -0.010628670454025269, 0.004074012394994497, -0.00895752664655447, 0.009549100883305073, -0.014239136129617691, 0.02735772356390953, 0.005079962313175201, -0.0009911628440022469, -0.009344545193016529, 0.019075915217399597, 0.0005314033478498459, 0.05829307809472084, 0.008518003858625889, 0.022977564483880997, 0.0007559818332083523, -0.005110027734190226, -0.0028449862729758024, -0.04317275434732437, -0.014418265782296658, 0.01926637440919876, 0.006979421712458134, -0.05081947147846222, -0.07721497863531113, 0.037230659276247025, 0.026363225653767586, -0.001777502242475748, 0.009808502160012722, 0.004543138202279806, 0.02414027974009514, -0.03293074667453766, 0.03624815493822098, 0.056472644209861755, -0.04897668585181236, 0.006443587131798267, -0.0006313431076705456, 0.02720453217625618, 0.004869038239121437, -0.023098181933164597, -0.026762476190924644, 0.010759067721664906, -0.015124109573662281, -0.011389137245714664, -0.046848364174366, -0.014215611852705479, -0.04123419523239136, 0.013592584058642387, -0.0036837058141827583, -0.02692539431154728, -0.008801634423434734, -0.0175677090883255, -0.014817794784903526, -0.04274966940283775, 0.019439417868852615, -0.02436157688498497, 0.0003013195237144828, 0.0382746085524559, -0.030667439103126526, -0.014458749443292618, -0.02646872214972973, 0.019430527463555336, 0.018219580873847008, -0.01168316975235939, -0.02421761490404606, -0.010529194958508015, 0.010858387686312199, 0.011406971141695976, 0.03785068541765213, -0.012558204121887684, -0.0317809097468853, -0.05090264230966568, -0.022653140127658844, -0.03936809301376343, 0.03002232126891613, -0.01685580611228943, -0.01988454908132553, 0.03025652840733528, 0.05376606062054634, 0.01852571591734886, 0.014694496989250183, -0.00572466803714633, -0.022631822153925896, 0.031972527503967285, -0.05882532522082329, -0.021786876022815704, -0.050499651581048965, -0.03208823874592781, -0.011226916685700417, 0.003849755274131894, 0.02646305412054062, -0.06692680716514587, 0.01582685299217701, 0.013218213804066181, 0.03854412958025932, 0.03579822555184364, 0.004647332709282637, 0.055388446897268295, -0.035224683582782745, 0.010095197707414627, -0.09251054376363754, -0.009858506731688976, 0.03220728412270546, 0.02106141485273838, 0.016026925295591354, -0.024679085239768028, -0.03902669623494148, 0.047522127628326416, -0.07740647345781326, -0.012468484230339527, 0.03639506921172142, 0.012611784972250462, -0.011868464760482311, 0.032986339181661606, -0.050399910658597946, 0.045511264353990555, 0.006950785405933857, -0.03915370628237724, -0.016729624941945076, -0.023654978722333908, 0.03527425602078438, 0.02531486004590988, 0.03273182734847069, -0.025286564603447914, 0.009215926751494408, 0.06512231379747391, 0.03377305716276169, 0.009413809515535831, 0.04669235646724701, -0.005682351998984814, 0.03991715610027313, 0.051725972443819046, -0.0014150507049635053, -0.0157010555267334, -0.0044412557035684586, -0.023888802155852318, -0.054519932717084885, 0.017215877771377563, -0.001330133993178606, -0.025153590366244316, -0.05720522627234459, 0.05650375410914421, 0.018314940854907036, -0.03202541172504425, -0.030345013365149498, 0.013537054881453514, -0.052038952708244324, 0.005198958329856396, -0.0351252406835556, -0.01495000533759594, -0.03561864793300629, 0.04342159256339073, -0.004090967122465372, 0.00827315915375948, 0.0735575407743454, 0.0014918275410309434, -0.03852321580052376, -0.03769403696060181, 0.0888928472995758, 0.042635686695575714, 0.06102366745471954, 0.002767376136034727, 0.06560215353965759, -0.02156422659754753, -0.040474891662597656, 0.02827063575387001, -0.02988075651228428, -0.020876841619610786, -0.011633277870714664, 0.04103586822748184, 0.06300868839025497, -0.012827138416469097, 0.07041151821613312, -0.012641728855669498, -0.0044965725392103195, 0.008387299254536629, 0.05110209062695503, 0.018344031646847725, 0.060012783855199814, 0.0006209572893567383, 0.026515301316976547, -0.006383237894624472, -0.05580407381057739, 0.013357865624129772, -0.025031911209225655, -0.01382624451071024, 0.01918884553015232, -0.003537424374371767, 0.03975370526313782, 0.037872880697250366, 0.01458781585097313, 0.09513320028781891, -0.025543691590428352, 0.0056791105307638645, -0.012453732080757618, 0.04129375144839287, 0.006733478046953678, 0.0036508471239358187, -0.03024008497595787, -0.014788555912673473, -0.00940661784261465, -0.020236875861883163, -0.011527950875461102, -0.010082291439175606, -0.018643436953425407, 0.023326527327299118, -0.025833653286099434, 0.004274600185453892, 0.006238916888833046, 0.0023421570658683777, -0.039752330631017685, -0.05174253508448601, -0.03747282549738884, -0.03629101440310478, -0.04984059929847717, -0.014014419168233871, -0.007992686703801155, -0.0012230766005814075, -0.03435436636209488, -0.024424899369478226, -0.010516629554331303, -0.03188733756542206, 0.04582936316728592, -0.059879086911678314, -0.029054760932922363, 0.01439896784722805, 0.0306831207126379, 0.022800225764513016, 0.006506625097244978, 0.04822584241628647, -0.019383542239665985, -0.0004034917801618576, -0.009410602040588856, -0.006465771701186895, 0.028511058539152145, 0.007416458334773779, -0.030231714248657227, -0.09856200218200684, 0.05165768787264824, 0.002460464835166931, -0.034274518489837646, -0.06717656552791595, 0.01394773367792368, 0.029090935364365578, 0.009967345744371414, 0.07230442017316818, -0.03468625247478485, -0.005162089131772518, -0.03997582942247391, -0.013421444222331047, -0.009932269342243671, 0.025506824254989624, 0.052211787551641464, -0.025375358760356903, 0.07633991539478302, 0.0022495973389595747, -0.0067796059884130955, -0.05041975528001785, -0.014512884430587292, 0.014552186243236065, 0.010266403667628765, -0.00968072097748518, -0.008975834585726261, -0.006856326013803482, -0.08813659846782684, -0.0064479089342057705, 0.03560158610343933, -0.041761256754398346, -0.047026317566633224, 0.0350613035261631, 0.02728930488228798, -0.02400592528283596, 0.037404756993055344, -0.031958721578121185, 0.040355999022722244, -0.02309463545680046, -0.012288079597055912, 0.031907957047224045, 0.01438943948596716, -0.016196774318814278, -0.004840896464884281, 0.0032861013896763325, -0.02956691011786461, -0.017907502129673958, -0.0100387092679739, 0.03220570087432861, 0.03448760509490967, -0.006351695861667395, -0.0003340893890708685 ]
[ -0.07769453525543213, 0.005787437316030264, -0.01669478975236416, -0.04405711218714714, 0.017617344856262207, -0.04503158852458, 0.01029195636510849, 0.02527611516416073, 0.0007524984539486468, -0.034688930958509445, -0.005478012841194868, -0.03960810601711273, -0.006641627289354801, -0.007906131446361542, 0.07007656991481781, 0.00943861622363329, -0.014409210532903671, -0.04821505397558212, 0.030384289100766182, 0.031114518642425537, 0.03917349874973297, -0.0345817469060421, -0.05390698462724686, -0.03474090248346329, 0.02930496446788311, 0.030472109094262123, 0.05432957038283348, -0.04439135640859604, 0.013087788596749306, -0.1664324253797531, -0.008780211210250854, 0.006110891699790955, 0.05245709791779518, 0.0016798953292891383, 0.018255073577165604, 0.045503661036491394, 0.014088570140302181, 0.027786292135715485, -0.03807031735777855, 0.04591429606080055, 0.015750491991639137, 0.0007833461277186871, -0.04863884672522545, -0.033114414662122726, 0.04055162891745567, 0.0002705455699469894, -0.0039027638267725706, -0.04685388505458832, -0.005126216448843479, 0.00879675429314375, -0.06300517916679382, -0.041682563722133636, -0.020551733672618866, -0.010329076088964939, -0.029852857813239098, 0.04026094451546669, 0.04918891564011574, 0.04374120011925697, -0.005799856502562761, 0.010666429065167904, -0.00022485617955680937, -0.017296025529503822, -0.13061507046222687, 0.08883260190486908, 0.07397113740444183, 0.05445656180381775, -0.02229916863143444, -0.02226061001420021, 0.0028381275478750467, 0.10334551334381104, -0.0021943922620266676, -0.035752154886722565, -0.028434203937649727, 0.07005001604557037, 0.014983494766056538, -0.005604676436632872, -0.0026692901737987995, 0.005383223760873079, 0.017603904008865356, -0.04667537659406662, -0.02401769906282425, 0.005332963541150093, -0.004832223057746887, -0.002138081006705761, -0.049530576914548874, 0.024147825315594673, -0.0193867776542902, 0.05508691444993019, 0.04570644721388817, 0.013813701458275318, 0.053885966539382935, -0.02029178850352764, 0.021928345784544945, -0.017573285847902298, -0.04893213137984276, -0.0395938977599144, 0.0027463899459689856, 0.035757001489400864, -0.04813732951879501, 0.4330926239490509, -0.024608926847577095, -0.01463703066110611, 0.10924272239208221, 0.02311084046959877, -0.0009928758954629302, 0.029919574037194252, 0.014191140420734882, -0.02822093479335308, 0.005089879035949707, -0.051054447889328, 0.04429295286536217, 0.025858405977487564, 0.05092150717973709, -0.026422588154673576, 0.03644638508558273, 0.011233510449528694, 0.019374575465917587, 0.010250839404761791, 0.01164577342569828, -0.007308436557650566, -0.03925873711705208, 0.03682224452495575, 0.00043135363375768065, -0.010960073210299015, -0.027577975764870644, -0.09547320753335953, -0.009563964791595936, 0.052377473562955856, 0.002096311654895544, -0.024772359058260918, 0.058230072259902954, -0.06610693782567978, -0.04109828174114227, 0.01669098623096943, 0.003591816173866391, 0.009792475029826164, 0.042035434395074844, -0.005869396962225437, 0.015355556271970272, 0.05128913372755051, -0.0067485785111784935, 0.005299657117575407, 0.0052818842232227325, -0.007005542051047087, -0.06159215420484543, 0.1036086231470108, 0.021888485178351402, -0.016538653522729874, -0.00014067182200960815, -0.027942661195993423, 0.004535836633294821, -0.016261503100395203, -0.04095934331417084, -0.06332314014434814, 0.03613564744591713, -0.0007529163267463446, 0.09747709333896637, 0.024107053875923157, -0.04256933555006981, -0.006441228091716766, -0.050263747572898865, -0.028497209772467613, -0.06009118631482124, 0.022805510088801384, 0.0992310494184494, -0.04719844087958336, 0.006424151826649904, 0.020844489336013794, 0.02412928268313408, -0.056648045778274536, 0.00835644081234932, 0.01486649177968502, -0.03248140588402748, -0.0034243944101035595, 0.07620933651924133, -0.030974959954619408, -0.03987522050738335, 0.012879004701972008, 0.04941081255674362, 0.017395688220858574, 0.04955727607011795, -0.009199153631925583, -0.009537751786410809, 0.007196003571152687, -0.01796913705766201, -0.08595199882984161, -0.042100150138139725, 0.0027485897298902273, -0.03336264565587044, 0.002530557569116354, -0.013213071972131729, -0.008266807533800602, -0.09059657156467438, 0.08019230514764786, -0.049257032573223114, -0.02906947024166584, 0.0445779412984848, -0.015223334543406963, -0.04330525919795036, -0.03242798149585724, -0.035259541124105453, 0.01416114903986454, -0.05947011709213257, 0.04946335032582283, -0.07069393992424011, 0.04447522386908531, 0.05968445539474487, -0.03252597898244858, 0.11575775593519211, 0.06252237409353256, -0.032359398901462555, -0.06976300477981567, 0.025963135063648224, 0.013789081946015358, 0.004286064766347408, -0.05225027725100517, 0.03478294983506203, 0.021226409822702408, 0.02887693978846073, -0.008016537874937057, -0.008512008003890514, -0.001625423552468419, -0.04443617910146713, -0.32649025321006775, -0.04527659714221954, -0.030691681429743767, -0.015550507232546806, 0.044946055859327316, -0.02952425554394722, 0.015189411118626595, -0.022918416187167168, -0.021467987447977066, -0.005859503988176584, 0.052176520228385925, -0.004366621840745211, 0.01751263067126274, -0.10622143000364304, 0.006906250491738319, -0.010358928702771664, -0.04722689464688301, -0.007043142803013325, -0.04010795056819916, 0.004521263297647238, -0.01167313288897276, 0.017365841194987297, -0.04406484216451645, -0.06391408294439316, -0.011716724373400211, -0.05620773509144783, 0.13266867399215698, -0.005379192531108856, 0.09804929047822952, -0.021988268941640854, 0.025765201076865196, -0.031214095652103424, 0.04036498814821243, -0.09653391689062119, 0.0012269041035324335, -0.028120998293161392, 0.014021937735378742, -0.017427165061235428, 0.036881931126117706, -0.02565227448940277, -0.059455350041389465, -0.00647774850949645, -0.0737965777516365, -0.016373198479413986, -0.07957359403371811, 0.04162972420454025, -0.004888216033577919, -0.03417033329606056, -0.03195556253194809, 0.09332814812660217, 0.01632549613714218, -0.01164135430008173, 0.018816111609339714, 0.027382057160139084, 0.004779134411364794, -0.03511422872543335, -0.092446468770504, 0.028296081349253654, 0.019933337345719337, 0.024903958663344383, 0.029312308877706528, 0.06265204399824142, 0.010200063697993755, -0.04283567890524864, -0.010767266154289246, 0.029546376317739487, -0.005945442710071802, -0.0065674870274960995, 0.01947302743792534, -0.02117600105702877, 0.0018895718967542052, 0.11783617734909058, 0.019118329510092735, -0.048169586807489395, 0.0065442356280982494, 0.011279752478003502, -0.002837447915226221, 0.037407469004392624, 0.027182687073946, -0.013640427961945534, 0.014800792559981346, -0.0403197705745697, -0.0021885232999920845, -0.018586507067084312, -0.011564269661903381, 0.025625204667448997, -0.004379295744001865, -0.04062100127339363, 0.04628462716937065, 0.0350949764251709, -0.03767810016870499, 0.018230833113193512, -0.01669355295598507, -0.030945613980293274, 0.08984106779098511, 0.004489573650062084, -0.2549677789211273, 0.010433749295771122, 0.06869978457689285, 0.06964921951293945, -0.0013631556648761034, 0.001183846266940236, 0.012080583721399307, -0.05018390342593193, 0.007189298514276743, 0.01844840869307518, 0.01202798169106245, -0.005403428338468075, -0.014645430259406567, -0.0034811687655746937, 0.0402691513299942, -0.012154767289757729, 0.028070827946066856, -0.02176622301340103, 0.005933902692049742, 0.022372432053089142, 0.005665995646268129, 0.01341947540640831, 0.15193629264831543, 0.003608601400628686, 0.04537305235862732, 0.003085794858634472, -0.002485566306859255, 0.0283421091735363, 0.06880731880664825, -0.0024378651287406683, -0.0014371146680787206, -0.012875240296125412, 0.015948908403515816, -0.029000379145145416, 0.011225404217839241, -0.07036081701517105, -0.01619681343436241, 0.02697918191552162, 0.03987573832273483, 0.01778540015220642, 0.022374402731657028, -0.008089613169431686, -0.03946287930011749, 0.013735867105424404, 0.07777320593595505, 0.03602726384997368, 0.019348956644535065, -0.050698358565568924, -0.03979357331991196, -0.00707548763602972, -0.01932358182966709, -0.01877354457974434, 0.006150333676487207, -0.004884358961135149, -0.003854649607092142, 0.062011849135160446, 0.0031547141261398792, -0.02169993333518505, -0.011074228212237358, -0.012513084337115288, -0.011809239163994789, 0.011960887350142002, 0.08876410871744156, 0.023299846798181534, 0.024469101801514626 ]
[ -0.015231061726808548, 0.02495991252362728, 0.0045781368389725685, -0.02108367346227169, -0.03270580992102623, -0.012714611366391182, 0.0045918351970613, -0.011918866075575352, 0.024037182331085205, 0.01091123465448618, 0.008866089396178722, 0.0027052070945501328, -0.02057194523513317, -0.02969522215425968, 0.00035821570781990886, -0.06849099695682526, 0.02296028472483158, -0.02371392212808132, 0.017057113349437714, 0.014814899303019047, -0.0036316881887614727, -0.012891467660665512, -0.005618535913527012, 0.005948227364569902, 0.03596559539437294, 0.01354965753853321, -0.015664711594581604, -0.021342549473047256, 0.0100815799087286, -0.11105570197105408, -0.047252945601940155, -0.03290588781237602, -0.03519148379564285, -0.018873274326324463, -0.013137145899236202, -0.006556594278663397, 0.011020462960004807, -0.0021123189944773912, -0.0021996856667101383, 0.004392497707158327, 0.016522664576768875, -0.02374100126326084, -0.002363513456657529, 0.02569253370165825, -0.000580521475058049, 0.0028047102969139814, 0.007305921986699104, -0.04882862791419029, 0.0038109307643026114, -0.01852540858089924, -0.06504318118095398, 0.007341108284890652, -0.04684203490614891, 0.0177354346960783, 0.005775760393589735, 0.014845340512692928, 0.06249073147773743, -0.013753932900726795, -0.012813394889235497, 0.004194047302007675, 0.011174915358424187, -0.03559137135744095, -0.032227057963609695, 0.00071941182250157, 0.019746890291571617, 0.008706638589501381, 0.004858008120208979, 0.0073793563060462475, -0.011439277790486813, -0.018309513106942177, 0.002097142394632101, 0.006693792063742876, -0.023787260055541992, 0.01610848307609558, 0.014468776062130928, 0.01993503049015999, 0.0033721006475389004, -0.03463396057486534, -0.029802558943629265, 0.006907612085342407, -0.016789399087429047, 0.03659013658761978, 0.03975563123822212, -0.03281982243061066, -0.0018465530592948198, 0.03192147985100746, -0.005411709658801556, -0.01541095320135355, 0.015438334085047245, 0.0008480262476950884, -0.000740311574190855, 0.04246452823281288, -0.020119154825806618, 0.004294282756745815, -0.03650294989347458, 0.023512275889515877, -0.041662655770778656, 0.011126396246254444, -0.008635347709059715, 0.8327234387397766, 0.020293600857257843, -0.003236090997233987, 0.014588349498808384, -0.003416788764297962, 0.01571686752140522, 0.022765427827835083, 0.0001557705836603418, 0.004977490287274122, -0.03308543562889099, -0.07971566915512085, 0.04391515254974365, 0.018793078139424324, 0.024537401273846626, 0.004344594199210405, 0.04062912240624428, -0.019914865493774414, 0.01295884232968092, 0.008361147716641426, -0.024174120277166367, 0.03201219439506531, 0.008225777186453342, 0.005649002734571695, -0.03242647275328636, -0.021540531888604164, -0.002227054676041007, -0.16682185232639313, -0.012892499566078186, -8.939529478195892e-33, 0.028516044840216637, -0.015295281074941158, 0.03529167175292969, -0.00777024682611227, -0.013840175233781338, 0.014523190446197987, 0.030089963227510452, 0.03387506306171417, 0.01523829810321331, -0.0071012843400239944, 0.005194449331611395, -0.011750880628824234, 0.0017218064749613404, -0.02594030275940895, 0.03879821300506592, -0.0304863341152668, -0.0006025374750606716, 0.03227466717362404, 0.017943745478987694, 0.031528372317552567, 0.03942912071943283, 0.016434326767921448, -0.010536827147006989, -0.00469634123146534, 0.02037225477397442, 0.012866264209151268, 0.0033663753420114517, -0.0047647058963775635, -0.00881561916321516, -0.03652067109942436, -0.011941460892558098, 0.030321907252073288, -0.02111123688519001, -0.025656962767243385, -0.011774607934057713, -0.056470468640327454, -0.01800977997481823, -0.0033275848254561424, 0.017799012362957, -0.009956955909729004, -0.06475135684013367, 0.011845697648823261, -0.036204494535923004, 0.017749318853020668, -0.03054581955075264, 0.043446607887744904, 0.009220830164849758, 0.05411859601736069, 0.009769497439265251, -0.008307410404086113, 0.013672216795384884, 0.003924897406250238, -0.01409437321126461, 0.0007470301352441311, -0.022230973467230797, 0.03627065569162369, 0.0018109773518517613, -0.006727694533765316, 0.0035246009938418865, 0.044163286685943604, -0.014974846504628658, 0.025900552049279213, -0.01930231787264347, 0.03749069198966026, -0.02778271771967411, 0.00592033239081502, 0.02079182304441929, 0.0010298019042238593, -0.013425368815660477, -0.00015057779091876, -0.07378887385129929, -0.036219045519828796, -0.011783957481384277, 0.0017807245021685958, 0.0002404736151220277, 0.028848234564065933, -0.02742721140384674, -0.015742873772978783, -0.034421782940626144, 0.04931415617465973, -0.0018031928921118379, 0.027835996821522713, 0.0012267068959772587, -0.04149564728140831, 0.01622147671878338, 0.009474982507526875, -0.010963210836052895, -0.013825246132910252, 0.021244218572974205, 0.018371056765317917, 0.049116749316453934, 0.0036074479576200247, -0.013002670370042324, 0.00491191865876317, -0.051214560866355896, 8.752057231022938e-33, 0.019045621156692505, -0.043124765157699585, -0.05141875520348549, 0.0133780837059021, 0.026132237166166306, 0.022358112037181854, 0.001826081657782197, -0.0060865143314003944, -0.08617512881755829, 0.03532879427075386, 0.020195534452795982, 0.02008536271750927, -0.036292582750320435, 0.06530674546957016, 0.035596851259469986, -0.027196556329727173, 0.02052672579884529, 0.005276104900985956, 0.01463949866592884, 0.012175407260656357, 0.052086032927036285, -0.012548130936920643, 0.009014788083732128, -0.027334241196513176, 0.044579558074474335, 0.03508919104933739, -0.03202791512012482, 0.0033641508780419827, 0.0025339648127555847, 0.018428683280944824, -0.02631719969213009, -0.03583591431379318, 0.020777201279997826, 0.018218813464045525, -0.03028883785009384, 0.04870665818452835, 0.013887663371860981, -0.03377648442983627, 0.004896723665297031, 0.025692131370306015, 0.00235448288731277, -0.008220783434808254, 0.010024303570389748, 0.020990803837776184, -0.0011306684464216232, -0.0034979763440787792, -0.0011211028322577477, -0.002630532020702958, -0.008623955771327019, 0.03448176383972168, -0.00912823062390089, 0.006767637562006712, 0.020758289843797684, 0.001621786504983902, -0.013881870545446873, -0.01833638735115528, -0.011245216242969036, -0.021422188729047775, -0.0287480466067791, 0.01728944480419159, -0.0061602904461324215, -0.02003125473856926, -0.0020346934907138348, -0.003277117619290948, 0.00220487080514431, 0.009903094731271267, 0.043163228780031204, -0.037753839045763016, -0.023204660043120384, -0.023159656673669815, 0.011325993575155735, 0.0075600421987473965, -0.006925782188773155, 0.03426731750369072, -0.011573927477002144, -0.0043176645413041115, -0.014549021609127522, 0.0011174322571605444, -0.03439708426594734, 0.05190775915980339, 0.011993606574833393, 0.0346391424536705, 0.01980651542544365, 0.0376540869474411, -0.010804671794176102, 0.020050449296832085, 0.004962818697094917, 0.037141017615795135, 0.0060140397399663925, -0.042113084346055984, -0.010957920923829079, -0.005445162765681744, 0.016795018687844276, 0.014524288475513458, -0.0009215946774929762, -1.3762836204023188e-8, 0.015299090184271336, 0.026966243982315063, 0.0008806688128970563, 0.0285646915435791, 0.004076833371073008, 0.014007939957082272, -0.021243976429104805, -0.027074534446001053, -0.026173003017902374, 0.040307044982910156, 0.02970685064792633, -0.043714988976716995, -0.013983683660626411, 0.003004725556820631, 0.02754984237253666, -0.05765153840184212, -0.01730983704328537, -0.0288847628980875, 0.020181505009531975, 0.0033372794277966022, 0.05072953924536705, 0.035468894988298416, -0.006093572825193405, 0.06219228729605675, 0.01745612919330597, -0.022853801026940346, 0.003352996427565813, -0.03915591910481453, 0.009833790361881256, 0.03249327838420868, -0.005116064101457596, -0.06394679099321365, -0.021678553894162178, 0.011529030278325081, -0.022898470982909203, -0.04699534922838211, 0.010223099030554295, 0.05200999602675438, 0.03277614712715149, -0.012409621849656105, -0.06621096283197403, -0.06618531793355942, 0.014380807057023048, -0.012078643776476383, 0.02660553716123104, 0.010977684520184994, -0.06533335894346237, -0.032757289707660675, 0.012422691099345684, -0.023016028106212616, -0.008974911645054817, 0.009464574046432972, 0.04152107983827591, 0.06711862981319427, 0.0032520771492272615, 0.027015680447220802, 0.022358091548085213, -0.004251858219504356, -0.03784140571951866, 0.014358184300363064, 0.036459654569625854, 0.03313774988055229, -0.06592664122581482, -0.02253485471010208 ]
learning-theory-first
https://markhneedham.com/blog/2008/02/09/learning-theory-first
false
2008-02-12 00:01:58
Feedback: Positive Reinforcement/Change yourself first
[ "communication", "feedback", "nlp", "change" ]
[ "Feedback" ]
One of the more interesting concepts used on the http://www.ablworld.com/Courses/Practitioner.htm[NLP course] that I did last year was the idea of only giving positive feedback to people. The thinking behind the theory (which I think comes from Robert Dilts, one of the early thinkers behind NLP) is that people know what they are doing wrong and already beat themselves up about it; therefore there is no point you mentioning it as well. I was initially sceptical about this approach as it seemed a bit too idealistic for my cynical mind. I found it extremely difficult to start with and didn't give any feedback to anyone for quite a few sessions. Eventually though something clicked for me and by the end of the 18 day course I feel I did gain a greater respect for and recognition of the talents that other people on the course had. The need to focus only on the positive actually seems to drive the mind to see more in this area than it otherwise would. Although noone likes it when they are criticised, I think there are some occasions when someone criticising you can prove to be extremely motivational. This basically involves them completely writing you off and you then being determined to prove them wrong. For example at school I was told that I would definitely fail the Pure Maths modules of my A Level Maths course. Completely unimpressed with this verdict I persevered with it for months eventually scoring 85%. Job done. I think sometimes when giving critical feedback it can say more about you than it does about the person you are giving it to, and this is where it's vital to step back and think why you are giving the feedback. I find at least for myself the tendency is to want to point out things people do that annoy me, which in effect is me trying to make the person more like myself. http://www.stevepavlina.com/blog/2007/01/understanding-human-relationships/[Steve Pavlina] suggests that the things we hate the most in other people are the things we actually hate in ourselves. Therefore his suggestion was if you find something someone else does annoying, first look at yourself and try and improve yourself in this area. I'm not sure if I totally subscribe to why this approach would work but I definitely agree that it is way easier to change yourself than it is to change someone else. Similar articles: * link:/blog/2006/09/02/giving-effective-feedback/[Giving effective feedback]
null
null
[ 0.027024120092391968, -0.006755356211215258, 0.02496764250099659, 0.006086065899580717, 0.05327189713716507, 0.026472611352801323, 0.041264474391937256, 0.036944251507520676, 0.0325782485306263, -0.005741881672292948, -0.02409808151423931, 0.01732506975531578, -0.04497858136892319, -0.00670892046764493, -0.02869882807135582, 0.06253848224878311, 0.04853349179029465, 0.01403005514293909, 0.007604476995766163, 0.027037154883146286, 0.04538032412528992, 0.06569397449493408, 0.03446958586573601, 0.024240044876933098, 0.05205896869301796, 0.012215377762913704, 0.024735385552048683, 0.010920419357717037, -0.05320709943771362, -0.004146012477576733, 0.029186654835939407, -0.003357290057465434, 0.011750610545277596, 0.008360933512449265, 0.03782012686133385, -0.000661236816085875, -0.010471547022461891, 0.03595834597945213, 0.018228041008114815, 0.005499228835105896, -0.08033674210309982, 0.03515171259641647, -0.018511399626731873, -0.0015198580222204328, -0.06562528759241104, -0.0042581334710121155, -0.04365392401814461, 0.00902964174747467, 0.015414183028042316, -0.008317384868860245, -0.08592131733894348, 0.052312809973955154, 0.030985331162810326, -0.014924303628504276, -0.015388940460979939, 0.054694999009370804, -0.0029965031426399946, -0.07787244766950607, 0.02481093816459179, -0.03695870563387871, -0.027867188677191734, -0.0068488456308841705, -0.013453640975058079, 0.027972394600510597, 0.022086096927523613, -0.012401743791997433, 0.0036265377420932055, 0.030293786898255348, -0.045308783650398254, 0.0006538284942507744, -0.027153246104717255, 0.012686655856668949, -0.009751357138156891, -0.028324348852038383, 0.004091149196028709, -0.06851189583539963, 0.006581123918294907, 0.05708819255232811, 0.02987511456012726, 0.011326405219733715, -0.015371831133961678, 0.03140754625201225, 0.022429700940847397, 0.04294247925281525, -0.013499440625309944, -0.056535229086875916, 0.04112480208277702, -0.022913379594683647, -0.06597590446472168, 0.05196790769696236, 0.008758259005844593, -0.038816146552562714, 0.033778876066207886, 0.034311603754758835, 0.02142886072397232, 0.011359656229615211, 0.028524933382868767, -0.02469727396965027, -0.037427496165037155, -0.05191344395279884, -0.01329366210848093, -0.05058065801858902, 0.008767028339207172, 0.0041060601361095905, -0.07919219881296158, 0.008342660963535309, 0.0038496062625199556, -0.004937583580613136, -0.014593896456062794, 0.018936637789011, -0.05369263142347336, 0.02164519764482975, -0.02517678216099739, 0.0018073524115607142, -0.0822843387722969, 0.05065988376736641, 0.0033524855971336365, -0.007551463786512613, -0.019441695883870125, 0.006928447633981705, 0.05201940983533859, -0.001194435521028936, 0.00270653679035604, 0.0850863978266716, 0.009351626969873905, 0.014148819260299206, -0.027427664026618004, 0.05977741256356239, -0.023618977516889572, -0.058426763862371445, -0.007873248308897018, 0.04034863039851189, -0.01829580031335354, 0.006486173253506422, 0.002271699020639062, -0.02423369511961937, 0.0243209321051836, -0.0059294318780303, 0.003305856604129076, 0.08048044145107269, 0.009076542221009731, -0.026118246838450432, 0.018074089661240578, 0.02497621811926365, 0.02923436276614666, -0.019135866314172745, -0.013189682736992836, -0.01538033690303564, -0.050191301852464676, -0.0386582687497139, -0.008501428179442883, 0.02060515061020851, 0.0020619204733520746, -0.03673529252409935, 0.0409095399081707, 0.08174110949039459, 0.0630461573600769, 0.021550916135311127, -0.017891285941004753, 0.017532972618937492, 0.03997032344341278, 0.03723205626010895, 0.003190726274624467, 0.018346955999732018, 0.04613903537392616, -0.021648574620485306, -0.011146537959575653, 0.015984240919351578, -0.022777944803237915, 0.011384662240743637, -0.055203843861818314, -0.027382832020521164, 0.039982546120882034, -0.05010826513171196, -0.04061311483383179, 0.044491592794656754, 0.05447623133659363, 0.03933698311448097, 0.04064550995826721, 0.017372172325849533, -0.08497455716133118, 0.03971904516220093, -0.006717312149703503, 0.0206332728266716, 0.014013318344950676, -0.0279886182397604, 0.049106333404779434, 0.03604799881577492, 0.016940252855420113, 0.07406631857156754, -0.07992620021104813, -0.07522956281900406, -0.01552809402346611, 0.005794562865048647, 0.053684912621974945, -0.024083906784653664, 0.019832737743854523, 0.0849829763174057, 0.011842632666230202, 0.05393161624670029, 0.008337372913956642, -0.013487497344613075, -0.015860065817832947, -0.02552727237343788, -0.0346062146127224, 0.07111445814371109, 0.02177036926150322, -0.006462039891630411, -0.04110926017165184, 0.02082417905330658, -0.018808063119649887, -0.04143275320529938, 0.034279245883226395, -0.012293439358472824, 0.011865483596920967, 0.02172032557427883, 0.04577590152621269, -0.00882575660943985, 0.03824669122695923, -0.02251417376101017, 0.007303940132260323, 0.011198720894753933, 0.005917479749768972, -0.002584729576483369, 0.020228194072842598, 0.11504993587732315, 0.0656496211886406, -0.0386015810072422, -0.04443769529461861, 0.013726145029067993, 0.034018855541944504, -0.03765163570642471, 0.007925653830170631, 0.016100866720080376, -0.007074233144521713, 0.007134172599762678, -0.06224089488387108, -0.04490984231233597, 0.03736637532711029, -0.07360528409481049, -0.02342158369719982, 0.06775733083486557, -0.03387255221605301, 0.07127057760953903, -0.026455627754330635, 0.013889851048588753, -0.01884578913450241, 0.010237432084977627, -0.03493211790919304, 0.023545045405626297, -0.007784335408359766, -0.008343556895852089, 0.0259549580514431, 0.007869059219956398, -0.02536253072321415, -0.02949676476418972, -0.04022550582885742, 0.0157164353877306, 0.06467593461275101, 0.048349592834711075, -0.015138219110667706, 0.055525217205286026, -0.0025043822824954987, 0.026581626385450363, 0.015455951914191246, -0.03619057685136795, -0.04324256628751755, -0.039406124502420425, 0.013715346343815327, 0.007640571799129248, 0.0022613622713834047, 0.004232416395097971, -0.003788258647546172, 0.016829079017043114, -0.016034653410315514, 0.000705969927366823, 0.04916568100452423, -0.006395360454916954, -0.004404796753078699, -0.009415904991328716, -0.03701002523303032, 0.056279491633176804, -0.04347943887114525, -0.019443636760115623, 0.011348520405590534, -0.08633961528539658, 0.031019626185297966, -0.03847157955169678, -0.04314111918210983, 0.004115499556064606, 0.01098378375172615, 0.04665140435099602, 0.03701231628656387, 0.012605779804289341, 0.07769022136926651, 0.012656022794544697, 0.02692369557917118, 0.004700363148003817, 0.009864632040262222, 0.047723349183797836, 0.0026275624986737967, -0.008562958799302578, 0.01284216158092022, 0.0180374626070261, 0.0036172920372337103, -0.04068394750356674, 0.02827434614300728, -0.03480137512087822, -0.27772727608680725, 0.047710955142974854, 0.026521053165197372, -0.030145475640892982, 0.02305818907916546, -0.04663683846592903, 0.02361227758228779, -0.04453548043966293, -0.0547911562025547, 0.017794324085116386, -0.03677872568368912, -0.033897846937179565, -0.014845800586044788, 0.05642053857445717, 0.004177489317953587, 0.025696013122797012, 0.005169264040887356, -0.033730871975421906, 0.012563040480017662, 0.07701580971479416, -0.0033436620142310858, -0.052596550434827805, -0.020315691828727722, 0.06793012470006943, 0.029140181839466095, 0.06386582553386688, -0.06649168580770493, 0.036001309752464294, -0.06701729446649551, 0.01375299971550703, -0.00825056154280901, 0.017349323257803917, -0.012229198589920998, 0.005430348217487335, 0.0034524931106716394, -0.019790085032582283, 0.055097244679927826, -0.00130781764164567, -0.00265553779900074, 0.019083330407738686, -0.040971528738737106, -0.0404294915497303, -0.0001550681481603533, 0.037403203547000885, 0.06897064298391342, 0.02160250023007393, -0.06829673796892166, -0.019810866564512253, -0.027023404836654663, 0.06929933279752731, -0.04732035472989082, -0.038064759224653244, -0.019796282052993774, 0.02572149783372879, -0.014532413333654404, -0.010036038234829903, -0.01728694885969162, -0.03836303576827049, -0.054548610001802444, -0.06135628744959831, -0.03276989981532097, 0.0040472629480063915, -0.006989503279328346, -0.04446287080645561, -0.008393924683332443, -0.05980554595589638, -0.0546870119869709, -0.0352216437458992, 0.0785641074180603, 0.02196185663342476, -0.024548780173063278, 0.0038349407259374857, -0.02436024323105812, -0.09123174101114273, -0.01936878077685833, -0.00892577227205038, -0.031202172860503197, 0.01592264510691166, 0.00924886204302311, 0.06090192496776581, -0.024679096415638924, -0.052081190049648285, 0.03847382217645645, -0.003651192644611001, 0.036089543253183365, -0.010684052482247353, 0.05900269374251366, 0.021139156073331833, -0.02710270695388317, -0.000672769034281373, 0.07149512320756912, 0.030888857319951057, -0.061720795929431915, -0.0180449690669775, 0.046024009585380554, 0.03570494428277016, 0.008628272451460361, -0.0347614660859108, 0.020422762259840965, 0.007582694757729769, 0.0187104269862175, -0.05247098207473755, 0.03390419855713844, -0.006275852210819721, -0.021316643804311752, -0.010403409600257874, -0.06197395175695419, 0.030676785856485367, 0.002198380185291171, -0.010193749330937862, -0.003017531707882881, -0.03080087900161743, 0.027759792283177376, -0.002916705794632435, -0.03350468724966049, -0.024608710780739784, -0.0013219339307397604, 0.054873913526535034, -0.018880262970924377, 0.0011657207505777478, -0.038694947957992554, 0.011046241968870163, -0.013854102231562138, -0.009743071161210537, -0.04017534479498863, -0.0015015893150120974, -0.0022668878082185984, -0.04247073829174042, -0.00983397476375103, 0.0312810055911541, -0.0038801576010882854, -0.00223138858564198, 0.03971682861447334, -0.023110557347536087, 0.032754164189100266, -0.017010387033224106, -0.059332337230443954, -0.03227340057492256, 0.003325843717902899, 0.0047369287349283695, 0.003376759123057127, 0.018261227756738663, -0.010735873132944107, 0.03836150839924812, 0.058133941143751144, 0.014610600657761097, -0.0007845070795156062, -0.050505008548498154, 0.029513755813241005, 0.015407274477183819, 0.043490875512361526, -0.04850001633167267, 0.006335814017802477, -0.0369618758559227, -0.0303022563457489, 0.0018288991414010525, 0.006732109934091568, -0.005749103147536516, -0.017785988748073578, -0.004218471236526966, -0.002466646721586585, -0.038407422602176666, -0.05901345983147621, -0.03530735522508621, 0.031320229172706604, 0.051178932189941406, -0.03170687332749367, 0.011666782200336456, 0.002263295231387019, 0.001255857408978045, 0.01844186522066593, 0.007790776435285807, -0.03912490978837013, 0.0007826366927474737, -0.0031284536235034466, -0.006782181560993195, -0.0053980350494384766, -0.018188469111919403, 0.035148657858371735, -0.002740028314292431, -0.008027011528611183, -0.044836610555648804, 0.00031094346195459366, 0.02275935932993889, 0.06530477106571198, 0.02891579270362854, -0.0033338600769639015, -0.01617482490837574, -0.015846455469727516, -0.01431343425065279, -0.043235018849372864, -0.03374827280640602, 0.01604040153324604, 0.022735806182026863, -0.04482260346412659, -0.06505213677883148, 0.046000100672245026, 0.010502543300390244, 0.0019228733144700527, 0.039403870701789856, -0.007592284586280584, -0.00017402329831384122, -0.034142766147851944, 0.010524261742830276, 0.05815466493368149, -0.0684824138879776, -0.002138083567842841, -0.023670557886362076, -0.025497540831565857, 0.0187847837805748, -0.005224472377449274, -0.030798502266407013, -0.010769269429147243, -0.02860703133046627, -0.010266516357660294, -0.08153627812862396, -0.03701590746641159, -0.034294869750738144, 0.007175389211624861, 0.002313914941623807, 0.005296625662595034, -0.01970381662249565, -0.03167995065450668, -0.009678240865468979, -0.021704312413930893, 0.022900834679603577, -0.05795842781662941, 0.015354011207818985, 0.02280491590499878, -0.04913836345076561, -0.0066766757518053055, -0.017499443143606186, 0.0160136129707098, 0.027149023488163948, -0.028365328907966614, -0.012504646554589272, -0.03891358524560928, 0.026993796229362488, 0.002939674537628889, 0.030056491494178772, -0.007404165808111429, -0.034354954957962036, -0.04584573954343796, -0.025516603142023087, -0.029453502967953682, 0.01682882197201252, -0.012331146746873856, -0.019909994676709175, 0.04532740265130997, 0.04963275417685509, 0.02493910677731037, 0.04281662032008171, -0.04201997444033623, -0.005975859239697456, 0.04065874591469765, -0.04712427034974098, -0.031117817386984825, -0.04192175343632698, -0.055276330560445786, 0.018620403483510017, 0.02184833213686943, 0.030818849802017212, -0.027486048638820648, 0.040654271841049194, 0.0198341254144907, 0.031812116503715515, 0.04464128240942955, 0.004956800956279039, 0.02838476188480854, -0.04770829901099205, -0.0028592958115041256, -0.0824284702539444, -0.03041543811559677, 0.01613656058907509, 0.004423169884830713, -0.009817410260438919, -0.03534175828099251, -0.05502735823392868, 0.05913269519805908, -0.08866363018751144, -0.01610451377928257, 0.016509050503373146, -0.006701026111841202, -0.024513065814971924, 0.017968740314245224, -0.08189335465431213, 0.022954588755965233, 0.002174685476347804, -0.041685909032821655, -0.019373713061213493, -0.027262166142463684, 0.0523361898958683, 0.0022604833357036114, 0.001600090996362269, -0.03983955457806587, 0.01361721009016037, 0.06165004149079323, 0.023229490965604782, -0.00008532117499271408, 0.02813725918531418, -0.0014086897717788815, 0.03398384898900986, 0.034356120973825455, 0.032198939472436905, -0.022584570571780205, 0.008619793690741062, -0.009483935311436653, -0.06598512083292007, 0.05319394916296005, -0.004895590711385012, -0.04544882848858833, -0.029290007427334785, 0.036885056644678116, 0.029877841472625732, -0.029283931478857994, -0.04882510006427765, 0.022753141820430756, -0.04093626141548157, -0.012421959079802036, -0.004766896367073059, -0.00221850979141891, -0.05214596167206764, 0.04157979413866997, 0.014841889031231403, -0.000006092162038839888, 0.03990522399544716, -0.021842332556843758, -0.017551537603139877, -0.005331690423190594, 0.09903253614902496, 0.06075497716665268, 0.06405572593212128, 0.026025446131825447, 0.07714478671550751, -0.009840844199061394, -0.04213087260723114, 0.038937460631132126, 0.015339466743171215, -0.018478581681847572, -0.017801066860556602, 0.021207092329859734, 0.036767713725566864, -0.007243712432682514, 0.06274005025625229, -0.03360927477478981, -0.028108496218919754, 0.0008184100734069943, 0.04674103111028671, 0.014051937498152256, 0.06602251529693604, 0.021986935287714005, 0.022865157574415207, -0.009552945382893085, -0.07996243238449097, 0.03673754259943962, -0.02809874154627323, 0.0025735122617334127, 0.01713157631456852, -0.02533651329576969, 0.022005340084433556, 0.03408600762486458, 0.04313463345170021, 0.07224167138338089, -0.03818310424685478, 0.008770924992859364, 0.004639422986656427, 0.03129418566823006, -0.003034519962966442, 0.012353320606052876, -0.019499123096466064, -0.019284948706626892, 0.004030890297144651, -0.04616382345557213, -0.01889745518565178, -0.02108578570187092, -0.016597744077444077, 0.04257698729634285, -0.03337743505835533, -0.02164113149046898, 0.031224854290485382, 0.010818840935826302, -0.04105402156710625, -0.05335724726319313, -0.02934202179312706, -0.021699102595448494, -0.0699683129787445, -0.006851804908365011, -0.004306043032556772, -0.020433969795703888, -0.016667267307639122, -0.0043472349643707275, -0.005038097035139799, -0.030762001872062683, 0.050497572869062424, -0.0545586459338665, -0.024796148762106895, -0.0020384634844958782, 0.028497854247689247, 0.024495746940374374, -0.013419379480183125, 0.05364461615681648, 0.023891929537057877, -0.0065610818564891815, 0.009662531316280365, 0.00019428633095230907, 0.01949276775121689, -0.005157597828656435, 0.013624639250338078, -0.09825420379638672, -0.0032226024195551872, 0.007198525592684746, -0.015543467365205288, -0.056790824979543686, 0.01640448160469532, 0.026412706822156906, 0.03516702726483345, 0.04398128390312195, 0.011991908773779869, -0.02722591534256935, -0.03745705634355545, -0.0005044140852987766, -0.011366788297891617, 0.015664441511034966, 0.05351755768060684, -0.016566423699259758, 0.08484232425689697, 0.0022251990158110857, -0.02560141496360302, -0.04233720898628235, -0.027230126783251762, 0.02992669679224491, -0.003609762527048588, -0.029491238296031952, -0.0395364910364151, -0.008462275378406048, -0.0736839696764946, -0.02502216026186943, 0.030351392924785614, -0.03437398001551628, -0.038728952407836914, 0.028399402275681496, -0.001480947365052998, -0.009735886007547379, 0.02898196317255497, -0.03180868923664093, 0.0183386392891407, -0.01032788585871458, -0.014260513707995415, 0.011549658142030239, 0.010689652524888515, -0.0011025177082046866, -0.009415878914296627, 0.016949696466326714, -0.031844742596149445, -0.0032674220856279135, -0.007405461277812719, 0.018303096294403076, 0.043470464646816254, -0.01125972531735897, -0.024982990697026253 ]
[ -0.08736547082662582, 0.0013854241697117686, -0.009733453392982483, -0.01654900051653385, -0.023405758664011955, -0.0009554590797051787, 0.025065651163458824, 0.018056051805615425, 0.0028362413868308067, -0.028912365436553955, 0.032638952136039734, -0.02117062360048294, -0.007846000604331493, -0.004198953043669462, 0.062305714935064316, 0.02048300951719284, 0.004613895434886217, -0.06505834311246872, -0.019765693694353104, 0.03299131989479065, -0.0030791100580245256, -0.015963852405548096, -0.022056827321648598, -0.003856213064864278, 0.02214134857058525, -0.006280086003243923, 0.05093640089035034, -0.049622710794210434, 0.001633319421671331, -0.15032605826854706, 0.000456827663583681, 0.005115557461977005, 0.054598744958639145, -0.004238520283252001, -0.02169789932668209, 0.06896646320819855, -0.001889199367724359, 0.011972826905548573, -0.03038351982831955, 0.029418161138892174, 0.010443782433867455, 0.016984229907393456, -0.02083551324903965, -0.028667805716395378, 0.06369578093290329, 0.0060572754591703415, 0.020645080134272575, -0.052427276968955994, -0.008654537610709667, -0.0014009709702804685, -0.05462970957159996, -0.040449973195791245, -0.02979266084730625, 0.0018714264733716846, -0.009219519793987274, 0.022819185629487038, 0.0460641086101532, 0.05241188406944275, 0.00751336058601737, 0.02065184898674488, 0.011519115418195724, 0.020577937364578247, -0.15154576301574707, 0.09536363184452057, 0.016609782353043556, 0.06395920366048813, -0.03637365624308586, 0.012100853957235813, -0.041394900530576706, 0.08188971877098083, -0.0064604394137859344, -0.011847731657326221, -0.005971209611743689, 0.03573773801326752, 0.016741396859288216, 0.016034746542572975, 0.019882796332240105, 0.013296052813529968, 0.03427208960056305, -0.018020253628492355, 0.005580447614192963, 0.03497818112373352, -0.007731136400252581, -0.05295175313949585, -0.005534647032618523, 0.006857821252197027, -0.006070592440664768, 0.003677801927551627, 0.02417784184217453, 0.02541911043226719, 0.0664258748292923, -0.016038663685321808, -0.016806263476610184, -0.009439718909561634, -0.04062553867697716, -0.06578049063682556, -0.012563166208565235, 0.015473548322916031, -0.055328190326690674, 0.46629899740219116, -0.022286100313067436, 0.035447124391794205, 0.04724720120429993, 0.00847223773598671, -0.014112703502178192, -0.014047723263502121, 0.024755196645855904, -0.04865265265107155, 0.03333522751927376, -0.025652984157204628, 0.02099609375, -0.01675431616604328, 0.037296194583177567, -0.050013042986392975, 0.0024959109723567963, 0.033631581813097, 0.07012178003787994, 0.019614163786172867, 0.002959991805255413, -0.017373908311128616, 0.004008404444903135, 0.012501549907028675, 0.030301954597234726, -0.04496898502111435, -0.016524650156497955, -0.07850691676139832, 0.020755549892783165, 0.061081498861312866, 0.019858429208397865, -0.015851518139243126, 0.05303429067134857, -0.07912462204694748, -0.054037950932979584, -0.006105158012360334, -0.015546360053122044, -0.0009480676962994039, 0.022127775475382805, -0.016282571479678154, 0.04925192520022392, 0.052058856934309006, 0.05191377177834511, -0.01820262335240841, -0.017862150445580482, -0.005560419522225857, -0.04522978141903877, 0.12101561576128006, -0.00921335443854332, -0.026926368474960327, 0.0006494572153314948, 0.009945239871740341, 0.001969835488125682, 0.015492845326662064, -0.05290065333247185, -0.04640577733516693, 0.03048347681760788, -0.0028592299204319715, 0.11232424527406693, -0.037911660969257355, -0.052845750004053116, -0.005755764897912741, -0.01864854246377945, -0.023197289556264877, -0.05423713102936745, 0.026956461369991302, 0.09762907028198242, -0.04300490394234657, -0.017002755776047707, -0.033203400671482086, 0.018587496131658554, -0.07163464277982712, 0.014236923307180405, -0.01568913832306862, -0.04258378595113754, 0.014903746545314789, 0.06357040256261826, -0.03128421679139137, -0.02403702214360237, -0.023351559415459633, 0.04016689956188202, 0.027958756312727928, 0.04308224096894264, -0.0016205966239795089, -0.013855524361133575, 0.01589914597570896, -0.0362217053771019, -0.03769487515091896, -0.020381351932883263, -0.04047210142016411, -0.0024531346280127764, -0.007141732610762119, -0.01911010965704918, -0.041475195437669754, -0.08742626011371613, 0.05632924288511276, -0.05899111181497574, -0.026035800576210022, 0.018417855724692345, -0.010010823607444763, -0.06317067891359329, 0.025044294074177742, -0.08276784420013428, 0.011560543440282345, -0.0026460776571184397, -0.007806391920894384, -0.028134150430560112, 0.06834069639444351, 0.07836205512285233, -0.057380009442567825, 0.12426766008138657, 0.06150436773896217, -0.06322979927062988, -0.04122336581349373, 0.003513891715556383, 0.030270924791693687, -0.004702103789895773, 0.009331101551651955, 0.020474428310990334, 0.01644052006304264, -0.013175335712730885, 0.02598259039223194, -0.0105711929500103, -0.013596446253359318, -0.04780258238315582, -0.3230845034122467, -0.0425313375890255, -0.0025697106029838324, -0.030761683359742165, 0.05384565517306328, -0.03908126801252365, 0.03948015719652176, -0.012496957555413246, -0.019908998161554337, 0.015861688181757927, 0.05110916495323181, -0.002942025428637862, 0.011183841153979301, -0.055154621601104736, 0.026132935658097267, 0.01064284984022379, -0.05448645353317261, -0.02665301226079464, -0.03282429277896881, 0.005804203916341066, -0.01620662212371826, 0.02227190136909485, 0.017844760790467262, -0.07879876345396042, -0.01980525813996792, -0.04616771265864372, 0.07702180743217468, 0.03719538077712059, 0.06439802050590515, -0.003542555496096611, 0.016638046130537987, -0.002970338799059391, 0.01301293633878231, -0.11548269540071487, 0.026478296145796776, -0.03510650619864464, 0.00503640528768301, -0.05513925477862358, 0.02073826640844345, -0.038188863545656204, -0.03585822507739067, 0.02503577433526516, -0.05043894797563553, -0.029413724318146706, -0.11808253824710846, 0.01728646829724312, -0.013046142645180225, 0.001682561938650906, -0.04163479804992676, 0.07405265420675278, 0.042344655841588974, 0.0014449367299675941, -0.009023399092257023, 0.0014693248085677624, -0.03330857306718826, -0.0032474033068865538, -0.11169393360614777, 0.00502421148121357, -0.0020886242855340242, 0.02842218428850174, 0.0074640181846916676, 0.07229459285736084, 0.04139469563961029, -0.06351757049560547, -0.024009259417653084, -0.00750696612522006, 0.008610133081674576, 0.00140687869861722, 0.051703911274671555, 0.01138312928378582, -0.02855745144188404, 0.07976844161748886, -0.0022345460020005703, -0.006510086357593536, 0.03308898210525513, 0.03287306800484657, -0.04814252257347107, 0.045478757470846176, -0.019015155732631683, -0.013970190659165382, 0.008243782445788383, -0.04382610693573952, 0.020751699805259705, -0.017422793433070183, -0.01875910721719265, -0.002997762057930231, -0.01763404719531536, -0.053649403154850006, 0.055619530379772186, 0.016937967389822006, -0.025964459404349327, 0.047889288514852524, -0.03623327612876892, -0.03607507422566414, 0.0710129588842392, 0.02209419012069702, -0.2318965196609497, -0.012026299722492695, 0.04244314134120941, 0.06802745163440704, 0.008272681385278702, 0.0678085908293724, 0.026889117434620857, -0.001183065352961421, -0.027013683691620827, 0.000359834055416286, 0.041672296822071075, 0.013324504718184471, 0.0012737060897052288, 0.03166628256440163, 0.02160191535949707, -0.04941220581531525, 0.013083736412227154, -0.014149053953588009, 0.01518070138990879, 0.02124735340476036, 0.033920202404260635, 0.011125518009066582, 0.15179434418678284, 0.0329737514257431, 0.023067278787493706, -0.003915772307664156, -0.0016309716738760471, -0.007541091181337833, 0.05028776824474335, -0.046245135366916656, -0.0029713716357946396, 0.02190474607050419, 0.00937801692634821, 0.0029775856528431177, 0.013936192728579044, -0.0703306496143341, -0.05679481849074364, 0.0008363893139176071, 0.042457688599824905, -0.023761456832289696, 0.035972654819488525, -0.0021706274710595608, -0.013691200874745846, 0.04103117436170578, 0.049977224320173264, 0.01668575219810009, 0.0356099009513855, -0.040784914046525955, -0.06666985154151917, -0.009861446917057037, 0.0006610078271478415, -0.005711343605071306, 0.04043564200401306, 0.0043749273754656315, 0.021874019876122475, 0.06783617287874222, 0.017053261399269104, -0.02682410180568695, 0.005134183447808027, -0.03578412905335426, -0.04729057103395462, 0.034636516124010086, 0.12112993746995926, 0.03870328143239021, 0.014302161522209644 ]
[ -0.022117814049124718, 0.02187103033065796, 0.005408262833952904, 0.00792046170681715, -0.012680829502642155, -0.011922352015972137, -0.0045104362070560455, -0.011232061311602592, 0.012525403872132301, -0.00980865303426981, -0.008251246064901352, 0.010300561785697937, 0.024999422952532768, -0.007857722230255604, 0.011812889017164707, 0.002173483371734619, -0.003400641493499279, -0.005327304825186729, 0.01406069751828909, 0.01849091611802578, -0.010606188327074051, 0.023560797795653343, -0.002269783988595009, 0.00593170989304781, -0.03226673603057861, 0.022765859961509705, -0.011871266178786755, -0.011877737939357758, 0.03801610693335533, -0.1439746767282486, -0.033962950110435486, -0.02361435629427433, -0.005517875775694847, 0.0012475245166569948, -0.03653435781598091, -0.0007158790831454098, -0.005735392216593027, 0.030341848731040955, 0.005973275750875473, -0.004755411762744188, 0.0005927429883740842, -0.010773002170026302, 0.007978635840117931, 0.021512271836400032, 0.02864142507314682, -0.007840858772397041, -0.00039582879981026053, -0.030765840783715248, -0.02118288353085518, -0.034465305507183075, -0.04001609981060028, -0.020499812439084053, -0.019783170893788338, 0.017671290785074234, -0.03354297950863838, 0.007288044784218073, 0.0376373790204525, 0.014583298936486244, -0.007722878362983465, 0.0005854241899214685, -0.013790509663522243, -0.020350249484181404, -0.040431566536426544, -0.029494304209947586, 0.0032903430983424187, -0.01223495602607727, -0.011333853006362915, 0.024045336991548538, -0.03221195191144943, 0.02738296426832676, -0.010281029157340527, 0.005395434331148863, -0.027072930708527565, -0.027532923966646194, 0.04597334936261177, -0.0004065049288328737, -0.02530476078391075, -0.017301013693213463, 0.01631472073495388, 0.007392526604235172, -0.014553467743098736, 0.0316038616001606, 0.028307639062404633, -0.013420302420854568, 0.016488876193761826, -0.035647548735141754, 0.030909596011042595, -0.014778735116124153, 0.023252319544553757, -0.01846942864358425, -0.007088597398251295, 0.015565351583063602, -0.03039059042930603, 0.03327203541994095, -0.09441865980625153, -0.007069057319313288, -0.031655021011829376, -0.00800965167582035, 0.010890773497521877, 0.876645028591156, 0.0036232364363968372, 0.017459388822317123, 0.01979306899011135, 0.005112184211611748, -0.0027790602762252092, -0.0004730130604002625, 0.0035304520279169083, 0.007954944856464863, 0.029941674321889877, -0.023728089407086372, 0.00581575371325016, 0.01984761469066143, 0.007922297343611717, 0.019510574638843536, 0.05282914265990257, 0.0324670746922493, 0.01862795650959015, 0.020891470834612846, -0.01949009671807289, 0.024354469031095505, 0.021633008494973183, 0.003038567490875721, -0.0062773642130196095, 0.020079463720321655, 0.007286361418664455, -0.1740851104259491, -0.011584565974771976, -8.162554160925253e-33, 0.045820385217666626, 0.011208785697817802, 0.03746400773525238, -0.014195306226611137, -0.026075251400470734, -0.005626626778393984, 0.01192118227481842, 0.023193391039967537, -0.014121108688414097, -0.024790752679109573, 0.02007097192108631, -0.009948372840881348, 0.014459704980254173, -0.002890425268560648, 0.03732943534851074, -0.017244810238480568, -0.0043252273462712765, 0.015323850326240063, 0.002465688856318593, 0.019341884180903435, 0.026112712919712067, 0.025746705010533333, -0.01458162721246481, -0.01433271262794733, 0.0032378840260207653, 0.018901320174336433, 0.017443375661969185, 0.043594103306531906, -0.018691085278987885, -0.050947897136211395, 0.009848923422396183, 0.03503450006246567, -0.03542542830109596, -0.014307539910078049, 0.007644437253475189, -0.02660592459142208, -0.01323782093822956, 0.02267879992723465, 0.01879100501537323, -0.04764367267489433, -0.02541050687432289, 0.011684197932481766, -0.02010059542953968, 0.016530383378267288, -0.01883549615740776, 0.007638298906385899, 0.00772054074332118, -0.005813624244183302, 0.022282829508185387, -0.007432108744978905, -0.020902052521705627, 0.0031542761716991663, -0.0018389365868642926, 0.016537096351385117, -0.017744777724146843, -0.0060709635727107525, -0.025844978168606758, 0.016601301729679108, 0.0003604761732276529, 0.0009476765408180654, 0.023491021245718002, 0.008021536283195019, -0.016863619908690453, 0.020649706944823265, -0.016263779252767563, -0.013443976640701294, -0.0002705046208575368, -0.009007350541651249, 0.037293460220098495, -0.018409140408039093, -0.05037112906575203, 0.01923261769115925, -0.0254464503377676, 0.001880531432107091, 0.0025402139872312546, -0.00957518257200718, -0.008761934004724026, 0.009989389218389988, -0.003297890070825815, 0.043333232402801514, 0.0024734993930906057, 0.009728040546178818, -0.000026768473617266864, -0.03972502797842026, 0.007359621115028858, -0.012464913539588451, 0.013324007391929626, -0.013555703684687614, 0.011858316138386726, 0.00007501133222831413, 0.02546047791838646, 0.025241153314709663, -0.007238318212330341, 0.006595101207494736, -0.020381083711981773, 8.50973274402077e-33, 0.015682868659496307, -0.01792294718325138, -0.032413382083177567, 0.00033382908441126347, 0.031039297580718994, -0.00663789315149188, 0.010422918945550919, 0.023668231442570686, -0.04819752648472786, 0.03825106844305992, -0.0011492520570755005, 0.004204730037599802, -0.00800512544810772, 0.029774850234389305, -0.0001377888402203098, -0.026766154915094376, -0.007071175612509251, -0.01623179018497467, 0.01692821830511093, 0.0005065827863290906, 0.017154669389128685, 0.018559370189905167, 0.009313760325312614, -0.005852226633578539, -0.003570113331079483, 0.059829238802194595, 0.00542978011071682, 0.027366910129785538, 0.007599978242069483, -0.008109374903142452, 0.006764600519090891, 0.005080843344330788, 0.012662545777857304, -0.02718752808868885, -0.021527187898755074, 0.023762071505188942, -0.011540298350155354, -0.01954733394086361, -0.003511782269924879, 0.0063240923918783665, -0.00026083391276188195, 0.0016654088394716382, 0.02861010655760765, 0.01233625691384077, 0.0071231345646083355, -0.013672200962901115, 0.009877163916826248, -0.0031377847772091627, -0.017345203086733818, 0.008184120059013367, -0.03249577060341835, -0.01845935918390751, 0.01925470121204853, 0.010678221471607685, 0.017416859045624733, -0.02070300653576851, -0.024046948179602623, -0.01821184530854225, -0.038243744522333145, 0.033028896898031235, -0.011018738150596619, 0.028135085478425026, -0.04783301427960396, 0.0027142204344272614, -0.02679658867418766, 0.005782962776720524, -0.005141495261341333, 0.018068892881274223, -0.0018980865133926272, 0.03558395057916641, -0.02938162162899971, 0.019631432369351387, 0.018222184851765633, 0.018101966008543968, 0.02783951908349991, -0.01947639137506485, -0.016550622880458832, 0.02722872979938984, -0.033080004155635834, 0.007149992976337671, 0.013556799851357937, -0.010109974071383476, 0.014587018638849258, 0.0035201995633542538, -0.0046761431731283665, 0.028180016204714775, 0.007566510234028101, 0.028265448287129402, -0.009613487869501114, -0.02421538531780243, 0.01410564873367548, -0.015854623168706894, 0.017878342419862747, 0.005893337540328503, 0.00003223832754883915, -1.396118509688904e-8, -0.0033099462743848562, 0.003959782421588898, -0.01546903420239687, 0.003726194379851222, 0.010420582257211208, 0.005821971222758293, -0.008474919945001602, -0.004543526563793421, -0.05288326367735863, 0.038129691034555435, 0.045166317373514175, -0.011791727505624294, -0.0033231694251298904, -0.026098698377609253, 0.012929723598062992, -0.031942885369062424, -0.010343529284000397, -0.0028741753194481134, 0.03868762403726578, -0.003946496639400721, 0.031554415822029114, 0.049009520560503006, -0.02377411350607872, 0.015879575163125992, 0.021720832213759422, -0.023690830916166306, 0.002539135282859206, -0.07123057544231415, -0.03591354936361313, -0.005938856862485409, 0.010993664152920246, -0.03437545895576477, -0.0229429230093956, 0.01525900885462761, -0.014859426766633987, -0.03649870306253433, 0.0010825362987816334, -0.021738557144999504, 0.006622545886784792, 0.006408886052668095, -0.015588322654366493, 0.004276362247765064, -0.00549838924780488, -0.028825676068663597, 0.0020261912140995264, 0.01988826133310795, -0.028508391231298447, -0.028452301397919655, 0.022887246683239937, -0.0201883465051651, 0.0034134709276258945, -0.0028873293194919825, 0.024200402200222015, 0.02042032964527607, 0.027862973511219025, 0.005061037838459015, 0.0010920596541836858, -0.01322208996862173, -0.07168363034725189, -0.0012844990706071258, 0.018321732059121132, 0.020448753610253334, -0.01644747331738472, -0.03530362248420715 ]
feedback-positive-reinforcementchange-yourself-first
https://markhneedham.com/blog/2008/02/12/feedback-positive-reinforcementchange-yourself-first
false
2008-02-14 01:27:58
Pair Programming: The Non Driving Pair
[ "coding", "pairing", "software-development", "agile" ]
[ "Pair Programming" ]
One of the intriguing aspects of pair programming for me is that of the non driving person in the pair -- what are they supposed to do?! Obviously there are fairly well known strategies for more interactive pairing, such as http://c2.com/cgi/wiki?PairProgrammingPingPongPattern[Ping Pong] and Ball and Board (which is where one person controls the mouse and the other the keyboard), but neither of these strategies suggest what to do when you are not driving Obviously it is very easy to be a bad non driving part of the pair, by http://blog.jayfields.com/2007/09/distracted-pair.html[getting distracted] by what's going on around you and a quick fix that I've heard to solve this is that when you're bored, ask for the keyboard back. This solves the immediate problem but still doesn't make you any better at contributing when you're not at the keyboard. One idea that I've been playing with recently is keeping a list of the next task that needs to be done after the current one is done -- effectively just tracking where we are on the story. We use tiny tasks for most stories as laid out by http://www.thekua.com/atwork/2007/07/19/onboarding-strategy-tiny-tasks[Patrick Kua]. This does work although you still don't feel that involved, and it can end up seeming like you're dictating to the other person what to do. This is definitely an approach to be applied with some tact. Some of the more skilled non drivers I've worked with have the ability to see the bit of code being worked on as part of the whole and are able to see when we have gone too far down the wrong path and should actually be making changes elsewhere. I find this a lot harder to consciously improve, and I've been told it's a skill that comes with experience. I'm sure there are other roles of non driving that can be applied, mentoring being one, although that's for another post! Thoughts?
null
null
[ 0.005636133719235659, 0.003589250613003969, 0.02155047282576561, 0.02754032239317894, 0.08060522377490997, 0.024976838380098343, 0.027857301756739616, 0.04591601341962814, 0.018991965800523758, -0.03447587788105011, -0.025589004158973694, 0.02749187871813774, -0.05748981609940529, -0.013910537585616112, -0.041010014712810516, 0.08129718899726868, 0.07655078917741776, -0.005905574653297663, -0.011683443561196327, -0.0035204729065299034, 0.052276723086833954, 0.06452200561761856, 0.03936619684100151, 0.05007493123412132, 0.03348894417285919, 0.003770630806684494, -0.009184625931084156, 0.0028141497168689966, -0.0500619150698185, -0.01592223159968853, 0.0334947407245636, 0.006402608938515186, 0.011478567495942116, -0.021206624805927277, 0.016931122168898582, -0.0024148898664861917, -0.008220472373068333, 0.031623631715774536, 0.023442741483449936, 0.029440568760037422, -0.0743338093161583, 0.04228987917304039, -0.02368190325796604, 0.0009148675599135458, -0.02505865879356861, 0.010885477997362614, -0.04782475158572197, -0.007327076978981495, 0.016982214525341988, -0.0073807258158922195, -0.061371032148599625, 0.041952118277549744, 0.020246991887688637, 0.0270315520465374, 0.00422762893140316, 0.0394928976893425, 0.022761069238185883, -0.080697201192379, 0.025523275136947632, -0.041269246488809586, 0.01090684998780489, 0.019771169871091843, -0.00790625624358654, 0.03060763329267502, 0.013435792177915573, -0.038342613726854324, 0.021865753456950188, 0.04253477603197098, -0.026970598846673965, 0.018954239785671234, -0.01536578219383955, 0.019938530400395393, -0.003262357087805867, -0.033467866480350494, 0.016502143815159798, -0.046676505357027054, 0.014896324835717678, 0.04603280872106552, 0.04758390784263611, 0.03129904717206955, -0.0029241954907774925, 0.022544538602232933, 0.0073005435988307, 0.04624941572546959, -0.02511819638311863, -0.03491371124982834, 0.007120560389012098, -0.03249743953347206, -0.06376936286687851, 0.0401451475918293, -0.011803989298641682, -0.06568793952465057, 0.011205790564417839, 0.030206434428691864, -0.020549127832055092, 0.013388616032898426, 0.045089393854141235, 0.004646549932658672, -0.015433847904205322, -0.008068304508924484, -0.000017303553249803372, -0.023163465782999992, -0.01742876134812832, 0.03409416601061821, -0.08317069709300995, 0.0011593453818932176, 0.0002827055868692696, -0.0024093303363770247, -0.008668302558362484, 0.01652192510664463, -0.037776295095682144, 0.006022971123456955, -0.0014753921423107386, 0.005598341580480337, -0.08064451813697815, 0.06619037687778473, -0.00951057393103838, -0.02663968876004219, -0.011036554351449013, 0.010284772142767906, 0.04395631328225136, 0.01523546501994133, -0.009764144197106361, 0.06872612237930298, 0.007722985930740833, 0.02476298250257969, -0.01940525323152542, 0.04725745692849159, 0.00827028602361679, -0.06632596999406815, 0.014551233500242233, 0.046717576682567596, -0.030567152425646782, -0.0027845476288348436, 0.003284510225057602, -0.02053295262157917, 0.014194375835359097, 0.020682401955127716, 0.010091825388371944, 0.07044140249490738, -0.021148473024368286, -0.0188575591892004, 0.033820174634456635, 0.015937311574816704, 0.02683962881565094, -0.017908109351992607, -0.014984682202339172, -0.004016429651528597, -0.051562100648880005, 0.0037327029276639223, 0.012469310313463211, 0.018893636763095856, 0.01524767279624939, -0.059871915727853775, 0.01310216635465622, 0.07873790711164474, 0.036217425018548965, 0.006968189496546984, -0.03086530603468418, 0.035388004034757614, 0.03810333088040352, 0.019905520603060722, -0.013371031731367111, 0.016728591173887253, 0.024372126907110214, -0.015326016582548618, 0.0026545042637735605, 0.04503745958209038, 0.0002735234738793224, 0.0288972370326519, -0.0635739266872406, -0.02866440825164318, 0.0401611365377903, -0.06890108436346054, -0.05029125511646271, 0.03473546728491783, 0.07014207541942596, 0.024169495329260826, 0.02680359221994877, 0.01626274362206459, -0.08009058237075806, 0.021468117833137512, 0.01091225165873766, 0.03200986608862877, 0.007452148478478193, -0.019230930134654045, 0.04289969056844711, 0.03147246688604355, -0.04046202078461647, 0.03357692435383797, -0.05373251065611839, -0.08365480601787567, -0.00223965453915298, -0.016017122194170952, 0.053678885102272034, -0.04569871351122856, 0.018325237557291985, 0.06016223132610321, 0.018094008788466454, 0.053461190313100815, 0.013872805051505566, -0.010604522190988064, 0.011662522330880165, -0.03964363783597946, -0.054762981832027435, 0.07568210363388062, 0.024089209735393524, -0.010244659148156643, -0.05421275645494461, 0.010861828923225403, -0.011437167413532734, -0.019068662077188492, 0.02932565286755562, -0.013055659830570221, 0.05198569595813751, 0.005458066705614328, 0.04560612887144089, -0.014833302237093449, 0.03546823933720589, -0.037549156695604324, -0.027779201045632362, 0.016230162233114243, -0.011513590812683105, 0.025874564424157143, 0.007106178905814886, 0.11642366647720337, 0.06243003159761429, -0.05265175551176071, -0.047340407967567444, 0.0210010576993227, 0.01496975589543581, -0.03487319126725197, -0.00426306389272213, -0.007400271482765675, -0.01686292514204979, 0.008535478264093399, -0.055411264300346375, -0.054667599499225616, 0.008349009789526463, -0.034262869507074356, -0.02330375276505947, 0.07663104683160782, -0.03266138955950737, 0.07424905896186829, -0.03753757104277611, -0.01165634673088789, -0.000841661065351218, -0.012797374278306961, -0.02717766724526882, 0.005046449601650238, 0.002709660679101944, -0.011170071549713612, 0.04036395251750946, -0.020517701283097267, -0.015704911202192307, -0.035552624613046646, -0.02655225619673729, -0.0017492561601102352, 0.06327815353870392, 0.04374155029654503, -0.0060958354733884335, 0.08253379911184311, -0.010567526333034039, 0.025703970342874527, -0.020991122350096703, -0.05436285585165024, -0.02290809527039528, -0.011028916575014591, -0.0007141536916606128, 0.03712542727589607, 0.004296914674341679, 0.007854056544601917, 0.016590485349297523, -0.0015937548596411943, -0.00020373401639517397, 0.0002304980589542538, 0.004530799575150013, 0.016976818442344666, 0.0039978777058422565, -0.029911592602729797, -0.023807816207408905, 0.047166142612695694, -0.040419112890958786, 0.0004977285279892385, 0.007131058722734451, -0.06290142983198166, 0.0281987227499485, -0.0625351220369339, -0.07552770525217056, -0.004152670502662659, 0.02807604894042015, 0.038205333054065704, 0.01059594377875328, 0.01261177472770214, 0.0578056201338768, 0.017650041729211807, 0.018479304388165474, 0.016524385660886765, -0.01075826771557331, 0.047975409775972366, 0.02232811413705349, 0.02143624611198902, 0.03476220741868019, -0.019330622628331184, -0.007369819562882185, -0.050303008407354355, 0.053567033261060715, -0.03457312285900116, -0.30680420994758606, 0.038232892751693726, -0.002372095128521323, -0.04520709440112114, 0.014830979518592358, -0.013167370110750198, 0.015190250240266323, -0.04491430148482323, -0.032253943383693695, 0.03770344704389572, -0.04123470559716225, -0.026961207389831543, -0.018453937023878098, 0.030303575098514557, 0.01236670557409525, 0.016370758414268494, 0.01876053586602211, -0.06931069493293762, 0.0027999733574688435, 0.030589072033762932, -0.010672593489289284, -0.07422006875276566, 0.001081006834283471, 0.05136387422680855, 0.04835233837366104, 0.07305224984884262, -0.06473042070865631, 0.007302740588784218, -0.05598748102784157, 0.010678412392735481, 0.004131065681576729, 0.01107932347804308, -0.00017861374362837523, -0.027034757658839226, -0.008726433850824833, -0.019751274958252907, 0.05170763283967972, -0.0033307778649032116, 0.012549514882266521, 0.01771303080022335, -0.03858494386076927, -0.03198111429810524, 0.009335331618785858, 0.024434354156255722, 0.07030857354402542, -0.011652295477688313, -0.08384813368320465, 0.015360943041741848, -0.013820755295455456, 0.06158269941806793, -0.04416472464799881, -0.035998519510030746, -0.015037603676319122, 0.04462089389562607, 0.013712313957512379, -0.030321910977363586, -0.007978679612278938, -0.010244528762996197, -0.021477974951267242, -0.03087971732020378, -0.008140535093843937, -0.014702870510518551, -0.03984338417649269, -0.051173992455005646, 0.028607554733753204, -0.05220552533864975, -0.05806364864110947, -0.009267800487577915, 0.08447834849357605, 0.007015790790319443, -0.05075107887387276, -0.006580081768333912, -0.00647553289309144, -0.10652628540992737, -0.006178063340485096, 0.02842731960117817, -0.04447343572974205, -0.0020532566122710705, 0.009379931725561619, 0.061128340661525726, -0.03374886140227318, -0.06726166605949402, 0.011245560832321644, -0.0034346748143434525, 0.020649535581469536, -0.020932363346219063, 0.03982158750295639, 0.012466746382415295, -0.0077409809455275536, 0.006945150904357433, 0.07717867195606232, -0.005000116303563118, -0.02848382294178009, -0.025759631767868996, 0.024204453453421593, 0.013095864094793797, 0.03154922276735306, -0.017399383708834648, -0.011322207748889923, 0.010293413884937763, -0.011409507133066654, -0.056721244007349014, 0.02547271177172661, -0.002987904706969857, 0.020953981205821037, -0.012027773074805737, -0.042785678058862686, 0.006196020171046257, 0.03848148509860039, 0.03123117983341217, -0.015450939536094666, -0.018001113086938858, 0.018871648237109184, -0.038652289658784866, -0.018427887931466103, -0.026452042162418365, 0.01277310959994793, 0.03955020383000374, -0.013502618297934532, -0.01744133234024048, -0.0715959370136261, 0.00374824577011168, 0.000698258460033685, 0.012379747815430164, -0.07111480832099915, 0.005636492278426886, -0.02220890484750271, -0.01726260408759117, 0.020306283608078957, 0.023716647177934647, -0.010096566751599312, 0.03574369102716446, 0.01747843064367771, -0.030869152396917343, -0.0052574072033166885, -0.03616216033697128, -0.05555002763867378, -0.013994943350553513, -0.014647694304585457, -0.00762539217248559, 0.01500545535236597, 0.011252710595726967, -0.01741981692612171, 0.01532423123717308, 0.022883344441652298, 0.00838375836610794, 0.015384445898234844, -0.019909629598259926, 0.014908465556800365, 0.011266672983765602, 0.021707681939005852, -0.0598633773624897, 0.0004139901138842106, -0.03263073414564133, -0.01704997569322586, -0.019196968525648117, 0.03970833867788315, -0.007101602386683226, -0.024877341464161873, -0.008776266127824783, 0.011595639400184155, -0.05338779836893082, -0.02143990993499756, -0.021274246275424957, 0.03905946761369705, 0.060230452567338943, 0.002001497196033597, -0.010224537923932076, -0.019690051674842834, 0.008634953759610653, 0.017338626086711884, 0.009437820874154568, -0.06591539829969406, 0.0045260353945195675, 0.008636672049760818, -0.006580829154700041, -0.006797356531023979, -0.0187660101801157, 0.05032043531537056, 0.005184374283999205, -0.0015303948894143105, -0.010801300406455994, 0.008977875113487244, 0.009782261215150356, 0.05444985255599022, -0.0009473320678807795, 0.012767219915986061, -0.016971319913864136, 0.0032893293537199497, -0.019864466041326523, -0.037002287805080414, -0.01476280577480793, -0.001241154852323234, 0.021445797756314278, -0.037152331322431564, -0.06402100622653961, 0.043207138776779175, 0.037353627383708954, -0.021938374266028404, 0.03245929256081581, -0.022423362359404564, -0.00429175142198801, -0.01128329522907734, 0.04293666034936905, 0.08487914502620697, -0.06924855709075928, 0.020433150231838226, -0.005416079889982939, -0.024505533277988434, 0.01145611796528101, -0.011475743725895882, -0.024901652708649635, -0.01258479431271553, -0.039256032556295395, 0.0047214156948029995, -0.07503021508455276, -0.022215159609913826, -0.025826087221503258, 0.00752949109300971, 0.02468026988208294, -0.020014284178614616, -0.0032877735793590546, -0.03772658854722977, -0.029401911422610283, -0.03260214254260063, 0.009316133335232735, -0.046471577137708664, -0.0083415936678648, 0.03275007754564285, -0.027604656293988228, 0.0002414944610791281, -0.029432684183120728, 0.02786491997539997, 0.025664623826742172, -0.043867506086826324, -0.02679489366710186, -0.05383423715829849, 0.003961493261158466, 0.009240325540304184, 0.04632830247282982, 0.017379160970449448, -0.028875082731246948, -0.053767357021570206, -0.01679476909339428, -0.03467554599046707, 0.0003646621771622449, -0.013899949379265308, -0.01210347842425108, 0.025167742744088173, 0.05377546325325966, 0.01974327117204666, 0.01797257363796234, -0.024587348103523254, -0.007595596369355917, 0.01860549859702587, -0.06094986945390701, -0.04210834577679634, 0.00016813793627079576, -0.038954198360443115, -0.0028108435217291117, -0.010549402795732021, 0.033645182847976685, -0.048518870025873184, 0.026027265936136246, 0.0012338220840319991, 0.015858223661780357, 0.017990564927458763, -0.015461859293282032, 0.03214337304234505, -0.05120044946670532, 0.011259297840297222, -0.08947200328111649, 0.008038010448217392, 0.01978383958339691, 0.007452005986124277, -0.03143791854381561, 0.02980523742735386, -0.025788629427552223, 0.03768572583794594, -0.08425498008728027, -0.011679437011480331, 0.0502580888569355, -0.008555720560252666, -0.009367281571030617, 0.00883307121694088, -0.07597105205059052, 0.03647005930542946, -0.004254677798599005, -0.030689453706145287, -0.03625411167740822, 0.0008400115766562521, 0.0499044694006443, 0.02847786620259285, 0.030422713607549667, -0.03132489696145058, -0.027458375319838524, 0.08219665288925171, -0.008452794514596462, -0.0029788222163915634, 0.03926153853535652, -0.014425835572183132, 0.042874835431575775, 0.033116184175014496, 0.014438113197684288, -0.00824738945811987, 0.002551407553255558, -0.003160913707688451, -0.0728086605668068, 0.02064133994281292, 0.005097254645079374, -0.020632868632674217, -0.022041233256459236, 0.05680427327752113, 0.03521730378270149, -0.027510426938533783, -0.038707293570041656, 0.015436260029673576, -0.0578678734600544, 0.0009759125532582402, -0.007923532277345657, -0.005335858557373285, -0.04529670253396034, 0.04165860638022423, -0.0017484562704339623, 0.006442130543291569, 0.06349099427461624, 0.03626571223139763, -0.029708459973335266, -0.012906855903565884, 0.10724806040525436, 0.0725419893860817, 0.06316868215799332, 0.041037220507860184, 0.08106285333633423, -0.02099798433482647, -0.03924563527107239, 0.03501993417739868, 0.006001809146255255, -0.027631402015686035, -0.03128810599446297, 0.0157680194824934, 0.06382202357053757, -0.011468802578747272, 0.06374254077672958, -0.009778929874300957, -0.025798099115490913, 0.03117402456700802, 0.026424940675497055, -0.010201044380664825, 0.05185892432928085, 0.028635617345571518, 0.029626518487930298, -0.03324428200721741, -0.03633224219083786, 0.03407983109354973, -0.0335649773478508, -0.009623531252145767, 0.0025279978290200233, -0.01884516514837742, 0.02978047914803028, 0.015426595695316792, 0.016990020871162415, 0.09888171404600143, -0.03459912911057472, 0.03225749731063843, -0.014908748678863049, 0.038474179804325104, -0.007987749762833118, 0.02758205495774746, -0.01190196443349123, -0.013367833569645882, -0.0016269750194624066, -0.02905035950243473, -0.022295434027910233, -0.032077856361866, -0.011373380199074745, 0.056843772530555725, -0.04424057528376579, 0.009930409491062164, 0.02459697611629963, 0.010870501399040222, -0.029485447332262993, -0.07377715408802032, -0.043951086699962616, -0.010954093188047409, -0.04557327926158905, -0.026708398014307022, 0.025443023070693016, 0.0024437778629362583, -0.040902573615312576, -0.0005895723588764668, -0.03281581774353981, -0.02807972952723503, 0.009991340339183807, -0.05388879030942917, -0.0501105897128582, 0.020940953865647316, 0.008723139762878418, 0.028353538364171982, 0.026410549879074097, 0.05842543765902519, 0.010538165457546711, -0.008296697400510311, -0.04235389828681946, -0.00021394831128418446, 0.038895174860954285, 0.0043771532364189625, -0.008220786228775978, -0.07576756179332733, 0.0027940496802330017, 0.020437482744455338, 0.009459531866014004, -0.06210808828473091, 0.01827162317931652, 0.0233394056558609, 0.026736708357930183, 0.062454987317323685, -0.016527293249964714, 0.010174225084483624, -0.05303224176168442, 0.007172005251049995, -0.0009712849860079587, 0.0120951933786273, 0.03798593580722809, -0.014183740131556988, 0.08734497427940369, 0.010596094653010368, -0.01333562657237053, -0.03365512192249298, -0.01930590532720089, 0.012234984897077084, -0.009427592158317566, -0.0184574406594038, -0.045353055000305176, -0.014122940599918365, -0.08912711590528488, -0.02039516344666481, 0.01618460938334465, -0.010093331336975098, -0.027333779260516167, 0.036357708275318146, 0.009041235782206059, -0.006840948946774006, 0.04026442766189575, -0.05182795226573944, 0.01702604815363884, -0.017341768369078636, 0.00027887968462891877, 0.009252830408513546, -0.01654556766152382, -0.0456584207713604, -0.02026992104947567, 0.010086863301694393, -0.05006403475999832, 0.018104493618011475, -0.006607108749449253, 0.010768976993858814, 0.026267511770129204, 0.004809660371392965, -0.0027100136503577232 ]
[ -0.08994075655937195, -0.0033898476976901293, -0.013637395575642586, -0.029700111597776413, -0.026854660362005234, -0.012917022220790386, 0.026795873418450356, -0.0014195500407367945, -0.0022788108326494694, -0.05166899785399437, -0.028131064027547836, -0.014186299405992031, 0.017291255295276642, -0.012533853761851788, 0.0708608627319336, 0.003910418599843979, -0.001570450491271913, -0.07103950530290604, 0.013958251103758812, 0.03404564410448074, -0.029498877003788948, -0.05658475682139397, -0.062293536961078644, -0.026802413165569305, -0.013787047937512398, 0.036681994795799255, 0.03148922324180603, -0.03201011195778847, 0.011839674785733223, -0.1760030835866928, -0.0072859772481024265, 0.03485747426748276, 0.04720253497362137, 0.009113384410738945, -0.056534167379140854, 0.04344869777560234, 0.004652728792279959, 0.0354536771774292, 0.010268733836710453, -0.020773908123373985, 0.02156679704785347, -0.0025793907698243856, -0.037832051515579224, -0.029553348198533058, 0.039565589278936386, 0.019398191943764687, -0.00014114886289462447, -0.05636925622820854, 0.01217296626418829, -0.0014972590142861009, -0.05514683574438095, -0.02312074415385723, -0.011553451418876648, -0.022536080330610275, 0.0065448530949652195, 0.03705297410488129, 0.038469500839710236, 0.026494616642594337, -0.0030813782941550016, 0.03922378644347191, -0.0003225482359994203, -0.010955682955682278, -0.11176473647356033, 0.08168843388557434, 0.049335867166519165, 0.045645080506801605, -0.02300247736275196, -0.024562617763876915, -0.0045918128453195095, 0.09352463483810425, 0.017600681632757187, -0.023707855492830276, -0.035532910376787186, 0.03529710695147514, 0.02088041976094246, -0.023534022271633148, -0.02112308144569397, 0.02793031930923462, 0.026753444224596024, -0.01541372574865818, -0.03809744492173195, -0.01839423179626465, -0.03149439021945, -0.00016639182285871357, -0.027893822640180588, 0.017664620652794838, -0.03531390428543091, 0.014158488251268864, -0.010224735364317894, 0.0020544719882309437, 0.03191573545336723, -0.0034894763957709074, 0.028466306626796722, -0.021139154210686684, -0.07631632685661316, -0.00964853074401617, 0.010388234630227089, -0.0036203854251652956, -0.07574385404586792, 0.4627681374549866, -0.03368343785405159, 0.007500242441892624, 0.09052670747041702, 0.01744730956852436, -0.027711020782589912, -0.003466119756922126, 0.008798954077064991, -0.05628368258476257, 0.004311078228056431, -0.010484564118087292, 0.02317812293767929, 0.0028490209951996803, 0.05888499692082405, -0.006161061581224203, 0.015133527107536793, 0.07552467286586761, 0.04727565124630928, 0.05896730348467827, 0.04077624902129173, -0.00648128055036068, -0.02367275580763817, -0.010439452715218067, 0.006500062998384237, 0.002660351572558284, -0.00799588393419981, -0.07992592453956604, 0.019688371568918228, 0.030885422602295876, 0.02021484635770321, 0.006721393670886755, 0.06460674852132797, -0.06813900172710419, -0.04088155925273895, 0.020550571382045746, -0.017712676897644997, -0.017332155257463455, 0.030149485915899277, -0.01282106526196003, 0.0058229356072843075, 0.04681001976132393, 0.034267861396074295, -0.05483129620552063, 0.06146856024861336, -0.029159732162952423, -0.0007694620289839804, 0.10047413408756256, 0.011395221576094627, -0.05478285998106003, 0.011127550154924393, -0.0012509945081546903, -0.004651661962270737, 0.004152713809162378, -0.020919283851981163, -0.05625370144844055, 0.013167605735361576, 0.0032171395141631365, 0.1272743046283722, -0.030430307611823082, -0.07813025265932083, 0.03449555113911629, -0.021024910733103752, -0.03963318094611168, -0.06613855808973312, 0.013002855703234673, 0.09663946181535721, -0.11078925430774689, -0.010911572724580765, -0.009266946464776993, 0.001531578483991325, -0.06025472283363342, -0.006439243908971548, -0.004098142962902784, -0.022322770208120346, 0.007095489650964737, 0.06289203464984894, -0.010830187238752842, -0.060831502079963684, 0.020566565915942192, 0.026821281760931015, 0.015765082091093063, -0.010107617825269699, 0.0045298682525753975, -0.043589137494564056, -0.020398331806063652, -0.028220461681485176, -0.055823031812906265, -0.047151435166597366, -0.0015819675754755735, -0.007329895161092281, -0.003261274192482233, 0.00542823551222682, -0.06647829711437225, -0.07553647458553314, 0.09323734045028687, -0.040301889181137085, -0.03455772250890732, 0.023626478388905525, -0.04951057210564613, -0.048344798386096954, -0.019439738243818283, -0.0465874969959259, 0.008294946514070034, -0.01754697971045971, 0.02288467064499855, -0.04271505028009415, 0.04291071370244026, 0.027251869440078735, -0.04814590886235237, 0.09728597849607468, 0.05704159662127495, -0.012825213372707367, -0.05395151302218437, 0.013433418236672878, 0.03614373505115509, -0.003160052001476288, -0.021001314744353294, -0.015195313841104507, 0.028229696676135063, -0.003988408483564854, 0.0295175239443779, -0.015685170888900757, 0.025149693712592125, 0.02211114391684532, -0.3178156316280365, -0.022872578352689743, -0.02073303423821926, 0.01604597270488739, 0.007134603336453438, -0.05425713583827019, 0.014654001221060753, 0.0054730987176299095, -0.01931934431195259, 0.017261508852243423, 0.08479409664869308, -0.03919732943177223, 0.010912777855992317, -0.0566987581551075, 0.013489291071891785, 0.05874064192175865, -0.026111090555787086, -0.017135433852672577, -0.022000867873430252, 0.026239704340696335, 0.011855889111757278, 0.028490224853157997, -0.030746914446353912, -0.03762466832995415, 0.025546075776219368, -0.026958832517266273, 0.10696738213300705, 0.005381842143833637, 0.10435791313648224, -0.03935050219297409, 0.03303821384906769, 0.019778072834014893, 0.019722994416952133, -0.09659642726182938, 0.00862807221710682, -0.027976032346487045, 0.024811433628201485, -0.07354354113340378, 0.0232948437333107, -0.04023076966404915, -0.0853627473115921, 0.002272013807669282, -0.059732090681791306, -0.0405014306306839, -0.07854444533586502, 0.005974544212222099, -0.03449883684515953, -0.01591593027114868, -0.010474386624991894, 0.06613761186599731, 0.03320189565420151, 0.004514816217124462, 0.004710811655968428, -0.027470383793115616, -0.013871954753994942, -0.03635186702013016, -0.0832587406039238, 0.005328512750566006, -0.0075209192000329494, -0.008571230806410313, 0.009138314984738827, 0.07266417145729065, 0.039160508662462234, -0.08427785336971283, 0.005493381060659885, 0.03601044788956642, -0.014659728854894638, -0.007857505232095718, 0.048016779124736786, 0.021442128345370293, -0.028545066714286804, 0.08790774643421173, 0.013998674228787422, 0.007320290897041559, 0.01429294515401125, 0.02115435153245926, -0.0027555220294743776, 0.04025280475616455, 0.022267960011959076, -0.016964344307780266, 0.010755863972008228, -0.02292322739958763, 0.053556911647319794, -0.009496632032096386, 0.005436685401946306, -0.0018473612144589424, 0.015397941693663597, -0.050543420016765594, 0.05233446881175041, 0.007833489216864109, -0.006626536604017019, 0.01716342754662037, 0.0032005568500608206, -0.05561640486121178, 0.0991629809141159, -0.013854878954589367, -0.25309598445892334, 0.0013812786201015115, 0.06826286762952805, 0.06781992316246033, -0.028770508244633675, 0.034269556403160095, 0.02090444602072239, -0.02170555479824543, -0.03738626837730408, -0.002976584481075406, 0.009338609874248505, 0.026676027104258537, -0.012221102602779865, 0.026747506111860275, 0.04026851803064346, -0.02154727280139923, 0.03839884698390961, 0.0172761008143425, 0.005417459178715944, -0.018081318587064743, 0.017533600330352783, 0.014529703184962273, 0.14909149706363678, 0.012169073335826397, 0.048387277871370316, 0.022013027220964432, -0.002486743498593569, 0.0015540800523012877, 0.048414453864097595, -0.012621399946510792, -0.00830372329801321, 0.015081462450325489, 0.00789365079253912, -0.008130621165037155, 0.03600725904107094, -0.05556860193610191, -0.033958569169044495, 0.05381583794951439, 0.03563542664051056, 0.026156926527619362, 0.02765806019306183, 0.015036586672067642, 0.004552009049803019, -0.011765740811824799, 0.07643702626228333, 0.015964388847351074, 0.01773129589855671, -0.0037056405562907457, -0.055547695606946945, 0.008417011238634586, -0.023066921159625053, -0.03886434808373451, 0.00511620007455349, -0.006752535700798035, 0.017115412279963493, 0.05228430777788162, 0.0032658653799444437, -0.03966860473155975, 0.025430599227547646, 0.042389530688524246, -0.0011651921086013317, -0.003726041177287698, 0.09854081273078918, 0.029022445902228355, 0.02398771420121193 ]
[ 0.000223452560021542, 0.003995287232100964, 0.01187644712626934, 0.008806918747723103, -0.025734232738614082, 0.068437360227108, -0.0028594343457370996, 0.008543296717107296, 0.024895329028367996, -0.017949990928173065, -0.014892574399709702, 0.028242815285921097, -0.004679744131863117, -0.01707746647298336, -0.009992086328566074, -0.03799362853169441, 0.030488619580864906, -0.02465648204088211, 0.02813575230538845, 0.04980906471610069, -0.031201105564832687, 0.0035231327638030052, -0.02062937617301941, -0.01810297556221485, -0.03307884931564331, -0.014875402674078941, 0.009529788978397846, -0.037902891635894775, 0.0346844419836998, -0.13313287496566772, -0.061927780508995056, -0.005054279696196318, 0.004086160566657782, 0.002434805268421769, -0.03163702040910721, -0.04999414086341858, 0.028077175840735435, 0.029383160173892975, 0.00696877995505929, -0.07020153850317001, 0.005457945633679628, -0.056776754558086395, 0.015083719044923782, 0.00983277428895235, 0.014026136137545109, 0.0022029185201972723, 0.03152075782418251, -0.043635327368974686, -0.003621426410973072, -0.05004792660474777, -0.05501226708292961, 0.022500064224004745, -0.007915518246591091, -0.02897883579134941, 0.00864915456622839, 0.0025112431030720472, -0.019444826990365982, 0.02591288648545742, 0.01549581903964281, 0.012084885500371456, -0.023009445518255234, -0.0031186568085104227, -0.054122310131788254, -0.02462194859981537, -0.017191395163536072, -0.00903734564781189, 0.005711691919714212, -0.019357433542609215, -0.005718602333217859, 0.0330786257982254, 0.006934235338121653, 0.03284047544002533, -0.015266463160514832, -0.04485723748803139, 0.003860463621094823, -0.0025666463188827038, -0.021010776981711388, -0.029884397983551025, 0.00000399403370465734, -0.07327556610107422, -0.05790703371167183, -0.0006557839806191623, 0.012469563633203506, 0.037085987627506256, 0.058493949472904205, -0.05119931325316429, -0.024717941880226135, 0.027914058417081833, 0.004568289499729872, -0.006841609720140696, -0.06732909381389618, 0.029498644173145294, 0.0057379379868507385, 0.002857076469808817, -0.08812841027975082, 0.019003570079803467, 0.009349131025373936, 0.0149600924924016, 0.013894007541239262, 0.7901491522789001, -0.004935440607368946, 0.057030949741601944, 0.025433478876948357, -0.00008172137313522398, -0.008522627875208855, 0.06701647490262985, 0.04670396447181702, -0.03685219585895538, 0.030333848670125008, 0.0004959096550010145, 0.04755331575870514, -0.019196264445781708, -0.0032996057998389006, 0.01958674192428589, 0.02468382939696312, 0.014068476855754852, -0.0030117726419121027, 0.036605335772037506, 0.03488073870539665, -0.010633876547217369, -0.055994726717472076, -0.04841431975364685, 0.01270029041916132, -0.024192266166210175, 0.022026151418685913, -0.16719648241996765, 0.03889775276184082, -6.752427464258991e-33, 0.003802628256380558, 0.004921906627714634, 0.009895001538097858, -0.019591104239225388, 0.011903534643352032, 0.01160116121172905, -0.02597249485552311, -0.02924610860645771, -0.00023794532171450555, -0.016491306945681572, -0.0010604956187307835, -0.0015447145560756326, 0.006228764541447163, -0.042933061718940735, 0.031021321192383766, -0.03011217527091503, 0.0008074752986431122, -0.0002754417364485562, -0.05348990857601166, 0.025271380320191383, 0.0607941597700119, 0.03159546107053757, -0.022886201739311218, 0.004557497799396515, -0.0041808634996414185, 0.018737340345978737, -0.008010848425328732, 0.02808583900332451, 0.05628393962979317, -0.023940814658999443, -0.027270836755633354, 0.06903707981109619, -0.04312112182378769, 0.014464703388512135, -0.016276076436042786, -0.015962954610586166, -0.047551944851875305, -0.0035965857096016407, -0.014685180969536304, 0.011482584290206432, -0.029971474781632423, -0.02457328327000141, -0.05872603505849838, -0.0579075813293457, -0.03514888510107994, -0.03038196451961994, 0.00908894557505846, 0.06369636952877045, -0.014378284104168415, -0.03389398753643036, -0.01623321883380413, -0.0019502723589539528, -0.03949384018778801, -0.006358311045914888, -0.03450827673077583, 0.03830939531326294, -0.0005169377545826137, 0.0018484600586816669, -0.01760021410882473, 0.03379388153553009, 0.03892054036259651, -0.014216377399861813, 0.02069621905684471, -0.019851839169859886, 0.007154239807277918, 0.009325720369815826, -0.026378784328699112, -0.02295500412583351, 0.010357227176427841, 0.0015732834581285715, 0.006127613130956888, 0.010255767032504082, 0.004323714412748814, -0.011884549632668495, 0.014545698650181293, 0.015957389026880264, 0.027649614959955215, -0.027038181200623512, -0.005726885516196489, 0.010556128807365894, -0.014156557619571686, -0.0020182018633931875, -0.016552649438381195, -0.032173894345760345, -0.003531916067004204, -0.01721424236893654, -0.01771293766796589, -0.010956862010061741, -0.03776624798774719, 0.055913690477609634, 0.005434573162347078, 0.04315799102187157, -0.029265649616718292, -0.00634339964017272, -0.006175572052598, 6.66569214421563e-33, -0.0008897405350580812, 0.015441578812897205, 0.02013937570154667, -0.015061793848872185, 0.06209857761859894, 0.024894123896956444, 0.05925009027123451, -0.03553876280784607, -0.006683543790131807, 0.051484111696481705, -0.040067728608846664, -0.030034881085157394, 0.02710118144750595, -0.005106955301016569, 0.029553933069109917, -0.01605684868991375, 0.026785297319293022, -0.009120739996433258, 0.0072202859446406364, -0.016469348222017288, 0.0051470049656927586, -0.0008870454621501267, 0.028799643740057945, 0.0374891459941864, 0.017276085913181305, 0.045795541256666183, 0.023206861689686775, 0.031001266092061996, -0.04343713819980621, 0.013337786309421062, 0.0007316459668800235, 0.009639335796236992, 0.005700241308659315, -0.03830559924244881, -0.0030418073292821646, 0.04273385554552078, -0.030402667820453644, -0.0474298857152462, -0.040208496153354645, -0.017676647752523422, 0.015350420027971268, 0.0020720509346574545, 0.017837338149547577, 0.03215073421597481, 0.045870743691921234, -0.009611685760319233, 0.00918502639979124, -0.004855758510529995, -0.022652776911854744, 0.027573956176638603, 0.05546637624502182, 0.023951560258865356, -0.03815757855772972, -0.008561910130083561, -0.04269755259156227, -0.02297608181834221, 0.021850712597370148, 0.035437457263469696, 0.028051376342773438, 0.006588202901184559, 0.009958438575267792, 0.010114185512065887, -0.036288708448410034, 0.03736034780740738, 0.002009943127632141, -0.014951770193874836, -0.00951171200722456, 0.019872184842824936, 0.016287805512547493, 0.0054839677177369595, -0.017036395147442818, -0.00957823358476162, 0.022981485351920128, 0.03927604854106903, -0.018231002613902092, -0.028325635939836502, -0.02895890548825264, -0.007724259980022907, 0.026086634024977684, -0.011050393804907799, 0.0425940677523613, 0.030792921781539917, 0.050669774413108826, 0.05645965784788132, -0.01777283102273941, 0.059937331825494766, -0.0010229520266875625, 0.026504481211304665, 0.008662953041493893, 0.027396557852625847, 0.011495662853121758, 0.027666578069329262, 0.006432175170630217, 0.0245349183678627, -0.04050270840525627, -1.265492510782451e-8, -0.02868347428739071, 0.014494898729026318, -0.0338892824947834, 0.003127616597339511, -0.024627627804875374, -0.014899708330631256, 0.022543296217918396, -0.00533803878352046, -0.07558061182498932, -0.00794195756316185, 0.024773184210062027, -0.06362633407115936, 0.028310541063547134, 0.04186088964343071, 0.06532064825296402, 0.01623062789440155, 0.024572299793362617, -0.04258361831307411, -0.0016601698007434607, 0.022888269275426865, 0.02357632666826248, 0.023572877049446106, -0.0224460382014513, 0.08998856693506241, 0.01535672228783369, 0.00018511225061956793, 0.018968787044286728, -0.07354363799095154, -0.008251333609223366, -0.050845786929130554, -0.015046905726194382, -0.004830633755773306, -0.018033303320407867, 0.04228241369128227, 0.000606812012847513, -0.024941226467490196, -0.0036391501780599356, 0.04248606413602829, 0.019291218370199203, 0.022033648565411568, -0.04616905003786087, 0.016946079209446907, -0.025784382596611977, -0.012978456914424896, -0.0021615095902234316, 0.026740897446870804, -0.05677471682429314, -0.019188182428479195, -0.053365860134363174, -0.011992711573839188, 0.007485415320843458, 0.003528377739712596, 0.007469640113413334, 0.02474479004740715, -0.012815024703741074, 0.009465415962040424, -0.04071967676281929, 0.0013662916608154774, 0.0036183111369609833, -0.032133497297763824, -0.0009827649919316173, 0.03523866459727287, -0.023306459188461304, -0.030983399599790573 ]
pair-programming-the-non-driving-pair
https://markhneedham.com/blog/2008/02/14/pair-programming-the-non-driving-pair
false
2008-11-04 00:00:26
Pair Programming: Benefits of the pair switch mid story
[ "pairing", "pair-programming" ]
[ "Pair Programming" ]
On my current project we've been having some discussions around the frequency with which we rotate pairs, the feeling being that we probably keep the same pairs for a bit too long. We discussed using techniques such as http://mitchlacey.com/docs/XR4PromiscuousPairingandBeginnersMind.pdf[promiscuous pairing], which takes the idea of pair rotation to an extreme, but have settled on making our rotations more or less daily. One interesting thing I noticed from some recent pair switching was the immediate benefit we can realise from the pair rotation. When we switch pairs mid story the story champion (person who owns the story from start to end) has to get their new pair up to speed as quickly as possible. My colleague http://lizdouglass.wordpress.com/[Liz Douglass] has a very precise yet effective way of doing this. From observation: * Describe the story or task from a high level detailing what it is we are trying to do and how it fits into the system as a whole * Describe what has been done so far, why that approach was taken and what is left to do. * Describe any problems encountered, previous solutions tried and new ideas to try to solve the problem. I have found that this works really well and allows me to contribute to the task at hand more quickly than if I had to ask questions to work out what is going on. The story champion has the benefit of having been involved in the story kick off so it is certainly very useful for them to be able to take this information and then provide it with context to their future pair. In addition I have noticed that explaining what you are doing on a task to a new pair often leads to you noticing flaws in your logic, therefore leading you to solve the problem. Even if this doesn't happen, having a new pair of eyes and a new perspective on a problem can often lead to it being solved more quickly.
null
null
[ 0.008753477595746517, -0.004026542417705059, -0.011517325416207314, 0.0481780581176281, 0.07346509397029877, 0.023109445348381996, 0.0292141642421484, 0.030285827815532684, 0.026105280965566635, -0.03178147226572037, -0.025923140347003937, 0.014020085334777832, -0.05419614538550377, -0.012798259034752846, -0.04378850758075714, 0.06735435128211975, 0.05678893253207207, 0.0046378010883927345, -0.0054916818626224995, 0.00775213073939085, 0.032602936029434204, 0.05076400935649872, 0.02374863438308239, 0.034170813858509064, 0.03230799362063408, -0.006418682634830475, 0.005530926398932934, -0.003150436794385314, -0.024171456694602966, -0.01799706369638443, 0.038970962166786194, -0.026351546868681908, -0.0015301801031455398, -0.01629653014242649, 0.014310583472251892, -0.019838739186525345, -0.0270261000841856, 0.031971972435712814, 0.01734793558716774, 0.0006338296225294471, -0.07066087424755096, 0.038603782653808594, -0.014139818958938122, -0.02575821243226528, -0.036344099789857864, -0.012656362727284431, -0.05625396594405174, 0.015274925157427788, 0.0019311199430376291, -0.015017176046967506, -0.07942456007003784, 0.04819054156541824, 0.017628155648708344, 0.01586485467851162, 0.001853262074291706, 0.05610158294439316, 0.0038709514774382114, -0.05181732028722763, 0.021549081429839134, -0.03301791474223137, -0.01605893112719059, -0.00800593663007021, -0.009514397010207176, 0.04791731759905815, 0.030151860788464546, -0.01674143597483635, 0.03189397230744362, 0.03722460940480232, -0.01519249752163887, 0.01405708771198988, -0.020876819267868996, 0.010791591368615627, -0.0027075735852122307, -0.012798232026398182, -0.02180928736925125, -0.030065737664699554, 0.014095517806708813, 0.03576749563217163, 0.03858701512217522, 0.016882820054888725, -0.003233683994039893, 0.03456508740782738, -0.008306543342769146, 0.024998683482408524, -0.01186350081115961, -0.043298885226249695, 0.008789671584963799, -0.01952495239675045, -0.07939440757036209, 0.05500975623726845, -0.005553466267883778, -0.06842012703418732, 0.019457852467894554, 0.041682250797748566, 0.0023215278051793575, 0.019026480615139008, 0.02566678822040558, 0.02498972974717617, -0.0010092419106513262, -0.020238902419805527, -0.0042027682065963745, -0.025744643062353134, 0.004135612864047289, 0.014826424419879913, -0.07258296012878418, -0.004379814490675926, 0.000987144187092781, -0.029561873525381088, -0.017297398298978806, 0.026609232649207115, -0.051951587200164795, 0.014881808310747147, 0.012521129101514816, 0.025024674832820892, -0.08269675821065903, 0.0643484890460968, 0.028933851048350334, -0.016293995082378387, -0.0448879599571228, 0.006934822537004948, 0.03964529559016228, 0.024126453325152397, -0.011512667872011662, 0.06997870653867722, -0.007586880587041378, 0.02396533638238907, -0.02523878961801529, 0.04460397735238075, -0.017711210995912552, -0.061186373233795166, -0.004177062772214413, 0.04234638437628746, -0.035021521151065826, -0.013784010894596577, 0.013685820624232292, -0.040760718286037445, 0.0033670871052891016, 0.014897553250193596, 0.0306866392493248, 0.06932409852743149, -0.012188181281089783, -0.010425752960145473, 0.01790538989007473, 0.009480947628617287, 0.028995657339692116, -0.004480557516217232, -0.02080283686518669, -0.007916568778455257, -0.04132726043462753, -0.00038621979183517396, 0.024343203753232956, 0.01111663319170475, 0.030516279861330986, -0.06005357950925827, 0.014847488142549992, 0.07475131750106812, 0.03191860765218735, 0.029528046026825905, -0.01459976751357317, 0.03609730303287506, 0.03650500625371933, 0.011771726422011852, -0.015622626058757305, 0.034486062824726105, 0.0006774951471015811, -0.020506758242845535, 0.0058530340902507305, 0.04271524026989937, -0.015365208499133587, 0.009176178835332394, -0.06496693938970566, -0.006396252661943436, 0.0361449271440506, -0.05699402093887329, -0.027534281834959984, 0.045999862253665924, 0.07062391191720963, 0.03802766650915146, 0.023604178801178932, 0.022815478965640068, -0.07919181138277054, 0.045705653727054596, 0.008335301652550697, 0.01358352042734623, 0.02319805882871151, -0.017790043726563454, 0.049525853246450424, 0.05269276723265648, 0.006386888679116964, 0.057790450751781464, -0.07945668697357178, -0.06101014465093613, -0.007645708043128252, -0.019336136057972908, 0.04809587448835373, -0.03542939946055412, 0.020878158509731293, 0.09626124799251556, 0.01944972388446331, 0.04223921522498131, 0.04086507856845856, 0.0021223034709692, 0.017823001369833946, -0.03641063719987869, -0.05042749643325806, 0.040097277611494064, 0.03868170082569122, -0.026560591533780098, -0.042285241186618805, 0.00003188299888279289, -0.027439968660473824, -0.014609239995479584, 0.0354689285159111, -0.012854650616645813, 0.03998454660177231, 0.016040939837694168, 0.03723936155438423, -0.0325588621199131, 0.04420749098062515, -0.0327400341629982, 0.027741704136133194, 0.006622486747801304, -0.021209755912423134, 0.007443678565323353, -0.011582654900848866, 0.12545354664325714, 0.04345506429672241, -0.06320726126432419, -0.054021261632442474, 0.03188129886984825, 0.010755064897239208, -0.016756843775510788, 0.0051137227565050125, -0.0022817503195255995, 0.006670563947409391, 0.012262202799320221, -0.05288476124405861, -0.03808172047138214, 0.042466532438993454, -0.03662330284714699, -0.012213043868541718, 0.06377485394477844, -0.024281449615955353, 0.08990315347909927, 0.017859570682048798, 0.01103157363831997, -0.0019264083821326494, 0.000828197633381933, -0.05953686684370041, 0.010852674953639507, 0.0056260754354298115, -0.008430293761193752, 0.019644103944301605, -0.007283706683665514, -0.012089693918824196, -0.04632345214486122, -0.0381355918943882, 0.001101436442695558, 0.06787556409835815, 0.05955679342150688, -0.006536176893860102, 0.0832427442073822, -0.005409835837781429, 0.014241443946957588, -0.01807168684899807, -0.04901348426938057, -0.028059419244527817, -0.02111448161303997, 0.0027393586933612823, 0.007841319777071476, 0.035874560475349426, 0.016665691509842873, 0.020560014992952347, 0.004665476270020008, -0.010179053992033005, -0.002240509958937764, 0.021926863119006157, -0.012473166920244694, 0.0014181021833792329, -0.033756744116544724, -0.014203122816979885, 0.05180709809064865, -0.029059724882245064, 0.004637548234313726, 0.014018308371305466, -0.06850872933864594, 0.030029350891709328, -0.051241520792245865, -0.056361183524131775, -0.012520872987806797, 0.010781028307974339, 0.03898726776242256, 0.03272419050335884, 0.0035146076697856188, 0.05239696800708771, 0.04105490446090698, 0.0024216852616518736, -0.009597261436283588, -0.0009793344652280211, 0.05878349021077156, 0.013017010875046253, -0.005689913872629404, 0.0426153726875782, -0.02078239992260933, -0.015439429320394993, -0.04751298576593399, 0.04743703454732895, -0.03387364745140076, -0.3270536959171295, 0.0010273897787556052, 0.011142034083604813, -0.04510396346449852, 0.0143566420301795, -0.04563409835100174, 0.015676487237215042, -0.04701513051986694, -0.03257591277360916, 0.03178299590945244, -0.030826084315776825, -0.033616356551647186, -0.02234024740755558, 0.029552647843956947, 0.003746227826923132, 0.039062414318323135, 0.01768052764236927, -0.04997071251273155, 0.0052472795359790325, 0.058712318539619446, -0.013906984589993954, -0.07015619426965714, -0.030012667179107666, 0.03566982224583626, 0.02526537887752056, 0.0491291880607605, -0.07280098646879196, 0.02101840451359749, -0.032993707805871964, -0.0023946790024638176, 0.00799498800188303, -0.009403927251696587, 0.009097207337617874, -0.024644920602440834, 0.014225036837160587, -0.04291178658604622, 0.04271756112575531, -0.012975053861737251, -0.006799780298024416, 0.01914503425359726, -0.021437102928757668, -0.049556978046894073, 0.010450282134115696, 0.0441882498562336, 0.05722292512655258, -0.002059156307950616, -0.07597716152667999, 0.005280700512230396, -0.03514938801527023, 0.08318265527486801, -0.028973953798413277, -0.032304927706718445, -0.013694504275918007, 0.018782036378979683, -0.0038246253971010447, -0.026078304275870323, -0.00797032006084919, -0.024322398006916046, -0.02255704067647457, -0.019322695210576057, -0.029716765508055687, -0.031579405069351196, -0.004088948480784893, -0.05075308680534363, -0.0005949721089564264, -0.06135624274611473, -0.07370439171791077, -0.0184083953499794, 0.07804076373577118, 0.015849387273192406, -0.0335647314786911, 0.02406802400946617, -0.003263040678575635, -0.10712012648582458, -0.006778956390917301, 0.01715746708214283, -0.014566670171916485, 0.012650160118937492, -0.014892926439642906, 0.04731375724077225, -0.03644397109746933, -0.058594319969415665, 0.005451770965009928, 0.001965118106454611, 0.028089269995689392, -0.0251308586448431, 0.032383032143116, 0.00571088632568717, -0.029917346313595772, 0.00857297983020544, 0.06494210660457611, 0.003750230185687542, -0.03702040761709213, -0.0039003968704491854, 0.02710549160838127, 0.0016285309102386236, 0.005514109041541815, -0.02393033728003502, 0.012849695980548859, 0.03643859922885895, -0.012117384932935238, -0.06081319600343704, 0.03574633225798607, -0.004788486286997795, -0.013416090048849583, -0.002129010623320937, -0.052954260259866714, 0.012630281038582325, 0.04878363758325577, 0.02163885533809662, -0.009556103497743607, -0.004180176183581352, 0.031188294291496277, -0.01697102189064026, -0.009414438158273697, -0.029471587389707565, 0.030976423993706703, 0.04670409858226776, -0.024723367765545845, -0.010979034937918186, -0.07339579612016678, 0.02052978053689003, -0.009412183426320553, 0.004854763392359018, -0.0675351619720459, -0.02497483231127262, -0.02466161549091339, -0.03776251897215843, -0.0016718665137887, 0.021618081256747246, -0.024980856105685234, 0.0017430151347070932, 0.03703825920820236, -0.023805933073163033, 0.008521058596670628, -0.029628098011016846, -0.0683937519788742, -0.02512248232960701, -0.02207513339817524, 0.010172287002205849, -0.0052709998562932014, 0.025154370814561844, -0.005393748637288809, 0.023090995848178864, 0.04128783568739891, 0.003458625404164195, 0.015635600313544273, -0.032836731523275375, 0.00003764663779293187, -0.006249689031392336, 0.01201648823916912, -0.06344081461429596, 0.0015383794670924544, -0.028115423396229744, 0.002222198061645031, -0.013456296175718307, 0.012602816335856915, -0.014140499755740166, -0.011868945322930813, -0.02716432698071003, 0.03329826891422272, -0.05349237471818924, -0.01033146120607853, -0.023491164669394493, 0.0325479619204998, 0.06482885032892227, -0.017557676881551743, 0.007916394621133804, -0.0024373827036470175, -0.009662915021181107, 0.0034731479827314615, -0.010512137785553932, -0.061271198093891144, -0.007852502167224884, -0.008289634250104427, 0.02660776674747467, 0.018445689231157303, -0.010578666813671589, 0.03348136693239212, -0.0047987899743020535, -0.010387888178229332, -0.019386401399970055, 0.01934409886598587, 0.017265560105443, 0.038508396595716476, 0.029542414471507072, 0.01451553963124752, -0.012436442077159882, -0.029036860913038254, -0.016316605731844902, -0.029204899445176125, 0.007898262701928616, -0.013333522714674473, 0.02233928255736828, -0.03455733880400658, -0.055600978434085846, 0.03217350319027901, 0.022249510511755943, -0.006195415742695332, 0.01619451493024826, -0.04032662883400917, 0.01026022806763649, -0.029730092734098434, 0.02877218835055828, 0.09157435595989227, -0.07700515538454056, 0.004939191974699497, 0.004517903085798025, -0.013978369534015656, 0.009970089420676231, 0.0065154265612363815, -0.022623851895332336, -0.0098200011998415, -0.03948819637298584, 0.029012739658355713, -0.065526083111763, -0.03733755275607109, -0.03636354207992554, 0.012172386981546879, 0.026505084708333015, 0.005153302103281021, -0.030529135838150978, -0.008274730294942856, -0.010256357491016388, -0.02508486807346344, -0.002426554448902607, -0.030790748074650764, -0.013875862583518028, 0.02815200760960579, -0.029196372255682945, -0.015089637599885464, -0.042644988745450974, 0.04084980487823486, 0.014428653754293919, -0.04102746769785881, -0.004461139440536499, -0.04732824116945267, 0.0042076194658875465, 0.014905768446624279, 0.04045649990439415, 0.014455808326601982, -0.05213179439306259, -0.04788457974791527, 0.001322661293670535, -0.02790861949324608, 0.014821905642747879, 0.006571940146386623, -0.012069448828697205, 0.03086571767926216, 0.056430310010910034, 0.013165108859539032, 0.016459792852401733, -0.008666190318763256, -0.025665774941444397, 0.04976832866668701, -0.055662963539361954, -0.01997978799045086, -0.021530209109187126, -0.06355585157871246, -0.003090787213295698, 0.007053191773593426, 0.012598243542015553, -0.08740612119436264, 0.023347703740000725, 0.016511596739292145, 0.04794212058186531, 0.03519551083445549, 0.011289674788713455, 0.02273155376315117, -0.03866727650165558, 0.0001529690489405766, -0.07989829778671265, -0.01421288400888443, 0.03816980496048927, 0.0075992695055902, 0.002542488044127822, -0.0038769389502704144, -0.02506168931722641, 0.04485514387488365, -0.07189590483903885, -0.003258554497733712, 0.04372784495353699, -0.008198706433176994, 0.004623342305421829, 0.018997011706233025, -0.05955035239458084, 0.017993927001953125, -0.010412964038550854, -0.032018739730119705, -0.018562231212854385, -0.036732908338308334, 0.06909311562776566, 0.02038520947098732, 0.02136690728366375, -0.011347890831530094, 0.0047990428283810616, 0.07577429711818695, 0.02619955688714981, -0.01154513843357563, 0.05241237208247185, -0.014112522825598717, 0.0395536944270134, 0.04317615553736687, -0.00007090975122991949, 0.0025989909190684557, 0.018223924562335014, -0.010874243453145027, -0.06500157713890076, 0.05902811139822006, -0.00691080279648304, -0.01942332088947296, -0.02578507736325264, 0.05515414848923683, 0.009298431687057018, -0.03899296000599861, -0.07360058277845383, 0.031327564269304276, -0.03896250203251839, -0.0009430391364730895, 0.005418779794126749, -0.009614109992980957, -0.02658134698867798, 0.043013859540224075, -0.024134168401360512, 0.009346742182970047, 0.07586627453565598, 0.012832575477659702, -0.014154775068163872, -0.009583134204149246, 0.0856739804148674, 0.07888238877058029, 0.07494207471609116, 0.01158924400806427, 0.0929754450917244, 0.013874026946723461, -0.0558340810239315, 0.013969060964882374, 0.0066979569382965565, -0.005335831083357334, -0.023730449378490448, 0.038382794708013535, 0.04812280461192131, -0.014868183061480522, 0.05169449746608734, -0.009372367523610592, -0.041148506104946136, 0.0010687240865081549, 0.03352292999625206, 0.016016867011785507, 0.05296773836016655, 0.01962912455201149, 0.01738179847598076, -0.022587239742279053, -0.049582481384277344, 0.036099955439567566, -0.027207516133785248, 0.013139955699443817, 0.019977940246462822, -0.007326139137148857, 0.03162148594856262, 0.006690826267004013, 0.021874407306313515, 0.0814528539776802, -0.05596378073096275, -0.013709820806980133, -0.0027139291632920504, 0.03195059299468994, -0.0056539964862167835, 0.02688237465918064, -0.010119376704096794, -0.017289448529481888, 0.009029383771121502, -0.030400313436985016, -0.022530946880578995, -0.01594069041311741, -0.010724428109824657, 0.027389824390411377, -0.0635443776845932, 0.0315084345638752, 0.02385794185101986, 0.0314628891646862, -0.047087661921978, -0.06580409407615662, -0.019404269754886627, -0.042273905128240585, -0.029765410348773003, -0.0024077468551695347, 0.007298066280782223, 0.009533839300274849, -0.04350733757019043, -0.015672456473112106, -0.005819177720695734, -0.02154722437262535, 0.03666137158870697, -0.06290523707866669, -0.022490711882710457, 0.009751114062964916, 0.0368027463555336, 0.01393993478268385, 0.031808722764253616, 0.055264104157686234, -0.00008096091914921999, 0.004044034983962774, -0.004085668828338385, 0.016293535009026527, 0.026052016764879227, 0.008829403668642044, -0.008046827279031277, -0.09641329199075699, -0.004897776525467634, 0.029370255768299103, -0.0379110686480999, -0.06469420343637466, -0.008882866241037846, 0.030478021129965782, 0.0008718780591152608, 0.04423489049077034, -0.01600978709757328, 0.0008402170496992767, -0.04925152286887169, 0.0003129361430183053, -0.015967754647135735, 0.0063773393630981445, 0.0627111941576004, -0.021698717027902603, 0.06977832317352295, 0.00027280274662189186, -0.02580711804330349, -0.03329022228717804, -0.01802583411335945, 0.026995711028575897, 0.014052760787308216, -0.009132372215390205, -0.0432816781103611, -0.0006251845043152571, -0.0921190083026886, -0.039295848459005356, 0.026474112644791603, -0.026099545881152153, -0.03322926163673401, 0.05079372227191925, 0.017908403649926186, -0.03287527337670326, 0.010718035511672497, -0.03211314603686333, 0.007638106122612953, -0.022719545289874077, -0.0017837247578427196, 0.010481368750333786, -0.007030683569610119, -0.021782444790005684, -0.01601269654929638, 0.015256297774612904, -0.03990469127893448, -0.005197313614189625, -0.011017580516636372, 0.023690897971391678, 0.02870459482073784, 0.006156156770884991, -0.038157228380441666 ]
[ -0.0994272455573082, 0.002674244111403823, -0.0013069410342723131, -0.001912384177558124, -0.016478898003697395, -0.021345043554902077, -0.022370370104908943, 0.007974740117788315, 0.01297940406948328, -0.027105318382382393, 0.0018009835621342063, -0.013801783323287964, 0.029505256563425064, 0.0048528327606618404, 0.09107398241758347, -0.003273710608482361, -0.005425665061920881, -0.06028591841459274, -0.023874999955296516, 0.03910567983984947, -0.016722358763217926, -0.05232738330960274, -0.04387127608060837, 0.0056383488699793816, 0.0089610256254673, 0.03726373240351677, 0.0247581098228693, -0.04135637730360031, 0.001064665731973946, -0.20891594886779785, 0.0048498050309717655, 0.04222053661942482, 0.019790632650256157, -0.008230773732066154, -0.017266148701310158, 0.05666781961917877, -0.003928649239242077, 0.03434596583247185, 0.007165977265685797, 0.015155168250203133, 0.01166614517569542, 0.015639187768101692, -0.025461582466959953, -0.039035141468048096, 0.01791255921125412, 0.020226243883371353, -0.0040213256143033504, -0.01983589306473732, -0.0031540612690150738, 0.018356604501605034, -0.06708760559558868, -0.04667714983224869, -0.03431198373436928, -0.004002619534730911, -0.004544636234641075, 0.06738325953483582, 0.05988016352057457, 0.043162014335393906, 0.0168582983314991, 0.03255873918533325, 0.014542968012392521, -0.006276307161897421, -0.12763142585754395, 0.07893713563680649, 0.012306365184485912, 0.05330657958984375, -0.03504520282149315, -0.02664618380367756, -0.012001746334135532, 0.10293646156787872, -0.004743481054902077, -0.016197429969906807, 0.0012025998439639807, 0.03647671639919281, 0.025066019967198372, 0.012100772000849247, -0.03802426904439926, 0.01212683692574501, 0.030202865600585938, -0.03144270181655884, -0.039260994642972946, -0.00600197771564126, -0.013270868919789791, -0.006788634695112705, -0.05480925738811493, 0.03275581821799278, -0.009140205569565296, 0.001451910356990993, -0.0019099365454167128, 0.018255971372127533, 0.06754544377326965, 0.016043771058321, 0.013756508938968182, 0.0004683596489485353, -0.08897554129362106, -0.013455950655043125, -0.009415973909199238, 0.014784661121666431, -0.036040298640728, 0.45208466053009033, -0.0124618886038661, -0.03186000883579254, 0.09194435179233551, 0.046997860074043274, -0.02184397354722023, -0.005877489689737558, 0.0004498612252064049, -0.056013382971286774, 0.026461021974682808, -0.018030643463134766, 0.0147965457290411, -0.014165802858769894, 0.03597715497016907, -0.055788226425647736, 0.03544769436120987, 0.07337731122970581, 0.03459828719496727, 0.0333886593580246, -0.007532324176281691, -0.025360532104969025, -0.011737242341041565, 0.038256194442510605, -0.011805196292698383, 0.023434162139892578, -0.023932499811053276, -0.05759477615356445, 0.02957814559340477, 0.03419698402285576, 0.03499555587768555, -0.011685590259730816, 0.06795064359903336, -0.029371267184615135, -0.05863618478178978, 0.00562173780053854, -0.034283850342035294, 0.016147827729582787, 0.04009699448943138, -0.040409259498119354, 0.008971969597041607, 0.029522839933633804, 0.04476754739880562, -0.049390267580747604, 0.00008597947453381494, -0.004554345738142729, -0.0014143773587420583, 0.12177149206399918, 0.0035927968565374613, -0.04806053638458252, -0.0030401500407606363, 0.004553153645247221, -0.014940670691430569, 0.023988498374819756, -0.004009969998151064, -0.0664670392870903, 0.03191647678613663, 0.004692241549491882, 0.09844622015953064, -0.005936667323112488, -0.05527075007557869, 0.017740420997142792, -0.024849925190210342, -0.004004291258752346, -0.060837551951408386, 0.004245002754032612, 0.0879385769367218, -0.11524872481822968, 0.006867554504424334, -0.011737975291907787, 0.010148570872843266, -0.07718367874622345, 0.007786277215927839, 0.013164197094738483, -0.021846646443009377, -0.007823710329830647, 0.04537666589021683, -0.011761903762817383, -0.061825238168239594, -0.016583561897277832, 0.050767362117767334, 0.015402036719024181, -0.00528911454603076, 0.021905096247792244, -0.03261100873351097, 0.021081814542412758, -0.04960808530449867, -0.10706080496311188, -0.03015471063554287, 0.008491136133670807, -0.022935988381505013, -0.01997601054608822, 0.024347955361008644, -0.03369218483567238, -0.06629928946495056, 0.11759373545646667, -0.03287816792726517, -0.031057264655828476, 0.022459473460912704, -0.009968082420527935, -0.07706346362829208, -0.0037064270582050085, -0.06359430402517319, 0.01739782653748989, -0.005876198876649141, -0.0015693739987909794, -0.04879782721400261, 0.054816897958517075, 0.03046257421374321, -0.04073067381978035, 0.08510290831327438, 0.053718578070402145, -0.024815691635012627, -0.04015760123729706, -0.026265142485499382, 0.027973979711532593, -0.0263851135969162, -0.010860968381166458, -0.028258439153432846, 0.0225901547819376, 0.010924731381237507, 0.029446957632899284, -0.015983061864972115, 0.002199846087023616, 0.025272900238633156, -0.35156065225601196, -0.023609584197402, -0.010213971138000488, -0.008609596639871597, 0.02904750406742096, -0.05602949112653732, 0.007423020899295807, -0.0053579676896333694, -0.010882182978093624, -0.009335968643426895, 0.057009536772966385, -0.022058555856347084, 0.004196810536086559, -0.088668592274189, 0.009032229892909527, 0.03307195380330086, -0.03268319368362427, 0.00811387412250042, -0.006885495036840439, 0.027819598093628883, 0.021870329976081848, -0.0020940927788615227, -0.027848130092024803, -0.05779751390218735, 0.010804018005728722, -0.020371509715914726, 0.10594969987869263, 0.01350674033164978, 0.046513091772794724, -0.039737600833177567, 0.02770521119236946, -0.010847209952771664, 0.007841041311621666, -0.07584469020366669, 0.024693481624126434, -0.0001537375064799562, 0.031623270362615585, -0.07031455636024475, 0.016303347423672676, -0.05547849088907242, -0.06333248317241669, 0.001459220889955759, -0.0386451780796051, -0.028028562664985657, -0.09849463403224945, 0.0214717797935009, -0.02298901602625847, -0.014687907882034779, 0.014630215242505074, 0.08269086480140686, 0.010463492013514042, 0.0017749258549883962, 0.007873193360865116, -0.025801748037338257, -0.04092075303196907, -0.02226092480123043, -0.07520794868469238, 0.01916711963713169, -0.00012589867401402444, -0.02495906874537468, 0.011637401767075062, 0.09637600183486938, 0.059287164360284805, -0.037006594240665436, 0.000710859487298876, 0.010547611862421036, 0.007625743746757507, 0.004100254271179438, 0.028203703463077545, 0.015395344235002995, -0.029413850978016853, 0.04897889122366905, -0.0023231760133057833, 0.006442634388804436, -0.0012710480950772762, 0.03078417293727398, -0.011075416579842567, 0.02160606160759926, 0.0027475778479129076, -0.019715195521712303, 0.01953955926001072, -0.06816840916872025, 0.01718848943710327, -0.02655661292374134, -0.012762404978275299, -0.002830236218869686, 0.026863081380724907, -0.05454016104340553, 0.0730290338397026, 0.02150009013712406, -0.019833577796816826, 0.015462623909115791, -0.020639829337596893, -0.03795003518462181, 0.04740632697939873, -0.019956836476922035, -0.24471664428710938, 0.018270766362547874, 0.049410171806812286, 0.06128363311290741, -0.01852930337190628, 0.025920843705534935, 0.02172037959098816, -0.01620623469352722, 0.01680975779891014, 0.004500325303524733, 0.02132088877260685, 0.02745894342660904, -0.005312100052833557, 0.03355651721358299, 0.0176232997328043, 0.009753666818141937, 0.062347959727048874, 0.006968193221837282, 0.018365412950515747, -0.014355030842125416, 0.033772196620702744, -0.020726105198264122, 0.15640316903591156, 0.03482983633875847, 0.0409628190100193, 0.00026092142798006535, -0.0035958837252110243, 0.018916768953204155, 0.014933884143829346, -0.02605084888637066, 0.004007639363408089, 0.018591033294796944, -0.0017923524137586355, 0.02936496026813984, 0.04054886847734451, -0.04004392400383949, -0.031434278935194016, 0.05235878378152847, 0.04787410423159599, 0.02452840283513069, 0.016903016716241837, 0.016736531630158424, -0.020813029259443283, 0.006189341656863689, 0.08631422370672226, 0.007383659016340971, -0.003295862814411521, 0.010848437435925007, -0.08881259709596634, -0.0026585611049085855, -0.04216846078634262, -0.023988517001271248, 0.015545010566711426, -0.002106139902025461, -0.0006105707725510001, 0.05948873981833458, 0.012171647511422634, -0.0227875504642725, 0.01997945085167885, 0.013380949385464191, -0.010868794284760952, -0.032130464911460876, 0.08561062067747116, 0.018674077466130257, 0.017578691244125366 ]
[ -0.0043769534677267075, 0.032325275242328644, -0.011133161373436451, 0.005719760898500681, -0.03093496523797512, 0.04810135066509247, -0.029118575155735016, -0.007378592621535063, 0.027299445122480392, 0.002054177923128009, -0.004024954978376627, 0.056509241461753845, 0.005609760992228985, 0.002728171180933714, 0.03080080635845661, 0.0004164251731708646, -0.011355298571288586, 0.0019266682211309671, 0.01743978261947632, 0.05750154331326485, -0.005063649266958237, -0.030504556372761726, -0.04985380917787552, -0.012840247713029385, -0.02844364196062088, -0.016976607963442802, -0.03219202905893326, -0.040518868714571, 0.023639235645532608, -0.12815280258655548, -0.040478724986314774, -0.0086743775755167, 0.004423224832862616, 0.02088255248963833, -0.03933417424559593, -0.03514575585722923, 0.020875437185168266, 0.03999136760830879, 0.014174675568938255, -0.041819214820861816, 0.03265804052352905, -0.03311357647180557, 0.022122452035546303, 0.006352409720420837, 0.024756047874689102, 0.018576810136437416, -0.0033192255068570375, -0.0005944313597865403, -0.02907722257077694, -0.0001261989091290161, -0.06145995855331421, 0.01533148530870676, -0.017473982647061348, -0.011293160729110241, 0.016455335542559624, 0.013168142177164555, 0.03163958340883255, -0.030484024435281754, 0.03168106451630592, -0.024539658799767494, 0.015253841876983643, 0.019771454855799675, -0.06837762147188187, -0.0218746829777956, -0.05521899089217186, -0.03799770399928093, -0.0073196967132389545, 0.01495363749563694, -0.014688646420836449, 0.02018621750175953, -0.04138534888625145, 0.02044435776770115, -0.031337689608335495, -0.03738204389810562, 0.011516600847244263, 0.028877366334199905, 0.009667341597378254, -0.08356006443500519, 0.002991446992382407, -0.050075627863407135, -0.0318138413131237, -0.00042201680480502546, 0.024270348250865936, 0.03380782529711723, 0.05797920748591423, -0.04090990498661995, -0.011911511421203613, -0.0049822330474853516, -0.0036319191567599773, -0.0029364346992224455, -0.045585229992866516, 0.013721855357289314, -0.0004026171227451414, 0.001441558008082211, -0.09443847090005875, 0.04052095487713814, -0.040461376309394836, 0.002318563638255, -0.014804034493863583, 0.7993537187576294, -0.006315184757113457, 0.013702141121029854, 0.04374656453728676, 0.018630376085639, -0.0025667292065918446, 0.019305376335978508, 0.02508368343114853, -0.02441924624145031, 0.0051518334075808525, -0.024077177047729492, 0.04032361879944801, -0.004941020626574755, -0.0007184339337982237, 0.02096840925514698, 0.03788911551237106, 0.031495317816734314, -0.0019071372225880623, 0.027248522266745567, -0.015668872743844986, -0.01844058372080326, 0.0180708859115839, 0.0035633656661957502, 0.012944865971803665, -0.004199776332825422, 0.02214132249355316, -0.17109091579914093, 0.027490871027112007, -6.96282185127298e-33, 0.041289184242486954, 0.03942987322807312, 0.001883822144009173, 0.0027798733208328485, -0.03140300512313843, 0.019999312236905098, 0.007997178472578526, 0.00006847731856396422, -0.017967725172638893, -0.025208264589309692, -0.010844878852367401, 0.015566062182188034, 0.021489746868610382, -0.04035944119095802, -0.0038650729693472385, -0.04142194986343384, -0.0007118243374861777, 0.0026013371534645557, -0.01915876194834709, 0.01873723976314068, 0.04929458349943161, 0.04224506393074989, -0.03858454152941704, 0.02807595580816269, -0.052748747169971466, 0.0011215249542146921, 0.023060442879796028, -0.008807978592813015, -0.009122448042035103, -0.04541529342532158, -0.00801615696400404, 0.031570080667734146, -0.011960288509726524, 0.008601782843470573, 0.013866370543837547, -0.02743905410170555, -0.006509553175419569, -0.0077028460800647736, -0.010611483827233315, -0.014252275228500366, -0.0613093338906765, -0.0025205060373991728, -0.061658598482608795, -0.03845426067709923, 0.0007210908806882799, 0.005747972056269646, -0.012859474867582321, 0.05017085373401642, -0.02331852912902832, -0.041466496884822845, -0.018144866451621056, 0.04213347285985947, -0.04019943252205849, 0.0400201715528965, 0.01770259067416191, 0.03023027628660202, 0.017287898808717728, -0.008196764625608921, -0.0007309922366403043, 0.0130134467035532, 0.018031971529126167, -0.004750775173306465, -0.021021585911512375, -0.005278050899505615, -0.002265703631564975, 0.014007244259119034, 0.008798891678452492, -0.01355038583278656, 0.0013952343724668026, 0.004056005273014307, -0.01974537968635559, -0.021442344412207603, 0.032323695719242096, -0.015146167948842049, 0.023359065875411034, 0.0034541187342256308, 0.010203435085713863, 0.013103675097227097, 0.001998515333980322, 0.04868267476558685, 0.009521007537841797, 0.03006303682923317, -0.005198080558329821, -0.0413617268204689, -0.038356244564056396, -0.04534723609685898, 0.0022001832257956266, -0.02551450952887535, -0.031415555626153946, 0.045686982572078705, 0.02366955764591694, 0.04208972677588463, -0.014394720084965229, 0.0009210232528857887, 0.02114024944603443, 7.42988028700123e-33, -0.006345087196677923, -0.00036105309845879674, 0.014314820989966393, 0.01807343028485775, 0.07497339695692062, -0.022769970819354057, 0.03383762761950493, -0.027136260643601418, -0.03266691043972969, 0.016338128596544266, -0.03717134892940521, -0.05388853698968887, 0.006848666351288557, 0.012795497663319111, 0.07245764881372452, -0.01837853714823723, 0.033051200211048126, -0.0029061823152005672, 0.019763221964240074, 0.026018576696515083, 0.04246528819203377, 0.015832504257559776, 0.0210404135286808, 0.055301595479249954, 0.03629777953028679, 0.031118081882596016, 0.044130317866802216, 0.014165590517222881, -0.01636148989200592, -0.005564931780099869, -0.007190965581685305, -0.03167534992098808, 0.027722476050257683, 0.017335277050733566, -0.015174537897109985, 0.04392842948436737, -0.06454869359731674, -0.018555734306573868, -0.016838833689689636, -0.007345481310039759, -0.005860929377377033, -0.008327176794409752, -0.022366315126419067, 0.032324738800525665, 0.017782453447580338, 0.005712828598916531, 0.021037423983216286, 0.001335617620497942, 0.009052428416907787, -0.01641249470412731, 0.024691276252269745, 0.02948020026087761, -0.03634609654545784, -0.03476105257868767, -0.014338579028844833, -0.05801659822463989, 0.0028154721949249506, 0.032217565923929214, 0.05470837652683258, 0.027025623247027397, 0.00949942134320736, 0.013860036619007587, -0.023801546543836594, 0.0005925851874053478, -0.007799369748681784, -0.004470162559300661, 0.01925409585237503, 0.0013267266331240535, -0.01566564291715622, 0.028492111712694168, -0.026960041373968124, -0.017882931977510452, 0.018419049680233, 0.020647482946515083, 0.005195809993892908, -0.01659952476620674, -0.06648674607276917, -0.04499395936727524, -0.0018863438162952662, -0.010934161953628063, 0.005205775145441294, 0.017503011971712112, 0.043792687356472015, 0.02111203409731388, -0.007196154911071062, 0.06560451537370682, -0.015555270947515965, 0.06920213997364044, 0.015887966379523277, 0.002658241428434849, -0.0030162150505930185, -0.009192979894578457, 0.05924845486879349, 0.0044992356561124325, 0.0335860550403595, -1.300969376671901e-8, -0.0358547680079937, 0.017709312960505486, -0.03197023272514343, 0.009999160654842854, -0.022695887833833694, 0.005655471235513687, 0.02974776178598404, 0.007978934794664383, -0.021357281133532524, 0.004864022135734558, 0.0010412451811134815, -0.023938195779919624, 0.004836029373109341, 0.013939235359430313, 0.05821669474244118, -0.04840916022658348, 0.03361609950661659, -0.07645293325185776, 0.02032717689871788, 0.00563004007562995, 0.03346013277769089, 0.028239591047167778, -0.0386338047683239, 0.023230208083987236, -0.05184675380587578, 0.020083578303456306, 0.04088607430458069, -0.09725121408700943, 0.015831902623176575, -0.008322304114699364, 0.005182533524930477, -0.019755836576223373, -0.012105138041079044, 0.03957101330161095, -0.005637947004288435, 0.0005523243453353643, -0.006670909468084574, 0.033504586666822433, 0.04202096164226532, -0.015106684528291225, -0.04510107263922691, 0.009279550053179264, -0.021162573248147964, -0.013587757013738155, 0.002741629723459482, 0.047319356352090836, -0.018805474042892456, -0.03347177430987358, -0.03520548716187477, -0.029045794159173965, 0.006019578780978918, -0.022937124595046043, 0.027604693546891212, 0.009056761860847473, -0.021912453696131706, 0.019382532685995102, -0.014440534636378288, -0.011723305098712444, 0.04128893464803696, -0.0367448516190052, -0.001044117845594883, -0.023851469159126282, -0.01854257844388485, -0.04225096106529236 ]
pair-programming-benefits-of-the-pair-switch-mid-story
https://markhneedham.com/blog/2008/11/04/pair-programming-benefits-of-the-pair-switch-mid-story
false
2008-11-05 08:01:26
Crystal Clear: Book Review
[ "xp", "agile", "crystal-clear", "alistair-cockburn", "books", "book-review" ]
[ "Books" ]
== The Book http://www.amazon.co.uk/Crystal-Clear-Human-Powered-Methodology-Small/dp/0201699478/ref=sr_1_1?ie=UTF8&s=books&qid=1225830583&sr=8-1[Crystal Clear] by http://alistair.cockburn.us/[Alistair Cockburn] == The Review This was a book which had been recommended to me by a colleague a few months ago as one of the best software development books to read, and after hearing http://codebetter.com/blogs/ian_cooper/[Ian Cooper] describe how his team was implementing some of the ideas at the http://www.markhneedham.com/blog/2008/09/14/altnet-uk-conference-20/[Alt.NET conference] I decided I'd give it a read. I have been working in an Agile/XP environment at ThoughtWorks for the last two years so my context coming into the book was around understanding where the overlap with Crystal Clear was, what differences there are and how I can apply these on my projects == What did I learn? * I thought it was very interesting that Alistair Cockburn came across the agile principles through the *need for efficiency* rather than the need to handle rapidly changing requirements. It is also interesting that his *project background is of the fixed price, fixed scope variety*. This is generally considered an area where it is difficult to achieve success with an agile approach although I have worked on projects like this which have successfully delivered as well. From my experience the key benefit of the agile approach touted is the ability to rapidly respond to changes in requirements but I also believe that the gains in efficiency we gain from the quick feedback cycles is certainly equally important in my book. Tim Bray has an interesting article talking about the potential for agile to thrive in this current financial climate due to the efficiency gains it can provide. * I found the idea of *software projects being a cooperative game* to be a very good metaphor for understanding the trade offs that we make on projects. We need to consider the current game and future games that we will need to play. We can make decisions which benefit us in the current game (e.g. taking shortcuts on design) but we must remember that these decisions will have an impact on games that occur in the future (e.g. increased technical debt to pay off). * The approach I have seen on previous projects has always advocated achieving business value as the number one priority for story selection. The author advocates a slightly different approach whereby we first tackle the *highest risk or highest learning tasks first* so that the team can gain this knowledge early while also being sure that it is technically possible to do the things they are being asked to do. This is linked to the idea of the *walking skeleton* - whereby we create an implementation of the system that performs a small end to end function. Clearly when using this approach it is important to still try and show that we are achieving some business value otherwise the project sponsor may become very nervous. * The book has some interesting suggestions around *retrospectives or reflection workshops*. One which we are currently trying on my project is the idea of wrapping up the retrospective with two lists - *'Keep These' and 'Try These'*, which contain the ideas suggested in the retrospective. We can then prioritise the items on the 'Try These' list and go through the most important ones before the next retrospective. * Another idea which was quite different from what I've come across was the idea of *systems personalities*. The idea here is that the system displays a different 'personality' to different end users. For example it might be fast and efficient or warm, friendly and informative. This seems like a good approach to allow us to drive out exactly how important different aspects of the system are and makes the trades off we inevitably have to make more related to our overall goal. * The idea of having an *expert user* as well as a business expert working with the team was another interesting idea. From my experience it is very difficult to get a business expert to come and work with the team full time so I'm not sure how we would be able to get another person to come and work with our team, but several colleagues suggested to me that they do have an expert user working on their team so it is possible. I can see this being a useful role though because we often come across situations where there are two ways to do things and it's not obvious which way the user would prefer. To have someone who actually uses the system available to answer that question would be quite valuable. * There is an interesting discussion about the *documentation* that a project should look to supply - this is often something that we neglect so it was interesting to see explicit ideas on what should be provided being stated. It described the normal ideas such as the source code, architecture diagrams and so on, but one thing which I hadn't considered as documentation was *design diagrams showing the way the system has evolved*. We often sketch out designs on whiteboards but rarely capture the evolution of them. It's certainly an idea to keep in mind. * I liked the case studies at the end of the book which detailed some experiences teams have had using the Crystal Clear approach. The most interesting part for me was looking at the individual experiences that each person on the team had. The ideas expressed weren't new to me but it was interesting that they were so similar despite the project being described being so different to the ones I have worked on. == In Summary The biggest idea I came away with after reading this book was the idea that we should always be looking to *continuously improve*. At one stage the book refers to Kaizen - a term from the Toyota Production System which means 'continuous improvement'. As a result of reading this book I became more aware of this term and came across http://www.kaizenconf.com/[Kaizen Conf] which took place in the US last week. I think it would serve as a good introduction to the Agile world - it's not quite as strict as something like Extreme Programming but it seems to get across most of the same ideas.
null
null
[ 0.01238580048084259, 0.00918081495910883, -0.01074865274131298, 0.038421232253313065, 0.08421248197555542, -0.0031498149037361145, 0.008065166883170605, 0.036676254123449326, 0.013357401825487614, -0.0180098507553339, -0.022498592734336853, 0.011258251965045929, -0.05086562782526016, 0.009290555492043495, -0.04440610483288765, 0.07783466577529907, 0.06826864928007126, 0.009332125075161457, 0.01174397673457861, -0.0019293708028271794, 0.021259184926748276, 0.09681398421525955, 0.025112248957157135, 0.04583915323019028, 0.02794928103685379, 0.013869481161236763, 0.025755712762475014, -0.012339701876044273, -0.047461751848459244, -0.0022005580831319094, 0.044959526509046555, -0.010192668065428734, 0.007912596687674522, -0.002835475839674473, 0.027436647564172745, -0.018226686865091324, -0.014150376431643963, 0.027450107038021088, -0.023497652262449265, -0.024564368650317192, -0.05705899000167847, 0.0388944074511528, -0.013048733584582806, 0.021595865488052368, -0.03485199436545372, 0.0059668696485459805, -0.03337550163269043, 0.008370460942387581, -0.014158315025269985, 0.00047266852925531566, -0.04822460934519768, 0.014540407806634903, -0.012615010142326355, -0.02953663468360901, -0.017018603160977364, 0.059817612171173096, -0.0023932885378599167, -0.04138728603720665, -0.0028747718315571547, -0.052551910281181335, -0.007824250496923923, -0.016339415684342384, 0.007967198267579079, 0.04326769337058067, 0.03020142950117588, -0.035271961241960526, -0.0007505305111408234, 0.032842472195625305, -0.03049757145345211, 0.009390248917043209, -0.04349683225154877, 0.027345983311533928, -0.02631283923983574, -0.010406948626041412, -0.007767048664391041, -0.06365175545215607, 0.015682924538850784, 0.06877540051937103, 0.03183600306510925, 0.043562471866607666, -0.005282070022076368, 0.03634076565504074, 0.024510478600859642, 0.021802186965942383, -0.03548663854598999, -0.03849491849541664, 0.00034062674967572093, -0.01731196418404579, -0.07855869829654694, 0.07382185012102127, 0.007201441563665867, -0.06333545595407486, 0.010534640401601791, 0.05089161917567253, 0.002031652256846428, 0.00848635658621788, 0.03717324137687683, 0.0027078036218881607, -0.004024806432425976, -0.0062429592944681644, -0.0229245126247406, -0.02152414061129093, 0.006016305182129145, -0.011324316263198853, -0.07626505196094513, 0.011207208968698978, -0.024524681270122528, -0.03775330260396004, -0.013552212156355381, 0.0009436909458599985, -0.02233736403286457, 0.007788056507706642, -0.04301862791180611, 0.005114664789289236, -0.06676729023456573, 0.07210326939821243, 0.014059283770620823, -0.020028844475746155, -0.015452008694410324, 0.010401244275271893, 0.056290943175554276, 0.0050637065432965755, -0.007204506546258926, 0.08154133707284927, 0.016309399157762527, -0.005668906029313803, -0.025879431515932083, 0.06438257545232773, -0.016215423122048378, -0.05020247772336006, -0.01915038749575615, 0.048438865691423416, -0.05623053014278412, -0.00517518213018775, 0.0018637614557519555, -0.020902615040540695, 0.00838882103562355, -0.0021708623971790075, 0.006930646952241659, 0.041225239634513855, 0.0011068870080634952, -0.020720964297652245, 0.015251780860126019, 0.015692604705691338, 0.041785236448049545, 0.0024897505063563585, 0.011571377515792847, -0.03456904739141464, -0.0436430424451828, -0.0014191479422152042, 0.022789241746068, 0.015373162925243378, 0.021657167002558708, -0.027903035283088684, 0.036839358508586884, 0.0865444615483284, 0.03972484916448593, 0.022106077522039413, -0.01350298710167408, 0.028345219790935516, 0.041760727763175964, 0.025887031108140945, 0.02473367750644684, 0.0030629050452262163, 0.013859900645911694, -0.001400568289682269, -0.006420654244720936, 0.046650733798742294, 0.0027528428472578526, -0.0037037923466414213, -0.0499604232609272, -0.037533923983573914, 0.045540302991867065, -0.04230048134922981, -0.010950341820716858, 0.03603004291653633, 0.06666820496320724, 0.05711594596505165, 0.039840955287218094, -0.006585045717656612, -0.09004949033260345, 0.026405557990074158, 0.02664744108915329, 0.007385615259408951, 0.03133651614189148, -0.03311565890908241, 0.057360872626304626, 0.025326134636998177, 0.020497160032391548, 0.04736385866999626, -0.08825154602527618, -0.0980004146695137, -0.017748791724443436, -0.017613179981708527, 0.0561956949532032, -0.04879482835531235, 0.003444365691393614, 0.05591382458806038, 0.00407678447663784, 0.05183371901512146, 0.01704518496990204, 0.010220370255410671, -0.006390760652720928, -0.038966089487075806, -0.03615550324320793, 0.048760250210762024, 0.03863248601555824, 0.026578878983855247, -0.050577908754348755, 0.028866034001111984, -0.011613331735134125, 0.0016906827222555876, 0.042443569749593735, -0.013113112188875675, 0.045296892523765564, 0.0011635611299425364, 0.057346660643815994, -0.015242676250636578, 0.06339660286903381, -0.0567249096930027, 0.008055138401687145, 0.01163444947451353, -0.012249370105564594, 0.021465538069605827, -0.0061441087163984776, 0.10192814469337463, 0.0631178468465805, -0.043268486857414246, -0.04743317887187004, 0.01291434932500124, 0.010115754790604115, -0.04009109362959862, 0.002897850703448057, -0.013487206771969795, 0.02265067584812641, -0.018098922446370125, -0.062227439135313034, -0.03330788388848305, 0.020099136978387833, -0.03957358002662659, 0.014507384039461613, 0.04750961437821388, -0.008339296095073223, 0.06737057119607925, 0.021520746871829033, -0.011066625826060772, -0.0077061220072209835, 0.012863213196396828, -0.06250780075788498, 0.01286522950977087, 0.00895338412374258, -0.02394264005124569, 0.05464882031083107, -0.024566682055592537, -0.032433539628982544, -0.04213699325919151, -0.03868326172232628, 0.01340706180781126, 0.06462320685386658, 0.06162983179092407, -0.004480218514800072, 0.05454228073358536, -0.017697840929031372, 0.030511148273944855, 0.00582001730799675, -0.04451997950673103, -0.056201331317424774, -0.0590914823114872, -0.0009604787337593734, 0.023041795939207077, 0.020655397325754166, 0.026571698486804962, 0.013171815313398838, 0.0015604119980707765, -0.01451567467302084, -0.0025995818432420492, 0.038357313722372055, -0.002782382071018219, -0.0073554255068302155, -0.022294245660305023, -0.020152738317847252, 0.053758617490530014, -0.04009668901562691, -0.011521297506988049, 0.004269853234291077, -0.09545393288135529, 0.04562459886074066, -0.06407198309898376, -0.02460481971502304, -0.0047782412730157375, 0.014491712674498558, 0.0518316924571991, 0.008782128803431988, 0.0037355164531618357, 0.05577250197529793, 0.021372685208916664, -0.007806654553860426, 0.007898947224020958, -0.013280075043439865, 0.026350833475589752, 0.015049968846142292, -0.02165229618549347, 0.048920899629592896, 0.0013356293784454465, 0.007495990488678217, -0.07299336791038513, 0.03821849822998047, -0.047261856496334076, -0.27775633335113525, 0.0194381233304739, -0.0033764943946152925, -0.03622332215309143, 0.014144200831651688, -0.004077214747667313, 0.007788194343447685, -0.07117527723312378, -0.0177240502089262, 0.020753007382154465, -0.04555486515164375, -0.046016767621040344, -0.012373553588986397, 0.03711327910423279, 0.027298182249069214, 0.037235330790281296, 0.050625402480363846, -0.0355972945690155, -0.004663551691919565, 0.06545457988977432, -0.014881577342748642, -0.07296441495418549, 0.008593318052589893, 0.033898208290338516, 0.04357460141181946, 0.060886070132255554, -0.06565487384796143, 0.021366378292441368, -0.04932079464197159, -0.01762387529015541, 0.021788083016872406, 0.014082392677664757, 0.0023960359394550323, -0.029899228364229202, 0.0009222131338901818, -0.010699931532144547, 0.04774307832121849, 0.018032824620604515, -0.016924740746617317, 0.00529186287894845, -0.012929490767419338, -0.020578905940055847, 0.007016059011220932, 0.0143608832731843, 0.08631997555494308, 0.010198242962360382, -0.08663251250982285, -0.0023539001122117043, -0.020755812525749207, 0.08763520419597626, -0.04170564189553261, -0.020356856286525726, 0.0061174314469099045, 0.04153906926512718, -0.010821140371263027, -0.03231297805905342, 0.013362346217036247, -0.02672256901860237, -0.030758071690797806, -0.01690257340669632, -0.024136370047926903, -0.029414184391498566, -0.011512257158756256, -0.04675669968128204, 0.0033879640977829695, -0.06534889340400696, -0.07106504589319229, -0.01629546284675598, 0.05620715394616127, 0.01818138174712658, -0.04975413158535957, -0.012890050187706947, -0.008462470024824142, -0.09961812198162079, -0.01061889249831438, -0.005437349434942007, -0.014370004646480083, 0.024834929034113884, 0.017744507640600204, 0.048857979476451874, -0.028448985889554024, -0.0607125423848629, 0.018211305141448975, 0.01582675240933895, 0.028872482478618622, -0.016622373834252357, 0.042447447776794434, 0.03268415108323097, -0.033264417201280594, 0.010684432461857796, 0.04891598969697952, 0.00584803381934762, -0.027580853551626205, -0.03156919404864311, 0.029199328273534775, -0.013443639501929283, 0.02188602276146412, -0.020706800743937492, 0.017845841124653816, 0.041234374046325684, -0.01754700019955635, -0.05345170199871063, 0.027310561388731003, -0.028810059651732445, -0.023342322558164597, -0.01793232560157776, -0.05356398969888687, 0.0062222667038440704, 0.05329979583621025, 0.010974090546369553, 0.016148889437317848, -0.03284671902656555, 0.02487858012318611, -0.04212489724159241, -0.0391608364880085, -0.036361463367938995, 0.0208747498691082, 0.05286217853426933, -0.03488996624946594, 0.008612442761659622, -0.06535221636295319, 0.0034598959609866142, -0.03497966378927231, -0.036278095096349716, -0.05871221423149109, -0.008652424439787865, -0.019514206796884537, -0.03719765320420265, 0.008596381172537804, 0.020012786611914635, -0.022821784019470215, 0.021898508071899414, 0.016920356079936028, -0.040625642985105515, 0.002409287029877305, -0.03789873048663139, -0.08239766210317612, -0.03100186586380005, -0.006474887952208519, -0.004592725075781345, -0.009179227985441685, 0.028561675921082497, 0.001863090437836945, 0.015649277716875076, 0.027492031455039978, 0.003636377165094018, 0.016843896359205246, 0.005243484862148762, 0.0345485545694828, 0.023461466655135155, 0.001266662497073412, -0.04699256643652916, 0.032004524022340775, -0.04145156219601631, -0.019990326836705208, -0.018351012840867043, 0.026167230680584908, -0.028481224551796913, -0.023394042626023293, -0.017381729558110237, 0.004136953037232161, -0.04448035731911659, -0.038101471960544586, -0.02239132672548294, 0.022574404254555702, 0.07339577376842499, -0.00820363499224186, 0.014386991038918495, -0.03242605924606323, -0.01564069651067257, 0.04094238951802254, 0.0053827338851988316, -0.04058847576379776, 0.007818818092346191, 0.002124376129359007, 0.003276761621236801, 0.016207443550229073, -0.009496239013969898, 0.035784762352705, 0.0021593524143099785, 0.002104113344103098, -0.038134731352329254, 0.0021667431574314833, 0.00425134738907218, 0.03856778144836426, 0.012713230215013027, -0.010659851133823395, 0.0017567811300978065, -0.02472013607621193, -0.03632455691695213, -0.02807328663766384, 0.0036701085045933723, 0.005051250569522381, 0.004854198545217514, -0.03758600726723671, -0.07005929201841354, 0.05164133757352829, 0.014816460199654102, -0.0032384642399847507, 0.014776148833334446, -0.007328176870942116, 0.0012427754700183868, -0.029708795249462128, 0.00811628345400095, 0.04872998967766762, -0.07765458524227142, 0.0024619982577860355, -0.010996012948453426, 0.008578192442655563, 0.0040037319995462894, -0.017753729596734047, -0.026141582056879997, -0.02154737152159214, -0.013181544840335846, 0.011102587915956974, -0.0662795901298523, -0.007442412432283163, -0.03380933776497841, -0.003597429720684886, 0.0032116686925292015, 0.01601121760904789, -0.017867542803287506, -0.023563753813505173, -0.03165049850940704, -0.020941153168678284, 0.01443672925233841, -0.03835753723978996, 0.00042265691445209086, 0.01107815932482481, -0.037482406944036484, -0.019945809617638588, -0.03283621370792389, 0.01727955974638462, 0.012967451475560665, -0.008845352567732334, 0.0041548823937773705, -0.03758440911769867, -0.0016289494233205914, 0.004629853647202253, 0.02648351341485977, -0.013632361777126789, -0.003912854008376598, -0.028223814442753792, -0.018636910244822502, -0.053994279354810715, 0.005263039376586676, -0.018408261239528656, -0.016291772946715355, 0.024125251919031143, 0.0743526965379715, 0.0114467553794384, 0.03595124930143356, -0.001259494456462562, -0.028001025319099426, 0.05259055271744728, -0.07544336467981339, -0.02615070343017578, -0.011929568834602833, -0.055179841816425323, -0.004165276885032654, 0.009766343049705029, 0.027420202270150185, -0.051178354769945145, 0.05393114686012268, 0.021070849150419235, 0.0444062277674675, 0.04532965272665024, -0.0032855630852282047, 0.02305617742240429, -0.05096500366926193, 0.016047630459070206, -0.08965965360403061, -0.010635155253112316, 0.019995294511318207, 0.0009077854338102043, -0.009198782034218311, -0.0007259047124534845, -0.0509348101913929, 0.044868309050798416, -0.08533748984336853, -0.021687153726816177, 0.04554486274719238, 0.0055605885572731495, -0.02131027728319168, 0.025796180590987206, -0.06841663271188736, 0.018841935321688652, 0.01529675256460905, -0.04071326181292534, -0.02305249124765396, -0.01514302659779787, 0.04720478132367134, -0.008153410628437996, 0.03202617168426514, -0.037762951105833054, 0.006022816523909569, 0.09165575355291367, 0.008507288992404938, -0.006591299083083868, 0.05192052945494652, 0.005982932168990374, 0.036350175738334656, 0.04082164540886879, 0.019521916285157204, -0.001066951546818018, 0.02254308946430683, -0.009094607084989548, -0.058358367532491684, 0.02912883833050728, -0.011466264724731445, -0.034826070070266724, -0.04419974237680435, 0.05121803656220436, 0.0069751618430018425, -0.017373329028487206, -0.05250464379787445, -0.0022907471284270287, -0.06367180496454239, 0.009278425015509129, -0.011409910395741463, 0.008984754793345928, -0.059501875191926956, 0.05018327012658119, -0.002761231269687414, 0.014633191749453545, 0.051489971578121185, -0.0103443069383502, -0.021479390561580658, -0.01461000181734562, 0.09171202778816223, 0.0737956091761589, 0.07396399229764938, 0.014688254334032536, 0.07003577053546906, -0.0031515085138380527, -0.0458676740527153, 0.015487957745790482, 0.0067887562327086926, -0.008722261525690556, -0.02327141910791397, 0.020690793171525, 0.058670759201049805, -0.005490125622600317, 0.04917757213115692, -0.02184075303375721, -0.03407541662454605, 0.016845177859067917, 0.038006436079740524, -0.004860023967921734, 0.06656195223331451, 0.02626454457640648, 0.02159770205616951, -0.018759995698928833, -0.046259116381406784, 0.03461955860257149, -0.014633885584771633, -0.019573131576180458, 0.022876013070344925, -0.005860491190105677, 0.03390122950077057, 0.019881999120116234, 0.021402450278401375, 0.08783522993326187, -0.03788251057267189, 0.01893252320587635, 0.003455745754763484, 0.014984757639467716, -0.0012115597492083907, 0.005760902538895607, -0.025252757593989372, -0.010720865800976753, -0.008439424447715282, -0.013706471771001816, -0.03600572049617767, -0.008349798619747162, -0.0055503565818071365, 0.036411989480257034, -0.013387594372034073, 0.010203110985457897, 0.04417548328638077, 0.012595743872225285, -0.04513750597834587, -0.0629260316491127, -0.043660249561071396, -0.036472659558057785, -0.05103740841150284, 0.0004840733017772436, 0.02500569261610508, -0.02358870767056942, -0.04746086895465851, -0.0036157360300421715, -0.0015408445615321398, -0.04276758059859276, 0.02442813478410244, -0.059474315494298935, -0.019947564229369164, 0.0007582685793749988, 0.03218706697225571, 0.0230768620967865, 0.01140802912414074, 0.06068336218595505, -0.007885836064815521, -0.014394918456673622, 0.0031796640250831842, 0.0371079184114933, 0.03223511204123497, 0.007043055258691311, 0.03758220374584198, -0.06794705241918564, 0.01838238351047039, 0.04463540390133858, -0.017984051257371902, -0.06609828025102615, 0.043153066188097, 0.009687667712569237, -0.03305660933256149, 0.051210008561611176, -0.00795859657227993, 0.015609282068908215, -0.04027236998081207, -0.006217299494892359, -0.0013302972074598074, 0.02507001720368862, 0.0315994992852211, -0.04100443422794342, 0.08541812747716904, 0.031726352870464325, -0.002762732794508338, -0.052109211683273315, -0.00803857296705246, -0.006761857308447361, 0.008588417433202267, -0.010961536318063736, -0.015103298239409924, -0.027261534705758095, -0.08872131258249283, -0.01700742356479168, 0.019688742235302925, -0.02497551403939724, -0.035799022763967514, 0.019757358357310295, 0.026833729818463326, -0.017329715192317963, 0.023438548669219017, -0.0401991531252861, 0.028285320848226547, -0.03446124494075775, -0.007757982239127159, -0.008541671559214592, 0.026011968031525612, -0.0014394060708582401, 0.010918202809989452, 0.01963941939175129, -0.062001533806324005, 0.018822111189365387, 0.002691254485398531, 0.02101660519838333, 0.047410544008016586, 0.028268005698919296, 0.00005366693949326873 ]
[ -0.09201949834823608, -0.007033564615994692, -0.01670653373003006, -0.02372022531926632, 0.045272860676050186, -0.035381194204092026, -0.027438081800937653, 0.016948314383625984, -0.003999510779976845, -0.018014971166849136, 0.011635292321443558, -0.014587978832423687, -0.008982168510556221, -0.030588142573833466, 0.07553067803382874, 0.0055848718620836735, 0.014859173446893692, -0.07338295876979828, 0.010999382473528385, 0.014180674217641354, 0.01756865717470646, -0.043498121201992035, -0.04815070703625679, -0.023419812321662903, 0.029095737263560295, 0.03999805077910423, -0.008485425263643265, -0.0439503975212574, 0.009219687432050705, -0.1852397322654724, 0.006264314521104097, 0.04445922002196312, 0.059157099574804306, -0.01814456097781658, -0.0014776396565139294, 0.05783737823367119, 0.01919480413198471, 0.0026970577891916037, -0.015376158989965916, 0.04007220268249512, 0.03148339316248894, 0.03327152132987976, -0.035927508026361465, -0.0004924001405015588, 0.017879799008369446, -0.0035729319788515568, -0.0038806861266493797, -0.030850788578391075, -0.02560407854616642, -0.02104218117892742, -0.05744831636548042, -0.03672834485769272, -0.02866036258637905, -0.0230452548712492, -0.008056255988776684, 0.03870184347033501, 0.024382945150136948, 0.08198587596416473, -0.010875102132558823, 0.020623918622732162, 0.013469590805470943, -0.03449847921729088, -0.15715768933296204, 0.0557047463953495, 0.06751836836338043, 0.058784980326890945, -0.059416402131319046, -0.005495215300470591, -0.014863831922411919, 0.08865386992692947, 0.02347627282142639, -0.01793152652680874, 0.0037398512940853834, 0.03179367631673813, 0.027629001066088676, 0.028577081859111786, 0.00771454768255353, 0.004006038419902325, 0.020267603918910027, -0.0412861667573452, -0.021000588312745094, -0.0016491682035848498, -0.02773718349635601, -0.008474226109683514, -0.036575138568878174, 0.035236649215221405, -0.007955080829560757, 0.038260579109191895, 0.057733964174985886, 0.02856350690126419, 0.04289393499493599, 0.007928169332444668, 0.029057476669549942, -0.004901648499071598, -0.07202240824699402, -0.0126433614641428, 0.005758588667958975, 0.015519684180617332, -0.06237996742129326, 0.4439854025840759, -0.012888924218714237, -0.018742375075817108, 0.05841750651597977, 0.019795414060354233, -0.01335909403860569, -0.005766399670392275, 0.03447095304727554, -0.04904269427061081, 0.039990201592445374, -0.00349614885635674, 0.02811563014984131, 0.030672956258058548, 0.062398623675107956, -0.06609742343425751, 0.00011325589730404317, 0.04290846735239029, -0.004507352132350206, 0.02548135817050934, 0.003931843210011721, -0.021482320502400398, -0.019567163661122322, 0.024511372670531273, 0.03339111804962158, 0.01856646127998829, -0.03249536082148552, -0.03641222417354584, 0.025278521701693535, 0.057357508689165115, 0.020867152139544487, 0.0005127861513756216, 0.06606078892946243, -0.028401196002960205, -0.07862259447574615, -0.0160889383405447, 0.010146452113986015, 0.014356871135532856, 0.009750358760356903, -0.020320210605859756, -0.020704377442598343, 0.07629074156284332, 0.01399393379688263, 0.01362138707190752, 0.035940274596214294, -0.059684257954359055, -0.050794921815395355, 0.10795652121305466, 0.052637457847595215, -0.028027085587382317, -0.018472859635949135, -0.017406918108463287, 0.012130065821111202, 0.027432357892394066, 0.015330291353166103, -0.03958435729146004, 0.02593139186501503, -0.007801116909831762, 0.10760783404111862, -0.006885378621518612, -0.06703999638557434, -0.004035759251564741, -0.03280830755829811, -0.010797535069286823, -0.062212999910116196, 0.07055681943893433, 0.036040790379047394, -0.14275875687599182, -0.014081580564379692, 0.0000761248666094616, 0.014469094574451447, -0.062156498432159424, -0.006546351592987776, 0.014002270996570587, -0.020389951765537262, 0.009242777712643147, 0.0800844356417656, -0.035234250128269196, -0.033681564033031464, -0.00045989229693077505, 0.055185187608003616, 0.020750420168042183, 0.022928887978196144, 0.024459900334477425, -0.013632331974804401, -0.001507457927800715, -0.030774733051657677, -0.06022999435663223, -0.04103575274348259, -0.007882516831159592, -0.024221783503890038, -0.014275620691478252, -0.03394250571727753, -0.007898504845798016, -0.06402327865362167, 0.12063666433095932, -0.03701735660433769, -0.023188751190900803, 0.006937145255506039, -0.031484417617321014, -0.055722884833812714, -0.006777790375053883, -0.07939519733190536, 0.026041338220238686, -0.03170722350478172, 0.026198161765933037, -0.028939587995409966, 0.024135734885931015, 0.028120139613747597, -0.057210005819797516, 0.08492586761713028, 0.055854544043540955, -0.017985964193940163, -0.05673716589808464, 0.01731794886291027, 0.04077315330505371, -0.0009383850265294313, 0.010382716543972492, -0.001272273133508861, 0.03909417986869812, -0.0337020643055439, 0.03991387411952019, -0.02999209053814411, 0.009547676891088486, -0.05002687871456146, -0.3272915780544281, -0.025697704404592514, -0.041103068739175797, -0.008941423147916794, 0.021454833447933197, -0.04051661491394043, 0.030516142025589943, -0.028337759897112846, -0.0381486602127552, -0.005438453517854214, 0.09871058911085129, -0.020263688638806343, -0.008653715252876282, -0.07570493221282959, -0.011903432197868824, -0.007252921815961599, -0.0399712510406971, -0.04259929060935974, -0.04303518310189247, -0.0034505175426602364, 0.03486005216836929, -0.01144559308886528, -0.009155761450529099, -0.04349265992641449, -0.01662760227918625, -0.04648839682340622, 0.08923573046922684, -0.02377098798751831, 0.07070497423410416, -0.007186914794147015, 0.024818409234285355, 0.016049817204475403, 0.01845281571149826, -0.10636943578720093, -0.001793659757822752, 0.012770578265190125, 0.03982936963438988, -0.03838953748345375, -0.002543034730479121, -0.024866847321391106, -0.037480346858501434, 0.03689955919981003, -0.07024649530649185, -0.03986455500125885, -0.054878175258636475, 0.000874550431035459, -0.0270899198949337, -0.021212833002209663, -0.020547160878777504, 0.07855137437582016, 0.006845525000244379, 0.023077376186847687, 0.011508239433169365, 0.010079692117869854, -0.0051288846880197525, -0.01876259222626686, -0.08839107304811478, 0.03175697103142738, 0.0028622134122997522, -0.013960582204163074, 0.017686940729618073, 0.05881894752383232, 0.02815818041563034, -0.04293154552578926, 0.024253366515040398, -0.027698731049895287, -0.0023909839801490307, 0.008453108370304108, 0.03621133044362068, -0.006290075834840536, -0.006307252217084169, 0.042376577854156494, -0.010206371545791626, -0.0348401702940464, 0.025377700105309486, 0.030344629660248756, -0.006175097543746233, 0.0254173893481493, 0.0011989081976935267, -0.014306962490081787, 0.0049142553471028805, -0.010491428896784782, 0.043701644986867905, -0.009905175305902958, 0.002130370121449232, 0.006979566067457199, -0.00617327680811286, -0.05966818332672119, 0.03736179694533348, 0.026651840656995773, -0.03226475417613983, -0.007145321927964687, -0.02580864541232586, -0.048968032002449036, 0.0888410359621048, 0.003752384800463915, -0.24024008214473724, 0.014418610371649265, 0.05860888212919235, 0.0225644763559103, -0.018512895330786705, 0.0395241305232048, 0.039862170815467834, -0.05011143907904625, 0.013171616941690445, 0.01599850319325924, 0.02001243084669113, 0.013676312752068043, 0.010520043782889843, -0.024537036195397377, 0.04760800302028656, -0.010283208452165127, 0.06814499199390411, -0.024494873359799385, 0.03288661688566208, 0.011884951964020729, 0.02276129461824894, -0.01281130313873291, 0.16467736661434174, 0.0026910551823675632, 0.02386518195271492, 0.03501912206411362, -0.007559253368526697, 0.007895318791270256, 0.06765509396791458, 0.034243665635585785, 0.02980864979326725, 0.006803241092711687, 0.049073725938797, 0.020091529935598373, -0.005968112964183092, -0.06626769155263901, -0.013186878524720669, 0.01926548033952713, 0.02889563888311386, -0.000923450046684593, 0.017574159428477287, 0.004826207645237446, -0.026626519858837128, 0.03423694521188736, 0.07262884825468063, -0.020615609362721443, -0.03498423472046852, -0.0739583820104599, -0.05109706521034241, -0.017864102497696877, -0.03693452477455139, -0.04110579565167427, 0.004605005495250225, -0.02790140174329281, 0.022859720513224602, 0.07186360657215118, 0.0274029690772295, -0.024785783141851425, -0.007940977811813354, -0.019173264503479004, -0.01325028296560049, -0.012787322513759136, 0.11855518072843552, 0.027633991092443466, 0.057441066950559616 ]
[ 0.01902574487030506, 0.018674517050385475, -0.007273430470377207, 0.017156941816210747, 0.0010030551347881556, 0.011359441094100475, 0.011342896148562431, 0.00606567645445466, -0.01340942457318306, -0.0010208006715402007, -0.01147528551518917, 0.03344370424747467, 0.012503568083047867, -0.006387890316545963, 0.009270425885915756, 0.0027242526412010193, -0.0006120172911323607, -0.030032888054847717, 0.030108043923974037, 0.018771642819046974, -0.013393723405897617, -0.0032711706589907408, -0.030160346999764442, -0.009845370426774025, -0.00981504563242197, 0.018890878185629845, -0.007187812123447657, 0.015835901722311974, 0.029533907771110535, -0.11084522306919098, -0.01848737895488739, -0.0023908584844321012, 0.01766236498951912, -0.00021043508604634553, 0.023113051429390907, 0.015253718011081219, 0.014353522099554539, -0.006749850232154131, -0.004319992382079363, -0.010797352530062199, -0.016313819214701653, -0.005025738384574652, -0.010920208878815174, 0.008533705957233906, -0.008851036429405212, 0.01787283644080162, 0.017658045515418053, -0.04146154969930649, -0.031013406813144684, -0.027364075183868408, -0.03518463671207428, -0.007623724639415741, -0.019764238968491554, -0.02472355216741562, 0.03614049404859543, 0.019740812480449677, 0.019063007086515427, -0.015984980389475822, -0.002300371415913105, -0.043577153235673904, -0.004183982498943806, -0.04347733035683632, -0.06497922539710999, -0.017546262592077255, 0.01254002284258604, 0.022081997245550156, -0.012942502275109291, 0.012242399156093597, -0.04057660698890686, -0.0071465917862951756, 0.008212617598474026, -0.002670879242941737, -0.031122272834181786, -0.03211310878396034, 0.019179368391633034, 0.00912440288811922, 0.005124411545693874, -0.005928562022745609, 0.01663718931376934, -0.008145109750330448, -0.03857129067182541, 0.024877363815903664, -0.0020084024872630835, -0.014307619072496891, -0.001418559462763369, -0.010421368293464184, 0.029279831796884537, -0.014251451939344406, 0.022052627056837082, 0.0029140575788915157, -0.02300756424665451, 0.030945146456360817, -0.0061535402201116085, 0.01570090278983116, -0.06262555718421936, -0.011217435821890831, -0.0015176194719970226, -0.03558562695980072, -0.017977355048060417, 0.873868465423584, -0.014077046886086464, 0.027269355952739716, 0.027610361576080322, 0.007045907899737358, -0.0282219797372818, 0.011971519328653812, 0.009501837193965912, 0.014554627239704132, 0.018977710977196693, -0.023456024006009102, -0.0050575886853039265, 0.030037960037589073, 0.014095875434577465, 0.010813730768859386, 0.029762176796793938, 0.004806140437722206, -0.01220722496509552, -0.0015017985133454204, -0.005148982163518667, 0.003476844634860754, 0.02241002768278122, 0.01956498622894287, -0.0035905896220356226, 0.029984889551997185, 0.02432435378432274, -0.1860041618347168, -0.021837858483195305, -9.167939050820201e-33, 0.019000928848981857, 0.0011319332988932729, -0.003991700708866119, 0.003612036583945155, 0.004470080602914095, -0.0023673400282859802, 0.05027127265930176, 0.014958646148443222, 0.008772069588303566, -0.009572387672960758, -0.0014951108023524284, 0.010564912110567093, -0.0021058074198663235, -0.008455745875835419, 0.029550205916166306, -0.024907222017645836, 0.0002373654569964856, 0.030199527740478516, -0.020241566002368927, 0.04083172231912613, 0.024645604193210602, 0.028042085468769073, 0.006947478745132685, -0.003172899130731821, 0.012602661736309528, 0.015717949718236923, 0.00965120829641819, 0.0012277778005227447, 0.019413510337471962, -0.04335520789027214, -0.020857645198702812, 0.04085675626993179, 0.0013850450050085783, -0.030259696766734123, -0.013430933468043804, -0.029797902330756187, -0.04650050401687622, -0.005492768250405788, 0.008420450612902641, -0.0016535253962501884, -0.026957515627145767, -0.0020558671094477177, -0.04473250359296799, -0.024042975157499313, -0.010120869614183903, -0.0027242416981607676, 0.017556214705109596, 0.03409907594323158, 0.007778035942465067, -0.01686449721455574, 0.02078748494386673, 0.013782787136733532, -0.0030069455970078707, 0.01580219529569149, -0.016231248155236244, -0.009144523181021214, -0.007181175518780947, 0.004146475810557604, 0.00026178816915489733, 0.019882332533597946, 0.010760358534753323, -0.004642814863473177, -0.02026958204805851, 0.007854933850467205, -0.029566483572125435, 0.003923586569726467, 0.00014411470328923315, 0.01474896352738142, 0.002765913726761937, -0.030553719028830528, -0.057748183608055115, -0.0015531688695773482, -0.004723750986158848, -0.00784253515303135, -0.0014320074114948511, -0.022902438417077065, -0.01095117162913084, 0.019260935485363007, -0.037056975066661835, 0.03822597116231918, -0.021149812266230583, 0.015079149045050144, -0.02663545496761799, -0.052071597427129745, -0.006070960778743029, 0.027808303013443947, 0.01600348763167858, -0.015298567712306976, 0.0034390275832265615, -0.0018929210491478443, 0.024646587669849396, -0.018551765009760857, -0.0012568229576572776, -0.00009489749209024012, 0.008286598138511181, 8.610106002585577e-33, -0.0062819840386509895, -0.04427470266819, -0.03629200533032417, 0.00377974146977067, 0.033983681350946426, 0.002567840740084648, 0.00752991484478116, -0.017776068300008774, -0.06206521391868591, 0.028509434312582016, -0.04067239910364151, -0.004757001530379057, -0.03952328488230705, 0.0017850856529548764, 0.031352367252111435, -0.02747025154531002, 0.03936862200498581, -0.03997810184955597, 0.047778449952602386, 0.013951728120446205, 0.03823888301849365, 0.01754116639494896, 0.0013310492504388094, -0.009023519232869148, 0.029361844062805176, 0.0602278932929039, -0.010306364856660366, 0.011110332794487476, 0.018854724243283272, 0.00435708137229085, -0.010723884217441082, 0.012168856337666512, 0.00008095290831988677, -0.010026184841990471, -0.014296473935246468, 0.03209955245256424, -0.031163420528173447, -0.03629223629832268, -0.005496097728610039, 0.020189234986901283, 0.0015026865294203162, -0.020567866042256355, -0.008633804507553577, 0.022464601323008537, 0.019785454496741295, 0.020597737282514572, 0.014152317307889462, -0.01817397214472294, -0.0022041380871087313, 0.02873341366648674, 0.028569653630256653, 0.015505648218095303, 0.002294247504323721, -0.0028298739343881607, -0.0006376998499035835, -0.027997277677059174, -0.0159717109054327, -0.017511434853076935, 0.012914584949612617, -0.007000952959060669, -0.004808121360838413, 0.016835741698741913, -0.01727045513689518, 0.013894671574234962, -0.03387822210788727, 0.012499048374593258, 0.01918722875416279, -0.02148745208978653, 0.013623316772282124, -0.017177103087306023, -0.06361595541238785, 0.01980460062623024, 0.0055639068596065044, 0.0404580719769001, -0.010747101157903671, -0.0015403344295918941, -0.031004229560494423, -0.003156208898872137, -0.016704684123396873, 0.0014444149564951658, -0.012297959066927433, 0.03080632910132408, 0.00456699263304472, -0.0020690918900072575, -0.022536639124155045, -0.003373872023075819, -0.02687932178378105, 0.004288320895284414, -0.018802791833877563, -0.0039216699078679085, -0.01711403764784336, -0.02180975303053856, 0.04119858518242836, 0.015994783490896225, -0.006052389740943909, -1.4553893201707524e-8, -0.005842925980687141, 0.030026977881789207, -0.021867074072360992, -0.0027994790580123663, 0.011010007001459599, -0.00042118586134165525, -0.011427133344113827, 0.024796025827527046, -0.0039033980574458838, 0.007509129121899605, 0.0589977391064167, -0.03317033872008324, 0.004961267113685608, 0.01687593199312687, 0.019137926399707794, -0.028761684894561768, -0.008860050700604916, -0.020008938387036324, 0.021685665473341942, 0.01932646334171295, 0.025550706312060356, 0.06401270627975464, -0.015145581215620041, 0.032425813376903534, -0.00958438590168953, -0.02049368992447853, -0.012637141160666943, -0.07212869822978973, -0.0007597209769301116, 0.004521836526691914, 0.014402098022401333, -0.02202228084206581, -0.0013137530768290162, 0.029856106266379356, -0.017648937180638313, -0.0165738333016634, 0.038041479885578156, 0.042154841125011444, 0.015541544184088707, -0.002734722103923559, -0.02013734169304371, 0.0106118842959404, -0.012418228201568127, -0.030280180275440216, -0.026168184354901314, -0.0033126079943031073, -0.04751177132129669, -0.02780252881348133, 0.017427654936909676, -0.035494036972522736, 0.008059284649789333, 0.005050043575465679, 0.0226580873131752, 0.04240461811423302, 0.008302670903503895, 0.019233116880059242, -0.010959750972688198, -0.03445911407470703, -0.02518954686820507, -0.011887708678841591, -0.01139728631824255, 0.020868664607405663, -0.017636356875300407, -0.020396748557686806 ]
crystal-clear-book-review
https://markhneedham.com/blog/2008/11/05/crystal-clear-book-review
false
2008-11-05 23:48:54
Pair Programming: The Over Eager Driver
[ "pairing", "xp", "agile", "pair-programming" ]
[ "Pair Programming" ]
One of the interesting situations that can arise when pair programming is that one person dominates the driving and their pair can hardly get a look in. This is not necessarily because they are hogging the keyboard - it is often just the case that they are the stronger technically in the pair and the other person isn't willing to ask for the keyboard. A big part of the value in pair programming comes from having both people taking turns at driving and navigating from my experience and there are several ideas that I have come across for trying to encourage a more collaborative approach to pair programming. == Ping Pong Pairing The idea of this approach is to encourage the switching of the keyboard between both people very explicitly. Based on the assumption that we are adopting a TDD approach, the first person starts out by writing the test, then they switch and the second person writes the code to make the test pass. Then they write the next test and the first person writes the code to make that test pass. With this approach both people end up with fairly equal keyboard time and will hopefully feel more involved in the development effort. My colleague Sam Newman previously http://www.magpiebrain.com/blog/2007/02/13/pairing-pattern-ping-pong-pairing/[wrote about ping pong pairing], including an approach to ensure that both members get exactly the same amount of keyboard time per day. == Learning the Art of Navigating As a general rule I think the majority of people find it much easier to drive than to navigate. When navigating it often feels that you are not adding value and it sometimes becomes confusing as to exactly http://www.markhneedham.com/blog/2008/02/14/pair-programming-the-non-driving-pair/[what you should be doing]. Having said that I have worked with some phenomenally good navigators during my time pair programming. While I don't claim to know how to teach someone how to be a good navigator (I'm still working on it myself), there do seem to be some distinct skills that you can apply to carry out this role effectively. * Keeping an eye on the big picture - are we solving the right problem, has this piece of code become too difficult to test, are we testing it in the correct way etc. * Tracking the tasks needed to complete a story and being ready to continue with the next one when the driver has finished the current one. * Sharing tips on how to navigate around the workspace more effectively - keyboard shortcuts, different tools etc. If we can become equally effective at contributing as both a navigator and a driver then it doesn't become so imperative to drive all the time. == Two of everything This was an approach I was introduced to more recently and involves having two keyboards and two mice connected to the workstation. The benefit of this approach is that the difficulty of prising the keyboard away is removed and we can just grab our own keyboard and start typing when we have some input to make. Clearly this needs to be done relatively sensibly otherwise otherwise we end up with both people typing or moving the mouse at the same time. From my experience of this technique that actually rarely happens. There is also an increased spending on equipment but I wouldn't imagine this would be that significant.
null
null
[ -0.007075443863868713, 0.009005560539662838, 0.016251564025878906, 0.02946433052420616, 0.08448086678981781, 0.021957481279969215, 0.024870403110980988, 0.047687821090221405, 0.026620564982295036, -0.03908997401595116, -0.009763102047145367, 0.016357524320483208, -0.044659268110990524, -0.01947924867272377, -0.03451988101005554, 0.08556289225816727, 0.077901192009449, -0.01665889285504818, -0.006074645556509495, -0.008215603418648243, 0.046059947460889816, 0.05752499774098396, 0.043263982981443405, 0.052755557000637054, 0.03607485070824623, 0.00863669440150261, -0.0020358918700367212, 0.0012220034841448069, -0.051185525953769684, -0.010716055519878864, 0.05013033375144005, -0.009203743189573288, 0.009915372356772423, -0.010987482964992523, 0.009556642733514309, -0.012037009932100773, -0.002986668376252055, 0.03188322111964226, 0.031254589557647705, 0.024676956236362457, -0.06599055975675583, 0.03186013177037239, -0.011884057894349098, 0.01278951857239008, -0.027392733842134476, 0.014079038053750992, -0.051967959851026535, 0.0065748430788517, 0.016125081107020378, -0.010481009259819984, -0.057707928121089935, 0.04221144691109657, 0.010293258354067802, 0.03459455445408821, -0.0003367470344528556, 0.03545837849378586, 0.04560140147805214, -0.06652898341417313, 0.019113194197416306, -0.04623393714427948, 0.009139771573245525, 0.024476388469338417, 0.007186553906649351, 0.034009698778390884, 0.01894771307706833, -0.019575001671910286, 0.022065943107008934, 0.03754765912890434, -0.03629489243030548, 0.019540945068001747, -0.01704208180308342, 0.008948580361902714, -0.01760951615869999, -0.04613635689020157, 0.007053101900964975, -0.03979102894663811, 0.0009640429052524269, 0.044977348297834396, 0.04877878725528717, 0.02162172645330429, 0.002757181180641055, 0.012199623510241508, -0.0003771187039092183, 0.05008665472269058, -0.027575138956308365, -0.0331149585545063, 0.01116927806288004, -0.04010780155658722, -0.06446081399917603, 0.05265996232628822, -0.004079115577042103, -0.07283663749694824, 0.0049753328785300255, 0.03288361802697182, -0.022910313680768013, 0.008741186000406742, 0.04282836243510246, 0.004395794589072466, -0.003048822982236743, -0.009521661326289177, 0.008145773783326149, -0.031872041523456573, 0.0003875390684697777, 0.032481711357831955, -0.08427939563989639, 0.010140137746930122, -0.012793406844139099, -0.005367533769458532, -0.000539697939530015, 0.03411024436354637, -0.038998063653707504, 0.0007541397353634238, 0.0028091934509575367, 0.01271202601492405, -0.08214228600263596, 0.06948283314704895, -0.0036057881079614162, -0.04151112213730812, -0.015012620948255062, 0.004592409357428551, 0.04313022270798683, 0.030083242803812027, -0.009829252026975155, 0.06419771164655685, 0.011374033987522125, 0.027107736095786095, -0.013498629443347454, 0.059087127447128296, -0.006048239301890135, -0.05416832119226456, 0.010517364367842674, 0.045858342200517654, -0.0218802560120821, -0.0044613550417125225, -0.0012592371786013246, -0.024248886853456497, 0.00770905427634716, 0.014569980092346668, -0.000011176486623298842, 0.0713307112455368, -0.012970968149602413, -0.028997842222452164, 0.0474875308573246, -0.0001549549342598766, 0.01645859144628048, -0.012143232859671116, -0.005105520132929087, 0.00004504379103309475, -0.04676705598831177, 0.008717399090528488, 0.016667578369379044, 0.015790920704603195, 0.01568320207297802, -0.051206208765506744, 0.008085803128778934, 0.07491793483495712, 0.01735473796725273, 0.013716942630708218, -0.033816464245319366, 0.03364991024136543, 0.02712271921336651, 0.01516156829893589, -0.009191954508423805, 0.019762637093663216, 0.01961505226790905, 0.0004600237007252872, 0.006578437983989716, 0.06004074588418007, 0.001492967247031629, 0.030957886949181557, -0.06343983858823776, -0.01660209335386753, 0.05394798144698143, -0.07119859009981155, -0.042664770036935806, 0.03325405344367027, 0.06953464448451996, 0.027975643053650856, 0.02880055084824562, -0.0025792978703975677, -0.07735364139080048, 0.02295525185763836, 0.017395341768860817, 0.02367831952869892, 0.015468467026948929, -0.016910670325160027, 0.04407472908496857, 0.03647281229496002, -0.03809141740202904, 0.025936253368854523, -0.05472846329212189, -0.0831407681107521, -0.015568381175398827, -0.02489045076072216, 0.054414790123701096, -0.048045869916677475, 0.01716926135122776, 0.054644715040922165, 0.027468813583254814, 0.050851970911026, 0.009352444671094418, -0.004703500773757696, 0.02268037013709545, -0.033334989100694656, -0.05308769270777702, 0.0666608065366745, 0.03972718492150307, -0.023297294974327087, -0.057067397981882095, 0.006371785886585712, -0.015324517153203487, -0.02407192438840866, 0.02614627778530121, -0.008244170807301998, 0.05135257542133331, 0.0005924873985350132, 0.04997357353568077, -0.015387055464088917, 0.033843960613012314, -0.04488976672291756, -0.022157683968544006, 0.010881394147872925, -0.00919409841299057, 0.03659627214074135, 0.00819223839789629, 0.12271281331777573, 0.060518015176057816, -0.05119903385639191, -0.05497106909751892, 0.035979826003313065, 0.01069580391049385, -0.03751886263489723, 0.004357929807156324, -0.01456510554999113, -0.0045031714253127575, -0.0061081633903086185, -0.061501991003751755, -0.045563388615846634, 0.017081258818507195, -0.042750000953674316, -0.013618255965411663, 0.08081696927547455, -0.03274402767419815, 0.07020939141511917, -0.03310149535536766, -0.02365908771753311, 0.0018459028797224164, -0.010605436749756336, -0.031581390649080276, 0.002256005769595504, 0.013004234060645103, -0.015636203810572624, 0.03744883090257645, -0.021511739119887352, -0.023264205083251, -0.03535789996385574, -0.0281818900257349, -0.002989997388795018, 0.05714571103453636, 0.04403490945696831, 0.0032450538128614426, 0.07229605317115784, -0.005237554665654898, 0.025405358523130417, -0.024662591516971588, -0.06802394241094589, -0.03802070394158363, -0.015492099337279797, 0.0024997524451464415, 0.041692327708005905, -0.006714205257594585, 0.00778145482763648, 0.013363317586481571, -0.012775051407516003, -0.016278807073831558, 0.0028664679266512394, 0.011054785922169685, 0.014202412217855453, -0.0005452770856209099, -0.02304708957672119, -0.00957370176911354, 0.051867786794900894, -0.034857504069805145, -0.014607165940105915, 0.011374988593161106, -0.06178222969174385, 0.03484516218304634, -0.06754614412784576, -0.06764832139015198, 0.011820842511951923, 0.028987817466259003, 0.05304333567619324, 0.0017109946347773075, 0.01026403158903122, 0.07691822946071625, 0.019033286720514297, 0.01704825460910797, 0.0047151013277471066, 0.0011387612903490663, 0.039305176585912704, 0.017267361283302307, 0.006680486258119345, 0.02292853221297264, -0.011340813711285591, -0.003330772975459695, -0.06092781946063042, 0.052795931696891785, -0.02754170633852482, -0.30398523807525635, 0.025522975251078606, 0.001965524861589074, -0.0341930016875267, 0.02078796923160553, -0.015779618173837662, 0.019999010488390923, -0.041375692933797836, -0.03332645446062088, 0.03651491552591324, -0.0380040667951107, -0.031058134511113167, -0.019690999761223793, 0.033298976719379425, 0.001959266373887658, 0.02100745588541031, 0.012608082965016365, -0.061004091054201126, 0.008203388191759586, 0.04091494902968407, 0.0005385730182752013, -0.09214777499437332, -0.0009596918243914843, 0.03689676523208618, 0.040734533220529556, 0.06163626164197922, -0.07349991798400879, 0.010320083238184452, -0.048802450299263, 0.0063261971808969975, 0.010126532055437565, 0.024343617260456085, 0.0003352749045006931, -0.03335016220808029, -0.0012927373172715306, -0.02274252101778984, 0.040598064661026, -0.010564926080405712, 0.0022367644123733044, 0.02295444719493389, -0.034402333199977875, -0.022461483255028725, -0.005720086861401796, 0.031303729861974716, 0.07484406977891922, -0.007317256182432175, -0.06850931793451309, 0.025148829445242882, -0.01595105044543743, 0.07544992864131927, -0.04904331639409065, -0.024404294788837433, -0.011942913755774498, 0.03961687907576561, -0.0029811314307153225, -0.03364052250981331, -0.014850317500531673, -0.012433384545147419, -0.01058987621217966, -0.027993470430374146, -0.021899113431572914, -0.0220506489276886, -0.021990865468978882, -0.05249820649623871, 0.021038895472884178, -0.060062047094106674, -0.056424375623464584, -0.016202030703425407, 0.06940846145153046, 0.021645842120051384, -0.050620097666978836, -0.014135667122900486, -0.012679138220846653, -0.1133304238319397, -0.005621443036943674, 0.03566618263721466, -0.02626906707882881, -0.006703559309244156, 0.004902559798210859, 0.06270589679479599, -0.029538340866565704, -0.06670121103525162, 0.020277338102459908, 0.001231622532941401, 0.027058398351073265, -0.019488630816340446, 0.01190298143774271, 0.004428795073181391, -0.006273744627833366, -0.00025937065947800875, 0.0779327005147934, -0.019364286214113235, -0.03091510199010372, -0.03892148286104202, 0.023056041449308395, 0.0022910048719495535, 0.02483171597123146, -0.0009738116059452295, -0.004411986097693443, 0.015498463064432144, -0.0074333068914711475, -0.05666409060359001, 0.027984734624624252, -0.0023103670682758093, 0.009089900180697441, -0.019292077049613, -0.04223441332578659, 0.026284176856279373, 0.047303348779678345, 0.03852976858615875, -0.006982946302741766, -0.019735699519515038, 0.0061644939705729485, -0.029346510767936707, -0.017662983387708664, -0.041963495314121246, 0.017118560150265694, 0.03282354772090912, -0.012170874513685703, -0.008072762750089169, -0.05935576558113098, -0.0027896829415112734, -0.0019735784735530615, 0.006845853291451931, -0.0655982568860054, -0.007181142456829548, -0.026903348043560982, -0.03381763771176338, 0.00872263964265585, 0.02889227122068405, -0.0009676538757048547, 0.041432373225688934, 0.01926616206765175, -0.03145614266395569, 0.00037908018566668034, -0.02453240379691124, -0.055607229471206665, -0.008067487739026546, -0.01024340558797121, -0.009134674444794655, 0.010488949716091156, 0.010368154384195805, 0.0012523067416623235, 0.005969659890979528, 0.01689738593995571, -0.0005590019281953573, 0.01024647243320942, -0.01323710661381483, 0.006938794162124395, 0.013507889583706856, 0.021346114575862885, -0.06143033504486084, 0.019457830116152763, -0.035742051899433136, -0.01830676570534706, -0.02468057908117771, 0.0230695940554142, -0.007889960892498493, -0.03745804727077484, -0.010459058918058872, 0.021243656054139137, -0.04041869193315506, -0.03274984657764435, -0.03507743403315544, 0.04251083359122276, 0.07103600353002548, -0.008584908209741116, 0.014557157643139362, -0.01858239434659481, -0.0071359057910740376, 0.014250765554606915, 0.004662765190005302, -0.06934789568185806, 0.00036856019869446754, 0.004651505500078201, -0.015224325470626354, -0.01628001406788826, -0.0227221567183733, 0.037629544734954834, -0.004079602193087339, 0.00025009800447151065, -0.012755551375448704, 0.003021407639607787, 0.007444145157933235, 0.06346152722835541, 0.0075197662226855755, 0.0032703890465199947, -0.021525781601667404, -0.0014643624890595675, -0.020182309672236443, -0.0386284776031971, -0.022473566234111786, -0.006483959965407848, 0.014259840361773968, -0.04422406107187271, -0.06066609546542168, 0.024478845298290253, 0.04795750230550766, -0.010324694216251373, 0.02939135767519474, -0.0036677145399153233, -0.004419053439050913, -0.018212949857115746, 0.044117193669080734, 0.09139163792133331, -0.05956181511282921, 0.022718364372849464, 0.0011167122283950448, -0.013355625793337822, 0.014186411164700985, -0.012459821999073029, -0.03566502779722214, -0.009828460402786732, -0.019204353913664818, -0.002931721042841673, -0.05792423337697983, -0.02896105870604515, -0.019591020420193672, 0.004713680129498243, 0.022927282378077507, -0.018605099990963936, -0.010316451080143452, -0.032115060836076736, -0.03337125480175018, -0.0279372725635767, 0.012627055868506432, -0.056035514920949936, 0.004499993287026882, 0.04433927312493324, -0.02813625894486904, -0.004283659625798464, -0.03537330403923988, 0.029691731557250023, 0.027569666504859924, -0.02934480458498001, -0.025362880900502205, -0.05494621396064758, 0.002907019341364503, -0.009756159037351608, 0.03875485807657242, 0.013262314721941948, -0.033964429050683975, -0.04503656551241875, 0.0033757206983864307, -0.04154356196522713, 0.009679087437689304, -0.009217729791998863, -0.009399807080626488, 0.02896994911134243, 0.0565892718732357, 0.01931098662316799, 0.021820886060595512, -0.013988836668431759, -0.0023470954038202763, 0.02575581893324852, -0.052199166268110275, -0.030683573335409164, -0.016160275787115097, -0.04975572228431702, 0.005429891403764486, -0.012549063190817833, 0.023459816351532936, -0.04637519270181656, 0.02652658522129059, 0.002598515013232827, 0.014843642711639404, 0.01421984564512968, -0.007365071214735508, 0.029874291270971298, -0.05236319079995155, 0.026862462982535362, -0.09495312720537186, 0.019796477630734444, 0.02149650640785694, 0.0030067777261137962, -0.020490407943725586, 0.032602086663246155, -0.030556611716747284, 0.03519883751869202, -0.07792816311120987, -0.0060387481935322285, 0.04461389780044556, -0.011276685632765293, -0.017127901315689087, 0.0014027125434949994, -0.07612176239490509, 0.031024033203721046, -0.005434406455606222, -0.02626750059425831, -0.032056424766778946, -0.005498167127370834, 0.04667611047625542, 0.012369805946946144, 0.04772394895553589, -0.01761721447110176, -0.020221075043082237, 0.0846707820892334, 0.002254995983093977, 0.002203429816290736, 0.04487937316298485, -0.013417297042906284, 0.05598888546228409, 0.033553723245859146, 0.014600678347051144, 0.005827075801789761, 0.0016747460467740893, -0.003719680942595005, -0.06569515913724899, 0.04572411626577377, 0.006314704194664955, -0.016816580668091774, -0.0364496149122715, 0.05149819701910019, 0.027127793058753014, -0.031154314056038857, -0.04417906329035759, 0.025277523323893547, -0.063593789935112, -0.008850572630763054, 0.0017112982459366322, -0.009272117167711258, -0.04368635267019272, 0.04495248571038246, 0.005408389959484339, 0.010393744334578514, 0.048792436718940735, 0.03116803616285324, -0.047445148229599, -0.005397201050072908, 0.1085396334528923, 0.07988930493593216, 0.06491313129663467, 0.0363280326128006, 0.07341767102479935, -0.01746053621172905, -0.041382305324077606, 0.021543441340327263, -0.005910154897719622, -0.03958021476864815, -0.02523967996239662, 0.01294338796287775, 0.05705094709992409, -0.007803541142493486, 0.05598563328385353, -0.004106133710592985, -0.029388967901468277, 0.020942168310284615, 0.03293587267398834, 0.006146075204014778, 0.05792004615068436, 0.027713477611541748, 0.02011578157544136, -0.030547212809324265, -0.049215130507946014, 0.042549945414066315, -0.030100693926215172, -0.007431990001350641, -0.010298439301550388, -0.02366407960653305, 0.03270156681537628, 0.020481929183006287, 0.029094701632857323, 0.09506972879171371, -0.041108787059783936, 0.011738990433514118, -0.003262976184487343, 0.03105047345161438, -0.009080039337277412, 0.015498260036110878, -0.01741565763950348, -0.005499520339071751, -0.00876804068684578, -0.012838173657655716, -0.013712252490222454, -0.0403783842921257, -0.011111192405223846, 0.04116182401776314, -0.03962111473083496, 0.008774002082645893, 0.03285783529281616, 0.012929948978126049, -0.02915840782225132, -0.06575482338666916, -0.05098515748977661, -0.026618581265211105, -0.03418566286563873, -0.03111506626009941, 0.01711106486618519, -0.005272283218801022, -0.025661993771791458, -0.004599614534527063, -0.02594567835330963, -0.02585498057305813, 0.01770828478038311, -0.05644892156124115, -0.0573548898100853, 0.03402278572320938, 0.019432567059993744, 0.040826451033353806, 0.024948937818408012, 0.05183512717485428, 0.004483079072088003, -0.00568520650267601, -0.036147259175777435, -0.009092374704778194, 0.03591827675700188, -0.008113385178148746, 0.0006207384285517037, -0.09260866045951843, 0.0033884940203279257, 0.01985977217555046, 0.014915695413947105, -0.06285258382558823, 0.01911519467830658, 0.007444951217621565, 0.01839837245643139, 0.05278420075774193, -0.03585442155599594, 0.026888148859143257, -0.05050337314605713, 0.012698164209723473, 0.002675185212865472, 0.01685270294547081, 0.04805687814950943, -0.02797575108706951, 0.08905311673879623, -0.012203642167150974, -0.014260894618928432, -0.03804931044578552, -0.017724215984344482, 0.005194658413529396, -0.007025392260402441, -0.005778010003268719, -0.044162552803754807, -0.011633332818746567, -0.09677200764417648, -0.01537568774074316, -0.00020330479310359806, -0.014737902209162712, -0.026856284588575363, 0.032374296337366104, 0.015237036161124706, -0.0018794996431097388, 0.036063238978385925, -0.04797585681080818, 0.013840319588780403, -0.020951077342033386, -0.004043377935886383, 0.015610151924192905, 0.004719161428511143, -0.053346432745456696, -0.01280208583921194, 0.025032419711351395, -0.04146703705191612, 0.004268708638846874, -0.00919585395604372, 0.02869165502488613, 0.025692671537399292, -0.0021032625809311867, -0.016069011762738228 ]
[ -0.09580440819263458, -0.010142377577722073, -0.022905418649315834, -0.03738211840391159, -0.021250732243061066, -0.0024251919239759445, 0.009058116003870964, 0.00802348367869854, -0.0015150276012718678, -0.058056578040122986, -0.045430392026901245, -0.014658017084002495, 0.02997192181646824, -0.014814188703894615, 0.07134457677602768, -0.0004559802182484418, -0.0026132685597985983, -0.057959362864494324, 0.029156455770134926, 0.020267335698008537, -0.011720463633537292, -0.05055733770132065, -0.05582679808139801, -0.03508080542087555, -0.004070056136697531, 0.05018060281872749, 0.036883991211652756, -0.037764184176921844, 0.01532833930104971, -0.19551682472229004, -0.0035980057436972857, 0.022944148629903793, 0.05189890041947365, -0.00012453216186258942, -0.05471005290746689, 0.04029963165521622, 0.0022451530676335096, 0.021605508401989937, -0.0015335000352934003, -0.010706339031457901, 0.016583196818828583, -0.010374176315963268, -0.037857893854379654, -0.033136896789073944, 0.033113542944192886, 0.024484416469931602, -0.01117679849267006, -0.04737161099910736, 0.008597057312726974, 0.0031812498345971107, -0.06461839377880096, -0.04426779970526695, -0.0024467715993523598, -0.03200002759695053, 0.013779892586171627, 0.033181022852659225, 0.038324158638715744, 0.04396270215511322, -0.00736205792054534, 0.02821579948067665, -0.0032641433645039797, -0.010722603648900986, -0.1288541853427887, 0.06571146100759506, 0.04298276826739311, 0.05330868437886238, -0.02748575620353222, -0.010089556686580181, -0.005170851945877075, 0.09444427490234375, 0.013515074737370014, -0.018539775162935257, -0.028390122577548027, 0.04523174464702606, 0.01431491319090128, -0.011265088804066181, -0.030728334560990334, 0.03129638358950615, 0.020762741565704346, -0.029050955548882484, -0.0271818395704031, -0.0083245187997818, -0.02392532303929329, -0.003920500632375479, -0.03348210081458092, 0.026220861822366714, -0.01756991818547249, 0.01555820181965828, 0.005445134826004505, -0.0055666593834757805, 0.035365160554647446, -0.01883838139474392, 0.010206065140664577, -0.02069810964167118, -0.08515971899032593, -0.005105108488351107, 0.021373264491558075, 0.007100102957338095, -0.060549233108758926, 0.46382349729537964, -0.03615447133779526, -0.00229638977907598, 0.08659712970256805, 0.014112579636275768, -0.023667968809604645, -0.002503518247976899, 0.016844509169459343, -0.04872240498661995, 0.011470687575638294, -0.022884884849190712, 0.02628348395228386, 0.004976579453796148, 0.05927755683660507, -0.0010970912408083677, -0.000711849716026336, 0.07990094274282455, 0.04024272412061691, 0.04892180860042572, 0.02712550386786461, -0.011834143660962582, -0.024262961000204086, -0.006876592058688402, 0.008700672537088394, 0.001097662141546607, -0.012082234025001526, -0.0755847841501236, 0.030153470113873482, 0.051090773195028305, 0.016457518562674522, 0.0006677954806946218, 0.06303342431783676, -0.05243447795510292, -0.03798595070838928, 0.021240731701254845, -0.022494735196232796, -0.015225944109261036, 0.01909608393907547, -0.017277086153626442, -0.00968104600906372, 0.05126176029443741, 0.01834845170378685, -0.036414604634046555, 0.05606359988451004, -0.021563613787293434, -0.011128324083983898, 0.12239018827676773, 0.0006686791311949492, -0.051778506487607956, 0.004172465298324823, -0.02419646829366684, 0.01349263172596693, 0.0031497341115027666, -0.012718579731881618, -0.06539127975702286, 0.014359829016029835, 0.01625896245241165, 0.12568490207195282, -0.008852984756231308, -0.0745452344417572, 0.025185076519846916, -0.021282654255628586, -0.03630951792001724, -0.08004584163427353, 0.015273084864020348, 0.10299448668956757, -0.09783440083265305, -0.010739297606050968, -0.005179157480597496, 0.009619232267141342, -0.06542743742465973, -0.011159817688167095, -0.0013553560711443424, -0.025427762418985367, 0.011773399077355862, 0.04632483422756195, -0.01271732896566391, -0.045669376850128174, 0.0293898768723011, 0.017684446647763252, 0.00733154034242034, 0.004909312352538109, 0.013425552286207676, -0.04885071516036987, -0.015358737669885159, -0.01645554043352604, -0.049133721739053726, -0.04879462346434593, -0.009115591645240784, -0.03252532705664635, 0.00419914023950696, 0.006346315145492554, -0.02848908305168152, -0.07791881263256073, 0.09196222573518753, -0.03490998595952988, -0.04461459070444107, 0.022602206096053123, -0.03272475302219391, -0.042438577860593796, -0.0327419675886631, -0.03966844081878662, 0.016408728435635567, -0.023557748645544052, 0.023197483271360397, -0.056928712874650955, 0.0312800407409668, 0.04208512604236603, -0.037076301872730255, 0.09550400078296661, 0.06808704137802124, -0.001367755001410842, -0.057794783264398575, 0.0186822097748518, 0.02757067233324051, -0.0028870790265500546, -0.04301609471440315, -0.015062411315739155, 0.03748641908168793, -0.012753956019878387, 0.04340473935008049, -0.017678113654255867, 0.03404851630330086, 0.027282338589429855, -0.3297986388206482, -0.02089322730898857, -0.016767539083957672, 0.023340921849012375, 0.03467894345521927, -0.05099811404943466, 0.020476026460528374, 0.009358356706798077, -0.02662251517176628, -0.001009252853691578, 0.09326718002557755, -0.020132821053266525, 0.0009796612430363894, -0.05878182500600815, 0.004430265165865421, 0.04283818602561951, -0.03847584128379822, 0.012807518243789673, -0.010827396996319294, 0.029771065339446068, 0.012974985875189304, 0.019911950454115868, -0.03616831451654434, -0.03869614005088806, 0.01753789372742176, -0.02618217095732689, 0.10513050109148026, -0.012868691235780716, 0.09687422960996628, -0.043991632759571075, 0.03820003196597099, 0.014050260186195374, 0.019773703068494797, -0.08166839927434921, 0.01044614426791668, -0.005739431828260422, 0.026650847867131233, -0.05974457785487175, 0.027714861556887627, -0.042724765837192535, -0.06711987406015396, 0.010667252354323864, -0.05353595316410065, -0.025318505242466927, -0.07983190566301346, -0.003837116062641144, -0.037293314933776855, -0.03407217934727669, -0.018454071134328842, 0.07200081646442413, 0.038083385676145554, 0.004763334058225155, 0.009885396808385849, -0.02341618575155735, -0.01347081083804369, -0.04756399244070053, -0.07996563613414764, 0.0008487558225169778, 0.001728071249090135, -0.012060382403433323, 0.019165491685271263, 0.06770826131105423, 0.0351230762898922, -0.06997781991958618, 0.011931004002690315, 0.011694793589413166, -0.012020522728562355, -0.00007001320773269981, 0.04153253883123398, 0.021227307617664337, -0.02454078383743763, 0.06380486488342285, 0.008445016108453274, 0.006480771116912365, 0.004725662991404533, 0.023390311747789383, -0.0027213622815907, 0.045872803777456284, 0.029808150604367256, -0.017483871430158615, 0.02324952557682991, -0.01637495681643486, 0.04009208455681801, -0.0033622062765061855, 0.0055260867811739445, 0.004912838339805603, 0.035244420170784, -0.026332905516028404, 0.05254923179745674, 0.009747063741087914, -0.011477579362690449, 0.013342022895812988, 0.011284303851425648, -0.06236600875854492, 0.08072356134653091, -0.00011547409667400643, -0.27132171392440796, 0.001512177288532257, 0.03996964171528816, 0.04846296086907387, -0.023801662027835846, 0.030575815588235855, 0.023416917771100998, -0.022678516805171967, -0.03124009631574154, -0.020117130130529404, 0.00705974455922842, 0.029725149273872375, -0.016146916896104813, 0.02473980374634266, 0.03928810730576515, -0.006807797588407993, 0.0436369888484478, 0.011121434159576893, 0.013271878473460674, -0.025453656911849976, 0.014853681437671185, 0.014428037218749523, 0.15766169130802155, -0.0003420528373681009, 0.06346400082111359, 0.033991940319538116, -0.0063180685974657536, 0.0016992173623293638, 0.07718894630670547, -0.011149897240102291, -0.011533117853105068, 0.0017909626476466656, 0.02445436269044876, -0.00544354971498251, 0.02905256487429142, -0.02885187231004238, -0.03436218947172165, 0.022020258009433746, 0.026011550799012184, 0.03295475244522095, 0.033277273178100586, 0.009749266318976879, -0.0058850571513175964, -0.01567043922841549, 0.06411561369895935, 0.029913809150457382, 0.0187034010887146, -0.026487020775675774, -0.04409617558121681, -0.008136243559420109, -0.026936665177345276, -0.03828698396682739, -0.0053696176037192345, -0.008022758178412914, 0.009131388738751411, 0.057638876140117645, 0.008562126196920872, -0.035157691687345505, 0.01508795190602541, 0.026288650929927826, 0.0016170931048691273, -0.02644861303269863, 0.09413274377584457, 0.030004721134901047, 0.01757172681391239 ]
[ -0.010670973919332027, 0.0011237191502004862, 0.009414569474756718, -0.011527007445693016, -0.0448131300508976, 0.02118254266679287, 0.008013344369828701, -0.0033541310112923384, 0.015402164310216904, -0.0059492443688213825, -0.015893960371613503, 0.03760168328881264, 0.01316092163324356, -0.011571362614631653, 0.005343344062566757, -0.046106621623039246, 0.014913652092218399, -0.022726954892277718, 0.03936251625418663, 0.042575154453516006, -0.026380538940429688, -0.0185804795473814, -0.010400963015854359, -0.016695430502295494, -0.03956574574112892, -0.005874035879969597, 0.030220093205571175, -0.034712307155132294, 0.030858194455504417, -0.12967617809772491, -0.06759355962276459, -0.024472398683428764, -0.013379069976508617, -0.0014404067769646645, -0.050183068960905075, -0.05681007727980614, 0.040645286440849304, 0.03787018731236458, -0.0020171485375612974, -0.05684671923518181, -0.012165761552751064, -0.04924829304218292, 0.010940602980554104, 0.01960032805800438, 0.012766013853251934, -0.011904665268957615, 0.018155893310904503, -0.037121739238500595, -0.027680950239300728, -0.024350905790925026, -0.05643903464078903, 0.04555351287126541, -0.006860451772809029, -0.03128618374466896, 0.018037062138319016, 0.020453263074159622, 0.006220538169145584, 0.014087743125855923, 0.01988004520535469, 0.01305993739515543, -0.019410939887166023, 0.004068644717335701, -0.07259661704301834, -0.020573947578668594, -0.023754334077239037, -0.013315982185304165, 0.002159185241907835, -0.0235917866230011, -0.016310665756464005, 0.026543859392404556, 0.00425980007275939, 0.013225720264017582, 0.004017782863229513, -0.03328621760010719, 0.014236049726605415, 0.00023909847368486226, -0.014230415225028992, -0.03604014217853546, 0.019053196534514427, -0.05181898921728134, -0.0517641119658947, 0.014460310339927673, 0.012048684991896152, 0.03964380547404289, 0.04123346507549286, -0.033468570560216904, -0.007952263578772545, 0.02310389280319214, -0.010057228617370129, -0.008116202428936958, -0.05831364542245865, 0.038147758692502975, -0.004270703997462988, 0.008097903802990913, -0.09303487837314606, 0.014299029484391212, 0.001548174535855651, 0.011901482939720154, 0.023170005530118942, 0.8055379390716553, -0.0038816144224256277, 0.05442864075303078, 0.020831171423196793, 0.017014233395457268, 0.0006177056930027902, 0.04115809500217438, 0.04932583495974541, -0.04090780392289162, 0.05127887800335884, -0.028138205409049988, 0.037193045020103455, -0.003721147309988737, 0.010409632697701454, 0.024439334869384766, 0.001224255538545549, 0.01528886053711176, -0.018896061927080154, 0.05231679230928421, 0.04256260022521019, 0.004961472935974598, -0.049987852573394775, -0.041086092591285706, -0.006210219580680132, 0.0016012379201129079, 0.023971445858478546, -0.1726221740245819, 0.03577457740902901, -7.046783739332369e-33, -0.0017104195430874825, 0.023691462352871895, 0.00020215913536958396, -0.030735203996300697, 0.02308025024831295, 0.0197153240442276, -0.018278587609529495, -0.013129006139934063, -0.004024137742817402, -0.028013968840241432, 0.008202915079891682, -0.0070322914980351925, 0.0008987798355519772, -0.033806897699832916, 0.02474079839885235, -0.01722976565361023, -0.006718798540532589, 0.010268316604197025, -0.034255050122737885, 0.0013393948320299387, 0.06592942029237747, 0.03495475649833679, -0.00023200080613605678, -0.003742690198123455, -0.0009259558864869177, 0.03244985267519951, -0.0033968903589993715, 0.06117972359061241, 0.04627975821495056, -0.03397468850016594, -0.01618906669318676, 0.04241147264838219, -0.02846900373697281, 0.012589748948812485, -0.02528494969010353, -0.010888272896409035, -0.017347799614071846, 0.005489149130880833, -0.017169570550322533, 0.005979273468255997, -0.04164540395140648, -0.02041671983897686, -0.05123166739940643, -0.05941170081496239, -0.031387850642204285, -0.049909234046936035, -0.0016582614043727517, 0.052890706807374954, -0.013106245547533035, -0.028462447226047516, -0.02214546874165535, -0.008492697030305862, -0.04027198627591133, -0.0025864876806735992, -0.04072576388716698, 0.023800399154424667, -0.006524005439132452, 0.003986607305705547, 0.014942430891096592, 0.053531963378190994, 0.04170430824160576, -0.0125870481133461, 0.022130679339170456, -0.007704070769250393, 0.012048203498125076, -0.0031523837242275476, -0.004848512355238199, -0.030685845762491226, 0.01391511969268322, 0.0008889577002264559, -0.0018181666964665055, -0.012077759951353073, -0.008915807120501995, -0.008643471635878086, 0.020904459059238434, -0.0030647919047623873, 0.02139674499630928, 0.0028326704632490873, 0.002614744706079364, 0.02157524600625038, -0.015717940405011177, -0.01849326491355896, 0.002588448813185096, -0.029883695766329765, -0.004483930300921202, -0.029019655659794807, -0.021970631554722786, -0.01492681261152029, -0.04462353140115738, 0.06236321106553078, -0.0025303568691015244, 0.04278987646102905, -0.023710552603006363, -0.011128755286335945, 0.01799440011382103, 6.846462604220958e-33, -0.006198336370289326, 0.019360778853297234, 0.011524270288646221, -0.003750047879293561, 0.03526772931218147, 0.0037066552322357893, 0.04563431441783905, -0.03595701977610588, -0.0035372390411794186, 0.04118958115577698, -0.04129263758659363, -0.026547418907284737, 0.03371503949165344, 0.002221533330157399, 0.021421488374471664, -0.017901891842484474, 0.03741609305143356, -0.013898305594921112, 0.014076133258640766, -0.014739505015313625, -0.0037759002298116684, 0.004611656069755554, 0.00837626587599516, 0.034465640783309937, 0.023329755291342735, 0.03462793305516243, 0.022934284061193466, 0.03824042156338692, -0.043512456119060516, 0.017379947006702423, -0.004852603189647198, 0.021176530048251152, 0.01556401140987873, 0.0012480145087465644, 0.002290263306349516, 0.037769999355077744, -0.01177531573921442, -0.031306732445955276, -0.03156460076570511, 0.01929478719830513, 0.02651197649538517, -0.01512901857495308, 0.019197463989257812, 0.037705544382333755, 0.05282599478960037, 0.008073165081441402, 0.015975896269083023, -0.017955970019102097, -0.023410072550177574, 0.01933278515934944, 0.06855862587690353, 0.02980004996061325, -0.0330626480281353, -0.016277626156806946, -0.04096518084406853, -0.018420875072479248, 0.011588665656745434, 0.03625180572271347, 0.03869735822081566, 0.002747594378888607, 0.023447135463356972, 0.020679976791143417, -0.02806881256401539, 0.04580626264214516, 0.006477148737758398, -0.02995103970170021, -0.01572110690176487, 0.0245668925344944, 0.007130032405257225, -0.0008549829944968224, -0.02340042218565941, -0.014585673809051514, 0.021726101636886597, 0.04712555930018425, -0.010610690340399742, -0.02777174487709999, -0.0254904143512249, 0.005198128055781126, 0.017384974285960197, -0.017922697588801384, 0.0312529057264328, 0.023094434291124344, 0.04630889371037483, 0.04346876218914986, -0.030985943973064423, 0.08132617175579071, 0.00576716149225831, 0.040407877415418625, -0.0019990038126707077, 0.025780756026506424, 0.007503898348659277, 0.026121243834495544, -0.0006795131484977901, 0.0018422390567138791, -0.03232565149664879, -1.2858063058729385e-8, -0.010690942406654358, 0.004893447272479534, -0.03534068912267685, 0.0183598343282938, -0.0422784648835659, -0.002047555986791849, 0.02389024943113327, -0.01888284459710121, -0.06028193607926369, -0.011779827997088432, 0.008067663758993149, -0.034587860107421875, 0.01976507343351841, 0.02787533588707447, 0.03610809147357941, -0.0028012364637106657, 0.004763700999319553, -0.037278953939676285, 0.002956194104626775, 0.020292390137910843, 0.011464140377938747, 0.027826271951198578, -0.005931167397648096, 0.06789172440767288, 0.014650866389274597, 0.003101874142885208, 0.018444864079356194, -0.07826219499111176, -0.012699979357421398, -0.03412163630127907, -0.02126489207148552, -0.020667705684900284, -0.03417641296982765, 0.015844495967030525, -0.003719564527273178, -0.018513716757297516, 0.0007083958480507135, 0.05221863090991974, 0.03369908034801483, 0.013913380913436413, -0.05767914652824402, 0.01264827512204647, -0.03183602914214134, -0.021901901811361313, -0.02240217663347721, 0.030448364093899727, -0.05701465532183647, -0.02013036608695984, -0.03539801388978958, -0.022580096498131752, 0.0022521507926285267, 0.00259789009578526, 0.019018452614545822, -0.024600915610790253, -0.015801729634404182, 0.027780922129750252, -0.026354681700468063, -0.015908917412161827, 0.0018037781119346619, -0.029268208891153336, 0.015273976139724255, 0.03983580321073532, -0.024369632825255394, -0.03785170242190361 ]
pair-programming-the-over-eager-driver
https://markhneedham.com/blog/2008/11/05/pair-programming-the-over-eager-driver
false
2008-11-02 22:13:33
Pair Programming: Driving quickly
[ "pairing", "pair-programming" ]
[ "Pair Programming" ]
In order to experience the full benefits of pair programming it is important to try and reduce the chance of the navigator getting bored and losing focus. One of the main ways that we can do this is by ensuring that we have a quick turnaround between the driver and navigator, and this can be done by ensuring that when we are driving we are doing so as quickly as possible. There are three areas that come to mind where we can gain speed improvements when driving in a pair programming session: == IDE shortcuts Learning the IntelliJ shortcuts was one of the first things that I was encouraged to do on the first Java project that I worked on at ThoughtWorks. I found the most effective way for me was if my pair pointed out potential shortcuts whenever I was using the mouse to try and do something. On my current project we have installed an IntelliJ plugin called http://plugins.intellij.net/plugin/?id=1003[Key Promoter] which pops up a message telling you the shortcuts every time you use one of the menu options. I learnt about this plugin from Neal Ford's book, http://www.markhneedham.com/blog/2008/09/05/the-productive-programmer-book-review/[The Productive Programmer]. Additionally there are PDFs available, which list every single shortcut available for the various different platforms, on the http://www.jetbrains.com/idea/documentation/documentation.html[IntelliJ documentation page]. The same applies whether we are using TextMate, Visual Studio + Resharper or any other IDE. Knowing the shortcuts allows you to execute tasks more quickly and (for me at least) also has the benefit of making you feel more confident about what you are doing. == IDE templates/Plug ins Setting up templates for frequent operations is another useful way to save time. In particular I find it especially wasteful to write out the code to define a JUnit test every time so I always create a http://intelligentsoftwareengineering.blogspot.com/2006/09/intellij-live-templates.html[template] which does this for me. IntelliJ also provides a set of built in templates for creating simple code snippets - accessible by using the Command + J keyboard shortcut on the Mac or Ctrl + J on Windows. In addition we can install plugins which help us to be more productive. http://plugins.intellij.net/plugin/?id=96[TestDox] is one such plug in for IntelliJ which allows you to create the test class for any class with one keyboard shortcut. We can then switch between the test and the code using the same shortcut. For Ruby, http://code.leadmediapartners.com/2008/3/28/rubyamp[RubyAmp] is a TextMate plugin which I have come across which adds class, method and whole project searching for Ruby code. == The Shell Using the shell or command line effectively is another way that we can can speed improvements. I wrote about http://www.markhneedham.com/blog/2008/10/15/browsing-around-the-unix-shell-more-easily/[some of the ways I have learnt for doing this] and several people provided other suggestions in the comments on the post, but the key pattern here seems to be to *reduce the amount of typing* and *avoid repetition*. It's all about http://jchyip.blogspot.com/2008/10/copy-and-paste-once-never-copy-and.html[reducing duplication of effort] when it comes to using the shell effectively. Often when using the shell we want to reuse some of the commands that we have entered previously. I was aware of two ways of doing this until last week - using the up and down arrows to go through the history and searching through the history using Ctrl + R. A third way I learnt last week was to type the following command into the shell: [source,text] ---- history ---- This returns the list of items that we have previously searched for: [source,test] ---- 533 man grep 534 grep -r "JarTask" *.* 535 grep -r "JarTask" . 536 cd java/ ---- A http://lizdouglass.wordpress.com/[colleague] showed me that we can repeat these commands by typing '![NumberOfCommand]'. To repeat the 'man grep' command we would type the following: [source,text] ---- !533 ---- Spotting patterns of repetition is also useful. For example, to redeploy our application for manual CSS testing we had several steps which involved stopping Tomcat, redeploying our WAR, updating the database and then restarting the database. This involved 4 separate commands until one of my colleagues put it all together into a simple 'restart' script. Quite a simple idea but it reduces human effort. == Overall These are some of the ways that I have noticed where we can make pair programming go more smoothly and keep both people on the pair engaged. The common theme is that we should *make our tools do the work* and save our time for thinking.
null
null
[ 0.002358486643061042, 0.009202777408063412, -0.003635535715147853, 0.04876525327563286, 0.07194297760725021, 0.02039284072816372, 0.03717653825879097, 0.033053528517484665, 0.02670666016638279, -0.059790365397930145, -0.014538644813001156, 0.019332583993673325, -0.043176427483558655, -0.011710274964571, -0.03941143676638603, 0.06031957268714905, 0.06990180164575577, -0.017056012526154518, -0.01993759535253048, 0.008916586637496948, 0.03732195869088173, 0.052284691482782364, 0.025950666517019272, 0.04055557772517204, 0.023333555087447166, 0.02293611690402031, 0.003916088957339525, -0.008151868358254433, -0.06748314201831818, -0.0383685901761055, 0.03876431658864021, -0.008070170879364014, 0.008099295198917389, -0.0027464861050248146, 0.015906741842627525, -0.01331124547868967, 0.007515131030231714, 0.023364659398794174, 0.017523271963000298, 0.03198843449354172, -0.06987006217241287, 0.031782396137714386, 0.02162334695458412, -0.0007117867353372276, -0.04051610827445984, -0.0003591087879613042, -0.04232063889503479, 0.00713604548946023, -0.02290903963148594, -0.024344779551029205, -0.03684751316905022, 0.04657163470983505, -0.019642064347863197, 0.030501967296004295, 0.008057555183768272, 0.05401844158768654, 0.04691599681973457, -0.07965677231550217, 0.029016336426138878, -0.04687681049108505, 0.015729406848549843, 0.015723610296845436, -0.002420735778287053, 0.0453975535929203, 0.02240932546555996, -0.01985597051680088, 0.004428755026310682, 0.0345720499753952, -0.030703147873282433, -0.019995862618088722, -0.004585762973874807, 0.013402687385678291, -0.03498021140694618, 0.0018201223574578762, 0.00807579793035984, -0.036777857691049576, -0.012233848683536053, 0.04427293688058853, 0.009186692535877228, 0.024000059813261032, -0.01784820482134819, 0.006686148699373007, 0.007693900726735592, 0.042791638523340225, -0.018512682989239693, -0.026119748130440712, 0.008871426805853844, -0.0259567704051733, -0.047405291348695755, 0.03551216796040535, 0.014102756977081299, -0.05654177814722061, 0.0011210017837584019, 0.03407648950815201, 0.00656100083142519, 0.025755757465958595, 0.029143687337636948, 0.006294828373938799, 0.004771137610077858, 0.014103728346526623, -0.002867469098418951, -0.01733238622546196, 0.016704676672816277, 0.018432794138789177, -0.07642816752195358, 0.0009942507604137063, -0.0061198025941848755, -0.020958973094820976, 0.007803617976605892, 0.03219515085220337, -0.03621882572770119, 0.014052005484700203, -0.025782115757465363, 0.019425656646490097, -0.09031469374895096, 0.08008122444152832, 0.0023062846157699823, -0.019573668017983437, -0.011818964034318924, 0.007888821884989738, 0.02934817224740982, 0.03106594830751419, 0.003057299880310893, 0.07468558847904205, -0.006998728960752487, 0.05214881896972656, -0.02732103131711483, 0.041157130151987076, -0.0037541028577834368, -0.06527136266231537, 0.01437409594655037, 0.027451904490590096, -0.01791205443441868, -0.003964609932154417, -0.00006859162385808304, -0.007133638486266136, 0.018747996538877487, 0.0023628841154277325, 0.004242700058966875, 0.06050455942749977, -0.02448868378996849, -0.04387365281581879, 0.03103051893413067, -0.013399975374341011, 0.03133927658200264, -0.0049299802631139755, -0.018578149378299713, -0.012411658652126789, -0.03322170674800873, 0.01822798326611519, 0.002190769650042057, 0.02768600545823574, 0.044628698378801346, -0.040735531598329544, 0.015978388488292694, 0.11548025161027908, 0.028920888900756836, 0.011710106395184994, -0.01209123246371746, 0.019603034481406212, 0.030021995306015015, 0.03263117000460625, -0.0036343862302601337, 0.019217411056160927, 0.011790872551500797, 0.01419701799750328, -0.00007382354669971392, 0.03147256746888161, -0.0011359889758750796, -0.0024436314124614, -0.07037026435136795, -0.035422321408987045, 0.05322398245334625, -0.048071008175611496, -0.035750702023506165, 0.02311834506690502, 0.09230536222457886, -0.0036651978734880686, 0.04221946373581886, 0.01921813376247883, -0.07701537758111954, 0.0031396958511322737, 0.0115352813154459, -0.0038353358395397663, 0.03560096397995949, -0.015885014086961746, 0.04249059408903122, 0.03928128257393837, -0.03424588963389397, 0.023275528103113174, -0.06562446802854538, -0.0929340347647667, -0.010995377786457539, -0.031173672527074814, 0.055847447365522385, -0.04612785577774048, 0.003713917452841997, 0.07983442395925522, 0.013954998925328255, 0.041417114436626434, 0.022600101307034492, 0.0004203866992611438, 0.02177051641047001, -0.05307606980204582, -0.049029190093278885, 0.05498061329126358, 0.03549058362841606, -0.025867247954010963, -0.0703972801566124, 0.00436053890734911, -0.017305048182606697, -0.003836018731817603, 0.040170010179281235, 0.006702204700559378, 0.046852484345436096, 0.018720583990216255, 0.050125692039728165, -0.019375259056687355, 0.05632232874631882, -0.045463740825653076, 0.01044979877769947, -0.002570361364632845, -0.04041777923703194, 0.006704078987240791, 0.00685673113912344, 0.11639628559350967, 0.04568886011838913, -0.06708117574453354, -0.06631066650152206, 0.04450874403119087, 0.011297941207885742, -0.04623965546488762, -0.01324430014938116, -0.007544421590864658, 0.01417009811848402, -0.001991678262129426, -0.039901141077280045, -0.018440594896674156, 0.002986524486914277, -0.047305427491664886, 0.013102778233587742, 0.06272231042385101, -0.04392348974943161, 0.06837915629148483, 0.00865822471678257, -0.025312131270766258, 0.008097434416413307, -0.0069687264040112495, -0.04676949232816696, -0.004847569391131401, 0.030478443950414658, -0.010653006844222546, 0.04819673299789429, -0.04126188904047012, -0.023205045610666275, -0.029310932382941246, -0.04731794819235802, -0.007672326173633337, 0.04718035086989403, 0.07242599874734879, 0.004256208427250385, 0.05397804453969002, 0.0027677598409354687, 0.03999611362814903, 0.0005179648869670928, -0.054462071508169174, -0.019988922402262688, -0.007465155329555273, 0.002542851259931922, 0.019562415778636932, -0.006467921659350395, 0.02705707773566246, 0.015940262004733086, -0.009870326146483421, -0.021531635895371437, -0.004125012084841728, 0.00833964254707098, 0.015320442616939545, -0.029545927420258522, -0.03880748525261879, -0.0163047406822443, 0.06804230809211731, -0.03859124705195427, -0.006445467937737703, 0.02401633933186531, -0.06723351031541824, 0.03629349172115326, -0.09413313865661621, -0.06155948340892792, 0.01613236404955387, 0.034314341843128204, 0.037834569811820984, -0.017942309379577637, 0.02259693294763565, 0.07127048075199127, 0.0020854829344898462, 0.01672883704304695, -0.015046332031488419, -0.0076223816722631454, 0.017489995807409286, 0.013406725600361824, -0.0022696531377732754, 0.026817182078957558, -0.01437713485211134, 0.009838370606303215, -0.04533907771110535, 0.05008044093847275, -0.03728724643588066, -0.28513216972351074, 0.031219923868775368, 0.0006591606070287526, -0.06321858614683151, 0.025876987725496292, -0.025535576045513153, 0.008804427459836006, -0.0680086687207222, -0.016359800472855568, 0.012561066076159477, -0.02734667994081974, -0.043773017823696136, -0.03322030231356621, 0.05227159708738327, -0.01901683770120144, 0.016262097284197807, 0.012078334577381611, -0.03911682963371277, 0.012555224820971489, 0.04568357393145561, 0.020157216116786003, -0.07659970223903656, 0.01064362470060587, 0.047142866998910904, 0.035514313727617264, 0.03909541293978691, -0.08979576826095581, 0.04729638621211052, -0.029690880328416824, 0.0056549240835011005, 0.02818138897418976, 0.009670291095972061, -0.01056226622313261, -0.028168080374598503, -0.012612194754183292, -0.009240246377885342, 0.030664809048175812, -0.0019399545853957534, 0.00785301998257637, 0.02553829923272133, -0.02958833798766136, -0.035791296511888504, 0.008238269947469234, 0.004300554282963276, 0.05545840039849281, -0.0030683705117553473, -0.07939660549163818, -0.005031368229538202, 0.003973728511482477, 0.08441376686096191, -0.0479443334043026, -0.027082381770014763, -0.01824319362640381, 0.05470506101846695, -0.00863182544708252, -0.0353829450905323, -0.0085396533831954, -0.006549698766320944, -0.040586236864328384, -0.030426375567913055, -0.00899921078234911, -0.03041752241551876, -0.02502451092004776, -0.06725632399320602, 0.00487904530018568, -0.07106564193964005, -0.05092392489314079, -0.03071604110300541, 0.06936581432819366, 0.023284729570150375, -0.04221124202013016, -0.013476716354489326, -0.0008906199363991618, -0.11842066049575806, 0.006632145959883928, -0.008237110450863838, -0.041239265352487564, -0.008056148886680603, -0.018550092354416847, 0.07846188545227051, -0.03055635839700699, -0.05661610886454582, 0.02104405127465725, -0.016305536031723022, 0.030516644939780235, -0.023743435740470886, 0.017608238384127617, 0.0005876586074009538, 0.0022665876895189285, -0.005493739154189825, 0.07626409828662872, -0.016288496553897858, -0.03233221173286438, -0.05006439983844757, 0.005272997077554464, 0.009356188587844372, 0.007884083315730095, -0.005469242110848427, 0.00027191275148652494, 0.026128536090254784, -0.003396966028958559, -0.06351105868816376, 0.022574683651328087, -0.002200555754825473, -0.00897249672561884, -0.036594707518815994, -0.04852188006043434, 0.018270907923579216, 0.028326716274023056, 0.0308818481862545, -0.011464918963611126, -0.009764563292264938, 0.018285879865288734, -0.043475452810525894, -0.03887840732932091, -0.02371622994542122, 0.008643814362585545, 0.04687594994902611, 0.0032871875446289778, -0.016634579747915268, -0.06556224077939987, -0.0016835785936564207, -0.014147886075079441, -0.016025764867663383, -0.04679670184850693, -0.01244104839861393, -0.010726622305810452, -0.030465999618172646, 0.00449387775734067, 0.03855622932314873, -0.017819885164499283, 0.03308875113725662, 0.012654135003685951, -0.02272558957338333, 0.011864772066473961, -0.03753480687737465, -0.03580852597951889, -0.020359663292765617, -0.020172109827399254, -0.008507918566465378, -0.018207333981990814, 0.02154562808573246, 0.001493562012910843, -0.012745779007673264, 0.034549031406641006, 0.004113096743822098, 0.018690073862671852, -0.0075705386698246, -0.0090381084010005, -0.002769412938505411, 0.026083925738930702, -0.04319774731993675, -0.001785840606316924, -0.03958229720592499, -0.02137678861618042, -0.04089686647057533, 0.019510015845298767, -0.011568136513233185, -0.039913881570100784, -0.018524758517742157, 0.03450468182563782, -0.04380422458052635, -0.027952641248703003, -0.0076420060358941555, 0.01328311674296856, 0.06692112982273102, -0.0031300897244364023, 0.025363927707076073, -0.021413056179881096, -0.014630614779889584, 0.025876741856336594, -0.006853641476482153, -0.04633001983165741, 0.001663442701101303, 0.005096425302326679, -0.003885809797793627, 0.007012524642050266, 0.013600100763142109, 0.04469476640224457, 0.00032570090843364596, -0.004513322841376066, -0.0016617868095636368, 0.013960101641714573, 0.012535731308162212, 0.036585211753845215, -0.02005956508219242, -0.01191190630197525, -0.009997615590691566, -0.01733292266726494, -0.038916442543268204, -0.03818372264504433, -0.007149949204176664, -0.007358886301517487, 0.027122290804982185, -0.024153761565685272, -0.06696474552154541, 0.03676373511552811, 0.04751371592283249, -0.009769527241587639, 0.025225818157196045, -0.038195814937353134, -0.008600696921348572, 0.006063837092369795, 0.05538332834839821, 0.06004812568426132, -0.05875810608267784, 0.004272500053048134, -0.008327167481184006, 0.0014477476943284273, 0.018311241641640663, -0.0187491774559021, -0.05177711322903633, 0.007210474461317062, -0.013880070298910141, -0.011017851531505585, -0.03694048151373863, -0.02168779820203781, -0.019981909543275833, 0.015449868515133858, 0.007833448238670826, -0.020723694935441017, 0.001644196338020265, -0.028812633827328682, -0.012310173362493515, -0.017782410606741905, 0.0007436674204654992, -0.05829843878746033, 0.014265141449868679, 0.033411234617233276, -0.047894611954689026, 0.019494330510497093, -0.01544248592108488, 0.01735486090183258, 0.03373786434531212, -0.020694982260465622, -0.018233444541692734, -0.03281908109784126, -0.003724197391420603, 0.028903884813189507, 0.03179227560758591, 0.031696103513240814, -0.008443213067948818, -0.055727604776620865, 0.01433924213051796, -0.02896641381084919, 0.01810104213654995, -0.012965472415089607, -0.00908373761922121, 0.023505890741944313, 0.06493231654167175, 0.007600629702210426, 0.03010174073278904, -0.021104823797941208, -0.009420637972652912, 0.050397176295518875, -0.07903540134429932, -0.041763000190258026, -0.007608299143612385, -0.06869525462388992, 0.008125080727040768, 0.011344385333359241, 0.040349628776311874, -0.03427794575691223, 0.0471462607383728, 0.010008572600781918, 0.007365466561168432, 0.008614707738161087, -0.0015392516506835818, 0.02744048275053501, -0.04774300754070282, -0.001003293669782579, -0.08965142071247101, -0.026841526851058006, 0.032983701676130295, 0.007904354482889175, -0.03042343445122242, 0.01554233767092228, -0.02127174660563469, 0.04754697158932686, -0.08454841375350952, -0.005759270396083593, 0.04096423089504242, -0.006180473603308201, -0.029664240777492523, -0.0036335301119834185, -0.05797060951590538, 0.036965303122997284, 0.004149291664361954, -0.04308145493268967, -0.011880584061145782, -0.008453069254755974, 0.04649786278605461, 0.026471802964806557, 0.014322377741336823, -0.03702079877257347, 0.0020211634691804647, 0.09201055020093918, 0.009184710681438446, -0.010953671298921108, 0.025489557534456253, 0.0069351219572126865, 0.04760640114545822, 0.026555681601166725, 0.006071346811950207, -0.03122895024716854, 0.00853723380714655, 0.012991665862500668, -0.06398327648639679, 0.03771970421075821, 0.009436042048037052, -0.0254824236035347, -0.030013510957360268, 0.05710206925868988, 0.03819018229842186, -0.007915843278169632, -0.0436912439763546, 0.019462529569864273, -0.0585985891520977, -0.00889532919973135, -0.012841499410569668, -0.003742237575352192, -0.0578918531537056, 0.03411073237657547, -0.030882013961672783, -0.006982184015214443, 0.061281584203243256, 0.025972913950681686, -0.03439267352223396, -0.022207530215382576, 0.0960867777466774, 0.06605273485183716, 0.050752222537994385, 0.031063297763466835, 0.07982879877090454, -0.03054163046181202, -0.03167987987399101, 0.012163528241217136, -0.0016090805875137448, -0.013833150267601013, -0.03171418979763985, 0.045131321996450424, 0.06851954758167267, 0.005104077514261007, 0.057777803391218185, -0.02396409958600998, -0.021212831139564514, -0.0004737261915579438, 0.029623692855238914, 0.009278003126382828, 0.043005023151636124, 0.03163308650255203, 0.019360525533556938, -0.04823281243443489, -0.03548921272158623, 0.042647525668144226, -0.04057805985212326, -0.0034738490357995033, 0.022169459611177444, 0.0012721025850623846, 0.033060815185308456, 0.035440199077129364, 0.04006534069776535, 0.08356040716171265, -0.031483691185712814, 0.00347131653688848, 0.0016543243546038866, 0.03996759280562401, 0.01969963125884533, -0.0037220604717731476, -0.022247394546866417, -0.017628226429224014, 0.025072162970900536, -0.01222147885710001, -0.02367888204753399, -0.020398396998643875, 0.003908748738467693, 0.0349627323448658, -0.03604627028107643, 0.03431029990315437, 0.051137275993824005, 0.013802601955831051, -0.05775930732488632, -0.069429911673069, -0.027861803770065308, -0.016656674444675446, -0.03676920011639595, -0.038675710558891296, 0.013521704822778702, 0.003400328103452921, -0.04259905591607094, -0.0009509795345366001, -0.015621079131960869, -0.021466683596372604, 0.029644867405295372, -0.0669826865196228, -0.04177970439195633, 0.025464389473199844, 0.024479476734995842, 0.025990378111600876, 0.007084546610713005, 0.06354595720767975, -0.004052389413118362, 0.006365277338773012, -0.027440547943115234, 0.0022255280055105686, 0.019394129514694214, -0.009810714051127434, 0.030144808813929558, -0.06474841386079788, 0.009201127104461193, 0.018965307623147964, 0.0134736904874444, -0.06452234089374542, 0.01622827537357807, 0.041459690779447556, 0.008139275014400482, 0.0715908408164978, -0.019112437963485718, 0.02409837581217289, -0.04249681904911995, -0.010713078081607819, 0.018854238092899323, 0.022188784554600716, 0.04405982047319412, -0.008271362632513046, 0.10072287917137146, 0.00020622617739718407, -0.009892269037663937, -0.024545030668377876, -0.008277356624603271, -0.01459429506212473, -0.002644005697220564, -0.012124172411859035, -0.03009209968149662, -0.03308197110891342, -0.09489656239748001, -0.015505106188356876, 0.014268843457102776, -0.016804348677396774, -0.02206513099372387, 0.02437572181224823, 0.034206364303827286, -0.04175708442926407, 0.025547536090016365, -0.06349379569292068, 0.012043843045830727, -0.011028642766177654, -0.006350112147629261, 0.032767705619335175, 0.0004952098242938519, -0.019748952239751816, 0.01644514501094818, 0.03493058308959007, -0.028165940195322037, 0.0050835213623940945, -0.017301706597208977, 0.027575338259339333, 0.04200025275349617, 0.0036637000739574432, -0.0332895889878273 ]
[ -0.09518887102603912, 0.011717915534973145, -0.020551204681396484, -0.01408818457275629, -0.006761129479855299, -0.012210194952785969, -0.0030555282719433308, 0.024791691452264786, 0.007108194753527641, -0.05599561706185341, -0.05107351765036583, -0.0013008108362555504, 0.01411941833794117, 0.0008423238759860396, 0.09604033827781677, -0.002746878657490015, -0.0016992223681882024, -0.04841819033026695, -0.027378082275390625, -0.013238824903964996, -0.011809696443378925, -0.058156903833150864, -0.05012751370668411, -0.05738987773656845, -0.014430387876927853, 0.0505068376660347, 0.043194446712732315, -0.05038021132349968, 0.017895245924592018, -0.1847802698612213, 0.02324492856860161, 0.015750836580991745, 0.05151371657848358, -0.011725706979632378, -0.05631633475422859, 0.06103156507015228, -0.01360292173922062, 0.037106867879629135, -0.0061307866126298904, -0.005592524539679289, 0.02611689642071724, 0.029956206679344177, -0.054180338978767395, -0.022605737671256065, 0.019207844510674477, -0.004812632687389851, 0.007017154712229967, -0.05809027701616287, 0.016974443569779396, 0.013158459216356277, -0.057550735771656036, -0.03441175818443298, 0.009992429055273533, -0.02995467744767666, 0.0030769382137805223, 0.013931331224739552, 0.03365714102983475, 0.06533259153366089, -0.007774881552904844, 0.017954329028725624, -0.019516712054610252, -0.03521031141281128, -0.1300652176141739, 0.08144113421440125, 0.014847365207970142, 0.023405995219945908, -0.04592423513531685, -0.04454929754137993, -0.024136275053024292, 0.10298001766204834, 0.0015422500437125564, 0.002457141876220703, -0.023554502055048943, 0.043009936809539795, 0.004518504254519939, -0.019305426627397537, -0.01245998963713646, 0.03877762705087662, 0.05968506261706352, -0.01876051351428032, -0.040867459028959274, -0.03964187204837799, -0.018777906894683838, -0.0062777879647910595, -0.016747375950217247, 0.033282481133937836, -0.01577487401664257, 0.03757455199956894, 0.03298236429691315, -0.004149159416556358, 0.03267355263233185, -0.031894750893116, 0.03011106699705124, -0.009111381135880947, -0.07557927072048187, 0.02191687561571598, 0.009080409072339535, -0.0021134773269295692, -0.05944664776325226, 0.4119413197040558, -0.03778267651796341, -0.01182184461504221, 0.06461374461650848, 0.009572434239089489, -0.0072937035001814365, -0.012398908846080303, 0.00036110379733145237, -0.03706873953342438, 0.027202626690268517, -0.002108272397890687, 0.009743050672113895, 0.00018621519848238677, 0.047364119440317154, -0.02226867526769638, 0.006950977258384228, 0.05351073667407036, 0.027707651257514954, 0.04541748762130737, 0.026636889204382896, 0.028039515018463135, -0.018353914842009544, -0.015344412066042423, 0.032699987292289734, 0.010818475857377052, 0.00034895126009359956, -0.046043358743190765, 0.03757588192820549, 0.03437134996056557, 0.012579665519297123, 0.015275953337550163, 0.06226629018783569, -0.031895387917757034, -0.041282281279563904, 0.02078104019165039, 0.006407306529581547, 0.0043205381371080875, 0.03162650391459465, -0.03278138488531113, -0.015586123801767826, 0.03596040979027748, 0.00870500411838293, -0.005181268323212862, 0.05072617158293724, -0.03625781089067459, -0.014824156649410725, 0.12367802858352661, 0.016550635918974876, -0.03994455933570862, -0.0008969485643319786, -0.04791456460952759, 0.00010389945964561775, 0.038348183035850525, 0.004801457282155752, -0.06679338216781616, 0.009561621583998203, 0.0259309820830822, 0.12104981392621994, -0.008459111675620079, -0.052541568875312805, 0.01870545744895935, -0.04394642263650894, -0.007456868886947632, -0.06888173520565033, 0.012980571016669273, 0.08408024162054062, -0.10952647030353546, -0.018630696460604668, 0.023547975346446037, -0.007721863687038422, -0.04938620701432228, -0.03674660995602608, 0.017663074657320976, -0.01850646547973156, -0.005513709504157305, 0.05764400586485863, -0.019200900569558144, -0.06283602118492126, 0.04256347566843033, 0.027358850464224815, 0.010971158742904663, 0.014566068537533283, 0.011184308677911758, -0.05496051535010338, -0.017945313826203346, -0.024763960391283035, -0.06564415991306305, -0.034414518624544144, 0.0004487460828386247, -0.043605487793684006, -0.015056533738970757, -0.01287668477743864, -0.04042932763695717, -0.07130777090787888, 0.11090097576379776, -0.018654830753803253, -0.03644128888845444, 0.006260387133806944, 0.002311630407348275, -0.042317043989896774, -0.022603407502174377, -0.019003115594387054, 0.026829345151782036, -0.011884073726832867, 0.041564006358385086, -0.06555071473121643, 0.031452931463718414, 0.02812509424984455, -0.046008091419935226, 0.09514974057674408, 0.028991343453526497, -0.03789740428328514, -0.04766036942601204, 0.033255625516176224, 0.03435177728533745, -0.00732216564938426, -0.037605393677949905, -0.03374479338526726, 0.024466821923851967, -0.0013813828118145466, 0.037771355360746384, -0.024967899546027184, -0.008707809261977673, 0.012639510445296764, -0.3558337390422821, -0.017295556142926216, -0.023044807836413383, 0.013794860802590847, 0.014259242452681065, -0.07309187948703766, 0.014499478973448277, -0.02337653748691082, -0.010002939030528069, -0.023437917232513428, 0.10396775603294373, -0.043499741703271866, 0.011689932085573673, -0.06757660210132599, -0.0007016498129814863, 0.05763581022620201, -0.029586346819996834, -0.0081214290112257, -0.03520435094833374, 0.010648184455931187, 0.031026851385831833, 0.016209887340664864, -0.024437231943011284, -0.0523737370967865, 0.011571028269827366, -0.019000032916665077, 0.09617620706558228, -0.023680686950683594, 0.10257925093173981, -0.05738567188382149, 0.0384652204811573, 0.024912988767027855, 0.0255258921533823, -0.10739199072122574, 0.012425471097230911, -0.006579118315130472, 0.041654571890830994, -0.07287579029798508, 0.028903042897582054, -0.02368674986064434, -0.07234422117471695, 0.0031920287292450666, -0.058062098920345306, -0.04869852215051651, -0.0676698163151741, -0.006453453563153744, -0.03209156170487404, -0.03908544033765793, 0.02534087561070919, 0.05402497202157974, 0.021556485444307327, 0.011567249894142151, 0.011129549704492092, -0.015258779749274254, -0.01975179649889469, -0.04568538814783096, -0.07983841747045517, 0.0014534213114529848, -0.0048326775431632996, -0.027844831347465515, 0.028355048969388008, 0.04345133900642395, 0.029020225629210472, -0.07154189795255661, 0.006433551665395498, 0.029022041708230972, 0.013351796194911003, -0.01664910651743412, 0.05742666497826576, 0.003078608075156808, -0.03564383089542389, 0.06681367009878159, 0.0021684407256543636, 0.008656635880470276, 0.026867611333727837, 0.0063326735980808735, 0.004907990340143442, 0.05013112351298332, 0.03135468438267708, -0.016777122393250465, 0.009958072565495968, 0.01800447329878807, 0.0472845695912838, -0.0016604556003585458, -0.03498990088701248, 0.012037059292197227, 0.03003751114010811, -0.03974087908864021, 0.02430419810116291, -0.006569348741322756, -0.028215067461133003, 0.014954638667404652, 0.016399914398789406, -0.058981526643037796, 0.08504762500524521, -0.007077403366565704, -0.2510145306587219, 0.021758032962679863, 0.04037992283701897, 0.03536858409643173, -0.029715994372963905, 0.01224423199892044, 0.03844929113984108, -0.06506101042032242, -0.013874794356524944, -0.014359058812260628, 0.009290876798331738, 0.03836403787136078, 0.006868867203593254, 0.013550445437431335, 0.06297814846038818, 0.012331276200711727, 0.0631880983710289, 0.0340726301074028, 0.01591608114540577, -0.028334081172943115, 0.028147075325250626, 0.011651248671114445, 0.1706891506910324, 0.002563649322837591, 0.026591788977384567, 0.05900567024946213, 0.009461935609579086, 0.005494174547493458, 0.07427661865949631, 0.01903914473950863, 0.01332997065037489, -0.0004885263624601066, 0.05095992982387543, 0.0009324310231022537, 0.035662490874528885, -0.053682591766119, -0.03798336908221245, 0.03890759125351906, 0.017361540347337723, 0.03999548777937889, 0.03436674922704697, 0.021879838779568672, -0.00921506155282259, -0.016314446926116943, 0.0685545802116394, -0.01756613329052925, 0.01875283569097519, 0.00009298742224927992, -0.05521083250641823, -0.012860803864896297, -0.029685379937291145, -0.03734530135989189, -0.003427971852943301, 0.0025489521212875843, 0.026624538004398346, 0.033550843596458435, -0.005546126514673233, -0.00829096045345068, 0.006187176797538996, 0.02696475200355053, 0.015832526609301567, -0.017349330708384514, 0.1111878827214241, 0.03944417089223862, 0.03886675462126732 ]
[ -0.02080424688756466, -0.014572499319911003, -0.0004013713332824409, 0.03908304497599602, -0.004240638576447964, 0.028794661164283752, 0.005123902577906847, 0.017230601981282234, -0.027863169088959694, -0.027943991124629974, 0.012235615402460098, 0.02485598437488079, -0.009497727267444134, -0.0072279334999620914, 0.0048035443760454655, -0.03453972563147545, -0.0008007019641809165, -0.013003047555685043, 0.02345872111618519, 0.014332831837236881, -0.01729004830121994, -0.004654391203075647, -0.0009415961685590446, -0.04400217905640602, -0.0145017234608531, 0.03138277307152748, 0.06630922853946686, -0.019205762073397636, 0.023432152345776558, -0.11437401175498962, -0.019931195303797722, -0.02878456935286522, 0.006692437920719385, -0.038643378764390945, -0.029234860092401505, -0.021131347864866257, 0.03516977280378342, 0.0034775971435010433, 0.011385784484446049, -0.06381312012672424, -0.05642739683389664, -0.026974603533744812, 0.011846203356981277, 0.026717521250247955, -0.0009230942814610898, -0.037613797932863235, -0.009097409434616566, -0.055840298533439636, 0.0018206409877166152, 0.011513864621520042, -0.0717979446053505, -0.013335653580725193, -0.016548434272408485, -0.02446623332798481, 0.04441724717617035, 0.00245134555734694, -0.0013080567587167025, -0.004315667320042849, 0.00218389299698174, 0.05087793245911598, -0.0005020210519433022, -0.027321580797433853, -0.03474046662449837, -0.019895164296030998, -0.0349070280790329, -0.023981472477316856, 0.023459844291210175, 0.026298219338059425, -0.02292134054005146, 0.0041591329500079155, 0.0037857915740460157, -0.0029711099341511726, -0.039172254502773285, -0.02697778306901455, -0.010609157383441925, -0.014392818324267864, 0.001746686757542193, -0.013096424750983715, 0.022579921409487724, -0.05104587599635124, -0.04382440820336342, 0.003471285803243518, -0.009395245462656021, 0.030062180012464523, 0.03655758127570152, -0.007557620760053396, 0.0010852841660380363, -0.005106550641357899, 0.0449717752635479, 0.031103776767849922, -0.0314936526119709, 0.011382972821593285, -0.012330553494393826, -0.019890574738383293, -0.05352246016263962, -0.0022899089381098747, 0.005756132770329714, 0.0004682506842073053, 0.000653083436191082, 0.8303332328796387, -0.0197905320674181, 0.04319709166884422, 0.039918482303619385, 0.03218669444322586, 0.007473718840628862, 0.056849900633096695, 0.057892825454473495, -0.02650527097284794, -0.007236065808683634, -0.01954595558345318, 0.0120684914290905, -0.015201332047581673, 0.018622614443302155, -0.009297573007643223, 0.026664629578590393, -0.016783835366368294, 0.030714726075530052, 0.03513342887163162, 0.030141610652208328, 0.022802187129855156, -0.02196798473596573, 0.0013807339128106833, 0.019131723791360855, -0.00384151260368526, 0.03889076039195061, -0.15722933411598206, -0.016416845843195915, -7.002740904742935e-33, 0.03379989415407181, -0.006676563527435064, -0.02810872718691826, -0.014218947850167751, -0.002979160053655505, -0.01836443319916725, 0.019422706216573715, 0.003226072294637561, -0.02203136682510376, -0.011462321504950523, -0.02442202717065811, -0.02250192128121853, -0.021302828565239906, -0.032288145273923874, 0.0027396685909479856, -0.023201651871204376, 0.011272632516920567, 0.01567436195909977, -0.06520508974790573, 0.01628664880990982, 0.046940188854932785, 0.023906869813799858, -0.00437591876834631, -0.010040936060249805, 0.020713336765766144, 0.05745091661810875, 0.0312355849891901, 0.04047279432415962, -0.004459540359675884, -0.031193669885396957, -0.009478406049311161, -0.0021707506384700537, -0.03807026520371437, -0.00043703315895982087, -0.02699076011776924, -0.008775428868830204, -0.01139220129698515, -0.005690517369657755, -0.015169437043368816, 0.029576202854514122, -0.037386324256658554, -0.007659056689590216, -0.05555816367268562, -0.032173577696084976, -0.0417318232357502, -0.029001405462622643, 0.006896731443703175, 0.0438513457775116, 0.017446164041757584, 0.0033130936790257692, -0.028750376775860786, 0.012376098893582821, -0.013021498918533325, -0.020685093477368355, -0.05182627961039543, 0.036450766026973724, 0.013767551630735397, 0.03895401209592819, 0.03868268057703972, 0.0476558618247509, -0.04742049798369408, 0.0046538556925952435, -0.017869435250759125, 0.021617375314235687, 0.006500610150396824, 0.026193901896476746, -0.03139357641339302, -0.01376643031835556, -0.00004209882899885997, 0.02190292626619339, -0.026692703366279602, 0.007685684133321047, -0.009072770364582539, -0.022672977298498154, 0.007043313700705767, -0.009940443560481071, -0.03576015681028366, -0.03254494071006775, 0.006626280955970287, 0.03444324806332588, -0.02069939486682415, 0.0020882224198430777, 0.015665674582123756, -0.028948234394192696, 0.005906451027840376, 0.001937280991114676, -0.024400735273957253, -0.017231518402695656, -0.022532831877470016, 0.04025503247976303, 0.023049872368574142, 0.06743133813142776, -0.012774155475199223, -0.0111351003870368, -0.009186080656945705, 6.423942914761395e-33, 0.018466766923666, 0.015593890100717545, -0.0010080138454213738, 0.04079878702759743, -0.013866226188838482, 0.030708981677889824, 0.02123473957180977, -0.013758114539086819, -0.04624995216727257, 0.035604555159807205, -0.03049214370548725, 0.007825239561498165, -0.0001322643511230126, -0.009074949659407139, 0.062243178486824036, -0.014179892838001251, 0.020914146676659584, -0.04315099120140076, 0.01651664264500141, -0.014670038595795631, 0.025315355509519577, -0.006658255588263273, 0.020521074533462524, -0.013499590568244457, 0.030089540407061577, 0.02917616069316864, 0.00297452206723392, 0.029928579926490784, -0.007758202031254768, 0.02491869404911995, 0.015957310795783997, -0.020053163170814514, -0.010938543826341629, -0.03611961379647255, 0.04940227046608925, 0.044336799532175064, -0.04072417691349983, -0.0004157901566941291, -0.02511594258248806, 0.028958845883607864, 0.017869170755147934, -0.021316364407539368, 0.025653602555394173, 0.07274585217237473, 0.013297125697135925, 0.0030758294742554426, 0.007508393377065659, 0.013517241925001144, 0.014139357022941113, -0.013865948654711246, 0.014615514315664768, 0.0024741680826991796, -0.03811262175440788, -0.008876247331500053, -0.03491168096661568, -0.04140404239296913, 0.0005475594662129879, 0.014744049869477749, -0.005769388750195503, 0.018808724358677864, -0.01252741739153862, -0.051336869597435, -0.012532929889857769, 0.029889332130551338, 0.006985838524997234, 0.005480325315147638, 0.006945188622921705, 0.028307737782597542, 0.002402056474238634, -0.026108287274837494, 0.011326010338962078, -0.029238054528832436, 0.0026584824081510305, 0.00974959135055542, -0.0041951630264520645, -0.04449458047747612, -0.00012751173926517367, -0.005823875777423382, 0.011387385427951813, 0.0027325733099132776, 0.07928096503019333, 0.0033877436071634293, 0.012305941432714462, -0.02848302200436592, -0.0036069927737116814, 0.03433941677212715, -0.036410994827747345, 0.04688809812068939, -0.007259227801114321, -0.0076213981956243515, -0.01856335997581482, 0.03999726474285126, 0.006524598225951195, -0.0078039406798779964, -0.024687260389328003, -1.2739639565495509e-8, -0.027393968775868416, 0.007742115296423435, -0.001329200342297554, 0.00986479315906763, -0.01641579531133175, -0.013272170908749104, -0.016193129122257233, -0.002067454857751727, -0.021308109164237976, 0.017809879034757614, 0.03365162014961243, -0.02255309373140335, -0.010980905033648014, 0.05599376559257507, 0.03256653994321823, -0.02560601755976677, 0.004441623575985432, 0.002390759764239192, 0.01743319071829319, 0.008599833585321903, 0.01759232208132744, 0.025252584367990494, -0.0031060862820595503, 0.015924541279673576, -0.041517388075590134, -0.010921753942966461, 0.03088057041168213, -0.06609302014112473, -0.0031942015048116446, -0.015306680463254452, -0.057301271706819534, 0.0010953254532068968, -0.01319963950663805, 0.04045867174863815, -0.02200319804251194, -0.04263097420334816, 0.031280431896448135, 0.05178700387477875, 0.02373933233320713, 0.0174851194024086, -0.04359237104654312, 0.006658643018454313, -0.015107803978025913, -0.041443489491939545, -0.03657415881752968, 0.053941719233989716, -0.051964517682790756, 0.01093617919832468, 0.0011963561410084367, -0.01530587486922741, 0.003280466655269265, 0.0014892860781401396, 0.04429389908909798, 0.00871462281793356, 0.003294659312814474, 0.034386321902275085, 0.016903266310691833, -0.014045445248484612, -0.002728879451751709, -0.00022846228966955096, 0.007917860522866249, 0.029680144041776657, -0.033228106796741486, -0.03786681964993477 ]
pair-programming-driving-quickly
https://markhneedham.com/blog/2008/11/02/pair-programming-driving-quickly
false
2008-11-11 00:08:16
Logging with Pico Container
[ "picocontainer" ]
[ "Java" ]
One thing that we've been working on recently is the logging for our current code base. Nearly all the objects in our system are being created by http://picocontainer.org/[Pico Container] so we decided that writing an interceptor that hooked into Pico Container would be the easiest way to intercept and log any exceptions throw from our code. Our initial Googling led us to the http://picocontainer.org/interception.html[AOP Style Interception] page on the Pico website which detailed how we could create a static proxy for a class that we put in the container. The code to do this was as follows: [source,java] ---- DefaultPicoContainer pico = new DefaultPicoContainer(new Intercepting()); pico.addComponent(Interceptable.class, ConcreteInterceptable.class); Intercepted intercepted = pico.getComponentAdapter(Interceptable.class).findAdapterOfType(Intercepted.class); intercepted.addPreInvocation(Interceptable.class, new InterceptableReporter(intercepted.getController())); intercepted.addPostInvocation(Interceptable.class, new InterceptableReporter(intercepted.getController())); Interceptable a1 = pico.getComponent(Interceptable.class); a1.methodThatThrowsException(); ---- [source,java] ---- public interface Interceptable { void methodThatThrowsException(); } ---- [source,java] ---- private static class InterceptableReporter implements Interceptable { private Intercepted.Controller controller; public InterceptableReporter(Intercepted.Controller controller) { this.controller = controller; } public void methodThatThrowsException() { System.out.println("error happened"); } } ---- While this approach works, the problem is that we need to define an individual proxy for every class that we want to intercept. It works as a strategy if we just need to intercept a few classes but not on a larger scale. Luckily it is possible to create a http://lizdouglass.wordpress.com/2008/08/31/small-things-amuse-small%E2%80%A6-hmph-well-anyway%E2%80%A6/[dynamic proxy] on the container so that we can intercept all the objects without having to create a static proxy for each one. The code to do this was as follows: [source,java] ---- DefaultPicoContainer pico = new DefaultPicoContainer(new LoggingAwareByDefault()); pico.addComponent(Interceptable.class, ConcreteInterceptable.class); Interceptable interceptable = pico.getComponent(Interceptable.class); interceptable.methodThatThrowsException(); ---- [source,java] ---- import org.apache.commons.logging.LogFactory; import org.picocontainer.Characteristics; import org.picocontainer.ComponentAdapter; import org.picocontainer.ComponentMonitor; import org.picocontainer.LifecycleStrategy; import org.picocontainer.Parameter; import org.picocontainer.behaviors.AbstractBehaviorFactory; import java.util.Properties; public class LoggingAwareByDefault extends AbstractBehaviorFactory { private static final String DO_NOT_LOG_NAME = "support-team-opt-out"; public static final Properties DO_NOT_LOG = Characteristics .immutable(DO_NOT_LOG_NAME, Characteristics.TRUE); public <T> ComponentAdapter<T> createComponentAdapter(ComponentMonitor componentMonitor, LifecycleStrategy lifecycleStrategy, Properties componentProperties, Object componentKey, Class<T> componentImplementation, Parameter... parameters) { if (removePropertiesIfPresent(componentProperties, DO_NOT_LOG)) { return super.createComponentAdapter(componentMonitor, lifecycleStrategy, componentProperties, componentKey, componentImplementation, parameters); } else { return new LoggingAware<T>(super.createComponentAdapter(componentMonitor, lifecycleStrategy, componentProperties, componentKey, componentImplementation, parameters)); } } } ---- [source,java] ---- import org.apache.commons.logging.Log; import org.picocontainer.ComponentAdapter; import org.picocontainer.ComponentMonitor; import org.picocontainer.PicoContainer; import org.picocontainer.behaviors.HiddenImplementation; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class LoggingAware<T> extends HiddenImplementation { public LoggingAware(ComponentAdapter delegate) { super(delegate); } protected Object invokeMethod(Object componentInstance, Method method, Object[] args, PicoContainer container) throws Throwable { ComponentMonitor componentMonitor = currentMonitor(); try { componentMonitor.invoking(container, this, method, componentInstance); long startTime = System.currentTimeMillis(); Object object = method.invoke(componentInstance, args); componentMonitor.invoked(container, this, method, componentInstance, System.currentTimeMillis() - startTime); return object; } catch (final InvocationTargetException ite) { componentMonitor.invocationFailed(method, componentInstance, ite); // log the error throw ite.getTargetException(); } } } ---- From what I recall from looking at the source code I think in order to create a proxy around an object it needs to implement an interface otherwise the proxy will not be created.
null
null
[ -0.004221298266202211, -0.019687607884407043, -0.02300819754600525, 0.0280340313911438, 0.06380688399076462, -0.027736036106944084, 0.03176894783973694, 0.03277689963579178, 0.004684314131736755, -0.024330344051122665, -0.007001732476055622, -0.014193658716976643, -0.07467839866876602, 0.004204379860311747, -0.022675201296806335, 0.05731130391359329, 0.06453463435173035, -0.010473686270415783, 0.02938656322658062, -0.014594798907637596, 0.03961978480219841, 0.05072619393467903, 0.004848172422498465, 0.02689541131258011, 0.03890039771795273, 0.034106504172086716, 0.029603417962789536, 0.014827432110905647, -0.04601369798183441, 0.007045202422887087, 0.03303518146276474, 0.022723160684108734, 0.015214848332107067, -0.02756796032190323, 0.0002872827462852001, -0.023862741887569427, 0.008542113937437534, -0.013689589686691761, -0.00983971543610096, 0.03127656131982803, -0.06778544187545776, 0.045711684972047806, 0.000841691333334893, -0.016982056200504303, -0.05514491721987724, 0.015107639133930206, -0.01174568384885788, 0.03247926011681557, -0.012003748677670956, -0.021547526121139526, -0.10435861349105835, 0.060568567365407944, -0.03309309482574463, 0.012218828313052654, -0.00904004368931055, 0.051533449441194534, 0.027868159115314484, -0.0759894996881485, 0.014336695894598961, -0.05835990980267525, -0.03740154206752777, 0.006334990728646517, 0.025531815364956856, 0.029291175305843353, -0.01799292489886284, -0.01853323169052601, -0.02853086031973362, 0.041788894683122635, -0.05083111673593521, -0.0355331189930439, -0.018071617931127548, -0.009930958040058613, -0.03155255317687988, 0.009592208079993725, 0.024336665868759155, -0.03636114299297333, -0.00804630946367979, 0.06980779767036438, -0.005298973992466927, 0.046279095113277435, -0.006040725391358137, -0.042081721127033234, 0.02400582656264305, -0.0025679427199065685, 0.03436342999339104, -0.021708182990550995, -0.03697516396641731, 0.02083602175116539, -0.016919968649744987, 0.06456665694713593, -0.002619859529659152, -0.05525339022278786, 0.003101212903857231, 0.023347269743680954, 0.011603417806327343, 0.006250412203371525, -0.006326799280941486, -0.005851469002664089, -0.0007023315411061049, -0.001020329655148089, -0.010498267598450184, -0.0015882065054029226, 0.04103376343846321, 0.03023582510650158, -0.07422856241464615, -0.022763818502426147, -0.01599273458123207, -0.046155862510204315, -0.03610067069530487, 0.014237926341593266, -0.01967771165072918, 0.02132144197821617, -0.03389279916882515, -0.014075137674808502, -0.06994979083538055, 0.09741070121526718, 0.027348585426807404, -0.005534895230084658, 0.032911933958530426, 0.029723217710852623, 0.009932683780789375, 0.032479871064424515, -0.022158339619636536, 0.08824209123849869, -0.006849551573395729, 0.05580154061317444, -0.03522274270653725, 0.06840036809444427, -0.011323956772685051, -0.06084546819329262, -0.021680694073438644, 0.06635621935129166, 0.03938811272382736, 0.028291897848248482, 0.00879050325602293, -0.00400547543540597, -0.062136679887771606, -0.020843321457505226, 0.022508583962917328, 0.06520286947488785, -0.03312142193317413, -0.05429642274975777, 0.021485187113285065, -0.03880996257066727, 0.010713753290474415, 0.0074220504611730576, 0.012503993697464466, -0.04895778372883797, -0.02067337930202484, 0.0404772125184536, -0.008930507116019726, 0.03321231156587601, 0.05597918853163719, -0.03580934554338455, -0.031796928495168686, 0.07210943847894669, 0.017684102058410645, 0.027923204004764557, -0.03874421864748001, 0.0056427293457090855, 0.05076160281896591, -0.0026728566735982895, 0.0071722837164998055, 0.016339000314474106, 0.03396441042423248, -0.017038747668266296, -0.019473742693662643, 0.048736151307821274, -0.006853729020804167, -0.007122932001948357, -0.05004947632551193, -0.054337095469236374, 0.03648176044225693, -0.06462705880403519, 0.015410308726131916, 0.005543872248381376, 0.06413602083921432, -0.04092412441968918, 0.05901354178786278, 0.0396120548248291, -0.07070974260568619, 0.027746260166168213, -0.006867384072393179, 0.007175927981734276, 0.012463980354368687, -0.007256845477968454, 0.053789008408784866, 0.04345748573541641, -0.039331499487161636, 0.01657651551067829, -0.0727563351392746, -0.08694839477539062, -0.01580476202070713, -0.019079048186540604, 0.07011444866657257, -0.02712034061551094, -0.0011564507149159908, 0.0482044592499733, 0.0690692812204361, 0.02251610718667507, 0.009065206162631512, 0.011164568364620209, 0.027747580781579018, -0.033127494156360626, -0.0644131600856781, 0.013368082232773304, 0.022808143869042397, -0.006693867035210133, -0.05171234905719757, 0.025036003440618515, -0.02696109004318714, 0.016292180866003036, 0.03777141124010086, -0.01780126988887787, 0.05364803597331047, 0.009312682785093784, 0.024960074573755264, -0.02633751556277275, 0.09109682589769363, -0.0824955403804779, 0.007917607203125954, -0.01619863137602806, -0.0423274002969265, 0.01073277648538351, -0.005039699841290712, 0.12762640416622162, 0.042157623916864395, -0.01429243665188551, -0.038655444979667664, 0.0007045057136565447, 0.03595597669482231, -0.07063955068588257, -0.015771254897117615, -0.009794799610972404, -0.0015785350697115064, 0.017965130507946014, -0.02166687324643135, 0.01054046954959631, 0.0480085052549839, -0.017632316797971725, 0.0010686637833714485, 0.0925670936703682, -0.028259631246328354, 0.044405318796634674, 0.02464265376329422, -0.020983876660466194, 0.020338300615549088, -0.021334927529096603, -0.032532770186662674, 0.0007107299752533436, -0.0009667528793215752, -0.01807461306452751, 0.0546831339597702, -0.06948253512382507, -0.007352324202656746, -0.02885860577225685, -0.0399339534342289, -0.014702274464070797, 0.03443976119160652, 0.05540343001484871, -0.010747008956968784, 0.023600447922945023, 0.017851246520876884, 0.03219136223196983, -0.024504730477929115, -0.04926575720310211, 0.00758314598351717, 0.028726372867822647, -0.0032417636830359697, 0.031971655786037445, 0.012190199457108974, 0.005524400621652603, 0.06679122895002365, -0.0070901536382734776, -0.008452569134533405, -0.007684045471251011, 0.029504455626010895, 0.02905881404876709, -0.0006745941354893148, -0.022896751761436462, -0.02562294900417328, 0.05439531430602074, -0.015890633687376976, -0.03956782817840576, 0.015920352190732956, -0.09521900862455368, 0.05029625445604324, -0.055365607142448425, -0.06580672413110733, 0.027776557952165604, 0.015425809659063816, 0.014422117732465267, -0.029147585853934288, 0.033208899199962616, 0.04954265430569649, 0.004224517848342657, -0.006167137995362282, 0.012377948500216007, -0.0072737024165689945, -0.002175474539399147, 0.0017266439972445369, 0.022030573338270187, 0.009090978652238846, -0.003012005938217044, -0.007702674251049757, -0.02301844209432602, 0.05226071551442146, -0.038077399134635925, -0.2636701464653015, 0.019906392320990562, -0.014589525759220123, -0.033982422202825546, 0.012512333691120148, -0.003555997973307967, 0.006624682806432247, -0.06569536030292511, -0.002242020796984434, 0.06608148664236069, -0.04114851728081703, -0.043279875069856644, 0.010518494993448257, 0.04975172504782677, -0.012623011134564877, 0.02345428802073002, -0.0027037460822612047, -0.039055727422237396, -0.013307028450071812, 0.018385473638772964, 0.013678002171218395, -0.0733468160033226, 0.009293008595705032, 0.03882848843932152, 0.022562777623534203, 0.031492408365011215, -0.07536185532808304, 0.046639569103717804, -0.011861779727041721, 0.0075497692450881, 0.006659088656306267, -0.01603236235678196, -0.006168117746710777, -0.0408128947019577, -0.03218621388077736, -0.011220077984035015, 0.02407098561525345, 0.0324062779545784, -0.01864013262093067, -0.0038834367878735065, -0.041765499860048294, -0.066989466547966, -0.02982948161661625, -0.008315588347613811, 0.03852603957056999, -0.0013952298322692513, -0.04470160976052284, -0.024501090869307518, -0.023318210616707802, 0.09006564319133759, -0.040206242352724075, -0.017543433234095573, 0.008570014499127865, 0.01704668067395687, -0.022523898631334305, -0.021784288808703423, 0.03420625627040863, -0.026433583348989487, -0.04508322477340698, -0.019073018804192543, -0.0003059343434870243, -0.04156908020377159, -0.0235249362885952, -0.03565191850066185, -0.0019869161769747734, -0.048147156834602356, -0.042233794927597046, 0.00236253603361547, 0.04597559943795204, -0.009820365346968174, -0.019870776683092117, 0.0029583252035081387, 0.01993875578045845, -0.11546200513839722, 0.006323467008769512, -0.028567003086209297, -0.02947375923395157, -0.02290055714547634, 0.0016012181295081973, 0.05359282344579697, -0.025381751358509064, -0.02636685222387314, 0.015172825194895267, 0.019595135003328323, 0.019318705424666405, -0.013182449154555798, 0.033373549580574036, -0.02037174627184868, 0.008476722985506058, 0.012161314487457275, 0.0674906000494957, -0.00493186479434371, 0.005768823437392712, -0.05586181581020355, -0.006041675340384245, 0.03438567370176315, 0.02805653028190136, 0.002789962338283658, 0.007588316686451435, 0.007734438870102167, 0.010073615238070488, -0.03401191532611847, 0.0020445839036256075, -0.034360118210315704, 0.01912512257695198, -0.024227140471339226, -0.0555572584271431, 0.03284725174307823, 0.01571597531437874, 0.009609504602849483, 0.021822704002261162, -0.039268262684345245, 0.011407643556594849, -0.05123969539999962, -0.046889472752809525, 0.008610371500253677, 0.005908407736569643, 0.03070886991918087, 0.02421705611050129, -0.04533873870968819, -0.058203306049108505, -0.004995296243578196, 0.021191326901316643, -0.0035929447039961815, -0.049185268580913544, -0.08463872224092484, -0.01852983608841896, -0.011728021316230297, 0.010622953064739704, 0.02613929472863674, -0.010447129607200623, 0.02909337542951107, 0.03609512373805046, -0.007821038365364075, 0.01641247607767582, -0.030165426433086395, -0.02364521101117134, -0.041475728154182434, 0.0009734898922033608, 0.005776590667665005, -0.03628617897629738, 0.024323495104908943, -0.00636290991678834, 0.03202793374657631, 0.05776551365852356, -0.0021992537658661604, 0.04500555247068405, 0.017234323546290398, -0.0047521768137812614, 0.022817952558398247, 0.03913697600364685, -0.05636250972747803, 0.019927021116018295, -0.031237784773111343, -0.02680622786283493, -0.011774402111768723, 0.029328247532248497, -0.011810463853180408, -0.008173980750143528, -0.021668685600161552, 0.05658088997006416, -0.0484422892332077, -0.020275019109249115, -0.03158394247293472, -0.004581339657306671, 0.052704378962516785, -0.023117423057556152, 0.04130179435014725, -0.01888921856880188, -0.06131570041179657, -0.002911218674853444, -0.007684559095650911, -0.013016831129789352, 0.07559845596551895, -0.009405318647623062, -0.004437238443642855, 0.021824829280376434, -0.01563996449112892, 0.01405008789151907, 0.034470535814762115, 0.00311585352756083, -0.028136227279901505, 0.03312520682811737, -0.030876662582159042, 0.04566558077931404, -0.014887568540871143, -0.010871930979192257, -0.014260133728384972, -0.005641111638396978, -0.002707714680582285, -0.027010656893253326, 0.013473640196025372, -0.01486918143928051, 0.04478850215673447, -0.027474431321024895, -0.09212514013051987, 0.010820518247783184, 0.02641667053103447, 0.011655887588858604, 0.010343183763325214, -0.01889718696475029, 0.03412812203168869, -0.047089215368032455, 0.04573122784495354, 0.029996851459145546, -0.03491950035095215, 0.00737309455871582, -0.0016026152297854424, 0.050081267952919006, 0.015914389863610268, -0.012800176627933979, -0.052263952791690826, 0.005642726086080074, -0.02869270183146, -0.005755280610173941, -0.06295938789844513, -0.024866150692105293, -0.03595450893044472, 0.01303151249885559, 0.010025721043348312, -0.007787488400936127, 0.015215006656944752, -0.017724934965372086, -0.030566440895199776, -0.023502904921770096, 0.05102106183767319, -0.045924823731184006, -0.02357764169573784, 0.029907414689660072, -0.017276780679821968, 0.018752161413431168, -0.016481034457683563, 0.03568192571401596, 0.021201496943831444, -0.028884490951895714, -0.003217840101569891, -0.050052255392074585, 0.030091872438788414, 0.017972487956285477, 0.07084953039884567, 0.0026926053687930107, 0.007882636971771717, -0.01584448665380478, -0.002554098144173622, -0.018338246271014214, 0.025733964517712593, 0.0005273133283481002, 0.0033732661977410316, 0.02187281660735607, 0.06484784930944443, 0.0031232077162712812, 0.04442579671740532, 0.029978621751070023, -0.028716236352920532, 0.06933432072401047, -0.0846274197101593, -0.035360608249902725, -0.00028182941605336964, -0.05159694328904152, 0.028252242133021355, 0.006544819567352533, 0.025303378701210022, -0.04806649684906006, 0.06299292296171188, 0.036565884947776794, 0.000551458215340972, 0.015624670311808586, 0.011143931187689304, 0.03191788122057915, -0.04012134298682213, 0.0005126267788000405, -0.059640005230903625, 0.04286973923444748, 0.06734473258256912, -0.007333586923778057, 0.0025767784100025892, -0.04568593576550484, -0.018218109384179115, 0.03353926166892052, -0.06470230221748352, -0.06914671510457993, 0.009467694908380508, 0.008970542810857296, -0.012183933518826962, -0.004265110939741135, -0.0328378900885582, 0.028048651292920113, 0.027892304584383965, -0.045237474143505096, -0.05477302893996239, -0.030579453334212303, 0.05953972786664963, 0.0179322250187397, -0.024901987984776497, -0.009615679271519184, 0.006946915294975042, 0.06078256294131279, 0.009357050992548466, 0.019023310393095016, 0.05328775569796562, -0.019081970676779747, 0.03433775156736374, 0.008035644888877869, -0.026584792882204056, -0.029414905235171318, 0.0013581529492512345, 0.032029516994953156, -0.05263521894812584, 0.015563292428851128, -0.0019379862351343036, -0.047036346048116684, -0.05244756117463112, 0.04541391506791115, 0.015600966289639473, -0.04141592979431152, -0.03861480578780174, 0.021948065608739853, -0.024244405329227448, -0.03526894375681877, -0.02822493575513363, -0.007839295081794262, -0.0368642657995224, 0.073860302567482, -0.0068940636701881886, 0.009778670966625214, 0.06644701957702637, 0.0019612491596490145, -0.029356826096773148, -0.029344467446208, 0.055597517639398575, 0.054799359291791916, 0.01860731467604637, 0.006286277901381254, 0.04892922565340996, -0.020390044897794724, -0.03681708499789238, 0.010388531722128391, -0.03155539184808731, -0.03567292168736458, -0.001834473805502057, 0.028196856379508972, 0.060338832437992096, -0.0015245958929881454, 0.055454544723033905, -0.022995609790086746, 0.006449506152421236, 0.022280311211943626, 0.033983491361141205, 0.03568553552031517, 0.013599153608083725, 0.014356114901602268, 0.04219656437635422, -0.004185159225016832, -0.04806333780288696, 0.005499979481101036, -0.009673330001533031, -0.007211004383862019, 0.019495932385325432, -0.01649085246026516, -0.0072105200961232185, 0.006540278438478708, 0.01857762597501278, 0.07081209868192673, -0.022974830120801926, -0.014159305021166801, -0.0033905995078384876, 0.016157150268554688, 0.02560207061469555, -0.004979117773473263, -0.019852716475725174, 0.00980370119214058, -0.011247591115534306, -0.03208044543862343, -0.0003924082557205111, -0.04724690690636635, -0.0010582584654912353, 0.04591740667819977, -0.017423851415514946, 0.05031172186136246, -0.015420435927808285, -0.00036032608477398753, -0.01114596240222454, -0.06595925986766815, -0.0570777952671051, -0.017070408910512924, -0.0669240951538086, -0.009751281701028347, 0.042444486171007156, 0.007878558710217476, -0.025743868201971054, -0.005138775799423456, -0.012097710743546486, 0.0008275069412775338, 0.0441146083176136, -0.0191248320043087, -0.02065308764576912, 0.034148819744586945, 0.0037765116430819035, 0.03526616096496582, 0.0212577972561121, 0.04395151510834694, 0.020816748961806297, 0.021188905462622643, -0.04459559544920921, -0.00679564056918025, 0.04989273473620415, -0.005409084726125002, 0.0028051186818629503, -0.0913023054599762, -0.009878062643110752, 0.05353536084294319, 0.03097524680197239, -0.05961974710226059, -0.0129209253937006, -0.009267558343708515, -0.018762866035103798, 0.05313480272889137, -0.031889740377664566, -0.02568845823407173, -0.029879488050937653, -0.04547233507037163, -0.0036596981808543205, 0.03808068111538887, 0.04651123657822609, -0.019613424316048622, 0.06701084226369858, 0.04602520167827606, -0.028403228148818016, -0.007211542222648859, 0.010161768645048141, 0.02082919329404831, -0.007480671163648367, -0.047199398279190063, -0.015069753862917423, -0.016126345843076706, -0.08191857486963272, -0.006992053240537643, 0.04667378216981888, 0.009350397624075413, -0.02331927791237831, 0.015922928228974342, 0.021776609122753143, -0.03779735416173935, 0.005040179472416639, -0.03402898460626602, 0.038349684327840805, -0.0371423065662384, -0.013513552956283092, 0.02809952385723591, 0.02681119553744793, -0.010267490521073341, 0.0066063860431313515, -0.008135508745908737, -0.03826681524515152, 0.009348883293569088, -0.006930373143404722, 0.04206443950533867, 0.06411870568990707, -0.03015931136906147, -0.01587250456213951 ]
[ -0.10289763659238815, -0.01625024899840355, -0.03481394425034523, -0.05180489271879196, 0.054377950727939606, -0.0625547245144844, 0.04034436121582985, 0.019360151141881943, -0.04230920225381851, -0.004594226833432913, -0.015019701793789864, -0.03976808860898018, -0.0008635495905764401, 0.02745622955262661, 0.10188493877649307, 0.006055991631001234, -0.0009781023254618049, -0.050666142255067825, -0.00495145795866847, 0.012998495250940323, 0.024906378239393234, -0.0032538773957639933, -0.04055635258555412, -0.0302417129278183, 0.014853416010737419, 0.05684562027454376, 0.03791588544845581, -0.02886469103395939, 0.0007783797918818891, -0.19045445322990417, 0.01005720067769289, -0.03266177698969841, 0.006389773450791836, -0.027344604954123497, -0.031794674694538116, 0.04861541464924812, 0.0271596759557724, 0.0302295982837677, 0.023334721103310585, 0.04310031607747078, 0.016585063189268112, 0.04726655036211014, -0.07097383588552475, -0.04004479572176933, 0.020309576764702797, -0.006436625029891729, 0.004398392513394356, -0.01548000518232584, 0.03580906614661217, -0.008845957927405834, -0.07426396012306213, -0.015080130659043789, 0.014422103762626648, -0.040492501109838486, 0.0037323799915611744, -0.020503422245383263, 0.059089820832014084, 0.05639258772134781, 0.00857449695467949, 0.031095091253519058, 0.013360455632209778, -0.01731710135936737, -0.12830930948257446, 0.08296439051628113, 0.030508270487189293, 0.021190369501709938, -0.003012820379808545, 0.004358377773314714, 0.016505733132362366, 0.07728131115436554, 0.014643220230937004, -0.01977761834859848, -0.05296412855386734, 0.06374337524175644, 0.011691163294017315, 0.006442598067224026, -0.004255341365933418, 0.041483137756586075, 0.021077116951346397, -0.07428700476884842, -0.07575353235006332, -0.014416011050343513, -0.010525243356823921, -0.0038549823220819235, -0.028227046132087708, 0.03546491637825966, -0.0005339028430171311, 0.05113745480775833, 0.07169459760189056, 0.05954958498477936, 0.027919530868530273, 0.004793462343513966, 0.032749854028224945, 0.0006667772540822625, -0.0918271616101265, -0.00474865548312664, -0.019852200523018837, -0.01240804698318243, -0.06785636395215988, 0.43095019459724426, -0.00846671313047409, -0.04772625118494034, 0.049559976905584335, 0.015284409746527672, 0.003191063879057765, 0.016566907986998558, -0.01745094358921051, -0.07124605774879456, -0.014810756780207157, -0.053115230053663254, 0.02635236084461212, 0.005819208454340696, 0.058022595942020416, -0.03326061740517616, 0.0012844701996073127, 0.017802247777581215, 0.043661102652549744, 0.0013444949872791767, -0.006725589744746685, 0.01769779436290264, -0.005825743544846773, -0.01967877708375454, 0.02133951149880886, 0.038490764796733856, 0.023244308307766914, -0.04816027358174324, 0.008177550509572029, 0.06386840343475342, 0.03896770998835564, 0.04124747961759567, 0.016041195020079613, -0.06721930205821991, -0.06565536558628082, -0.026956520974636078, 0.0005962463328614831, 0.017540927976369858, 0.05274473875761032, -0.013867986388504505, -0.024325108155608177, 0.018699023872613907, -0.021771766245365143, -0.006820858456194401, 0.02862844429910183, -0.03561193868517876, -0.06438159942626953, 0.09261506050825119, -0.01389897707849741, -0.01449618674814701, 0.001161849475465715, -0.06069408357143402, 0.005528801586478949, 0.04473051801323891, 0.009185955859720707, -0.046305570751428604, 0.010937132872641087, 0.0019083230290561914, 0.036202117800712585, 0.01676962897181511, -0.016782112419605255, 0.007007407024502754, -0.024026544764637947, -0.013291625306010246, -0.035557497292757034, 0.01090366393327713, 0.02881406433880329, -0.07986176759004593, -0.03125499188899994, 0.019910870119929314, -0.007731849327683449, -0.04475220665335655, -0.037797704339027405, 0.05889977142214775, -0.001970916287973523, -0.03888431936502457, 0.01276363804936409, -0.0048783631063997746, -0.02830856293439865, 0.01339002326130867, 0.02027553878724575, 0.028791656717658043, -0.016317054629325867, -0.008651104755699635, -0.06229672208428383, -0.024815713986754417, 0.002156402450054884, -0.09354092180728912, -0.06320445984601974, -0.0034841997548937798, -0.023066803812980652, 0.0027651984710246325, -0.05763904005289078, -0.004940733779221773, -0.06777231395244598, 0.11164073646068573, -0.012587967328727245, -0.019061803817749023, 0.0019826777279376984, -0.018825309351086617, 0.003961766138672829, -0.025462891906499863, 0.029619522392749786, 0.046214934438467026, -0.0369039811193943, 0.04506036266684532, -0.04108139127492905, 0.05146372690796852, 0.05956141650676727, -0.01761818304657936, 0.03363640978932381, 0.0007187228766269982, -0.04964092746376991, -0.003403336275368929, 0.013360411860048771, 0.012411711737513542, 0.0019315496319904923, -0.017340686172246933, 0.0036371236201375723, 0.05826887860894203, 0.022669222205877304, 0.001986864022910595, -0.035124197602272034, -0.006956065073609352, 0.024844858795404434, -0.36212703585624695, -0.02513902448117733, -0.0041160318069159985, -0.010797234252095222, 0.004429298918694258, -0.0652889758348465, 0.017864031717181206, -0.018879523500800133, -0.014818604104220867, -0.02708403207361698, 0.10341771692037582, -0.03584491088986397, -0.009790290147066116, -0.05944451689720154, -0.004929794929921627, 0.01058135274797678, -0.04361451417207718, -0.03151160478591919, -0.01945461891591549, 0.0035609060432761908, 0.003553871065378189, -0.005271559115499258, -0.008382223546504974, -0.000022916487068869174, 0.017625831067562103, -0.023278960958123207, 0.08889679610729218, 0.01920955255627632, 0.08897853642702103, -0.032303087413311005, 0.05989774316549301, -0.005935399327427149, 0.006454956252127886, -0.06854704022407532, -0.0008460089447908103, -0.018323233351111412, -0.052262600511312485, -0.003070427803322673, 0.03826120123267174, -0.015259266830980778, -0.04441142454743385, 0.036895982921123505, -0.0457356832921505, -0.057259343564510345, 0.018486106768250465, -0.011571680195629597, -0.023721959441900253, -0.04507219046354294, -0.0037383066955953836, 0.04544638469815254, 0.011662344448268414, -0.02441687509417534, 0.00977000780403614, 0.012046932242810726, 0.015332731418311596, -0.03289799764752388, -0.054826121777296066, 0.01290187519043684, 0.025515448302030563, 0.019989535212516785, 0.024796143174171448, 0.08155852556228638, 0.01133517175912857, -0.07917814701795578, 0.005530186463147402, 0.0260566845536232, 0.012314284220337868, -0.008943800814449787, 0.03161294385790825, -0.0392640121281147, -0.021644169464707375, 0.13874827325344086, 0.010909546166658401, -0.028854718431830406, 0.029357407242059708, 0.0400673933327198, 0.04178209602832794, -0.01578208990395069, -0.004044671077281237, -0.0022505722008645535, 0.017686426639556885, 0.0169387049973011, 0.023715825751423836, -0.025140997022390366, -0.012847094796597958, 0.045048024505376816, 0.006664729677140713, -0.04760000482201576, 0.07524100691080093, 0.001080901245586574, -0.023484883829951286, 0.0027113910764455795, -0.00007419224857585505, -0.05069936811923981, 0.034130632877349854, -0.024365441873669624, -0.26463261246681213, 0.0019412325927987695, 0.06297129392623901, 0.05351053550839424, -0.016467532142996788, 0.012104694731533527, 0.07315801084041595, -0.04490137845277786, 0.008336116559803486, 0.0024980490561574697, 0.020800627768039703, 0.024669181555509567, -0.0010179406963288784, 0.030939383432269096, 0.014846076257526875, -0.001763597596436739, 0.029947951436042786, 0.009964048862457275, 0.03139166533946991, -0.008970445021986961, 0.025485804304480553, -0.04291224479675293, 0.14978113770484924, 0.002456564921885729, 0.026825983077287674, 0.024443738162517548, -0.005560839083045721, 0.006307975389063358, 0.04818194359540939, 0.025468744337558746, 0.02000219002366066, -0.029055291786789894, 0.07259766012430191, -0.017505772411823273, 0.045302364975214005, -0.06765975058078766, 0.008175980299711227, 0.027049701660871506, -0.007100879680365324, -0.0030068352352827787, -0.05685783550143242, 0.02398987114429474, -0.008609953336417675, 0.008018865250051022, 0.06309953331947327, 0.0017091931076720357, -0.022284848615527153, -0.04140733182430267, -0.05111931636929512, -0.0009648895938880742, -0.017540156841278076, -0.05158188194036484, -0.014587704092264175, -0.023562660440802574, 0.002678957302123308, 0.08096369355916977, 0.015575535595417023, -0.016948049888014793, -0.055932436138391495, 0.06061689928174019, 0.01645745150744915, -0.0022016000002622604, 0.1039004921913147, 0.03077063523232937, 0.08301938325166702 ]
[ 0.02157924510538578, 0.04380802810192108, 0.005003198515623808, 0.029861874878406525, 0.03930463641881943, 0.010634616948664188, 0.03233101963996887, 0.03745665401220322, -0.03451063483953476, 0.03446861729025841, 0.026991229504346848, -0.008097999729216099, -0.0028169506695121527, 0.013333744369447231, 0.02667657844722271, -0.012555672787129879, 0.02345077134668827, 0.01908709481358528, -0.01744735613465309, 0.02829606644809246, -0.021828116849064827, 0.03911878168582916, 0.02579614520072937, -0.008942375890910625, -0.03520902246236801, -0.007802373729646206, 0.007556308060884476, -0.006722647231072187, 0.020434053614735603, -0.15710346400737762, -0.01898021064698696, -0.01361682265996933, -0.016575803980231285, -0.0006355009973049164, -0.02261478267610073, -0.002426079474389553, 0.03813036531209946, -0.009282351471483707, 0.008631480857729912, -0.035876624286174774, -0.028218606486916542, -0.0011539009865373373, -0.007359656505286694, -0.005107885226607323, 0.0017826887778937817, -0.029895659536123276, 0.008131885901093483, -0.022843481972813606, 0.014717991463840008, -0.05824371054768562, -0.010860109701752663, -0.022301003336906433, -0.002875259378924966, 0.016957487910985947, -0.004194959066808224, -0.02322782576084137, -0.017544882372021675, -0.0011849250877276063, -0.0020516642834991217, 0.0020177573896944523, -0.03857932984828949, -0.013975941576063633, -0.014072722755372524, -0.020108720287680626, 0.016400443390011787, -0.027861397713422775, 0.035044003278017044, -0.0018103860784322023, 0.01259014755487442, 0.010693088173866272, -0.05079800263047218, 0.026742499321699142, -0.010664989240467548, 0.013716709800064564, -0.0015427786856889725, 0.011250495910644531, 0.017715856432914734, 0.02801133506000042, 0.02791883423924446, 0.003725913120433688, -0.029724735766649246, -0.0017343171639367938, -0.025351284071803093, 0.03688974305987358, 0.014960311353206635, 0.00897328183054924, -0.0016306746983900666, 0.017839664593338966, 0.057222750037908554, 0.017771098762750626, -0.05053941532969475, 0.02657404914498329, 0.02488793060183525, 0.007618860341608524, -0.07573212683200836, -0.01843586377799511, -0.02574310079216957, -0.02846422791481018, -0.01217062957584858, 0.8390238881111145, 0.002175741596147418, 0.01753106527030468, 0.023311402648687363, 0.043027639389038086, 0.0436544232070446, -0.005030624568462372, 0.003015026915818453, 0.0031525681260973215, 0.024521613493561745, -0.014047226868569851, 0.0053140814416110516, 0.022781889885663986, 0.011018198914825916, -0.009163602255284786, 0.007057982962578535, -0.0020906354766339064, 0.02345452643930912, -0.06124807894229889, -0.006203857716172934, -0.014072177931666374, 0.011267130263149738, -0.027944043278694153, 0.01550909224897623, -0.009614824317395687, 0.010300269350409508, -0.16760940849781036, -0.005011837929487228, -7.15990964223566e-33, 0.04274608939886093, 0.017608704045414925, 0.025378160178661346, 0.04370797052979469, 0.03534480556845665, 0.00590141536667943, -0.002660721307620406, 0.007227065972983837, -0.004563556052744389, -0.051393087953329086, -0.04513055831193924, -0.03939209133386612, -0.0024514670949429274, 0.0035211006179451942, 0.05007793381810188, -0.012744518928229809, -0.014999134466052055, 0.0352339893579483, -0.0018673391314223409, 0.047538917511701584, -0.014966264367103577, -0.0049813580699265, -0.016703711822628975, -0.03240946680307388, 0.030144354328513145, 0.08870919793844223, 0.02870159037411213, -0.015149847604334354, -0.027198808267712593, -0.046233367174863815, 0.05113838240504265, -0.001588655635714531, -0.00011432673636591062, 0.011078636161983013, 0.023015232756733894, -0.054865218698978424, 0.016155343502759933, 0.008922741748392582, -0.03713856264948845, -0.03670771047472954, -0.07389787584543228, -0.0008187346975319088, -0.03172650560736656, 0.009342189878225327, -0.004134302027523518, -0.05290982127189636, 0.00346403568983078, 0.024014165624976158, 0.016360672190785408, -0.0087989317253232, 0.03182255104184151, 0.030357379466295242, -0.004000159911811352, -0.037140142172575, -0.012602823786437511, -0.007430533412843943, 0.0053690760396420956, 0.02116454392671585, 0.008669079281389713, 0.024256007745862007, -0.002246930729597807, -0.022157462313771248, -0.024616094306111336, 0.043553926050662994, -0.010758216492831707, 0.045248404145240784, -0.025256186723709106, 0.028590669855475426, 0.012729357928037643, 0.0226894523948431, -0.042474765330553055, -0.018902959302067757, 0.004502976778894663, -0.02046445943415165, 0.029537880793213844, 0.0014099008403718472, 0.010545404627919197, -0.0043409732170403, 0.03126505762338638, 0.023468511179089546, 0.027078216895461082, -0.010009627789258957, 0.001867565792053938, -0.021406760439276695, -0.04813453555107117, -0.03306151181459427, 0.037377648055553436, 0.012134009040892124, 0.006326177157461643, 0.02879943512380123, 0.007295215502381325, 0.05757824704051018, -0.014956128783524036, -0.002824571216478944, -0.017615579068660736, 6.717490302784614e-33, -0.011798865161836147, 0.016161737963557243, -0.04280569776892662, -0.008563674986362457, -0.01837298646569252, -0.011896701529622078, 0.01592455618083477, 0.036117639392614365, -0.023928770795464516, -0.009263891726732254, -0.016212912276387215, 0.020455552265048027, -0.006592100020498037, 0.025354115292429924, 0.04014413431286812, -0.021157151088118553, 0.002203170442953706, -0.014946342445909977, 0.015827905386686325, -0.0030898668337613344, 0.04755893722176552, -0.008512213826179504, 0.02785554900765419, -0.01887146569788456, 0.012142238207161427, 0.057990048080682755, -0.016830675303936005, 0.018031179904937744, 0.004178198520094156, -0.034953515976667404, 0.023682644590735435, -0.06164288893342018, 0.028345968574285507, -0.023032674565911293, 0.022283615544438362, 0.013042467646300793, -0.019062066450715065, 0.0359753742814064, -0.011025498621165752, -0.010309793055057526, 0.002593718934804201, -0.03861217945814133, -0.004606531001627445, 0.03330221399664879, -0.02201729454100132, -0.02562461793422699, -0.018630096688866615, 0.019581804051995277, 0.0009465935872867703, 0.009621038101613522, -0.021444007754325867, -0.0020629381760954857, 0.00021256307081785053, 0.038438014686107635, 0.004680142737925053, 0.006595333106815815, -0.005778773687779903, -0.0013187186559662223, 0.00647243345156312, 0.033882882446050644, 0.003701338544487953, -0.02615438960492611, -0.023216014727950096, 0.023366255685687065, -0.013996711932122707, -0.012450790032744408, -0.00041146582225337625, -0.014794203452765942, -0.04568670317530632, 0.029497206211090088, 0.014398847706615925, -0.007902329787611961, -0.005411365535110235, 0.0031114115845412016, 0.03323482349514961, -0.024544036015868187, -0.007377857342362404, -0.01779923215508461, -0.006398940924555063, 0.01810898445546627, 0.00965327862650156, -0.023202095180749893, -0.0071561322547495365, -0.02757290005683899, -0.0015367802698165178, -0.03349009156227112, -0.03630097582936287, -0.015807997435331345, 0.009676679968833923, -0.03533964976668358, -0.04320623353123665, 0.017080748453736305, -0.022766998037695885, -0.0046415673568844795, -0.008736589923501015, -1.2786360414906994e-8, -0.01744874380528927, -0.006110602058470249, 0.009097629226744175, 0.0025725937448441982, 0.026211634278297424, 0.01798173598945141, -0.04799606278538704, -0.024352028965950012, -0.024764982983469963, 0.028047608211636543, 0.03079446405172348, 0.017666395753622055, 0.007296393159776926, 0.008932524360716343, 0.026805123314261436, -0.080368772149086, -0.01708683744072914, -0.011135216802358627, 0.01728338934481144, 0.018301380798220634, -0.018786596134305, -0.006415886804461479, -0.01374764647334814, -0.015779808163642883, -0.031864799559116364, -0.01801595278084278, 0.02989722229540348, -0.05275338515639305, 0.01053413562476635, -0.008052530698478222, -0.03879629820585251, 0.002473440719768405, -0.0120898662135005, 0.03425486758351326, -0.04472951218485832, 0.000550034106709063, -0.017529230564832687, -0.005632784217596054, -0.014191309921443462, -0.007198336534202099, -0.015804631635546684, -0.03493728116154671, 0.029012858867645264, -0.02089546248316765, -0.00671782111749053, 0.03299099579453468, 0.004907248076051474, 0.0023432814050465822, 0.029546160250902176, 0.024401795119047165, 0.009681934490799904, -0.006253517232835293, 0.01490646880120039, -0.004895261954516172, -0.011173121631145477, -0.01889030449092388, 0.028391854837536812, -0.05719694122672081, -0.0034964357037097216, 0.013257649727165699, 0.04638195410370827, 0.01164903212338686, -0.03272638097405434, -0.009228698909282684 ]
logging-with-pico-container
https://markhneedham.com/blog/2008/11/11/logging-with-pico-container
false
2008-11-28 21:32:28
Html.RadioButton setting all values to selected value workaround
[ "aspnet", "mvc" ]
[ ".NET" ]
While working with the Html.RadioButton() UI helper for ASP.NET MVC we came across an interesting problem whereby when you submitted the form, all the values for that particular group of radio buttons was set to the value of the one that was selected. For example, given a form like this: [source,csharp] ---- <%= Html.RadioButton("option1", true) %>Yes <%= Html.RadioButton("option2", false)%>No ---- When we first load the page, this is the HTML it generated: [source,csharp] ---- <input type="radio" name="option1" value="true" />Yes <input type="radio" name="option1" value="false" />No ---- When we post the form having selected the 'Yes' option for example, this is what the HTML looks like now: [source,csharp] ---- <input type="radio" name="option1" value="true" checked="checked" />Yes <input type="radio" name="option1" value="true" />No ---- A bit of Googling revealed that http://stackoverflow.com/questions/277607/htmlradiobutton-sets-all-values-to-selected-value[others] have come across this same problem and that it is a http://forums.asp.net/t/1338576.aspx[bug in the code]. The solution suggested on Stack Overflow was to write a custom RadioButton helper which does a regex replacement on the 'value=' part of the HTMl generated. We started working down the path to using a similar approach before http://jamescrisp.org/[James] pointed out that we might be able to achieve the same outcome by passing in the value as one of the htmlAttributes. We changed our original Html.RadioButton() code to take in 'new { value = true }' and 'new { value = false }' respectively and it solved the problem.
null
null
[ -0.028176816180348396, -0.012506695464253426, -0.010786201804876328, 0.022761235013604164, 0.060651298612356186, -0.01570785976946354, 0.013833371922373772, 0.02367546409368515, 0.013914861716330051, -0.04551847651600838, -0.027929887175559998, 0.027717849239706993, -0.08426303416490555, 0.021662617102265358, -0.03081406280398369, 0.08714305609464645, 0.035063501447439194, 0.01099118497222662, 0.03203083574771881, -0.03305833786725998, 0.0056839799508452415, 0.06806279718875885, -0.009422412142157555, 0.02269754745066166, 0.05752857029438019, 0.04258850961923599, -0.006234395783394575, -0.035318728536367416, -0.048099689185619354, 0.010312345810234547, 0.02355829067528248, 0.018973462283611298, 0.008426555432379246, -0.016961028799414635, 0.0044051543809473515, -0.036758583039045334, 0.014434521086513996, 0.007006479427218437, -0.002319484483450651, 0.016184091567993164, -0.09547704458236694, 0.013184976764023304, -0.010351247154176235, 0.010181764140725136, -0.02072589099407196, -0.015120874159038067, -0.005665874574333429, 0.0027943886816501617, -0.007181888446211815, -0.0006455960683524609, -0.0583256334066391, 0.04184713959693909, -0.03262196108698845, 0.007084336597472429, -0.0034046850632876158, 0.05878392606973648, 0.022581547498703003, -0.033059313893318176, 0.005011525470763445, -0.06229851767420769, 0.00045585251064039767, 0.023800231516361237, 0.017169225960969925, 0.01846219040453434, 0.006913408171385527, 0.016065336763858795, -0.012415103614330292, 0.0649818703532219, -0.029956066980957985, -0.01354129333049059, -0.005036129150539637, 0.01065628882497549, 0.008863621391355991, -0.029183756560087204, 0.048789460211992264, -0.04023759067058563, -0.05447005853056908, 0.05312073975801468, -0.004658122546970844, 0.03723158687353134, 0.00331158097833395, 0.00644270796328783, 0.05370252951979637, 0.009051010012626648, 0.023238366469740868, -0.03945564106106758, -0.0527942068874836, 0.029476657509803772, 0.0020183997694402933, 0.03438612446188927, 0.012992605566978455, -0.0651201456785202, 0.039329610764980316, 0.033140599727630615, -0.0035187460016459227, 0.013352314941585064, -0.022150959819555283, -0.01555100828409195, -0.009822705760598183, 0.010581656359136105, -0.03907356411218643, -0.00942148920148611, 0.07020508497953415, -0.017710484564304352, -0.09475601464509964, 0.0036204084753990173, -0.052454087883234024, -0.00021033459051977843, 0.030753744766116142, 0.022075364366173744, -0.046956367790699005, -0.0013919391203671694, -0.03663666546344757, 0.002104945946484804, -0.055753834545612335, 0.047271646559238434, -0.00037126426468603313, -0.003653573803603649, 0.0017408234998583794, 0.041984923183918, 0.044568467885255814, 0.0033218322787433863, -0.04560651257634163, 0.06203310564160347, 0.0034866530913859606, 0.026678599417209625, 0.0003562576894182712, 0.05855928733944893, -0.024290097877383232, -0.07785467058420181, -0.005462454166263342, 0.06935429573059082, -0.017662258818745613, 0.01219077780842781, -0.02035975642502308, 0.0011812766315415502, 0.027610767632722855, -0.0006308627198450267, 0.02172480896115303, 0.03466326370835304, -0.04712078720331192, -0.021208392456173897, 0.0037030724342912436, 0.015019134618341923, 0.0033209326211363077, 0.028035050258040428, -0.02412199229001999, -0.015793973580002785, -0.03937263414263725, 0.05167939513921738, 0.011503572575747967, 0.01058253739029169, 0.07415971904993057, -0.006534649524837732, 0.004200771916657686, 0.05016778036952019, 0.02229665033519268, 0.0008751256391406059, 0.01727002114057541, 0.017592357471585274, 0.041924070566892624, 0.028991086408495903, 0.006897499319165945, 0.05427378788590431, 0.00986490398645401, 0.008862837217748165, -0.026066550984978676, 0.04766208305954933, -0.0017077461816370487, -0.020120011642575264, -0.06708087772130966, -0.042088236659765244, 0.05858489125967026, -0.06201721355319023, -0.007052125874906778, 0.029225794598460197, 0.06803160905838013, -0.013197259046137333, 0.05418418347835541, 0.006778394337743521, -0.06707088649272919, -0.008319425396621227, 0.015062590129673481, 0.019224829971790314, 0.040929049253463745, 0.013209574855864048, 0.06443831324577332, 0.050335872918367386, 0.03015388362109661, 0.03466642275452614, -0.06653095036745071, -0.06267775595188141, -0.05811867490410805, -0.005516419652849436, 0.08176455646753311, -0.011710461229085922, -0.027091899886727333, 0.11608394235372543, 0.04084359109401703, 0.040587879717350006, 0.04663976654410362, -0.03642015904188156, -0.001909207203425467, -0.02265632338821888, -0.046074990183115005, -0.004861707799136639, 0.02537303790450096, 0.0038104781415313482, -0.025896776467561722, 0.04050767421722412, -0.026678841561079025, 0.015777066349983215, 0.014194825664162636, -0.006056459620594978, 0.04343988373875618, 0.018600167706608772, 0.04600449278950691, -0.02236325852572918, 0.03267865628004074, -0.07117634266614914, 0.03576432168483734, -0.004143463913351297, 0.017596451565623283, -0.010747433640062809, 0.004350935574620962, 0.13169749081134796, 0.05162909999489784, -0.00932214967906475, -0.057834405452013016, 0.019910622388124466, 0.003295879578217864, -0.030371082946658134, 0.02511652372777462, 0.001289389212615788, 0.004865644499659538, -0.020170429721474648, -0.02803623303771019, -0.012048274278640747, -0.012337441556155682, -0.050147511065006256, 0.03820458799600601, 0.053270261734724045, -0.025527093559503555, 0.055397454649209976, -0.00889020599424839, -0.022245939821004868, 0.013115784153342247, 0.017724845558404922, -0.023500557988882065, -0.007091210689395666, 0.03980131074786186, -0.004964594263583422, 0.03916506841778755, -0.008484374731779099, -0.021494287997484207, -0.0149857671931386, -0.003942249342799187, -0.0033893550280481577, 0.024321727454662323, 0.06872305274009705, 0.011902322061359882, 0.043066371232271194, -0.011454285122454166, -0.024905389174818993, -0.01405644603073597, -0.054038163274526596, -0.0006265277625061572, -0.01219155453145504, 0.012393840588629246, 0.02629612572491169, -0.003050754778087139, 0.016200777143239975, 0.007567189633846283, -0.002898953855037689, -0.023753849789500237, 0.017374975606799126, 0.04049373045563698, -0.0024362122640013695, -0.009648383595049381, 0.0034198325593024492, -0.03361494466662407, 0.02666318602859974, -0.034695349633693695, -0.0801035612821579, -0.0005553666269406676, -0.07578760385513306, 0.03259577229619026, -0.08006737381219864, -0.06823530793190002, 0.020950663834810257, -0.028291093185544014, 0.003231065347790718, -0.001657593296840787, 0.0548383928835392, 0.061155054718256, -0.040728937834501266, 0.029443146660923958, 0.026976438239216805, -0.01302102766931057, 0.012187010608613491, -0.006486839614808559, 0.009630944579839706, 0.036049794405698776, -0.021501677110791206, 0.021721474826335907, -0.05901683494448662, 0.04910660535097122, -0.014904404990375042, -0.25802358984947205, 0.03802783042192459, 0.008135110139846802, -0.046100445091724396, 0.03091495856642723, -0.011003834195435047, 0.05496716499328613, -0.04262278974056244, -0.000579170067794621, 0.040033008903265, -0.03228139877319336, -0.04504565894603729, -0.04025682061910629, 0.05270333215594292, -0.0005261935293674469, -0.02704911306500435, 0.010795876383781433, -0.01474363636225462, -0.0011537234531715512, 0.001838772208429873, 0.004042613785713911, -0.05608762055635452, 0.008932174183428288, 0.05065794661641121, 0.02808568626642227, 0.057795800268650055, -0.042351022362709045, 0.024395503103733063, -0.010975456796586514, -0.01867758482694626, 0.03641168400645256, 0.0030445705633610487, 0.023716814815998077, -0.021994713693857193, -0.01181499008089304, -0.015701109543442726, 0.026766454800963402, 0.029117610305547714, 0.025449000298976898, -0.0042678010649979115, -0.021943388506770134, -0.02238628827035427, 0.03089541755616665, -0.00358426570892334, 0.07606402039527893, -0.010517263785004616, -0.04302978515625, 0.027105938643217087, -0.07124647498130798, 0.076767697930336, 0.006340477615594864, -0.03071795217692852, 0.022154439240694046, 0.05807594209909439, 0.004890647251158953, 0.0006170629058033228, 0.008621594868600368, -0.01005051750689745, -0.04089321568608284, -0.07145194709300995, 0.004061373881995678, -0.047061122953891754, -0.03921417146921158, -0.053630612790584564, -0.0032680907752364874, -0.07016860693693161, -0.06752615422010422, 0.0019596198108047247, 0.07165031135082245, 0.05677979439496994, -0.01181425154209137, 0.012079049833118916, 0.023794787004590034, -0.10492707043886185, 0.021263593807816505, -0.03278554603457451, -0.01698867231607437, -0.024229202419519424, -0.04253116250038147, 0.029903406277298927, -0.04822634533047676, -0.03449413180351257, 0.033001892268657684, 0.002192211104556918, -0.02717607282102108, -0.0073944260366261005, 0.05676630139350891, 0.016327382996678352, -0.03298152610659599, 0.006160181947052479, 0.0800541341304779, -0.014381512999534607, -0.01314887497574091, -0.04658396169543266, 0.014224321581423283, 0.018080653622746468, 0.021249625831842422, -0.015589340589940548, 0.041700150817632675, 0.024937337264418602, 0.06888299435377121, -0.03912121430039406, 0.02695673331618309, -0.041555255651474, 0.00014548181206919253, -0.003658081404864788, -0.06485321372747421, 0.005745353642851114, 0.010445363819599152, -0.011348055675625801, -0.02827099710702896, -0.03943047299981117, -0.01945534534752369, -0.04615534469485283, -0.012938371859490871, -0.014327178709208965, 0.011027640663087368, -0.013880238868296146, -0.016543840989470482, -0.022995997220277786, -0.02825225330889225, 0.03561314567923546, -0.008355504833161831, -0.010581884533166885, -0.061365336179733276, -0.051781751215457916, -0.0002790513390209526, -0.003981474321335554, 0.016558092087507248, 0.011385776102542877, 0.007476688828319311, 0.0349188931286335, -0.03361799195408821, -0.007855767384171486, 0.013162250630557537, 0.02774038165807724, 0.010856692679226398, -0.01423618197441101, 0.019591616466641426, -0.02674231119453907, -0.011053484864532948, 0.005274789407849312, 0.019212419167160988, -0.008820733055472374, 0.07689529657363892, 0.009763514623045921, 0.024502048268914223, 0.02380678988993168, -0.009833771735429764, 0.01584431901574135, 0.0027234971057623625, -0.08156011253595352, 0.0056334249675273895, -0.030096353963017464, -0.03015015833079815, -0.018743090331554413, 0.040201205760240555, -0.028007613494992256, -0.007680806331336498, -0.04542997106909752, -0.015291144140064716, -0.04781055450439453, -0.01803029701113701, 0.007291532587260008, 0.01598966307938099, 0.04633060470223427, 0.0020664448384195566, 0.03726581484079361, 0.02200320176780224, -0.011645358987152576, 0.009372455067932606, 0.033185720443725586, 0.001990566262975335, -0.011101828888058662, -0.008906258270144463, -0.01794597879052162, 0.0064561571925878525, -0.0047419993206858635, 0.03346617892384529, 0.0340278223156929, 0.024403858929872513, -0.021096976473927498, 0.01902618072926998, 0.0429815948009491, 0.052367500960826874, -0.0027741016820073128, -0.02984701655805111, -0.012840460985898972, 0.019279198721051216, -0.012622575275599957, -0.0635858103632927, -0.022258440032601357, -0.02352224290370941, -0.007098766975104809, -0.03381321206688881, -0.05864187330007553, -0.012083840556442738, 0.0007097102934494615, 0.028772911056876183, 0.006059602834284306, -0.0007753080572001636, 0.004238820634782314, -0.029842881485819817, 0.009858720935881138, 0.001545395702123642, -0.062255024909973145, 0.0231819748878479, -0.02271539904177189, -0.01378177385777235, 0.026435669511556625, 0.0023640012368559837, -0.06638894975185394, -0.012222041375935078, -0.016778070479631424, 0.0026029758155345917, -0.04972470551729202, -0.05688311159610748, -0.033550459891557693, 0.01603803038597107, -0.006725882645696402, -0.007867666892707348, -0.011611641384661198, 0.02229035645723343, -0.006800020579248667, -0.026048894971609116, -0.0006940148305147886, -0.048494912683963776, -0.007928445935249329, 0.03736833110451698, -0.03023878112435341, 0.018074924126267433, 0.006113864481449127, 0.0047883642837405205, 0.00818652007728815, -0.005482152570039034, -0.05463229492306709, -0.05458581820130348, 0.00545082101598382, 0.0035737373400479555, 0.06683284044265747, 0.01372154988348484, 0.004031183198094368, -0.05149349570274353, -0.000894449301995337, -0.008098321966826916, -0.004564711824059486, 0.0021042141597718, -0.00887304451316595, 0.03008039854466915, 0.059235263615846634, 0.042885780334472656, 0.024777961894869804, -0.021160585805773735, -0.0007519205682910979, 0.05775878578424454, -0.05867217481136322, -0.0009749963646754622, -0.010569276288151741, -0.05031518638134003, 0.028865883126854897, 0.02229493297636509, 0.06784270703792572, -0.050651002675294876, 0.03300589695572853, 0.03148180618882179, 0.01156865619122982, -0.025661809369921684, -0.016160037368535995, 0.01740938425064087, -0.02439148724079132, 0.029738564044237137, -0.07910580188035965, 0.013738390989601612, 0.015474831685423851, 0.02227170392870903, -0.02306145243346691, -0.0369037389755249, -0.01051389705389738, 0.026622410863637924, -0.07315301150083542, -0.016369076445698738, 0.022821687161922455, 0.03391379117965698, -0.03402089700102806, 0.02263486757874489, -0.06450118124485016, 0.04864903539419174, 0.037804875522851944, -0.030646761879324913, -0.03611326962709427, -0.021517327055335045, 0.05122152715921402, -0.005836424417793751, -0.002294334350153804, -0.057562556117773056, 0.02255956269800663, 0.05806293338537216, 0.043949492275714874, 0.026637587696313858, 0.052886079996824265, -0.012427280656993389, 0.02034502662718296, 0.051848337054252625, 0.00908711925148964, -0.03186074271798134, 0.01858312264084816, 0.010532466694712639, -0.07886414229869843, -0.003701932029798627, 0.03392384201288223, -0.02567688561975956, -0.06884682923555374, 0.07249024510383606, 0.008210542611777782, -0.025938604027032852, -0.033491358160972595, -0.031940314918756485, -0.03138076514005661, -0.014028462581336498, -0.008520158939063549, 0.017930902540683746, -0.0432933084666729, 0.07042669504880905, 0.02137751132249832, -0.013212261721491814, 0.08036379516124725, -0.013405942358076572, 0.005507902707904577, -0.006051201838999987, 0.051707666367292404, 0.05245177820324898, 0.054877229034900665, -0.014167864806950092, 0.05345680192112923, -0.035435087978839874, -0.06592410057783127, 0.04100532457232475, -0.04243671894073486, -0.019724950194358826, -0.020615212619304657, -0.05842652544379234, 0.054487552493810654, -0.010602007620036602, 0.06672453880310059, -0.04025871679186821, 0.006934871431440115, -0.021174466237425804, 0.037010762840509415, 0.013274848461151123, 0.019209368154406548, 0.026425905525684357, -0.019569475203752518, -0.01697082631289959, -0.03051096946001053, 0.035256277769804, -0.02972661331295967, -0.010151926428079605, 0.01020567025989294, -0.017666207626461983, 0.024110307916998863, -0.034988392144441605, 0.02303255908191204, 0.06738302856683731, -0.007197541184723377, 0.0005998181877657771, 0.01994572952389717, 0.03349960967898369, -0.004335641395300627, -0.01468522660434246, 0.014059791341423988, -0.027630213648080826, -0.017346829175949097, -0.0019742806907743216, 0.0027441782876849174, -0.05841881036758423, -0.03278402239084244, 0.014951330609619617, -0.03760024532675743, 0.028255078941583633, 0.04771750047802925, -0.007312435191124678, -0.04964502155780792, -0.04703816771507263, -0.03853587061166763, -0.0818115845322609, -0.0628587007522583, -0.032982971519231796, 0.0025707189925014973, -0.012662916444242, -0.033376000821590424, -0.010759672150015831, -0.022174334153532982, -0.003474964527413249, 0.05990736186504364, -0.01996825821697712, -0.030755536630749702, 0.032143812626600266, 0.002515043830499053, 0.032471079379320145, 0.06013086438179016, 0.008879955857992172, 0.006366336718201637, -0.038707833737134933, -0.03903007507324219, -0.049392059445381165, 0.05485803261399269, 0.008235902525484562, 0.0024277723859995604, -0.07463712990283966, 0.009551715105772018, 0.022898029536008835, -0.013617915101349354, -0.046691276133060455, 0.04356834292411804, 0.011432025581598282, -0.03703237324953079, 0.047380365431308746, -0.04393694922327995, -0.035086747258901596, -0.03985588997602463, -0.010384507477283478, 0.008307481184601784, 0.0020422954112291336, 0.04266076534986496, -0.04384249448776245, 0.06910664588212967, 0.03434782475233078, 0.001516819349490106, -0.041761137545108795, 0.01720697060227394, -0.004644821863621473, -0.007461128756403923, -0.04334801062941551, -0.0561797097325325, -0.07612397521734238, -0.0328066311776638, -0.01756472699344158, 0.014379417523741722, -0.01331909466534853, -0.036487843841314316, 0.03756098449230194, 0.043986134231090546, -0.048913948237895966, 0.03888817876577377, -0.025542382150888443, 0.020985903218388557, -0.02663363516330719, -0.015108069404959679, -0.003574514528736472, 0.03148145601153374, 0.016524024307727814, -0.022406142204999924, 0.050940413028001785, -0.029251595959067345, -0.015739217400550842, -0.02587946690618992, 0.011674969457089901, 0.01581527851521969, -0.015103661455214024, 0.023648060858249664 ]
[ -0.07929687201976776, 0.003950298298150301, -0.06331463158130646, -0.057543445378541946, -0.00788554735481739, -0.03877807781100273, 0.02090768702328205, -0.027510477229952812, -0.0023066799622029066, -0.015396221540868282, -0.0030046082101762295, 0.005001298151910305, -0.010881699621677399, 0.04464609548449516, 0.08334847539663315, 0.033453721553087234, -0.05404816195368767, -0.031273409724235535, -0.04775585979223251, 0.0519166998565197, 0.006191307213157415, 0.013270302675664425, 0.0089966906234622, -0.017710864543914795, 0.025310011580586433, 0.02010316401720047, 0.036024101078510284, -0.04069197550415993, -0.005313899368047714, -0.17544180154800415, 0.008708024397492409, -0.02879391983151436, 0.053460173308849335, -0.007559717167168856, -0.026810700073838234, -0.024426328018307686, 0.025077225640416145, -0.010824198834598064, 0.01227612979710102, 0.06582745909690857, -0.02641434408724308, 0.0044294497929513454, -0.003266460495069623, -0.0648224800825119, 0.026121770963072777, 0.02215319499373436, 0.026473363861441612, 0.018071798607707024, 0.002128709340468049, 0.00889513734728098, -0.002457441296428442, -0.017952581867575645, -0.045495692640542984, 0.006156836170703173, 0.02902914769947529, -0.019222740083932877, 0.00619675824418664, 0.07516182959079742, -0.0023213489912450314, 0.05589436739683151, 0.014536125585436821, 0.004646046552807093, -0.11243824660778046, 0.1508861929178238, 0.00979978870600462, 0.06787184625864029, 0.014494773000478745, -0.03981219604611397, -0.037415072321891785, 0.07512672245502472, 0.02997642382979393, -0.035999845713377, -0.024943115189671516, 0.02122771367430687, 0.08725932985544205, -0.02801559306681156, -0.024871008470654488, 0.04774390906095505, 0.04131016507744789, -0.013483435846865177, -0.0352698490023613, -0.02358197793364525, -0.023979462683200836, -0.004495630040764809, 0.009619460441172123, 0.009457151405513287, 0.018697716295719147, -0.008716910146176815, -0.019887246191501617, 0.012281335890293121, -0.02127666212618351, -0.06338699162006378, -0.03318515047430992, 0.0287399310618639, -0.04540838301181793, 0.0006547903758473694, -0.02868368849158287, 0.001242849393747747, -0.06268506497144699, 0.33736979961395264, -0.032839447259902954, -0.005552192684262991, 0.03625217825174332, -0.025506163015961647, -0.08299411833286285, -0.01628730818629265, 0.0021555819548666477, -0.027251319959759712, -0.003360484726727009, -0.013823293149471283, -0.02925495058298111, -0.02280934900045395, 0.013161994516849518, -0.03164423629641533, -0.03719630464911461, 0.036963578313589096, 0.025688815861940384, 0.0063272807747125626, 0.04903256148099899, -0.036567214876413345, 0.008231429383158684, -0.019938435405492783, 0.05295577272772789, 0.03178891912102699, 0.02347468212246895, 0.013279560953378677, 0.04390908032655716, 0.08451526612043381, 0.024013182148337364, 0.00980944000184536, 0.06627605110406876, -0.06312192976474762, -0.06216997653245926, -0.0031316655222326517, 0.026640968397259712, 0.0025564793031662703, 0.04380219429731369, 0.018910109996795654, -0.007422270253300667, 0.029757997021079063, 0.02342839539051056, -0.07466448098421097, 0.0004995613126084208, 0.011798485182225704, -0.09811459481716156, 0.09934782981872559, -0.047923747450113297, -0.04721987247467041, -0.03998985141515732, -0.003196106990799308, -0.045044440776109695, 0.04767051711678505, -0.02991669997572899, -0.008864467963576317, -0.025997711345553398, 0.09041231125593185, 0.020482013002038002, -0.015828445553779602, -0.01080838218331337, -0.0827890932559967, 0.009718150831758976, 0.018093613907694817, -0.02713063731789589, 0.07412096858024597, 0.04447927698493004, -0.10493335127830505, -0.07057418674230576, -0.036535657942295074, 0.009026122279465199, -0.054625216871500015, -0.07397454977035522, 0.056727129966020584, -0.0814831554889679, -0.04488225281238556, 0.07963193207979202, 0.025094497948884964, 0.024906735867261887, 0.01669103093445301, 0.010389885865151882, 0.01428091712296009, 0.0015804562717676163, -0.0018996968865394592, -0.06020131707191467, -0.0256760623306036, -0.03152342885732651, -0.03527750447392464, -0.05809599533677101, -0.01831347495317459, 0.027575889602303505, -0.021243618801236153, -0.004993183072656393, -0.05435635894536972, -0.03993582725524902, 0.05955253168940544, -0.004693168215453625, -0.015906231477856636, 0.020769810304045677, -0.04624415189027786, 0.054595284163951874, -0.021662959828972816, 0.031228743493556976, -0.008297459222376347, -0.013745942153036594, 0.010894322767853737, -0.010448552668094635, 0.06149385869503021, 0.05543803796172142, -0.06340207159519196, 0.06965111196041107, -0.025418881326913834, -0.0399324968457222, 0.030638160184025764, 0.028400825336575508, 0.03517470881342888, 0.0016338867135345936, -0.03306598961353302, -0.02817099541425705, 0.040730033069849014, 0.026847491040825844, 0.045844804495573044, -0.02894902043044567, -0.04663298279047012, 0.006644469685852528, -0.3197118043899536, -0.0045066638849675655, -0.014657007530331612, -0.014220246113836765, -0.03439462557435036, -0.062326669692993164, -0.025876116007566452, 0.006745561491698027, -0.00003766868758248165, 0.007455108687281609, 0.06987351179122925, 0.028931574895977974, -0.01897899992763996, -0.1149391308426857, 0.021985935047268867, 0.005338831804692745, 0.002528705168515444, -0.040485307574272156, -0.019909482449293137, 0.027710355818271637, -0.017159488052129745, 0.019279617816209793, 0.01608121767640114, -0.031027451157569885, 0.010009130463004112, -0.04945385828614235, 0.11637862026691437, 0.015718519687652588, 0.0713873878121376, -0.011016699485480785, 0.034135736525058746, 0.04234330356121063, 0.017699381336569786, -0.03715823218226433, -0.04963633045554161, -0.03149066120386124, -0.038692932575941086, 0.06506939232349396, 0.01980074867606163, 0.03807199001312256, -0.01857580989599228, -0.039284463971853256, -0.04945337772369385, -0.06077510118484497, 0.03887813910841942, -0.04376146197319031, 0.01829780451953411, -0.03545461967587471, 0.005867414642125368, 0.07340066879987717, -0.000567531562410295, 0.02671673148870468, -0.07568921893835068, 0.09106901288032532, 0.020131640136241913, -0.009405937977135181, -0.03472830355167389, -0.04426232725381851, -0.005779313389211893, -0.02017821930348873, 0.057855743914842606, 0.012246870435774326, 0.03367387875914574, -0.03170493617653847, -0.011134780943393707, 0.04263104870915413, -0.0005318462499417365, 0.003985349554568529, 0.0583304688334465, -0.03209298104047775, -0.05057144537568092, 0.10267341881990433, 0.017274586483836174, 0.05777363479137421, 0.019709505140781403, -0.0028640867676585913, -0.027086634188890457, 0.025166330859065056, 0.06531312316656113, 0.03627174347639084, -0.01236761175096035, 0.03553297743201256, 0.059800419956445694, 0.012151103466749191, 0.010724663734436035, 0.052344948053359985, -0.027179107069969177, 0.022912725806236267, 0.038103289902210236, -0.04121853783726692, -0.04141838476061821, -0.007714822888374329, -0.00942047219723463, -0.054637361317873, 0.043409593403339386, -0.04618912562727928, -0.2188422530889511, 0.017141148447990417, 0.07912090420722961, 0.07293952256441116, -0.03759131580591202, 0.043453898280858994, 0.022340964525938034, -0.060493696480989456, -0.07772848010063171, 0.03359311819076538, -0.05759425833821297, 0.0562007799744606, 0.020209845155477524, -0.05548076704144478, 0.053408220410346985, -0.0011991094797849655, -0.002564376452937722, 0.03594007343053818, 0.030698617920279503, 0.008565674535930157, 0.022270098328590393, -0.002195329638198018, 0.1599409133195877, 0.06050434336066246, 0.014575611799955368, 0.05379932001233101, 0.01107756420969963, 0.005340746138244867, 0.08900126814842224, 0.028154905885457993, 0.0073059117421507835, -0.04637296870350838, 0.1252749115228653, -0.019236499443650246, 0.031192006543278694, -0.099661685526371, -0.02571588195860386, 0.02590193785727024, -0.01001084316521883, -0.019231656566262245, -0.05086549371480942, 0.032375238835811615, -0.06539799273014069, 0.020117931067943573, 0.095550537109375, -0.013322371989488602, -0.003632570384070277, 0.0017057842342182994, -0.041363175958395004, 0.008471472188830376, -0.07077527046203613, -0.010233303532004356, -0.022481055930256844, -0.036085594445466995, -0.006503607612103224, 0.07297098636627197, -0.02796633169054985, -0.08270874619483948, -0.01858332008123398, -0.007358296774327755, -0.0031715857330709696, 0.03816664591431618, 0.1077304407954216, 0.03050217591226101, 0.06304070353507996 ]
[ -0.0047553847543895245, 0.031062420457601547, -0.047084297984838486, 0.04040621966123581, 0.013924572616815567, 0.022222578525543213, 0.037064023315906525, -0.0187840573489666, -0.023696763440966606, -0.0009301312384195626, -0.00010783226753119379, -0.043192360550165176, 0.07020323723554611, 0.0016615923959761858, 0.0028297228273004293, -0.01536618359386921, 0.011310729198157787, -0.07338251173496246, 0.013177603483200073, -0.005488560069352388, -0.07571693509817123, 0.03981609642505646, 0.04142268747091293, -0.01521305087953806, 0.054435767233371735, 0.013208058662712574, 0.002719319425523281, -0.03033563308417797, 0.017117876559495926, -0.10733070224523544, -0.006096480879932642, -0.04054402932524681, 0.029177634045481682, 0.02188875339925289, -0.01821775548160076, -0.004395162686705589, 0.007089576218277216, 0.08137455582618713, -0.03247442841529846, 0.022618310526013374, -0.07182592153549194, 0.013418629765510559, -0.009184567257761955, 0.024165567010641098, -0.05819365009665489, -0.03216966241598129, 0.0027372511103749275, -0.03932572528719902, 0.012926002964377403, -0.01189748290926218, 0.06239323318004608, -0.02111027203500271, 0.0192800872027874, 0.05696849524974823, 0.02666277252137661, -0.034806277602910995, -0.029683342203497887, -0.004639564547687769, 0.011686177924275398, 0.04760473221540451, -0.01770002953708172, -0.02928774058818817, -0.03636879473924637, -0.026388565078377724, 0.048850126564502716, 0.04400378093123436, -0.049800384789705276, -0.022127920761704445, -0.036331914365291595, -0.02143223211169243, 0.006584214977920055, 0.01701625995337963, -0.0025855940766632557, -0.015847845003008842, 0.019983164966106415, -0.063469298183918, 0.02246149256825447, 0.027218230068683624, 0.03358840569853783, -0.006045080721378326, -0.061948273330926895, 0.006510906852781773, -0.040454354137182236, -0.006430504843592644, 0.03754708915948868, -0.00852117594331503, -0.03168686106801033, -0.0009061379823833704, -0.002565323142334819, 0.022569715976715088, -0.07001284509897232, 0.06524351239204407, -0.005846956744790077, 0.017604025080800056, -0.025587014853954315, 0.02125394716858864, 0.010974249802529812, -0.028073418885469437, -0.0027981610037386417, 0.7771015167236328, 0.03999749943614006, -0.03828093409538269, -0.010525890626013279, -0.01625378616154194, -0.008592554368078709, -0.09910071641206741, -0.006516357883810997, 0.03219612315297127, 0.017107287421822548, -0.022478386759757996, 0.014292347244918346, 0.034984201192855835, 0.014207596890628338, 0.05083611235022545, 0.010249319486320019, 0.06645850837230682, 0.05378052219748497, 0.005775504279881716, -0.04343556612730026, 0.007516566663980484, -0.02507372386753559, -0.012903268449008465, -0.0407380647957325, 0.024389633908867836, 0.051410797983407974, -0.18734107911586761, 0.012242130003869534, -7.59101558324401e-33, -0.010267967358231544, 0.03631928563117981, 0.02831067517399788, -0.0002197933936258778, 0.027454238384962082, 0.029015349224209785, -0.03770240396261215, 0.03357609733939171, 0.056854959577322006, -0.011332047171890736, 0.012593181803822517, 0.005244202446192503, -0.009665977209806442, -0.0301735270768404, 0.04306383058428764, 0.00004731476292363368, -0.07946883887052536, 0.04625382646918297, -0.027102438732981682, -0.053061194717884064, 0.03339722007513046, 0.04074329510331154, 0.01794315315783024, 0.030393140390515327, 0.008654303848743439, 0.06600937992334366, -0.026062889024615288, 0.018465889617800713, -0.008668183349072933, -0.0359356552362442, -0.04002699628472328, 0.01563619077205658, -0.03613319247961044, -0.002579252002760768, -0.008293040096759796, -0.015796221792697906, -0.029868705198168755, 0.004671754315495491, -0.004587559495121241, 0.0009394653025083244, 0.01319821085780859, -0.0028973522130399942, -0.037039801478385925, -0.010577836073935032, -0.009532359428703785, -0.044061288237571716, 0.008716623298823833, -0.025398334488272667, 0.009142530150711536, -0.000019005339709110558, -0.06353281438350677, 0.037626300007104874, -0.0008591936202719808, -0.015346414409577847, -0.003977012820541859, 0.038001298904418945, 0.004429224878549576, 0.034180548042058945, -0.023304278030991554, -0.017519580200314522, 0.029199650511145592, -0.02078101597726345, -0.016569603234529495, 0.006652093958109617, 0.0049850186333060265, -0.00880893599241972, -0.024909822270274162, -0.02763555757701397, 0.01722688600420952, -0.023911084979772568, -0.03378646448254585, 0.0007828037487342954, -0.016228824853897095, -0.03524550423026085, 0.01862996257841587, 0.017004486173391342, -0.008541152812540531, 0.042509883642196655, 0.01248929277062416, 0.04165906086564064, -0.02466837503015995, -0.0026374799199402332, -0.027189522981643677, -0.03864716365933418, 0.044313203543424606, -0.028041090816259384, 0.006404326297342777, -0.023726889863610268, -0.006900143809616566, 0.0197026077657938, 0.012998417019844055, 0.06694936007261276, -0.02941630594432354, -0.031987499445676804, 0.016608260571956635, 7.314819226522898e-33, -0.015296400524675846, -0.005261069163680077, -0.0021904711611568928, -0.004993903916329145, 0.03739696368575096, -0.04556335508823395, -0.03840821608901024, 0.05898130685091019, -0.0325443372130394, 0.0159517340362072, 0.021838514134287834, -0.0035583707503974438, -0.04303385689854622, 0.022166531533002853, -0.02338782139122486, -0.0059615252539515495, 0.02792549505829811, -0.0070257061161100864, 0.03743177652359009, -0.013055690564215183, 0.010371390730142593, 0.042298756539821625, 0.01968270167708397, 0.029556579887866974, -0.02821347303688526, 0.037868864834308624, -0.00023067159054335207, -0.004556243307888508, 0.06415484100580215, 0.041600026190280914, -0.029622729867696762, 0.03712630271911621, -0.0012565534561872482, -0.028037887066602707, 0.05051921680569649, 0.012837459333240986, 0.02696267142891884, 0.0064930543303489685, -0.010023454204201698, -0.0014789081178605556, -0.020054927095770836, -0.02917436882853508, 0.0009250056464225054, 0.004174754023551941, -0.0006503448239527643, -0.015970634296536446, 0.011380317620933056, 0.0032994935754686594, 0.006928003393113613, 0.004897772334516048, 0.03533720597624779, -0.027048997581005096, -0.008207332342863083, 0.03436079993844032, 0.00610386161133647, -0.020192231982946396, -0.009226861409842968, 0.004734585527330637, -0.003687381511554122, -0.024915609508752823, -0.007297234609723091, 0.015360606834292412, -0.01757139153778553, -0.029404742643237114, -0.018639205023646355, 0.01894472911953926, -0.019345290958881378, 0.03626696392893791, 0.022705303505063057, 0.010749067179858685, -0.023551393300294876, -0.09158466011285782, 0.017047474160790443, -0.0005576497642323375, -0.04053414613008499, 0.01148928515613079, 0.04883839935064316, 0.009928611107170582, -0.006781098898500204, -0.03487382084131241, 0.012944365851581097, 0.03815833479166031, 0.01681014522910118, -0.024892671033740044, 0.02403670735657215, 0.047044821083545685, -0.0069732959382236, -0.01927267573773861, -0.004537214059382677, -0.019927140325307846, -0.021021921187639236, 0.04451417922973633, 0.0024357447400689125, 0.020056473091244698, -0.039648350328207016, -1.2483491573789252e-8, -0.0517568401992321, 0.02479722909629345, 0.012811150401830673, -0.015186673030257225, 0.003256740514189005, 0.018243536353111267, -0.03368353843688965, -0.044373769313097, -0.01753268577158451, 0.028696322813630104, 0.005847774911671877, 0.05067751184105873, 0.050491347908973694, -0.009086962789297104, -0.011526966467499733, -0.015181773342192173, -0.06751210987567902, 0.014730238355696201, 0.05094684287905693, 0.017094280570745468, 0.01660074293613434, 0.01565922237932682, -0.011799215339124203, 0.004172910936176777, 0.046345848590135574, 0.025545047596096992, 0.0009138663881458342, -0.06058751791715622, 0.044039562344551086, 0.016483105719089508, 0.023508967831730843, -0.0029622111469507217, -0.04440554976463318, 0.014419405721127987, -0.036154989153146744, -0.03614799305796623, -0.024143870919942856, -0.027336223050951958, 0.009801107458770275, 0.0271521657705307, 0.024935932829976082, 0.008747030049562454, -0.021226486191153526, -0.013703281991183758, -0.056045446544885635, 0.010224499739706516, -0.015408121980726719, 0.0374302938580513, 0.03528422489762306, -0.03036404959857464, -0.01099524274468422, -0.018035493791103363, 0.013686283491551876, -0.05272096395492554, -0.012123527936637402, 0.04679560661315918, 0.017204536125063896, -0.014097513630986214, 0.006603703368455172, -0.005333162844181061, -0.016310609877109528, 0.018430011346936226, -0.042892202734947205, -0.01866762526333332 ]
htmlradiobutton-setting-all-values-to-selected-value-workaround
https://markhneedham.com/blog/2008/11/28/htmlradiobutton-setting-all-values-to-selected-value-workaround
false
2008-11-28 00:34:24
TDD: Suffering from testing last
[ "tdd", "testing" ]
[ "Testing" ]
I've always been a big proponent of writing tests before writing code, and I roll off the standard reasons to people who question this approach: * They help to drive the design * They provide a safety net when making future changes * They provide a way of communicating the intent of the code to the rest of the team And so on. Despite knowing all this I recently took a non test driven approach to writing some bits of code - we were keen to get the system working end to end so it seemed a trade off worth making to prove that it was doable. I knew that I would *suffer when it came to testing this code after I had already written it* and indeed it did! I've tested around legacy code before and although http://www.amazon.co.uk/Working-Effectively-Legacy-Robert-Martin/dp/0131177052/ref=sr_1_1?ie=UTF8&s=books&qid=1227794213&sr=8-1[Michael Feather's book] makes it much easier, it's still not a great experience. The saving grace has always been that I didn't write the code whereas in this case it was quite definitely my fault that I ended up with this problem. The original pain came from not knowing where I should start. Since we didn't have any tests I wasn't sure exactly what the code was doing despite the fact that I had written most of it fairly recently. In particular I ran into the problem whereby I wrote a test which passed so all seemed good. Suspicious as to whether this was the case I decided to comment out some of the code which was apparently making the code pass. I expected the test to fail and give me the red bar but in actual fact the test still passed! It turned out that I had written the expectations for my mocks slightly wrong in the test - a mistake that I would have definitely caught if I had written the test first but could have easily missed by testing last. After this I decided that because there wasn't too much complex logic in this particular piece it would be much better to *comment out the code and then test first* before fitting it back together again. Eventually I got all the code covered but it took much longer than if I had just tested it properly the first time around. For me software development is all about creating quick feedback loops and I find it very frustrating when I'm unable to do this. Testing first is one very good way of achieving this as it provides a clear way forward and gives feedback on our progress. I will certainly be very reluctant to test last again.
null
null
[ 0.03488927334547043, 0.010458316653966904, 0.0033516327384859324, 0.051140688359737396, 0.10355382412672043, 0.022557007148861885, 0.013680796138942242, 0.026963340118527412, 0.027345774695277214, -0.01813432015478611, -0.005918677430599928, 0.021550239995121956, -0.06284893304109573, 0.005429987795650959, -0.040692489594221115, 0.06861831247806549, 0.07492560148239136, -0.008265385404229164, 0.04126809909939766, 0.009432569146156311, 0.03410888463258743, 0.06491784751415253, -0.0038119328673928976, 0.03684113174676895, 0.031506478786468506, 0.025340961292386055, 0.005885457620024681, -0.0008313824655488133, -0.07971832901239395, -0.012981420382857323, 0.04649193957448006, -0.001527783926576376, 0.010372836142778397, -0.0042317332699894905, -0.010203332640230656, -0.02382851392030716, -0.026060977950692177, 0.030157366767525673, 0.000838860752992332, 0.013241102918982506, -0.059684984385967255, 0.025097250938415527, 0.000915440556127578, -0.003118477761745453, -0.05156869441270828, 0.018177954480051994, -0.03879246488213539, -0.005391350947320461, -0.007096495013684034, -0.0045799994841217995, -0.05137034133076668, 0.05036834627389908, -0.0313117615878582, -0.020491596311330795, -0.014223599806427956, 0.059880055487155914, 0.026682360097765923, -0.06821981817483902, 0.014664976857602596, -0.04390227049589157, 0.007624863181263208, -0.0014353281585499644, -0.0015666976105421782, 0.05294002220034599, 0.027747731655836105, -0.023605061694979668, -0.0011067326413467526, 0.04796407371759415, -0.039921510964632034, 0.00980254728347063, -0.01289281900972128, 0.01470867171883583, -0.01732795685529709, -0.03372209146618843, 0.0019284322625026107, -0.045803219079971313, -0.005651162471622229, 0.06427765637636185, 0.014823511242866516, 0.03378899395465851, -0.02503334730863571, 0.03166204318404198, 0.022760704159736633, 0.014355289749801159, -0.005650784820318222, -0.03788869455456734, -0.0033643986098468304, -0.01104648131877184, -0.046987324953079224, 0.056501589715480804, 0.024514058604836464, -0.06333117187023163, 0.023496365174651146, 0.04527584835886955, -0.006675479467958212, 0.00578705919906497, 0.01982995495200157, 0.017153507098555565, -0.011085791513323784, -0.02131609246134758, -0.03471246734261513, -0.027856560423970222, 0.029601233080029488, 0.00041688172495923936, -0.07534750550985336, 0.009963237680494785, -0.027812886983156204, -0.007437196560204029, -0.0056695835664868355, 0.025911850854754448, -0.025543417781591415, 0.009601546451449394, -0.02102069929242134, -0.0026948098093271255, -0.08908887952566147, 0.07164082676172256, 0.0007050217245705426, -0.04356341436505318, -0.012091558426618576, 0.0026003753300756216, 0.03763526678085327, 0.021838141605257988, -0.00005944922304479405, 0.09412913024425507, 0.01117792446166277, 0.03933296725153923, -0.017628846690058708, 0.053321123123168945, -0.023630285635590553, -0.03873825818300247, -0.030762646347284317, 0.04771924763917923, -0.03285166248679161, 0.00042460771510377526, 0.0010681545827537775, -0.0005328015540726483, -0.009464279748499393, -0.0005074766231700778, 0.005083536263555288, 0.052353039383888245, -0.007747367024421692, -0.02638225443661213, 0.023562049493193626, 0.006919126957654953, 0.0008307176176458597, 0.01958615891635418, 0.004081668797880411, -0.007093924097716808, -0.042161062359809875, 0.010623866692185402, -0.00298750470392406, 0.021454475820064545, -0.00501432316377759, -0.04178015887737274, 0.014074706472456455, 0.0765763446688652, 0.020481906831264496, 0.03118116967380047, -0.024248413741588593, 0.03845977783203125, 0.033263660967350006, 0.034675028175115585, 0.020440110936760902, 0.032229430973529816, 0.0189132671803236, 0.0048388829454779625, -0.003924961667507887, 0.049393072724342346, -0.003538263961672783, 0.025161493569612503, -0.0622481144964695, -0.05717780813574791, 0.057152312248945236, -0.04755251482129097, -0.029284529387950897, 0.037130456417798996, 0.08203359693288803, 0.02282682992517948, 0.034622859209775925, 0.0011933556525036693, -0.07677794992923737, 0.015901977196335793, 0.01928759180009365, 0.030142933130264282, 0.01097047422081232, -0.021448999643325806, 0.07425756007432938, 0.026231708005070686, -0.004279667045921087, 0.024825116619467735, -0.08316762745380402, -0.09554092586040497, -0.019612697884440422, -0.030070079490542412, 0.0655362457036972, -0.032810550183057785, -0.0045128874480724335, 0.07675953209400177, 0.025222213938832283, 0.06444628536701202, 0.02408638969063759, 0.0050895665772259235, 0.01332577783614397, -0.04245481267571449, -0.028470277786254883, 0.06113804131746292, 0.05045315995812416, -0.009355470538139343, -0.06020477041602135, 0.005189045798033476, -0.006636562291532755, 0.003548668697476387, 0.04456143081188202, -0.004553068894892931, 0.03567427396774292, 0.012054530903697014, 0.06956011801958084, -0.0283096544444561, 0.061729468405246735, -0.06790979206562042, 0.00856249313801527, -0.00736680394038558, -0.011535453610122204, 0.0017312421696260571, -0.0013990517472848296, 0.11152837425470352, 0.05978767201304436, -0.06192862614989281, -0.031059028580784798, 0.008229907602071762, -0.004082178696990013, -0.056594207882881165, 0.0024989715311676264, -0.016249071806669235, -0.0048104808665812016, 0.0008857500506564975, -0.06949293613433838, -0.028878498822450638, 0.025343110784888268, -0.04076787829399109, 0.01380376797169447, 0.0676598995923996, -0.02561279572546482, 0.053643859922885895, -0.018593981862068176, -0.017358552664518356, -0.014821579679846764, -0.0044557261280715466, -0.03332078456878662, 0.01795775629580021, 0.017159970477223396, -0.016675349324941635, 0.059978313744068146, -0.0218178853392601, -0.04593019187450409, -0.020835693925619125, -0.038797423243522644, 0.003926918841898441, 0.031556107103824615, 0.05927532911300659, -0.007086171768605709, 0.055878303945064545, 0.015049739740788937, 0.025063153356313705, 0.005158486310392618, -0.050585176795721054, -0.04111390933394432, -0.01636282354593277, -0.012041746638715267, 0.04392966255545616, -0.015734566375613213, 0.028647687286138535, 0.027372704818844795, 0.001375203370116651, -0.029379716143012047, -0.00828294362872839, 0.04299008846282959, 0.008075862191617489, -0.012050346471369267, -0.006019773427397013, -0.025450825691223145, 0.03794226422905922, -0.049258433282375336, -0.03680891916155815, 0.03260957449674606, -0.06514792889356613, 0.06206290051341057, -0.06368298828601837, -0.04980629310011864, 0.014981201849877834, 0.02671414613723755, 0.04639905318617821, -0.0194984283298254, 0.02506771683692932, 0.08483666181564331, -0.012563114054501057, 0.02431170456111431, -0.004872577730566263, 0.019726166501641273, 0.03063921257853508, 0.017705347388982773, 0.007145327515900135, 0.022379383444786072, 0.02129974775016308, 0.00789044052362442, -0.051064424216747284, 0.03144029900431633, -0.029663220047950745, -0.2543136477470398, 0.052737846970558167, 0.012649642303586006, -0.039580974727869034, 0.03348943963646889, -0.005202463828027248, 0.016584431752562523, -0.043258875608444214, -0.02629275433719158, 0.029102155938744545, -0.027115361765027046, -0.04175524786114693, -0.026516009122133255, 0.06056820601224899, -0.008225158788263798, 0.02823023498058319, 0.020596807822585106, -0.03473791480064392, 0.0065899197943508625, 0.06513828039169312, -0.0002753394946921617, -0.08821793645620346, 0.008123451843857765, 0.02942768856883049, 0.041456278413534164, 0.0588720478117466, -0.1007901132106781, 0.0553726963698864, -0.04098207876086235, -0.007284903898835182, 0.011047640815377235, 0.006782463286072016, 0.0032243276946246624, -0.030764097347855568, -0.007992442697286606, -0.011317751370370388, 0.024961527436971664, -0.006950281094759703, -0.012363078072667122, 0.031415410339832306, -0.01818631961941719, -0.04062260687351227, -0.01039294246584177, 0.01691346988081932, 0.05884693190455437, -0.01151437871158123, -0.0722619965672493, -0.014760501682758331, -0.008873471058905125, 0.0854363813996315, -0.052579399198293686, -0.029706470668315887, 0.0005060170660726726, 0.04945635050535202, -0.01970188319683075, -0.038772158324718475, 0.0014907571021467447, -0.012374438345432281, -0.04833720996975899, -0.02607082948088646, -0.0331704318523407, -0.039161719381809235, 0.004590198863297701, -0.04512547701597214, -0.0006704243132844567, -0.06262960284948349, -0.050273410975933075, -0.019759943708777428, 0.06469729542732239, 0.008020736277103424, -0.02259691245853901, 0.014695647172629833, 0.0029861952643841505, -0.10337850451469421, -0.0045526898466050625, -0.012677188031375408, -0.022135835140943527, -0.022080061957240105, 0.0030655991286039352, 0.03907833993434906, -0.032432448118925095, -0.059559840708971024, 0.029904255643486977, 0.005353731568902731, 0.015069165267050266, -0.011672182939946651, 0.018196865916252136, 0.023850159719586372, -0.02317594550549984, 0.014316719956696033, 0.08698172867298126, 0.004226215649396181, -0.036442577838897705, -0.03686344996094704, 0.03219497576355934, 0.021836860105395317, 0.032579097896814346, -0.006468154024332762, 0.01467051636427641, 0.03177701681852341, 0.0075296079739928246, -0.050667423754930496, 0.049956709146499634, -0.020327500998973846, 0.007268872577697039, -0.0199153833091259, -0.06891795247793198, 0.03994491323828697, 0.02763565629720688, 0.04601864889264107, -0.014515753835439682, -0.03561051934957504, -0.0029148783069103956, -0.03770936280488968, -0.04051928594708443, -0.029702741652727127, 0.022437777370214462, 0.0232849158346653, -0.03932647779583931, -0.010859346948564053, -0.04668881744146347, 0.0008624108741059899, -0.0072593544609844685, -0.0014159978600218892, -0.04480741173028946, -0.03629564493894577, -0.0037044186610728502, -0.009233728051185608, 0.007511691190302372, 0.014907118864357471, -0.0020188651978969574, 0.037471432238817215, 0.010259211994707584, -0.05410509929060936, 0.004902683198451996, 0.0034718031529337168, -0.04787280410528183, -0.022348154336214066, -0.007164419163018465, -0.0018484467873349786, -0.015351586043834686, 0.006503647658973932, -0.002658556215465069, 0.016110800206661224, 0.033151883631944656, -0.016068561002612114, 0.03591600060462952, -0.020252978429198265, 0.021491611376404762, 0.023036176338791847, 0.004738932475447655, -0.08474475145339966, 0.025353968143463135, -0.06105443462729454, -0.05579076334834099, -0.02070079743862152, 0.036965761333703995, -0.020206037908792496, -0.04074709489941597, -0.0015472404193133116, 0.005976126063615084, -0.052361197769641876, -0.042656272649765015, -0.026243099942803383, 0.01948988437652588, 0.07254675775766373, -0.010479782707989216, 0.031543657183647156, -0.018437974154949188, -0.012290908955037594, -0.005559501238167286, 0.02605888806283474, -0.04663088172674179, 0.014340762980282307, 0.021309206262230873, -0.010164986364543438, -0.009841765277087688, -0.018916720524430275, 0.047023579478263855, 0.0037366594187915325, -0.007952874526381493, -0.028876986354589462, 0.01112884096801281, 0.028871702030301094, 0.045699384063482285, -0.02145954966545105, -0.00048800327931530774, -0.010565003380179405, -0.01957651600241661, -0.021999625489115715, -0.04259306192398071, -0.03758089616894722, 0.013137700967490673, 0.03828536719083786, -0.04721362143754959, -0.07666683197021484, 0.03623318299651146, 0.03638356924057007, 0.023602627217769623, 0.016149669885635376, 0.0064842915162444115, -0.0026155116502195597, -0.013048309832811356, 0.027066724374890327, 0.06379348784685135, -0.04055362939834595, -0.0012181495549157262, -0.013792820274829865, 0.00666466262191534, 0.0156406220048666, -0.0031650695018470287, -0.05430707708001137, -0.03295116499066353, -0.006979088764637709, -0.0161130353808403, -0.03497711569070816, -0.03285040706396103, -0.009979658760130405, 0.010486583225429058, -0.019641952589154243, -0.03784676268696785, -0.01210329681634903, 0.012616269290447235, -0.019466785714030266, -0.01848624460399151, 0.015929989516735077, -0.037398360669612885, 0.005452468525618315, 0.029217306524515152, -0.04496096074581146, 0.010747697204351425, -0.02424454875290394, 0.03656527027487755, 0.015683993697166443, -0.02157982997596264, -0.039531681686639786, -0.04069163277745247, -0.009462008252739906, -0.006695859599858522, 0.021276768296957016, -0.015198941342532635, -0.010422386229038239, -0.04921942204236984, -0.006353406235575676, -0.03635761886835098, 0.02651859074831009, -0.020512297749519348, -0.0326378270983696, 0.030414367094635963, 0.07087475806474686, 0.01649540103971958, 0.050727516412734985, -0.00505774887278676, -0.0015507792122662067, 0.05776217207312584, -0.07532870024442673, -0.0057946923188865185, -0.0454862117767334, -0.0700390636920929, 0.009617127478122711, -0.000756490568164736, 0.029938850551843643, -0.025296121835708618, 0.03923964500427246, 0.005500722210854292, 0.029523450881242752, 0.03407292068004608, -0.009733594954013824, 0.02634703926742077, -0.05309617146849632, 0.03548383712768555, -0.08596023917198181, 0.030392508953809738, 0.032403916120529175, -0.009854295291006565, -0.0024295717012137175, -0.020413080230355263, -0.04732171446084976, 0.05655509606003761, -0.04641588404774666, -0.0033698738552629948, 0.0427052304148674, -0.00737311877310276, -0.009119175374507904, 0.010004030540585518, -0.06830736249685287, 0.03489213436841965, 0.035807181149721146, -0.05298933386802673, -0.03325222432613373, -0.02805066853761673, 0.055078212171792984, 0.012087022885680199, 0.034989114850759506, -0.027523892000317574, -0.013812116347253323, 0.044755659997463226, 0.021403847262263298, 0.011896679177880287, 0.033445846289396286, -0.02295783907175064, 0.04598337411880493, 0.04937542602419853, 0.01781790517270565, -0.01217136811465025, 0.021674105897545815, -0.011099351570010185, -0.05159671977162361, 0.01622522994875908, 0.0022851992398500443, -0.04610247164964676, -0.03667864203453064, 0.05649319291114807, 0.019798923283815384, -0.027196280658245087, -0.04925491660833359, -0.00044568697921931744, -0.08033931255340576, -0.016147034242749214, -0.029366832226514816, -0.012601485475897789, -0.05497332289814949, 0.05948551371693611, 0.01512235775589943, -0.014329497702419758, 0.0716971606016159, -0.02483220398426056, -0.01261055376380682, -0.018922504037618637, 0.09313399344682693, 0.07212524116039276, 0.058017224073410034, 0.003994675353169441, 0.05528246983885765, -0.014484560117125511, -0.04138654097914696, 0.017516350373625755, -0.02109411731362343, -0.0018524907063692808, -0.022014519199728966, 0.004066025372594595, 0.039108969271183014, -0.01482272520661354, 0.06355220079421997, -0.01988525316119194, 0.009075009264051914, 0.016988400369882584, 0.03386920318007469, 0.011607504449784756, 0.08572067320346832, 0.001534840208478272, 0.0016233505448326468, 0.00378498830832541, -0.03544820845127106, 0.03852374851703644, -0.03936764597892761, -0.02078467421233654, 0.023776736110448837, -0.021327463909983635, 0.018036672845482826, 0.007594897877424955, 0.014484920538961887, 0.07160375267267227, -0.025197496637701988, 0.006027752999216318, -0.013489979319274426, 0.05668353661894798, 0.0006941856699995697, 0.003562248544767499, -0.030876731500029564, -0.03387708589434624, -0.012902556918561459, -0.03449388965964317, -0.0035749473609030247, -0.014418736100196838, -0.030236054211854935, 0.04325978085398674, -0.006424908526241779, -0.005850612185895443, 0.0343967005610466, 0.014966650865972042, -0.03463326767086983, -0.0685153678059578, -0.04657486453652382, -0.028248146176338196, -0.04549385607242584, -0.023693952709436417, 0.00045692018466070294, 0.0005940092378295958, -0.0359184704720974, -0.013675465248525143, -0.032895494252443314, -0.024513274431228638, 0.04013783857226372, -0.04361234977841377, -0.03512633964419365, 0.02396700158715248, 0.00013688359467778355, 0.02983073890209198, 0.006484299432486296, 0.03341195359826088, 0.007819442078471184, -0.009060033597052097, -0.022095125168561935, -0.01618407480418682, 0.029221659526228905, 0.0066480617970228195, 0.022316498681902885, -0.0826689749956131, 0.01897081360220909, 0.011583465151488781, 0.014644519425928593, -0.056419216096401215, 0.043673325330019, -0.0133204972371459, -0.028621116653084755, 0.05705671012401581, -0.02729213610291481, 0.02670818567276001, -0.007792648393660784, -0.008748057298362255, -0.0022449379321187735, 0.029024282470345497, 0.0392267070710659, -0.02911163680255413, 0.09806587547063828, -0.002466729609295726, -0.026353569701313972, -0.04018869996070862, -0.006953250616788864, -0.0034504046197980642, -0.011212713085114956, -0.02228986844420433, -0.03954773396253586, -0.03196180984377861, -0.055463675409555435, -0.0013626193394884467, 0.005729861557483673, -0.026431113481521606, -0.02239161729812622, 0.022919928655028343, 0.021343540400266647, -0.03811657801270485, 0.033578429371118546, -0.053245045244693756, 0.03796352446079254, -0.027745211496949196, -0.019293665885925293, 0.02948250249028206, 0.007729728706181049, -0.01734786294400692, 0.02139255590736866, 0.017413698136806488, -0.030658647418022156, -0.0027334934566169977, 0.014917651191353798, 0.03108581341803074, 0.02927597612142563, -0.00707254558801651, -0.00045334818423725665 ]
[ -0.10831715166568756, 0.016485227271914482, -0.025781231001019478, -0.035911254584789276, 0.03253738209605217, -0.03189164027571678, -0.0000638665005681105, 0.035789020359516144, -0.0017522224225103855, -0.027777643874287605, -0.022085290402173996, -0.013529011979699135, -0.009122676216065884, -0.00900608766824007, 0.04406612738966942, 0.008187354542315006, -0.012667767703533173, -0.08322694152593613, 0.012009544298052788, 0.03498649597167969, 0.014391995966434479, -0.009427299723029137, -0.03948144614696503, -0.028791077435016632, 0.022480284795165062, 0.03898075222969055, 0.0409211702644825, -0.030947234481573105, -0.004029246978461742, -0.18355689942836761, -0.0017329244874417782, 0.012876817025244236, 0.04298889636993408, -0.029801640659570694, 0.010840010829269886, 0.04580645635724068, 0.0011794364545494318, 0.017589304596185684, -0.004660414066165686, 0.03613465279340744, 0.01735786348581314, -0.002077345037832856, -0.0563858337700367, -0.03282155841588974, 0.04636285454034805, 0.009873371571302414, 0.018544891849160194, -0.04538819193840027, 0.009928238578140736, 0.027748869732022285, -0.05975944176316261, -0.03947218134999275, -0.015280564315617085, -0.03476988896727562, -0.035531915724277496, 0.019974254071712494, 0.024496005848050117, 0.07116535305976868, -0.010525141842663288, 0.017984600737690926, 0.00609173346310854, -0.03469209372997284, -0.12633010745048523, 0.06708817183971405, 0.05107321962714195, 0.06567201763391495, -0.04440193623304367, -0.02063673734664917, 0.00003882792225340381, 0.11590788513422012, 0.0072031826712191105, -0.039323437958955765, -0.028723878785967827, 0.07712048292160034, 0.0120119983330369, 0.011874936521053314, 0.02073429338634014, 0.012948025949299335, 0.03307817876338959, -0.040847163647413254, -0.028419477865099907, -0.022500140592455864, -0.014216259121894836, -0.012378000654280186, -0.02606826089322567, 0.020817169919610023, -0.021560676395893097, 0.06441689282655716, 0.07625113427639008, 0.018227333202958107, 0.08759531378746033, -0.03463183715939522, 0.013012686744332314, 0.0013145474949851632, -0.08603799343109131, -0.03217038884758949, 0.001985078677535057, 0.010241302661597729, -0.05043109506368637, 0.46825629472732544, -0.03895003721117973, -0.024522418156266212, 0.06418939679861069, 0.03336268290877342, -0.007574142888188362, -0.002018709434196353, 0.02599312737584114, -0.03817358613014221, 0.0014533069916069508, -0.05725691094994545, 0.024727268144488335, 0.022774673998355865, 0.08513009548187256, -0.025812333449721336, -0.007945694960653782, 0.05434427782893181, 0.014295737259089947, 0.015934137627482414, 0.002377904485911131, -0.012095185928046703, -0.007305927574634552, 0.014721618965268135, -0.0022569303400814533, -0.02200283855199814, -0.03416627272963524, -0.06057578697800636, 0.04159395396709442, 0.06052674725651741, -0.012621777132153511, -0.010146765038371086, 0.05240973085165024, -0.049050044268369675, -0.057026755064725876, 0.013082528486847878, -0.01750313490629196, -0.00022612660541199148, 0.015101049095392227, 0.004703369922935963, 0.01857643760740757, 0.04623592272400856, -0.00048441532999277115, -0.012483189813792706, -0.0008316534804180264, 0.007842713966965675, -0.04706919193267822, 0.07001426815986633, 0.006945139728486538, -0.012403566390275955, -0.005783616565167904, -0.04710979387164116, 0.03086521103978157, 0.03517236188054085, -0.014058358035981655, -0.06299646198749542, 0.03071487694978714, -0.0011136219836771488, 0.08662158250808716, -0.0007166930590756238, -0.05271901935338974, -0.0069806636311113834, -0.009184759110212326, -0.021399861201643944, -0.07310479879379272, 0.011769835837185383, 0.059833839535713196, -0.059306904673576355, 0.0056020887568593025, -0.0016068221302703023, 0.04190544784069061, -0.06324939429759979, 0.009437172673642635, -0.0006213094457052648, -0.03754820302128792, -0.03143998980522156, 0.027703506872057915, -0.04355150833725929, -0.018876388669013977, 0.045488253235816956, 0.05403255298733711, 0.013420670293271542, 0.02336324378848076, 0.011168524622917175, -0.034490447491407394, 0.019671527668833733, -0.023620130494236946, -0.07251939177513123, -0.05373379588127136, -0.010648185387253761, -0.038955483585596085, -0.005490611772984266, -0.025086207315325737, -0.019773557782173157, -0.10816550254821777, 0.0864919051527977, -0.03588167950510979, -0.015702825039625168, 0.031063945963978767, -0.01249360479414463, -0.028039133176207542, -0.03834664449095726, -0.025914322584867477, 0.023652566596865654, -0.0058913384564220905, 0.039405833929777145, -0.06596577912569046, 0.06551194190979004, 0.063881054520607, -0.04895089194178581, 0.09332094341516495, 0.06684939563274384, -0.034268397837877274, -0.042360570281744, 0.03395434468984604, 0.014028990641236305, 0.008158803917467594, -0.023631906136870384, 0.0015968156512826681, 0.012558954767882824, 0.00478385528549552, 0.015149930492043495, -0.02648830972611904, 0.014522203244268894, -0.001168157090432942, -0.32644033432006836, -0.039522986859083176, -0.02952922135591507, 0.004632221534848213, 0.03629196435213089, -0.05988319218158722, 0.016943704336881638, -0.004545567557215691, -0.03189537674188614, -0.007558338809758425, 0.06949489563703537, -0.011200726963579655, 0.01585964672267437, -0.08755593001842499, -0.00175758870318532, -0.017581691965460777, -0.04647587239742279, -0.003709635464474559, -0.019648456946015358, 0.022602461278438568, -0.013188590295612812, -0.024544907733798027, -0.004951669368892908, -0.062283702194690704, -0.0006739299860782921, -0.059393689036369324, 0.10246308892965317, -0.008398784324526787, 0.10293354839086533, -0.014599578455090523, 0.03640320152044296, -0.02069365419447422, 0.06101714447140694, -0.09628982841968536, 0.023751238361001015, -0.01645282842218876, -0.016295498237013817, -0.007758850697427988, 0.025573264807462692, -0.049539439380168915, -0.038084208965301514, 0.014673110097646713, -0.05782368406653404, -0.01469182875007391, -0.07711796462535858, 0.012622814625501633, -0.02711580879986286, -0.026316680014133453, -0.05363142490386963, 0.07932481914758682, 0.016286494210362434, -0.021997502073645592, 0.015180409885942936, 0.011901001445949078, 0.024227231740951538, -0.04254183918237686, -0.09243389219045639, 0.01100223045796156, 0.01690460555255413, -0.006232359912246466, 0.04805716499686241, 0.07106465846300125, 0.03825227916240692, -0.04001132398843765, -0.01841646619141102, 0.007660261821001768, -0.011793717741966248, 0.0054204827174544334, 0.036563001573085785, -0.010716026648879051, -0.01538381539285183, 0.09522973001003265, 0.001724381698295474, -0.04471138119697571, 0.009788894094526768, 0.051473040133714676, -0.017539316788315773, 0.026099741458892822, 0.015848305076360703, -0.005304575432091951, 0.006902412511408329, -0.02166077122092247, 0.01955627091228962, -0.02306510880589485, -0.005029077176004648, 0.04484894126653671, -0.005102135706692934, -0.020621227100491524, 0.06737332046031952, 0.020163170993328094, -0.03346060961484909, 0.022951321676373482, -0.012374759651720524, -0.053933851420879364, 0.08101104199886322, 0.005219963379204273, -0.22591397166252136, -0.0114859938621521, 0.04129130393266678, 0.05421293526887894, -0.017311934381723404, 0.030154742300510406, 0.03263741731643677, -0.047994181513786316, 0.002935876837000251, 0.014610202051699162, 0.01907510682940483, 0.017678633332252502, 0.006471588741987944, -0.016428014263510704, 0.041462332010269165, -0.014602621085941792, 0.0421418771147728, -0.015308056958019733, 0.02477087266743183, 0.006596081890165806, 0.019107386469841003, -0.004295871127396822, 0.13516633212566376, -0.000978359836153686, 0.029794588685035706, 0.023927586153149605, 0.022233396768569946, 0.027785008773207664, 0.09744813293218613, 0.005832951050251722, 0.010867363773286343, -0.0011216857237741351, 0.021565163508057594, 0.0008082351414486766, 0.01040115300565958, -0.07889614999294281, -0.039765674620866776, 0.008666202425956726, 0.039018865674734116, 0.0072688693180680275, 0.02725823223590851, -0.00768911512568593, -0.023139623925089836, 0.018658550456166267, 0.04821288585662842, 0.04423419013619423, -0.011281885206699371, -0.05219639092683792, -0.044714298099279404, -0.014361127279698849, -0.018718887120485306, -0.03252945467829704, 0.009138534776866436, -0.008300765417516232, 0.009737903252243996, 0.06364661455154419, 0.02893185243010521, -0.019638780504465103, -0.01683766208589077, -0.00633621821179986, -0.016731834039092064, -0.02286781184375286, 0.13373233377933502, 0.0399530790746212, 0.01189819909632206 ]
[ -0.011262420564889908, -0.010361781343817711, -0.028800111263990402, 0.01064989622682333, -0.026932014152407646, -0.012042940594255924, -0.006409807596355677, 0.014703171327710152, 0.009060267359018326, -0.009423987939953804, -0.014607134275138378, 0.01821897365152836, 0.018321745097637177, -0.021848389878869057, 0.008405130356550217, -0.006216540466994047, -0.01961665414273739, -0.02001759223639965, 0.029500717297196388, 0.009451531805098057, -0.031328726559877396, 0.003644235199317336, 0.001845290418714285, 0.001993596088141203, -0.030120432376861572, 0.014864847995340824, -0.010320773348212242, -0.004834387451410294, 0.013714674860239029, -0.14345771074295044, -0.009251303039491177, -0.02070487290620804, 0.004666345193982124, 0.01811995357275009, 0.006172684021294117, 0.009639083407819271, 0.012885073199868202, 0.01044070441275835, 0.0018723946996033192, -0.015524301677942276, 0.00501233758404851, -0.008102226071059704, 0.023297294974327087, 0.02652471512556076, 0.010098065249621868, 0.003554892260581255, -0.008720185607671738, -0.025339795276522636, -0.02258480153977871, -0.04590102285146713, -0.0273953378200531, -0.0016095153987407684, -0.015557294711470604, 0.005662504117935896, 0.004471207968890667, -0.028939533978700638, 0.025360016152262688, -0.017013847827911377, -0.0021861689165234566, -0.017941929399967194, 0.002405927749350667, -0.0016531115397810936, -0.047891709953546524, -0.02906038425862789, -0.023153845220804214, 0.0159157644957304, 0.00036279758205637336, 0.007489610929042101, -0.020302366465330124, 0.009483987465500832, -0.02613709680736065, 0.011559650301933289, -0.031463149935007095, 0.0004552129248622805, 0.028350261971354485, 0.022765545174479485, 0.006673113908618689, -0.015552482567727566, 0.02062329836189747, -0.023809701204299927, -0.03556303679943085, 0.02745991200208664, 0.014202971942722797, 0.031142257153987885, 0.015583298169076443, 0.03828771784901619, 0.019015226513147354, 0.002128500724211335, 0.019222451373934746, 0.011340207420289516, -0.006933482363820076, 0.03775763884186745, -0.01540706679224968, 0.022489488124847412, -0.06658315658569336, -0.026351789012551308, -0.021304350346326828, -0.033328860998153687, 0.018078569322824478, 0.8680164217948914, 0.010947875678539276, 0.030145881697535515, 0.025295840576291084, 0.01876078173518181, 0.011106208898127079, 0.009228182956576347, 0.008513746783137321, -0.015735827386379242, 0.027470910921692848, -0.040306203067302704, 0.020524216815829277, 0.015256275422871113, 0.03607632592320442, -0.0035157238598912954, 0.015681413933634758, 0.01734538935124874, -0.019760673865675926, 0.02719307690858841, -0.012518330477178097, 0.012349570170044899, 0.02693602442741394, 0.009902151301503181, 0.0002216554421465844, 0.009459656663239002, 0.030467111617326736, -0.17568479478359222, -0.0056593157351017, -8.774240278790893e-33, 0.028916390612721443, -0.0271991528570652, -0.0034111018758267164, 0.0029068829026073217, -0.004525679163634777, 0.008586142212152481, 0.030612366273999214, 0.04112221300601959, 0.00741881737485528, -0.028017200529575348, 0.020016822963953018, -0.028732210397720337, -0.002934365766122937, -0.01889483816921711, 0.021841594949364662, 0.006261069793254137, -0.010280285961925983, 0.00840483233332634, -0.03195091709494591, 0.023779068142175674, 0.007079585455358028, 0.011941695585846901, 0.005868683103471994, -0.0229144599288702, -0.007748163305222988, 0.0012808217434212565, 0.01629871316254139, 0.03945845738053322, -0.009008131921291351, -0.04556922987103462, -0.05869828909635544, -0.0009976911824196577, -0.025933898985385895, -0.016149455681443214, -0.008266820572316647, -0.03246409073472023, -0.03362995386123657, 0.002934918040409684, 0.00987477507442236, 0.03670095279812813, -0.0166164543479681, -0.0059384554624557495, -0.03067258931696415, -0.001279259449802339, 0.004838086664676666, 0.0035021028015762568, -0.02040393464267254, 0.007305997423827648, 0.03817572072148323, -0.0026244460605084896, -0.00022410515521187335, 0.016385773196816444, 0.0065450784750282764, 0.005171882454305887, -0.03282242640852928, 0.01286405324935913, -0.015157725661993027, 0.02280818298459053, -0.004367057699710131, 0.059614814817905426, 0.014256729744374752, 0.023323003202676773, -0.01700872927904129, 0.04126739501953125, -0.007502944674342871, -0.030019517987966537, 0.017014339566230774, -0.005115618463605642, 0.019672255963087082, -0.008439256809651852, -0.050187017768621445, -0.012371471151709557, -0.001690249308012426, 0.004316810518503189, -0.002085580490529537, -0.012922236695885658, -0.0031360730063170195, 0.043207503855228424, 0.004122752696275711, 0.01669718138873577, 0.00827465858310461, 0.005796165205538273, -0.022855527698993683, -0.025902438908815384, 0.005265539977699518, 0.0008422062965109944, 0.006932462565600872, -0.028429513797163963, -0.03487701714038849, -0.005803223233669996, 0.030262738466262817, -0.021983331069350243, 0.020136183127760887, -0.012256999500095844, -0.0016363071044906974, 8.53059336064405e-33, -0.0009336206130683422, -0.029706591740250587, -0.039436470717191696, 0.014777404256165028, 0.01511853002011776, -0.03130924701690674, 0.03223487734794617, 0.01173963863402605, -0.049647845327854156, 0.05790932849049568, -0.01940944977104664, 0.0005969011690467596, -0.0045988839119672775, 0.042766980826854706, 0.050560057163238525, -0.03127975016832352, 0.018208123743534088, -0.01110037975013256, 0.034032441675662994, -0.003939998336136341, 0.014968491159379482, 0.012032872997224331, 0.016195857897400856, 0.008890771307051182, 0.004222844261676073, 0.05699498951435089, -0.02929188311100006, 0.02671278454363346, 0.015360704623162746, -0.025122329592704773, -0.00575658306479454, 0.02040623314678669, 0.031863611191511154, -0.0025688246823847294, -0.005424391478300095, 0.013062428683042526, 0.0011115182423964143, -0.03419153019785881, -0.01163418311625719, -0.009389717131853104, 0.024740559980273247, 0.009631743654608727, 0.00673536816611886, 0.011037437245249748, 0.012918115593492985, 0.03797639533877373, -0.006963561289012432, -0.017156220972537994, -0.01395690068602562, -0.007938819006085396, -0.008587260730564594, 0.02898493967950344, 0.02416437678039074, -0.004302123561501503, 0.01098150759935379, -0.022365666925907135, -0.03627019748091698, -0.010702207684516907, -0.0099088279530406, 0.045453183352947235, -0.019362911581993103, 0.004412896931171417, -0.0090640839189291, 0.0012583282077684999, -0.009115492925047874, -0.005536089651286602, -0.008532022126019001, -0.010209564119577408, 0.004507062025368214, 0.005317009054124355, -0.03755408897995949, 0.014368397183716297, -0.007974416948854923, 0.019816048443317413, 0.020560577511787415, -0.009932786226272583, -0.016552506014704704, -0.008087549358606339, -0.02366136945784092, 0.02144288830459118, 0.004585222341120243, -0.018549835309386253, 0.002920059487223625, 0.03809265419840813, -0.0074272146448493, 0.046552371233701706, 0.001202685758471489, 0.0064149522222578526, -0.002050400711596012, -0.019298583269119263, -0.009907156229019165, 0.001931230304762721, 0.027783960103988647, -0.01126362755894661, -0.019577793776988983, -1.4071002141236022e-8, 0.004265162628144026, 0.0007407895755022764, -0.031027309596538544, 0.02037464827299118, 0.0023124651052057743, 0.005634262226521969, -0.008880865760147572, -0.0005670555983670056, -0.07035432755947113, 0.020262816920876503, 0.0487101674079895, -0.037152957171201706, -0.0028165506664663553, -0.010626910254359245, 0.00461485655978322, -0.039674174040555954, -0.02642635628581047, -0.005949121434241533, 0.02559906616806984, 0.020349236205220222, 0.01800776831805706, 0.06559993326663971, -0.03726685047149658, 0.015183539129793644, -0.012949963100254536, 0.009167743846774101, 0.027799958363175392, -0.07836350798606873, -0.0028122011572122574, -0.004451593849807978, 0.01693517155945301, -0.04088890552520752, -0.01406014896929264, 0.02136404439806938, -0.025056740269064903, -0.059305738657712936, 0.019123952835798264, 0.029047979041934013, 0.042517002671957016, 0.021615181118249893, -0.012572944164276123, 0.002901708474382758, -0.006051592994481325, -0.027347499504685402, -0.019660677760839462, -0.015638278797268867, -0.04342295974493027, -0.026673635467886925, 0.001224266248755157, -0.052640270441770554, 0.013875849545001984, -0.000010804204976011533, 0.007809917908161879, 0.03970102593302727, 0.00064819649560377, 0.0033767835702747107, -0.011432484723627567, 0.005427636206150055, -0.04267380014061928, 0.004974428564310074, 0.006543252617120743, 0.023218650370836258, -0.005452606827020645, -0.0229171309620142 ]
tdd-suffering-from-testing-last
https://markhneedham.com/blog/2008/11/28/tdd-suffering-from-testing-last
false
2008-11-17 22:16:11
Standups: Pair stand together
[ "xp", "agile", "standups" ]
[ "Agile" ]
One of the common trends I have noticed in the http://www.think-box.co.uk/blog/2006/05/daily-stand-up-scrum-meeting.html[stand ups] of teams which practice pair programming is that very often the first person in the pair describes what they have been working on and what they will be doing today and then when it comes to the other person they say 'ditto'. After I dittoed one too many times on a project earlier this year it was pointed out to me that this was not a valuable way of contributing to the weekend and that I should describe my view of our progress as it may differ to my pair. I had thought I was avoiding repetition by not contributing information which had already been covered, but I went along with this idea and immediately something was mentioned which hadn't been previously covered. Instant vindication! More recently I noticed a similar trend on another project I was working on and we came up with the idea of *each pair standing together in the standup* and effectively speaking as one. This allowed us to avoid the 'repetition problem' and the 'ditto problem' as when it was the second person's turn to speak they could just add in any details that their pair didn't speak about without having to repeat the whole context again. I think this worked reasonably well and it seemed to make our standups move along more quickly.
null
null
[ 0.027920879423618317, -0.006516968831419945, -0.02747073397040367, 0.01961931772530079, 0.08344190567731857, 0.01821713149547577, 0.04508581385016441, 0.04323897138237953, 0.0173659585416317, -0.01855311542749405, -0.01281690038740635, -0.011400793679058552, -0.06839017570018768, 0.015550371259450912, -0.05370481684803963, 0.08519766479730606, 0.06189784035086632, 0.008880593813955784, -0.0028501651249825954, -0.0006883233436383307, 0.05864055082201958, 0.0676242858171463, 0.03046644851565361, 0.03037223219871521, 0.041016560047864914, 0.013449941761791706, 0.014145562425255775, -0.006069769151508808, -0.047378767281770706, -0.032055240124464035, 0.02816321887075901, -0.011568114161491394, 0.01711340621113777, -0.00666268402710557, 0.030345698818564415, -0.015908915549516678, 0.005090920254588127, 0.014376699924468994, 0.015279417857527733, -0.011261153034865856, -0.06140145659446716, 0.02520914375782013, -0.029229728505015373, -0.01672658883035183, -0.04090709984302521, 0.0068037016317248344, -0.01541955303400755, 0.015079841017723083, -0.005598422605544329, 0.0078614866361022, -0.07645455002784729, 0.0508214570581913, 0.0068199303932487965, -0.007346537429839373, -0.03170787915587425, 0.0304971095174551, 0.020772850140929222, -0.06848665326833725, 0.01676773652434349, -0.052423808723688126, -0.042751897126436234, -0.002727619605138898, 0.003029090352356434, 0.050962503999471664, 0.025561317801475525, -0.034554194658994675, 0.009187188930809498, 0.036208201199769974, -0.032757893204689026, 0.005215685348957777, -0.03591112792491913, 0.0012428141199052334, -0.031061917543411255, -0.029542164877057076, 0.011327202431857586, -0.038363419473171234, 0.011099024675786495, 0.06301050633192062, 0.021823562681674957, 0.05771657079458237, -0.005103066097944975, 0.02747720666229725, -0.0138359060510993, 0.016993766650557518, -0.009524988941848278, -0.037959713488817215, 0.02144894190132618, -0.011784808710217476, -0.07476010918617249, 0.038474343717098236, 0.0007107274723239243, -0.065222829580307, -0.007485416252166033, 0.05345417186617851, -0.0004473646986298263, 0.02149762399494648, 0.025078002363443375, 0.003197356127202511, 0.004217118490487337, -0.024713682010769844, -0.030780980363488197, -0.022712916135787964, 0.009322579950094223, 0.004165377467870712, -0.09710025042295456, 0.006707047112286091, -0.018216580152511597, -0.017568441107869148, -0.012654810212552547, 0.021248560398817062, -0.028148401528596878, 0.007351116742938757, -0.016194680705666542, 0.015588064678013325, -0.07130572199821472, 0.07258956879377365, 0.00794096477329731, -0.037636756896972656, -0.03165667876601219, -0.010530132800340652, 0.008899371139705181, 0.01974995620548725, -0.006316324695944786, 0.08990554511547089, -0.02507418394088745, 0.015611090697348118, -0.03055468015372753, 0.04579610377550125, -0.01541889552026987, -0.04081686586141586, -0.03250938653945923, 0.06391887366771698, -0.01149793155491352, -0.009880724363029003, -0.017413396388292313, -0.02023540437221527, 0.0031733387149870396, 0.0011965633602812886, 0.029696041718125343, 0.06126265972852707, -0.018235694617033005, -0.009395650587975979, 0.014192880131304264, 0.03292689472436905, 0.02879304625093937, -0.011688471771776676, -0.013398506678640842, -0.021149057894945145, -0.03484814614057541, 0.014055170118808746, 0.015135996975004673, -0.006521411705762148, 0.03175601363182068, -0.0257591400295496, 0.024947091937065125, 0.08582282811403275, 0.02352179028093815, 0.0062936898320913315, -0.010497531853616238, 0.029016228392720222, 0.04573722556233406, 0.02938108704984188, -0.00784762017428875, 0.03847077861428261, 0.02015683427453041, -0.013733191415667534, -0.03997490927577019, -0.0002145462785847485, -0.01620495319366455, 0.021855739876627922, -0.05905687436461449, -0.02765846438705921, 0.05601293966174126, -0.05152864754199982, -0.01438998058438301, 0.05144157260656357, 0.06596492975950241, 0.04476174712181091, 0.028886782005429268, 0.02823641523718834, -0.0783587247133255, 0.03877733275294304, 0.02136734500527382, 0.0183990728110075, 0.031266454607248306, -0.012137378565967083, 0.05037068575620651, 0.054068464785814285, -0.01947025954723358, 0.029712770134210587, -0.0810195803642273, -0.08947781473398209, -0.0156983844935894, -0.018963636830449104, 0.0691181868314743, -0.04885164275765419, 0.0228730458766222, 0.04713159427046776, 0.03102181665599346, 0.04208013042807579, 0.02480076067149639, 0.013787449337542057, 0.010979234240949154, -0.025871627032756805, -0.05330697447061539, 0.07335358113050461, 0.031809378415346146, -0.017837397754192352, -0.0436563715338707, 0.03419496864080429, -0.023985866457223892, -0.004188617691397667, 0.02684883400797844, -0.012311868369579315, 0.03512130305171013, -0.0068715354427695274, 0.0731780156493187, -0.03004412166774273, 0.02048429846763611, -0.053204383701086044, -0.0003555840521585196, 0.009462587535381317, -0.03104410320520401, 0.007048479281365871, -0.011442054063081741, 0.11131934821605682, 0.024702303111553192, -0.05356853827834129, -0.0330757237970829, 0.025474386289715767, 0.01092509925365448, -0.025452716276049614, 0.0015558283776044846, -0.000048099471314344555, 0.00875438004732132, 0.003663588548079133, -0.05168643966317177, -0.03254528343677521, 0.013539315201342106, -0.05542116239666939, 0.004031436052173376, 0.05879657343029976, -0.031797781586647034, 0.08307354152202606, -0.013988333754241467, -0.00998829398304224, -0.004259503446519375, 0.012754633091390133, -0.047765374183654785, 0.011029496788978577, 0.019009238108992577, -0.024092914536595345, 0.035127513110637665, -0.02270657569169998, -0.03026953525841236, -0.036874957382678986, -0.022839359939098358, -0.001258487580344081, 0.067074254155159, 0.04970883950591087, -0.026073021814227104, 0.0567665621638298, 0.004825904965400696, 0.022268889471888542, -0.017960933968424797, -0.0320337638258934, -0.045059967786073685, -0.014895166270434856, 0.004251477308571339, 0.009861410595476627, 0.027979888021945953, 0.02018696814775467, -0.00003936737994081341, 0.007289027329534292, -0.010762941092252731, -0.002357322257012129, 0.016476178541779518, -0.0006722798570990562, 0.0029146301094442606, -0.026708349585533142, -0.016156572848558426, 0.0430823378264904, -0.037434548139572144, -0.030851047486066818, 0.03186037391424179, -0.06354782730340958, 0.036632586270570755, -0.050671935081481934, -0.05628783255815506, 0.002659238176420331, 0.013796644285321236, 0.059092871844768524, 0.004338091239333153, 0.014414550736546516, 0.051527008414268494, 0.0076955994591116905, 0.01959775947034359, 0.016784310340881348, 0.0107762161642313, 0.035091351717710495, 0.019579876214265823, -0.03631589561700821, 0.052684225142002106, -0.005010414402931929, 0.012097599916160107, -0.059391558170318604, 0.04222441092133522, -0.046793133020401, -0.29713675379753113, 0.02647583559155464, 0.012376274913549423, -0.017860066145658493, 0.03756104037165642, -0.020960327237844467, 0.016808969900012016, -0.04465660825371742, -0.020191436633467674, 0.025770118460059166, -0.04943736642599106, -0.017028219997882843, -0.025148045271635056, 0.028493814170360565, 0.01871323585510254, 0.011580347083508968, 0.015761420130729675, -0.03531786799430847, 0.028334353119134903, 0.04292154312133789, 0.022534390911459923, -0.06128664314746857, -0.022524869069457054, 0.023240048438310623, 0.03743429854512215, 0.07920664548873901, -0.09020832926034927, 0.031013812869787216, -0.042015235871076584, -0.01916591450572014, 0.022767748683691025, -0.005959826055914164, 0.0017833204474300146, -0.026286816224455833, -0.016609512269496918, -0.008274332620203495, 0.05540233105421066, -0.013804415240883827, -0.004728172905743122, 0.0047031184658408165, -0.007777996826916933, -0.04860065132379532, 0.013660749420523643, 0.000561615452170372, 0.07389379292726517, 0.023477591574192047, -0.06534264236688614, -0.014604325406253338, -0.04119299352169037, 0.08168521523475647, -0.03125101327896118, -0.008437491953372955, -0.004792321939021349, 0.02166246809065342, 0.008135512471199036, -0.0302447322756052, 0.004425483755767345, -0.02696383371949196, -0.028960729017853737, -0.033873070031404495, -0.028198208659887314, -0.027876194566488266, -0.024036835879087448, -0.04873565211892128, -0.007301952689886093, -0.054425545036792755, -0.04907798394560814, 0.002598130377009511, 0.0767398253083229, 0.0044342693872749805, -0.01702226884663105, 0.011290851049125195, -0.0070777470245957375, -0.09446951746940613, -0.0021147362422198057, -0.008205232210457325, -0.03623761981725693, 0.013553504832088947, 0.019634930416941643, 0.05336945131421089, -0.022269338369369507, -0.06463345140218735, 0.015488352626562119, -0.009484166279435158, 0.04443301633000374, -0.002783973468467593, 0.037636641412973404, 0.019658664241433144, -0.0548887699842453, -0.0018629287369549274, 0.0627850592136383, 0.004714778158813715, -0.04497995972633362, -0.0012228318955749273, 0.04140321537852287, 0.04367838799953461, 0.024501312524080276, -0.014622029848396778, 0.0049752104096114635, 0.042451534420251846, -0.022601084783673286, -0.04740637168288231, 0.018023023381829262, -0.008412755094468594, -0.003648316254839301, -0.016336504369974136, -0.060048628598451614, 0.02417657896876335, 0.032684966921806335, 0.01994825154542923, 0.0024361824616789818, -0.0035834081936627626, 0.008861779235303402, -0.03793961927294731, -0.02875450626015663, -0.004447056911885738, 0.007921643555164337, 0.0347578264772892, -0.02136964723467827, -0.0007935987669043243, -0.064097099006176, 0.003520642640069127, -0.017104877158999443, 0.005977197550237179, -0.0650516152381897, -0.026165926828980446, -0.027319075539708138, -0.018252503126859665, 0.01654031313955784, -0.004454081878066063, -0.010248927399516106, 0.014157513156533241, 0.023415369912981987, -0.04570244252681732, 0.03391440957784653, -0.023085396736860275, -0.0638645812869072, -0.033335261046886444, 0.0026687183417379856, -0.0033222914207726717, -0.02491886541247368, 0.028256280347704887, -0.014819738455116749, 0.009045031853020191, 0.0337035246193409, -0.00801729317754507, 0.006479963194578886, -0.033885691314935684, 0.029097208753228188, 0.026534780859947205, 0.044695354998111725, -0.05131656676530838, 0.016616933047771454, -0.030626541003584862, -0.007186026778072119, -0.013734477572143078, 0.024980388581752777, -0.02416457049548626, -0.022410200908780098, -0.027949389070272446, -0.00544159347191453, -0.04710373282432556, -0.03724456578493118, -0.02897259034216404, 0.027052748948335648, 0.03976104035973549, -0.032493241131305695, 0.009446345269680023, -0.02160240150988102, -0.020432794466614723, -0.006855345331132412, 0.008966119028627872, -0.045972175896167755, 0.023533733561635017, 0.00568866403773427, -0.003779835067689419, 0.006437330972403288, 0.011386044323444366, 0.058493245393037796, 0.001868629944510758, 0.02432139776647091, -0.036699432879686356, 0.005742285400629044, 0.03363689035177231, 0.044471196830272675, 0.014747747220098972, -0.005346816498786211, -0.01037836167961359, -0.008681559935212135, -0.029008032754063606, -0.04599849134683609, 0.01037585735321045, 0.004178938455879688, 0.0021530992817133665, -0.04234807565808296, -0.08592066913843155, 0.01639242097735405, 0.026242412626743317, 0.00616593100130558, -0.00572209432721138, -0.016431711614131927, 0.009454271756112576, -0.02942712791264057, 0.006730183493345976, 0.08995068818330765, -0.07111035287380219, 0.012722085230052471, -0.02443847805261612, -0.010110446251928806, 0.006003814283758402, -0.012490049004554749, -0.03826652467250824, -0.011391520500183105, -0.00871339999139309, 0.01633397862315178, -0.08221301436424255, -0.01815146766602993, -0.031107446178793907, 0.02858482114970684, 0.011901567690074444, 0.010294674895703793, -0.040838975459337234, -0.010296216234564781, -0.005030760075896978, -0.03409764915704727, -0.00454968586564064, -0.040298983454704285, 0.01464197039604187, 0.008551073260605335, -0.031162461265921593, -0.003986642695963383, -0.03154311701655388, 0.029913559556007385, 0.01644635573029518, -0.032795537263154984, 0.0054703326895833015, -0.03205157443881035, -0.011952808126807213, -0.008674509823322296, 0.03761185705661774, -0.0030360533855855465, -0.009536081925034523, -0.03785215690732002, -0.0028789984062314034, -0.04189605638384819, 0.007292408961802721, -0.008211714215576649, -0.007330646738409996, 0.02259228006005287, 0.06946828216314316, 0.02868720144033432, 0.03445887938141823, -0.02770289033651352, -0.0018390149343758821, 0.03649095818400383, -0.04986855760216713, -0.043695781379938126, -0.034542642533779144, -0.08987241983413696, 0.01214051153510809, 0.03267375007271767, 0.021162550896406174, -0.045870330184698105, 0.03703034669160843, 0.030140211805701256, 0.013859729282557964, 0.048617832362651825, 0.014648987911641598, 0.03289419040083885, -0.04382657632231712, 0.0009719995432533324, -0.0891113132238388, -0.010537318885326385, 0.02056499570608139, 0.007478775456547737, 0.000649256631731987, 0.0011155569227412343, -0.034809693694114685, 0.050209011882543564, -0.06634014844894409, 0.0030053460504859686, 0.05227288231253624, 0.010134320706129074, 0.00784372165799141, 0.04398910701274872, -0.08996587246656418, 0.02679838426411152, 0.01184602826833725, -0.0396401509642601, -0.020582878962159157, -0.017952490597963333, 0.05527038872241974, 0.019046135246753693, 0.02036777324974537, -0.02791718579828739, -0.006480514071881771, 0.07613016664981842, 0.010603571310639381, 0.005490005481988192, 0.05743936821818352, -0.004428619518876076, 0.02249482087790966, 0.04131418094038963, 0.008543691597878933, -0.023703331127762794, 0.03181544691324234, -0.008245418779551983, -0.06333199888467789, 0.04384205862879753, 0.01117029506713152, 0.0007167162257246673, -0.041832707822322845, 0.06993566453456879, 0.005948701407760382, -0.028256749734282494, -0.057146649807691574, 0.009792010299861431, -0.042307499796152115, 0.0094139464199543, -0.0011587660992518067, 0.005071678198873997, -0.06649348884820938, 0.04104461148381233, -0.009174862876534462, 0.014616986736655235, 0.06242617964744568, 0.01310885138809681, -0.020290719345211983, -0.018252139911055565, 0.08376282453536987, 0.07855074107646942, 0.07461795955896378, 0.023161696270108223, 0.06006414815783501, -0.008329702541232109, -0.042325861752033234, 0.018688106909394264, 0.005897123832255602, -0.01972256973385811, -0.020797034725546837, 0.015656156465411186, 0.05907205492258072, -0.025113843381404877, 0.07104615867137909, -0.0048617469146847725, -0.036143239587545395, -0.005954070948064327, 0.03065648302435875, 0.018685277551412582, 0.06760088354349136, 0.01782698556780815, 0.014088291674852371, -0.025229619815945625, -0.039403725415468216, 0.051832813769578934, -0.03842173516750336, -0.017750849947333336, 0.022473560646176338, -0.007834246382117271, 0.0322834849357605, 0.039191246032714844, 0.03888152539730072, 0.07255011796951294, -0.03402802720665932, 0.00810337346047163, 0.003154202364385128, 0.01680946908891201, -0.007305285893380642, 0.023101408034563065, -0.0008408057619817555, -0.0017164951423183084, -0.0009503233013674617, -0.015708422288298607, -0.03582509234547615, -0.03129693493247032, -0.019058646634221077, 0.062306877225637436, -0.020371772348880768, 0.026362696662545204, 0.04100439324975014, 0.005056946072727442, -0.047798413783311844, -0.08118809014558792, -0.025436151772737503, -0.03600151091814041, -0.025880703702569008, -0.0014414660399779677, 0.042725395411252975, -0.01709686778485775, -0.03429451957345009, -0.002444760873913765, -0.03791695833206177, -0.02848043665289879, 0.01766531728208065, -0.05517708137631416, -0.022721190005540848, 0.017775945365428925, 0.02733868546783924, 0.03719719499349594, -0.005190443247556686, 0.03914483264088631, -0.002723555313423276, -0.000921771046705544, -0.004503200296312571, 0.025689760223031044, 0.014562929049134254, 0.004882967099547386, 0.004370155744254589, -0.09730040282011032, 0.0020457517821341753, 0.0267445370554924, -0.00063736253650859, -0.06604194641113281, 0.016313981264829636, 0.002962535247206688, -0.005599715746939182, 0.029867589473724365, -0.020250773057341576, 0.00909116119146347, -0.05269402265548706, 0.012610782869160175, 0.0006373509531840682, 0.016593215987086296, 0.040787965059280396, -0.04125691577792168, 0.07832267135381699, 0.03027045540511608, -0.020601412281394005, -0.040133535861968994, -0.017559608444571495, 0.010509694926440716, 0.007894376292824745, 0.009526479989290237, -0.05557268112897873, -0.0378890335559845, -0.08850204199552536, -0.03168689087033272, 0.0005516856908798218, -0.03197350353002548, -0.030446341261267662, 0.03247685357928276, 0.008543867617845535, -0.03395747393369675, 0.01980702392756939, -0.05511980876326561, 0.04589635133743286, -0.01399343553930521, -0.007249816786497831, -0.005028332117944956, 0.01341246534138918, -0.00013187331205699593, 0.0000010614247685225564, 0.007133898325264454, -0.04040365293622017, 0.022556699812412262, -0.022793514654040337, 0.037687163800001144, 0.05170338973402977, -0.009948275052011013, -0.0160202793776989 ]
[ -0.10717815160751343, -0.00200992776080966, -0.017930956557393074, -0.004590030759572983, 0.012367380782961845, -0.019389979541301727, 0.0002843775146175176, 0.010417332872748375, 0.020960155874490738, -0.03969741612672806, 0.023864345625042915, -0.007490380201488733, 0.03584328293800354, -0.01136357057839632, 0.08149756491184235, -0.0008358655613847077, -0.0030134411063045263, -0.07204369455575943, 0.00432104105129838, 0.027852337807416916, -0.005622164811939001, -0.03244764730334282, -0.04453175142407417, 0.0007323315367102623, 0.020555172115564346, 0.021102262660861015, 0.013808631338179111, -0.04828528314828873, 0.007387442048639059, -0.18881548941135406, 0.010631580837070942, 0.02523479424417019, 0.03579699993133545, -0.023383699357509613, -0.003143610432744026, 0.07122074067592621, 0.009733163751661777, 0.033083848655223846, -0.005686246789991856, 0.0386258065700531, -0.0014919126406311989, 0.013951647095382214, -0.024026978760957718, -0.04497387632727623, 0.0007921591168269515, 0.014732853509485722, -0.017507748678326607, -0.03034905716776848, -0.03092428483068943, 0.023095380514860153, -0.049781765788793564, -0.06111033633351326, -0.029952753335237503, -0.03034389019012451, -0.018434887751936913, 0.07268902659416199, 0.04325801134109497, 0.03518976643681526, 0.0004648276080843061, 0.04058069735765457, 0.02144632115960121, -0.02885391190648079, -0.138401597738266, 0.06999979168176651, 0.011888870038092136, 0.05089956149458885, -0.041269700974226, 0.024395719170570374, -0.005293354857712984, 0.09603944420814514, 0.01861262321472168, -0.026100551709532738, 0.00614915881305933, 0.03363358601927757, 0.035041701048612595, 0.0011337996693328023, -0.02565178833901882, 0.038505181670188904, -0.0009452025406062603, -0.02609042264521122, -0.03331319987773895, -0.010202821344137192, -0.015492338687181473, -0.0351676382124424, -0.048661768436431885, 0.011895040981471539, -0.009821027517318726, 0.050775837153196335, 0.02528616227209568, 0.00208918540738523, 0.04183707758784294, 0.019311774522066116, 0.017217108979821205, -0.004660139791667461, -0.08742587268352509, -0.004638972692191601, 0.008653881028294563, 0.02275555208325386, -0.05223894491791725, 0.4794768691062927, -0.02321319840848446, 0.00612224405631423, 0.08219374716281891, 0.032717134803533554, -0.03166477382183075, -0.021763188764452934, 0.005081385374069214, -0.051500581204891205, 0.02914426662027836, -0.0011145928874611855, 0.026857998222112656, -0.001513316878117621, 0.05926845967769623, -0.04315495863556862, 0.019492432475090027, 0.05733824893832207, 0.052416592836380005, 0.03155619278550148, -0.01834731176495552, -0.0031302375718951225, -0.0013823205372318625, 0.004904451780021191, 0.018778786063194275, -0.007769557181745768, -0.032134946435689926, -0.04377178102731705, 0.01714233122766018, 0.05899428576231003, 0.04279124736785889, -0.023928852751851082, 0.07078273594379425, -0.03527675196528435, -0.04381278157234192, -0.008620829321444035, -0.0036418300587683916, -0.0044021690264344215, 0.03296252340078354, -0.0433717779815197, 0.01719089411199093, 0.04646942391991615, 0.041707802563905716, -0.03294835239648819, 0.017885683104395866, -0.021005522459745407, -0.01932147517800331, 0.15273979306221008, -0.018185026943683624, -0.02788812480866909, 0.010869036428630352, -0.02432185970246792, -0.04564604535698891, 0.0086428914219141, -0.0011824865359812975, -0.05705515295267105, 0.02662169188261032, -0.011313705705106258, 0.10519032925367355, -0.00660680141299963, -0.018730469048023224, 0.003325664671137929, -0.015460009686648846, -0.019276563078165054, -0.060934945940971375, 0.027322305366396904, 0.08186604827642441, -0.12086904793977737, -0.010925108566880226, -0.033147748559713364, 0.013941135257482529, -0.0869155079126358, 0.002347028348594904, 0.0040549105033278465, -0.012435199692845345, 0.01090345997363329, 0.039303507655858994, -0.011008335277438164, -0.048872966319322586, -0.006766159553080797, 0.06337995082139969, 0.013274294324219227, 0.025946201756596565, 0.025552326813340187, -0.05773281678557396, 0.010675338096916676, -0.04037870466709137, -0.07694817334413528, -0.045434847474098206, -0.010107126086950302, -0.01679256185889244, 0.013421584852039814, -0.01776808500289917, -0.045998573303222656, -0.08574190735816956, 0.09261556714773178, -0.05778014659881592, -0.027932504191994667, 0.0346536859869957, -0.02321832813322544, -0.04327183589339256, -0.008955547586083412, -0.09689871966838837, 0.004361825529485941, -0.018923267722129822, 0.021236388012766838, -0.033547744154930115, 0.05069287121295929, 0.03012964129447937, -0.05357830598950386, 0.0979185700416565, 0.034386150538921356, -0.041325341910123825, -0.06845799833536148, 0.006261623464524746, 0.03111220709979534, -0.0014975594822317362, -0.006891206372529268, -0.007904107682406902, 0.020870791748166084, -0.007688640151172876, 0.023319929838180542, -0.0025594693142920732, 0.007095858454704285, 0.0031577786430716515, -0.3090272545814514, -0.017682988196611404, 0.011070392094552517, -0.0015318719670176506, 0.02925635315477848, -0.011211227625608444, 0.015416477806866169, -0.0008305571391247213, -0.022842319682240486, 0.006317801773548126, 0.04524531960487366, -0.01146221999078989, -0.0017043122788891196, -0.07472286373376846, -0.004707918036729097, 0.02895485609769821, -0.059348996728658676, 0.008054165169596672, -0.01006222516298294, 0.021581104025244713, 0.006814933847635984, 0.00978095829486847, -0.02433810941874981, -0.043401528149843216, -0.001443264540284872, -0.035164330154657364, 0.09619035571813583, 0.05325085669755936, 0.040668465197086334, -0.006549715530127287, 0.004850517492741346, 0.013964910991489887, -0.006232747808098793, -0.10818737000226974, 0.012888706289231777, 0.0005519224796444178, 0.01852494850754738, -0.06344309449195862, 0.018367916345596313, -0.04642236605286598, -0.05676800012588501, 0.024236304685473442, -0.06550531089305878, -0.04346919059753418, -0.08232739567756653, 0.00814161729067564, -0.023387331515550613, -0.014332004822790623, -0.012986450456082821, 0.06611171364784241, 0.024112675338983536, 0.001123351277783513, 0.035346560180187225, -0.006077735684812069, 0.009465903975069523, -0.022947344928979874, -0.10135061293840408, 0.026274751871824265, 0.00257247406989336, -0.034678421914577484, 0.03240925818681717, 0.07248630374670029, 0.03532681241631508, -0.04920630529522896, 0.00793696939945221, 0.037939224392175674, 0.0022946130484342575, -0.004831917118281126, 0.03611462935805321, 0.008422493003308773, 0.005065753124654293, 0.0586068257689476, 0.0036369210574775934, -0.018748214468359947, 0.025590090081095695, 0.006642587948590517, -0.032428838312625885, -0.01831282302737236, -0.012609708122909069, -0.008054380305111408, 0.034266840666532516, -0.04641867056488991, 0.029750842601060867, -0.015476253814995289, -0.005899796262383461, 0.013670905493199825, 0.009520616382360458, -0.008292959071695805, 0.09550683200359344, -0.002308634342625737, -0.01053003128618002, 0.007553089875727892, -0.013619975186884403, -0.0212995707988739, 0.0675661563873291, -0.012468761764466763, -0.2676868140697479, 0.014120529405772686, 0.055127304047346115, 0.03992675989866257, -0.020697150379419327, 0.08517520129680634, -0.002901562722399831, -0.026574037969112396, -0.014182718470692635, -0.018244465813040733, 0.006831830833107233, 0.02322559989988804, -0.015654951333999634, -0.0028439403977245092, 0.014572404325008392, 0.015526756644248962, 0.04718969017267227, -0.009114783257246017, 0.011309471912682056, 0.00032311692484654486, 0.017384015023708344, 0.014044832438230515, 0.16184161603450775, 0.008105096407234669, 0.04628077149391174, -0.0041614435613155365, 0.005804030690342188, 0.015229415148496628, 0.03918248042464256, -0.009750822558999062, -0.0053741359151899815, -0.016006315127015114, 0.024920005351305008, 0.010373787023127079, 0.00744647579267621, -0.057785846292972565, -0.016825860366225243, 0.022370055317878723, 0.015838894993066788, 0.008563794195652008, 0.0032845803070813417, -0.01376606710255146, -0.035981304943561554, 0.022273771464824677, 0.0720817968249321, 0.02668778784573078, 0.011671686545014381, -0.0421588197350502, -0.046336084604263306, -0.0091631431132555, -0.04338344559073448, -0.03717963397502899, 0.014766945503652096, 0.022422678768634796, 0.0011766540119424462, 0.049197718501091, 0.028154423460364342, -0.01298456359654665, 0.02152133733034134, 0.023575060069561005, -0.022307146340608597, 0.0018364868592470884, 0.08254417032003403, 0.006276248022913933, 0.03534557670354843 ]
[ -0.016972428187727928, 0.0417492501437664, 0.001552518573589623, 0.003521184204146266, -0.005894838832318783, 0.04580330476164818, -0.032021526247262955, -0.02356295846402645, -0.003802795661613345, -0.02575305663049221, -0.025510650128126144, 0.03558357059955597, 0.009221553802490234, -0.010920340195298195, 0.03730189800262451, -0.02025936171412468, -0.007847168482840061, -0.009097909554839134, 0.044589877128601074, 0.021796470507979393, -0.04188867658376694, 0.00576345669105649, -0.03499603271484375, 0.004845367278903723, 0.0026829515118151903, -0.0020509446039795876, -0.03193872049450874, 0.008148487657308578, 0.03312792629003525, -0.10506195574998856, -0.0333661325275898, -0.01882309652864933, 0.020299917086958885, 0.022990867495536804, -0.0007175164646469057, -0.0027458067052066326, 0.02227908745408058, 0.03756127133965492, -0.00424608588218689, -0.0016613578191027045, 0.005309306085109711, -0.025725778192281723, 0.01917014643549919, -0.020625311881303787, 0.013714712113142014, 0.005937873385846615, -0.006240506656467915, -0.0018307536374777555, -0.021028663963079453, -0.02304890938103199, -0.047970592975616455, -0.005724388174712658, -0.03247262164950371, 0.001945772091858089, 0.0306873582303524, 0.04047665745019913, 0.00726298987865448, -0.014240146614611149, -0.007535138167440891, -0.01768273487687111, -0.00877717137336731, -0.010981214232742786, -0.047459859400987625, -0.015378400683403015, -0.017365844920277596, -0.008019313216209412, -0.018953287973999977, 0.027673935517668724, -0.02153618261218071, 0.04066438600420952, -0.026001034304499626, 0.008620982058346272, -0.011163567192852497, -0.02703947387635708, -0.00004350888411863707, 0.03055102750658989, -0.0011299432953819633, -0.038801275193691254, 0.017209075391292572, -0.025666581466794014, -0.0631319060921669, -0.0020850372966378927, -0.01584256999194622, 0.013307761400938034, 0.003443478373810649, -0.012651389464735985, 0.018742777407169342, -0.00912195723503828, -0.004806749988347292, -0.02303697168827057, -0.05924655497074127, 0.018471702933311462, 0.005262956488877535, -0.0005786234396509826, -0.094247967004776, 0.016307342797517776, -0.04392801597714424, 0.007685188669711351, -0.0027328350115567446, 0.8409073948860168, -0.008774332702159882, 0.018200449645519257, 0.04581854119896889, -0.005281818099319935, -0.002438819268718362, -0.019917497411370277, 0.009651688858866692, -0.02780752070248127, 0.01867854595184326, -0.0067520784214138985, 0.018255097791552544, 0.020130204036831856, -0.001925274613313377, 0.01899581216275692, 0.035704005509614944, 0.034654270857572556, 0.0092631746083498, 0.021389693021774292, -0.018812255933880806, 0.002264990471303463, 0.02804717794060707, 0.017066722735762596, 0.04540194943547249, -0.01990046724677086, 0.003147756913676858, -0.19040149450302124, 0.028493884950876236, -7.952478626753925e-33, 0.05146470293402672, 0.022731712087988853, 0.013532844372093678, -0.01181059516966343, -0.010648884810507298, -0.003571287728846073, -0.026585496962070465, -0.027442732825875282, -0.04885974898934364, -0.033798497170209885, 0.03309156373143196, 0.01609281450510025, 0.0692284107208252, -0.01457829400897026, 0.01426718570291996, -0.05606312304735184, 0.0170371625572443, 0.033392101526260376, -0.014246752485632896, 0.009349379688501358, 0.034576743841171265, 0.0027124867774546146, -0.015000839717686176, 0.01443057507276535, -0.006890255957841873, -0.000027110254450235516, 0.012312314473092556, 0.03285512700676918, 0.006873657461255789, -0.04608376696705818, -0.011143135838210583, 0.053419895470142365, -0.02029903419315815, -0.00027757041971199214, -0.0038750162348151207, -0.033622756600379944, -0.013598757795989513, 0.0006334632635116577, -0.01105900201946497, -0.055210795253515244, -0.02565174177289009, 0.023036252707242966, -0.02836715616285801, -0.046820249408483505, -0.003610490122810006, -0.02419309690594673, -0.008304930292069912, 0.019999219104647636, 0.0011993463849648833, -0.03434501215815544, -0.00363721651956439, 0.020365945994853973, -0.023418543860316277, 0.04761802777647972, -0.027939993888139725, -0.0023979293182492256, -0.00009770493488758802, 0.0023165231104940176, -0.004936168435961008, 0.027172215282917023, 0.024111539125442505, -0.008508740924298763, -0.01182184275239706, 0.014055587351322174, 0.005699463188648224, 0.004263417329639196, -0.011329598724842072, -0.012734211049973965, 0.023791393265128136, -0.006798823829740286, -0.0161936953663826, -0.001510860281996429, 0.008662846870720387, 0.0008650929667055607, -0.0007655625231564045, 0.0015273906756192446, -0.0015022760489955544, 0.026225196197628975, -0.0008660719031468034, 0.0491892509162426, -0.019631031900644302, 0.013103133998811245, 0.007917717099189758, -0.04585826396942139, -0.013754329644143581, -0.026094214990735054, 0.0002641826868057251, -0.023666204884648323, -0.020812448114156723, 0.02308674529194832, 0.017855865880846977, 0.030299140140414238, 0.02104060910642147, -0.031319428235292435, 0.006238193716853857, 7.763748600625591e-33, -0.000772761763073504, 0.00249971030279994, -0.0019224734278395772, 0.006041896063834429, 0.07014614343643188, -0.02360791340470314, 0.0131735410541296, -0.02119860239326954, -0.06063319742679596, 0.02248709835112095, -0.006526617333292961, -0.027546647936105728, -0.013267414644360542, 0.019479194656014442, 0.036787714809179306, -0.006442805752158165, 0.04417269304394722, -0.01805110275745392, 0.0390949584543705, -0.004006989765912294, 0.051445282995700836, -0.025318115949630737, 0.023955287411808968, 0.008980299346148968, 0.025251420214772224, 0.05179499089717865, 0.018242107704281807, -0.003906209021806717, -0.00869674514979124, -0.02743535116314888, -0.007988284341990948, 0.007812720723450184, -0.013261251151561737, -0.011867460794746876, 0.024900313466787338, 0.025205174461007118, -0.07178186625242233, -0.04152659699320793, 0.020232919603586197, -0.01534272264689207, 0.0009118748712353408, 0.02721794694662094, -0.001410270226188004, 0.028610816225409508, 0.031499650329351425, -0.017646294087171555, 0.005377172026783228, 0.017887219786643982, -0.025641363114118576, 0.0056879036128520966, 0.01643233560025692, 0.03827693685889244, -0.03587136045098305, -0.026050914078950882, -0.002802177332341671, -0.03321366012096405, 0.015950608998537064, 0.01430419273674488, -0.017164265736937523, 0.006361125968396664, 0.016033904626965523, 0.00413157232105732, -0.04826049506664276, 0.014698190614581108, -0.01710038259625435, 0.004025184083729982, 0.005078278947621584, 0.012587618082761765, -0.02352515235543251, 0.02529185265302658, -0.01846575178205967, -0.008857597596943378, 0.002625639084726572, 0.03421632945537567, -0.010742795653641224, -0.005037684924900532, -0.050252094864845276, -0.0027194528374820948, -0.0005749522824771702, 0.019268613308668137, 0.007644107565283775, 0.025252219289541245, 0.005793904419988394, 0.035859689116477966, -0.005751556716859341, 0.02812214195728302, -0.015594410710036755, 0.06630493700504303, -0.010238424874842167, 0.01036918442696333, -0.002487210789695382, -0.02863183245062828, 0.007413952145725489, 0.03474123030900955, 0.019092366099357605, -1.3570916834737545e-8, -0.03471704199910164, 0.018968980759382248, -0.05175478756427765, 0.020514559000730515, 0.008320791646838188, -0.008377112448215485, -0.006450640968978405, -0.025019044056534767, 0.011699245311319828, 0.012182747013866901, 0.00904862117022276, -0.03849201276898384, -0.0025774624664336443, 0.022022025659680367, 0.03665236756205559, -0.01438794657588005, -0.006973950192332268, -0.026578828692436218, 0.014433062635362148, 0.01986834779381752, 0.02859853021800518, 0.04857891425490379, -0.03527427837252617, 0.03514280170202255, -0.03014177829027176, 0.014204458333551884, -0.004052767995744944, -0.07388950139284134, 0.004564682487398386, 0.014364209957420826, 0.03250722959637642, -0.014264480210840702, -0.044767118990421295, 0.006954146549105644, -0.007468173746019602, -0.027070162817835808, 0.017183607444167137, 0.006315961945801973, 0.04349599778652191, 0.003482513129711151, -0.02405446767807007, -0.004213884938508272, 0.012000580318272114, -0.023374641314148903, 0.0008207093342207372, 0.0379745177924633, -0.03790741786360741, -0.03846527263522148, -0.07280553132295609, -0.039958834648132324, -0.016725245863199234, -0.008358018472790718, 0.048733826726675034, 0.011276820674538612, 0.006590681616216898, 0.028796808794140816, -0.022859469056129456, -0.004243535455316305, 0.02718445099890232, -0.014123691245913506, -0.020167512819170952, -0.005126363597810268, -0.011149813421070576, -0.012525484897196293 ]
standups-pair-stand-together
https://markhneedham.com/blog/2008/11/17/standups-pair-stand-together
false
2008-11-17 00:14:22
Agile - Should everyone have to learn all the roles?
[ "agile" ]
[ "Agile" ]
In my final year of university a few years ago when I was applying for jobs I was really keen to join the (then) http://careers.thomsonreuters.com/StudentCenter/Default.aspx?id=264[Reuters Graduate Technology program]. The thing that appealed to me the most was that over the 2 years you were on the graduate program you would have the opportunity to be placed in 4 different roles within the business. The website gives some examples: ____ Technical architect, Project manager, Infrastructure service manager, Business analyst, Product & development manager, Software engineer, Implementation engineer, Desktop design consultant, Technical specialist, Deployment project manager, Training ____ What I really liked about this idea was: . It gave you an opportunity to try different things and see what you liked best. . Regardless of what you eventually chose to do you now had a broader perspective of the world from having done the other 3 roles. I was reminded of this a couple of weeks ago when I was having a conversation with a colleague about whether everyone on an agile team should have to learn how to do all the roles (Developer, BA, QA, Iteration Manager, Project Manager). == Why learn all the roles? The main advantage of having people who have the ability to work in different roles is that it provides a team with great flexibility and helps to *increase the team's http://en.wikipedia.org/wiki/Bus_factor[bus factor]*. From my experience on agile teams it is often the case that there is a single Business Analyst and if they are on holiday or absent then there is not necessarily someone else on the team with the skill set to cover them. When these type of situations arise it would be useful to have someone who could play that role for the day. Having experience across different roles gives you a *different perspective* when playing your current role. Certainly developers would be much more inquisitive about the business value a particular story is adding if they had experience working in an analyst role and and analysts who have been developers have a better idea about the types of things that developers need to know to complete a story. As individuals we learn much more quickly when we are operating in http://en.wikipedia.org/wiki/Shoshin[beginner's mind], a state we would be able to achieve with much more frequency if we are learning different roles. The natural inquisitiveness we display when learning a new skill can also be beneficial to the rest of the team as it will *bring up assumptions* which may not necessarily be correct but which wouldn't have been exposed otherwise. I've heard the argument that the skill set for BAs/QAs is quite similar and I have certainly worked with colleagues who are able to perform both roles. Many project managers I have worked with have performed another role previously, so maybe it is only natural that you will end up with some people with multi role skill sets on any given team. == Why not? I think if we are to become skilled across multiple roles in a team then we need to become careful that we don't have the situation where we become a *jack of all trades and a master of none*. In agile teams the idea of having http://www.agilemodeling.com/essays/generalizingSpecialists.htm[generalising specialists] is encouraged so we would need to make sure that we+++<strong>+++retain some areas of specialism+++</strong>+++ while also having the ability to fill other roles rather than spreading ourself too thinly across all roles. This seems to indicate to me that a *certain amount of depth* is required in our principal role which mainly comes from spending time doing it. I think this is the same principle which holds when learning programming languages - it's better to gain a solid understanding of one type of language before trying to learn other ones from my experience. The idea of being skilled in multiple roles also seems to *go against the idea of playing to your strengths* encouraged by Marcus Buckingham in his book 'http://www.amazon.co.uk/Put-Your-Strengths-Work-Outstanding/dp/0743263294/ref=sr_1_2?ie=UTF8&s=books&qid=1226844695&sr=8-2[Go Put Your Strengths to Work]'. If we have already found what we love to do and can do it well then there may not be that much benefit in trying to change, although it is always useful to step outside your comfort zone once in a while. == In Summary I think it is good to have people with the ability to play multiple roles on a team but I'm not sure whether every single team member needs to be able to do this - it is certainly useful to have some people on a team who are purely experts in one role. I'm sure I haven't covered all the potential arguments here but I find it interesting to see how far the generalising specialist idea should stretch - where is the limit of when having greater depth in one area becomes preferable to spreading our abilities across different ones? _Update_ As Lachlan points out in the comment we should be looking to increase the bus factor on the project rather than reduce it. My mistake.
null
null
[ 0.021701617166399956, 0.006867852061986923, -0.008027646690607071, 0.036193832755088806, 0.09085147827863693, 0.02494145557284355, -0.003169190138578415, 0.040845781564712524, 0.0018155780853703618, -0.014525209553539753, -0.030720725655555725, 0.00358573324047029, -0.03683771938085556, 0.018730780109763145, -0.026088740676641464, 0.0583970732986927, 0.07050982117652893, 0.0027309260331094265, 0.0007068788981996477, -0.005473162978887558, 0.03121686354279518, 0.08919787406921387, 0.03221357241272926, 0.04518023878335953, 0.04683589190244675, 0.004521447233855724, 0.012382524088025093, 0.004556401167064905, -0.017522523179650307, -0.011198833584785461, 0.016642697155475616, -0.016295062378048897, 0.005678500048816204, 0.009769083932042122, 0.01987580955028534, -0.03673342615365982, -0.006815262604504824, 0.03525136783719063, 0.0004338075523264706, -0.026002023369073868, -0.08162906020879745, 0.039225418120622635, -0.015347885899245739, 0.0036880169063806534, -0.024746954441070557, 0.0030926698818802834, -0.048504263162612915, 0.00634410697966814, 0.010055684484541416, -0.001229702727869153, -0.05958668142557144, 0.029174814000725746, -0.014830313622951508, -0.01902863383293152, -0.008572711609303951, 0.028638051822781563, 0.028433188796043396, -0.05794832110404968, 0.011500849388539791, -0.04566266015172005, -0.011127905920147896, -0.0010787049541249871, 0.0038507054559886456, 0.04565867781639099, 0.03766930475831032, -0.029584329575300217, 0.015468654222786427, 0.015268975868821144, -0.04229346290230751, 0.018282266333699226, -0.03166568651795387, 0.00005821419836138375, -0.008680860511958599, -0.020769217982888222, 0.009094798006117344, -0.0587490014731884, -0.008175745606422424, 0.055958084762096405, 0.01935979351401329, 0.03722982853651047, -0.0281148049980402, 0.0075433701276779175, 0.0011650274973362684, 0.020356973633170128, -0.010202576406300068, -0.047823864966630936, 0.01585853286087513, -0.02593495510518551, -0.060344841331243515, 0.0524967685341835, 0.006083026062697172, -0.05840688943862915, 0.021153869107365608, 0.05536773428320885, 0.0024789185263216496, 0.020396200940012932, 0.027479367330670357, -0.009083292447030544, 0.0004855593724641949, -0.009230691008269787, -0.04011920467019081, -0.00724000483751297, -0.006024081725627184, 0.0010582206305116415, -0.08509836345911026, -0.003693806705996394, -0.01791251264512539, 0.0053913830779492855, -0.03757067024707794, 0.02097482793033123, -0.030096199363470078, 0.008950675837695599, -0.01770215854048729, 0.01864231377840042, -0.04690701887011528, 0.0680171549320221, 0.0036999352741986513, -0.0447782427072525, -0.0068744453601539135, -0.017992103472352028, 0.026472652330994606, 0.008093785494565964, -0.020242929458618164, 0.06853296607732773, -0.0014940587570890784, 0.021916713565587997, -0.047344841063022614, 0.040812376886606216, -0.018578805029392242, -0.061545051634311676, -0.010822445154190063, 0.05774357542395592, -0.03884618729352951, 0.005686372052878141, 0.0009283279068768024, -0.027732716873288155, 0.01588725671172142, 0.005216158460825682, 0.0217227004468441, 0.03820210322737694, -0.0204592477530241, -0.04194191098213196, 0.016925370320677757, 0.024936657398939133, 0.02290346473455429, -0.032191041857004166, 0.0034938883036375046, -0.027085306122899055, -0.052487388253211975, -0.01226898469030857, 0.03605444356799126, 0.0031047710217535496, 0.02427162230014801, -0.03204716369509697, 0.020022325217723846, 0.08368952572345734, 0.04629165306687355, -0.005464857444167137, 0.004375956021249294, 0.02631145529448986, 0.038647208362817764, 0.018671773374080658, 0.03415694832801819, 0.03692731261253357, 0.008214023895561695, -0.0020962273702025414, 0.0010189481545239687, 0.023095009848475456, 0.006946833338588476, 0.005028391722589731, -0.06667064130306244, -0.05303678661584854, 0.04217471554875374, -0.05021312087774277, -0.039257366210222244, 0.05096249282360077, 0.05730140954256058, 0.029872871935367584, 0.023188211023807526, -0.011529572308063507, -0.07299643009901047, 0.028231872245669365, 0.029887912794947624, 0.023364251479506493, 0.06379321962594986, -0.024846341460943222, 0.04473452270030975, 0.04186132550239563, -0.0036801653914153576, 0.0240018330514431, -0.07646475732326508, -0.10140921920537949, -0.015933271497488022, 0.0026355937588959932, 0.03896115720272064, -0.05638861283659935, 0.001379160094074905, 0.07530885189771652, 0.00535358302295208, 0.04353763163089752, 0.013849630020558834, 0.006840492133051157, 0.00217077205888927, -0.029480667784810066, -0.040955763310194016, 0.06463223695755005, 0.028054194524884224, 0.011112337931990623, -0.05003982037305832, 0.015250220894813538, -0.008791455067694187, -0.0004584193229675293, 0.04247572645545006, -0.021367035806179047, 0.061209626495838165, 0.0017676710849627852, 0.05173143744468689, -0.03205366060137749, 0.07308994978666306, -0.03912551328539848, 0.033596139401197433, -0.010847431607544422, -0.02977161668241024, 0.012796327471733093, 0.007607357110828161, 0.10279137641191483, 0.04147348925471306, -0.05468131974339485, -0.035062652081251144, 0.03965470567345619, 0.03338129073381424, -0.029693640768527985, 0.007734479382634163, 0.007487195078283548, 0.01807975582778454, 0.002528649754822254, -0.0703926607966423, -0.04865748807787895, 0.00589537899941206, -0.05559920519590378, 0.014005815610289574, 0.06936588138341904, -0.03987303003668785, 0.06322580575942993, 0.006150568835437298, -0.029118692502379417, -0.009725525975227356, 0.002196304267272353, -0.05016334354877472, -0.006187178660184145, 0.004936276935040951, -0.02262667752802372, 0.05241549015045166, -0.0036347717978060246, -0.043132416903972626, -0.04396786913275719, -0.04217537119984627, 0.03197713941335678, 0.04091634973883629, 0.05970876291394234, -0.015939852222800255, 0.05921926349401474, -0.019205739721655846, 0.05597424507141113, -0.006708124652504921, -0.024662816897034645, -0.027646003291010857, -0.02564951591193676, -0.0027144993655383587, 0.025884637609124184, 0.018679998815059662, 0.005857695359736681, 0.015827041119337082, 0.002104897052049637, -0.021713119000196457, -0.00942680612206459, 0.018964450806379318, 0.008299341425299644, 0.006039849482476711, -0.04658319428563118, 0.00013370309898164123, 0.05297889560461044, -0.03389812633395195, -0.016567330807447433, 0.020241569727659225, -0.09108363837003708, 0.02370840683579445, -0.07044674456119537, -0.03569170460104942, -0.013650667853653431, 0.009171049110591412, 0.05013463646173477, 0.026614094153046608, 0.013232562690973282, 0.05744360014796257, 0.006282338406890631, 0.014033438637852669, 0.01089841965585947, 0.015871267765760422, 0.0398758128285408, 0.007386370562016964, -0.011890115216374397, 0.04966169595718384, -0.014554955996572971, 0.012217585928738117, -0.0649418830871582, 0.06458348780870438, -0.051326923072338104, -0.27914583683013916, 0.01796322874724865, 0.013261878862977028, -0.04060531407594681, 0.03286721929907799, -0.042075905948877335, 0.01917180046439171, -0.05321474000811577, -0.016020027920603752, 0.022857699543237686, -0.04487204551696777, -0.04287759214639664, -0.024558089673519135, 0.05028253421187401, -0.010426604188978672, 0.03999548405408859, 0.05895939841866493, -0.035291556268930435, 0.011319058015942574, 0.05165381729602814, -0.019538598135113716, -0.06467270106077194, -0.016984649002552032, 0.03252187743782997, 0.050402671098709106, 0.07116689532995224, -0.0769568681716919, 0.04815543442964554, -0.07006402313709259, -0.009925209917128086, 0.015440354123711586, 0.002695220522582531, 0.003974198363721371, -0.007667258847504854, -0.011072426103055477, -0.007087865844368935, 0.053243838250637054, 0.010251068510115147, 0.02161685936152935, -0.01238521933555603, -0.024633366614580154, -0.060674913227558136, -0.013708332553505898, 0.02569480799138546, 0.05676019936800003, 0.0033122492022812366, -0.07838552445173264, 0.0028235861100256443, -0.011639225296676159, 0.07652497291564941, -0.02670239470899105, -0.01020636036992073, -0.006980661302804947, 0.035590432584285736, -0.017738524824380875, -0.011819344013929367, 0.007627105340361595, -0.016684722155332565, -0.04148669168353081, -0.02134714461863041, -0.010696332901716232, -0.026418812572956085, -0.019999291747808456, -0.05719265341758728, -0.011482776142656803, -0.06242695450782776, -0.0733574628829956, -0.01253608986735344, 0.061127956956624985, -0.006903675850480795, -0.037473566830158234, 0.0013105606194585562, -0.003772009164094925, -0.09916344285011292, 0.020364394411444664, -0.015366937033832073, -0.03202133998274803, 0.001971156569197774, 0.027850953862071037, 0.0245953518897295, -0.014010616578161716, -0.06778326630592346, 0.029434429481625557, 0.01740923896431923, 0.02175958827137947, 0.00017553090583533049, 0.06857189536094666, 0.036597881466150284, -0.01848512515425682, 0.01820814236998558, 0.051417216658592224, 0.011792623437941074, -0.015475202351808548, -0.008551777340471745, 0.02291950210928917, 0.005851367022842169, -0.005321142263710499, -0.01862053945660591, 0.005044081248342991, -0.0030735002364963293, 0.004686987493187189, -0.0470748245716095, -0.005824540741741657, 0.01394953764975071, -0.0038618315011262894, -0.02579060196876526, -0.04272805154323578, 0.0021760982926934958, 0.04105765372514725, 0.03528018295764923, 0.016906999051570892, -0.009100496768951416, 0.009024803526699543, -0.04516497254371643, -0.011319786310195923, -0.010724435560405254, 0.008946243673563004, 0.05272732302546501, 0.00006655458855675533, 0.012060239911079407, -0.06215739995241165, 0.015354478731751442, -0.004085049498826265, -0.012646811082959175, -0.06211606413125992, -0.006565280724316835, -0.022753793746232986, -0.022454284131526947, 0.004542754963040352, 0.01728406548500061, -0.00769159896299243, 0.014731028117239475, 0.025081848725676537, -0.055208489298820496, 0.009222263470292091, -0.033437106758356094, -0.07745399326086044, -0.0297003872692585, -0.010849042795598507, -0.007016768679022789, -0.015314390882849693, 0.04437009245157242, 0.004710458219051361, -0.004565555136650801, 0.042708463966846466, -0.00035148809547536075, 0.006231145933270454, -0.003840856486931443, 0.012569719925522804, 0.019494928419589996, 0.004927452187985182, -0.062119726091623306, 0.00004160518437856808, -0.026284044608473778, -0.001571612898260355, -0.05072973296046257, 0.025556379929184914, -0.020054899156093597, -0.039172541350126266, -0.015489961951971054, 0.005602032411843538, -0.06197094917297363, -0.032285477966070175, -0.023268425837159157, 0.03203568607568741, 0.0711672231554985, -0.0029206250328570604, 0.008505309000611305, -0.0272224061191082, 0.006124663166701794, 0.026808777824044228, 0.016571475192904472, -0.052669499069452286, -0.022558262571692467, 0.002537821652367711, 0.0035129659809172153, 0.02015841379761696, 0.0050805904902517796, 0.05257829278707504, -0.008894565515220165, 0.0020045943092554808, -0.0031255497597157955, 0.002513582119718194, 0.012485792860388756, 0.03206451237201691, 0.04654080793261528, -0.022809656336903572, -0.014373406767845154, -0.023655138909816742, -0.02129078283905983, -0.032821644097566605, -0.015418440103530884, -0.021534550935029984, 0.005886081140488386, -0.030906222760677338, -0.06058848276734352, 0.054118093103170395, 0.0062052346765995026, -0.004018634557723999, 0.015285903587937355, -0.030487459152936935, -0.003544082399457693, -0.029865866526961327, 0.030551714822649956, 0.04799956455826759, -0.06101938337087631, -0.004136230796575546, -0.008499892428517342, 0.013205710798501968, 0.0048331464640796185, 0.0033821207471191883, -0.008096166886389256, 0.010338391177356243, -0.031456876546144485, 0.0028482067864388227, -0.09292573481798172, -0.0016110115684568882, -0.04224873706698418, 0.006748941261321306, 0.016713231801986694, -0.005249357782304287, -0.014871594496071339, -0.01884075626730919, -0.033022597432136536, -0.035456229001283646, 0.023899855092167854, -0.03513814136385918, 0.004581160377711058, 0.022318080067634583, -0.04349946603178978, -0.0025462007615715265, -0.026276180520653725, -0.0010465019149705768, 0.008880398236215115, -0.021757815033197403, 0.00910018477588892, -0.0320131778717041, -0.006293032318353653, 0.022502372041344643, 0.03696823865175247, -0.014482994563877583, -0.05275224149227142, -0.041604626923799515, -0.010472011752426624, -0.048726290464401245, 0.002402679296210408, -0.023352397605776787, -0.003285893239080906, 0.013075374066829681, 0.06658121943473816, 0.04264649376273155, 0.030463827773928642, -0.0017748777754604816, -0.0013432047562673688, 0.034968968480825424, -0.04872968792915344, -0.046042654663324356, -0.03502431884407997, -0.032467495650053024, 0.011717138811945915, 0.009895301423966885, 0.024809274822473526, -0.04879988357424736, 0.0470123365521431, 0.01903144083917141, 0.03389551490545273, 0.03641201928257942, -0.00997838843613863, 0.04344671964645386, -0.06248747184872627, -0.010195481590926647, -0.07078324258327484, 0.0012994827702641487, 0.034329604357481, 0.015376781113445759, 0.004143960773944855, 0.002978529781103134, -0.04250578582286835, 0.07249120622873306, -0.07749804109334946, -0.022530391812324524, 0.04842785373330116, -0.002434325637295842, -0.013573839329183102, 0.016229940578341484, -0.07993347942829132, 0.04785679280757904, 0.008793544955551624, -0.03760172054171562, -0.019375687465071678, 0.0036474999506026506, 0.046909116208553314, -0.013412180356681347, 0.027717888355255127, -0.04361825808882713, 0.023940520361065865, 0.10006420314311981, 0.00782373920083046, 0.001895373803563416, 0.05960872024297714, -0.0009626338724046946, 0.043463096022605896, 0.05035934969782829, 0.029584771022200584, -0.02062970958650112, 0.028329478576779366, -0.00335120246745646, -0.06945538520812988, 0.015058405697345734, 0.017826003953814507, -0.02981756441295147, -0.037641625851392746, 0.03862455114722252, 0.0290762297809124, -0.0295704398304224, -0.06680672615766525, -0.00866697821766138, -0.04861307889223099, 0.024948013946413994, -0.034341663122177124, -0.009706468321383, -0.05897744745016098, 0.03906281664967537, -0.004848194308578968, 0.022157641127705574, 0.07652173936367035, 0.015154188498854637, -0.04446118697524071, -0.022234758362174034, 0.08116967231035233, 0.06143989786505699, 0.07606066018342972, 0.005683854687958956, 0.07178514450788498, -0.016959941014647484, -0.05531282722949982, 0.040561243891716, -0.002591753611341119, 0.001095309155061841, -0.020058952271938324, 0.02296256273984909, 0.06579824537038803, 0.010524597950279713, 0.055762652307748795, 0.0036378558725118637, -0.03180799260735512, 0.018529998138546944, 0.04079631716012955, 0.014761989004909992, 0.0747596025466919, 0.007667731959372759, 0.007058088202029467, -0.025483878329396248, -0.03148740157485008, 0.01666346564888954, -0.03855946287512779, -0.03390052542090416, 0.04402130842208862, 0.0004016220918856561, 0.03258099779486656, 0.012904726900160313, 0.017536623403429985, 0.08739416301250458, -0.054025232791900635, -0.005116111598908901, -0.024826491251587868, 0.030746400356292725, -0.01874200440943241, 0.01275637373328209, -0.018581746146082878, -0.015369639731943607, 0.0011079518590122461, -0.020588280633091927, -0.03509487584233284, -0.001565046957693994, -0.011096900328993797, 0.04611603170633316, -0.04504825919866562, 0.02196403779089451, 0.028733273968100548, -0.008395844139158726, -0.027377793565392494, -0.066582590341568, -0.03551202267408371, -0.04374553635716438, -0.05358627811074257, -0.015521399676799774, 0.03938473388552666, -0.016025949269533157, -0.02395290695130825, -0.0016715199453756213, -0.004616935737431049, -0.03901083022356033, 0.05102824419736862, -0.036364682018756866, -0.032465338706970215, -0.0016275212401524186, 0.02059047855436802, 0.04148472473025322, 0.007176654413342476, 0.043352384120225906, -0.00846465677022934, -0.011060332879424095, 0.00033065761090256274, 0.022495927289128304, 0.018467780202627182, 0.010073408484458923, 0.011321022175252438, -0.0675681009888649, 0.01413244940340519, 0.04088304191827774, -0.025876197963953018, -0.061937034130096436, 0.027538305148482323, 0.015497563406825066, 0.002974156755954027, 0.05095839127898216, -0.010101236402988434, 0.013754733838140965, -0.022174810990691185, 0.0012095562415197492, -0.020718015730381012, -0.002946993336081505, 0.04668743163347244, -0.029521754011511803, 0.08234703540802002, 0.01688988320529461, 0.010587545111775398, -0.0341651551425457, 0.0003907654026988894, 0.00308572337962687, 0.0037905543576925993, -0.01878613792359829, -0.022510413080453873, -0.035089701414108276, -0.10113608837127686, -0.030051512643694878, 0.012539718300104141, -0.027314769104123116, -0.04312232509255409, 0.016658026725053787, 0.01401541754603386, -0.029743043705821037, 0.023646097630262375, -0.048239707946777344, 0.04579301178455353, -0.02424708381295204, 0.007358974311500788, 0.016595695167779922, 0.015917234122753143, -0.008265018463134766, -0.018656935542821884, 0.023729950189590454, -0.05836139991879463, -0.011998774483799934, -0.02085806243121624, 0.010782054625451565, 0.03578124940395355, 0.025918008759617805, 0.02118176408112049 ]
[ -0.05570833012461662, 0.0011184669565409422, -0.013668989762663841, -0.059606410562992096, 0.04401872679591179, -0.03774349018931389, 0.035352371633052826, 0.016029588878154755, -0.015923770144581795, -0.040163565427064896, 0.005039133131504059, -0.01335461437702179, -0.006338359788060188, -0.04814556986093521, 0.09807183593511581, -0.004351795185357332, -0.017232347279787064, -0.0659426674246788, 0.002720339223742485, 0.012820583768188953, -0.02249836176633835, -0.04298551753163338, -0.030968230217695236, -0.021359607577323914, 0.040422677993774414, 0.01984456554055214, 0.019359318539500237, -0.04033706709742546, 0.0006374522345140576, -0.15026985108852386, -0.0028706775046885014, 0.03441159427165985, 0.03259763866662979, -0.0008992745424620807, 0.0011069780448451638, 0.09500826150178909, 0.016442513093352318, 0.02206733450293541, -0.003906767815351486, 0.03777454420924187, 0.02142861671745777, 0.017713172361254692, -0.04066036641597748, -0.03455565497279167, 0.03339105844497681, -0.010340293869376183, -0.017144937068223953, -0.06704849004745483, -0.06591320782899857, 0.000628474575933069, -0.0438375249505043, -0.050240471959114075, -0.04641889035701752, 0.01250606868416071, -0.02987002581357956, 0.01608429104089737, 0.02416626177728176, 0.051008764654397964, -0.023128267377614975, 0.02623390592634678, 0.025598054751753807, -0.038557637482881546, -0.139805406332016, 0.09103761613368988, 0.019687773659825325, 0.06884615868330002, -0.07124641537666321, -0.007712537422776222, -0.038277845829725266, 0.06945469230413437, -0.011221514083445072, -0.04334082454442978, -0.03369991108775139, 0.0296817347407341, 0.017573388293385506, 0.02319161780178547, 0.0034080648329108953, 0.0111957723274827, 0.03639062121510506, -0.026202434673905373, -0.01116033922880888, -0.010316763073205948, -0.01602807268500328, -0.009341577999293804, -0.02041197568178177, 0.0214226096868515, 0.006672370713204145, 0.037834282964468, 0.033794041723012924, 0.03342311829328537, 0.06749053299427032, -0.013886825181543827, 0.01156883779913187, -0.011551765725016594, -0.05550476163625717, -0.04469139501452446, 0.02105623483657837, 0.024607855826616287, -0.038263898342847824, 0.4383021891117096, -0.014052772894501686, -0.02541365474462509, 0.0806221142411232, 0.0227687768638134, -0.02025264874100685, 0.017114881426095963, 0.0012611881829798222, -0.03221643343567848, 0.04122403264045715, -0.009144523181021214, 0.0189796332269907, 0.025192849338054657, 0.021645912900567055, -0.05416614189743996, -0.020122501999139786, 0.03396940603852272, -0.027402175590395927, 0.012715709395706654, 0.006615781225264072, 0.0047651175409555435, -0.0040088072419166565, 0.012354081496596336, -0.003367271739989519, 0.0031916070729494095, -0.047346942126750946, -0.035321492701768875, 0.02561858296394348, 0.04997054114937782, 0.02439984679222107, -0.00037854124093428254, 0.05658772960305214, -0.04988034442067146, -0.07823269069194794, -0.01379090454429388, -0.003264328930526972, 0.014704981818795204, 0.007765315473079681, -0.004913187585771084, -0.029244106262922287, 0.06708237528800964, -0.0006625964306294918, -0.009383397176861763, 0.02764769084751606, -0.025672439485788345, -0.02968277782201767, 0.12405940145254135, 0.034890610724687576, -0.013830723240971565, -0.032934997230768204, -0.004020765423774719, -0.03981821611523628, 0.030801551416516304, 0.0029164303559809923, -0.03456985950469971, 0.041039396077394485, 0.004589947406202555, 0.1074255108833313, 0.006379054859280586, -0.05737071484327316, -0.012606232427060604, -0.026067381724715233, -0.02354602888226509, -0.027469800785183907, 0.02526642195880413, 0.09640253335237503, -0.10998167097568512, -0.003255596850067377, 0.010397369042038918, 0.016361067071557045, -0.052531611174345016, -0.011985179036855698, 0.010588862001895905, -0.014832010492682457, -0.00782114826142788, 0.07280164957046509, -0.0482952818274498, -0.04693024978041649, 0.01971656084060669, 0.029399432241916656, -0.006609656382352114, 0.047514189034700394, 0.013173233717679977, 0.00563044473528862, -0.006260298658162355, -0.0268181674182415, -0.06229352578520775, -0.023312784731388092, -0.01305469125509262, -0.037543173879384995, -0.03656318038702011, -0.04078572243452072, 0.013679822906851768, -0.0645090863108635, 0.08514627814292908, -0.013441815041005611, 0.0015629212139174342, 0.05080004781484604, -0.040262456983327866, -0.03547560051083565, -0.030890677124261856, -0.07891982793807983, 0.04319589212536812, -0.0793355330824852, 0.030990883708000183, -0.07414773851633072, 0.035482484847307205, 0.07010681182146072, -0.022614505141973495, 0.1101112812757492, 0.042182352393865585, -0.04571790620684624, -0.019608691334724426, 0.04124045744538307, 0.032976604998111725, 0.020680921152234077, -0.014060920104384422, 0.013489768840372562, 0.03720507025718689, 0.026292553171515465, 0.0053610424511134624, 0.0057218740694224834, 0.04843587428331375, -0.004505343735218048, -0.3481561839580536, -0.025438033044338226, -0.04062443599104881, 0.017127227038145065, -0.033055465668439865, -0.006513106171041727, 0.01645764335989952, -0.011973005719482899, -0.012775291688740253, 0.006716858129948378, 0.07417607307434082, -0.02261367067694664, 0.03118070773780346, -0.0798029899597168, 0.022649016231298447, 0.014962099492549896, -0.026880325749516487, -0.01763964630663395, -0.017533011734485626, -0.028173422440886497, 0.05051702633500099, 0.012136606499552727, -0.02035115286707878, -0.03661138564348221, 0.017058247700333595, -0.034739524126052856, 0.09187040477991104, 0.0008671786054037511, 0.06926826387643814, -0.02688542753458023, 0.0416342057287693, -0.010343012399971485, 0.06486953794956207, -0.10557001829147339, 0.023962445557117462, -0.030972089618444443, 0.018191132694482803, -0.07201728969812393, 0.0023579392582178116, -0.03474216163158417, -0.01831454038619995, 0.03202255070209503, -0.09061268717050552, -0.01380800548940897, -0.07684136182069778, 0.0005611578235402703, -0.03239098936319351, -0.002014482393860817, -0.020653050392866135, 0.07957979291677475, -0.013466526754200459, -0.01908520981669426, 0.022004736587405205, -0.005391253624111414, -0.010185583494603634, -0.04722209274768829, -0.09948389232158661, 0.03852225840091705, 0.009897785261273384, 0.020388711243867874, -0.0017503408016636968, 0.05052785202860832, 0.010022043250501156, -0.03369292616844177, -0.006911077536642551, 0.000005806377885164693, -0.010540167801082134, 0.013377890922129154, 0.01615743525326252, -0.06617574393749237, -0.019429467618465424, 0.047755636274814606, 0.025290323421359062, -0.023894691839814186, 0.006578823085874319, 0.0008215784910134971, -0.016298970207571983, 0.02021024562418461, 0.04607488960027695, -0.025298578664660454, 0.021233832463622093, -0.0675366222858429, 0.038661956787109375, -0.010027529671788216, 0.01484555471688509, 0.03173701465129852, 0.00615073973312974, -0.03904522582888603, 0.05052989348769188, 0.052186269313097, -0.04897509142756462, 0.014789995737373829, -0.04935985803604126, -0.034452807158231735, 0.06111101806163788, 0.0008351966389454901, -0.23421281576156616, 0.030690211802721024, 0.05651882663369179, 0.021614300087094307, 0.01626947708427906, 0.012266342528164387, -0.00538218580186367, -0.06124068796634674, -0.00449111545458436, 0.03510906547307968, 0.05017358064651489, -0.023194607347249985, 0.0019354969263076782, -0.017534105107188225, 0.04297136515378952, 0.020396718755364418, 0.07296011596918106, -0.0120353689417243, 0.01055368036031723, 0.01599268428981304, 0.022980432957410812, 0.002381168073043227, 0.16760006546974182, 0.004704466555267572, 0.05083649978041649, 0.004439889919012785, -0.025418611243367195, -0.0013185952557250857, 0.041064128279685974, 0.004628309980034828, 0.06486858427524567, -0.027165133506059647, 0.05685367435216904, -0.01181624736636877, 0.0034876624122262, -0.04247267544269562, -0.0028327852487564087, 0.04196267947554588, 0.006661904510110617, 0.03204992040991783, 0.036191847175359726, -0.02002677693963051, -0.029432587325572968, 0.02600828744471073, 0.09874171763658524, -0.009129534475505352, 0.011510188691318035, -0.04823819175362587, -0.04931654781103134, -0.018878979608416557, -0.04686865955591202, -0.028040707111358643, 0.009343146346509457, -0.023218080401420593, 0.014988764189183712, 0.042016949504613876, 0.050607018172740936, -0.034837182611227036, -0.00494517432525754, -0.01590997539460659, -0.016223711892962456, 0.022093862295150757, 0.07304557412862778, 0.056219954043626785, 0.05896066874265671 ]
[ -0.00589693384245038, -0.004282635170966387, 0.01599646545946598, 0.023977702483534813, 0.0028877139557152987, 0.013370956294238567, 0.02036876045167446, 0.00261438125744462, 0.011623116210103035, -0.011828935705125332, -0.014192840084433556, 0.005608802195638418, 0.024623975157737732, 0.02465381845831871, 0.029477301985025406, -0.0018500732257962227, 0.021070796996355057, -0.019157666712999344, 0.017557047307491302, -0.013622487895190716, 0.002957503544166684, -0.008772995322942734, -0.02302067168056965, -0.023603655397892, -0.0024871022906154394, -0.00912074651569128, 0.01950240135192871, 0.0035982669796794653, 0.02599993720650673, -0.1420924812555313, -0.03930816799402237, -0.004132583737373352, -0.021020181477069855, 0.021769430488348007, -0.002537277527153492, -0.026777423918247223, 0.00436450494453311, 0.00607768539339304, 0.0061081526800990105, 0.03898138925433159, 0.00892650056630373, 0.01105799525976181, -0.006672313436865807, -0.0019782125018537045, 0.03236941993236542, 0.0193052776157856, -0.010522055439651012, -0.06745807081460953, 0.011254380457103252, -0.014457441866397858, -0.057326942682266235, -0.024073349311947823, -0.019181136041879654, 0.022789502516388893, 0.01774115487933159, -0.014130974188446999, 0.025764498859643936, 0.01154854241758585, -0.011631504632532597, -0.008068024180829525, 0.008536799810826778, -0.01590685546398163, -0.03280213475227356, -0.03591231629252434, 0.013030528090894222, 0.007662975694984198, -0.051098309457302094, -0.015463760122656822, -0.05294415354728699, 0.0018952608807012439, -0.00880736019462347, -0.008249144069850445, -0.012933450751006603, -0.036863572895526886, 0.02949397824704647, -0.01722593605518341, -0.007276269141584635, 0.01856469362974167, 0.021084504202008247, -0.008096537552773952, -0.011922241188585758, 0.02129903994500637, -0.014649465680122375, 0.014463725499808788, -0.018812566995620728, -0.012978636659681797, 0.0072276899591088295, -0.0409511923789978, 0.009926814585924149, 0.04163995385169983, -0.005756982136517763, 0.010552570223808289, 0.022662434726953506, 0.012643815018236637, -0.08143040537834167, 0.01755126193165779, -0.03163404017686844, -0.016739269718527794, 0.011802935041487217, 0.849187970161438, -0.0639306828379631, 0.012006588280200958, 0.03045443631708622, 0.021068943664431572, -0.026236051693558693, 0.009743619710206985, 0.0018633982399478555, -0.013268322683870792, 0.021502893418073654, -0.0498737096786499, 0.02401980198919773, 0.034793902188539505, 0.011185532435774803, 0.012515830807387829, -0.008759140968322754, 0.00630419235676527, -0.007855609990656376, 0.0011416074121370912, -0.016793835908174515, 0.032527197152376175, 0.018415216356515884, 0.02090587094426155, 0.00550433062016964, 0.01530007366091013, 0.0032447315752506256, -0.1704207807779312, -0.011365720070898533, -8.482620701503023e-33, 0.019355466589331627, 0.024467093870043755, 0.005340936128050089, 0.014740756712853909, 0.0015689220745116472, -0.023355310782790184, 0.007418706547468901, 0.012357763946056366, 0.0075684478506445885, -0.016137929633259773, -0.002126959851011634, 0.004370061680674553, 0.012294399552047253, -0.047987259924411774, 0.007982651703059673, -0.04119691252708435, -0.018469160422682762, 0.04691816121339798, 0.027709202840924263, 0.039575960487127304, 0.065131276845932, 0.022422969341278076, -0.018655521795153618, -0.02746986225247383, 0.025856364518404007, 0.014891911298036575, 0.0050776442512869835, 0.02441779524087906, 0.01926959678530693, -0.03983742371201515, 0.011303319595754147, 0.0280801709741354, -0.04600316658616066, -0.011962189339101315, -0.004538392182439566, -0.049571942538022995, -0.04789113625884056, -0.0066381413489580154, -0.007625773083418608, -0.022227566689252853, -0.06379187107086182, 0.01318681612610817, -0.01620200276374817, 0.016759144142270088, -0.024740740656852722, -0.004478983581066132, 0.02208949811756611, 0.011358099989593029, 0.0243514571338892, -0.019981740042567253, -0.005296066869050264, -0.02288140170276165, 0.020549913868308067, 0.013185834512114525, 0.006201480515301228, -0.0009586850646883249, 0.008045392110943794, -0.009993597865104675, 0.017912916839122772, 0.004007040522992611, 0.004291377030313015, -0.012147946283221245, -0.0308816060423851, 0.01390936691313982, 0.005355983041226864, -0.024662375450134277, 0.03830330818891525, 0.024444466456770897, 0.051497895270586014, -0.03238345682621002, -0.045335445553064346, -0.03654281795024872, 0.007081374991685152, -0.011639127507805824, 0.0076284403912723064, -0.023307999595999718, -0.011638188734650612, 0.05586383119225502, -0.03782268986105919, 0.03393172100186348, -0.00033760874066501856, -0.00004290091237635352, 0.012496472336351871, -0.019690951332449913, 0.01094895601272583, 0.007818255573511124, 0.02015184797346592, -0.003432473400607705, -0.0012772256741300225, 0.02998313307762146, 0.03016025759279728, 0.0020847232080996037, -0.015919798985123634, 0.0329652763903141, -0.03242482617497444, 8.762912186668812e-33, 0.001163853332400322, -0.0038638755213469267, -0.033446624875068665, -0.000911475857719779, 0.020909175276756287, -0.021034587174654007, 0.03529918193817139, 0.0009860865538939834, -0.058107465505599976, 0.030649082735180855, 0.0206553153693676, -0.0056177424266934395, -0.03590922802686691, 0.02413438819348812, 0.03831763193011284, 0.0042871395125985146, 0.020488673821091652, -0.042616646736860275, -0.007256179582327604, 0.01870228908956051, 0.012360040098428726, -0.004874509293586016, -0.010911218822002411, 0.0009283547406084836, 0.011440745554864407, 0.07501588761806488, 0.0014317419845610857, 0.007695156615227461, -0.01122217532247305, 0.018948350101709366, -0.006367991212755442, -0.016122713685035706, -0.0031319335103034973, -0.010652040131390095, -0.0337117537856102, 0.009479725733399391, -0.0004064030363224447, -0.01714343950152397, -0.005017024930566549, 0.0174460019916296, 0.031816039234399796, -0.023719875141978264, 0.03238934278488159, 0.025175102055072784, 0.0222920048981905, 0.010885048657655716, 0.015906961634755135, -0.009274400770664215, -0.011805328540503979, 0.024566594511270523, 0.002733497181907296, 0.015394107438623905, -0.0015908348141238093, 0.014211703091859818, 0.013325297273695469, -0.018448492512106895, 0.02596699632704258, -0.02692716009914875, 0.018351994454860687, 0.00255344295874238, 0.042711809277534485, -0.005947015713900328, 0.02595837414264679, 0.009423745796084404, -0.03478989377617836, 0.008539145812392235, 0.015278289094567299, -0.003151700831949711, -0.03310149535536766, -0.002619135193526745, -0.02278340794146061, -0.0011192478705197573, 0.018923239782452583, 0.037211790680885315, -0.015515218488872051, -0.023228660225868225, -0.013930262997746468, 0.01118873618543148, -0.03955155238509178, 0.029696611687541008, -0.03253424912691116, 0.010428314097225666, -0.014901532791554928, 0.01945105567574501, -0.011357600800693035, 0.011103912256658077, -0.01951301284134388, 0.005190461408346891, 0.025114266201853752, -0.0201259758323431, -0.024514317512512207, -0.024635648354887962, -0.00812456849962473, 0.02121458575129509, -0.003353096777573228, -1.3992553782316008e-8, -0.03716224804520607, 0.024842845275998116, -0.029394056648015976, -0.013725382275879383, -0.004290043842047453, -0.04315030202269554, -0.03975877910852432, 0.0012513576075434685, -0.014151028357446194, 0.025508685037493706, 0.038842134177684784, -0.0376153439283371, -0.029775552451610565, 0.014627067372202873, 0.06144055724143982, -0.037191446870565414, -0.00764104537665844, -0.01493796892464161, 0.044931810349226, -0.03397900611162186, 0.04742831736803055, 0.04839134216308594, -0.006601403933018446, 0.010774042457342148, 0.04795772582292557, -0.0033910709898918867, -0.056714486330747604, -0.09840023517608643, 0.01916302926838398, 0.01475770864635706, 0.011367752216756344, -0.027390478178858757, -0.005716742482036352, 0.00967258308082819, -0.004891179967671633, -0.02860553190112114, 0.013671468943357468, -0.0005489437025971711, 0.02429680898785591, 0.003923069220036268, -0.0010972698219120502, 0.008926237002015114, -0.004944752436131239, -0.010937769897282124, -0.006351622752845287, 0.037498630583286285, 0.0003354379441589117, -0.003881121054291725, 0.024007804691791534, -0.02993142232298851, -0.0032544343266636133, -0.03214417025446892, 0.019607950001955032, 0.03661058098077774, -0.011429792270064354, 0.018843630328774452, -0.005034947767853737, -0.045957356691360474, -0.039894528687000275, 0.005277317017316818, 0.010333938524127007, 0.029648656025528908, -0.026815546676516533, -0.01805013045668602 ]
agile-should-everyone-have-to-learn-all-the-roles
https://markhneedham.com/blog/2008/11/17/agile-should-everyone-have-to-learn-all-the-roles
false
2008-11-10 22:44:15
Agile: Putting the risk up front
[ "agile" ]
[ "Agile" ]
The last two projects that I've worked on I've been on the project from right near the start, and one thing that's been consistent in both projects is that we've spent time early on in the project trying to reduce technical risk. In my most recent project this has involved getting infrastructure in place early on, and in the previous one it involved working on technical spikes for several weeks to prove that what the client was asking for was actually technically possible. While reading http://www.markhneedham.com/blog/2008/11/05/crystal-clear-book-review/[Crystal Clear] I noticed that this approach is the same as that advocated by Alistair Cockburn with regards to putting the highest learning tasks up front before business stories, and the idea of the http://alistair.cockburn.us/Walking+skeleton[walking skeleton]. Some people consider this opposed to the agile approach in that we are creating something before we absolutely need to use it. I think this is a difference in the understanding between doing something at the last responsible moment and the last possible moment. The former is the way that I understand we should do things - get the pain out the way early on and not later on death march style I wonder whether it should be the same on a per story basis or if there is no gain from taking this approach - i.e. usually the backend side of stories is what takes up the time so should we do this first and then drive out the rest or is it better to drive from the front? One thing I have learnt from conversation about this idea is that we still need to show some progress to the business and therefore need to balance the need to reduce project risk with completing business stories. Clearly there is a trade off to be made here but I think the 'risk up front' approach is preferable to leaving the integration until later on when it is both more difficult to do and doesn't leave much room for error either.
null
null
[ 0.020021852105855942, 0.006638410501182079, -0.0153989028185606, 0.03617069125175476, 0.10073766857385635, 0.0010142747778445482, 0.012183106504380703, 0.04659172520041466, 0.02325432002544403, -0.027181606739759445, -0.015971733257174492, 0.011012024246156216, -0.03760455176234245, 0.014631153084337711, -0.04129055514931679, 0.07502388954162598, 0.06364396214485168, -0.00836514588445425, 0.020367076620459557, 0.004587392322719097, 0.02467058226466179, 0.06486240029335022, 0.030673811212182045, 0.03164634853601456, 0.03601665049791336, -0.0037746995221823454, 0.014031743630766869, -0.006914215162396431, -0.050825826823711395, -0.03156348317861557, 0.038600046187639236, -0.02831905521452427, -0.005566553678363562, -0.010528523474931717, 0.0383574478328228, -0.0030331253074109554, -0.010555187240242958, 0.029076825827360153, -0.014456151984632015, -0.011631237342953682, -0.0921323299407959, 0.04771992191672325, -0.035161342471838, -0.007811138406395912, -0.026603804901242256, 0.0099736787378788, -0.00456323241814971, 0.0007427465752698481, 0.012100025080144405, -0.016528530046343803, -0.06471407413482666, 0.03067886084318161, -0.010199535638093948, -0.006840307731181383, 0.005213123746216297, 0.03307033330202103, 0.010773607529699802, -0.06874454766511917, 0.01107051968574524, -0.0319121815264225, 0.0036827230360358953, -0.012066451832652092, -0.009166941978037357, 0.038400810211896896, 0.03970728814601898, -0.03003254160284996, 0.008307181298732758, 0.03634608909487724, -0.027324723079800606, 0.01621323451399803, -0.01737682707607746, 0.010113034397363663, -0.004292307887226343, -0.0008038365049287677, -0.0010226973099634051, -0.04314747080206871, 0.01628481224179268, 0.042630914598703384, 0.010480468161404133, 0.053673792630434036, -0.008441183716058731, 0.0020092923659831285, -0.005832255817949772, 0.03703634813427925, -0.007364742457866669, -0.03605961054563522, 0.010821140371263027, -0.021464355289936066, -0.061579082161188126, 0.05499841645359993, 0.012027868069708347, -0.06546849757432938, 0.01717405766248703, 0.03650601953268051, 0.01618470996618271, 0.007097234949469566, 0.026653917506337166, 0.0281544029712677, 0.0014020501403138041, -0.015485362149775028, -0.022901516407728195, -0.01732202246785164, -0.03326984494924545, 0.018935885280370712, -0.08261440694332123, -0.0068645295687019825, -0.021825533360242844, -0.005856899078935385, -0.018203254789114, -0.00015042669838294387, -0.03887137398123741, 0.0158220287412405, -0.03381072357296944, -0.005877453833818436, -0.06727191805839539, 0.07932346314191818, 0.004999324679374695, -0.04166164621710777, -0.021072225645184517, -0.02610909566283226, 0.028452398255467415, 0.01591041311621666, -0.019465371966362, 0.05912145972251892, -0.006600965745747089, 0.022162016481161118, -0.05634627863764763, 0.04554763063788414, -0.009131178259849548, -0.051987532526254654, -0.015182414092123508, 0.07045634835958481, -0.04296480491757393, -0.0191204771399498, -0.0032328139059245586, -0.03324655070900917, 0.005330327432602644, 0.028759164735674858, 0.006384535226970911, 0.04167461395263672, 0.0007915453752502799, -0.03084532357752323, 0.010256515815854073, 0.03277534246444702, 0.03538808599114418, -0.006148316897451878, 0.0010578589281067252, -0.02707158960402012, -0.04992445930838585, 0.006245516240596771, 0.003952110651880503, 0.012283988296985626, 0.017928441986441612, -0.04213191568851471, 0.014355182647705078, 0.10970545560121536, 0.06920093297958374, -0.008453668095171452, -0.013796115294098854, 0.021904852241277695, 0.03722858428955078, 0.03228653594851494, 0.020909983664751053, 0.03019033558666706, 0.014711159281432629, -0.0056880442425608635, 0.0008381786174140871, 0.016283253207802773, 0.006211115512996912, 0.00037889767554588616, -0.07726911455392838, -0.023525215685367584, 0.05937269702553749, -0.07206271588802338, -0.020520968362689018, 0.05728526785969734, 0.08024489879608154, 0.0449293814599514, 0.026129720732569695, -0.004434844013303518, -0.07318858057260513, 0.03963526338338852, 0.01847597397863865, 0.030312804505228996, 0.04582948610186577, -0.02335413545370102, 0.0444159135222435, 0.021245284005999565, 0.003654255298897624, 0.04914889484643936, -0.08397489786148071, -0.09636936336755753, -0.0053354287520051, -0.020438600331544876, 0.026989301666617393, -0.04471483454108238, 0.019809585064649582, 0.07481450587511063, -0.0040977224707603455, 0.057139892131090164, 0.031319718807935715, 0.007073237095028162, 0.00045087828766554594, -0.052993036806583405, -0.04151646047830582, 0.06476391851902008, 0.04498884826898575, 0.005048248451203108, -0.028831081464886665, 0.021740691736340523, 0.00002972966649394948, 0.00016943940136115998, 0.03188403695821762, -0.004180710297077894, 0.05270196869969368, -0.0067986370995640755, 0.06418295949697495, -0.036363016813993454, 0.053900666534900665, -0.04972157999873161, 0.02185502089560032, 0.006825919263064861, -0.020338281989097595, 0.005953546147793531, -0.002933418843895197, 0.09611493349075317, 0.05451827123761177, -0.061265379190444946, -0.06212214007973671, 0.018354125320911407, 0.015707653015851974, -0.02670219913125038, -0.011803255416452885, 0.012337317690253258, 0.024900641292333603, -0.002617117715999484, -0.06441039592027664, -0.041762374341487885, 0.011578621342778206, -0.04312904551625252, 0.02181789092719555, 0.06040390580892563, -0.031656984239816666, 0.07843663543462753, 0.004696050193160772, -0.013183454051613808, -0.007084754761308432, -0.002214618492871523, -0.0820440724492073, 0.013344147242605686, 0.012570983730256557, -0.017297539860010147, 0.05556419491767883, -0.007408914156258106, -0.05784623324871063, -0.04002997651696205, -0.04181339591741562, 0.017077742144465446, 0.04209313169121742, 0.062227487564086914, -0.008936068043112755, 0.06327210366725922, -0.00894934218376875, 0.04335421323776245, -0.00770336389541626, -0.02324889786541462, -0.05227545276284218, -0.053684476763010025, 0.014079669490456581, 0.029439616948366165, 0.020435936748981476, -0.0009809941984713078, 0.012977627106010914, 0.020835580304265022, -0.020637791603803635, -0.00747086713090539, 0.039802100509405136, 0.002585200360044837, -0.0007153814658522606, -0.026596104726195335, -0.01539184246212244, 0.0639648512005806, -0.03942670673131943, -0.0110846608877182, 0.022528717294335365, -0.07440437376499176, 0.03860725834965706, -0.05957312509417534, -0.047598935663700104, 0.018725866451859474, 0.01522099133580923, 0.044729627668857574, 0.028510883450508118, 0.030859334394335747, 0.06645910441875458, 0.035562582314014435, 0.007454474922269583, -0.00691140815615654, -0.010593830607831478, 0.033902376890182495, 0.005960334558039904, -0.023231200873851776, 0.062154192477464676, -0.017471877858042717, -0.001696710824035108, -0.06733020395040512, 0.04883058741688728, -0.04859454929828644, -0.2931579649448395, 0.015941543504595757, 0.022520069032907486, -0.03457319736480713, 0.020911522209644318, -0.010585121810436249, -0.00498754158616066, -0.0403982549905777, -0.04609478637576103, 0.010023655369877815, -0.028755391016602516, -0.042275965213775635, -0.00047417913447134197, 0.026362089440226555, 0.016665007919073105, 0.040435485541820526, 0.03723832592368126, -0.03324398025870323, 0.010587522760033607, 0.051449719816446304, -0.012763711623847485, -0.06524938344955444, -0.0088218804448843, 0.03385285288095474, 0.056115202605724335, 0.0614786334335804, -0.08372316509485245, 0.05872098729014397, -0.05362372845411301, -0.0006500656600110233, 0.04451345279812813, -0.019104598090052605, -0.003162149339914322, -0.04142806679010391, -0.009935643523931503, -0.01821625605225563, 0.03759898245334625, 0.023906469345092773, 0.0010606120340526104, -0.00869535282254219, -0.018697652965784073, -0.03545654937624931, 0.0013159043155610561, 0.023038968443870544, 0.062136173248291016, -0.027991024777293205, -0.07070644944906235, 0.007795447483658791, -0.01738143153488636, 0.07930569350719452, -0.03128472715616226, -0.017625410109758377, -0.028093965724110603, 0.028159834444522858, -0.013210175558924675, -0.01468602754175663, -0.006308282259851694, -0.026176167652010918, -0.03415251150727272, -0.0001154009805759415, -0.02283184975385666, -0.02916967123746872, -0.009662283584475517, -0.05331128463149071, -0.0018044548342004418, -0.05623259395360947, -0.05110814422369003, -0.019673479720950127, 0.0619063638150692, -0.0010037539759650826, -0.02867305278778076, 0.00986458919942379, 0.012293741106987, -0.1045648604631424, 0.002044991124421358, -0.021983809769153595, -0.032232124358415604, 0.012336613610386848, 0.00724882772192359, 0.027219239622354507, -0.019506875425577164, -0.05518130585551262, 0.03212091326713562, 0.010116707533597946, 0.01799275353550911, 0.0001258696720469743, 0.046373121440410614, 0.03240882232785225, -0.02308686077594757, 0.015714604407548904, 0.050645627081394196, 0.01184214185923338, -0.029437383636832237, -0.03263357654213905, 0.000015724730474175885, -0.0045323860831558704, -0.00439733499661088, -0.034168850630521774, 0.02207721769809723, 0.0024009549524635077, -0.006907735951244831, -0.050533998757600784, 0.009030992165207863, -0.017005998641252518, -0.009418057277798653, -0.03520357981324196, -0.03425591439008713, 0.03279196843504906, 0.04064778983592987, 0.01832754723727703, 0.010698385536670685, -0.002874624915421009, 0.019232550635933876, -0.035040419548749924, -0.04738663509488106, -0.018264034762978554, 0.0038195797242224216, 0.02501492388546467, -0.005635445471853018, -0.005361578892916441, -0.062239352613687515, 0.0015643052756786346, -0.008113116957247257, -0.016259169206023216, -0.050677914172410965, -0.016626760363578796, -0.014077652245759964, -0.019595613703131676, 0.010399891063570976, 0.022719455882906914, -0.031341638416051865, 0.02277229167521, 0.025352923199534416, -0.02725786529481411, -0.0009795133955776691, -0.04724487289786339, -0.07373826950788498, -0.02486957423388958, -0.008591136895120144, 0.007745661307126284, -0.013455149717628956, 0.05120423808693886, -0.0007415743893943727, 0.008064541034400463, 0.03750242292881012, 0.013138734735548496, -0.00357257598079741, -0.000939573219511658, 0.026572294533252716, 0.011404593475162983, 0.014056512154638767, -0.055209264159202576, 0.017455467954277992, -0.03980167582631111, -0.015600290149450302, -0.01098199188709259, 0.005973634775727987, -0.03333871066570282, -0.025666028261184692, -0.01501187589019537, 0.01142746303230524, -0.057216960936784744, -0.029972411692142487, -0.016174135729670525, 0.016942715272307396, 0.05245184898376465, -0.025835569947957993, 0.006348667200654745, -0.018709983676671982, -0.00621669040992856, 0.012522879056632519, -0.004050568677484989, -0.0555582232773304, -0.019986353814601898, 0.010459107346832752, 0.024187417700886726, -0.0071292356587946415, -0.010571405291557312, 0.058698806911706924, -0.0026112906634807587, -0.01600456051528454, -0.013227139599621296, -0.0017016124911606312, -0.0001728463394101709, 0.04460902139544487, 0.021826812997460365, 0.0014312618877738714, -0.016522999852895737, -0.022582601755857468, -0.024037592113018036, -0.053930871188640594, -0.007271233014762402, 0.01637251488864422, 0.01814785972237587, -0.006751535460352898, -0.07003973424434662, 0.06783906370401382, 0.015061122365295887, 0.019868602976202965, 0.003415405750274658, -0.0068607088178396225, -0.008049854077398777, -0.020364267751574516, 0.040673304349184036, 0.058006562292575836, -0.06818922609090805, -0.0026343385688960552, 0.007746397517621517, 0.00791565515100956, 0.010499400086700916, -0.0031246694270521402, -0.03558295592665672, -0.03229773789644241, -0.016980886459350586, 0.0039345198310911655, -0.07443568855524063, -0.02118743397295475, -0.033694855868816376, 0.025511011481285095, 0.011407751590013504, 0.0020088637247681618, -0.03949132189154625, -0.020527813583612442, -0.01034888718277216, -0.026927826926112175, 0.020607827231287956, -0.035501983016729355, 0.0028796610422432423, 0.025980709120631218, -0.023435495793819427, -0.024396054446697235, -0.042608171701431274, 0.023370390757918358, 0.0043588862754404545, -0.030505863949656487, 0.0017843267414718866, -0.033895913511514664, -0.017659274861216545, 0.007200131192803383, 0.04841680824756622, 0.0002919076941907406, -0.0008853005128912628, -0.019028108566999435, -0.010005427524447441, -0.03133580461144447, 0.00819457694888115, -0.024435335770249367, -0.001917265704832971, 0.019100019708275795, 0.07839823514223099, 0.02778141014277935, 0.03471563756465912, 0.008715726435184479, -0.019416699185967445, 0.03804820403456688, -0.06348671764135361, -0.02686747908592224, -0.04945993423461914, -0.06277808547019958, 0.006746039725840092, 0.022322002798318863, 0.014263004064559937, -0.05831929296255112, 0.023006899282336235, 0.020275158807635307, 0.06357484310865402, 0.04586581140756607, 0.003639679867774248, 0.025657815858721733, -0.050326328724622726, 0.0007200879044830799, -0.07762662321329117, 0.0013459576293826103, 0.01303787436336279, -0.0013278124388307333, 0.008386571891605854, 0.006956626661121845, -0.0226594265550375, 0.030424416065216064, -0.08848623186349869, -0.027738088741898537, 0.04235977679491043, 0.005475073587149382, -0.017763381823897362, 0.017119359225034714, -0.06658296287059784, 0.03709756210446358, 0.02844964899122715, -0.04517795518040657, -0.012799223884940147, -0.029375605285167694, 0.05609988793730736, 0.004020874388515949, 0.029152177274227142, -0.049374163150787354, 0.0014438825892284513, 0.07967683672904968, 0.016124576330184937, -0.011243422515690327, 0.05474221706390381, 0.005291002802550793, 0.041315630078315735, 0.032214391976594925, 0.004184659104794264, -0.02039683796465397, 0.010273353196680546, -0.008889416232705116, -0.059074338525533676, 0.0786639153957367, -0.004859876353293657, -0.003253697417676449, -0.027983641251921654, 0.06465409696102142, 0.030827591195702553, -0.031708188354969025, -0.0774783045053482, 0.006458558142185211, -0.050728246569633484, -0.008306323550641537, -0.00043883235775865614, -0.024274103343486786, -0.03320502117276192, 0.039212051779031754, -0.01501444261521101, 0.02430226095020771, 0.0732126459479332, -0.0002207868965342641, -0.004259077832102776, -0.01144323404878378, 0.0739164724946022, 0.06013321131467819, 0.08295811712741852, -0.0020371126011013985, 0.06780830025672913, -0.01252331305295229, -0.036293141543865204, 0.027080530300736427, -0.03153485804796219, -0.009211505763232708, -0.04335831478238106, 0.041738227009773254, 0.029313834384083748, -0.007476570084691048, 0.04522469639778137, -0.004755438771098852, -0.0221351757645607, 0.003285104874521494, 0.04781780019402504, 0.007791060488671064, 0.061886586248874664, 0.017859958112239838, 0.007281395141035318, -0.019513683393597603, -0.051848892122507095, 0.027180572971701622, -0.019627833738923073, -0.03448382019996643, 0.05078786984086037, -0.0013350744266062975, 0.010777642019093037, 0.028540685772895813, 0.0036791348829865456, 0.09327036887407303, -0.040143366903066635, 0.005525943357497454, -0.024157267063856125, 0.03651714697480202, -0.017001286149024963, 0.012142064049839973, 0.014350677840411663, -0.013929381035268307, 0.01576831191778183, -0.02864742837846279, -0.033081281930208206, -0.010936181992292404, -0.028396686539053917, 0.029357803985476494, -0.027122527360916138, 0.023847637698054314, 0.030247213318943977, -0.019827963784337044, -0.03118559718132019, -0.06717048585414886, -0.03573654592037201, -0.032239802181720734, -0.04919516667723656, -0.003859163261950016, 0.03218451514840126, -0.03315676748752594, -0.02226397953927517, -0.005945610348135233, 0.001025464152917266, -0.037081535905599594, 0.031680233776569366, -0.04384133219718933, -0.046526700258255005, 0.00680856266990304, 0.0165055263787508, 0.012431553564965725, 0.009997203014791012, 0.05754639208316803, 0.012262706644833088, -0.012801030650734901, -0.0012237271293997765, 0.02971704863011837, 0.02703794091939926, -0.0015150598483160138, 0.023676037788391113, -0.07228340953588486, 0.030870672315359116, 0.02180725336074829, -0.018269222229719162, -0.06770883500576019, 0.02436189353466034, 0.02256098762154579, -0.02980520948767662, 0.05159218981862068, -0.017297647893428802, 0.0027926249895244837, -0.046248357743024826, -0.009406430646777153, -0.009789030067622662, 0.03210081905126572, 0.046653393656015396, -0.031925056129693985, 0.061725545674562454, 0.040272705256938934, 0.009789313189685345, -0.0254514142870903, -0.00954491924494505, 0.006922118831425905, 0.0010191523469984531, -0.005486835725605488, -0.024725915864109993, -0.030427880585193634, -0.08355208486318588, -0.015436631627380848, 0.012030002661049366, -0.018374430015683174, -0.02970007434487343, 0.03267955407500267, 0.017329886555671692, -0.01862538792192936, 0.021463701501488686, -0.04715008661150932, 0.019835643470287323, -0.015877535566687584, -0.025623083114624023, -0.008118276484310627, 0.03355078771710396, 0.016819238662719727, -0.006647906266152859, 0.04033772274851799, -0.055730029940605164, 0.024825524538755417, 0.001701498869806528, 0.015335225500166416, 0.04032043367624283, 0.01113087497651577, -0.014585758559405804 ]
[ -0.07243802398443222, -0.023642323911190033, -0.024393197149038315, -0.031478527933359146, 0.030321605503559113, -0.032060179859399796, -0.03594818338751793, 0.0247433353215456, -0.0029284381307661533, -0.02870623953640461, 0.0166243277490139, -0.0010620057582855225, -0.023232920095324516, -0.014725066721439362, 0.07639622688293457, 0.02567393332719803, -0.005518929101526737, -0.07928833365440369, 0.02105381339788437, 0.041705112904310226, -0.01638956367969513, -0.033477649092674255, -0.025631947442889214, -0.005943401716649532, 0.02942788042128086, 0.008320765569806099, 0.023067424073815346, -0.03160055726766586, 0.00010820647003129125, -0.16913221776485443, 0.00984284095466137, 0.009142652153968811, 0.023912129923701286, -0.03712216392159462, 0.039498526602983475, 0.07495557516813278, -0.005852171219885349, 0.03941665589809418, -0.0007184564601629972, 0.03597591072320938, 0.03247692063450813, 0.03452807664871216, -0.03849785402417183, -0.03918766975402832, 0.01561768352985382, 0.011856684461236, 0.019905617460608482, -0.04054161161184311, -0.021759480237960815, 0.009472981095314026, -0.040404535830020905, -0.05283232778310776, -0.02352152392268181, -0.030765386298298836, -0.02723844163119793, 0.0404573455452919, 0.02428482100367546, 0.0651996061205864, 0.015304979868233204, 0.0374348983168602, 0.02607318013906479, -0.038344528526067734, -0.16151350736618042, 0.07746921479701996, 0.03817088529467583, 0.0727832019329071, -0.059312883764505386, 0.00170597480610013, -0.015002766624093056, 0.10981958359479904, 0.004865492694079876, -0.021281301975250244, -0.016689131036400795, 0.042382076382637024, 0.028429511934518814, 0.01201753132045269, 0.028462758287787437, 0.022047052159905434, 0.018702920526266098, -0.0513746477663517, -0.027027271687984467, 0.004694330506026745, -0.01695176027715206, 0.0032108307350426912, -0.05650075152516365, 0.020768560469150543, -0.016822200268507004, 0.04921124875545502, 0.03900923207402229, 0.050068631768226624, 0.06848884373903275, -0.02009345404803753, 0.015866896137595177, -0.0019104217644780874, -0.07347403466701508, -0.026088938117027283, 0.004522464703768492, 0.02503940463066101, -0.06211234629154205, 0.44668203592300415, -0.01436117198318243, -0.007434479426592588, 0.07783212512731552, 0.04080772399902344, -0.020652664825320244, -0.0028881882317364216, 0.012270722538232803, -0.034193359315395355, 0.028250308707356453, -0.018925251439213753, 0.025869227945804596, 0.018708307296037674, 0.05561939999461174, -0.06752989441156387, 0.003783600637689233, 0.05466937646269798, 0.0038670815993100405, 0.022577395662665367, -0.02895241789519787, -0.01148933731019497, -0.009220282547175884, 0.015478277578949928, 0.038947440683841705, 0.000048129953938769177, -0.07128481566905975, -0.02823569066822529, 0.043213795870542526, 0.04883698746562004, 0.029225876554846764, -0.006275869905948639, 0.05140089616179466, -0.062199197709560394, -0.0682595744729042, 0.005043278448283672, 0.0019353691022843122, 0.012589411810040474, 0.029589412733912468, -0.02293802984058857, 0.004620742984116077, 0.03822876885533333, 0.006089004687964916, 0.0023076811339706182, 0.0051397643983364105, -0.032600775361061096, -0.03393454849720001, 0.11010543256998062, 0.04359210655093193, -0.03932514041662216, -0.006189784966409206, -0.04517950117588043, -0.010303319431841373, 0.020584329962730408, 0.021846408024430275, -0.054354216903448105, 0.05973346158862114, -0.0013409496750682592, 0.09418784081935883, -0.006221657153218985, -0.05038030445575714, 0.0070733181200921535, -0.026788707822561264, -0.03094116970896721, -0.05343964323401451, 0.044821999967098236, 0.058769591152668, -0.1384362131357193, -0.012481707148253918, -0.010977162048220634, 0.030596792697906494, -0.05822671204805374, -0.009455861523747444, 0.012340936809778214, 0.01571544073522091, -0.026073824614286423, 0.07877083122730255, -0.021449433639645576, -0.05430983752012253, -0.007370383944362402, 0.04034559801220894, 0.021871304139494896, 0.024435171857476234, 0.01278386078774929, -0.006877207662910223, 0.008086543530225754, -0.038971081376075745, -0.0849231407046318, -0.021862704306840897, -0.005729468073695898, -0.023188559338450432, -0.011250934563577175, -0.02062990888953209, -0.03205939009785652, -0.05655677989125252, 0.10938230156898499, -0.03343959525227547, -0.03691224008798599, 0.022290462628006935, -0.009269856847822666, -0.04284161329269409, -0.0070661273784935474, -0.06468112021684647, 0.01913449913263321, -0.044689156115055084, 0.023244764655828476, -0.06461119651794434, 0.06332621723413467, 0.03493393585085869, -0.03478790819644928, 0.08316938579082489, 0.06216081231832504, -0.035914257168769836, -0.03778624162077904, 0.02748272195458412, 0.021552149206399918, 0.01380101591348648, 0.0022780143190175295, -0.009075059555470943, 0.03743891045451164, -0.013875159434974194, 0.025290751829743385, -0.021538853645324707, 0.017799928784370422, -0.005532579962164164, -0.35340291261672974, -0.047630008310079575, -0.022559667006134987, -0.0032884383108466864, 0.01352988462895155, -0.041462622582912445, 0.017682841047644615, -0.012858463451266289, -0.06550683081150055, -0.0199922826141119, 0.07785553485155106, -0.039670802652835846, 0.0040260199457407, -0.08813625574111938, -0.014104303903877735, 0.0023168115876615047, -0.05211152508854866, -0.023742469027638435, -0.020083535462617874, 0.006777145899832249, 0.012266699224710464, -0.024334030225872993, -0.038484301418066025, -0.065730020403862, -0.0032286772038787603, -0.039402298629283905, 0.10067254304885864, -0.004934137221425772, 0.06915950775146484, -0.04348849505186081, 0.031425803899765015, -0.0026308698579669, 0.01341259479522705, -0.10515100508928299, 0.0052781966514885426, -0.027007916942238808, 0.04476504772901535, -0.025626517832279205, 0.0043875654228031635, -0.035004645586013794, -0.047270555049180984, 0.02364977076649666, -0.05654767528176308, -0.02243676781654358, -0.07566875964403152, 0.009150219149887562, -0.026465175673365593, -0.022290287539362907, -0.006297866348177195, 0.07513055205345154, 0.008763551712036133, 0.007145568262785673, 0.01097118016332388, 0.012488100677728653, 0.005432128440588713, -0.0396573580801487, -0.08430766314268112, 0.025703230872750282, 0.002856530947610736, -0.012357495725154877, 0.011178042739629745, 0.07622142881155014, 0.05289480462670326, -0.012229754589498043, 0.014532896690070629, 0.008317403495311737, 0.002883389126509428, 0.008343609981238842, 0.02413633093237877, -0.027865109965205193, 0.0039029342588037252, 0.07954403758049011, -0.00490699615329504, -0.044808294624090195, 0.022591790184378624, 0.04003521054983139, -0.02384117804467678, 0.035129621624946594, 0.019275732338428497, -0.002656285185366869, -0.010715890675783157, -0.04913855716586113, 0.012243736535310745, -0.018382783979177475, -0.01449545193463564, 0.02256501093506813, -0.013649855740368366, -0.05062556266784668, 0.04516137018799782, 0.031420737504959106, -0.010890900157392025, -0.004743368364870548, -0.03679440915584564, -0.018770139664411545, 0.09215184301137924, -0.01688196137547493, -0.22159741818904877, 0.0231535192579031, 0.06783819198608398, 0.030556386336684227, -0.018826965242624283, 0.034888558089733124, 0.028759533539414406, -0.036640722304582596, 0.025421924889087677, 0.028301090002059937, 0.009460893459618092, 0.026879627257585526, 0.024896370247006416, 0.010458873584866524, 0.04087052866816521, -0.014796569012105465, 0.05484355613589287, -0.0009141156915575266, 0.025468893349170685, -0.021340390667319298, 0.0052605802193284035, -0.006958863697946072, 0.14248986542224884, 0.024774005636572838, 0.018511325120925903, 0.009532648138701916, -0.018104761838912964, 0.005128971301019192, 0.05534733831882477, -0.005230833310633898, 0.024622036144137383, -0.0012154296273365617, 0.02047630026936531, 0.01384035125374794, 0.025401396676898003, -0.08000506460666656, -0.021020803600549698, 0.057903070002794266, 0.017685474827885628, -0.002299667103216052, 0.038087956607341766, 0.003289835760369897, -0.0029337506275624037, 0.027299553155899048, 0.06519870460033417, -0.0029662426095455885, -0.01663687825202942, -0.04939466342329979, -0.06360787898302078, -0.015419387258589268, -0.024830622598528862, -0.03979811817407608, 0.0034269539173692465, 0.0025791358202695847, 0.011758995242416859, 0.07196620106697083, 0.0436273068189621, -0.02692096307873726, 0.007040481083095074, 0.0018265428952872753, -0.01808347925543785, -0.014127911999821663, 0.08371075987815857, 0.013906780630350113, 0.045705925673246384 ]
[ 0.014772078953683376, -0.020405244082212448, 0.014642627909779549, 0.006284043658524752, -0.009043862111866474, 0.0011549228802323341, -0.02020861580967903, 0.007718644104897976, -0.0037971953861415386, 0.021598534658551216, -0.007622435223311186, 0.04694940894842148, 0.012799113057553768, 0.018504822626709938, -0.03618663176894188, 0.0030868363101035357, 0.03302283212542534, 0.0074270134791731834, 0.013456638902425766, 0.028554245829582214, -0.0016837154980748892, 0.005076939240098, 0.009042980149388313, 0.017444884404540062, -0.00962477084249258, -0.02020840346813202, -0.008926845155656338, -0.0001427931129001081, 0.03693757951259613, -0.1395629346370697, 0.004308908712118864, -0.038008708506822586, -0.0132477767765522, -0.03308558091521263, 0.00969894789159298, 0.0200313962996006, 0.021055908873677254, 0.005630467552691698, -0.016540206968784332, 0.015895461663603783, -0.007162999827414751, -0.01406462024897337, 0.002084786770865321, 0.0007893791771493852, 0.024380076676607132, 0.00030573326512239873, -0.0012120831524953246, -0.050056759268045425, -0.028579695150256157, -0.001460603903979063, -0.02806972526013851, -0.014059007167816162, 0.006892420817166567, -0.03448847681283951, -0.006262026261538267, -0.012386946938931942, 0.01055057905614376, -0.0070911613292992115, -0.01727444678544998, -0.06082400307059288, 0.019481301307678223, -0.0022146874107420444, -0.06632646918296814, -0.028011664748191833, 0.0066036623902618885, -0.016049159690737724, -0.02092515304684639, 0.006691036280244589, -0.017155615612864494, -0.0025041282642632723, -0.01910674199461937, -0.0008493871428072453, -0.021832449361681938, -0.011998949572443962, -0.00687058363109827, 0.01924961246550083, 0.025404656305909157, 0.006124118342995644, 0.006070279981940985, -0.025693146511912346, -0.01984228938817978, 0.03315272927284241, 0.02531851828098297, -0.007748879957944155, 0.015801331028342247, 0.005127053242176771, 0.012612584047019482, 0.043461646884679794, 0.015397618524730206, 0.008301498368382454, 0.03190634772181511, 0.004655301570892334, -0.02722441591322422, 0.02287844754755497, -0.09126751124858856, -0.021520422771573067, -0.05685991793870926, -0.006365045439451933, -0.03265919163823128, 0.8216615915298462, -0.01459130272269249, -0.0005735677550546825, 0.04267217591404915, 0.036002811044454575, 0.018297210335731506, -0.020975621417164803, -0.008282938040792942, 0.019647540524601936, 0.02295582927763462, -0.00707449484616518, 0.03974186256527901, 0.016406750306487083, 0.028594890609383583, 0.040748219937086105, 0.023686151951551437, 0.05796240642666817, -0.05564024671912193, -0.010023684240877628, 0.0066980780102312565, 0.009226310066878796, 0.024350663647055626, 0.04256351292133331, 0.019831249490380287, 0.01496941689401865, -0.008678390644490719, -0.1884576380252838, 0.01174598466604948, -7.954141951260339e-33, 0.0342264398932457, -0.00611960981041193, 0.014296337962150574, -0.01069624163210392, 0.01314117107540369, -0.032977644354104996, 0.0047037238255143166, -0.010281593538820744, 0.016047006472945213, -0.014522564597427845, 0.007407763507217169, 0.02354578673839569, 0.026511164382100105, -0.03192149102687836, 0.003959218040108681, -0.024922814220190048, -0.0027323393151164055, 0.0478040985763073, 0.0030312088783830404, 0.0028943358920514584, 0.04745781794190407, -0.005771896801888943, 0.01894172467291355, 0.003200437407940626, 0.0541776604950428, 0.012610732577741146, 0.015064872801303864, 0.008408758789300919, 0.011301125399768353, -0.03697112575173378, -0.022934474050998688, 0.03694048896431923, -0.016600770875811577, -0.019513098523020744, -0.010743114165961742, -0.051180824637413025, -0.03357182815670967, -0.024023158475756645, -0.016976581886410713, -0.023673225194215775, -0.004806417506188154, -0.021936770528554916, -0.04600246250629425, -0.006947558373212814, -0.0020483166445046663, -0.0017232632962986827, 0.04608429595828056, 0.03284439817070961, 0.0004288580093998462, -0.050001997500658035, 0.027153272181749344, -0.004662563558667898, 0.008752023801207542, 0.008125212974846363, -0.007828307338058949, 0.005541099701076746, -0.0010769835207611322, 0.005099636036902666, 0.01250580046325922, 0.01875392533838749, 0.03298492357134819, 0.010013096034526825, -0.023393815383315086, 0.02146611176431179, -0.022637277841567993, -0.04429057240486145, 0.015782758593559265, 0.038926757872104645, -0.003698640502989292, -0.019791344180703163, -0.04274860396981239, -0.032369934022426605, 0.008257525973021984, 0.002719138516113162, -0.007073391694575548, -0.014400108717381954, -0.024474669247865677, 0.035067904740571976, -0.024340376257896423, 0.03340625390410423, -0.056009117513895035, -0.01392060425132513, -0.03456727787852287, -0.03420178219676018, 0.020592452958226204, 0.013329901732504368, 0.02212870866060257, -0.031788669526576996, -0.030492989346385002, 0.009439585730433464, -0.02224905788898468, -0.001512743765488267, 0.021171363070607185, 0.03062259964644909, -0.004534258507192135, 8.598507546762807e-33, 0.007729773409664631, -0.009832275100052357, 0.004897535312920809, -0.004168531857430935, 0.012968212366104126, -0.01401857752352953, 0.03337647020816803, -0.04289906471967697, -0.024966895580291748, 0.020237617194652557, -0.02564987540245056, -0.003851973684504628, -0.04124896600842476, 0.017936313524842262, 0.0547260120511055, -0.04557931423187256, 0.05340170860290527, -0.013126041740179062, 0.02201119437813759, 0.018956435844302177, 0.0203690342605114, 0.013226344250142574, -0.03628116101026535, 0.006496906280517578, 0.031983815133571625, 0.06244179978966713, 0.0045018913224339485, 0.021381376311182976, -0.013077698647975922, 0.006245396565645933, 0.0069408053532242775, 0.005488634575158358, 0.024570781737565994, 0.0007868596003390849, -0.06066229194402695, 0.056393012404441833, -0.025033866986632347, -0.027584567666053772, 0.03367791324853897, 0.018189221620559692, 0.03866501897573471, 0.015178782865405083, 0.006012269761413336, 0.011650225147604942, 0.007642661686986685, -0.0066777244210243225, -0.021348977461457253, -0.01291749533265829, -0.03747770935297012, -0.005239186808466911, 0.014810229651629925, 0.03896963223814964, 0.04007395729422569, 0.012225735001266003, 0.009711307473480701, -0.008982336148619652, -0.049936432391405106, -0.027941731736063957, -0.0017149356426671147, 0.006894032936543226, 0.009386849589645863, 0.07105623930692673, -0.011525483801960945, -0.01941692642867565, -0.015163570642471313, -0.003278619609773159, -0.025313740596175194, -0.02975342981517315, -0.051384855061769485, 0.006164644844830036, -0.040120288729667664, 0.022752409800887108, 0.009885616600513458, 0.052312221378088, 0.03499610722064972, -0.021647458896040916, -0.017419563606381416, -0.006074148695915937, -0.015043754130601883, -0.02426479384303093, 0.004438782576471567, -0.026790883392095566, 0.015302871353924274, 0.005039355251938105, 0.004034856799989939, 0.04470168799161911, -0.05865143984556198, 0.012948008254170418, 0.03118102252483368, 0.0008056454826146364, -0.0015462026931345463, -0.02889505960047245, 0.029568461701273918, 0.02866574190557003, -0.01697121188044548, -1.3302189572073075e-8, 0.018941907212138176, 0.025977009907364845, -0.02156442403793335, -0.017004365101456642, 0.00810770783573389, -0.0002338784106541425, -0.008292179554700851, 0.03414900600910187, -0.027010995894670486, 0.016309691593050957, 0.04040663316845894, -0.0404076911509037, -0.021753305569291115, 0.009476752951741219, 0.004476442467421293, -0.04874195531010628, -0.024519817903637886, -0.026225972920656204, 0.017984451726078987, -0.022537898272275925, 0.04664807394146919, 0.04878050088882446, -0.011549228802323341, 0.004054301418364048, 0.0270017609000206, -0.009145674295723438, -0.013261211104691029, -0.11983074247837067, -0.0002448582381475717, 0.026320604607462883, 0.018747486174106598, -0.008136944845318794, -0.0034761433489620686, 0.05707781761884689, -0.011989456601440907, 0.002939018188044429, 0.06049433350563049, 0.047979842871427536, 0.014462385326623917, -0.0007209985633380711, 0.02321959100663662, -0.0029263831675052643, 0.015445136465132236, -0.04100995138287544, -0.023359324783086777, 0.0046274131163954735, -0.061544448137283325, -0.0027513469103723764, 0.044438671320676804, -0.027239270508289337, 0.006935920566320419, 0.008473045192658901, 0.007862349040806293, 0.06206138804554939, 0.0441683866083622, 0.006214196793735027, -0.000958168413490057, -0.02751260995864868, -0.005460286512970924, 0.022738832980394363, 0.026748688891530037, -0.03386765345931053, 0.002096752403303981, -0.03259409964084625 ]
agile-putting-the-risk-up-front
https://markhneedham.com/blog/2008/11/10/agile-putting-the-risk-up-front
false
2008-11-19 21:30:19
Debugging ASP.NET MVC source code
[ "aspnet", "mvc" ]
[ ".NET" ]
We've been doing some work with the ASP.NET MVC framework this week and one of the things we wanted to be able to do is to debug through the source code to see how it works. Our initial idea was to http://haacked.com/archive/2008/11/03/bin-deploy-aspnetmvc.aspx[bin deploy the ASP.NET MVC assemblies] with the corresponding pdbs. Unfortunately this didn't work and we got a conflict with the assemblies deployed in the GAC: [source,text] ---- Compiler Error Message: CS0433: The type 'System.Web.Mvc.FormMethod' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\8553427a\c1d1b9c6\assembly\dl3\898a195a\60680eb9_3349c901\System.Web.Mvc.DLL' and 'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Mvc\1.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll' ---- We attempted to uninstall the System.Web.Mvc assembly from the GAC but were unable to do so because it has other dependencies. The next idea was to uninstall ASP.NET MVC using the MSI uninstaller. This worked in terms of getting rid of the assembly from the GAC but it meant that we no longer had support for ASP.NET MVC in Visual Studio. Luckily http://tgould.blogspot.com/[Troy] pointed out James Kovac's blog post about http://codebetter.com/blogs/james.kovacs/archive/2008/01/17/debugging-into-the-net-framework-source.aspx[debugging the .NET framework source] and we were able to debug the ASP.NET MVC code by hooking up the http://www.codeplex.com/aspnet/SourceControl/DirectoryView.aspx?SourcePath=%24%2faspnet%2fMVC%2fSymbols&changeSetId=17272[pdbs] that come with the http://weblogs.asp.net/scottgu/archive/2008/03/21/asp-net-mvc-source-code-now-available.aspx [source code download]. Some other approaches were pointed out on the http://www.nabble.com/Debugging-ASP.NET-MVC-td20554211.html[ALT.NET mailing list] although the above is what worked for us.
null
null
[ 0.004295046441257, -0.014141890220344067, -0.023547999560832977, 0.06375525146722794, 0.08313597738742828, -0.0058045885525643826, 0.027359113097190857, 0.04042928293347359, 0.020436301827430725, -0.03483052924275398, -0.03068460524082184, 0.00899895653128624, -0.08448803424835205, 0.02988484688103199, -0.043106433004140854, 0.08039490878582001, 0.041540443897247314, -0.022180261090397835, 0.03968136012554169, -0.0028354222886264324, 0.00038736240821890533, 0.0640316754579544, -0.0065642427653074265, 0.029887603595852852, 0.013993809930980206, 0.04668928682804108, 0.03612968325614929, -0.03222692012786865, -0.055168382823467255, -0.015585588291287422, 0.02943221479654312, 0.020396748557686806, 0.03007744811475277, -0.021595356985926628, 0.007487654220312834, -0.00983944721519947, -0.019532909616827965, 0.03756717965006828, 0.007123691961169243, 0.0005632454995065928, -0.07665764540433884, 0.03535839915275574, -0.0005762763321399689, 0.015505999326705933, -0.03215887024998665, 0.03307831287384033, -0.01111405435949564, 0.015613753348588943, -0.00723536591976881, -0.053407635539770126, -0.06517945975065231, 0.01722792163491249, -0.04362150654196739, 0.010923393070697784, -0.015968069434165955, 0.04834198206663132, 0.008632281795144081, -0.06616019457578659, 0.009795977734029293, -0.06663277745246887, 0.010442768223583698, -0.012012621387839317, 0.01320935133844614, 0.03382933512330055, 0.037127431482076645, -0.005853425711393356, 0.005138835404068232, 0.04536627233028412, -0.027929358184337616, -0.008936595171689987, 0.029908860102295876, 0.01609090343117714, -0.0250666756182909, 0.0008327326504513621, 0.05183829739689827, -0.022110996767878532, 0.0014818067429587245, 0.04592907056212425, 0.025627879425883293, 0.04181903228163719, -0.025994140654802322, 0.01665753684937954, 0.01712695322930813, 0.009601812809705734, -0.012157711200416088, -0.03022894449532032, -0.01858879067003727, 0.024962035939097404, -0.048828210681676865, 0.05494498834013939, 0.018205050379037857, -0.03481629863381386, 0.028385374695062637, 0.031500838696956635, -0.010433431714773178, 0.012417178601026535, 0.011090700514614582, -0.0003590203996282071, 0.014712333679199219, -0.008077070116996765, -0.021552717313170433, 0.006479320116341114, 0.03135009855031967, 0.02779601328074932, -0.08032742142677307, -0.007893700152635574, -0.03245440125465393, 0.0030484970193356276, -0.006692633964121342, -0.008255958557128906, -0.014749186113476753, 0.02317722700536251, -0.049104031175374985, -0.01630565896630287, -0.06477081775665283, 0.06836763769388199, -0.008265904150903225, -0.044197916984558105, 0.013217180036008358, 0.03532315790653229, 0.04563649743795395, 0.030031176283955574, -0.029431575909256935, 0.07820603996515274, 0.02012685500085354, 0.051037341356277466, -0.02655661851167679, 0.04406925290822983, -0.0329912044107914, -0.07762745022773743, -0.016502344980835915, 0.04848596826195717, -0.041290294378995895, -0.01756652630865574, 0.014852095395326614, -0.006216604728251696, 0.01770562306046486, 0.007245613727718592, -0.002650322625413537, 0.043280038982629776, -0.037209078669548035, -0.024337759241461754, 0.007851685397326946, 0.010780144482851028, 0.01458472479134798, 0.026873478665947914, -0.02506205625832081, -0.035404469817876816, -0.043233245611190796, 0.04903564974665642, -0.001792098511941731, 0.019434936344623566, 0.03233382850885391, -0.05674117058515549, 0.019243521615862846, 0.0915428027510643, 0.029112564399838448, -0.004524227697402239, -0.03151681274175644, 0.01790791191160679, 0.03403900936245918, 0.03363271802663803, 0.007729795761406422, 0.07013300806283951, -0.009747901931405067, -0.014806949533522129, -0.015075811184942722, 0.014452612027525902, 0.01179185975342989, 0.007058840710669756, -0.06968025863170624, -0.07250107079744339, 0.041411079466342926, -0.06374122202396393, -0.025392888113856316, 0.04904099926352501, 0.08341034501791, 0.013135751709342003, 0.049208641052246094, -0.005735229235142469, -0.08337025344371796, 0.005021402146667242, 0.016499225050210953, 0.004101698286831379, 0.007166667841374874, 0.0029560031834989786, 0.07672219723463058, 0.020138299092650414, -0.0064805373549461365, 0.04170185327529907, -0.08171151578426361, -0.09976087510585785, -0.025964654982089996, -0.013347958214581013, 0.0545133538544178, 0.005815062206238508, -0.021688083186745644, 0.08011417090892792, 0.014116556383669376, 0.045068446546792984, 0.02165641076862812, 0.0072549511678516865, 0.035585273057222366, -0.033817049115896225, -0.04537055268883705, 0.04281872138381004, 0.023401735350489616, 0.023980505764484406, -0.06878985464572906, 0.0028863437473773956, -0.01509854756295681, -0.03953642398118973, 0.051284581422805786, -0.022693341597914696, 0.07340121269226074, 0.005610805470496416, 0.029486041516065598, -0.03387247398495674, 0.054222702980041504, -0.0644092708826065, 0.013943594880402088, -0.023375580087304115, -0.024344805628061295, -0.02361651323735714, 0.009745888411998749, 0.10526148229837418, 0.073252372443676, -0.0405404157936573, -0.027250561863183975, 0.010213901288807392, 0.025629904121160507, -0.0528227873146534, -0.021585123613476753, -0.00013433479762170464, 0.01445022877305746, -0.005181359127163887, -0.06561730802059174, -0.04174996539950371, 0.003177925478667021, -0.03720148280262947, 0.04396699741482735, 0.06853848695755005, -0.01592067815363407, 0.050254449248313904, 0.0008146972977556288, -0.03254399821162224, -0.005333892069756985, -0.012127316556870937, -0.04980283975601196, 0.0056371004320681095, 0.037212420254945755, -0.01083263847976923, 0.04827333986759186, -0.00613839877769351, -0.023824643343687057, -0.011494418606162071, -0.020555030554533005, 0.004804363939911127, 0.013837671838700771, 0.05460242182016373, -0.0021244341041892767, 0.0265982523560524, -0.024037079885601997, 0.04603886604309082, -0.003830079222097993, -0.03107616864144802, -0.0005284861545078456, -0.009999502450227737, 0.008157647214829922, 0.03734947741031647, 0.015514163300395012, 0.011494381353259087, 0.019897984340786934, -0.0013144754339009523, 0.015134870074689388, 0.001166457892395556, 0.051651205867528915, 0.01662103459239006, -0.04774158075451851, -0.04042346403002739, -0.0411863811314106, 0.02748582512140274, -0.06292250752449036, -0.02585284411907196, 0.005586713552474976, -0.09478690475225449, 0.048603612929582596, -0.0855669304728508, -0.06544675678014755, 0.0046579670161008835, 0.005594002548605204, 0.024091484025120735, -0.009260411374270916, 0.026533590629696846, 0.0692485123872757, -0.016328327357769012, 0.004853782244026661, 0.009657330811023712, 0.006271375808864832, 0.028636455535888672, -0.0014924048446118832, 0.02831791155040264, 0.02112605981528759, -0.012542864307761192, 0.006474335212260485, -0.06086553633213043, 0.0411003977060318, -0.02894815243780613, -0.27273663878440857, 0.049958694726228714, -0.0044993748888373375, -0.060433030128479004, 0.05052195116877556, -0.028164196759462357, 0.025120848789811134, -0.06284481287002563, -0.024025477468967438, 0.009595246985554695, -0.01889979839324951, -0.054992832243442535, 0.0052320510149002075, 0.036483027040958405, -0.005244953092187643, 0.013152459636330605, 0.04016013443470001, -0.036581236869096756, 0.03950157389044762, 0.029242295771837234, 0.0036550182849168777, -0.05001251772046089, 0.01195814274251461, 0.029047347605228424, 0.023973125964403152, 0.06054586544632912, -0.06642499566078186, 0.07668203860521317, -0.02648899145424366, 0.0009177561732940376, -0.0006649214192293584, 0.0076101552695035934, -0.029771389439702034, -0.019050778821110725, -0.0359509252011776, -0.027992429211735725, -0.004973009694367647, 0.020342890173196793, 0.005647425539791584, -0.010785485617816448, -0.005464394576847553, -0.03217469900846481, 0.008974000811576843, 0.0034968273248523474, 0.09078661352396011, -0.002359108766540885, -0.08332248032093048, -0.01369237806648016, -0.03381515294313431, 0.08455212414264679, -0.005964742042124271, -0.010164941661059856, 0.012619643472135067, 0.05279421806335449, -0.0037748413160443306, -0.024435346946120262, 0.010936424136161804, -0.0021704458631575108, -0.05781378224492073, -0.03635916858911514, -0.008894559927284718, -0.03410717844963074, -0.025624217465519905, -0.05663397163152695, 0.01839713379740715, -0.06656989455223083, -0.032256223261356354, -0.03132246434688568, 0.06587329506874084, 0.017950650304555893, -0.03372370824217796, 0.01602894626557827, 0.011935211718082428, -0.10063440352678299, 0.022374620661139488, 0.0034160774666815996, -0.06389813125133514, -0.02306470461189747, 0.021325932815670967, 0.03770364820957184, -0.030281390994787216, -0.03742320463061333, 0.02375716343522072, -0.0006559974863193929, -0.00008140378486132249, 0.003782707965001464, 0.037288740277290344, 0.037588465958833694, -0.030232593417167664, 0.019980818033218384, 0.06735291332006454, -0.003339746966958046, -0.000962974620051682, -0.040685635060071945, 0.010820128954946995, -0.007074396125972271, 0.03767107054591179, 0.008505265228450298, 0.023157620802521706, 0.044665828347206116, 0.028466107323765755, -0.051464419811964035, 0.03354949131608009, -0.03804321214556694, -0.009088054299354553, -0.013534659519791603, -0.05785508453845978, -0.0038302328903228045, 0.04529706761240959, 0.02764163538813591, -0.010907135903835297, -0.06991978734731674, 0.018254248425364494, -0.0599612295627594, -0.03492701053619385, -0.003183657769113779, 0.0227188877761364, 0.02263324335217476, -0.010000240057706833, -0.022678924724459648, -0.049585916101932526, 0.012585978955030441, 0.008631099946796894, 0.022811878472566605, -0.05445714294910431, -0.04084344953298569, 0.0037863808684051037, -0.012934902682900429, 0.019360916689038277, 0.02475559152662754, -0.020695947110652924, 0.054583240300416946, 0.011754508130252361, -0.052081890404224396, 0.023553000763058662, 0.013438616879284382, -0.025848358869552612, -0.04278893023729324, 0.006166317034512758, -0.010178091935813427, -0.034565191715955734, 0.02569849044084549, -0.0057148863561451435, -0.004284700844436884, 0.05542227253317833, 0.005460283253341913, 0.02783861942589283, 0.018628938123583794, 0.01074096467345953, 0.0043031880632042885, 0.001903209020383656, -0.07630418986082077, 0.02854791469871998, -0.03275430202484131, -0.02810254879295826, -0.01470857858657837, 0.05009090155363083, -0.03158864751458168, -0.012347789481282234, -0.023353468626737595, 0.030590113252401352, -0.058510489761829376, -0.05602293089032173, -0.0026846174150705338, -0.028569776564836502, 0.056260477751493454, 0.014178918674588203, 0.013371072709560394, 0.00048461026744917035, -0.008651630021631718, 0.021321594715118408, 0.04585792124271393, -0.01959138736128807, 0.013303907588124275, 0.005854672286659479, 0.014417639002203941, -0.005811198614537716, 0.018359314650297165, 0.05212383717298508, 0.018927646800875664, -0.0037812672089785337, -0.05004380643367767, 0.022155027836561203, 0.004265112802386284, 0.02706870622932911, 0.0017897544894367456, -0.017370522022247314, -0.000022478290702565573, -0.008161126635968685, -0.027031291276216507, -0.02229137159883976, -0.009968518279492855, -0.005491683259606361, 0.036562416702508926, -0.021295543760061264, -0.0646575391292572, 0.04124576598405838, 0.013347039930522442, 0.03194712847471237, -0.008630380965769291, -0.008113330230116844, 0.008775063790380955, -0.02409404329955578, 0.0644102469086647, 0.04165269806981087, -0.05287519842386246, 0.010296435095369816, 0.0022401052992790937, 0.02761545591056347, 0.014321666210889816, -0.016413012519478798, -0.036941517144441605, -0.017906323075294495, -0.036490000784397125, 0.0024323202669620514, -0.06349626183509827, -0.027226492762565613, -0.00939475279301405, 0.020600782707333565, -0.00368426158092916, -0.025518467649817467, -0.015095611102879047, 0.002704308833926916, -0.01823502592742443, -0.03158218413591385, 0.0097889369353652, -0.011836602352559566, 0.008442426100373268, 0.006957218050956726, -0.02942138910293579, 0.016511425375938416, -0.03121224232017994, 0.018021194264292717, 0.003269412089139223, -0.02460862137377262, -0.008151015266776085, -0.04701077193021774, -0.0033450648188591003, 0.010416535660624504, 0.02461203746497631, -0.005440449807792902, -0.007733214180916548, -0.01662391796708107, -0.02241007424890995, -0.02329186536371708, 0.013583116233348846, -0.0010841842740774155, -0.014188073575496674, 0.02989019639790058, 0.04142322018742561, 0.012056030333042145, 0.03338909521698952, -0.006390789523720741, -0.0033265743404626846, 0.07208108901977539, -0.08590766042470932, -0.02402045577764511, -0.014410842210054398, -0.051450569182634354, 0.016280218958854675, 0.024600589647889137, 0.030979136005043983, -0.02765786275267601, 0.04284611716866493, 0.019825002178549767, -0.004891876596957445, 0.042267199605703354, 0.006486902013421059, 0.03387345373630524, -0.05277598649263382, -0.015548747032880783, -0.06675688177347183, 0.019648395478725433, 0.046866416931152344, -0.018595773726701736, -0.02835294045507908, 0.007155325263738632, -0.03691473975777626, 0.04090592637658119, -0.039543941617012024, -0.04623881354928017, 0.016858333721756935, -0.008444888517260551, -0.022763509303331375, 0.001647675409913063, -0.04590912535786629, 0.04943281412124634, 0.041026681661605835, -0.04714083671569824, -0.023672737181186676, -0.024644989520311356, 0.06707886606454849, 0.011456029489636421, 0.00338224065490067, -0.06334507465362549, -0.01619909144937992, 0.05183623358607292, 0.02570914849638939, 0.034108925610780716, 0.049065832048654556, -0.025083476677536964, 0.031580377370119095, 0.01674284040927887, -0.020063400268554688, -0.010718259029090405, -0.011156562715768814, 0.0025060761254280806, -0.06954348087310791, 0.0161867905408144, -0.004018964245915413, -0.017395706847310066, -0.03952639177441597, 0.05788223445415497, 0.03116966411471367, -0.013752254657447338, -0.05676809325814247, -0.013142449781298637, -0.05693364515900612, -0.022766001522541046, -0.036705609411001205, 0.017361091449856758, -0.032479383051395416, 0.07860899716615677, 0.009175344370305538, -0.0008053625351749361, 0.05864442139863968, 0.006018550135195255, -0.001325114513747394, -0.019749712198972702, 0.05060911923646927, 0.05997573584318161, 0.021253978833556175, 0.00443940469995141, 0.07279882580041885, -0.025936372578144073, -0.04880962148308754, 0.028971413150429726, -0.02294650860130787, -0.01256055012345314, -0.03116685524582863, 0.005694706924259663, 0.067779041826725, 0.005136588588356972, 0.04828248172998428, -0.02939547412097454, 0.006552211008965969, -0.003208437468856573, 0.023818334564566612, 0.00007038375042611733, 0.03254527598619461, 0.00866051483899355, 0.011128232814371586, 0.007291253190487623, -0.04180676117539406, 0.010577967390418053, -0.03724054619669914, -0.0029240744188427925, 0.014811992645263672, -0.004891321528702974, 0.022173305973410606, -0.001103146467357874, 0.01466595008969307, 0.08555291593074799, -0.036357227712869644, 0.0004636303929146379, -0.01162732020020485, 0.04436667263507843, 0.022523779422044754, 0.0009230304276570678, -0.037577830255031586, -0.038595493882894516, -0.016234291717410088, -0.022593345493078232, -0.021388094872236252, -0.03681233152747154, -0.006529428996145725, 0.02925124205648899, -0.02445169724524021, 0.02527507208287716, 0.029637865722179413, 0.012540029361844063, -0.020510999485850334, -0.06006499007344246, -0.050627611577510834, -0.04043608903884888, -0.0574449822306633, -0.007602762430906296, 0.03503676503896713, 0.008142657577991486, -0.026224059984087944, -0.014505545608699322, -0.0014375816099345684, -0.018329637125134468, 0.050870005041360855, -0.038601189851760864, -0.04334859922528267, 0.006886846385896206, 0.018321342766284943, 0.01855180598795414, 0.04367448017001152, 0.04069254547357559, -0.002154459711164236, -0.0263726357370615, -0.031399182975292206, 0.010954289697110653, 0.034927695989608765, -0.011221978813409805, 0.0273728109896183, -0.09267285466194153, 0.047117929905653, 0.018652047961950302, 0.007144733797758818, -0.05924559384584427, 0.00790499709546566, 0.027057094499468803, -0.03318803384900093, 0.048301730304956436, -0.03397516533732414, 0.006285195704549551, -0.009279413148760796, 0.007451503071933985, -0.006932312157005072, 0.02406293898820877, 0.0323544442653656, -0.027248520404100418, 0.07607829570770264, 0.043909162282943726, 0.00015703386452514678, -0.04272393882274628, -0.0002621149178594351, -0.0011638792930170894, 0.009688850492238998, -0.018797919154167175, -0.02317812107503414, -0.04452413320541382, -0.08517377078533173, -0.012123308144509792, -0.0004237006069160998, -0.011798624880611897, -0.03829912096261978, 0.01675666682422161, -0.013561846688389778, -0.08287802338600159, -0.0004184605204500258, -0.030609868466854095, -0.0010737248230725527, -0.023143388330936432, -0.020957980304956436, 0.008776393719017506, 0.024734603241086006, 0.03215579688549042, -0.004290295764803886, 0.02090064249932766, -0.031346797943115234, -0.014127935282886028, 0.001792143564671278, 0.03162914142012596, 0.04500623419880867, 0.011528369970619678, 0.020159980282187462 ]
[ -0.12497129291296005, -0.00529566640034318, -0.037292417138814926, -0.03809484466910362, 0.04463436082005501, -0.03836403042078018, -0.019448796287178993, 0.0011006182758137584, -0.01310917641967535, -0.03295181691646576, 0.0344000980257988, -0.0041258083656430244, -0.012187257409095764, 0.005286063998937607, 0.1274414211511612, 0.04725973308086395, -0.018076319247484207, -0.048481397330760956, 0.022334789857268333, 0.02842121571302414, 0.017970992252230644, -0.03218487277626991, -0.04638207331299782, -0.004142171237617731, -0.03444988653063774, 0.03484204038977623, 0.04660244286060333, -0.05069062486290932, -0.010669151321053505, -0.16986538469791412, 0.007833954878151417, -0.010404407046735287, 0.019042562693357468, -0.02396005392074585, 0.011991581879556179, -0.003622446907684207, 0.0047042700462043285, 0.021813463419675827, -0.0059402864426374435, 0.01637405715882778, -0.0012801130069419742, 0.03175029158592224, -0.03885365277528763, -0.0369562990963459, 0.06565190106630325, -0.009475293569266796, 0.011613279581069946, -0.02797125093638897, 0.008517448790371418, -0.0006701372331008315, -0.05082475021481514, -0.03140407055616379, -0.017438938841223717, -0.02380478009581566, -0.011565528810024261, -0.0006793162319809198, 0.029778996482491493, 0.04149419814348221, 0.013057143427431583, 0.02355624921619892, 0.023830685764551163, -0.036756351590156555, -0.1260189265012741, 0.10461154580116272, 0.05479299649596214, 0.0763353779911995, -0.000979761709459126, -0.06373649835586548, -0.006451471243053675, 0.0603470653295517, 0.015933610498905182, -0.02323330007493496, -0.04250706359744072, 0.03757960721850395, 0.028092289343476295, -0.0011682260083034635, 0.011402234435081482, 0.0538608692586422, 0.05686158314347267, -0.04037387669086456, -0.020736243575811386, -0.026189563795924187, -0.015675636008381844, -0.009108702652156353, -0.0330161415040493, 0.02125648595392704, 0.02740028128027916, 0.06534431129693985, 0.040489234030246735, 0.005606231279671192, 0.01938122883439064, -0.02070244401693344, 0.07404379546642303, 0.001937270164489746, -0.09289315342903137, 0.004505309276282787, -0.03830084204673767, -0.006568565033376217, -0.01897871121764183, 0.4352870285511017, -0.0405639186501503, -0.029148617759346962, 0.06843394786119461, 0.0020551199559122324, -0.039199184626340866, 0.03318033739924431, -0.0007930455612950027, -0.01268219668418169, 0.03160175308585167, -0.03702604025602341, 0.001206252258270979, 0.050834860652685165, 0.024671457707881927, -0.03172517195343971, 0.003131890669465065, 0.0007128894212655723, -0.022628379985690117, -0.025690259411931038, -0.04208952933549881, -0.015309353359043598, 0.007588684558868408, -0.014605124481022358, 0.03541281074285507, 0.02269612066447735, 0.02489982731640339, -0.044757742434740067, 0.010162774473428726, 0.05285951867699623, 0.05980570986866951, -0.0009646708494983613, 0.05382990092039108, -0.03108394704759121, -0.06816382706165314, -0.034716591238975525, 0.021450888365507126, -0.022112812846899033, 0.041867297142744064, -0.012189645320177078, -0.016498645767569542, 0.014793828129768372, -0.03176078572869301, -0.007523979060351849, 0.018307585269212723, -0.0035108644515275955, -0.037552427500486374, 0.1052929237484932, 0.011046607047319412, -0.0344790443778038, -0.03697294741868973, -0.026078898459672928, 0.011886203661561012, 0.05888379365205765, 0.0024397806264460087, -0.008048965595662594, 0.013277159072458744, 0.03982044383883476, 0.05659569427371025, -0.02413088269531727, -0.039721813052892685, -0.027147214859724045, -0.024576887488365173, -0.02751189097762108, -0.03351587429642677, 0.07149071991443634, 0.03623935580253601, -0.12373140454292297, -0.06037357822060585, 0.005324802361428738, 0.01778404600918293, -0.038686562329530716, -0.042914409190416336, 0.022809436544775963, -0.022190991789102554, -0.031112585216760635, 0.04613201320171356, -0.011283579282462597, -0.005436830222606659, 0.015388289466500282, 0.012398956343531609, 0.03041364997625351, 0.01996847428381443, -0.0032040434889495373, -0.06745459139347076, -0.0018835758091881871, -0.014670370146632195, -0.10274291038513184, -0.030802559107542038, -0.026325775310397148, 0.00009418541594641283, -0.028357258066534996, -0.07107456773519516, -0.02735808677971363, -0.07550271600484848, 0.07341780513525009, 0.016425849869847298, 0.009392008185386658, 0.00541262049227953, 0.0030774397309869528, 0.027900969609618187, -0.0391378253698349, 0.04158877208828926, 0.06302855163812637, -0.04668988287448883, 0.04036220908164978, -0.05128952115774155, 0.07062430679798126, 0.01993882656097412, -0.031743355095386505, 0.0212631244212389, 0.03867977485060692, -0.054180070757865906, -0.02136283926665783, 0.04554418846964836, 0.04249386489391327, -0.00530516542494297, -0.007495355326682329, 0.0041408659890294075, 0.030640635639429092, 0.00024069839855656028, 0.025409821420907974, -0.03388746827840805, 0.008245833218097687, 0.02902255952358246, -0.32268282771110535, 0.009118769317865372, -0.024185320362448692, -0.023295283317565918, -0.016800034791231155, -0.07786884903907776, 0.0007157868822105229, -0.020821722224354744, -0.02281699702143669, 0.011929923668503761, 0.08276419341564178, 0.006181076634675264, 0.03523918241262436, -0.07200280576944351, 0.00332652754150331, 0.03146161139011383, -0.006186329759657383, -0.034736718982458115, -0.042867161333560944, -0.023536089807748795, -0.017694812268018723, 0.01208797749131918, -0.0031547490507364273, -0.06036760285496712, 0.00364100793376565, -0.03996570035815239, 0.09384490549564362, 0.0026635434478521347, 0.10970078408718109, -0.041908759623765945, 0.039670344442129135, 0.05378644913434982, 0.01405238639563322, -0.09521164000034332, 0.009313158690929413, -0.04701632261276245, 0.0041866181418299675, -0.015312140807509422, 0.03223198652267456, 0.012046986259520054, -0.038701266050338745, -0.007622608449310064, -0.046758849173784256, -0.0800752341747284, -0.0031725135631859303, -0.005301626864820719, -0.029828041791915894, -0.02026364952325821, -0.03227304667234421, 0.08518902212381363, -0.005175168626010418, -0.01150800846517086, 0.013642428442835808, 0.06780826300382614, -0.012338918633759022, 0.012452036142349243, -0.05162278562784195, -0.03330523520708084, 0.01851050555706024, 0.030019011348485947, 0.05934175103902817, 0.059129953384399414, 0.039060868322849274, -0.07235245406627655, 0.01790444739162922, 0.010453782044351101, -0.014146137051284313, 0.005724394228309393, 0.10435190051794052, -0.030836783349514008, -0.052069902420043945, 0.08910419791936874, 0.004010925535112619, -0.015197535045444965, 0.008860630914568901, 0.03201483190059662, -0.04391954839229584, -0.02311830222606659, 0.0280231274664402, 0.011644617654383183, -0.003277484094724059, 0.011843251064419746, 0.04126625880599022, -0.026395445689558983, 0.012363535352051258, 0.04446762055158615, -0.06885144114494324, -0.03456627205014229, 0.022087669000029564, -0.01107148639857769, -0.024549921974539757, -0.0028651701286435127, -0.008431940339505672, -0.08086992055177689, 0.10218092054128647, -0.005420967470854521, -0.23083865642547607, 0.012766465544700623, 0.09649473428726196, 0.049032725393772125, -0.01638125441968441, 0.029780521988868713, 0.04560788720846176, -0.057350043207407, 0.030591240152716637, 0.0012547108344733715, 0.02510114386677742, 0.034688420593738556, 0.0007686245953664184, -0.028958790004253387, 0.04827042296528816, -0.017727237194776535, 0.008517439477145672, -0.005206142086535692, 0.05065000057220459, -0.006525958422571421, -0.02490040473639965, -0.00745618948712945, 0.1367577612400055, 0.024777347221970558, -0.0077914027497172356, 0.024823740124702454, -0.008347924798727036, 0.022742826491594315, 0.07889743149280548, 0.020871637389063835, -0.008784526027739048, -0.009211808443069458, 0.09138866513967514, 0.001399574801325798, 0.037688884884119034, -0.08665385842323303, -0.013920430094003677, 0.03558747097849846, 0.015583392232656479, 0.01529279351234436, -0.023076413199305534, 0.005546707659959793, -0.00959433801472187, 0.035703737288713455, 0.07514791190624237, -0.01104683056473732, -0.0009978776797652245, -0.01686941459774971, -0.04167557507753372, -0.014963659457862377, -0.06184724345803261, -0.04925794526934624, 0.03864641487598419, -0.005076067987829447, -0.017846960574388504, 0.06627480685710907, 0.01205641869455576, -0.03849805146455765, -0.02658434584736824, -0.005638657137751579, 0.020217472687363625, 0.0011419439688324928, 0.0968889445066452, -0.01281406357884407, 0.026255110278725624 ]
[ -0.033972978591918945, -0.05268095061182976, -0.04143119975924492, 0.06945165991783142, -0.003818078199401498, 0.0015347317093983293, 0.03316162899136543, 0.0036969429347664118, -0.021450906991958618, 0.01627897284924984, 0.027637682855129242, 0.010820729658007622, 0.01586126908659935, -0.005016256123781204, -0.022559791803359985, 0.0074907587841153145, 0.037119217216968536, -0.034299738705158234, 0.01765013486146927, 0.030900046229362488, -0.03467455506324768, 0.06580369919538498, 0.0006583844660781324, 0.0037998955231159925, -0.0036482231225818396, 0.008857776410877705, -0.00567364227026701, -0.02184632420539856, 0.027943095192313194, -0.12484589964151382, -0.002366633852943778, -0.02622375078499317, 0.004200906027108431, -0.0008446589927189052, 0.02992330864071846, -0.006522294599562883, 0.018803466111421585, 0.02461070381104946, -0.009342183358967304, -0.04124302417039871, -0.015120267868041992, 0.04278460144996643, 0.04638536646962166, 0.023671384900808334, -0.01877581886947155, -0.01992848515510559, -0.029737168923020363, -0.05874427780508995, 0.00805594865232706, 0.0056312959641218185, -0.0082562156021595, -0.015873434022068977, -0.03405320644378662, -0.024822182953357697, -0.006882484536617994, -0.005742931738495827, -0.03474340960383415, -0.011969137005507946, -0.025081239640712738, 0.026367854326963425, 0.005374290980398655, 0.023747781291604042, -0.04123801738023758, -0.05346217751502991, 0.03305097669363022, 0.03599715605378151, 0.0191566850990057, -0.033336687833070755, -0.020213596522808075, -0.028910590335726738, -0.027100061997771263, 0.018967483192682266, -0.028306465595960617, 0.009185605682432652, 0.018967313691973686, -0.026286618784070015, 0.0005056600202806294, 0.02083660289645195, 0.032336413860321045, -0.009727525524795055, -0.031353533267974854, 0.017790885642170906, 0.042557936161756516, 0.022897018119692802, 0.012894107960164547, -0.00033200703910551965, -0.01913398876786232, -0.00831496249884367, 0.020580779761075974, 0.009750548750162125, -0.03667985275387764, 0.016037747263908386, 0.008721636608242989, 0.01776556298136711, -0.05365612357854843, -0.03699066862463951, -0.012445089407265186, -0.008025617338716984, -0.0012919091386720538, 0.821953296661377, -0.03619220107793808, 0.019071396440267563, 0.04051061347126961, 0.0177385825663805, 0.015264610759913921, -0.01358510460704565, 0.006885172799229622, 0.00055505963973701, 0.03043682500720024, -0.047567494213581085, -0.017722012475132942, 0.02725973166525364, 0.010616173036396503, 0.006036646664142609, 0.05672189220786095, -0.0172564759850502, 0.023074893280863762, -0.01147560402750969, -0.017938509583473206, 0.03701261803507805, -0.0037012998946011066, -0.020002277567982674, -0.019433332607150078, -0.005429001525044441, 0.020932506769895554, -0.17919452488422394, 0.009243861772119999, -8.102106567986125e-33, 0.017784282565116882, 0.006971392314881086, 0.011370159685611725, 0.06449922919273376, 0.04900512844324112, 0.01593565009534359, 0.04197782278060913, -0.028095316141843796, 0.03207318112254143, -0.028593407943844795, -0.03923993185162544, -0.031043021008372307, 0.014345810748636723, -0.007259175181388855, 0.04265505447983742, -0.03306092321872711, -0.02482023648917675, 0.03484959900379181, -0.025472788140177727, -0.03532380983233452, 0.04823021590709686, 0.04367051273584366, 0.01923275552690029, -0.03843909129500389, 0.016185017302632332, -0.023315180093050003, -0.04261436685919762, 0.0709470584988594, 0.011977708898484707, -0.047534942626953125, 0.01831657998263836, 0.00043801270658150315, -0.054638318717479706, 0.006360756698995829, 0.0029916861094534397, -0.032999489456415176, -0.030167819932103157, -0.013208911754190922, -0.015659762546420097, 0.01778126321732998, -0.040398094803094864, -0.01552874967455864, -0.04303555563092232, 0.019774358719587326, -0.061427973210811615, -0.02084319479763508, 0.022405307739973068, 0.03717070072889328, 0.020404495298862457, -0.046863771975040436, 0.015112311579287052, 0.02455764450132847, -0.0019184945849701762, 0.03530595824122429, -0.04643154516816139, 0.041251033544540405, -0.013108446262776852, -0.006591568700969219, 0.018784860149025917, 0.03347804397344589, 0.04209461063146591, -0.027480633929371834, -0.029248669743537903, -0.003704317379742861, -0.029423648491501808, -0.025014739483594894, 0.01855063997209072, -0.007620827294886112, 0.03615351766347885, -0.03940611705183983, -0.01902274414896965, -0.016615329310297966, -0.01012321189045906, -0.01777377724647522, 0.029270047321915627, -0.008732303977012634, 0.0001330170634901151, 0.012074772268533707, -0.0020770321134477854, 0.04072842001914978, -0.004674266092479229, 0.0006026579067111015, -0.003789298702031374, -0.03967810794711113, 0.010874682106077671, -0.01276069600135088, 0.0028339549899101257, -0.031005853787064552, 0.02444601245224476, -0.0011229650117456913, 0.03484586998820305, -0.018850523978471756, -0.012430545873939991, -0.02253064513206482, 0.004591260105371475, 7.476420312402192e-33, -0.01594630628824234, -0.03300948068499565, -0.016191396862268448, -0.005903004668653011, 0.0014030021848157048, -0.01522049866616726, 0.04020531848073006, 0.009878053329885006, -0.0512029230594635, -0.003652059007436037, 0.019271815195679665, 0.06487817317247391, -0.007177438586950302, 0.04882746934890747, 0.011554855853319168, -0.011689145117998123, 0.00874597392976284, -0.016330469399690628, 0.06777534633874893, 0.00933748111128807, 0.010946773923933506, 0.0011275733122602105, 0.002986274426802993, -0.014370239339768887, 0.0291766207665205, 0.04454251751303673, -0.028915975242853165, 0.000629830698017031, 0.03072981722652912, 0.016870733350515366, -0.006102357991039753, 0.02539459988474846, 0.011655854061245918, -0.03484367951750755, -0.04632151126861572, 0.021057067438960075, -0.024366149678826332, -0.014726514928042889, -0.006527294404804707, -0.010030560195446014, -0.009364359080791473, -0.0191016998142004, 0.012647571973502636, 0.03694178909063339, 0.05087331309914589, 0.03476662188768387, 0.01003706268966198, -0.00978602934628725, 0.006104948464781046, 0.029099764302372932, 0.0008420758531428874, 0.009939017705619335, 0.03092823177576065, 0.0013997076312080026, 0.020250611007213593, -0.011723227798938751, -0.01046131644397974, -0.03291689604520798, -0.004787137731909752, 0.005119138862937689, 0.0015527567593380809, 0.030937908217310905, -0.053181614726781845, -0.012021967209875584, -0.027643883600831032, 0.031071800738573074, -0.001303357072174549, 0.004237302113324404, 0.013914098031818867, -0.048992257565259933, -0.03590690717101097, -0.044643521308898926, -0.009243168868124485, 0.005783802829682827, 0.007692755665630102, -0.06150602176785469, 0.014039024710655212, 0.033189352601766586, -0.014493965543806553, 0.008918947540223598, 0.007676881272345781, -0.0051846131682395935, 0.007790864910930395, -0.037963125854730606, -0.002340473234653473, -0.010831186547875404, -0.013901342637836933, 0.0005318074836395681, -0.00384704046882689, -0.017047325149178505, -0.029605694115161896, -0.022968484088778496, 0.031961362808942795, 0.030583292245864868, 0.014540798962116241, -1.3042892099690562e-8, -0.04210992902517319, 0.05332782119512558, 0.007567217107862234, -0.03170069307088852, 0.0043160198256373405, 0.02472134865820408, -0.026673449203372, -0.005385826341807842, -0.03143545985221863, 0.02767183445394039, 0.021603479981422424, -0.0026807014364749193, 0.005492690484970808, 0.005067128222435713, -0.006598946172744036, -0.014439467340707779, -0.037193093448877335, -0.007812196854501963, 0.03440702706575394, -0.03146689757704735, 0.018554607406258583, 0.021154658868908882, 0.011288140900433064, 0.002676465082913637, 0.02560826949775219, 0.01607375219464302, 0.008877946995198727, -0.07559657841920853, -0.021739322692155838, 0.03496930003166199, -0.023525070399045944, 0.0037830451037734747, -0.0423477403819561, 0.0033207412343472242, -0.0321526862680912, -0.02690044604241848, -0.0053671179339289665, 0.008247227407991886, 0.03078600950539112, 0.01864759251475334, 0.018654579296708107, 0.058575112372636795, -0.015410136431455612, 0.0031898883171379566, 0.018343986943364143, 0.028076738119125366, -0.014247581362724304, 0.02220173552632332, 0.026392659172415733, -0.044183459132909775, 0.003314995439723134, 0.016971753910183907, -0.011992981657385826, 0.0588369183242321, 0.00982576236128807, 0.012239447794854641, 0.0016597724752500653, -0.014173670671880245, -0.022965800017118454, 0.04289163649082184, -0.02341260388493538, 0.023087117820978165, -0.02502431347966194, -0.05025335028767586 ]
debugging-aspnet-mvc-source-code
https://markhneedham.com/blog/2008/11/19/debugging-aspnet-mvc-source-code
false
2008-11-19 06:53:08
The Toyota Way: Book Review
[ "lean", "toyota", "toyota-way", "books", "book-review" ]
[ "Books" ]
== The Book http://www.amazon.co.uk/Toyota-Way-Management-Principles-Manufacturer/dp/0071392319/ref=sr_1_1?ie=UTF8&s=books&qid=1227011994&sr=8-1[The Toyota Way] by Jeffrey Liker == The Review I was initially very skeptical about the value of lean in software development but became intrigued as to its potential value after listening to http://jchyip.blogspot.com/[Jason] championing it. Since The Toyota Way is the book where many of the ideas originated from I thought it only made sense for this to be my first port of call to learn about lean. == What did I want to learn? * What are the similarities and differences between the Lean and Agile principles? * How do we apply ideas around quality in software development? * How important are leaders to making it all happen? * If lean is not about tools what is it about? * Is waste ever acceptable in our process? == What did I learn? * My doubts about lean come from my perception of an *overly tool based focus when it comes to applying lean*. As http://dannorth.net/2008/06/learning-to-lean[Dan points out] those just learning a technique require tools and practices to apply but I don't believe this can work in the long run. I was therefore very pleased that early on the author recognised this problem and points out that to achieve proper results from applying Toyota's approach we need more than tools and that *lean needs to 'permeate an organisation's culture'*. * The concept of *learning by doing* was one that came across as being very important and it was emphasised constantly throughout the book. This can certainly be applied in software development, and it is actually often quicker just to try out things and see what happens rather than spending huge amounts of times reading up on the best approach. This is actually something I have learnt several times over the last few weeks and reminded me of something Scott Young posted http://www.scotthyoung.com/blog/2008/10/30/is-reading-making-you-stupid/[questioning the value of reading] when we're not actually doing the things we're reading about. * It was interesting to note the *similarities between mass production thinking and waterfall* compared to the Toyota/lean/agile approach to solving the same problem. My favourite quote referring to this was: + ____ What is the ideal way to organize your equipment and processes? In traditional mass production thinking\...,the answer seems obvious: group similar machines and similarly skilled people together. ____ + This is a completely different approach to the cross functional teams that we assemble for agile projects and which are used in Toyota. * I liked the idea of poka yoke - devices used to make it impossible for an operator to make a mistake. The emphasis is on *fixing the process rather than blaming the person*. I think this is quite a useful idea to take into the world of software development although I think in the agile world at least there is more emphasis on working together rather than blaming each other for mistakes. * Throughout the book there was an emphasis on working out *how we can add value to the customer* - the idea being that the next stage or process is our customer. Often when we think of the customer it's only the customer right at the end of the process so this was an interesting difference. In general the book emphasises Toyota's process focus over the final outcome. I like this idea because there is a lot more to be learnt when it comes to reflecting on our process instead of just the result from my experience. * Although most of the book and indeed most of the previous material I have come across about lean and Toyota talks about removing waste and non value added processes, the underlying idea of *continuous improvement* was what I found the most intriguing. Ideas such as stopping the line if there's a problem in order to improve that part of the process and expecting for the line to be stopped otherwise there will never be any improvement are concepts that would be quite unusual to many western businesses I would imagine. I think the 'stopping the line' idea can be applied in software development to raise problems when they arise as well. This way we can get everyone involved in trying to solve the problem rather than just letting one person struggle with it. I think this idea is partially applied with regards to the continuous integration build status but it would be unusual to see the whole team stop doing their work because it was red. * Early on in the book the TPS House was mentioned - the idea being that everything must be strong from the use of the tools to the belief in the philosophy. It seemed to me from reading this that *applying Toyota's ideas successfully is an all or nothing* game - i.e. it would be very difficult to be successful in the long term by just picking and choosing certain ideas without having the other ones to support them. * Again I came across the idea that it takes 10 years to become an http://www.sciam.com/article.cfm?id=the-expert-mind[expert], or 10 years to really get The Toyota Way and use it in a sustainable way. == In Summary The lean terminology (inventory, waste, etc) has become much more widely used on the last couple of projects I have worked on so it is good for me to have read this book as I now have a better understanding of what people are talking about. This served as a very good introductory book around this area. I was worried that the book wouldn't be that applicable to me as a software developer but I was able to see the parallels between how what we do and what is done in manufacturing have similarities. The next book for my lean learning will be The Poppendieck's 'http://www.amazon.co.uk/Lean-Software-Development-Agile-Toolkit/dp/0321150783/ref=sr_1_1?ie=UTF8&s=books&qid=1227012935&sr=8-1[Lean Software Development]'
null
null
[ 0.03468851000070572, 0.005457960534840822, -0.01896011084318161, 0.03243951126933098, 0.08517684787511826, 0.029492216184735298, 0.01886211894452572, 0.046045977622270584, 0.027823682874441147, -0.009421993978321552, -0.014055651612579823, -0.0010705312015488744, -0.051841914653778076, 0.011445052921772003, -0.06167033314704895, 0.06911897659301758, 0.07405710220336914, 0.024344557896256447, 0.020170629024505615, 0.024624569341540337, 0.03815441206097603, 0.0915655568242073, 0.032799504697322845, 0.029261542484164238, 0.039306990802288055, 0.01207646168768406, 0.023269258439540863, -0.014879913069307804, -0.0573529489338398, -0.00582518894225359, 0.041458141058683395, -0.0006185831152833998, 0.014226073399186134, 0.008783720433712006, 0.026870427653193474, -0.022331595420837402, -0.0008044341811910272, 0.0025213707704097033, 0.008384744636714458, -0.011426648125052452, -0.0749736949801445, 0.036743078380823135, -0.010735729709267616, 0.012508255429565907, -0.04439546912908554, 0.006371406372636557, -0.046247269958257675, 0.022157754749059677, -0.0025090891867876053, -0.011409617029130459, -0.054853927344083786, 0.015978023409843445, -0.000026412393708596937, -0.021044740453362465, -0.018683984875679016, 0.05624992772936821, 0.0037692852783948183, -0.050447605550289154, 0.004123035818338394, -0.04466043785214424, -0.0023409256245940924, -0.008700118400156498, -0.0013563670217990875, 0.04304899647831917, 0.0388372465968132, -0.0537855364382267, 0.0004392995615489781, 0.05856693163514137, -0.048914585262537, 0.014620384201407433, -0.04386700689792633, 0.01923978514969349, -0.020260518416762352, 0.0027815711218863726, -0.0009137677843682468, -0.06993607431650162, 0.010524698533117771, 0.08175282180309296, 0.025605566799640656, 0.05180757865309715, -0.007360465358942747, 0.042561501264572144, 0.002759650582447648, 0.019316615536808968, -0.03481084480881691, -0.024842824786901474, -0.005020527634769678, -0.021614838391542435, -0.0667593777179718, 0.05940672382712364, -0.010861280374228954, -0.05043628066778183, 0.005996228661388159, 0.047029148787260056, -0.014765751548111439, -0.005489872768521309, 0.03326493501663208, 0.0064977058209478855, -0.008390244096517563, -0.017384517937898636, -0.03811246156692505, -0.02816123701632023, 0.002095029689371586, 0.012084622867405415, -0.06498999893665314, 0.011620287783443928, -0.012932950630784035, -0.016913313418626785, 0.0007758961291983724, 0.004617392551153898, -0.032720085233449936, 0.024280322715640068, -0.047831181436777115, 0.019859598949551582, -0.0655960887670517, 0.0680403932929039, -0.0024680441711097956, -0.036399710923433304, -0.015854187309741974, 0.01560947485268116, 0.045008208602666855, 0.012155154719948769, -0.006085019093006849, 0.07441338151693344, 0.011646335013210773, 0.010418187826871872, -0.03663058578968048, 0.06418024748563766, -0.007769443094730377, -0.052311889827251434, 0.006862187758088112, 0.038198139518499374, -0.04479588568210602, -0.0037631825543940067, -0.0033242800273001194, -0.020503273233771324, 0.03789990767836571, 0.019845591858029366, 0.01987038180232048, 0.031178176403045654, 0.0023131901398301125, -0.024269644170999527, 0.010901027359068394, 0.010641469620168209, 0.027948489412665367, 0.006890986580401659, 0.018467403948307037, -0.027843181043863297, -0.05407262220978737, -0.01567169837653637, 0.02760760486125946, 0.028657395392656326, 0.01414389256387949, -0.036639127880334854, 0.03559267893433571, 0.07991383224725723, 0.02740529179573059, 0.01888899877667427, -0.02186737023293972, 0.030862465500831604, 0.028834687545895576, 0.03383096680045128, 0.03031877614557743, 0.011018815450370312, 0.00984539370983839, -0.014018934220075607, 0.0000920364327612333, 0.04417902231216431, 0.014006099663674831, -0.009516504593193531, -0.03772272169589996, -0.05698307231068611, 0.026355475187301636, -0.04894523695111275, -0.006407734472304583, 0.045697130262851715, 0.07678522169589996, 0.05209491029381752, 0.04138799011707306, 0.0010350843658670783, -0.08415315300226212, 0.050775062292814255, 0.03343681991100311, 0.01446403656154871, 0.02639196626842022, -0.03801760450005531, 0.07034683227539062, 0.026329854503273964, 0.019674599170684814, 0.03872145712375641, -0.07469961047172546, -0.11490300297737122, -0.019056614488363266, -0.041662272065877914, 0.0540488138794899, -0.04428708180785179, 0.014576409012079239, 0.044467661529779434, 0.0010979188373312354, 0.06652136147022247, -0.002010300289839506, -0.012618978507816792, -0.0007221729028970003, -0.06097802892327309, -0.031131234019994736, 0.048716187477111816, 0.03809334710240364, 0.02000424638390541, -0.043285854160785675, 0.02156083658337593, -0.01250101812183857, -0.015321559272706509, 0.03525328263640404, -0.00536591000854969, 0.043548714369535446, -0.003279119962826371, 0.05801306664943695, -0.009085569530725479, 0.06064371019601822, -0.04033370316028595, 0.01797921024262905, 0.008793745189905167, -0.01832249015569687, 0.006821648683398962, -0.01088213175535202, 0.10377795249223709, 0.08663792163133621, -0.046064335852861404, -0.055117953568696976, 0.02394076995551586, 0.008738300763070583, -0.04466971009969711, -0.009239193983376026, -0.001497652381658554, 0.013384832069277763, 0.0038367132656276226, -0.06136246398091316, -0.038165293633937836, 0.02675529196858406, -0.050266094505786896, 0.013778161257505417, 0.04032687097787857, -0.00689736008644104, 0.057602137327194214, 0.03006781078875065, -0.019278518855571747, -0.02115139551460743, 0.017170608043670654, -0.06135328486561775, 0.007282772101461887, -0.01621427945792675, -0.026692843064665794, 0.054580070078372955, -0.027829820290207863, -0.0372324176132679, -0.03478553146123886, -0.047060441225767136, 0.038994885981082916, 0.0658956915140152, 0.058191943913698196, -0.03149103745818138, 0.056529462337493896, -0.024982810020446777, 0.04677923768758774, 0.02685985341668129, -0.02307060733437538, -0.04744163900613785, -0.040494970977306366, 0.00345873786136508, 0.017621846869587898, 0.005909878760576248, 0.014605212025344372, 0.015689965337514877, 0.014584813266992569, -0.01127557922154665, -0.012546952813863754, 0.03226073086261749, 0.004061391111463308, 0.0016810601809993386, -0.03237844631075859, -0.017043400555849075, 0.04050217941403389, -0.04269851744174957, -0.021590586751699448, -0.001276426948606968, -0.09343402087688446, 0.03808002173900604, -0.042513083666563034, -0.02060665749013424, -0.020186616107821465, 0.014925016090273857, 0.026070808991789818, 0.005123944021761417, 0.02068154700100422, 0.05126555263996124, 0.010363554581999779, -0.008482599630951881, 0.00920885056257248, 0.0019741388969123363, 0.025855956599116325, 0.035906992852687836, -0.000026165345843764953, 0.05696481466293335, 0.01134879793971777, 0.0017819039057940245, -0.052902135998010635, 0.029659923166036606, -0.03308593109250069, -0.27360567450523376, 0.044932495802640915, -0.005116181913763285, -0.04603933170437813, 0.04075497388839722, -0.008475310169160366, 0.0028454058337956667, -0.07830454409122467, -0.01779615879058838, 0.020848773419857025, -0.032132428139448166, -0.036560188978910446, -0.008101996965706348, 0.03376874700188637, -0.007507650181651115, 0.028634361922740936, 0.06313955038785934, -0.03141947090625763, -0.00027403372223488986, 0.06078427657485008, -0.024614864960312843, -0.06326466798782349, 0.004938072524964809, 0.036985404789447784, 0.046120401471853256, 0.07039100676774979, -0.06903700530529022, 0.047814060002565384, -0.0601041205227375, -0.00485772592946887, 0.0005579035496339202, 0.010769098065793514, -0.013268325477838516, -0.01715780794620514, 0.0063390908762812614, -0.01274921465665102, 0.0383758507668972, -0.00020882584794890136, -0.0015377585077658296, 0.006584601476788521, -0.005060196854174137, -0.029179414734244347, 0.01574557274580002, 0.014420196413993835, 0.07519315928220749, 0.020179159939289093, -0.09028245508670807, -0.021989820525050163, -0.03375206142663956, 0.07729022204875946, -0.033128030598163605, -0.02478751540184021, -0.0016372505342587829, 0.02771034464240074, 0.00717144925147295, -0.027238696813583374, 0.011594596318900585, -0.03139922767877579, -0.03605340048670769, -0.034042809158563614, -0.010924682952463627, -0.02485661394894123, -0.029998784884810448, -0.06644827872514725, -0.02537514455616474, -0.06384701281785965, -0.052516870200634, -0.023694196715950966, 0.05393536761403084, 0.013102632015943527, -0.050426892936229706, 0.004470203537493944, -0.007044002879410982, -0.09481292963027954, -0.0019524733070284128, -0.0019352517556399107, -0.019285980612039566, 0.016203846782445908, 0.003093054750934243, 0.04780302941799164, -0.03396676853299141, -0.04813535511493683, 0.025004956871271133, 0.006482354830950499, 0.031173326075077057, -0.012428040616214275, 0.044797223061323166, 0.027758121490478516, -0.022888310253620148, 0.01129753328859806, 0.07611874490976334, 0.011368384584784508, -0.028828658163547516, -0.04354768991470337, 0.04701942205429077, -0.004500532988458872, 0.026235347613692284, -0.0058334399946033955, 0.00516881700605154, 0.02095300704240799, 0.0009311461471952498, -0.054700519889593124, 0.022268956527113914, -0.01406803261488676, -0.007234207820147276, -0.02992936223745346, -0.05805084481835365, 0.01565863937139511, 0.03006840869784355, 0.008891232311725616, 0.012702926993370056, -0.03289245441555977, 0.013371717184782028, -0.04638003557920456, -0.036007728427648544, -0.03577350452542305, 0.0023435535840690136, 0.04599844664335251, -0.003535536117851734, 0.0030718545895069838, -0.04943717643618584, 0.0029250860679894686, -0.04164035618305206, -0.04279427230358124, -0.0625845342874527, -0.012015500105917454, -0.017550840973854065, -0.013745256699621677, 0.0019210281316190958, 0.030460812151432037, -0.012736786156892776, 0.021458745002746582, 0.03571261838078499, -0.045528776943683624, -0.016463257372379303, -0.035888150334358215, -0.058217603713274, -0.03482450172305107, -0.012383596040308475, -0.0001277610717806965, -0.0013611797476187348, 0.019151268526911736, -0.014939571730792522, 0.005016285926103592, 0.04424884915351868, 0.033065494149923325, 0.0010631782934069633, -0.01982496678829193, 0.020613141357898712, 0.0129706347361207, 0.012171882204711437, -0.0848245844244957, 0.02672949805855751, -0.03796487674117088, -0.012938231229782104, -0.024709025397896767, 0.027169223874807358, -0.02373381331562996, -0.029814930632710457, -0.008261424489319324, 0.01260376162827015, -0.042579181492328644, -0.037438880652189255, -0.029235221445560455, 0.017867252230644226, 0.07027942687273026, -0.010112802498042583, 0.02473117969930172, -0.021938199177384377, 0.0026856400072574615, 0.0301568154245615, -0.006040272302925587, -0.045849572867155075, 0.0021102402824908495, 0.003045241115614772, 0.0017479887465015054, 0.01575446128845215, 0.0018201831262558699, 0.03641898185014725, -0.011217128485441208, -0.004923511296510696, -0.035893671214580536, 0.010801052674651146, 0.008510727435350418, 0.03214499354362488, 0.0077544767409563065, -0.009586194530129433, -0.008783700875937939, -0.03158702328801155, -0.03042910434305668, -0.029484234750270844, -0.020924748852849007, 0.0018125930801033974, 0.011002296581864357, -0.048010941594839096, -0.07295345515012741, 0.052702248096466064, 0.010018908418715, -0.003282080637291074, 0.04769115522503853, -0.02017397992312908, 0.012806066311895847, -0.03560579940676689, 0.016253851354122162, 0.050278276205062866, -0.07020246982574463, 0.0036968665663152933, 0.00025974487653002143, -0.007247414439916611, 0.0014690699754282832, -0.021708469837903976, -0.0351611003279686, -0.02757057547569275, -0.035855211317539215, 0.007568866480141878, -0.07702349871397018, -0.012284982949495316, -0.04051944240927696, 0.0066181509755551815, -0.005596587900072336, 0.02470950037240982, -0.018252460286021233, -0.034638866782188416, -0.029629219323396683, 0.001100507564842701, 0.02261662855744362, -0.028101762756705284, -0.006062472239136696, 0.012209471315145493, -0.044580791145563126, -0.02045004442334175, -0.0316910594701767, 0.0076536755077540874, 0.02040954865515232, -0.028046052902936935, -0.011334402486681938, -0.04309902712702751, -0.0032469897996634245, 0.007137087639421225, 0.029410552233457565, 0.0018893223023042083, -0.00016202066035475582, -0.036298319697380066, -0.009352696128189564, -0.05654631555080414, 0.0032506310380995274, -0.033483896404504776, -0.019293786957859993, 0.04364311695098877, 0.0717337355017662, 0.006911194417625666, 0.02304305136203766, -0.00399135472252965, -0.035988252609968185, 0.06189863383769989, -0.06984440982341766, -0.037749964743852615, -0.016233300790190697, -0.0489833764731884, 0.008271761238574982, -0.0023117978125810623, 0.03596678376197815, -0.022528989240527153, 0.06705470383167267, 0.011435722932219505, 0.043174710124731064, 0.027772413566708565, 0.0055856239050626755, 0.02133982814848423, -0.06911224871873856, -0.0005118497647345066, -0.07670337706804276, -0.012617304921150208, 0.025362661108374596, 0.002904857974499464, -0.03543144464492798, -0.004943386651575565, -0.044671569019556046, 0.05141392722725868, -0.08295080065727234, -0.023657284677028656, 0.04227488860487938, -0.008875400759279728, -0.017988834530115128, 0.02263820543885231, -0.05459318310022354, 0.04270690679550171, 0.01332477293908596, -0.048112496733665466, -0.008984295651316643, -0.02515290305018425, 0.04895833879709244, 0.002665368840098381, 0.02661135606467724, -0.05215631425380707, 0.005526291206479073, 0.08076073974370956, 0.024633271619677544, -0.014188900589942932, 0.04013318195939064, -0.007829785346984863, 0.02906932309269905, 0.04321463406085968, 0.0199044868350029, -0.009807624854147434, 0.025434551760554314, -0.0013295902172103524, -0.07627435773611069, 0.025514136999845505, 0.0022500462364405394, -0.01575637049973011, -0.01837676204741001, 0.05260765552520752, 0.020329654216766357, -0.023217983543872833, -0.05178088694810867, -0.0016147993737831712, -0.06018492579460144, -0.012332089245319366, -0.004187117796391249, 0.014576582238078117, -0.04793336242437363, 0.04148536175489426, -0.009501234628260136, 0.01881755143404007, 0.044874049723148346, -0.005605590529739857, -0.026353949680924416, -0.011411923915147781, 0.0824037492275238, 0.07971429824829102, 0.05067279934883118, 0.019968561828136444, 0.07501138001680374, 0.018560979515314102, -0.05051756650209427, 0.021844787523150444, -0.015004853717982769, -0.008938106708228588, -0.029592594131827354, 0.010396682657301426, 0.05521053820848465, 0.00006618166662519798, 0.059984102845191956, -0.008214892819523811, -0.015510772354900837, -0.008105076849460602, 0.02990531735122204, 0.004932993091642857, 0.048932768404483795, 0.014584795571863651, 0.013444600626826286, -0.020721927285194397, -0.035968292504549026, 0.016327936202287674, -0.01534258108586073, -0.012751343660056591, 0.03190562129020691, -0.011610814370214939, 0.03441916033625603, 0.007247771602123976, 0.029017483815550804, 0.09425252676010132, -0.036674730479717255, 0.030454467982053757, 0.011013860814273357, 0.026018835604190826, -0.004230302758514881, 0.007088409271091223, -0.027746686711907387, -0.033195339143276215, -0.00962894782423973, -0.013536583632230759, -0.031038563698530197, -0.00924596656113863, 0.002809123368933797, 0.026906579732894897, -0.0069123380817472935, 0.010887649841606617, 0.051468975841999054, 0.01919439807534218, -0.023411190137267113, -0.049476224929094315, -0.03735913708806038, -0.03821443021297455, -0.035618722438812256, -0.013024912215769291, 0.021839464083313942, -0.00969488825649023, -0.05112217739224434, -0.016939677298069, -0.008635684847831726, -0.025256983935832977, 0.02892119623720646, -0.062447357922792435, -0.016689341515302658, -0.01642709970474243, 0.03132777661085129, 0.0192508976906538, 0.012590713798999786, 0.05680393427610397, 0.018599385395646095, -0.026780875399708748, 0.021607792004942894, 0.019369380548596382, 0.026759246364235878, 0.004387787543237209, 0.039908383041620255, -0.0782153308391571, 0.02467591129243374, 0.027742929756641388, -0.0249827578663826, -0.06467296928167343, 0.029596617445349693, 0.018612610176205635, -0.03531613573431969, 0.03860319405794144, 0.0020252878312021494, 0.023127712309360504, -0.017520882189273834, -0.01663673296570778, -0.002862333320081234, 0.013527849689126015, 0.025076905265450478, -0.03841759264469147, 0.08264182507991791, 0.04184367507696152, 0.01486450806260109, -0.052945464849472046, -0.0030975379049777985, 0.0004417648306116462, 0.00974699854850769, -0.03938339650630951, -0.027558907866477966, -0.016623711213469505, -0.08560601621866226, -0.011491360142827034, 0.008316722698509693, -0.019180485978722572, -0.034304674714803696, 0.02648979425430298, 0.01546455267816782, -0.027411580085754395, 0.021291596814990044, -0.03189530223608017, 0.02761148102581501, -0.026794206351041794, -0.0020983407739549875, 0.0011679091257974505, 0.019137976691126823, 0.009165269322693348, -0.005057444330304861, 0.005944347940385342, -0.05401691421866417, 0.03221958503127098, -0.00946466252207756, 0.030796820297837257, 0.03527875617146492, 0.028283216059207916, -0.010552426800131798 ]
[ -0.07893659174442291, -0.02725444920361042, 0.009281362406909466, -0.02261095866560936, 0.026390494778752327, -0.019176790490746498, -0.030077317729592323, 0.031762994825839996, -0.017933441326022148, -0.007581003941595554, 0.023587554693222046, -0.03308594226837158, -0.007569376844912767, -0.023358475416898727, 0.07154746353626251, -0.0023843811359256506, 0.001084370887838304, -0.0741652175784111, 0.024651428684592247, -0.008104322478175163, 0.021883808076381683, -0.04768890514969826, -0.037996284663677216, -0.028347564861178398, 0.047682084143161774, 0.0157295074313879, 0.014094732701778412, -0.02094503678381443, 0.0018496275879442692, -0.17837537825107574, -0.0009984070202335715, 0.030692070722579956, 0.0536651574075222, -0.025235192850232124, -0.01497819647192955, 0.07131614536046982, 0.023723820224404335, 0.002128843916580081, 0.00597841152921319, 0.01789955608546734, 0.024944711476564407, 0.019325705245137215, -0.022675229236483574, -0.03855753317475319, 0.005829350557178259, 0.007461027707904577, 0.019678303971886635, -0.016338376328349113, -0.005255178548395634, 0.01143057644367218, -0.07749819755554199, -0.029044466093182564, -0.013811425305902958, -0.03162693232297897, -0.02006138116121292, 0.03681520000100136, 0.04805895313620567, 0.062230560928583145, -0.012689846567809582, 0.003939577843993902, 0.03837249055504799, -0.02599777840077877, -0.14947743713855743, 0.06549348682165146, 0.04826327785849571, 0.05813806504011154, -0.04625602439045906, 0.011282780207693577, -0.002492927946150303, 0.06954292953014374, 0.017997542396187782, -0.02758629247546196, -0.018925387412309647, 0.0403234101831913, 0.02077517844736576, 0.01693117804825306, 0.0162902120500803, 0.029108423739671707, -0.0071199145168066025, -0.052498478442430496, -0.0138131408020854, 0.01597878709435463, -0.01529352180659771, -0.010019812732934952, -0.06580543518066406, 0.01854093372821808, 0.008084974251687527, 0.04551257565617561, 0.06167684122920036, 0.027535637840628624, 0.04343796521425247, 0.0103541174903512, 0.03658677265048027, -0.008787124417722225, -0.06281638890504837, -0.012027301825582981, -0.013538593426346779, 0.00883887242525816, -0.03396641090512276, 0.4550185203552246, -0.02160060405731201, -0.006749086081981659, 0.08115218579769135, 0.018329763785004616, 0.006667070556432009, 0.009976517409086227, 0.006480725947767496, -0.030193710699677467, 0.04193129763007164, -0.015245813876390457, 0.05335763841867447, 0.01714594103395939, 0.04165598377585411, -0.042713116854429245, -0.007446205709129572, 0.013106819242238998, 0.015028439462184906, 0.030352439731359482, 0.020642085000872612, -0.018403921276330948, -0.029863910749554634, 0.006657586432993412, 0.04111861810088158, -0.003641290357336402, -0.04478936269879341, -0.08902369439601898, 0.01895902492105961, 0.027336059138178825, 0.026550710201263428, -0.024334074929356575, 0.06248311325907707, -0.06269300729036331, -0.0800713375210762, -0.0036136717535555363, 0.012926127761602402, 0.00390672730281949, 0.01637681946158409, -0.026074636727571487, -0.0013877953169867396, 0.05802116543054581, 0.0008758217445574701, 0.006834445055574179, 0.009518862701952457, -0.06080957502126694, -0.053980693221092224, 0.11066452413797379, 0.04049412161111832, -0.043154023587703705, -0.024799687787890434, -0.02293151617050171, 0.0010934919118881226, 0.01810823194682598, 0.01112772524356842, -0.07364998012781143, 0.05558537691831589, 0.013579975813627243, 0.10788620263338089, -0.026864614337682724, -0.06425229460000992, -0.012339803390204906, -0.026905197650194168, -0.018450316041707993, -0.07294788211584091, 0.02230815403163433, 0.05278603732585907, -0.12519380450248718, -0.010189210996031761, -0.01735379360616207, 0.017291538417339325, -0.041971102356910706, -0.009816541336476803, 0.019153574481606483, -0.024263666942715645, 0.034628041088581085, 0.09602273255586624, -0.026593979448080063, -0.03284875303506851, 0.014822089113295078, 0.0502825528383255, 0.02107408083975315, 0.05419145151972771, 0.014514213427901268, -0.008667430840432644, 0.0021298155188560486, 0.0008996764663606882, -0.05064300075173378, -0.05833253636956215, -0.01303836889564991, -0.016932593658566475, 0.032460764050483704, -0.011550983414053917, -0.02889513038098812, -0.07272639125585556, 0.0919138565659523, -0.030684709548950195, -0.015116472728550434, -0.0015469988575205207, 0.0025321689900010824, -0.03449808061122894, -0.011410261504352093, -0.09292308986186981, 0.01788828708231449, -0.025062549859285355, -0.007513089571148157, -0.05167442187666893, 0.030597520992159843, 0.03047945909202099, -0.050418537110090256, 0.09181180596351624, 0.08670955896377563, -0.04787334427237511, -0.029750104993581772, 0.013862160965800285, 0.025664178654551506, 0.00265121809206903, -0.009845378808677197, 0.0034173193853348494, 0.05851703882217407, -0.036832597106695175, 0.01679198257625103, -0.042479004710912704, 0.02984153851866722, -0.0501503050327301, -0.326688677072525, -0.015880340710282326, -0.042866263538599014, 0.01726454682648182, 0.040259819477796555, -0.041918493807315826, 0.012288343161344528, -0.013662098906934261, -0.03188365325331688, -0.0024835921358317137, 0.09237158298492432, -0.01608285680413246, -0.001176465768367052, -0.06805370002985, 0.012171204201877117, 0.002691605594009161, -0.04134884849190712, -0.026189740747213364, -0.0609620101749897, 0.00707367155700922, 0.0019576898775994778, 0.00821414589881897, -0.012230942025780678, -0.037699587643146515, 0.013919934630393982, -0.06010562181472778, 0.06948498636484146, -0.015369687229394913, 0.10027050226926804, -0.012025036849081516, 0.021867530420422554, 0.03584425523877144, 0.020777320489287376, -0.1090526282787323, 0.0015623553190380335, -0.00235510291531682, 0.008607101626694202, -0.037403546273708344, 0.006442899350076914, -0.042351529002189636, -0.050832342356443405, 0.009039649739861488, -0.0830155536532402, -0.024291079491376877, -0.04715985432267189, 0.0005772619042545557, -0.03122926503419876, -0.01862969994544983, -0.0192419346421957, 0.05873141810297966, 0.0032540331594645977, 0.017125189304351807, 0.017306238412857056, 0.026831209659576416, -0.004182142671197653, -0.0283936969935894, -0.07170591503381729, 0.04148199409246445, 0.020922090858221054, -0.02487434446811676, 0.02012246660888195, 0.04549641162157059, 0.04355815425515175, -0.03643934056162834, -0.009880402125418186, -0.018929950892925262, -0.028843270614743233, 0.016774114221334457, 0.010825336910784245, 0.0007353732362389565, -0.020974215120077133, 0.05712767690420151, -0.0213351771235466, -0.011568238958716393, 0.010397259145975113, 0.038219403475522995, -0.02488073520362377, 0.02488638460636139, -0.003155929734930396, -0.03584638237953186, -0.004657694138586521, -0.03501289710402489, 0.04828320071101189, -0.012775428593158722, 0.0007532964227721095, 0.019749149680137634, -0.009102067910134792, -0.07798034697771072, 0.054766375571489334, 0.03532413765788078, -0.01970878429710865, -0.007349511608481407, -0.022415684536099434, -0.04547209292650223, 0.11377742886543274, 0.024062873795628548, -0.2225249707698822, 0.02238095924258232, 0.047468919306993484, 0.05642754212021828, -0.017467454075813293, 0.04751002416014671, 0.019824868068099022, -0.07125958055257797, 0.03237954527139664, 0.02435450069606304, 0.026220127940177917, 0.02043486200273037, 0.008044593036174774, -0.018318647518754005, 0.0592774972319603, -0.01286057848483324, 0.051629919558763504, -0.006328771822154522, 0.056840844452381134, 0.016436703503131866, -0.008580510504543781, 0.010763797909021378, 0.1466766744852066, 0.003643078962340951, 0.03586545214056969, 0.01611272804439068, -0.020101850852370262, 0.00011089825420640409, 0.06362390518188477, 0.026365332305431366, 0.02970641292631626, 0.00046522333286702633, 0.03883540630340576, 0.022674603387713432, 0.0011701533803716302, -0.08349201828241348, -0.03247274458408356, 0.029435936361551285, 0.03250133618712425, 0.001272752182558179, 0.03806999698281288, 0.02185615710914135, -0.007691789884120226, 0.03894669562578201, 0.0646701380610466, -0.0011328866239637136, -0.012669803574681282, -0.10601896047592163, -0.048473723232746124, -0.029237715527415276, -0.017435461282730103, -0.01842411421239376, 0.0036365685518831015, 0.000617828278336674, 0.0407547689974308, 0.05081777647137642, 0.004404066130518913, -0.047357525676488876, -0.01865277625620365, -0.0036692919675260782, 0.0014409107388928533, -0.04459076374769211, 0.08722361922264099, 0.02866005152463913, 0.037686120718717575 ]
[ -0.007999211549758911, -0.014353455044329166, -0.020411444827914238, -0.023367103189229965, -0.02396269142627716, 0.0015896979020908475, 0.009849532507359982, 0.030986519530415535, 0.004057524725794792, -0.012817483395338058, 0.013742492534220219, 0.04823687672615051, 0.02614917792379856, -0.03676063194870949, 0.030987553298473358, -0.030085695907473564, -0.024111056700348854, -0.0013415715657174587, 0.02141568250954151, -0.0015850577037781477, -0.011866885237395763, 0.008685286156833172, 0.010199067182838917, 0.05229998752474785, -0.03184017911553383, 0.03551321476697922, 0.02017996832728386, 0.024684395641088486, 0.02263418585062027, -0.1381506621837616, -0.0015600621700286865, 0.004141420591622591, 0.02520287036895752, -0.011858860030770302, 0.02498757652938366, 0.016316046938300133, 0.035338450223207474, -0.0024007742758840322, -0.022220192477107048, -0.012376551516354084, -0.022007877007126808, -0.03869921714067459, -0.0008635852136649191, 0.015785211697220802, 0.009427739307284355, 0.004101169295608997, -0.013826060108840466, -0.04087871313095093, 0.011776679195463657, -0.03189534693956375, -0.039201244711875916, -0.01979488879442215, 0.0035381305497139692, -0.04754585400223732, 0.028089281171560287, 0.0035726255737245083, 0.017148206010460854, -0.020817698910832405, -0.00886782631278038, -0.03634007275104523, 0.02167307585477829, -0.07563362270593643, -0.032415859401226044, -0.0025774661917239428, -0.030260106548666954, 0.010774293914437294, -0.027441762387752533, 0.014630920253694057, -0.024966400116682053, 0.002684324746951461, -0.0011824584798887372, -0.0190877728164196, -0.03336833789944649, -0.01344678457826376, -0.0026635017711669207, 0.00713554210960865, 0.006809759419411421, -0.031123017892241478, 0.010609432123601437, -0.03743387386202812, -0.07393922656774521, 0.04941762611269951, -0.01782122440636158, -0.048843350261449814, -0.04208671301603317, -0.019228145480155945, 0.04639548063278198, -0.04154401645064354, 0.01854492723941803, 0.09709490835666656, -0.023617567494511604, 0.0394798219203949, -0.0024196645244956017, -0.040546637028455734, -0.06253787130117416, 0.007689457852393389, 0.03530700504779816, -0.020120136439800262, 0.02254767157137394, 0.7917761206626892, 0.023898953571915627, 0.03657015785574913, 0.03045867569744587, -0.012350320816040039, -0.02133031003177166, 0.0013053846778348088, -0.028465701267123222, -0.006361712701618671, 0.013313394039869308, -0.03978770971298218, -0.007924248464405537, 0.017918437719345093, 0.04623246192932129, 0.03989040106534958, 0.016625864431262016, 0.001583373872563243, 0.011630269698798656, -0.023485027253627777, -0.05831644684076309, -0.003602720098569989, -0.011415745131671429, 0.006827096920460463, -0.0017467181896790862, -0.02416745014488697, -0.023389536887407303, -0.13827359676361084, -0.0468691922724247, -8.137012872733793e-33, -0.0022082007490098476, 0.01595371961593628, 0.02352491021156311, -0.009206661954522133, -0.027288155630230904, -0.01833702065050602, 0.017277607694268227, 0.046317677944898605, 0.01796157844364643, -0.00257277674973011, -0.01991046592593193, -0.029958799481391907, -0.000519987428560853, -0.036687497049570084, 0.01951955072581768, -0.017859390005469322, -0.015097532421350479, 0.031006112694740295, -0.05202391371130943, 0.01223305519670248, 0.03175603598356247, 0.014250586740672588, 0.0041335467249155045, -0.005231029354035854, 0.055617090314626694, -0.0001691726065473631, 0.028405331075191498, 0.05803884565830231, 0.01233858335763216, -0.042515166103839874, -0.04528858885169029, 0.024034110829234123, -0.020235538482666016, 0.017327846959233284, 0.00399330398067832, -0.08099013566970825, -0.04791237786412239, -0.00604713149368763, -0.012861456722021103, 0.010209986008703709, 0.0011160069843754172, -0.022154580801725388, -0.028035558760166168, -0.004459005314856768, -0.02008078061044216, 0.06843768060207367, 0.01604735665023327, 0.03911810740828514, 0.011210696771740913, 0.02837253361940384, -0.029817815870046616, 0.014589250087738037, 0.038467392325401306, 0.015636282041668892, 0.019507208839058876, 0.013294520787894726, -0.0019029935356229544, -0.010528062470257282, -0.037020307034254074, 0.009695913642644882, 0.0017147059552371502, 0.05154263600707054, -0.013669803738594055, 0.000587779504712671, 0.0038960909005254507, 0.035799600183963776, 0.0059235189110040665, 0.005114625673741102, -0.01534730102866888, 0.0008751872810535133, -0.014351818710565567, -0.006709958426654339, -0.03613372892141342, 0.008094403892755508, 0.043046340346336365, 0.006526841316372156, -0.009251446463167667, 0.009968788363039494, 0.0030692771542817354, 0.03218573331832886, -0.052851106971502304, 0.07252487540245056, 0.010387156158685684, -0.05399150401353836, -0.003183255437761545, 0.023609451949596405, 0.028613442555069923, -0.027052773162722588, -0.0007079755305312574, 0.05387967824935913, -0.02629360742866993, -0.03491454944014549, -0.04103679209947586, 0.026303475722670555, -0.03625009208917618, 8.155319727879911e-33, 0.03997451812028885, -0.028792046010494232, 0.02043294534087181, 0.02661176398396492, 0.06705381721258163, 0.009231878444552422, -0.004101546946913004, -0.007023470010608435, -0.027555452659726143, 0.030658923089504242, 0.006383408326655626, -0.037708621472120285, -0.012436745688319206, 0.03466074913740158, 0.0495009645819664, -0.02110898308455944, 0.0591232106089592, -0.02434820681810379, -0.022688988596200943, -0.006637280341237783, 0.022554993629455566, -0.025549164041876793, 0.010961327701807022, -0.00037622873787768185, 0.017892751842737198, 0.047375258058309555, -0.00882171094417572, 0.006942861247807741, -0.00834422092884779, -0.006306828465312719, 0.03786604106426239, -0.023119276389479637, 0.00013773285900242627, -0.0014987945323809981, -0.03245416283607483, -0.00033319942303933203, -0.007895595394074917, -0.02902505174279213, -0.030060581862926483, 0.012263795360922813, 0.01221319381147623, -0.031415630131959915, -0.0027059148997068405, 0.044556718319654465, -0.018574442714452744, -0.04943069815635681, 0.001728742616251111, -0.05511581152677536, -0.021556541323661804, -0.002257554791867733, 0.03489506244659424, 0.007863021455705166, 0.035367585718631744, 0.04908788949251175, -0.00029846877441741526, 0.0036065555177628994, 0.0523020438849926, 0.015478857792913914, -0.0024296098854392767, 0.03428599610924721, -0.017745349556207657, -0.011527231894433498, -0.019433513283729553, 0.005931738764047623, -0.03673546016216278, -0.046842221170663834, 0.06424617022275925, 0.008066529408097267, -0.02501162514090538, -0.02837543375790119, 0.004070049151778221, -0.0026473933830857277, 0.00036785262636840343, 0.055155884474515915, -0.004118219017982483, 0.0019004587084054947, -0.01868388056755066, -0.015851108357310295, 0.00255950796417892, -0.03158275783061981, 0.03404790535569191, -0.023569047451019287, 0.038843784481287, 0.0641009733080864, -0.012892933562397957, 0.054890718311071396, -0.01416668202728033, -0.011881728656589985, 0.04477761313319206, 0.007823021151125431, 0.008834767155349255, -0.007636518217623234, -0.011968724429607391, 0.04873389005661011, -0.0195656456053257, -1.327000820339208e-8, -0.02458258718252182, -0.02791609615087509, 0.001586108934134245, 0.017446789890527725, 0.02328159287571907, -0.00034159584902226925, -0.006018788553774357, -0.00010131469025509432, -0.045352790504693985, 0.04186338558793068, 0.037629399448633194, -0.04731421545147896, -0.015449794940650463, 0.01341105904430151, -0.017493093386292458, -0.05748466029763222, -0.021744996309280396, 0.05556725338101387, 0.025599688291549683, -0.022843608632683754, 0.012224447913467884, 0.04363187402486801, -0.034946125000715256, 0.02630435861647129, 0.04280863329768181, -0.03159584477543831, -0.00964613538235426, -0.06489872932434082, 0.05512617900967598, -0.014199653640389442, 0.03395066410303116, -0.017086023464798927, -0.031685635447502136, 0.027455896139144897, -0.003046786179766059, -0.06917416304349899, 0.053278326988220215, 0.07639966160058975, -0.023598961532115936, 0.0258542038500309, -0.017899585887789726, 0.012243218719959259, -0.024991899728775024, -0.029062321409583092, -0.006654981058090925, 0.02970704808831215, -0.07874617725610733, -0.001552025554701686, -0.022750306874513626, -0.02944997325539589, 0.021456213667988777, 0.003824911778792739, 0.048268094658851624, 0.07461624592542648, -0.011405911296606064, -0.013304007239639759, -0.004675230942666531, -0.018438000231981277, -0.05656822770833969, 0.008784220553934574, -0.007793417200446129, 0.00034943921491503716, 0.027107248082756996, -0.005201364401727915 ]
the-toyota-way-book-review
https://markhneedham.com/blog/2008/11/19/the-toyota-way-book-review
false
2008-11-26 20:46:09
Dave Thomas on Cloud Computing
[ "microsoft", "cloud", "amazon", "google" ]
[ "Software Development" ]
I went to see Object Mentor's Dave Thomas give a talk about cloud computing on Tuesday evening in a combined meeting of the http://sydneyaltdotnet.blogspot.com/[Sydney Alt.NET] user group and several others. I'd not seen him speak before but several colleagues had seen him at JAOO earlier this year so he came highly recommended. We started off with a plug for the http://jaoo.com.au/[JAOO Australia 2009] conference which will again be in Brisbane and Sydney at the beginning of May. I've not been to a JAOO conference before but just looking through http://jaoo.com.au/sydney-2008/schedule/monday.jsp[last year's slides] and looking at the quality of the speakers is enough to tell you it's worth attending. After that we moved onto his view on cloud computing, which I'm told was quite similar to one he gave at JAOO called 'http://jaoo.com.au/sydney-2008/presentation/Next+Generation+IT+-+Life+after+Jurassic+Middleware[Next Generation IT - Life After Jurassic Middleware]'. I've heard about http://en.wikipedia.org/wiki/Cloud_computing[cloud computing] but not much more beyond that so it was quite the learning experience for me. Some of the more interesting things he spoke about: * The opening part of the presentation spoke of the pain that we have created for ourselves in the software world with *over complex solutions* to problems which the majority of the time are just moving data from A to B and doing CRUD operations. He was particularly damning of Java and ORM in this section of the talk. * The main idea around cloud computing was that we should be able to *develop and deploy applications quickly*. We shouldn't have to rely on a production support team to deploy and take care of our application i.e. throw it over the fence, but should take responsibility for it. Deploying to the cloud gives us the ability to do this. * Services should be all about having a *simple API and hiding the complexity* behind this so that the consumer doesn't have to worry about it. I guess this ties in quite tightly with encapsulation, but he spoke about the leaking of complexity that we see in many APIs which make them much more difficult to use. * One idea I found interesting was that of *exposing legacy systems as atom feeds*. We often spend a lot of time trying to add tests around these systems to allow us to add new functionality, but this approach seemed to suggest just using them for their data and writing the code elsewhere. * *Javascript is the language of the future* if Dave Thomas is proved correct. I have certainly been doing more Javascript work recently, in particular using http://jquery.com/[jQuery]. As Dave mentioned, the tools are not quite there for Javascript development but he believe they will be in the next year or two. * In response to a question about some of the new features being planned in Java 7, he spoke of the need to choose the+++<strong>+++right language for the job+++</strong>+++ and his dislike of the current trend for object oriented languages to support functional programming concepts. The obvious thoughts here for me were that when it comes to parallel computing Erlang is best, for web development, Ruby, for client side development, C#. Of course we don't always have the choice when it comes to language as clients have to maintain what we have written but in an ideal world his ideas make sense. Overall a humorous and interesting talk and one that has made me intrigued to learn more about cloud computing.
null
null
[ 0.015772944316267967, -0.0035525450948625803, 0.006522392854094505, 0.05285221338272095, 0.08160170167684555, 0.021145598962903023, 0.018115462735295296, 0.06580204516649246, -0.0001988154835999012, 0.0022506730165332556, -0.039351630955934525, 0.00044444118975661695, -0.04894069582223892, 0.020914379507303238, -0.030788080766797066, 0.05771428346633911, 0.05560746043920517, -0.004997079260647297, 0.025581523776054382, 0.010552067309617996, 0.03478235751390457, 0.06488598883152008, 0.03096720203757286, 0.01842811144888401, 0.03647877648472786, 0.012463808059692383, 0.0009112187544815242, 0.01499900408089161, -0.05857833847403526, -0.02664169855415821, 0.025384822860360146, 0.004800562746822834, -0.012584233656525612, 0.014964064583182335, 0.01855553314089775, -0.008887425996363163, -0.004880158230662346, 0.01989865116775036, -0.018623551353812218, 0.025502346456050873, -0.05284959822893143, 0.04735490307211876, -0.01676999032497406, 0.013237953186035156, -0.05254006013274193, 0.011839154176414013, -0.036753732711076736, 0.012180962599813938, 0.02376258373260498, -0.008984116837382317, -0.06254126876592636, 0.025594456121325493, -0.006735060829669237, -0.003918640781193972, -0.021252769976854324, 0.03340824693441391, 0.016230113804340363, -0.07241737097501755, -0.013421992771327496, -0.031131556257605553, -0.020898882299661636, -0.02235223911702633, -0.002217273460701108, 0.025550048798322678, 0.03151920065283775, -0.03625466674566269, 0.0017712406115606427, 0.03654368221759796, -0.035016510635614395, 0.004522803705185652, -0.008580164983868599, -0.00009786900773178786, 0.006684737745672464, -0.016398677602410316, -0.0011292957933619618, -0.0633009746670723, -0.0007196093793027103, 0.06245753914117813, 0.02987326867878437, 0.040439777076244354, -0.028926031664013863, 0.009214439429342747, 0.009510141797363758, 0.03391559049487114, -0.008017433807253838, -0.052023518830537796, -0.020496580749750137, -0.026108019053936005, -0.06580867618322372, 0.05393732339143753, 0.018333876505494118, -0.04269200563430786, 0.016725201159715652, 0.03736041113734245, -0.008103989996016026, 0.019271424040198326, 0.031070968136191368, 0.003997307736426592, -0.011244026012718678, -0.025359297171235085, -0.012990239076316357, -0.029162907972931862, -0.017353782430291176, -0.005606780759990215, -0.0789894238114357, 0.007757323794066906, -0.024562999606132507, 0.000012446915206965059, -0.006131727248430252, 0.0035774344578385353, -0.0019281781278550625, 0.018777815625071526, -0.005185325630009174, 0.020514369010925293, -0.062019672244787216, 0.06912805885076523, 0.00009401381248608232, -0.06424881517887115, -0.009192687459290028, -0.0014318821486085653, 0.05197566747665405, 0.05149928480386734, -0.012425949797034264, 0.07463037222623825, 0.010258914902806282, 0.011560507118701935, -0.028416521847248077, 0.04978230595588684, -0.004892885219305754, -0.061511605978012085, -0.002046121284365654, 0.053149864077568054, -0.007568002212792635, -0.007045975420624018, 0.001482070772908628, -0.027098657563328743, 0.00697209732607007, 0.002640648977831006, 0.04546390473842621, 0.039332065731287, 0.008273185230791569, -0.05526858568191528, 0.008104044012725353, 0.013300369493663311, 0.023757055401802063, 0.006230246275663376, -0.01708800531923771, -0.033025264739990234, -0.0327165462076664, -0.01555260643362999, -0.0072357007302343845, 0.009238793514668941, 0.0037674931809306145, -0.05554642900824547, 0.050412118434906006, 0.08759705722332001, 0.03242693468928337, 0.02353666163980961, -0.009770700708031654, 0.019583534449338913, 0.019903670996427536, 0.029878290370106697, 0.0021016113460063934, 0.01127169281244278, 0.009183516725897789, -0.016392162069678307, -0.012463429011404514, 0.05029917508363724, 0.00802671816200018, 0.013579369522631168, -0.0673399344086647, -0.057114653289318085, 0.05194047838449478, -0.020335976034402847, -0.025074850767850876, 0.04001910611987114, 0.09201911091804504, 0.041638556867837906, 0.026178842410445213, -0.009445718489587307, -0.08511260896921158, 0.01854633539915085, 0.011761781759560108, 0.023648235946893692, 0.03800935670733452, -0.014406868256628513, 0.0644264966249466, 0.027865715324878693, 0.004734652116894722, 0.04795313626527786, -0.084877610206604, -0.089303158223629, -0.017774198204278946, -0.010549165308475494, 0.04583887755870819, -0.0184837244451046, 0.018592439591884613, 0.0430704765021801, 0.004773024935275316, 0.05898872762918472, 0.028289834037423134, -0.0026229091454297304, 0.01730625331401825, -0.042441751807928085, -0.06354907900094986, 0.04662742093205452, 0.03966209664940834, -0.016125939786434174, -0.04627625271677971, 0.005918914917856455, -0.010016134940087795, -0.018089644610881805, 0.029314203187823296, -0.012979498133063316, 0.031974658370018005, 0.0008831862360239029, 0.04438181221485138, -0.045549288392066956, 0.0203862264752388, -0.0367572046816349, 0.010990047827363014, 0.005861114710569382, -0.013289332389831543, 0.04515136778354645, 0.021264033392071724, 0.11591575294733047, 0.06474676728248596, -0.042424023151397705, -0.04159713536500931, 0.033519990742206573, 0.029509741812944412, -0.046997036784887314, -0.018218854442238808, -0.027313491329550743, 0.0129682756960392, 0.009279133751988411, -0.03496655076742172, -0.0539432168006897, 0.01219087652862072, -0.04382045939564705, -0.009309085085988045, 0.05203694477677345, -0.008916146121919155, 0.07044590264558792, 0.004043831955641508, -0.014202221296727657, 0.0018680465873330832, -0.04785214737057686, -0.04182875528931618, 0.003299514763057232, -0.008169936016201973, -0.014174283482134342, 0.04708954691886902, -0.013339841738343239, -0.021308505907654762, -0.04068329185247421, -0.017634959891438484, 0.04023890569806099, 0.05241825804114342, 0.07567920535802841, -0.030341876670718193, 0.07668483257293701, -0.03235510736703873, 0.034629225730895996, 0.009707045741379261, -0.040868617594242096, -0.035863250494003296, -0.055120836943387985, 0.016787603497505188, 0.001810327055864036, 0.0032870278228074312, -0.0061735608614981174, 0.02138754166662693, 0.003715363796800375, 0.0049721975810825825, -0.03439997136592865, 0.014028072357177734, -0.0023545557633042336, 0.0002893705968745053, -0.02492574416100979, 0.002384699648246169, 0.05489528924226761, -0.04404031112790108, 0.0013483745278790593, -0.004732783883810043, -0.07012055069208145, 0.04685787484049797, -0.07220381498336792, -0.04118988290429115, -0.019754605367779732, 0.021739797666668892, 0.018994050100445747, 0.017325537279248238, 0.020395269617438316, 0.055859871208667755, 0.0267463568598032, 0.01687694899737835, -0.004438852425664663, -0.021395504474639893, 0.02938360720872879, -0.017660636454820633, 0.008032958954572678, 0.026978816837072372, 0.0029405418317764997, -0.007124078460037708, -0.0677500069141388, 0.04277341812849045, -0.04005524516105652, -0.28468623757362366, 0.012361902743577957, 0.019088711589574814, -0.04611123725771904, 0.02667492814362049, 0.008476910181343555, 0.0022974677849560976, -0.051457151770591736, -0.01120699755847454, 0.014959010295569897, -0.023662474006414413, -0.031480707228183746, -0.012479785829782486, 0.042083535343408585, 0.029228104278445244, 0.04737844318151474, 0.020021982491016388, -0.03459712862968445, 0.01172606647014618, 0.028924578800797462, -0.03630829229950905, -0.06617319583892822, 0.01298152469098568, 0.022428669035434723, 0.03693963959813118, 0.06565582007169724, -0.07120710611343384, 0.030771955847740173, -0.054021067917346954, -0.011071463115513325, 0.00009728129953145981, -0.011334814131259918, 0.010237588547170162, -0.008206559345126152, -0.009438088163733482, -0.007159253116697073, 0.05496411770582199, 0.003909685183316469, 0.006999903358519077, -0.0037503857165575027, -0.02906559407711029, -0.04624617099761963, -0.007328985258936882, 0.03319079801440239, 0.07048871368169785, 0.003330058418214321, -0.07500382512807846, -0.010573813691735268, -0.047364868223667145, 0.06992211192846298, -0.04174625128507614, -0.0221848301589489, -0.02533683367073536, 0.04249389469623566, -0.01614082045853138, -0.0062372093088924885, -0.02176877111196518, -0.0074079399928450584, -0.054107338190078735, -0.016048278659582138, -0.00738653726875782, -0.04534996300935745, -0.005807351320981979, -0.05482306703925133, 0.003799952333793044, -0.05072277411818504, -0.06503839045763016, -0.009153762832283974, 0.08695504814386368, 0.011981886811554432, -0.012236449867486954, 0.02510816417634487, -0.01121673732995987, -0.09797082096338272, 0.008409678936004639, -0.00908735953271389, 0.003198024118319154, 0.014396675862371922, 0.031184161081910133, 0.03713938221335411, -0.03751783072948456, -0.05996570736169815, 0.005438739899545908, -0.0007683581789024174, 0.03924274072051048, -0.020515648648142815, 0.03950425609946251, 0.011843890883028507, -0.007845496758818626, 0.0014344144146889448, 0.06101517006754875, -0.037546832114458084, -0.028565220534801483, -0.020480945706367493, 0.02711770310997963, 0.014251960441470146, 0.007181593216955662, 0.014891527593135834, 0.0015079285949468613, 0.04069845378398895, -0.016575662419199944, -0.06537685543298721, 0.02397158555686474, -0.026763319969177246, -0.006591878831386566, 0.0015982185723260045, -0.032271768897771835, -0.0055099050514400005, 0.031913187354803085, 0.03312789276242256, 0.011468196287751198, -0.02655700594186783, 0.030857691541314125, -0.06434232741594315, -0.029828418046236038, -0.005892642308026552, 0.006417911499738693, 0.050600815564394, 0.026578407734632492, -0.025884859263896942, -0.04310191795229912, 0.0010527517879381776, 0.01651194505393505, -0.002657450968399644, -0.05958892032504082, -0.009991256520152092, -0.025176623836159706, 0.008020950481295586, 0.013039907440543175, 0.01686817780137062, -0.012954308651387691, 0.018038079142570496, 0.0416167750954628, -0.03679068386554718, 0.012206927873194218, -0.01923881098628044, -0.06530925631523132, -0.031619954854249954, 0.017635926604270935, 0.0015988339437171817, 0.012726109474897385, 0.0268514696508646, -0.008231028914451599, 0.03483298793435097, 0.030597634613513947, 0.023111550137400627, 0.0016325372271239758, 0.005968877114355564, 0.05436835065484047, 0.006195310037583113, -0.000004425956831255462, -0.08745508641004562, 0.012267464771866798, -0.036171671003103256, -0.03424106910824776, -0.022301193326711655, 0.05829239636659622, -0.03947020694613457, -0.04244036599993706, 0.002605890156701207, 0.006797971203923225, -0.05275287479162216, -0.03892115131020546, -0.017375735566020012, 0.03565168008208275, 0.06460534781217575, -0.014198568649590015, 0.00007811130490154028, -0.011365403421223164, -0.014768836088478565, -0.0008127497276291251, -0.00011037512012990192, -0.04671303927898407, 0.01216069795191288, 0.02966010943055153, 0.00014650273078586906, -0.001196681521832943, 0.006550714373588562, 0.054730337113142014, 0.0241541750729084, 0.00946256797760725, -0.027774905785918236, -0.01458853017538786, 0.012660736218094826, 0.06086783856153488, 0.04572167992591858, -0.001122097484767437, 0.0051391953602433205, -0.004863450303673744, -0.004762728698551655, -0.022969430312514305, 0.001386438263580203, -0.009315514005720615, 0.01648212969303131, -0.020812299102544785, -0.08727877587080002, 0.07230104506015778, 0.014353783801198006, 0.008511119522154331, 0.016307134181261063, -0.015428985469043255, -0.0050972579047083855, -0.02331654541194439, 0.03797446936368942, 0.04867487773299217, -0.07742714136838913, -0.01105186901986599, -0.007297258824110031, 0.0011174943065270782, -0.004540661815553904, -0.0010703979060053825, -0.035564448684453964, -0.011695675551891327, -0.015605157241225243, 0.019662847742438316, -0.058280616998672485, -0.028576558455824852, -0.00395434582605958, 0.01945503242313862, -0.006826470606029034, -0.019839894026517868, -0.004629367962479591, -0.020795781165361404, -0.03188122436404228, -0.03488039970397949, 0.028902489691972733, -0.033560123294591904, 0.006222227588295937, -0.017823372036218643, -0.03555450588464737, -0.00750749371945858, -0.03976082801818848, -0.01095636747777462, 0.03737114369869232, -0.019922954961657524, 0.014680213294923306, -0.01348222978413105, -0.0022741493303328753, -0.006443089805543423, 0.05176036059856415, -0.00879732146859169, -0.013363661244511604, -0.04794570058584213, -0.020915716886520386, -0.06760583072900772, 0.023495936766266823, -0.022963231429457664, 0.012652396224439144, 0.012378896586596966, 0.04765634983778, 0.020892754197120667, 0.02855749987065792, -0.01099115889519453, -0.013567470945417881, 0.040862105786800385, -0.06797175854444504, -0.02071441151201725, -0.04228520393371582, -0.06875735521316528, -0.01386954728513956, 0.000641338643617928, 0.0006431220681406558, -0.04210955649614334, 0.04507635906338692, 0.025713492184877396, 0.024069344624876976, 0.015345721505582333, -0.008177034556865692, 0.02446860447525978, -0.050838083028793335, 0.01891091838479042, -0.07015272229909897, 0.0024867968168109655, 0.0272864680737257, 0.0019001377513632178, 0.006052026059478521, 0.02712281048297882, -0.04735539108514786, 0.04554179683327675, -0.07975058257579803, -0.02663828618824482, 0.04557094722986221, -0.026119355112314224, -0.02854892611503601, 0.0008627332863397896, -0.08426478505134583, 0.028399787843227386, 0.04047807306051254, -0.030482344329357147, 0.007626751437783241, -0.0079119224101305, 0.0452762097120285, -0.010853225365281105, 0.047408297657966614, -0.04538249969482422, -0.01549581065773964, 0.07122137397527695, -0.001652965904213488, -0.002584044123068452, 0.06190904974937439, -0.01288933027535677, 0.047848742455244064, 0.028385357931256294, 0.006098460406064987, -0.01693149469792843, 0.020713085308670998, -0.01746079884469509, -0.04939984530210495, 0.03254859521985054, 0.003465867368504405, -0.026475997641682625, -0.027993449941277504, 0.04563980922102928, 0.023425908759236336, -0.043306391686201096, -0.052606165409088135, 0.0329434759914875, -0.07790093868970871, -0.0075183105655014515, -0.02794385701417923, -0.015428166836500168, -0.04778062924742699, 0.036168668419122696, 0.0017171363579109311, 0.022832920774817467, 0.08530396223068237, 0.019365139305591583, -0.010492519475519657, -0.0014399017672985792, 0.08669222146272659, 0.08537603169679642, 0.04824012517929077, 0.005826101638376713, 0.06176183000206947, -0.027235373854637146, -0.042722564190626144, 0.013526140712201595, -0.015008884482085705, -0.026600133627653122, -0.029861003160476685, 0.03247027471661568, 0.07435561716556549, 0.003283049678429961, 0.06403961032629013, -0.02336728759109974, -0.0019499604823067784, -0.00019197782967239618, 0.040867455303668976, 0.017909089103341103, 0.05310387164354324, 0.021883970126509666, 0.02656848542392254, -0.016363173723220825, -0.0591287687420845, 0.024299783632159233, -0.023555925115942955, -0.04529212787747383, 0.029570218175649643, -0.01141990628093481, 0.03395701199769974, 0.011234906502068043, 0.023849336430430412, 0.0825481042265892, -0.002709915628656745, 0.040025677531957626, -0.011937830597162247, 0.014763196930289268, -0.006086147855967283, 0.035824887454509735, -0.03059474751353264, -0.032459430396556854, -0.011946996673941612, -0.03165902569890022, -0.021220671012997627, -0.021857045590877533, -0.04792337864637375, 0.041794922202825546, -0.024686282500624657, 0.0025173863396048546, 0.02741512656211853, 0.007545265834778547, -0.03759518638253212, -0.053893301635980606, -0.041839033365249634, -0.033661287277936935, -0.04209151118993759, -0.03273143991827965, 0.022045565769076347, 0.005932776257395744, -0.042169976979494095, -0.0029779186006635427, -0.029071670025587082, -0.01732758991420269, 0.05264284461736679, -0.06248077005147934, -0.023877834901213646, 0.023588214069604874, -0.00013795970880892128, 0.010254969820380211, 0.024482008069753647, 0.05405021831393242, -0.0020986837334930897, -0.017748452723026276, -0.031105628237128258, 0.020970027893781662, 0.009141892194747925, 0.0054678055457770824, 0.009975041262805462, -0.09257920831441879, 0.02240682579576969, 0.029368335381150246, -0.01877984032034874, -0.0724954605102539, 0.016038382425904274, 0.044142402708530426, 0.005113151390105486, 0.050453320145606995, 0.012513091787695885, 0.011624309234321117, -0.03661873936653137, -0.029149970039725304, -0.01293414831161499, 0.014169861562550068, 0.05555420368909836, 0.014982135035097599, 0.10974448174238205, 0.057726141065359116, -0.009494422003626823, -0.05350635200738907, 0.0015340547543019056, 0.0016865658108144999, 0.0029395553283393383, -0.03272658586502075, -0.0327666699886322, -0.019432513043284416, -0.08726924657821655, -0.039219990372657776, 0.018833525478839874, -0.021789370104670525, -0.02058081515133381, 0.01740240305662155, 0.017624178901314735, -0.016016526147723198, 0.007280297577381134, -0.04133326932787895, 0.022810181602835655, -0.015633244067430496, -0.021040726453065872, -0.02355743758380413, 0.007308667991310358, -0.00023678022262174636, -0.010649516247212887, 0.004020830616354942, -0.03444863110780716, -0.0048179468140006065, -0.0030577091965824366, 0.03415021300315857, 0.03207087889313698, 0.03626221418380737, -0.009382396005094051 ]
[ -0.08229613304138184, -0.026559218764305115, -0.04790876433253288, -0.04676397517323494, 0.06333375722169876, -0.02763392962515354, -0.00007951527368277311, 0.024244002997875214, -0.029997022822499275, 0.0012605905067175627, -0.0073234946466982365, -0.0211756881326437, 0.009019145742058754, -0.02501784637570381, 0.09414472430944443, 0.013338085263967514, 0.009549988433718681, -0.11738760769367218, -0.033386606723070145, 0.039923060685396194, 0.012624228373169899, -0.04334390535950661, -0.057717494666576385, -0.04739327356219292, -0.013551322743296623, 0.029262125492095947, 0.04608248919248581, -0.042415693402290344, 0.01863584667444229, -0.14596593379974365, -0.008407337591052055, 0.001756170648150146, 0.05136165767908096, 0.014778987504541874, 0.015126085840165615, 0.03021157719194889, 0.0650937557220459, -0.00426476588472724, -0.03559120371937752, 0.030861347913742065, 0.0256675835698843, 0.0012179029872640967, -0.0360398069024086, -0.012133024632930756, 0.039464905858039856, -0.017796555534005165, -0.003840535879135132, -0.02861378900706768, -0.04510698467493057, -0.005116878543049097, -0.051779989153146744, -0.01594877988100052, -0.01983955129981041, -0.0433497317135334, 0.0009385226294398308, 0.028174109756946564, 0.018303895369172096, 0.07745509594678879, -0.015331284143030643, -0.002419274765998125, 0.011178146116435528, 0.009316355921328068, -0.14702993631362915, 0.10964687168598175, 0.07096875458955765, 0.04501677304506302, -0.060294050723314285, -0.04645317792892456, -0.000050030710553983226, 0.0701637864112854, 0.02942710928618908, -0.029445333406329155, -0.011961588636040688, 0.03297794610261917, 0.0029388833791017532, 0.017127903178334236, 0.005752327386289835, 0.04429486766457558, 0.014581829309463501, -0.056950170546770096, 0.010459039360284805, 0.013345649465918541, -0.02215232141315937, 0.010497355833649635, -0.06337305903434753, 0.018481003120541573, -0.007093730382621288, 0.06049109622836113, 0.0007301807054318488, 0.036758337169885635, 0.010811902582645416, 0.004583258181810379, 0.06347319483757019, 0.0033937881235033274, -0.05506899580359459, -0.02445124462246895, 0.010402483865618706, 0.0047501493245363235, -0.04268248751759529, 0.42661118507385254, -0.020201247185468674, -0.01972869783639908, 0.07476546615362167, 0.0292280875146389, -0.006290517281740904, -0.00552329933270812, 0.01850074902176857, -0.07309974730014801, 0.04173608124256134, -0.0019980566576123238, 0.02807720936834812, 0.028916414827108383, 0.06176989525556564, -0.032746270298957825, 0.005303078331053257, 0.031300321221351624, 0.016205349937081337, 0.03453074023127556, -0.01683085970580578, -0.023757847025990486, -0.009954433888196945, 0.015025186352431774, 0.04608653858304024, 0.0038411987479776144, -0.013781096786260605, -0.015091205015778542, 0.03675731644034386, 0.06270186603069305, 0.009110414423048496, -0.001944577437825501, 0.05160584673285484, -0.05479814112186432, -0.05023736506700516, -0.005475930869579315, 0.03193189948797226, 0.009630519896745682, 0.014719633385539055, -0.06040775403380394, 0.003058034460991621, 0.0748424232006073, 0.010665152221918106, 0.018943216651678085, 0.017362479120492935, -0.03191938251256943, -0.029289742931723595, 0.116335928440094, 0.06022804602980614, -0.03672953322529793, -0.032691411674022675, -0.03943274915218353, 0.027475768700242043, 0.03237117826938629, 0.011423180811107159, -0.058728501200675964, 0.04593415930867195, -0.0030060443095862865, 0.1004718467593193, 0.028235910460352898, -0.03966541215777397, -0.005670617800205946, -0.00565179530531168, -0.0189838707447052, -0.0349198617041111, 0.08194313198328018, 0.05763493850827217, -0.130790576338768, -0.008891524747014046, 0.011190162971615791, 0.041912902146577835, -0.04664201661944389, -0.02596639283001423, 0.030789323151111603, -0.028907449916005135, -0.005550981964915991, 0.07203315943479538, -0.05728251487016678, -0.04250193014740944, 0.0216037780046463, 0.03025742806494236, 0.008929923176765442, -0.00824500061571598, -0.032615263015031815, -0.021409299224615097, -0.015257674269378185, -0.02019733004271984, -0.0744747444987297, -0.03004620410501957, 0.00861371960490942, -0.048297397792339325, -0.02373075671494007, -0.04181290790438652, 0.00023663627507630736, -0.08665531128644943, 0.08920270204544067, -0.018576059490442276, -0.04801015555858612, 0.020915595814585686, -0.011436142027378082, -0.021680880337953568, -0.022332048043608665, -0.038396961987018585, 0.021329021081328392, -0.05982828885316849, 0.02712300233542919, -0.058991219848394394, 0.021004652604460716, 0.050133805721998215, -0.014110137708485126, 0.07900085300207138, 0.06171776354312897, -0.0138349374756217, -0.034146618098020554, 0.014588379301130772, 0.034997452050447464, -0.011032812297344208, -0.0034599141217768192, 0.028033005073666573, 0.009652792476117611, -0.02402493543922901, 0.005250206217169762, 0.0015604316722601652, 0.0174393393099308, -0.05232405662536621, -0.3491465747356415, -0.03664723411202431, -0.045121461153030396, -0.009584984742105007, 0.032299142330884933, -0.02238764800131321, 0.0356537364423275, 0.0018732617609202862, -0.001363900606520474, 0.034310270100831985, 0.07518143206834793, -0.013263768516480923, 0.0340077206492424, -0.07416553050279617, -0.016944026574492455, 0.008118975907564163, -0.014518864452838898, -0.007804873399436474, -0.02062768116593361, -0.0003908642684109509, -0.008576733060181141, 0.013428541831672192, -0.03647317364811897, -0.06782304495573044, -0.02543294057250023, -0.04801608994603157, 0.12183539569377899, -0.01413657609373331, 0.07720506936311722, -0.029576018452644348, 0.04248891770839691, -0.000990835134871304, 0.01612817868590355, -0.13802678883075714, 0.015096964314579964, -0.00022558118507731706, 0.04127074033021927, -0.01123500894755125, -0.0010621369583532214, -0.037143342196941376, -0.04598555713891983, 0.02226928062736988, -0.062316540628671646, -0.043815046548843384, -0.0480450764298439, 0.013874168507754803, -0.033522963523864746, -0.03353181108832359, -0.04064558073878288, 0.05670410394668579, -0.009239120408892632, -0.012607458047568798, 0.021915089339017868, 0.016329944133758545, -0.007459286600351334, -0.03953571245074272, -0.0585080049932003, -0.001978435320779681, 0.01107361912727356, 0.026815807446837425, 0.02257142774760723, 0.056560955941677094, 0.002177169546484947, -0.0541968010365963, -0.0018836598610505462, -0.024942811578512192, 0.01044437289237976, 0.03955316171050072, 0.030431533232331276, -0.02692955546081066, -0.02428118884563446, 0.0856817290186882, -0.01146761141717434, -0.004124484024941921, 0.0439567007124424, 0.0034828567877411842, 0.0017718151211738586, 0.01775376684963703, 0.01946980692446232, 0.019606739282608032, 0.045954570174217224, -0.021429186686873436, 0.050199080258607864, -0.010618898086249828, -0.006071149371564388, 0.029842829331755638, -0.01951834373176098, -0.03610001131892204, 0.006948647554963827, -0.003564894199371338, -0.04089280590415001, -0.015081104822456837, -0.03601660951972008, -0.06933541595935822, 0.07384315878152847, -0.00663025164976716, -0.2532036006450653, 0.008914297446608543, 0.05612540617585182, 0.027752269059419632, -0.012107126414775848, 0.036652036011219025, 0.03346524387598038, -0.026173362508416176, 0.03242911025881767, 0.0370696559548378, 0.006741546094417572, 0.01509906817227602, -0.009488362818956375, -0.003953511826694012, 0.05870451033115387, 0.00728868693113327, 0.04144492372870445, 0.012536087073385715, -0.016706092283129692, 0.007967807352542877, 0.003109544515609741, -0.012323752976953983, 0.12683627009391785, 0.00612784456461668, 0.040271349251270294, 0.037129972130060196, -0.02228032797574997, 0.0500534363090992, 0.0676884576678276, -0.004888627212494612, 0.010503734461963177, -0.022834600880742073, 0.014281490817666054, -0.01412393432110548, 0.008638665080070496, -0.09528564661741257, -0.011538581922650337, 0.02226928249001503, 0.04109068587422371, 0.015154234133660793, 0.03422995284199715, -0.0002930962946265936, -0.00661007734015584, 0.018396953120827675, 0.05803608149290085, 0.015519833192229271, 0.004393765702843666, -0.05388561263680458, -0.009586605243384838, -0.015933994203805923, -0.04682909697294235, -0.06292421370744705, 0.040539003908634186, 0.004991521127521992, 0.011365002021193504, 0.0819450169801712, 0.03868740051984787, -0.040607403963804245, -0.028202136978507042, -0.01880277507007122, 0.005524252541363239, -0.04199973866343498, 0.06412799656391144, 0.003549334593117237, 0.05472688376903534 ]
[ -0.020949730649590492, 0.01063944585621357, 0.018210621550679207, -0.007762368768453598, 0.007797176018357277, 0.008004844188690186, 0.023600222542881966, -0.007651375140994787, -0.019927946850657463, 0.023515809327363968, -0.00549946678802371, 0.006708638276904821, 0.03372780978679657, -0.00957924872636795, 0.046237897127866745, 0.0007702662260271609, 0.02044181153178215, -0.03972601518034935, 0.01715991087257862, -0.013241518288850784, -0.00911780446767807, 0.03890378028154373, -0.01606854982674122, -0.031135838478803635, -0.003782208077609539, 0.046783119440078735, -0.032524604350328445, 0.0018896178808063269, 0.02096252515912056, -0.1259319931268692, -0.032721225172281265, -0.015163908712565899, -0.018764421343803406, 0.01694854535162449, 0.03328327089548111, -0.010642049834132195, 0.011244602501392365, -0.0425485298037529, 0.013901475816965103, -0.018893830478191376, 0.021914660930633545, -0.02197973057627678, -0.0364881195127964, -0.012516923248767853, -0.005440960638225079, -0.004403586965054274, -0.010915311984717846, -0.05325331538915634, -0.016464954242110252, 0.012518982402980328, -0.035986632108688354, -0.016065532341599464, -0.0023445661645382643, -0.0030477182008326054, -0.014813139103353024, -0.011191574856638908, -0.007421829272061586, 0.0187876857817173, -0.015329894609749317, -0.022957714274525642, -0.004794200416654348, -0.04517167806625366, -0.025007124990224838, -0.009027007967233658, 0.008281531743705273, -0.025346975773572922, -0.00735064223408699, 0.0033644281793385744, -0.031710125505924225, 0.01998729817569256, -0.012632044032216072, 0.025432145223021507, -0.03998933732509613, -0.004342226777225733, -0.0012936578132212162, -0.00042463504360057414, 0.030345717445015907, 0.0027907267212867737, 0.018141955137252808, -0.0038780567701905966, -0.012193277478218079, 0.02641414850950241, 0.015011439099907875, 0.02265612594783306, -0.032371532171964645, 0.013903815299272537, 0.043887559324502945, -0.01193107571452856, 0.007008246146142483, -0.0056918044574558735, -0.021527137607336044, 0.0025985571555793285, 0.01663624867796898, 0.0040012444369494915, -0.0915076956152916, -0.025412555783987045, -0.01950482837855816, -0.02392367087304592, -0.004607479088008404, 0.8484330773353577, 0.0028907284140586853, 0.02776825986802578, 0.035684194415807724, 0.01340259239077568, 0.03626738861203194, 0.009744971990585327, -0.05476018041372299, 0.013424043543636799, 0.028924046084284782, -0.03300086781382561, -0.009972590953111649, 0.004313507582992315, 0.013615606352686882, 0.020915860310196877, 0.022406574338674545, 0.031167874112725258, 0.04860446974635124, 0.01772426627576351, -0.010883742943406105, 0.003976365085691214, 0.03869118541479111, -0.04197445139288902, 0.012190623208880424, -0.008559946902096272, -0.017762232571840286, -0.15620186924934387, -0.022648904472589493, -8.183993708516313e-33, 0.043335217982530594, -0.021972816437482834, 0.02563297748565674, -0.017052844166755676, 0.041339386254549026, -0.03318019211292267, 0.03324348106980324, 0.0384603813290596, -0.0326576754450798, -0.026954911649227142, -0.019860221073031425, 0.006234551314264536, 0.022171052172780037, -0.03179068863391876, 0.026030555367469788, -0.04751580208539963, -0.011067272163927555, 0.021147677674889565, 0.019421974197030067, 0.001449979841709137, 0.029123404994606972, 0.038714539259672165, -0.007776841055601835, -0.005661881063133478, 0.0056642889976501465, 0.019883383065462112, 0.05432843044400215, -0.003338720416650176, 0.005951177328824997, -0.047011587768793106, -0.003243462648242712, 0.01978379487991333, -0.02524716779589653, -0.020269645377993584, -0.00023835193132981658, -0.03477764129638672, -0.03263071924448013, -0.0003938359732273966, -0.024572335183620453, -0.042720891535282135, -0.01919180154800415, 0.004675638396292925, -0.038641635328531265, 0.008094153366982937, -0.039085835218429565, -0.02998828887939453, 0.02196287177503109, -0.01905621401965618, 0.03483066335320473, 0.014048511162400246, -0.011665929108858109, 0.0012784150894731283, 0.014332612976431847, 0.015108596533536911, 0.007977242581546307, 0.017828650772571564, 0.017678920179605484, -0.011127463541924953, 0.008112804032862186, 0.00973817240446806, -0.018680408596992493, -0.04563544690608978, -0.01926913857460022, 0.015800926834344864, -0.04424526169896126, -0.009901308454573154, 0.00628844927996397, 0.015633394941687584, 0.017942536622285843, 0.01457723043859005, -0.02736605890095234, 0.000049785172450356185, 0.0017670278903096914, -0.018653886392712593, 0.00328721571713686, -0.017676670104265213, 0.00022680216352455318, 0.014186328276991844, -0.039723001420497894, 0.030414661392569542, 0.026655761525034904, 0.015423860400915146, 0.011163996532559395, -0.025569556280970573, -0.052323974668979645, -0.006553573068231344, 0.010812709107995033, 0.013739376328885555, 0.012318518944084644, 0.015134359709918499, 0.054692577570676804, 0.018872303888201714, 0.012752397917211056, -0.03676363080739975, -0.0576208233833313, 8.147261714105025e-33, -0.02170846238732338, -0.02069646306335926, -0.060085229575634, 0.015066063962876797, 0.020394785329699516, -0.02306923270225525, 0.02945348061621189, 0.02553640305995941, -0.043617814779281616, 0.03276434168219566, -0.029883475974202156, 0.04735443368554115, -0.02030363120138645, 0.009857209399342537, 0.05665063485503197, -0.026496419683098793, 0.027628857642412186, -0.04861254617571831, 0.03566369786858559, 0.013670854270458221, 0.030127979815006256, 0.0037442438770085573, 0.019532766193151474, -0.02537086419761181, 0.031979188323020935, 0.0634792149066925, -0.024658937007188797, 0.028415655717253685, 0.010801094584167004, -0.011610091663897038, -0.004853799007833004, -0.0132265854626894, 0.015348454937338829, -0.01603674702346325, -0.012581717222929, 0.014663432724773884, -0.0115406084805727, 0.01323682814836502, -0.009602664038538933, -0.00042882750858552754, 0.000990188680589199, -0.033721037209033966, 0.005246646236628294, 0.03482244908809662, 0.035525400191545486, 0.015416237525641918, -0.0253074262291193, -0.011242970824241638, -0.037802547216415405, 0.036793891340494156, -0.0027516894042491913, 0.021716119721531868, 0.009759536013007164, 0.00039220144390128553, -0.0009710830636322498, -0.019806750118732452, -0.024961886927485466, 0.012621449306607246, -0.022514887154102325, 0.012888338416814804, 0.026756158098578453, -0.03056165762245655, -0.009823450818657875, 0.007149013690650463, -0.027217663824558258, -0.003234428120777011, 0.013758008368313313, -0.0019867881201207638, -0.0104509387165308, -0.03496931865811348, -0.030335640534758568, 0.012906203977763653, 0.008857096545398235, 0.028752122074365616, 0.0349707193672657, -0.038388442248106, -0.03997903689742088, 0.017499808222055435, -0.033503562211990356, 0.04763678461313248, -0.01935570500791073, 0.031021548435091972, -0.017244413495063782, -0.00979178212583065, -0.008466730825603008, -0.007754811551421881, -0.004349675495177507, 0.02046331763267517, -0.01557996217161417, -0.0035129785537719727, -0.022771526128053665, -0.0342402346432209, -0.016287142410874367, 0.034987520426511765, -0.02509806677699089, -1.3525509601208796e-8, -0.010084161534905434, 0.013988761231303215, 0.0006358511745929718, 0.003900339361280203, 0.0395573265850544, 0.018632205203175545, 0.0019589264411479235, 0.023836573585867882, 0.035139065235853195, 0.02436460554599762, 0.04021288827061653, -0.03243742883205414, -0.00013120505900587887, 0.03887546434998512, 0.012885097414255142, -0.01679963245987892, -0.00437110336497426, -0.01952293887734413, 0.026948435232043266, 0.013290083035826683, 0.020002994686365128, 0.07194358110427856, 0.001982456538826227, 0.0064889052882790565, 0.024038268253207207, 0.027971813455224037, -0.012891809456050396, -0.06986869871616364, -0.02985398843884468, 0.008629622869193554, -0.05106513574719429, -0.04033946990966797, -0.014802097342908382, 0.02467641979455948, -0.03786534443497658, -0.021487446501851082, 0.019692055881023407, 0.016056865453720093, -0.005809711758047342, 0.018529139459133148, 0.0001056283144862391, 0.009869399480521679, -0.011625918559730053, -0.011929363012313843, -0.006527916062623262, 0.033758360892534256, 0.0027684508822858334, 0.008263684809207916, 0.0002575422404333949, -0.042205944657325745, -0.013997691683471203, -0.012374884448945522, 0.014147641137242317, 0.02408667467534542, 0.014598395675420761, -0.003947906196117401, 0.019087309017777443, -0.04508155956864357, 0.004956417251378298, 0.03978879004716873, 0.0010403117630630732, 0.0496344268321991, -0.009098602458834648, -0.002998337848111987 ]
dave-thomas-on-cloud-computing
https://markhneedham.com/blog/2008/11/26/dave-thomas-on-cloud-computing
false
2008-11-26 06:29:06
Agile/Lean: All or Nothing?
[ "agile", "lean" ]
[ "Agile" ]
While reading http://www.markhneedham.com/blog/2008/11/19/the-toyota-way-book-review/[The Toyota Way] one of the ideas which stood out for me was the constant mentioning of organisations which picked bits of The Toyota Way, implemented them, achieved some short term gains but then eventually these improvements and went back to the way they were before. I noticed a similar theme coming out in the http://practicalagility.blogspot.com/2008/11/agile-circling-drain.html[series] http://codebetter.com/blogs/jeremy.miller/archive/2008/11/16/thoughts-on-the-decline-and-fall-of-agile.aspx[of] http://blog.objectmentor.com/articles/2008/11/16/dirty-rotten-scrumdrels[posts] in the last week or so about the http://jamesshore.com/Blog/The-Decline-and-Fall-of-Agile.html[decline of agile]. I have worked on several projects over the last couple of years with varying levels of agile being applied. I am aware that agile is considered to be something that you are rather than that you do but for this post agile refers to agile http://agilemanifesto.org/principles.html[principles] and http://www.agileadvice.com/archives/2006/09/practices_of_ag.html[practices]. I have noticed that it is much easier to get working software out the door when we follow these principles and practices but becomes way more difficult as soon as we are unable to follow some of them. This is a similar idea to one I noticed in http://www.markhneedham.com/blog/2008/11/19/the-toyota-way-book-review/[The Toyota Way]: ____ Early on in the book the TPS House was mentioned - the idea being that everything must be strong from the use of the tools to the belief in the philosophy. It seemed to me from reading this that applying Toyota's ideas successfully is an all or nothing game - i.e. it would be very difficult to be successful in the long term by just picking and choosing certain ideas without having the other ones to support them. ____ One of the common misunderstandings about agile is that writing tests makes us move more slowly and that removing them will allow us to go more quickly. While this may be true in the short term it eventually catches up with us and we can look forward to long sessions with the debugger trying to work out why the code isn't working as we expected. A couple of months ago I was considering whether there are any agile practices which are absolutely key to ensuring success. I ran this idea by several colleagues who all pointed out that it was the principles that were absolutely key and not necessarily the practices which are derived from them. I believe we can therefore make a link between the practices and principles of agile, such that if we don't believe in thoroughly testing our code, for example, then we are not adhering to the principle of delivering working software or paying continuous attention to technical excellence. Having said that I have also worked on projects where delivering frequently was not something which the business considered beneficial and we only delivered software at the end of the project. We did take the time to carry out practice deployments more frequently than that to ensure we knew the deployment process but there was no actual deliverable until right at the end, and despite not completely adhering to this principle we were still able to successfully deliver. As Jeremy Miller points out in http://codebetter.com/blogs/jeremy.miller/archive/2008/11/16/thoughts-on-the-decline-and-fall-of-agile.aspx[his response] to the original post: ____ In the early days, XP was roundly criticized because every practice only seemed to be safe due to the existence of the other practices. Take one out, and the others weren't that great by themselves. I think that's more or less a fair criticism, but my response is simply to adopt, and effectively apply, everything you need to make Agile development successful. ____ Life is made much easier if everyone involved into the project buys into the agile or lean approach but even if they don't it is still possible to find ways to succeed, it just might be a bit more difficult.
null
null
[ 0.016684511676430702, -0.012697025202214718, -0.00014229312364477664, 0.028495723381638527, 0.09234768152236938, 0.00587089080363512, 0.021585384383797646, 0.0532541461288929, 0.016741391271352768, -0.015779774636030197, -0.019398560747504234, -0.008484691381454468, -0.04427451640367508, 0.01800040528178215, -0.04628121852874756, 0.06863939017057419, 0.048124171793460846, 0.007476045284420252, 0.015057075768709183, -0.005170408636331558, 0.0348084419965744, 0.0924529880285263, 0.02532300166785717, 0.027056347578763962, 0.04839567467570305, 0.00860973633825779, 0.024511883035302162, -0.0007764609181322157, -0.07156830281019211, -0.016988033428788185, 0.03273696452379227, 0.01705585978925228, 0.007346613798290491, 0.024281267076730728, 0.031889885663986206, -0.02858869731426239, 0.0044703856110572815, 0.0037719786632806063, -0.0017006471753120422, -0.021724320948123932, -0.062258344143629074, 0.04123101010918617, -0.028668750077486038, 0.01993774063885212, -0.029347745701670647, 0.00018979170999955386, -0.03444444388151169, 0.011184555478394032, -0.002026499481871724, -0.01793534867465496, -0.05326448008418083, 0.01943671517074108, 0.010990848764777184, -0.018134770914912224, -0.01842782460153103, 0.04787791147828102, 0.0022528385743498802, -0.04876232147216797, 0.0010925841052085161, -0.05682817101478577, -0.016644449904561043, -0.024579742923378944, 0.009763766080141068, 0.03972303122282028, 0.041167378425598145, -0.04720793291926384, -0.010253789834678173, 0.036632321774959564, -0.036407433450222015, 0.012005098164081573, -0.047090619802474976, 0.014033333398401737, -0.006088195368647575, 0.003818645142018795, 0.004716174211353064, -0.06957089900970459, 0.002329477109014988, 0.08777141571044922, 0.03506085276603699, 0.027912188321352005, -0.020204585045576096, 0.0362270213663578, 0.0011687511578202248, 0.028711771592497826, -0.03712926432490349, -0.03408366069197655, 0.004783633630722761, -0.013252748176455498, -0.0742899551987648, 0.0661362037062645, 0.00358251528814435, -0.06818057596683502, 0.0045803687535226345, 0.05523155629634857, -0.0188611950725317, 0.0019111309666186571, 0.04038502648472786, 0.02033234015107155, -0.010688777081668377, -0.023467859253287315, -0.03111853450536728, -0.0029649839270859957, -0.0005047186277806759, 0.006337333470582962, -0.07491253316402435, 0.007908069528639317, -0.02481958083808422, 0.0001583062403369695, -0.0024658748880028725, 0.00699481088668108, -0.02945522591471672, 0.029503069818019867, -0.0396496057510376, 0.008518565446138382, -0.05689923092722893, 0.060022395104169846, -0.0005329802515916526, -0.05893845856189728, -0.01845027692615986, -0.00807788223028183, 0.02355646714568138, -0.0077245160937309265, -0.009279669262468815, 0.07172875106334686, 0.021606652066111565, 0.007709610741585493, -0.04140373691916466, 0.06926245987415314, -0.022031962871551514, -0.05478249490261078, -0.015271386131644249, 0.045686349272727966, -0.046222250908613205, -0.01900048926472664, 0.0009918190771713853, -0.018785366788506508, 0.00955132208764553, 0.012104823254048824, 0.027518201619386673, 0.05114976316690445, -0.006948800291866064, -0.023312434554100037, 0.01692042127251625, 0.018444126471877098, 0.027295609936118126, -0.015184986405074596, 0.01517938356846571, -0.029282499104738235, -0.056104108691215515, -0.024161094799637794, 0.021008124575018883, 0.012418518774211407, 0.005028161220252514, -0.024233467876911163, 0.034234143793582916, 0.07611344754695892, 0.02921716868877411, 0.016548866406083107, -0.016140684485435486, 0.04564610868692398, 0.027616199105978012, 0.02446345053613186, 0.01968231424689293, 0.011166982352733612, 0.01204532291740179, -0.005929155740886927, -0.00560724176466465, 0.037744905799627304, 0.01009655836969614, 0.005845172330737114, -0.05997846648097038, -0.0556006133556366, 0.037923604249954224, -0.04446828365325928, -0.0177777037024498, 0.02953365631401539, 0.08471876382827759, 0.055593885481357574, 0.04397458955645561, 0.003933168947696686, -0.07841183990240097, 0.03752712160348892, 0.031207676976919174, 0.020404722541570663, 0.01817922666668892, -0.026649337261915207, 0.0523359552025795, 0.03410709649324417, -0.004747818689793348, 0.032271649688482285, -0.0826897993683815, -0.11293771117925644, -0.028129439800977707, -0.038849104195833206, 0.04970186948776245, -0.0480266697704792, 0.012935856357216835, 0.049242451786994934, 0.005784620065242052, 0.06652859598398209, 0.017084013670682907, 0.006877800915390253, 0.016745828092098236, -0.048307083547115326, -0.026106739416718483, 0.06424374878406525, 0.035347048193216324, 0.0126199247315526, -0.06067023426294327, 0.01464321743696928, -0.016885647550225258, -0.005012699402868748, 0.035007305443286896, -0.01562640629708767, 0.04421360045671463, -0.012800987809896469, 0.08572240173816681, -0.028478583320975304, 0.05668899044394493, -0.04335995018482208, 0.0006231604493223131, -0.001571720466017723, -0.017209799960255623, 0.02910201996564865, -0.005983920302242041, 0.0999920442700386, 0.06452935934066772, -0.04780295863747597, -0.04044533893465996, 0.025851691141724586, 0.024024371057748795, -0.024133766070008278, 0.0037220565136522055, -0.01279523503035307, 0.009876717813313007, 0.01910870149731636, -0.06556937098503113, -0.04691137373447418, 0.01682513952255249, -0.06094660982489586, 0.015487082302570343, 0.04619498923420906, -0.011629609391093254, 0.0728575736284256, 0.0089605413377285, -0.007009955123066902, -0.018182629719376564, 0.002736255992203951, -0.052072811871767044, 0.007675982546061277, 0.012197988107800484, -0.034674521535634995, 0.05465329438447952, -0.03180975466966629, -0.03342009708285332, -0.03353201970458031, -0.026818720623850822, 0.004580701235681772, 0.056945983320474625, 0.059828221797943115, -0.03872662037611008, 0.04552024230360985, -0.007124015130102634, 0.0440354160964489, 0.009374475106596947, -0.029582228511571884, -0.037835072726011276, -0.05291781947016716, -0.0035953654441982508, 0.0392325259745121, 0.0029780648183077574, 0.026593763381242752, 0.020286398008465767, 0.018784772604703903, -0.022181890904903412, -0.011518541723489761, 0.04238881543278694, 0.02137250080704689, -0.001713899546302855, -0.025257475674152374, -0.018211454153060913, 0.0438145287334919, -0.036748867481946945, -0.020466648042201996, 0.0020271153189241886, -0.10000628232955933, 0.04283130168914795, -0.05505192279815674, -0.030954772606492043, -0.0011173035018146038, 0.0017285916255787015, 0.055428389459848404, 0.011866144835948944, 0.026938743889331818, 0.0464424267411232, 0.0136552220210433, -0.0004272772348485887, 0.0018685986287891865, -0.004241910297423601, 0.04309482499957085, 0.014555273577570915, -0.024820491671562195, 0.06698407977819443, 0.009016500785946846, 0.007059637922793627, -0.05285719037055969, 0.049097251147031784, -0.041412353515625, -0.2844043970108032, 0.030684560537338257, 0.015975680202245712, -0.050607938319444656, 0.03713559731841087, 0.007107245270162821, 0.009217573329806328, -0.06999529153108597, -0.014479422010481358, 0.012416668236255646, -0.04752207547426224, -0.0428217276930809, -0.009852482005953789, 0.025431953370571136, 0.001089234254322946, 0.02584046684205532, 0.04138695076107979, -0.016877280548214912, 0.008264684118330479, 0.05183234065771103, -0.028337594121694565, -0.07334404438734055, 0.0043349373154342175, 0.03101053088903427, 0.04140804335474968, 0.05692610889673233, -0.0791669711470604, 0.050344761461019516, -0.05440908670425415, 0.011321372352540493, 0.018523715436458588, 0.013583417981863022, -0.00778789771720767, -0.027949202805757523, -0.00433082040399313, -0.009897695854306221, 0.03607838973402977, -0.0053738784044981, -0.018157247453927994, 0.0023012482561171055, -0.012986415065824986, -0.028470918536186218, 0.022686101496219635, 0.017733467742800713, 0.07107192277908325, 0.00947112962603569, -0.07629559189081192, -0.005611090920865536, -0.02569967694580555, 0.08833928406238556, -0.028228076174855232, -0.006837126333266497, 0.004350915551185608, 0.04253694415092468, 0.009098370559513569, -0.027539702132344246, 0.018124453723430634, -0.038454536348581314, -0.02311566099524498, -0.03357967361807823, -0.0007901032222434878, -0.03377581015229225, -0.012190334498882294, -0.05586309731006622, -0.003050795290619135, -0.05683106556534767, -0.055926430970430374, -0.0041846600361168385, 0.054820820689201355, 0.0053345519118011, -0.05449894443154335, -0.0037240907549858093, 0.007741154171526432, -0.10151553899049759, 0.004578482825309038, 0.008659894578158855, -0.011565868742763996, 0.016518712043762207, 0.00816789735108614, 0.04670467972755432, -0.02718946896493435, -0.05658451467752457, 0.005612778477370739, 0.0006081621395424008, 0.03443238511681557, -0.020392270758748055, 0.05608673021197319, 0.04599921405315399, -0.04084068909287453, 0.009073459543287754, 0.06889146566390991, 0.013599998317658901, -0.02826659567654133, -0.034813567996025085, 0.048985715955495834, 0.009920189157128334, 0.034312862902879715, -0.006418188568204641, 0.005427958443760872, 0.02511703222990036, -0.010377364233136177, -0.058300770819187164, 0.01441729161888361, -0.007574131712317467, -0.011727338656783104, -0.018123462796211243, -0.052883002907037735, 0.006201020907610655, 0.03027782216668129, 0.02057374082505703, 0.015696164220571518, -0.031323835253715515, 0.01335279829800129, -0.04697839543223381, -0.03932509571313858, -0.014279589988291264, -0.007640921510756016, 0.04629332944750786, -0.018352996557950974, 0.010221048258244991, -0.058659881353378296, 0.007231697905808687, -0.03628351539373398, -0.013864862732589245, -0.06744741648435593, -0.010362374596297741, -0.015373419038951397, -0.04464884102344513, 0.015910930931568146, 0.0139132896438241, 0.00549895828589797, 0.01814889907836914, 0.031099731102585793, -0.03806927427649498, 0.0046368069015443325, -0.0267946757376194, -0.07078108191490173, -0.029522104188799858, 0.00065051787532866, -0.0022754541132599115, -0.017222557216882706, 0.02263582870364189, 0.00978014711290598, 0.006200140807777643, 0.02261926233768463, 0.019452782347798347, 0.005139312241226435, -0.010564119555056095, 0.03111971914768219, 0.03211112320423126, 0.006530485115945339, -0.06852827221155167, 0.025331521406769753, -0.0418132059276104, -0.020856840535998344, -0.019745375961065292, 0.022109251469373703, -0.026312246918678284, -0.02675425074994564, -0.015074598602950573, 0.005789208225905895, -0.0476454496383667, -0.0457594208419323, -0.02461986057460308, 0.012837948277592659, 0.05910208821296692, 0.0028842762112617493, 0.022844474762678146, -0.02641071192920208, -0.013554343022406101, 0.007310733199119568, -0.01110965944826603, -0.03903362527489662, 0.015315868891775608, -0.005085815209895372, -0.009392715990543365, 0.006225431803613901, 0.009071368724107742, 0.033282507210969925, -0.004894645884633064, -0.002777450019493699, -0.027640489861369133, 0.009081992320716381, 0.01989523507654667, 0.04258469492197037, 0.018594076856970787, -0.008132766000926495, -0.004320358391851187, -0.014793209731578827, -0.021812638267874718, -0.035262737423181534, 0.01309580635279417, 0.011229743249714375, 0.02068440616130829, -0.03745662048459053, -0.07975900918245316, 0.048652905970811844, 0.016930678859353065, -0.002528890734538436, 0.015275471843779087, -0.02426820993423462, -0.002859305590391159, -0.01748986355960369, 0.03284502401947975, 0.051642946898937225, -0.059061791747808456, 0.0011233763070777059, -0.027539459988474846, -0.006492060609161854, 0.010999222286045551, -0.02304420992732048, -0.04720132425427437, -0.01992933824658394, -0.020105883479118347, 0.002669028239324689, -0.07680781930685043, -0.017619939520955086, -0.04372406378388405, 0.011904299259185791, 0.007326354738324881, 0.02087632194161415, -0.030343489721417427, -0.01397007331252098, -0.02689170278608799, -0.017837217077612877, 0.01716020330786705, -0.047599732875823975, -0.008275962434709072, 0.0017206204356625676, -0.02580527402460575, -0.005444279871881008, -0.03943325951695442, 0.008054930716753006, 0.017857806757092476, -0.021623685956001282, 0.007710977923125029, -0.011221980676054955, -0.00045220303582027555, 0.0006523567717522383, 0.043411657214164734, -0.007688342593610287, 0.003969920799136162, -0.04313823580741882, -0.022800832986831665, -0.058957599103450775, 0.008501020260155201, -0.040272057056427, -0.009605315513908863, 0.030943959951400757, 0.07788420468568802, 0.014953256584703922, 0.03601260483264923, -0.015237958170473576, -0.029775742441415787, 0.055716466158628464, -0.07208653539419174, -0.04657875373959541, -0.02638246677815914, -0.048542898148298264, -0.0066908360458910465, 0.02822941541671753, 0.020295819267630577, -0.028997808694839478, 0.05457022041082382, 0.010535480454564095, 0.034635357558727264, 0.03224373981356621, 0.013086332008242607, 0.024037064984440804, -0.06978556513786316, -0.0009413896477781236, -0.07340183854103088, -0.02228943072259426, 0.030831504613161087, 0.013309944421052933, -0.008293652907013893, -0.003513685893267393, -0.04458926245570183, 0.041224587708711624, -0.07362932711839676, -0.03436410054564476, 0.056126829236745834, -0.009085241705179214, -0.025019612163305283, 0.010515713132917881, -0.07145079970359802, 0.0522519126534462, 0.01857513189315796, -0.04790547862648964, -0.02353542670607567, -0.0134767210111022, 0.05211784318089485, 0.003297313814982772, 0.0397193618118763, -0.04197778180241585, -0.011777023784816265, 0.09099183976650238, 0.006914698518812656, -0.02483007311820984, 0.0511016845703125, -0.0004557491047307849, 0.03841151297092438, 0.04128586873412132, 0.002646608045324683, -0.02956284210085869, 0.00371399219147861, 0.005370544735342264, -0.07077474892139435, 0.029284058138728142, 0.010735289193689823, -0.015797972679138184, -0.016496829688549042, 0.04701361060142517, 0.037531591951847076, -0.020942728966474533, -0.04107825458049774, -0.0020222102757543325, -0.07553970068693161, 0.007837232202291489, -0.003644716227427125, 0.015519363805651665, -0.0576208159327507, 0.03700132668018341, -0.0072777410969138145, 0.02013346552848816, 0.052387021481990814, -0.013819780200719833, -0.0047218347899615765, -0.017270386219024658, 0.08378088474273682, 0.0741526260972023, 0.06526567041873932, -0.0023282377514988184, 0.07776477932929993, -0.010615403763949871, -0.04824542999267578, 0.022183002904057503, 0.002503705443814397, -0.0092975664883852, -0.02586216665804386, 0.012681282125413418, 0.05054222047328949, -0.008774726651608944, 0.053752779960632324, -0.00675717368721962, -0.03350052610039711, 0.005689537152647972, 0.0263530220836401, -0.007540987338870764, 0.05435316264629364, 0.015011218376457691, 0.016163727268576622, -0.024468358606100082, -0.038144562393426895, 0.023040173575282097, -0.03748150169849396, -0.023364588618278503, 0.027304233983159065, -0.008567946963012218, 0.03776533901691437, 0.013975171372294426, 0.032477833330631256, 0.08640222996473312, -0.048531875014305115, 0.021876709535717964, -0.010433925315737724, 0.029498908668756485, -0.010816278867423534, 0.004945226013660431, -0.009730936959385872, -0.00628490699455142, -0.009330921806395054, -0.01292892824858427, -0.034039873629808426, -0.014726698398590088, -0.0020650713704526424, 0.04906751215457916, -0.009522423148155212, -0.0050291637890040874, 0.03641795739531517, 0.01514213066548109, -0.035526473075151443, -0.05632012337446213, -0.03153865039348602, -0.02794729918241501, -0.03412254527211189, -0.00884344894438982, 0.02499576471745968, -0.009621191769838333, -0.035692185163497925, -0.007135447580367327, 0.0004228444886393845, -0.01980922929942608, 0.03417636826634407, -0.05557740852236748, -0.013637518510222435, -0.004801350645720959, 0.028897833079099655, 0.023326298221945763, 0.008801735937595367, 0.057274263352155685, 0.0014355890452861786, -0.018674423918128014, 0.008777498267591, 0.03193919360637665, 0.032183144241571426, 0.01586335152387619, 0.033607471734285355, -0.07317035645246506, 0.021638143807649612, 0.0360230915248394, -0.014714526012539864, -0.06322160363197327, 0.039320215582847595, -0.004994212184101343, -0.03632190451025963, 0.04840519279241562, -0.0074632614850997925, 0.025895195081830025, -0.0354946106672287, -0.008820854127407074, -0.009643686935305595, 0.01575571298599243, 0.02545037306845188, -0.03971113637089729, 0.078793004155159, 0.033867307007312775, 0.006532878149300814, -0.057358741760253906, -0.0016482060309499502, 0.0018574168207123876, 0.015096581541001797, -0.016994819045066833, -0.035074278712272644, -0.029206380248069763, -0.07560151815414429, -0.022688889876008034, 0.019466277211904526, -0.017663419246673584, -0.019047314301133156, 0.03448070213198662, 0.019316749647259712, -0.02475183829665184, 0.011496230028569698, -0.03678397834300995, 0.032502513378858566, -0.021288227289915085, -0.002145986771211028, -0.0007426516967825592, 0.006743920035660267, 0.00010339858272345737, -0.0014176127733662724, 0.001693017198704183, -0.04691056162118912, 0.03659199923276901, 0.009916205890476704, 0.03554559499025345, 0.031221404671669006, 0.025921981781721115, -0.006635479163378477 ]
[ -0.08947646617889404, -0.012918035499751568, -0.015292428433895111, -0.01519532036036253, 0.04085348919034004, -0.01119652483612299, -0.02516612596809864, 0.032053034752607346, -0.02324598655104637, -0.01109970360994339, 0.039827611297369, 0.002666659187525511, 0.00023127248277887702, -0.041529957205057144, 0.07274133712053299, -0.013019194826483727, 0.00890068057924509, -0.06285855174064636, 0.004056040197610855, -0.0010517534101381898, 0.01965024322271347, -0.04929977282881737, -0.04203858599066734, -0.02416231855750084, 0.0374709889292717, 0.024541201069951057, 0.015373626723885536, -0.01568279042840004, -0.010854876600205898, -0.14763474464416504, -0.0031800351571291685, 0.009090902283787727, 0.04973294213414192, -0.014710276387631893, 0.009925924241542816, 0.08652207255363464, -0.0016359476139768958, 0.020796602591872215, -0.007122204639017582, 0.028857728466391563, 0.037409596145153046, 0.030688034370541573, -0.037244051694869995, -0.021659208461642265, -0.008647138252854347, 0.012614136561751366, 0.019959980621933937, -0.020303446799516678, -0.023267701268196106, 0.0026403937954455614, -0.06929389387369156, -0.02851349115371704, 0.0018841397250071168, -0.025203850120306015, -0.01710447110235691, 0.026439670473337173, 0.033278971910476685, 0.06175779923796654, -0.011513518169522285, 0.016452236101031303, 0.04321551322937012, -0.031600017100572586, -0.16020436584949493, 0.06012558937072754, 0.042183566838502884, 0.061247456818819046, -0.05800139531493187, 0.007632152643054724, -0.011544330045580864, 0.10430031269788742, 0.041056789457798004, -0.026360880583524704, -0.026486802846193314, 0.03310549259185791, 0.01972782425582409, 0.032239895313978195, -0.002413755049929023, 0.017597852274775505, 0.0029201549477875233, -0.04554586485028267, -0.000564769608899951, -0.0005719418404623866, -0.049293819814920425, -0.017700837925076485, -0.06374523788690567, 0.012901818379759789, -0.024730825796723366, 0.023186173290014267, 0.05618470162153244, 0.03324759751558304, 0.036374349147081375, 0.00954961683601141, 0.05858873948454857, -0.01653425395488739, -0.07525933533906937, -0.022135403007268906, -0.01677005924284458, 0.011018343269824982, -0.03061383031308651, 0.4224042296409607, -0.035466473549604416, -0.004162087570875883, 0.08491697162389755, 0.022496521472930908, 0.008401533588767052, 0.00227450393140316, -0.007255221717059612, -0.03160666674375534, 0.056426260620355606, -0.002802548697218299, 0.04680202528834343, 0.0355425588786602, 0.04741521179676056, -0.026916658505797386, -0.009708230383694172, 0.0136976707726717, -0.010873847641050816, 0.047604501247406006, 0.008707558736205101, 0.002190810162574053, -0.03746231645345688, 0.011476418934762478, 0.03583063930273056, -0.006659932900220156, -0.054048579186201096, -0.022976908832788467, 0.03928128629922867, 0.04286845773458481, 0.029418958351016045, -0.043669309467077255, 0.049773480743169785, -0.06321096420288086, -0.08033951371908188, -0.010914900340139866, 0.015292145311832428, 0.0015640842029824853, 0.026909153908491135, -0.03777251020073891, -0.004677454009652138, 0.06884632259607315, 0.009680230170488358, -0.011760903522372246, 0.032544031739234924, -0.050364065915346146, -0.047299887984991074, 0.1310698390007019, 0.04184608533978462, -0.051884278655052185, -0.012923020869493484, -0.006204220000654459, 0.005546902306377888, 0.035189978778362274, 0.02817992866039276, -0.06042211875319481, 0.06011546403169632, 0.008151344954967499, 0.11148569732904434, -0.007708458229899406, -0.05236579105257988, -0.0005663588526658714, -0.020055918022990227, -0.011951803229749203, -0.07083319872617722, 0.048262327909469604, 0.08194028586149216, -0.12414592504501343, -0.011106320656836033, -0.023459268733859062, 0.02826629765331745, -0.052701566368341446, -0.010362355969846249, 0.03269534558057785, 0.011413071304559708, 0.01289451029151678, 0.08643908053636551, -0.018253827467560768, -0.04722195491194725, 0.009613548405468464, 0.05786249041557312, 0.01792180724442005, 0.04766642302274704, 0.010679206810891628, -0.014206450432538986, 0.004125291481614113, -0.016564544290304184, -0.048316895961761475, -0.06197836622595787, -0.011567589826881886, -0.014808371663093567, -0.004160045646131039, -0.025086356326937675, -0.023737099021673203, -0.06102120503783226, 0.10876129567623138, -0.029244795441627502, -0.019054435193538666, 0.002761478303000331, 0.003941570874303579, -0.02083686552941799, -0.018015850335359573, -0.12635301053524017, 0.009118368849158287, -0.03593921661376953, -0.010592140257358551, -0.058364029973745346, 0.013619468547403812, 0.040995385497808456, -0.0492151640355587, 0.08657203614711761, 0.06196070834994316, -0.038111742585897446, -0.03399287909269333, 0.030978048220276833, 0.04288002476096153, -0.002639856655150652, -0.006292080041021109, -0.029623227193951607, 0.022064436227083206, -0.02523341029882431, 0.012733722105622292, -0.016121763736009598, 0.03902110829949379, -0.035671185702085495, -0.35185521841049194, -0.037866029888391495, -0.06418979167938232, -0.0028949182014912367, 0.03397559002041817, -0.03764330968260765, 0.008049272932112217, -0.015886574983596802, -0.026831286028027534, -0.010866778902709484, 0.07038470357656479, -0.019119231030344963, 0.006291561294347048, -0.08738945424556732, 0.03323914855718613, -0.0037180588115006685, -0.05015182867646217, -0.01985565945506096, -0.03446328639984131, 0.018863672390580177, 0.006707591935992241, 0.010494434274733067, -0.010265909135341644, -0.04192902892827988, 0.0010294596431776881, -0.05555913969874382, 0.07644326984882355, -0.009683042764663696, 0.07837336510419846, -0.010377981700003147, 0.014116796664893627, 0.03567560762166977, 0.016569223254919052, -0.09467244893312454, 0.014205374754965305, -0.026338262483477592, 0.016213171184062958, -0.04515053331851959, 0.019391249865293503, -0.047134172171354294, -0.058714382350444794, 0.011662728153169155, -0.07236625999212265, -0.026819517835974693, -0.03959188982844353, -0.01210609171539545, -0.0342397466301918, -0.02860412560403347, -0.02170797437429428, 0.05891245976090431, 0.012927371077239513, 0.011963095515966415, 0.0074846176430583, 0.020669661462306976, 0.012488028034567833, -0.03674840182065964, -0.07504010945558548, 0.045036327093839645, 0.03323180973529816, -0.013562392443418503, 0.015715599060058594, 0.07233058661222458, 0.053169723600149155, -0.03723398596048355, 0.008929502218961716, -0.018174558877944946, -0.014307636767625809, 0.018758894875645638, 0.014028714969754219, -0.015460086055099964, -0.0022452757693827152, 0.07418660819530487, -0.020691022276878357, -0.02953178994357586, 0.010737097822129726, 0.01771864853799343, -0.032212644815444946, 0.01211758702993393, -0.00033169201924465597, -0.026721520349383354, 0.012022320181131363, -0.02072550728917122, 0.05312303453683853, -0.023899715393781662, -0.010372163727879524, 0.013186004012823105, -0.02184467948973179, -0.09534981846809387, 0.049337390810251236, 0.0317147895693779, -0.00868589524179697, 0.0011800371576100588, -0.01794588379561901, -0.024778811261057854, 0.11442677676677704, 0.014531923457980156, -0.2199292629957199, 0.03310128673911095, 0.06582223623991013, 0.0386975072324276, -0.02994716167449951, 0.07211258262395859, 0.008393271826207638, -0.060306254774332047, 0.027180269360542297, 0.016459930688142776, -0.002631498035043478, 0.023973962292075157, 0.010826501995325089, -0.023218026384711266, 0.04896004498004913, -0.027583295479416847, 0.05816797912120819, -0.009799715131521225, 0.05704398825764656, -0.0057496577501297, 0.006279076915234327, -0.000053761712479172274, 0.1369607299566269, 0.006355907302349806, 0.02718469873070717, 0.010207477025687695, -0.004614957142621279, 0.006032964680343866, 0.049307387322187424, 0.02402449958026409, 0.018385043367743492, -0.004240460693836212, 0.03363495692610741, 0.00886907521635294, -0.0004405732615850866, -0.09790879487991333, -0.021888209506869316, 0.013311765156686306, 0.030643148347735405, 0.0008761424687691033, 0.02052372880280018, 0.0177916307002306, -0.015170054510235786, 0.012478434480726719, 0.08490027487277985, -0.0054868231527507305, -0.009562311694025993, -0.07609785348176956, -0.039659176021814346, -0.015212582424283028, -0.0076855807565152645, -0.032551344484090805, -0.011997442692518234, -0.00465089175850153, 0.03493845835328102, 0.075581856071949, 0.02653356082737446, -0.03920592740178108, -0.00720448512583971, -0.028884928673505783, -0.012525740079581738, -0.03572098910808563, 0.08477813005447388, 0.02373434416949749, 0.060779768973588943 ]
[ 0.006558362394571304, -0.0013227242743596435, -0.015318035148084164, -0.027201112359762192, 0.0029189186170697212, 0.026783425360918045, -0.002570326440036297, 0.04271191358566284, 0.007670010905712843, -0.012433838099241257, -0.0061978865414857864, 0.05745295062661171, 0.01429872028529644, -0.009646028280258179, 0.020210025832057, -0.027357205748558044, -0.019835438579320908, -0.003409918397665024, 0.009598414413630962, -0.019975515082478523, -0.0279505867511034, 0.0023038224317133427, 0.014167515560984612, 0.02698691375553608, -0.05150298774242401, 0.03653764724731445, -0.010087305679917336, -0.002958979457616806, 0.019178815186023712, -0.12161777913570404, -0.015018525533378124, 0.004674301017075777, 0.02335391938686371, 0.007327103056013584, 0.031019601970911026, -0.010820366442203522, 0.002569505712017417, -0.007660026662051678, 0.011558493599295616, -0.031612083315849304, 0.0022786904592067003, -0.04442596063017845, -0.02272271364927292, -0.007023588288575411, 0.011212076991796494, -0.000044389660615706816, -0.020401740446686745, -0.033559270203113556, -0.003992792684584856, -0.027357103303074837, -0.02090664952993393, -0.00542798638343811, 0.021678917109966278, -0.036407481878995895, 0.01741882972419262, 0.014082261361181736, 0.024252885952591896, -0.014771929010748863, -0.009214406833052635, -0.06587684154510498, 0.02684776857495308, -0.05007462576031685, -0.04458233341574669, -0.0074445283971726894, -0.051274362951517105, -0.020222904160618782, 0.008456423878669739, 0.030149316415190697, -0.008355929516255856, 0.021093372255563736, 0.008586354553699493, 0.030251899734139442, -0.033115092664957047, -0.012755312025547028, 0.007273632567375898, -0.023993775248527527, 0.014072579331696033, -0.00245500891469419, 0.010239399038255215, -0.04657571762800217, -0.03493425250053406, 0.048621807247400284, -0.030883407220244408, -0.03416035324335098, -0.027657680213451385, -0.015706483274698257, 0.033774442970752716, -0.05948210507631302, 0.05427838861942291, 0.06252322345972061, -0.021859193220734596, 0.02433096617460251, 0.0002743305522017181, -0.04796978086233139, -0.07846995443105698, 0.003572792513296008, 0.026454657316207886, -0.04289175570011139, 0.0030024514999240637, 0.8380072712898254, -0.012078908272087574, 0.001176759833469987, 0.021351594477891922, -0.006026492454111576, -0.017120318487286568, 0.0033990300726145506, -0.03433038666844368, -0.01288452185690403, 0.02099468931555748, -0.012062279507517815, -0.0021026553586125374, 0.015981413424015045, 0.026754848659038544, 0.02850080467760563, -0.006011280231177807, 0.00394287658855319, 0.015460212714970112, -0.005937662441283464, -0.029032276943325996, 0.014284532517194748, 0.01482227724045515, -0.0066778454929590225, 0.00941362977027893, 0.005296399351209402, 0.001759275677613914, -0.1458524912595749, -0.015740226954221725, -8.775621484653109e-33, 0.0011316046584397554, -0.005898930132389069, 0.019621610641479492, -0.01020542997866869, -0.020333193242549896, -0.03261607140302658, 0.02403191663324833, 0.028485435992479324, 0.0020497580990195274, -0.01339613925665617, -0.029784362763166428, -0.0008696563309058547, 0.005826185457408428, -0.043201468884944916, 0.044206880033016205, -0.01682450622320175, -0.021079301834106445, 0.028793085366487503, -0.029357044026255608, 0.003183199092745781, 0.04144057631492615, 0.021766455844044685, -0.0003122036869172007, 0.007331044878810644, 0.0506509505212307, 0.016289589926600456, 0.034879207611083984, 0.011647308245301247, 0.019898289814591408, -0.025499772280454636, -0.041417092084884644, 0.025184018537402153, -0.013645711354911327, 0.0257370974868536, 0.003769259201362729, -0.03700970485806465, -0.03741862624883652, -0.013339633122086525, -0.0017513097263872623, 0.0014819118659943342, 0.010525395162403584, -0.03883282095193863, -0.028804222121834755, -0.007483594119548798, -0.002416942734271288, 0.03674289584159851, 0.02945229597389698, 0.024038735777139664, -0.009018088690936565, 0.013233907520771027, 0.002858829451724887, 0.01298589538782835, 0.022930018603801727, -0.0009104079217649996, 0.007784482091665268, 0.020988529548048973, -0.005096652545034885, -0.017946891486644745, -0.018193503841757774, -0.012613510712981224, -0.009344269521534443, 0.011949487030506134, -0.024060873314738274, -0.006753071211278439, -0.012473939917981625, 0.02187347039580345, -0.027917563915252686, 0.011593532748520374, 0.004063192289322615, -0.0159214548766613, -0.040306735783815384, -0.004809333942830563, -0.007806173991411924, 0.013936564326286316, 0.0111366743221879, 0.005066050216555595, 0.011010224930942059, 0.009309732355177402, -0.011230189353227615, 0.0399332195520401, -0.030924038961529732, 0.036954477429389954, 0.000774277956224978, -0.03687797859311104, 0.02854410745203495, 0.02313912659883499, 0.03371846303343773, -0.014508646912872791, -0.002789662918075919, 0.013340095058083534, 0.00752893416211009, 0.019365578889846802, 0.001176154357381165, 0.012687651440501213, -0.007604430895298719, 8.55065464110877e-33, 0.005334096495062113, -0.025518689304590225, 0.01521950401365757, 0.033250436186790466, 0.059578463435173035, -0.0057344078086316586, -0.013740233145654202, 0.014590450562536716, -0.055524203926324844, 0.028484249487519264, -0.035483747720718384, -0.01936522126197815, -0.03503546491265297, 0.01743968576192856, 0.04422611743211746, -0.04760271683335304, 0.0740300640463829, -0.014056187123060226, -0.028500307351350784, -0.009199995547533035, 0.01898019388318062, -0.00537059037014842, 0.0050982222892344, 0.001345738535746932, 0.03931427374482155, 0.05776345729827881, 0.025477420538663864, 0.011559064500033855, -0.005670454353094101, 0.0006221106159500778, 0.02957933209836483, -0.0067993043921887875, 0.0013302055886015296, 0.011977123096585274, 0.01626095175743103, 0.02506769448518753, -0.016356438398361206, -0.019222663715481758, -0.046195466071367264, 0.0135348504409194, 0.005041923373937607, -0.028433913365006447, 0.022158898413181305, 0.0438455268740654, -0.011127517558634281, -0.0233872439712286, 0.006718932650983334, -0.025670014321804047, -0.013857916928827763, -0.0019198728259652853, 0.03898976370692253, 0.007541874889284372, 0.007425354793667793, 0.043762531131505966, 0.0054909768514335155, -0.008974741213023663, 0.023761535063385963, -0.007906069047749043, -0.030040942132472992, 0.027825577184557915, -0.008256101980805397, 0.004438853356987238, -0.01957342028617859, 0.014782968908548355, -0.016869468614459038, -0.07273322343826294, 0.03199828416109085, 0.0026352470740675926, -0.022163916379213333, -0.03291018679738045, -0.0193349476903677, 0.009619106538593769, 0.00785118993371725, 0.04251493513584137, 0.004059568978846073, -0.01924310438334942, -0.04290524870157242, 0.004026561044156551, 0.004138162359595299, -0.012881018221378326, -0.0002395771152805537, -0.0017793060978874564, -0.0010485583916306496, 0.04360375553369522, -0.019664520397782326, 0.02097724936902523, -0.03697998821735382, 0.008733167313039303, 0.04453275725245476, 0.02090744860470295, -0.0066431378945708275, -0.004998918157070875, 0.008558210916817188, 0.06290581077337265, -0.008798548020422459, -1.3875238735749917e-8, 0.0037045306526124477, -0.0058180163614451885, -0.00014417133934330195, -0.017545126378536224, 0.03358608856797218, 0.02525598369538784, -0.03520016744732857, -0.00873233750462532, -0.04035860672593117, 0.017296019941568375, 0.023771749809384346, -0.0189316738396883, -0.01697026565670967, 0.04840054735541344, -0.0180146973580122, -0.04649383947253227, -0.018878895789384842, 0.006778319366276264, 0.006812379229813814, -0.006173376925289631, 0.007255543489009142, 0.05460643395781517, -0.04237985610961914, 0.015333433635532856, 0.029003361240029335, -0.026308398693799973, -0.015765203163027763, -0.08068785071372986, 0.037260137498378754, -0.027798987925052643, 0.023282738402485847, -0.010614466853439808, -0.01718222163617611, 0.048699021339416504, -0.020364848896861076, -0.04850165173411369, 0.04958081245422363, 0.06637255847454071, -0.03018713742494583, 0.025208331644535065, 0.0041268751956522465, 0.016699979081749916, -0.021802127361297607, -0.030384434387087822, -0.026610156521201134, 0.025305327028036118, -0.05260153114795685, -0.007942384108901024, -0.01934400387108326, -0.02953767590224743, 0.006019338965415955, 0.0036890371702611446, 0.01988346129655838, 0.08487474918365479, -0.004217363893985748, -0.010760361328721046, -0.004537377972155809, -0.026505380868911743, -0.05165792256593704, -0.008674348704516888, -0.026112306863069534, 0.02471603825688362, 0.015111308544874191, 0.00473065534606576 ]
agilelean-all-or-nothing
https://markhneedham.com/blog/2008/11/26/agilelean-all-or-nothing
false
2008-11-21 00:58:07
Saff Squeeze: First Thoughts
[ "coding", "kent-beck", "debugging" ]
[ "Coding" ]
While practicing some coding by doing the http://sites.google.com/site/tddproblems/all-problems-1/Roman-number-conversion[Roman number conversion] last weekend I came across an article by Kent Beck which talked of a method he uses to http://www.threeriversinstitute.org/HitEmHighHitEmLow.html[remove the need to use the debugger] to narrow down problems. He calls the method the '*Saff Squeeze*' and the basic idea as I understand it is to write the original failing test and then inline the pieces of code that it calls, adding assertions earlier on in the code until the actual point of failure is found. The thinking behind this is that we will now have another much smaller test which we can add to our test suite although he did point out that it may take longer to solve the problem this way rather than using the debugger. I'm not a fan of debugging through code and I believe if we are using TDD effectively then it should http://www.thekua.com/atwork/2007/10/test-driven-development-requires-less-debugging/[reduce the need to use the debugger]. When I got a bit stuck with the parsing of the input for my Roman number conversion I decided this would be a good time to give the approach a trial run. The actual problem was that I was trying to parse a value such as 'XI' by called String.split("") which looking back of course was ridiculous. This was resulting in an array with 3 values - X,I and "" - which then gave a null pointer exception when I tried to convert it to a numeric value. Applying the Saff Squeeze allowed me to narrow down this problem and change the implementation when I realised my approach was never going to work. Although I wasn't able to keep the test which I had created from all the inlining, it did become clear to me from this exercise that my tests around certain areas of the code were not fine grained enough. I find I lose the discipline a bit when I test from the outside in which is something I am trying to improve. This method proved to be a good way of keeping me honest. Kent suggested that it would take much longer to debug using this approach but I found I was able to solve my problem almost as quickly as if I had debugged through it with the added benefit that I wrote a few extra tests while I was narrowing down the problem. It is certainly an interesting approach although one which I need more practice with before trying to introduce it into a work environment.
null
null
[ -0.011866164393723011, -0.0019072247669100761, -0.03599804267287254, 0.040538232773542404, 0.07164127379655838, 0.046375520527362823, 0.03936304897069931, 0.031129218637943268, 0.026780586689710617, -0.03190379962325096, 0.028653999790549278, 0.005713562481105328, -0.06678147614002228, 0.0196209903806448, -0.007939968258142471, 0.0884285643696785, 0.0698394849896431, -0.04439434036612511, 0.04479276388883591, 0.017846278846263885, 0.029405629262328148, 0.05187642574310303, -0.01080436259508133, 0.021515363827347755, 0.03671795502305031, 0.021934812888503075, 0.012280719354748726, -0.001422671601176262, -0.07594484835863113, -0.025791844353079796, 0.03148474544286728, 0.02597002498805523, 0.011225124821066856, -0.026147212833166122, 0.020981548354029655, -0.022116653621196747, -0.0019511959981173277, 0.01946897618472576, 0.007643070537596941, 0.01392424013465643, -0.0576060526072979, 0.006233059335500002, -0.0352722629904747, 0.015838630497455597, -0.030746465548872948, -0.009831639006733894, -0.019229816272854805, -0.018736056983470917, -0.00978782307356596, -0.004470397252589464, -0.06773313134908676, 0.045213811099529266, -0.01287873275578022, -0.018830690532922745, -0.003357343142852187, 0.059841275215148926, 0.012961252592504025, -0.08482284843921661, 0.03209076449275017, -0.06471923738718033, -0.0005880101816728711, -0.009900718927383423, -0.007356660440564156, 0.04440683871507645, 0.023410772904753685, -0.018078187480568886, -0.01107800379395485, 0.06066552922129631, -0.05227663740515709, -0.03423776105046272, -0.008569195866584778, 0.012890800833702087, -0.03363020718097687, -0.0039324089884757996, 0.02692604437470436, -0.03736167028546333, -0.02138890139758587, 0.05302999168634415, 0.02057037129998207, 0.03910594806075096, 0.0008764863014221191, -0.00785865169018507, 0.05020599439740181, -0.005541970953345299, 0.02912023663520813, -0.03538830205798149, -0.008426763117313385, -0.004027002956718206, -0.027019424363970757, 0.058692339807748795, 0.018008839339017868, -0.04709485173225403, 0.018662171438336372, 0.03838600590825081, -0.0056817070581018925, 0.007292830850929022, 0.016596360132098198, -0.01572575606405735, -0.003987418953329325, -0.010534865781664848, -0.043956659734249115, -0.028949690982699394, 0.054919108748435974, 0.04302573949098587, -0.06426629424095154, 0.004981971811503172, -0.02540053240954876, -0.012954470701515675, 0.007688476704061031, 0.03333880752325058, -0.04130443185567856, 0.015906937420368195, -0.01167524978518486, -0.00910040084272623, -0.0737476795911789, 0.049304358661174774, -0.0014906697906553745, -0.023689404129981995, -0.0019867136143147945, 0.030682098120450974, 0.03521699458360672, 0.03991518169641495, -0.0011093722423538566, 0.09028985351324081, 0.0012526768259704113, 0.03232094645500183, -0.016843782737851143, 0.0579134076833725, -0.021779265254735947, -0.04486081004142761, -0.01073434017598629, 0.05421606823801994, -0.007657655049115419, -0.0008533915970474482, -0.012123369611799717, -0.022446515038609505, -0.015728505328297615, 0.0027934808749705553, 0.0381777249276638, 0.027594972401857376, -0.0022028586827218533, -0.03283930569887161, 0.01879546418786049, -0.010955320671200752, 0.015057684853672981, 0.009904240258038044, 0.0042324308305978775, -0.007867737673223019, -0.03603940084576607, 0.021117374300956726, 0.007431248668581247, 0.019047318026423454, 0.05472540855407715, -0.020875556394457817, -0.0030199498869478703, 0.07531027495861053, -0.008904910646378994, 0.009857643395662308, -0.016058659180998802, 0.04014628380537033, 0.04772714525461197, 0.013918142765760422, -0.0037541522178798914, 0.040423814207315445, 0.017326077446341515, 0.022179123014211655, -0.000008356854777957778, 0.04135798662900925, -0.04920101910829544, 0.004090336617082357, -0.06973184645175934, -0.04549787938594818, 0.06325638294219971, -0.046729788184165955, -0.023074638098478317, 0.022116567939519882, 0.06247253715991974, 0.0018790463218465447, 0.043730612844228745, -0.003443676047027111, -0.07251191884279251, 0.00962745863944292, 0.017943577840924263, 0.05045343562960625, 0.0030754876788705587, -0.017930960282683372, 0.06354457885026932, 0.026832688599824905, -0.006257620174437761, 0.018861370161175728, -0.08838684111833572, -0.09585131704807281, -0.025214076042175293, -0.011907617561519146, 0.06685636937618256, -0.03639622777700424, 0.009700561873614788, 0.04392934963107109, 0.013017341494560242, 0.05691547691822052, 0.007794030476361513, 0.01137828640639782, 0.027348041534423828, -0.012248466722667217, -0.01323213241994381, 0.03903086856007576, 0.04554518312215805, 0.005302006378769875, -0.04925423488020897, 0.01619170419871807, -0.005256010219454765, 0.00913474801927805, 0.02929890714585781, -0.01646006479859352, 0.024843033403158188, 0.02044898271560669, 0.03957808390259743, -0.032267265021800995, 0.05315137654542923, -0.0687423124909401, 0.0193705502897501, -0.007417941931635141, -0.010171568021178246, -0.011888097040355206, -0.007015301380306482, 0.12830758094787598, 0.06475073099136353, -0.030105654150247574, -0.04517294839024544, -0.005489165894687176, -0.003736992599442601, -0.032035160809755325, 0.008450246416032314, -0.01901359111070633, -0.006685755681246519, 0.005584079306572676, -0.05750303342938423, -0.020418817177414894, 0.016148990020155907, -0.046805109828710556, 0.020562794059515, 0.07368654757738113, -0.017958248034119606, 0.04377565160393715, -0.031030956655740738, -0.013355161994695663, -0.00696153100579977, -0.01791241019964218, -0.036229245364665985, 0.021939055994153023, 0.04030091315507889, -0.003944020718336105, 0.039650384336709976, -0.02774721384048462, -0.019978336989879608, -0.006836090702563524, -0.018496140837669373, -0.014821111224591732, 0.03012494184076786, 0.039962250739336014, -0.001971053658053279, 0.04701779782772064, 0.015284472145140171, -0.01644856482744217, -0.0038433640729635954, -0.04533058777451515, -0.024487799033522606, 0.013833115808665752, -0.008130609057843685, 0.05019517242908478, -0.006744823884218931, 0.052408479154109955, 0.009134300984442234, 0.0097943851724267, -0.01908137835562229, -0.052029017359018326, 0.018814530223608017, 0.013133182190358639, -0.02743593603372574, -0.025622451677918434, -0.03760421276092529, 0.036538925021886826, -0.05687201768159866, -0.029201580211520195, 0.0036777607165277004, -0.04793763905763626, 0.04540378600358963, -0.04869784787297249, -0.06436703354120255, 0.023894010111689568, 0.02119460329413414, 0.04005715996026993, -0.03382406383752823, 0.0425569973886013, 0.07872879505157471, -0.027078373357653618, 0.028206732124090195, -0.00038997794035822153, 0.03244757279753685, 0.027045102789998055, 0.0040333946235477924, 0.012934168800711632, 0.030104780569672585, 0.0313543975353241, -0.027956126257777214, -0.07067709416151047, 0.024770598858594894, -0.02296457625925541, -0.2815117835998535, 0.05450550094246864, -0.024279020726680756, -0.050733741372823715, 0.021242722868919373, -0.024824434891343117, 0.011952990666031837, -0.040460824966430664, -0.018214108422398567, 0.05771513283252716, -0.03268376365303993, -0.05967337638139725, -0.04739246517419815, 0.0365331806242466, 0.01995430700480938, -0.020084816962480545, 0.02591541036963463, -0.03742348775267601, 0.015818338841199875, 0.04933205619454384, -0.002608040813356638, -0.07042769342660904, 0.028090396896004677, 0.0578514039516449, 0.03768260404467583, 0.07066421210765839, -0.08825156837701797, 0.05048450082540512, -0.02729962021112442, 0.006092412397265434, 0.019914845004677773, 0.003407733514904976, 0.006959646008908749, -0.03448965772986412, -0.029253778979182243, -0.010312399826943874, 0.009650351479649544, -0.011217356659471989, 0.007160544861108065, 0.026891669258475304, -0.020670322701334953, -0.04761580750346184, 0.02190929651260376, -0.0006876307888887823, 0.05217680707573891, -0.0001479926722822711, -0.04028572142124176, -0.0006147273816168308, -0.02470407262444496, 0.0861007571220398, -0.04302315041422844, 0.0007333509856835008, -0.025472961366176605, 0.037927690893411636, -0.01704254560172558, -0.030403144657611847, 0.0004648284811992198, -0.0013635639334097505, -0.02302934229373932, -0.03036748245358467, 0.0008923686691559851, -0.038807280361652374, -0.0353439599275589, -0.04437795281410217, -0.007585219107568264, -0.08566825836896896, -0.038979172706604004, -0.0105969263240695, 0.07246161252260208, 0.02827949821949005, -0.026794007048010826, 0.008926787413656712, 0.012484407052397728, -0.115510955452919, -0.006494947709143162, -0.021377531811594963, -0.018789324909448624, -0.02537589520215988, -0.02426174469292164, 0.045720506459474564, -0.06071415916085243, -0.056493401527404785, 0.050825085490942, 0.020810939371585846, 0.028674444183707237, -0.00921553559601307, 0.007543141953647137, -0.006606506649404764, -0.0059996736235916615, 0.0015034236712381244, 0.09583662450313568, -0.013671579770743847, -0.02651084028184414, -0.04386994242668152, 0.02383379451930523, 0.03035854920744896, 0.02880079671740532, 0.012629560194909573, 0.004989754408597946, 0.012282484211027622, 0.022511377930641174, -0.058203596621751785, 0.04516387730836868, -0.037930410355329514, -0.0035663042217493057, -0.015302443876862526, -0.05247222259640694, 0.029025742784142494, 0.017365846782922745, 0.022871114313602448, -0.020653914660215378, -0.03708261251449585, 0.003412459744140506, -0.031000660732388496, -0.036977823823690414, -0.010397722013294697, 0.011484856717288494, 0.010289912112057209, -0.025239789858460426, -0.02567826770246029, -0.055270347744226456, -0.01801401562988758, 0.003849682165309787, -0.018211176618933678, -0.04489903897047043, -0.03934699669480324, -0.025764109566807747, -0.021164588630199432, 0.017054574564099312, 0.015443856827914715, -0.016419632360339165, 0.04916554316878319, 0.006403440143913031, -0.012698059901595116, 0.003468404756858945, -0.02566095069050789, -0.017894301563501358, -0.0029562036506831646, -0.007326924242079258, 0.012122632935643196, 0.00048364518443122506, -0.010300865396857262, 0.011961909011006355, 0.017715102061629295, 0.03772566840052605, -0.021269451826810837, 0.04374464228749275, -0.03393382951617241, -0.018945541232824326, 0.025118347257375717, 0.015693113207817078, -0.08753566443920135, 0.04114376753568649, -0.04548950493335724, -0.03974272683262825, -0.032810792326927185, 0.03718147054314613, 0.005261077545583248, -0.0069481730461120605, -0.016152620315551758, 0.023774482309818268, -0.03792496398091316, -0.04295063018798828, -0.03690180554986, -0.005456645041704178, 0.03876455873250961, -0.015433946624398232, 0.03648211807012558, -0.008708648383617401, -0.014740551821887493, -0.01838310807943344, 0.03156115487217903, -0.03569995239377022, 0.02632671594619751, -0.007990936748683453, -0.01102843601256609, -0.0014360148925334215, -0.014046111144125462, 0.03243103250861168, 0.02815183252096176, 0.008723709732294083, -0.043026238679885864, 0.0036567035131156445, 0.02052089013159275, 0.049376096576452255, -0.007623424753546715, -0.013255244120955467, -0.010846580378711224, -0.013041017577052116, -0.019180232658982277, -0.0504496730864048, -0.027683155611157417, 0.02403838373720646, 0.04075886309146881, -0.04469377174973488, -0.06596928089857101, 0.025482121855020523, 0.05398306995630264, 0.013445034623146057, 0.013907453045248985, 0.0060620117001235485, -0.0012873804662376642, -0.011849906295537949, 0.04978976398706436, 0.03784601017832756, -0.06587480753660202, 0.009595821611583233, -0.014774059876799583, 0.029177803546190262, 0.02589544840157032, 0.012021111324429512, -0.0667162835597992, -0.023538606241345406, -0.026661697775125504, -0.0039014192298054695, -0.031013762578368187, -0.03511796519160271, -0.04737294092774391, 0.031355805695056915, -0.021634092554450035, -0.020643027499318123, -0.010526337660849094, 0.005252099130302668, -0.014530248939990997, -0.01930292323231697, -0.022252380847930908, -0.02343864180147648, 0.0020598338451236486, 0.03395184874534607, -0.0157595444470644, 0.055305365473032, -0.025272827595472336, 0.0498436838388443, 0.02104147896170616, 0.0006696265190839767, -0.025829967111349106, -0.05298393964767456, 0.016966424882411957, -0.006028011906892061, 0.039279285818338394, 0.00616086833178997, -0.0212167389690876, -0.011247837916016579, 0.010871811769902706, -0.015067415311932564, 0.017779525369405746, -0.02359185367822647, -0.04305477440357208, 0.02286228910088539, 0.08270642906427383, 0.013036391697824001, 0.04259313642978668, -0.00671201478689909, -0.0061123124323785305, 0.056612253189086914, -0.06909972429275513, -0.00809707771986723, -0.024543743580579758, -0.09093804657459259, 0.01356812659651041, 0.014415389858186245, 0.008819036185741425, -0.014153211377561092, 0.029956387355923653, 0.006998481694608927, 0.005111682694405317, 0.03925250470638275, -0.01330825686454773, 0.03669483959674835, -0.045674823224544525, 0.0017700380412861705, -0.07941782474517822, 0.023088399320840836, 0.027311155572533607, -0.01789010688662529, -0.025542771443724632, -0.009563283994793892, -0.02192096784710884, 0.04324588179588318, -0.055381543934345245, -0.025619089603424072, 0.03927003964781761, 0.017418744042515755, -0.005823874846100807, 0.01956758461892605, -0.03559819981455803, 0.01133642252534628, 0.019777823239564896, -0.03362102434039116, -0.03336022049188614, -0.026490679010748863, 0.05009274184703827, 0.03404686599969864, 0.022854868322610855, -0.040646154433488846, 0.008045701310038567, 0.059069231152534485, 0.019483208656311035, 0.015593653544783592, 0.027498506009578705, -0.023500461131334305, 0.06394433230161667, 0.03949650004506111, -0.02520938217639923, -0.014595575630664825, -0.003069116035476327, -0.007277077995240688, -0.04451154172420502, 0.018284201622009277, 0.004990224726498127, -0.026816993951797485, -0.028673535212874413, 0.06672856956720352, 0.025193121284246445, -0.011938388459384441, -0.05116290971636772, 0.013656619004905224, -0.0307999886572361, -0.02748878113925457, -0.029927941039204597, -0.020453505218029022, 0.0008292999700643122, 0.07631318271160126, -0.014126967638731003, -0.002619246020913124, 0.06306658685207367, -0.003752188989892602, 0.005634601227939129, -0.023306887596845627, 0.0875113382935524, 0.06402065604925156, 0.031218744814395905, 0.012158460915088654, 0.055040620267391205, -0.020681854337453842, -0.06097928434610367, 0.048026587814092636, -0.029821345582604408, -0.011314268223941326, -0.04257712885737419, 0.0018870729254558682, 0.072891965508461, -0.007292361464351416, 0.05999502167105675, -0.04243725910782814, 0.011964170262217522, -0.010034948587417603, 0.016039691865444183, 0.022299524396657944, 0.05100400745868683, -0.010693845339119434, 0.01283964328467846, -0.006631520576775074, -0.02586275339126587, 0.03292464092373848, -0.033497776836156845, -0.033689893782138824, 0.014566455036401749, -0.006119762547314167, 0.018261214718222618, 0.02387387491762638, 0.019222764298319817, 0.07976806163787842, -0.033460833132267, 0.00404924713075161, -0.015787532553076744, 0.029811039566993713, 0.008479850366711617, -0.016252828761935234, -0.014908360317349434, -0.03907826170325279, -0.003912677522748709, -0.0023824675008654594, -0.0008804311510175467, -0.03635525330901146, -0.05071999877691269, 0.04986060410737991, -0.009369324892759323, 0.015959415584802628, 0.03430141136050224, -0.008286122232675552, -0.05552287772297859, -0.05713128298521042, -0.05123717337846756, -0.04138399660587311, -0.06048685312271118, -0.020966047421097755, 0.03862430900335312, -0.01999729685485363, -0.03427278995513916, -0.011620456352829933, -0.018471363931894302, -0.029238568618893623, 0.025977492332458496, -0.04924535006284714, -0.06486084312200546, 0.029474366456270218, 0.013383899815380573, 0.01925390213727951, 0.046021729707717896, 0.03657319024205208, -0.0165771022439003, -0.004329266492277384, -0.014611843042075634, 0.01135273277759552, 0.0489165298640728, 0.03814508393406868, 0.026601221412420273, -0.08756227046251297, -0.0007786243804730475, 0.010236495174467564, 0.0050734044052660465, -0.06335023045539856, 0.02198059856891632, -0.02637278102338314, -0.019474701955914497, 0.06767422705888748, -0.016479285433888435, 0.01442865002900362, -0.036926593631505966, -0.02813856117427349, 0.02123103477060795, 0.012410705909132957, 0.04071655496954918, -0.014841292053461075, 0.08529683947563171, 0.008420893922448158, -0.02203975059092045, -0.05286421999335289, 0.0003375088272150606, -0.016504039987921715, 0.023997148498892784, -0.010570872575044632, -0.06837772578001022, -0.047994066029787064, -0.0666433721780777, 0.0008969460614025593, 0.02517041005194187, -0.013283361680805683, -0.016982214525341988, 0.017016420140862465, 0.023124514147639275, -0.07569151371717453, 0.02901426889002323, -0.029253792017698288, 0.04633322358131409, -0.031313952058553696, -0.021693650633096695, 0.024965016171336174, 0.03208933025598526, -0.000413267727708444, 0.004217952024191618, 0.039255540817976, -0.030475344508886337, -0.0021580206230282784, 0.00929784681648016, 0.03815624490380287, 0.02622799202799797, -0.013219050131738186, -0.002284199697896838 ]
[ -0.10479385405778885, -0.011597606353461742, -0.02523513324558735, -0.032272253185510635, 0.01603451371192932, -0.055165067315101624, -0.015298291109502316, 0.05024600028991699, -0.017985599115490913, -0.045718248933553696, 0.016524959355592728, -0.05325236916542053, 0.0039109778590500355, 0.0018423672299832106, 0.05685809254646301, -0.021151581779122353, -0.02628919668495655, -0.031541697680950165, 0.023215828463435173, 0.010328120552003384, -0.0033710903953760862, -0.007715063635259867, -0.04149032384157181, -0.05832582712173462, 0.016827726736664772, 0.04702768474817276, 0.03959697484970093, -0.04662831872701645, 0.008620680309832096, -0.22266113758087158, 0.013983325101435184, 0.014694321900606155, 0.043964579701423645, -0.04261808097362518, 0.0034867848735302687, 0.015118016861379147, 0.0028427569195628166, 0.016635527834296227, 0.012448896653950214, 0.0592929907143116, -0.0030269422568380833, 0.031168876215815544, -0.05432875081896782, -0.034856878221035004, 0.02930685319006443, 0.014804856851696968, -0.013275518082082272, -0.011318652890622616, 0.010703726671636105, 0.04413479194045067, -0.06400267779827118, 0.00015131657710298896, 0.013897757045924664, -0.019596820697188377, -0.018517984077334404, 0.017043929547071457, 0.034706052392721176, 0.07188823819160461, 0.005420958157628775, 0.011744598858058453, 0.008300365880131721, -0.007095025386661291, -0.1348361372947693, 0.08250949531793594, 0.025393055751919746, 0.02843843400478363, -0.005677259527146816, -0.01593703031539917, -0.025545844808220863, 0.11459233611822128, -0.01583203673362732, -0.03720032796263695, -0.026954781264066696, 0.08424586802721024, 0.01496343407779932, -0.00016451893316116184, -0.0011393454624339938, 0.030536698177456856, 0.04361936077475548, -0.036427706480026245, -0.03974100947380066, -0.031388670206069946, 0.0008796094916760921, -0.02894427441060543, -0.03387943655252457, 0.030052585527300835, -0.015287083573639393, 0.05145828053355217, 0.04838447645306587, 0.009648214094340801, 0.0576205737888813, -0.0014242744073271751, 0.008760347031056881, 0.015519188717007637, -0.06756356358528137, 0.0024163788184523582, -0.0012869845377281308, 0.01742389239370823, -0.036716315895318985, 0.44633302092552185, -0.03049526922404766, -0.022700190544128418, 0.04477856680750847, 0.015806447714567184, -0.03369930014014244, 0.005191028118133545, -0.008248025551438332, -0.038121793419122696, -0.001280392287299037, -0.04598907381296158, 0.020292794331908226, -0.033426783978939056, 0.04790278151631355, -0.04180591180920601, 0.015924673527479172, 0.009426150470972061, 0.03521657735109329, -0.020217349752783775, 0.004625918809324503, 0.008459554053843021, -0.008071210235357285, 0.019437674432992935, 0.011859524995088577, -0.02390986494719982, -0.0037884002085775137, -0.0412253811955452, -0.006197081878781319, 0.07049404084682465, 0.008052578195929527, 0.010235778987407684, 0.06570587307214737, -0.06559324264526367, -0.09320824593305588, 0.014864508993923664, -0.0007950592553243041, -0.013466781936585903, 0.042148735374212265, -0.007976961322128773, -0.004232039209455252, 0.008467650040984154, -0.014924634248018265, -0.037745509296655655, 0.030582942068576813, 0.02310905233025551, -0.04773184657096863, 0.0819569006562233, -0.020154865458607674, -0.04725433513522148, 0.008684656582772732, -0.037913788110017776, 0.030912110581994057, 0.019419873133301735, -0.030470406636595726, -0.06779398769140244, 0.0039753057062625885, 0.024192558601498604, 0.0690506249666214, 0.013681143522262573, -0.0770527720451355, 0.007180404849350452, -0.02029605023562908, -0.03438113257288933, -0.05893310159444809, 0.04657105728983879, 0.04896511137485504, -0.0757555440068245, -0.0265395138412714, 0.030399341136217117, 0.012064448557794094, -0.08309787511825562, 0.016792582347989082, 0.01444111205637455, -0.04386570304632187, -0.024371786043047905, 0.026615828275680542, -0.019797753542661667, -0.0125804478302598, -0.01690361090004444, 0.04937690123915672, 0.03753858804702759, 0.024345403537154198, 0.025237105786800385, -0.020398490130901337, -0.0016636141808703542, -0.033606383949518204, -0.07362942397594452, -0.06251759827136993, 0.006702336482703686, -0.019788645207881927, 0.003942248877137899, -0.017535995692014694, -0.02754528634250164, -0.10445189476013184, 0.05389544367790222, -0.03125298395752907, -0.01591169834136963, 0.03203224390745163, 0.012035580351948738, -0.0028149124700576067, 0.00481147738173604, -0.004434447735548019, 0.016757845878601074, 0.011263873428106308, 0.03152638301253319, -0.02823498658835888, 0.06776968389749527, 0.05588661506772041, -0.07941999286413193, 0.05984755605459213, 0.07870685309171677, -0.01648484170436859, -0.0011502753477543592, 0.022493576630949974, -0.0023190074134618044, -0.0002021282271016389, -0.011172725819051266, 0.009771616198122501, -0.005216849967837334, -0.0042987242341041565, 0.033986691385507584, -0.015406151302158833, -0.03033287450671196, -0.005136429797858, -0.3509927988052368, -0.043436091393232346, -0.02465374581515789, -0.007076080422848463, 0.008856931701302528, -0.05169154703617096, 0.0002488908066879958, -0.0053170472383499146, 0.008022170513868332, 0.009254819713532925, 0.06514078378677368, 0.006380470935255289, -0.011227455921471119, -0.11906109750270844, 0.01132130529731512, 0.00463480269536376, -0.04462507367134094, -0.014441659674048424, -0.039301060140132904, 0.02594880573451519, -0.01184352021664381, -0.005933605600148439, -0.010684177279472351, -0.05533720180392265, -0.008492485620081425, -0.050427284091711044, 0.10239508002996445, 0.004375831224024296, 0.12669657170772552, -0.051086779683828354, 0.025276582688093185, -0.004866649862378836, 0.04055851697921753, -0.05514918267726898, -0.01505426038056612, -0.00011725022341124713, 0.004090469796210527, 0.010310166515409946, 0.06981638073921204, -0.02540525048971176, -0.035702891647815704, -0.010620521381497383, -0.03710019960999489, -0.05007360130548477, -0.0208574328571558, 0.012943658046424389, 0.012369130738079548, -0.04361401125788689, -0.003353359177708626, 0.09323336184024811, 0.04631248861551285, 0.009685389697551727, 0.006158081348985434, 0.03503601998090744, 0.004199853632599115, -0.01508403941988945, -0.0653800442814827, -0.005303557962179184, 0.043709296733140945, -0.0347367599606514, 0.031060809269547462, 0.03695567324757576, 0.05579450726509094, -0.03738676384091377, -0.016530461609363556, 0.025925280526280403, -0.0097279017791152, -0.029983259737491608, 0.033045101910829544, -0.011852854862809181, -0.000994995585642755, 0.1144062876701355, -0.011202491819858551, -0.032232996076345444, -0.005270626395940781, 0.055001504719257355, -0.012722356244921684, 0.029343271628022194, 0.025674564763903618, -0.004887865856289864, 0.02273128367960453, -0.006710319314152002, 0.06792263686656952, -0.054655399173498154, -0.016209060326218605, 0.03328464552760124, 0.003025764599442482, -0.0012006531469523907, 0.0567949153482914, 0.007405559066683054, -0.009457926265895367, -0.011158575303852558, 0.00530461547896266, -0.03560890629887581, 0.044238608330488205, 0.011353337205946445, -0.2410508692264557, -0.009387211874127388, 0.07195380330085754, 0.04280116781592369, -0.017829710617661476, 0.019263988360762596, 0.060362499207258224, -0.06635016202926636, -0.020853638648986816, 0.009681104682385921, -0.0008588402415625751, 0.03418630361557007, 0.01408453844487667, -0.02877560444176197, 0.038000576198101044, -0.03195516765117645, -0.0015565442154183984, 0.008354182355105877, 0.013290469534695148, 0.005119186360388994, 0.020499886944890022, -0.008822266943752766, 0.15556463599205017, -0.0015141484327614307, 0.0191948339343071, 0.023690490052103996, 0.014415577985346317, 0.02572682313621044, 0.0980057567358017, 0.006971260998398066, -0.011366289108991623, 0.018978629261255264, 0.03924209624528885, -0.007974010892212391, 0.020636992529034615, -0.0591195747256279, -0.03229865804314613, 0.023284517228603363, 0.028793737292289734, -0.0021486226469278336, 0.012663581408560276, 0.035141557455062866, -0.03878407925367355, 0.02786760963499546, 0.06892428547143936, 0.01376821007579565, 0.00051339395577088, -0.021748578175902367, -0.04855155572295189, 0.0033791454043239355, -0.033886414021253586, -0.03458947688341141, 0.016064921393990517, -0.03244340792298317, -0.016436440870165825, 0.07796228677034378, -0.006740179844200611, -0.039567478001117706, -0.007937942631542683, 0.029623087495565414, -0.00983022153377533, -0.03961147367954254, 0.10743232071399689, 0.03779976814985275, 0.03296927362680435 ]
[ -0.008868318982422352, -0.014713719487190247, -0.024102328345179558, -0.03334461525082588, -0.026289349421858788, -0.023421840742230415, -0.007399505935609341, -0.010991779156029224, -0.0182186309248209, -0.007463165558874607, -0.023448260501027107, -0.01712556928396225, 0.023156804963946342, -0.06010041758418083, 0.0033624041825532913, -0.07357616722583771, -0.03259732946753502, 0.038580793887376785, 0.02934996597468853, -0.005145047325640917, 0.0025396619457751513, 0.012658282183110714, -0.015034140087664127, 0.005292026326060295, 0.02324269339442253, 0.028311636298894882, -0.0053541832603514194, -0.012502948753535748, 0.03292298689484596, -0.1187179759144783, -0.005325567442923784, -0.018587829545140266, 0.006220108829438686, -0.017586469650268555, -0.009121892973780632, -0.023056168109178543, -0.024642059579491615, -0.00031330814817920327, -0.015351707115769386, 0.015113180503249168, 0.016043800860643387, -0.02874360792338848, 0.0157927293330431, 0.020259663462638855, 0.018230009824037552, -0.012855002656579018, -0.023164141923189163, -0.005715786479413509, -0.023295123130083084, -0.009763040579855442, -0.00001889162558654789, 0.012788835912942886, -0.010964843444526196, 0.009852495975792408, -0.029028531163930893, -0.040878623723983765, -0.0007486389367841184, -0.025326387956738472, 0.02909015864133835, 0.013325193896889687, -0.027746733278036118, 0.043945759534835815, -0.0005435849307104945, -0.02169952355325222, -0.0031235264614224434, -0.008637595921754837, -0.009320291690528393, -0.0025904083158820868, 0.004267318639904261, 0.013997153379023075, -0.0015517917927354574, 0.00473021948710084, -0.011145852506160736, 0.020874137058854103, -0.011311789974570274, 0.015510570257902145, 0.008225920610129833, -0.05250443518161774, -0.0026187882758677006, -0.029107293114066124, -0.001235258299857378, -0.014876876026391983, 0.026468994095921516, -0.0016044228104874492, 0.0016954503953456879, -0.015624714083969593, 0.015431375242769718, 0.012605211697518826, -0.0058670626021921635, 0.004958306904882193, -0.0013359298463910818, 0.01947011426091194, -0.007647897116839886, 0.028454404324293137, -0.05782591551542282, 0.005205770488828421, 0.006009143777191639, 0.01203262247145176, -0.009200351312756538, 0.8670337200164795, -0.009121603332459927, 0.059762660413980484, 0.02347704954445362, 0.008086771704256535, -0.03360270708799362, -0.005105910822749138, 0.011724041774868965, -0.008824314922094345, -0.010338954627513885, -0.05164819210767746, 0.006993224378675222, 0.013367361389100552, 0.01817399449646473, -0.010973537340760231, -0.008030449971556664, 0.006377180572599173, 0.002541369292885065, -0.020319955423474312, 0.012287517078220844, -0.014099981635808945, 0.005858960561454296, -0.018721411004662514, -0.012455259449779987, 0.04454631730914116, 0.04374416917562485, -0.1509169340133667, -0.0012134354328736663, -7.770394551811553e-33, 0.00996593851596117, -0.02296370081603527, -0.02261936105787754, -0.023247696459293365, 0.007133989129215479, -0.0006687617278657854, 0.022447479888796806, -0.0016283299773931503, -0.02327331341803074, -0.015624968335032463, 0.01466387789696455, -0.023081935942173004, 0.013029425404965878, -0.024028930813074112, 0.045056961476802826, 0.013487780466675758, -0.009662979282438755, 0.025275157764554024, -0.018274983391165733, 0.017742637544870377, 0.04456891119480133, 0.00919249001890421, 0.025116870179772377, 0.028461653739213943, 0.04626025632023811, 0.013914814218878746, -0.002743759658187628, 0.026232995092868805, 0.01813458278775215, -0.05420443043112755, -0.011543982662260532, -0.008936472237110138, -0.00953441858291626, 0.012027135118842125, 0.041449759155511856, -0.024640116840600967, -0.003938913810998201, 0.007581708952784538, -0.021061092615127563, 0.03843255341053009, -0.06371701508760452, 0.02515345998108387, 0.0016879694303497672, 0.003043520264327526, -0.006312979385256767, -0.004820684902369976, 0.014828984625637531, -0.012744289822876453, 0.016855819150805473, -0.04140903428196907, 0.0009106461075134575, 0.02465316280722618, 0.0038134739734232426, -0.0039949920028448105, 0.006296813488006592, -0.015376467257738113, 0.006827159319072962, 0.025267068296670914, 0.013237706385552883, 0.016102254390716553, -0.00916273519396782, -0.0069168428890407085, -0.03453568369150162, 0.017509540542960167, -0.014784019440412521, 0.0008835562039166689, -0.015885261818766594, 0.005044710356742144, 0.032507721334695816, -0.027801796793937683, -0.04478919506072998, -0.015273741446435452, -0.015491525642573833, 0.01520790159702301, 0.027221057564020157, 0.027183381840586662, -0.0003710321616381407, 0.006102037616074085, -0.02382916770875454, -0.02318427711725235, 0.0215610321611166, -0.012936932034790516, 0.01276700384914875, -0.016073808073997498, 0.01099501270800829, -0.01811135932803154, 0.000630152877420187, -0.034343697130680084, 0.011913570575416088, -0.03508199751377106, 0.05706476420164108, -0.013437481597065926, -0.03761439397931099, -0.017456863075494766, -0.023278700187802315, 7.848770637652629e-33, -0.04505155608057976, 0.014731088653206825, -0.01838778331875801, 0.032051172107458115, -0.00377880921587348, 0.004851830657571554, 0.0002498973917681724, 0.031144147738814354, -0.02710237354040146, 0.02331259287893772, -0.009719560854136944, 0.03181172162294388, -0.013675820082426071, 0.016503112390637398, 0.02726585604250431, -0.03276378661394119, 0.04562986642122269, -0.025671785697340965, -0.01662275195121765, 0.018943842500448227, 0.06445685774087906, 0.01998547837138176, 0.02033468708395958, -0.018354883417487144, -0.006691257003694773, 0.04938964545726776, -0.012209581211209297, -0.0023174548987299204, -0.008795036934316158, -0.002800618065521121, -0.0005899228854104877, -0.0013857174199074507, 0.022507566958665848, -0.002194303320720792, -0.0030153898987919092, 0.04389285668730736, 0.037453792989254, 0.022016478702425957, 0.021332088857889175, 0.03357267752289772, 0.013353490270674229, 0.0025706528685986996, 0.03958064690232277, 0.04422193393111229, 0.02512466348707676, 0.03775503858923912, 0.015757126733660698, 0.021605761721730232, 0.0026308419182896614, 0.0508730448782444, 0.0026573871728032827, -0.004562211688607931, 0.0022542853839695454, 0.012721528299152851, 0.017780838534235954, -0.02826397493481636, -0.0013648696476593614, 0.004097168333828449, -0.04417762905359268, 0.010043296031653881, -0.029403911903500557, 0.0159157644957304, -0.03364933282136917, 0.009463999420404434, -0.016555264592170715, 0.013622831553220749, -0.038271162658929825, -0.001467510242946446, -0.011518023908138275, -0.005398347042500973, -0.04429320991039276, -0.019277118146419525, 0.004670873284339905, 0.04221177473664284, -0.0019145121332257986, -0.015492785722017288, -0.05305065959692001, 0.011710284277796745, 0.0036847908049821854, 0.029123619198799133, 0.03821894899010658, -0.019828390330076218, 0.023378200829029083, -0.02359548583626747, -0.006650150753557682, 0.029196012765169144, 0.0032115501817315817, 0.03137319162487984, 0.016091523692011833, -0.06596579402685165, -0.015463455580174923, 0.003309126477688551, -0.00997576117515564, -0.009640243835747242, 0.013037344440817833, -1.3330768489083766e-8, -0.006008293479681015, -0.004188129212707281, -0.04000023752450943, 0.012583154253661633, 0.023904409259557724, 0.026192238554358482, -0.03165227547287941, -0.011280638165771961, 0.009699486196041107, 0.0033026356250047684, 0.012074746191501617, 0.0009198681800626218, -0.012612354010343552, -0.01888785883784294, 0.026777245104312897, -0.04459186643362045, 0.009012304246425629, -0.023979289457201958, 0.014418097212910652, -0.02159031294286251, 0.01370930578559637, 0.04365546256303787, -0.009130352176725864, 0.02836592122912407, 0.03009161725640297, -0.012927562929689884, 0.013076359406113625, -0.051687609404325485, -0.03250538185238838, -0.008745471946895123, 0.022302431985735893, -0.015538126230239868, -0.03910478577017784, 0.02010655589401722, 0.00010008496610680595, -0.013928312808275223, -0.004346736241132021, 0.036942727863788605, 0.0465170294046402, -0.02141333743929863, 0.012062210589647293, -0.008197619579732418, -0.017282990738749504, -0.015770938247442245, -0.007128698285669088, -0.00446273060515523, -0.03419844061136246, -0.010863992385566235, 0.04028010740876198, -0.06642215698957443, -0.000798467022832483, -0.009900339879095554, 0.030221907421946526, 0.009112583473324776, 0.03275615721940994, -0.05199062079191208, -0.00454408023506403, 0.027676483616232872, -0.007992854341864586, -0.014981665648519993, 0.014197040349245071, -0.010071733966469765, -0.006165109574794769, -0.01260282751172781 ]
saff-squeeze-first-thoughts
https://markhneedham.com/blog/2008/11/21/saff-squeeze-first-thoughts